From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
qemu-devel@nongnu.org, Beniamino Galvani <b.galvani@gmail.com>,
qemu-arm@nongnu.org, Icenowy Zheng <icenowy@aosc.xyz>,
Guenter Roeck <linux@roeck-us.net>
Subject: Re: [Qemu-devel] [PATCH 3/3] arm: allwinner: Enable USB EHCI
Date: Tue, 30 Oct 2018 23:39:23 +0100 [thread overview]
Message-ID: <fc4b00b2-dda0-a0fb-e7b8-487065dbf6cc@redhat.com> (raw)
In-Reply-To: <20181030063830.edjacusffvgwvnt2@sirius.home.kraxel.org>
Hi Gerd,
On 30/10/18 7:38, Gerd Hoffmann wrote:
> On Mon, Oct 29, 2018 at 11:32:07PM +0100, Philippe Mathieu-Daudé wrote:
>> From: Guenter Roeck <linux@roeck-us.net>
>>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> [PMD: Intented tabs -> space]
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>> hw/arm/allwinner-a10.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/hw/arm/allwinner-a10.c b/hw/arm/allwinner-a10.c
>> index 0a8ac929f5..92ab66354a 100644
>> --- a/hw/arm/allwinner-a10.c
>> +++ b/hw/arm/allwinner-a10.c
>> @@ -116,6 +116,8 @@ static void aw_a10_realize(DeviceState *dev, Error **errp)
>> if (machine_usb(current_machine)) {
>> sysbus_create_simple("sysbus-ohci", 0x01c14400, s->irq[64]);
>> sysbus_create_simple("sysbus-ohci", 0x01c1c400, s->irq[65]);
>> + sysbus_create_simple(TYPE_AW_A10_EHCI, 0x01c14000, s->irq[39]);
>> + sysbus_create_simple(TYPE_AW_A10_EHCI, 0x01c1c000, s->irq[40]);
>
> Hmm, is this a companion controller setup? If so, then this is a bit
> more complicated (see ehci_create_ich9_with_companions()).
I don't have enough USB knowledge. Can we have companion setup without PCI?
Per the datashit [1] p. 215 "21. USB Host Controller", each controller
share the same PHY. There is no mention of companion setup:
The USB host controller includes the following features:
..
- Complies with EHCI Specification, Version 1.0,
- and the OHCI Specification, Version 1.0a.
..
- Support only 1 USB Root Port shared between EHCI and OHCI.
[1] http://linux-sunxi.org/images/1/1e/Allwinner_A10_User_manual_V1.5.pdf
>
> cheers,
> Gerd
>
WARNING: multiple messages have this Message-ID (diff)
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
Icenowy Zheng <icenowy@aosc.xyz>,
Guenter Roeck <linux@roeck-us.net>,
qemu-devel@nongnu.org, qemu-arm@nongnu.org,
Beniamino Galvani <b.galvani@gmail.com>
Subject: Re: [Qemu-devel] [PATCH 3/3] arm: allwinner: Enable USB EHCI
Date: Tue, 30 Oct 2018 23:39:23 +0100 [thread overview]
Message-ID: <fc4b00b2-dda0-a0fb-e7b8-487065dbf6cc@redhat.com> (raw)
In-Reply-To: <20181030063830.edjacusffvgwvnt2@sirius.home.kraxel.org>
Hi Gerd,
On 30/10/18 7:38, Gerd Hoffmann wrote:
> On Mon, Oct 29, 2018 at 11:32:07PM +0100, Philippe Mathieu-Daudé wrote:
>> From: Guenter Roeck <linux@roeck-us.net>
>>
>> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
>> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> [PMD: Intented tabs -> space]
>> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
>> ---
>> hw/arm/allwinner-a10.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/hw/arm/allwinner-a10.c b/hw/arm/allwinner-a10.c
>> index 0a8ac929f5..92ab66354a 100644
>> --- a/hw/arm/allwinner-a10.c
>> +++ b/hw/arm/allwinner-a10.c
>> @@ -116,6 +116,8 @@ static void aw_a10_realize(DeviceState *dev, Error **errp)
>> if (machine_usb(current_machine)) {
>> sysbus_create_simple("sysbus-ohci", 0x01c14400, s->irq[64]);
>> sysbus_create_simple("sysbus-ohci", 0x01c1c400, s->irq[65]);
>> + sysbus_create_simple(TYPE_AW_A10_EHCI, 0x01c14000, s->irq[39]);
>> + sysbus_create_simple(TYPE_AW_A10_EHCI, 0x01c1c000, s->irq[40]);
>
> Hmm, is this a companion controller setup? If so, then this is a bit
> more complicated (see ehci_create_ich9_with_companions()).
I don't have enough USB knowledge. Can we have companion setup without PCI?
Per the datashit [1] p. 215 "21. USB Host Controller", each controller
share the same PHY. There is no mention of companion setup:
The USB host controller includes the following features:
..
- Complies with EHCI Specification, Version 1.0,
- and the OHCI Specification, Version 1.0a.
..
- Support only 1 USB Root Port shared between EHCI and OHCI.
[1] http://linux-sunxi.org/images/1/1e/Allwinner_A10_User_manual_V1.5.pdf
>
> cheers,
> Gerd
>
next prev parent reply other threads:[~2018-10-30 22:40 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-29 22:32 [Qemu-arm] [PATCH 0/3] hw/arm: Enable USB OHCI/EHCI on Allwinner A10 Philippe Mathieu-Daudé
2018-10-29 22:32 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-10-29 22:32 ` [Qemu-arm] [PATCH 1/3] arm: allwinner: Enable USB OHCI Philippe Mathieu-Daudé
2018-10-29 22:32 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-10-29 22:32 ` [Qemu-arm] [PATCH 2/3] usb: ehci: Add support for Allwinner A10 Philippe Mathieu-Daudé
2018-10-29 22:32 ` [Qemu-devel] " Philippe Mathieu-Daudé
2018-10-30 6:37 ` [Qemu-arm] " Gerd Hoffmann
2018-10-30 6:37 ` [Qemu-devel] " Gerd Hoffmann
2018-10-29 22:32 ` [Qemu-devel] [PATCH 3/3] arm: allwinner: Enable USB EHCI Philippe Mathieu-Daudé
2018-10-29 22:32 ` Philippe Mathieu-Daudé
2018-10-30 6:38 ` [Qemu-arm] " Gerd Hoffmann
2018-10-30 6:38 ` [Qemu-devel] " Gerd Hoffmann
2018-10-30 22:39 ` Philippe Mathieu-Daudé [this message]
2018-10-30 22:39 ` Philippe Mathieu-Daudé
2018-11-05 8:16 ` [Qemu-arm] " Gerd Hoffmann
2018-11-05 8:16 ` [Qemu-devel] " Gerd Hoffmann
2018-11-07 18:38 ` [Qemu-arm] " Guenter Roeck
2018-11-07 18:38 ` [Qemu-devel] " Guenter Roeck
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fc4b00b2-dda0-a0fb-e7b8-487065dbf6cc@redhat.com \
--to=philmd@redhat.com \
--cc=b.galvani@gmail.com \
--cc=icenowy@aosc.xyz \
--cc=kraxel@redhat.com \
--cc=linux@roeck-us.net \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.