xref: /qemu/include/hw/usb/chipidea.h (revision db1015e92e04835c9eb50c29625fe566d1202dbd)
1 #ifndef CHIPIDEA_H
2 #define CHIPIDEA_H
3 
4 #include "hw/usb/hcd-ehci.h"
5 #include "qom/object.h"
6 
7 struct ChipideaState {
8     /*< private >*/
9     EHCISysBusState parent_obj;
10 
11     MemoryRegion iomem[3];
12 };
13 typedef struct ChipideaState ChipideaState;
14 
15 #define TYPE_CHIPIDEA "usb-chipidea"
16 #define CHIPIDEA(obj) OBJECT_CHECK(ChipideaState, (obj), TYPE_CHIPIDEA)
17 
18 #endif /* CHIPIDEA_H */
19