mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
usb/hcd-ehci: Replace PORTSC macros with variables
Replace PORTSC macros with variables which could then be configured in ehci_xxxx_class_init(...) Signed-off-by: Kuo-Jung Su <dantesu@faraday-tech.com> Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
20c570432e
commit
cc8d6a8481
4 changed files with 28 additions and 14 deletions
|
@ -51,6 +51,8 @@ static void ehci_sysbus_init(Object *obj)
|
|||
|
||||
s->capsbase = sec->capsbase;
|
||||
s->opregbase = sec->opregbase;
|
||||
s->portscbase = sec->portscbase;
|
||||
s->portnr = sec->portnr;
|
||||
s->as = &address_space_memory;
|
||||
|
||||
usb_ehci_init(s, DEVICE(obj));
|
||||
|
@ -60,6 +62,10 @@ static void ehci_sysbus_init(Object *obj)
|
|||
static void ehci_sysbus_class_init(ObjectClass *klass, void *data)
|
||||
{
|
||||
DeviceClass *dc = DEVICE_CLASS(klass);
|
||||
SysBusEHCIClass *sec = SYS_BUS_EHCI_CLASS(klass);
|
||||
|
||||
sec->portscbase = 0x44;
|
||||
sec->portnr = NB_PORTS;
|
||||
|
||||
dc->realize = usb_ehci_sysbus_realize;
|
||||
dc->vmsd = &vmstate_ehci_sysbus;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue