* [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386
@ 2018-11-30 21:45 Paolo Bonzini
2018-12-01 19:00 ` Philippe Mathieu-Daudé
2018-12-10 13:17 ` Gerd Hoffmann
0 siblings, 2 replies; 4+ messages in thread
From: Paolo Bonzini @ 2018-11-30 21:45 UTC (permalink / raw)
To: qemu-devel; +Cc: kraxel
This function is only needed when Q35 is in use. Moving it to
the same file that uses it lets you disable the entire USB
subsystem in x86_64-softmmu.mak; of course doing that will
cause -usb to break horribly, but one thing at a time.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
hw/i386/pc_q35.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++-
hw/usb/hcd-ehci-pci.c | 53 -------------------------------------------------
include/hw/usb.h | 2 --
3 files changed, 54 insertions(+), 56 deletions(-)
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
index ce38129..d2c80c9 100644
--- a/hw/i386/pc_q35.c
+++ b/hw/i386/pc_q35.c
@@ -58,6 +58,59 @@
/* ICH9 AHCI has 6 ports */
#define MAX_SATA_PORTS 6
+struct ehci_companions {
+ const char *name;
+ int func;
+ int port;
+};
+
+static const struct ehci_companions ich9_1d[] = {
+ { .name = "ich9-usb-uhci1", .func = 0, .port = 0 },
+ { .name = "ich9-usb-uhci2", .func = 1, .port = 2 },
+ { .name = "ich9-usb-uhci3", .func = 2, .port = 4 },
+};
+
+static const struct ehci_companions ich9_1a[] = {
+ { .name = "ich9-usb-uhci4", .func = 0, .port = 0 },
+ { .name = "ich9-usb-uhci5", .func = 1, .port = 2 },
+ { .name = "ich9-usb-uhci6", .func = 2, .port = 4 },
+};
+
+static int ehci_create_ich9_with_companions(PCIBus *bus, int slot)
+{
+ const struct ehci_companions *comp;
+ PCIDevice *ehci, *uhci;
+ BusState *usbbus;
+ const char *name;
+ int i;
+
+ switch (slot) {
+ case 0x1d:
+ name = "ich9-usb-ehci1";
+ comp = ich9_1d;
+ break;
+ case 0x1a:
+ name = "ich9-usb-ehci2";
+ comp = ich9_1a;
+ break;
+ default:
+ return -1;
+ }
+
+ ehci = pci_create_multifunction(bus, PCI_DEVFN(slot, 7), true, name);
+ qdev_init_nofail(&ehci->qdev);
+ usbbus = QLIST_FIRST(&ehci->qdev.child_bus);
+
+ for (i = 0; i < 3; i++) {
+ uhci = pci_create_multifunction(bus, PCI_DEVFN(slot, comp[i].func),
+ true, comp[i].name);
+ qdev_prop_set_string(&uhci->qdev, "masterbus", usbbus->name);
+ qdev_prop_set_uint32(&uhci->qdev, "firstport", comp[i].port);
+ qdev_init_nofail(&uhci->qdev);
+ }
+ return 0;
+}
+
/* PC hardware initialisation */
static void pc_q35_init(MachineState *machine)
{
@@ -257,7 +310,7 @@ static void pc_q35_init(MachineState *machine)
idebus[0] = idebus[1] = NULL;
}
- if (0 && machine_usb(machine)) {
+ if (machine_usb(machine)) {
/* Should we create 6 UHCI according to ich9 spec? */
ehci_create_ich9_with_companions(host_bus, 0x1d);
}
diff --git a/hw/usb/hcd-ehci-pci.c b/hw/usb/hcd-ehci-pci.c
index 8c0fc53..69abbf7 100644
--- a/hw/usb/hcd-ehci-pci.c
+++ b/hw/usb/hcd-ehci-pci.c
@@ -230,56 +230,3 @@ static void ehci_pci_register_types(void)
}
type_init(ehci_pci_register_types)
-
-struct ehci_companions {
- const char *name;
- int func;
- int port;
-};
-
-static const struct ehci_companions ich9_1d[] = {
- { .name = "ich9-usb-uhci1", .func = 0, .port = 0 },
- { .name = "ich9-usb-uhci2", .func = 1, .port = 2 },
- { .name = "ich9-usb-uhci3", .func = 2, .port = 4 },
-};
-
-static const struct ehci_companions ich9_1a[] = {
- { .name = "ich9-usb-uhci4", .func = 0, .port = 0 },
- { .name = "ich9-usb-uhci5", .func = 1, .port = 2 },
- { .name = "ich9-usb-uhci6", .func = 2, .port = 4 },
-};
-
-int ehci_create_ich9_with_companions(PCIBus *bus, int slot)
-{
- const struct ehci_companions *comp;
- PCIDevice *ehci, *uhci;
- BusState *usbbus;
- const char *name;
- int i;
-
- switch (slot) {
- case 0x1d:
- name = "ich9-usb-ehci1";
- comp = ich9_1d;
- break;
- case 0x1a:
- name = "ich9-usb-ehci2";
- comp = ich9_1a;
- break;
- default:
- return -1;
- }
-
- ehci = pci_create_multifunction(bus, PCI_DEVFN(slot, 7), true, name);
- qdev_init_nofail(&ehci->qdev);
- usbbus = QLIST_FIRST(&ehci->qdev.child_bus);
-
- for (i = 0; i < 3; i++) {
- uhci = pci_create_multifunction(bus, PCI_DEVFN(slot, comp[i].func),
- true, comp[i].name);
- qdev_prop_set_string(&uhci->qdev, "masterbus", usbbus->name);
- qdev_prop_set_uint32(&uhci->qdev, "firstport", comp[i].port);
- qdev_init_nofail(&uhci->qdev);
- }
- return 0;
-}
diff --git a/include/hw/usb.h b/include/hw/usb.h
index a5080ad..4961405 100644
--- a/include/hw/usb.h
+++ b/include/hw/usb.h
@@ -593,8 +593,6 @@ const char *usb_device_get_product_desc(USBDevice *dev);
const USBDesc *usb_device_get_usb_desc(USBDevice *dev);
-int ehci_create_ich9_with_companions(PCIBus *bus, int slot);
-
/* quirks.c */
/* In bulk endpoints are streaming data sources (iow behave like isoc eps) */
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386
2018-11-30 21:45 [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386 Paolo Bonzini
@ 2018-12-01 19:00 ` Philippe Mathieu-Daudé
2018-12-10 13:17 ` Gerd Hoffmann
1 sibling, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-12-01 19:00 UTC (permalink / raw)
To: Paolo Bonzini, qemu-devel; +Cc: kraxel
Hi Paolo,
On 30/11/18 22:45, Paolo Bonzini wrote:
> This function is only needed when Q35 is in use. Moving it to
> the same file that uses it lets you disable the entire USB
> subsystem in x86_64-softmmu.mak; of course doing that will
> cause -usb to break horribly, but one thing at a time.
Moving this out of hcd-ehci-pci.c is an improvement.
I'm mitigated about adding this to pc_q35.c, but for the goal you
mentioned, it is enough.
(In a previous work I tried to refactor all ich9 under hw/southbridge/,
keeping q35 clean of it. I might continue after qconfig merged, if this
is worthwhile).
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
> hw/i386/pc_q35.c | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++-
> hw/usb/hcd-ehci-pci.c | 53 -------------------------------------------------
> include/hw/usb.h | 2 --
> 3 files changed, 54 insertions(+), 56 deletions(-)
>
> diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
> index ce38129..d2c80c9 100644
> --- a/hw/i386/pc_q35.c
> +++ b/hw/i386/pc_q35.c
> @@ -58,6 +58,59 @@
> /* ICH9 AHCI has 6 ports */
> #define MAX_SATA_PORTS 6
>
> +struct ehci_companions {
> + const char *name;
> + int func;
> + int port;
> +};
> +
> +static const struct ehci_companions ich9_1d[] = {
> + { .name = "ich9-usb-uhci1", .func = 0, .port = 0 },
> + { .name = "ich9-usb-uhci2", .func = 1, .port = 2 },
> + { .name = "ich9-usb-uhci3", .func = 2, .port = 4 },
> +};
> +
> +static const struct ehci_companions ich9_1a[] = {
> + { .name = "ich9-usb-uhci4", .func = 0, .port = 0 },
> + { .name = "ich9-usb-uhci5", .func = 1, .port = 2 },
> + { .name = "ich9-usb-uhci6", .func = 2, .port = 4 },
> +};
> +
> +static int ehci_create_ich9_with_companions(PCIBus *bus, int slot)
> +{
> + const struct ehci_companions *comp;
> + PCIDevice *ehci, *uhci;
> + BusState *usbbus;
> + const char *name;
> + int i;
> +
> + switch (slot) {
> + case 0x1d:
> + name = "ich9-usb-ehci1";
> + comp = ich9_1d;
> + break;
> + case 0x1a:
> + name = "ich9-usb-ehci2";
> + comp = ich9_1a;
> + break;
> + default:
> + return -1;
> + }
> +
> + ehci = pci_create_multifunction(bus, PCI_DEVFN(slot, 7), true, name);
> + qdev_init_nofail(&ehci->qdev);
> + usbbus = QLIST_FIRST(&ehci->qdev.child_bus);
> +
> + for (i = 0; i < 3; i++) {
> + uhci = pci_create_multifunction(bus, PCI_DEVFN(slot, comp[i].func),
> + true, comp[i].name);
> + qdev_prop_set_string(&uhci->qdev, "masterbus", usbbus->name);
> + qdev_prop_set_uint32(&uhci->qdev, "firstport", comp[i].port);
> + qdev_init_nofail(&uhci->qdev);
> + }
> + return 0;
> +}
> +
> /* PC hardware initialisation */
> static void pc_q35_init(MachineState *machine)
> {
> @@ -257,7 +310,7 @@ static void pc_q35_init(MachineState *machine)
> idebus[0] = idebus[1] = NULL;
> }
>
> - if (0 && machine_usb(machine)) {
> + if (machine_usb(machine)) {
This change shouldn't be unnotified in the commit message.
Maybe this deserves a separate commit?
Except this, I am OK with your patch.
> /* Should we create 6 UHCI according to ich9 spec? */
> ehci_create_ich9_with_companions(host_bus, 0x1d);
> }
> diff --git a/hw/usb/hcd-ehci-pci.c b/hw/usb/hcd-ehci-pci.c
> index 8c0fc53..69abbf7 100644
> --- a/hw/usb/hcd-ehci-pci.c
> +++ b/hw/usb/hcd-ehci-pci.c
> @@ -230,56 +230,3 @@ static void ehci_pci_register_types(void)
> }
>
> type_init(ehci_pci_register_types)
> -
> -struct ehci_companions {
> - const char *name;
> - int func;
> - int port;
> -};
> -
> -static const struct ehci_companions ich9_1d[] = {
> - { .name = "ich9-usb-uhci1", .func = 0, .port = 0 },
> - { .name = "ich9-usb-uhci2", .func = 1, .port = 2 },
> - { .name = "ich9-usb-uhci3", .func = 2, .port = 4 },
> -};
> -
> -static const struct ehci_companions ich9_1a[] = {
> - { .name = "ich9-usb-uhci4", .func = 0, .port = 0 },
> - { .name = "ich9-usb-uhci5", .func = 1, .port = 2 },
> - { .name = "ich9-usb-uhci6", .func = 2, .port = 4 },
> -};
> -
> -int ehci_create_ich9_with_companions(PCIBus *bus, int slot)
> -{
> - const struct ehci_companions *comp;
> - PCIDevice *ehci, *uhci;
> - BusState *usbbus;
> - const char *name;
> - int i;
> -
> - switch (slot) {
> - case 0x1d:
> - name = "ich9-usb-ehci1";
> - comp = ich9_1d;
> - break;
> - case 0x1a:
> - name = "ich9-usb-ehci2";
> - comp = ich9_1a;
> - break;
> - default:
> - return -1;
> - }
> -
> - ehci = pci_create_multifunction(bus, PCI_DEVFN(slot, 7), true, name);
> - qdev_init_nofail(&ehci->qdev);
> - usbbus = QLIST_FIRST(&ehci->qdev.child_bus);
> -
> - for (i = 0; i < 3; i++) {
> - uhci = pci_create_multifunction(bus, PCI_DEVFN(slot, comp[i].func),
> - true, comp[i].name);
> - qdev_prop_set_string(&uhci->qdev, "masterbus", usbbus->name);
> - qdev_prop_set_uint32(&uhci->qdev, "firstport", comp[i].port);
> - qdev_init_nofail(&uhci->qdev);
> - }
> - return 0;
> -}
> diff --git a/include/hw/usb.h b/include/hw/usb.h
> index a5080ad..4961405 100644
> --- a/include/hw/usb.h
> +++ b/include/hw/usb.h
> @@ -593,8 +593,6 @@ const char *usb_device_get_product_desc(USBDevice *dev);
>
> const USBDesc *usb_device_get_usb_desc(USBDevice *dev);
>
> -int ehci_create_ich9_with_companions(PCIBus *bus, int slot);
> -
> /* quirks.c */
>
> /* In bulk endpoints are streaming data sources (iow behave like isoc eps) */
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386
2018-11-30 21:45 [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386 Paolo Bonzini
2018-12-01 19:00 ` Philippe Mathieu-Daudé
@ 2018-12-10 13:17 ` Gerd Hoffmann
2018-12-10 17:37 ` Paolo Bonzini
1 sibling, 1 reply; 4+ messages in thread
From: Gerd Hoffmann @ 2018-12-10 13:17 UTC (permalink / raw)
To: Paolo Bonzini; +Cc: qemu-devel
On Fri, Nov 30, 2018 at 10:45:12PM +0100, Paolo Bonzini wrote:
> This function is only needed when Q35 is in use. Moving it to
> the same file that uses it lets you disable the entire USB
> subsystem in x86_64-softmmu.mak; of course doing that will
> cause -usb to break horribly, but one thing at a time.
Patch doesn't apply.
> - if (0 && machine_usb(machine)) {
> + if (machine_usb(machine)) {
Leftover local debug change here?
cheers,
Gerd
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386
2018-12-10 13:17 ` Gerd Hoffmann
@ 2018-12-10 17:37 ` Paolo Bonzini
0 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2018-12-10 17:37 UTC (permalink / raw)
To: Gerd Hoffmann; +Cc: qemu-devel
On 10/12/18 14:17, Gerd Hoffmann wrote:
> On Fri, Nov 30, 2018 at 10:45:12PM +0100, Paolo Bonzini wrote:
>> This function is only needed when Q35 is in use. Moving it to
>> the same file that uses it lets you disable the entire USB
>> subsystem in x86_64-softmmu.mak; of course doing that will
>> cause -usb to break horribly, but one thing at a time.
>
> Patch doesn't apply.
>
>> - if (0 && machine_usb(machine)) {
>> + if (machine_usb(machine)) {
>
> Leftover local debug change here?
Yes, more precisely this patch replaced the quick "0 &&" hack.
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-12-10 17:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-30 21:45 [Qemu-devel] [PATCH for-4.0] usb: move ehci_create_ich9_with_companions to hw/i386 Paolo Bonzini
2018-12-01 19:00 ` Philippe Mathieu-Daudé
2018-12-10 13:17 ` Gerd Hoffmann
2018-12-10 17:37 ` Paolo Bonzini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).