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"
23 #include "qemu/range.h"
25 typedef struct EHCIPCIInfo
{
33 static void usb_ehci_pci_realize(PCIDevice
*dev
, Error
**errp
)
35 EHCIPCIState
*i
= PCI_EHCI(dev
);
36 EHCIState
*s
= &i
->ehci
;
37 uint8_t *pci_conf
= dev
->config
;
39 pci_set_byte(&pci_conf
[PCI_CLASS_PROG
], 0x20);
41 /* capabilities pointer */
42 pci_set_byte(&pci_conf
[PCI_CAPABILITY_LIST
], 0x00);
43 /* pci_set_byte(&pci_conf[PCI_CAPABILITY_LIST], 0x50); */
45 pci_set_byte(&pci_conf
[PCI_INTERRUPT_PIN
], 4); /* interrupt pin D */
46 pci_set_byte(&pci_conf
[PCI_MIN_GNT
], 0);
47 pci_set_byte(&pci_conf
[PCI_MAX_LAT
], 0);
49 /* pci_conf[0x50] = 0x01; *//* power management caps */
51 pci_set_byte(&pci_conf
[USB_SBRN
], USB_RELEASE_2
); /* release # (2.1.4) */
52 pci_set_byte(&pci_conf
[0x61], 0x20); /* frame length adjustment (2.1.5) */
53 pci_set_word(&pci_conf
[0x62], 0x00); /* port wake up capability (2.1.6) */
55 pci_conf
[0x64] = 0x00;
56 pci_conf
[0x65] = 0x00;
57 pci_conf
[0x66] = 0x00;
58 pci_conf
[0x67] = 0x00;
59 pci_conf
[0x68] = 0x01;
60 pci_conf
[0x69] = 0x00;
61 pci_conf
[0x6a] = 0x00;
62 pci_conf
[0x6b] = 0x00; /* USBLEGSUP */
63 pci_conf
[0x6c] = 0x00;
64 pci_conf
[0x6d] = 0x00;
65 pci_conf
[0x6e] = 0x00;
66 pci_conf
[0x6f] = 0xc0; /* USBLEFCTLSTS */
68 s
->irq
= pci_allocate_irq(dev
);
69 s
->as
= pci_get_address_space(dev
);
71 usb_ehci_realize(s
, DEVICE(dev
), NULL
);
72 pci_register_bar(dev
, 0, PCI_BASE_ADDRESS_SPACE_MEMORY
, &s
->mem
);
75 static void usb_ehci_pci_init(Object
*obj
)
77 DeviceClass
*dc
= OBJECT_GET_CLASS(DeviceClass
, obj
, TYPE_DEVICE
);
78 EHCIPCIState
*i
= PCI_EHCI(obj
);
79 EHCIState
*s
= &i
->ehci
;
81 s
->caps
[0x09] = 0x68; /* EECP */
88 if (!dc
->hotpluggable
) {
89 s
->companion_enable
= true;
92 usb_ehci_init(s
, DEVICE(obj
));
95 static void usb_ehci_pci_finalize(Object
*obj
)
97 EHCIPCIState
*i
= PCI_EHCI(obj
);
98 EHCIState
*s
= &i
->ehci
;
100 usb_ehci_finalize(s
);
103 static void usb_ehci_pci_exit(PCIDevice
*dev
)
105 EHCIPCIState
*i
= PCI_EHCI(dev
);
106 EHCIState
*s
= &i
->ehci
;
108 usb_ehci_unrealize(s
, DEVICE(dev
), NULL
);
114 static void usb_ehci_pci_reset(DeviceState
*dev
)
116 PCIDevice
*pci_dev
= PCI_DEVICE(dev
);
117 EHCIPCIState
*i
= PCI_EHCI(pci_dev
);
118 EHCIState
*s
= &i
->ehci
;
123 static void usb_ehci_pci_write_config(PCIDevice
*dev
, uint32_t addr
,
126 EHCIPCIState
*i
= PCI_EHCI(dev
);
129 pci_default_write_config(dev
, addr
, val
, l
);
131 if (!range_covers_byte(addr
, l
, PCI_COMMAND
)) {
134 busmaster
= pci_get_word(dev
->config
+ PCI_COMMAND
) & PCI_COMMAND_MASTER
;
135 i
->ehci
.as
= busmaster
? pci_get_address_space(dev
) : &address_space_memory
;
138 static Property ehci_pci_properties
[] = {
139 DEFINE_PROP_UINT32("maxframes", EHCIPCIState
, ehci
.maxframes
, 128),
140 DEFINE_PROP_END_OF_LIST(),
143 static const VMStateDescription vmstate_ehci_pci
= {
146 .minimum_version_id
= 1,
147 .fields
= (VMStateField
[]) {
148 VMSTATE_PCI_DEVICE(pcidev
, EHCIPCIState
),
149 VMSTATE_STRUCT(ehci
, EHCIPCIState
, 2, vmstate_ehci
, EHCIState
),
150 VMSTATE_END_OF_LIST()
154 static void ehci_class_init(ObjectClass
*klass
, void *data
)
156 DeviceClass
*dc
= DEVICE_CLASS(klass
);
157 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
159 k
->realize
= usb_ehci_pci_realize
;
160 k
->exit
= usb_ehci_pci_exit
;
161 k
->class_id
= PCI_CLASS_SERIAL_USB
;
162 k
->config_write
= usb_ehci_pci_write_config
;
163 dc
->vmsd
= &vmstate_ehci_pci
;
164 device_class_set_props(dc
, ehci_pci_properties
);
165 dc
->reset
= usb_ehci_pci_reset
;
168 static const TypeInfo ehci_pci_type_info
= {
169 .name
= TYPE_PCI_EHCI
,
170 .parent
= TYPE_PCI_DEVICE
,
171 .instance_size
= sizeof(EHCIPCIState
),
172 .instance_init
= usb_ehci_pci_init
,
173 .instance_finalize
= usb_ehci_pci_finalize
,
175 .class_init
= ehci_class_init
,
176 .interfaces
= (InterfaceInfo
[]) {
177 { INTERFACE_CONVENTIONAL_PCI_DEVICE
},
182 static void ehci_data_class_init(ObjectClass
*klass
, void *data
)
184 PCIDeviceClass
*k
= PCI_DEVICE_CLASS(klass
);
185 DeviceClass
*dc
= DEVICE_CLASS(klass
);
186 EHCIPCIInfo
*i
= data
;
188 k
->vendor_id
= i
->vendor_id
;
189 k
->device_id
= i
->device_id
;
190 k
->revision
= i
->revision
;
191 set_bit(DEVICE_CATEGORY_USB
, dc
->categories
);
193 dc
->hotpluggable
= false;
197 static struct EHCIPCIInfo ehci_pci_info
[] = {
200 .vendor_id
= PCI_VENDOR_ID_INTEL
,
201 .device_id
= PCI_DEVICE_ID_INTEL_82801D
, /* ich4 */
204 .name
= "ich9-usb-ehci1", /* 00:1d.7 */
205 .vendor_id
= PCI_VENDOR_ID_INTEL
,
206 .device_id
= PCI_DEVICE_ID_INTEL_82801I_EHCI1
,
210 .name
= "ich9-usb-ehci2", /* 00:1a.7 */
211 .vendor_id
= PCI_VENDOR_ID_INTEL
,
212 .device_id
= PCI_DEVICE_ID_INTEL_82801I_EHCI2
,
218 static void ehci_pci_register_types(void)
220 TypeInfo ehci_type_info
= {
221 .parent
= TYPE_PCI_EHCI
,
222 .class_init
= ehci_data_class_init
,
226 type_register_static(&ehci_pci_type_info
);
228 for (i
= 0; i
< ARRAY_SIZE(ehci_pci_info
); i
++) {
229 ehci_type_info
.name
= ehci_pci_info
[i
].name
;
230 ehci_type_info
.class_data
= ehci_pci_info
+ i
;
231 type_register(&ehci_type_info
);
235 type_init(ehci_pci_register_types
)