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 DECLARE_INSTANCE_CHECKER(ChipideaState, CHIPIDEA, 17 TYPE_CHIPIDEA) 18 19 #endif /* CHIPIDEA_H */ 20