* [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers
@ 2024-01-19 21:51 Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 1/2] hw/arm/allwinner-a10: Unconditionally map the USB Host controllers Philippe Mathieu-Daudé
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-01-19 21:51 UTC (permalink / raw)
To: qemu-devel
Cc: Beniamino Galvani, qemu-arm, Strahinja Jankovic, Peter Maydell,
Philippe Mathieu-Daudé
When a chipset contain a USB controller, we can not simply
remove it. We could disable it, but that requires more changes
this series isn't aiming for. For more context:
https://lore.kernel.org/qemu-devel/56fde49f-7dc6-4f8e-9bbf-0336a20a9ebf@roeck-us.net/
Since v1:
- Mention migration compat break (Peter)
Philippe Mathieu-Daudé (2):
hw/arm/allwinner-a10: Unconditionally map the USB Host controllers
hw/arm/nseries: Unconditionally map the TUSB6010 USB Host controller
hw/arm/allwinner-a10.c | 49 +++++++++++++++++-------------------------
hw/arm/nseries.c | 4 +---
2 files changed, 21 insertions(+), 32 deletions(-)
--
2.41.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/2] hw/arm/allwinner-a10: Unconditionally map the USB Host controllers
2024-01-19 21:51 [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Philippe Mathieu-Daudé
@ 2024-01-19 21:51 ` Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 2/2] hw/arm/nseries: Unconditionally map the TUSB6010 USB Host controller Philippe Mathieu-Daudé
2024-01-22 16:42 ` [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Peter Maydell
2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-01-19 21:51 UTC (permalink / raw)
To: qemu-devel
Cc: Beniamino Galvani, qemu-arm, Strahinja Jankovic, Peter Maydell,
Philippe Mathieu-Daudé, Guenter Roeck
The USB Controllers are part of the chipset, thus are
always present and mapped in memory.
This is a migration compatibility break for the cubieboard
machine started with the '-usb none' option.
Reported-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Guenter Roeck <linux@roeck-us.net>
---
hw/arm/allwinner-a10.c | 49 +++++++++++++++++-------------------------
1 file changed, 20 insertions(+), 29 deletions(-)
diff --git a/hw/arm/allwinner-a10.c b/hw/arm/allwinner-a10.c
index b0ea3f7f66..0135632996 100644
--- a/hw/arm/allwinner-a10.c
+++ b/hw/arm/allwinner-a10.c
@@ -79,15 +79,10 @@ static void aw_a10_init(Object *obj)
object_initialize_child(obj, "i2c0", &s->i2c0, TYPE_AW_I2C);
- if (machine_usb(current_machine)) {
- int i;
-
- for (i = 0; i < AW_A10_NUM_USB; i++) {
- object_initialize_child(obj, "ehci[*]", &s->ehci[i],
- TYPE_PLATFORM_EHCI);
- object_initialize_child(obj, "ohci[*]", &s->ohci[i],
- TYPE_SYSBUS_OHCI);
- }
+ for (size_t i = 0; i < AW_A10_NUM_USB; i++) {
+ object_initialize_child(obj, "ehci[*]", &s->ehci[i],
+ TYPE_PLATFORM_EHCI);
+ object_initialize_child(obj, "ohci[*]", &s->ohci[i], TYPE_SYSBUS_OHCI);
}
object_initialize_child(obj, "mmc0", &s->mmc0, TYPE_AW_SDHOST_SUN4I);
@@ -165,28 +160,24 @@ static void aw_a10_realize(DeviceState *dev, Error **errp)
qdev_get_gpio_in(dev, 1),
115200, serial_hd(0), DEVICE_NATIVE_ENDIAN);
- if (machine_usb(current_machine)) {
- int i;
+ for (size_t i = 0; i < AW_A10_NUM_USB; i++) {
+ g_autofree char *bus = g_strdup_printf("usb-bus.%zu", i);
- for (i = 0; i < AW_A10_NUM_USB; i++) {
- g_autofree char *bus = g_strdup_printf("usb-bus.%d", i);
+ object_property_set_bool(OBJECT(&s->ehci[i]), "companion-enable",
+ true, &error_fatal);
+ sysbus_realize(SYS_BUS_DEVICE(&s->ehci[i]), &error_fatal);
+ sysbus_mmio_map(SYS_BUS_DEVICE(&s->ehci[i]), 0,
+ AW_A10_EHCI_BASE + i * 0x8000);
+ sysbus_connect_irq(SYS_BUS_DEVICE(&s->ehci[i]), 0,
+ qdev_get_gpio_in(dev, 39 + i));
- object_property_set_bool(OBJECT(&s->ehci[i]), "companion-enable",
- true, &error_fatal);
- sysbus_realize(SYS_BUS_DEVICE(&s->ehci[i]), &error_fatal);
- sysbus_mmio_map(SYS_BUS_DEVICE(&s->ehci[i]), 0,
- AW_A10_EHCI_BASE + i * 0x8000);
- sysbus_connect_irq(SYS_BUS_DEVICE(&s->ehci[i]), 0,
- qdev_get_gpio_in(dev, 39 + i));
-
- object_property_set_str(OBJECT(&s->ohci[i]), "masterbus", bus,
- &error_fatal);
- sysbus_realize(SYS_BUS_DEVICE(&s->ohci[i]), &error_fatal);
- sysbus_mmio_map(SYS_BUS_DEVICE(&s->ohci[i]), 0,
- AW_A10_OHCI_BASE + i * 0x8000);
- sysbus_connect_irq(SYS_BUS_DEVICE(&s->ohci[i]), 0,
- qdev_get_gpio_in(dev, 64 + i));
- }
+ object_property_set_str(OBJECT(&s->ohci[i]), "masterbus", bus,
+ &error_fatal);
+ sysbus_realize(SYS_BUS_DEVICE(&s->ohci[i]), &error_fatal);
+ sysbus_mmio_map(SYS_BUS_DEVICE(&s->ohci[i]), 0,
+ AW_A10_OHCI_BASE + i * 0x8000);
+ sysbus_connect_irq(SYS_BUS_DEVICE(&s->ohci[i]), 0,
+ qdev_get_gpio_in(dev, 64 + i));
}
/* SD/MMC */
--
2.41.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] hw/arm/nseries: Unconditionally map the TUSB6010 USB Host controller
2024-01-19 21:51 [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 1/2] hw/arm/allwinner-a10: Unconditionally map the USB Host controllers Philippe Mathieu-Daudé
@ 2024-01-19 21:51 ` Philippe Mathieu-Daudé
2024-01-22 16:42 ` [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Peter Maydell
2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-01-19 21:51 UTC (permalink / raw)
To: qemu-devel
Cc: Beniamino Galvani, qemu-arm, Strahinja Jankovic, Peter Maydell,
Philippe Mathieu-Daudé
The TUSB6010 USB controller is solderer on the N800 and N810
tablets, thus is always present.
This is a migration compatibility break for the n800/n810
machines started with the '-usb none' option.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
hw/arm/nseries.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/hw/arm/nseries.c b/hw/arm/nseries.c
index 35aff46b4b..35deb74f65 100644
--- a/hw/arm/nseries.c
+++ b/hw/arm/nseries.c
@@ -1353,9 +1353,7 @@ static void n8x0_init(MachineState *machine,
n8x0_spi_setup(s);
n8x0_dss_setup(s);
n8x0_cbus_setup(s);
- if (machine_usb(machine)) {
- n8x0_usb_setup(s);
- }
+ n8x0_usb_setup(s);
if (machine->kernel_filename) {
/* Or at the linux loader. */
--
2.41.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers
2024-01-19 21:51 [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 1/2] hw/arm/allwinner-a10: Unconditionally map the USB Host controllers Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 2/2] hw/arm/nseries: Unconditionally map the TUSB6010 USB Host controller Philippe Mathieu-Daudé
@ 2024-01-22 16:42 ` Peter Maydell
2 siblings, 0 replies; 4+ messages in thread
From: Peter Maydell @ 2024-01-22 16:42 UTC (permalink / raw)
To: Philippe Mathieu-Daudé
Cc: qemu-devel, Beniamino Galvani, qemu-arm, Strahinja Jankovic
On Fri, 19 Jan 2024 at 21:51, Philippe Mathieu-Daudé <philmd@linaro.org> wrote:
>
> When a chipset contain a USB controller, we can not simply
> remove it. We could disable it, but that requires more changes
> this series isn't aiming for. For more context:
> https://lore.kernel.org/qemu-devel/56fde49f-7dc6-4f8e-9bbf-0336a20a9ebf@roeck-us.net/
>
> Since v1:
> - Mention migration compat break (Peter)
>
> Philippe Mathieu-Daudé (2):
> hw/arm/allwinner-a10: Unconditionally map the USB Host controllers
> hw/arm/nseries: Unconditionally map the TUSB6010 USB Host controller
>
> hw/arm/allwinner-a10.c | 49 +++++++++++++++++-------------------------
> hw/arm/nseries.c | 4 +---
> 2 files changed, 21 insertions(+), 32 deletions(-)
Thanks; I've updated my target-arm.next branch with this
version of these patches.
-- PMM
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-01-22 16:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-19 21:51 [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 1/2] hw/arm/allwinner-a10: Unconditionally map the USB Host controllers Philippe Mathieu-Daudé
2024-01-19 21:51 ` [PATCH v2 2/2] hw/arm/nseries: Unconditionally map the TUSB6010 USB Host controller Philippe Mathieu-Daudé
2024-01-22 16:42 ` [PATCH v2 0/2] hw/arm: Unconditionally map MMIO-based USB host controllers Peter Maydell
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).