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_END_OF_LIST(),
39 static void usb_ehci_sysbus_realize(DeviceState
*dev
, Error
**errp
)
41 SysBusDevice
*d
= SYS_BUS_DEVICE(dev
);
42 EHCISysBusState
*i
= SYS_BUS_EHCI(dev
);
43 EHCIState
*s
= &i
->ehci
;
45 usb_ehci_realize(s
, dev
, errp
);
46 sysbus_init_irq(d
, &s
->irq
);
49 static void usb_ehci_sysbus_reset(DeviceState
*dev
)
51 SysBusDevice
*d
= SYS_BUS_DEVICE(dev
);
52 EHCISysBusState
*i
= SYS_BUS_EHCI(d
);
53 EHCIState
*s
= &i
->ehci
;
58 static void ehci_sysbus_init(Object
*obj
)
60 SysBusDevice
*d
= SYS_BUS_DEVICE(obj
);
61 EHCISysBusState
*i
= SYS_BUS_EHCI(obj
);
62 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_GET_CLASS(obj
);
63 EHCIState
*s
= &i
->ehci
;
65 s
->capsbase
= sec
->capsbase
;
66 s
->opregbase
= sec
->opregbase
;
67 s
->portscbase
= sec
->portscbase
;
68 s
->portnr
= sec
->portnr
;
69 s
->as
= &address_space_memory
;
71 usb_ehci_init(s
, DEVICE(obj
));
72 sysbus_init_mmio(d
, &s
->mem
);
75 static void ehci_sysbus_class_init(ObjectClass
*klass
, void *data
)
77 DeviceClass
*dc
= DEVICE_CLASS(klass
);
78 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(klass
);
80 sec
->portscbase
= 0x44;
81 sec
->portnr
= NB_PORTS
;
83 dc
->realize
= usb_ehci_sysbus_realize
;
84 dc
->vmsd
= &vmstate_ehci_sysbus
;
85 dc
->props
= ehci_sysbus_properties
;
86 dc
->reset
= usb_ehci_sysbus_reset
;
87 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
90 static const TypeInfo ehci_type_info
= {
91 .name
= TYPE_SYS_BUS_EHCI
,
92 .parent
= TYPE_SYS_BUS_DEVICE
,
93 .instance_size
= sizeof(EHCISysBusState
),
94 .instance_init
= ehci_sysbus_init
,
96 .class_init
= ehci_sysbus_class_init
,
97 .class_size
= sizeof(SysBusEHCIClass
),
100 static void ehci_platform_class_init(ObjectClass
*oc
, void *data
)
102 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
103 DeviceClass
*dc
= DEVICE_CLASS(oc
);
106 sec
->opregbase
= 0x20;
107 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
110 static const TypeInfo ehci_platform_type_info
= {
111 .name
= TYPE_PLATFORM_EHCI
,
112 .parent
= TYPE_SYS_BUS_EHCI
,
113 .class_init
= ehci_platform_class_init
,
116 static void ehci_xlnx_class_init(ObjectClass
*oc
, void *data
)
118 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
119 DeviceClass
*dc
= DEVICE_CLASS(oc
);
121 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
122 sec
->capsbase
= 0x100;
123 sec
->opregbase
= 0x140;
126 static const TypeInfo ehci_xlnx_type_info
= {
127 .name
= "xlnx,ps7-usb",
128 .parent
= TYPE_SYS_BUS_EHCI
,
129 .class_init
= ehci_xlnx_class_init
,
132 static void ehci_exynos4210_class_init(ObjectClass
*oc
, void *data
)
134 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
135 DeviceClass
*dc
= DEVICE_CLASS(oc
);
138 sec
->opregbase
= 0x10;
139 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
142 static const TypeInfo ehci_exynos4210_type_info
= {
143 .name
= TYPE_EXYNOS4210_EHCI
,
144 .parent
= TYPE_SYS_BUS_EHCI
,
145 .class_init
= ehci_exynos4210_class_init
,
148 static void ehci_tegra2_class_init(ObjectClass
*oc
, void *data
)
150 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
151 DeviceClass
*dc
= DEVICE_CLASS(oc
);
153 sec
->capsbase
= 0x100;
154 sec
->opregbase
= 0x140;
155 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
158 static const TypeInfo ehci_tegra2_type_info
= {
159 .name
= TYPE_TEGRA2_EHCI
,
160 .parent
= TYPE_SYS_BUS_EHCI
,
161 .class_init
= ehci_tegra2_class_init
,
164 static void ehci_ppc4xx_init(Object
*o
)
166 EHCISysBusState
*s
= SYS_BUS_EHCI(o
);
168 s
->ehci
.companion_enable
= true;
171 static void ehci_ppc4xx_class_init(ObjectClass
*oc
, void *data
)
173 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
174 DeviceClass
*dc
= DEVICE_CLASS(oc
);
177 sec
->opregbase
= 0x10;
178 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
181 static const TypeInfo ehci_ppc4xx_type_info
= {
182 .name
= TYPE_PPC4xx_EHCI
,
183 .parent
= TYPE_SYS_BUS_EHCI
,
184 .class_init
= ehci_ppc4xx_class_init
,
185 .instance_init
= ehci_ppc4xx_init
,
189 * Faraday FUSBH200 USB 2.0 EHCI
194 * @FUSBH200_REG_EOF_ASTR: EOF/Async. Sleep Timer Register
195 * @FUSBH200_REG_BMCSR: Bus Monitor Control/Status Register
197 enum FUSBH200EHCIRegs
{
198 FUSBH200_REG_EOF_ASTR
= 0x34,
199 FUSBH200_REG_BMCSR
= 0x40,
202 static uint64_t fusbh200_ehci_read(void *opaque
, hwaddr addr
, unsigned size
)
204 EHCIState
*s
= opaque
;
205 hwaddr off
= s
->opregbase
+ s
->portscbase
+ 4 * s
->portnr
+ addr
;
208 case FUSBH200_REG_EOF_ASTR
:
210 case FUSBH200_REG_BMCSR
:
211 /* High-Speed, VBUS valid, interrupt level-high active */
212 return (2 << 9) | (1 << 8) | (1 << 3);
218 static void fusbh200_ehci_write(void *opaque
, hwaddr addr
, uint64_t val
,
223 static const MemoryRegionOps fusbh200_ehci_mmio_ops
= {
224 .read
= fusbh200_ehci_read
,
225 .write
= fusbh200_ehci_write
,
226 .valid
.min_access_size
= 4,
227 .valid
.max_access_size
= 4,
228 .endianness
= DEVICE_LITTLE_ENDIAN
,
231 static void fusbh200_ehci_init(Object
*obj
)
233 EHCISysBusState
*i
= SYS_BUS_EHCI(obj
);
234 FUSBH200EHCIState
*f
= FUSBH200_EHCI(obj
);
235 EHCIState
*s
= &i
->ehci
;
237 memory_region_init_io(&f
->mem_vendor
, OBJECT(f
), &fusbh200_ehci_mmio_ops
, s
,
239 memory_region_add_subregion(&s
->mem
,
240 s
->opregbase
+ s
->portscbase
+ 4 * s
->portnr
,
244 static void fusbh200_ehci_class_init(ObjectClass
*oc
, void *data
)
246 SysBusEHCIClass
*sec
= SYS_BUS_EHCI_CLASS(oc
);
247 DeviceClass
*dc
= DEVICE_CLASS(oc
);
250 sec
->opregbase
= 0x10;
251 sec
->portscbase
= 0x20;
253 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
256 static const TypeInfo ehci_fusbh200_type_info
= {
257 .name
= TYPE_FUSBH200_EHCI
,
258 .parent
= TYPE_SYS_BUS_EHCI
,
259 .instance_size
= sizeof(FUSBH200EHCIState
),
260 .instance_init
= fusbh200_ehci_init
,
261 .class_init
= fusbh200_ehci_class_init
,
264 static void ehci_sysbus_register_types(void)
266 type_register_static(&ehci_type_info
);
267 type_register_static(&ehci_platform_type_info
);
268 type_register_static(&ehci_xlnx_type_info
);
269 type_register_static(&ehci_exynos4210_type_info
);
270 type_register_static(&ehci_tegra2_type_info
);
271 type_register_static(&ehci_ppc4xx_type_info
);
272 type_register_static(&ehci_fusbh200_type_info
);
275 type_init(ehci_sysbus_register_types
)