mirror of https://gitee.com/openkylin/qemu.git
17 lines
332 B
C
17 lines
332 B
C
#ifndef CHIPIDEA_H
|
|
#define CHIPIDEA_H
|
|
|
|
#include "hw/usb/hcd-ehci.h"
|
|
|
|
typedef struct ChipideaState {
|
|
/*< private >*/
|
|
EHCISysBusState parent_obj;
|
|
|
|
MemoryRegion iomem[3];
|
|
} ChipideaState;
|
|
|
|
#define TYPE_CHIPIDEA "usb-chipidea"
|
|
#define CHIPIDEA(obj) OBJECT_CHECK(ChipideaState, (obj), TYPE_CHIPIDEA)
|
|
|
|
#endif /* CHIPIDEA_H */
|