mirror of https://gitee.com/openkylin/qemu.git
qdev/usb: convert ohci.
Drop num_ports argument for usb_ohci_init_pci(), everybody calls it with num_ports == 3, so it is pointless. Convert ohci pci device into qdev. TODO: convert non-pci ohci adapters. You can add a OHCI USB Controller to your virtual pc now using '-device pci-ohci'. Specifying a id is a good idea, so you can attach usb devices to it, like this: -device pci-ohci,id=ohci -device usb-mouse,bus=ohci.0 Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
6cf9b6f17a
commit
5b19d9a247
2
hw/pci.h
2
hw/pci.h
|
@ -341,7 +341,7 @@ void usb_uhci_piix3_init(PCIBus *bus, int devfn);
|
|||
void usb_uhci_piix4_init(PCIBus *bus, int devfn);
|
||||
|
||||
/* usb-ohci.c */
|
||||
void usb_ohci_init_pci(struct PCIBus *bus, int num_ports, int devfn);
|
||||
void usb_ohci_init_pci(struct PCIBus *bus, int devfn);
|
||||
|
||||
/* prep_pci.c */
|
||||
PCIBus *pci_prep_init(qemu_irq *pic);
|
||||
|
|
|
@ -332,7 +332,7 @@ static void ppc_core99_init (ram_addr_t ram_size,
|
|||
escc_mem_index);
|
||||
|
||||
if (usb_enabled) {
|
||||
usb_ohci_init_pci(pci_bus, 3, -1);
|
||||
usb_ohci_init_pci(pci_bus, -1);
|
||||
}
|
||||
|
||||
if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8)
|
||||
|
|
|
@ -356,7 +356,7 @@ static void ppc_heathrow_init (ram_addr_t ram_size,
|
|||
escc_mem_index);
|
||||
|
||||
if (usb_enabled) {
|
||||
usb_ohci_init_pci(pci_bus, 3, -1);
|
||||
usb_ohci_init_pci(pci_bus, -1);
|
||||
}
|
||||
|
||||
if (graphic_depth != 15 && graphic_depth != 32 && graphic_depth != 8)
|
||||
|
|
|
@ -745,7 +745,7 @@ static void ppc_prep_init (ram_addr_t ram_size,
|
|||
#endif
|
||||
|
||||
if (usb_enabled) {
|
||||
usb_ohci_init_pci(pci_bus, 3, -1);
|
||||
usb_ohci_init_pci(pci_bus, -1);
|
||||
}
|
||||
|
||||
m48t59 = m48t59_init(i8259[8], 0, 0x0074, NVRAM_SIZE, 59);
|
||||
|
|
|
@ -111,7 +111,7 @@ static void realview_init(ram_addr_t ram_size,
|
|||
pic[48], pic[49], pic[50], pic[51], NULL);
|
||||
pci_bus = (PCIBus *)qdev_get_child_bus(dev, "pci");
|
||||
if (usb_enabled) {
|
||||
usb_ohci_init_pci(pci_bus, 3, -1);
|
||||
usb_ohci_init_pci(pci_bus, -1);
|
||||
}
|
||||
n = drive_get_max_bus(IF_SCSI);
|
||||
while (n >= 0) {
|
||||
|
|
|
@ -1660,7 +1660,8 @@ static CPUWriteMemoryFunc * const ohci_writefn[3]={
|
|||
ohci_mem_write
|
||||
};
|
||||
|
||||
static void usb_ohci_init(OHCIState *ohci, int num_ports, int devfn,
|
||||
static void usb_ohci_init(OHCIState *ohci, DeviceState *dev,
|
||||
int num_ports, int devfn,
|
||||
qemu_irq irq, enum ohci_type type,
|
||||
const char *name, uint32_t localmem_base)
|
||||
{
|
||||
|
@ -1689,7 +1690,7 @@ static void usb_ohci_init(OHCIState *ohci, int num_ports, int devfn,
|
|||
ohci->irq = irq;
|
||||
ohci->type = type;
|
||||
|
||||
ohci->bus = usb_bus_new(NULL /* FIXME */);
|
||||
ohci->bus = usb_bus_new(dev);
|
||||
ohci->num_ports = num_ports;
|
||||
for (i = 0; i < num_ports; i++) {
|
||||
usb_register_port(ohci->bus, &ohci->rhport[i].port, ohci, i, ohci_attach);
|
||||
|
@ -1712,17 +1713,10 @@ static void ohci_mapfunc(PCIDevice *pci_dev, int i,
|
|||
cpu_register_physical_memory(addr, size, ohci->state.mem);
|
||||
}
|
||||
|
||||
void usb_ohci_init_pci(struct PCIBus *bus, int num_ports, int devfn)
|
||||
static int usb_ohci_initfn_pci(struct PCIDevice *dev)
|
||||
{
|
||||
OHCIPCIState *ohci;
|
||||
|
||||
ohci = DO_UPCAST(OHCIPCIState, pci_dev,
|
||||
pci_register_device(bus, "OHCI USB", sizeof(*ohci),
|
||||
devfn, NULL, NULL));
|
||||
if (ohci == NULL) {
|
||||
fprintf(stderr, "usb-ohci: Failed to register PCI device\n");
|
||||
return;
|
||||
}
|
||||
OHCIPCIState *ohci = DO_UPCAST(OHCIPCIState, pci_dev, dev);
|
||||
int num_ports = 3;
|
||||
|
||||
pci_config_set_vendor_id(ohci->pci_dev.config, PCI_VENDOR_ID_APPLE);
|
||||
pci_config_set_device_id(ohci->pci_dev.config,
|
||||
|
@ -1731,11 +1725,18 @@ void usb_ohci_init_pci(struct PCIBus *bus, int num_ports, int devfn)
|
|||
pci_config_set_class(ohci->pci_dev.config, PCI_CLASS_SERIAL_USB);
|
||||
ohci->pci_dev.config[0x3d] = 0x01; /* interrupt pin 1 */
|
||||
|
||||
usb_ohci_init(&ohci->state, num_ports, devfn, ohci->pci_dev.irq[0],
|
||||
usb_ohci_init(&ohci->state, &dev->qdev, num_ports,
|
||||
ohci->pci_dev.devfn, ohci->pci_dev.irq[0],
|
||||
OHCI_TYPE_PCI, ohci->pci_dev.name, 0);
|
||||
|
||||
pci_register_bar((struct PCIDevice *)ohci, 0, 256,
|
||||
PCI_ADDRESS_SPACE_MEM, ohci_mapfunc);
|
||||
return 0;
|
||||
}
|
||||
|
||||
void usb_ohci_init_pci(struct PCIBus *bus, int devfn)
|
||||
{
|
||||
pci_create_simple(bus, devfn, "OHCI USB PCI");
|
||||
}
|
||||
|
||||
void usb_ohci_init_pxa(target_phys_addr_t base, int num_ports, int devfn,
|
||||
|
@ -1743,7 +1744,7 @@ void usb_ohci_init_pxa(target_phys_addr_t base, int num_ports, int devfn,
|
|||
{
|
||||
OHCIState *ohci = (OHCIState *)qemu_mallocz(sizeof(OHCIState));
|
||||
|
||||
usb_ohci_init(ohci, num_ports, devfn, irq,
|
||||
usb_ohci_init(ohci, NULL /* FIXME */, num_ports, devfn, irq,
|
||||
OHCI_TYPE_PXA, "OHCI USB", 0);
|
||||
|
||||
cpu_register_physical_memory(base, 0x1000, ohci->mem);
|
||||
|
@ -1754,9 +1755,22 @@ void usb_ohci_init_sm501(uint32_t mmio_base, uint32_t localmem_base,
|
|||
{
|
||||
OHCIState *ohci = (OHCIState *)qemu_mallocz(sizeof(OHCIState));
|
||||
|
||||
usb_ohci_init(ohci, num_ports, devfn, irq,
|
||||
usb_ohci_init(ohci, NULL /* FIXME */, num_ports, devfn, irq,
|
||||
OHCI_TYPE_SM501, "OHCI USB", localmem_base);
|
||||
|
||||
cpu_register_physical_memory(mmio_base, 0x1000, ohci->mem);
|
||||
}
|
||||
|
||||
static PCIDeviceInfo ohci_info = {
|
||||
.qdev.name = "OHCI USB PCI",
|
||||
.qdev.alias = "pci-ohci",
|
||||
.qdev.desc = "Apple USB Controller",
|
||||
.qdev.size = sizeof(OHCIPCIState),
|
||||
.init = usb_ohci_initfn_pci,
|
||||
};
|
||||
|
||||
static void ohci_register(void)
|
||||
{
|
||||
pci_qdev_register(&ohci_info);
|
||||
}
|
||||
device_init(ohci_register);
|
||||
|
|
|
@ -217,7 +217,7 @@ static void versatile_init(ram_addr_t ram_size,
|
|||
}
|
||||
}
|
||||
if (usb_enabled) {
|
||||
usb_ohci_init_pci(pci_bus, 3, -1);
|
||||
usb_ohci_init_pci(pci_bus, -1);
|
||||
}
|
||||
n = drive_get_max_bus(IF_SCSI);
|
||||
while (n >= 0) {
|
||||
|
|
Loading…
Reference in New Issue