2 * QEMU USB EHCI Emulation
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 #include "qemu/osdep.h"
19 #include "hw/qdev-properties.h"
20 #include "hw/usb/hcd-ehci.h"
21 #include "migration/vmstate.h"
22 #include "qemu/module.h"
24 static const VMStateDescription vmstate_ehci_sysbus
= {
25 .name
= "ehci-sysbus",
27 .minimum_version_id
= 1,
28 .fields
= (VMStateField
[]) {
29 VMSTATE_STRUCT(ehci
, EHCISysBusState
, 2, vmstate_ehci
, EHCIState
),
34 static Property ehci_sysbus_properties
[] = {
35 DEFINE_PROP_UINT32("maxframes", EHCISysBusState
, ehci
.maxframes
, 128),
36 DEFINE_PROP_BOOL("companion-enable", EHCISysBusState
, ehci
.companion_enable
,
38 DEFINE_PROP_END_OF_LIST(),
41 static void usb_ehci_sysbus_realize(DeviceState
*dev
, Error
**errp
)
43 SysBusDevice
*d
= SYS_BUS_DEVICE(dev
);
44 EHCISysBusState
*i
= SYS_BUS_EHCI(dev
);
45 EHCIState
*s
= &i
->ehci
;
47 usb_ehci_realize(s
, dev
, errp
);
48 sysbus_init_irq(d
, &s
->irq
);
51 static void usb_ehci_sysbus_reset(DeviceState
*dev
)
53 SysBusDevice
*d
= SYS_BUS_DEVICE(dev
);
54 EHCISysBusState
*i
= SYS_BUS_EHCI(d
);
55 EHCIState
*s
= &i
->ehci
;
60 static void ehci_sysbus_init(Object
*obj
)
62 SysBusDevice
*d
= SYS_BUS_DEVICE(obj
);
63 EHCISysBusState
*i
= SYS_BUS_EHCI(obj
);
64 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_GET_CLASS(obj
);
65 EHCIState
*s
= &i
->ehci
;
67 s
->capsbase
= sec
->capsbase
;
68 s
->opregbase
= sec
->opregbase
;
69 s
->portscbase
= sec
->portscbase
;
70 s
->portnr
= sec
->portnr
;
71 s
->as
= &address_space_memory
;
73 usb_ehci_init(s
, DEVICE(obj
));
74 sysbus_init_mmio(d
, &s
->mem
);
77 static void ehci_sysbus_class_init(ObjectClass
*klass
, void *data
)
79 DeviceClass
*dc
= DEVICE_CLASS(klass
);
80 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(klass
);
82 sec
->portscbase
= 0x44;
83 sec
->portnr
= NB_PORTS
;
85 dc
->realize
= usb_ehci_sysbus_realize
;
86 dc
->vmsd
= &vmstate_ehci_sysbus
;
87 device_class_set_props(dc
, ehci_sysbus_properties
);
88 dc
->reset
= usb_ehci_sysbus_reset
;
89 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
92 static const TypeInfo ehci_type_info
= {
93 .name
= TYPE_SYS_BUS_EHCI
,
94 .parent
= TYPE_SYS_BUS_DEVICE
,
95 .instance_size
= sizeof(EHCISysBusState
),
96 .instance_init
= ehci_sysbus_init
,
98 .class_init
= ehci_sysbus_class_init
,
99 .class_size
= sizeof(SysBusEHCIClass
),
102 static void ehci_platform_class_init(ObjectClass
*oc
, void *data
)
104 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
105 DeviceClass
*dc
= DEVICE_CLASS(oc
);
108 sec
->opregbase
= 0x20;
109 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
112 static const TypeInfo ehci_platform_type_info
= {
113 .name
= TYPE_PLATFORM_EHCI
,
114 .parent
= TYPE_SYS_BUS_EHCI
,
115 .class_init
= ehci_platform_class_init
,
118 static void ehci_exynos4210_class_init(ObjectClass
*oc
, void *data
)
120 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
121 DeviceClass
*dc
= DEVICE_CLASS(oc
);
124 sec
->opregbase
= 0x10;
125 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
128 static const TypeInfo ehci_exynos4210_type_info
= {
129 .name
= TYPE_EXYNOS4210_EHCI
,
130 .parent
= TYPE_SYS_BUS_EHCI
,
131 .class_init
= ehci_exynos4210_class_init
,
134 static void ehci_aw_h3_class_init(ObjectClass
*oc
, void *data
)
136 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
137 DeviceClass
*dc
= DEVICE_CLASS(oc
);
140 sec
->opregbase
= 0x10;
141 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
144 static const TypeInfo ehci_aw_h3_type_info
= {
145 .name
= TYPE_AW_H3_EHCI
,
146 .parent
= TYPE_SYS_BUS_EHCI
,
147 .class_init
= ehci_aw_h3_class_init
,
150 static void ehci_tegra2_class_init(ObjectClass
*oc
, void *data
)
152 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
153 DeviceClass
*dc
= DEVICE_CLASS(oc
);
155 sec
->capsbase
= 0x100;
156 sec
->opregbase
= 0x140;
157 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
160 static const TypeInfo ehci_tegra2_type_info
= {
161 .name
= TYPE_TEGRA2_EHCI
,
162 .parent
= TYPE_SYS_BUS_EHCI
,
163 .class_init
= ehci_tegra2_class_init
,
166 static void ehci_ppc4xx_init(Object
*o
)
168 EHCISysBusState
*s
= SYS_BUS_EHCI(o
);
170 s
->ehci
.companion_enable
= true;
173 static void ehci_ppc4xx_class_init(ObjectClass
*oc
, void *data
)
175 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
176 DeviceClass
*dc
= DEVICE_CLASS(oc
);
179 sec
->opregbase
= 0x10;
180 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
183 static const TypeInfo ehci_ppc4xx_type_info
= {
184 .name
= TYPE_PPC4xx_EHCI
,
185 .parent
= TYPE_SYS_BUS_EHCI
,
186 .class_init
= ehci_ppc4xx_class_init
,
187 .instance_init
= ehci_ppc4xx_init
,
191 * Faraday FUSBH200 USB 2.0 EHCI
196 * @FUSBH200_REG_EOF_ASTR: EOF/Async. Sleep Timer Register
197 * @FUSBH200_REG_BMCSR: Bus Monitor Control/Status Register
199 enum FUSBH200EHCIRegs
{
200 FUSBH200_REG_EOF_ASTR
= 0x34,
201 FUSBH200_REG_BMCSR
= 0x40,
204 static uint64_t fusbh200_ehci_read(void *opaque
, hwaddr addr
, unsigned size
)
206 EHCIState
*s
= opaque
;
207 hwaddr off
= s
->opregbase
+ s
->portscbase
+ 4 * s
->portnr
+ addr
;
210 case FUSBH200_REG_EOF_ASTR
:
212 case FUSBH200_REG_BMCSR
:
213 /* High-Speed, VBUS valid, interrupt level-high active */
214 return (2 << 9) | (1 << 8) | (1 << 3);
220 static void fusbh200_ehci_write(void *opaque
, hwaddr addr
, uint64_t val
,
225 static const MemoryRegionOps fusbh200_ehci_mmio_ops
= {
226 .read
= fusbh200_ehci_read
,
227 .write
= fusbh200_ehci_write
,
228 .valid
.min_access_size
= 4,
229 .valid
.max_access_size
= 4,
230 .endianness
= DEVICE_LITTLE_ENDIAN
,
233 static void fusbh200_ehci_init(Object
*obj
)
235 EHCISysBusState
*i
= SYS_BUS_EHCI(obj
);
236 FUSBH200EHCIState
*f
= FUSBH200_EHCI(obj
);
237 EHCIState
*s
= &i
->ehci
;
239 memory_region_init_io(&f
->mem_vendor
, OBJECT(f
), &fusbh200_ehci_mmio_ops
, s
,
241 memory_region_add_subregion(&s
->mem
,
242 s
->opregbase
+ s
->portscbase
+ 4 * s
->portnr
,
246 static void fusbh200_ehci_class_init(ObjectClass
*oc
, void *data
)
248 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
249 DeviceClass
*dc
= DEVICE_CLASS(oc
);
252 sec
->opregbase
= 0x10;
253 sec
->portscbase
= 0x20;
255 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
258 static const TypeInfo ehci_fusbh200_type_info
= {
259 .name
= TYPE_FUSBH200_EHCI
,
260 .parent
= TYPE_SYS_BUS_EHCI
,
261 .instance_size
= sizeof(FUSBH200EHCIState
),
262 .instance_init
= fusbh200_ehci_init
,
263 .class_init
= fusbh200_ehci_class_init
,
266 static void ehci_sysbus_register_types(void)
268 type_register_static(&ehci_type_info
);
269 type_register_static(&ehci_platform_type_info
);
270 type_register_static(&ehci_exynos4210_type_info
);
271 type_register_static(&ehci_aw_h3_type_info
);
272 type_register_static(&ehci_tegra2_type_info
);
273 type_register_static(&ehci_ppc4xx_type_info
);
274 type_register_static(&ehci_fusbh200_type_info
);
277 type_init(ehci_sysbus_register_types
)