mirror of https://github.com/xemu-project/xemu.git
20 lines
396 B
C
20 lines
396 B
C
#ifndef CHIPIDEA_H
|
|
#define CHIPIDEA_H
|
|
|
|
#include "hw/usb/hcd-ehci.h"
|
|
#include "qom/object.h"
|
|
|
|
struct ChipideaState {
|
|
/*< private >*/
|
|
EHCISysBusState parent_obj;
|
|
|
|
MemoryRegion iomem[3];
|
|
};
|
|
typedef struct ChipideaState ChipideaState;
|
|
|
|
#define TYPE_CHIPIDEA "usb-chipidea"
|
|
DECLARE_INSTANCE_CHECKER(ChipideaState, CHIPIDEA,
|
|
TYPE_CHIPIDEA)
|
|
|
|
#endif /* CHIPIDEA_H */
|