summaryrefslogtreecommitdiffstats
path: root/include/hw/usb/chipidea.h
blob: f0303b87210418cbf0577bc4bbb932e380d5090d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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 */