From: Lonnie Mendez <lmendez19@austin.rr.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] patch for USB issues
Date: Thu, 16 Feb 2006 22:41:25 -0600 [thread overview]
Message-ID: <43F553F5.9040406@austin.rr.com> (raw)
In-Reply-To: <Pine.GSO.4.60.0602162104220.13431@igloo.df.lth.se>
Krister Walfridsson wrote:
> I'm playing with the USB code, but I cannot get the USB mouse emulation
> to work with the guests I have tried (NetBSD and Win2k). Attached are
> two patches that improves the situation somewhat.
>
> * hw/usb-uhci.c
> The PCI configuration registers are set up with an incorrect
> offset for USBBASE and uninitialized SBRN. This makes NetBSD
> complain that this is not a valid UHCI controller.
> * hw/usb.c
> The length field of the returned descriptor strings are
> incorrect, which trunkates the returned strings.
>
> There are some additional problems with the hub emulation that I hope
> to get the time to fix during the weekend.
>
> /Krister
>
>
>
> Index: usb-uhci.c
> ===================================================================
> RCS file: /sources/qemu/qemu/hw/usb-uhci.c,v
> retrieving revision 1.4
> diff -b -u -p -r1.4 usb-uhci.c
> --- usb-uhci.c 19 Nov 2005 17:43:37 -0000 1.4
> +++ usb-uhci.c 16 Feb 2006 20:02:52 -0000
> @@ -654,6 +654,7 @@ void usb_uhci_init(PCIBus *bus, USBPort
> pci_conf[0x0b] = 0x0c;
> pci_conf[0x0e] = 0x00; // header_type
> pci_conf[0x3d] = 4; // interrupt pin 3
> + pci_conf[0x60] = 0x11; // USB 1.1
>
> for(i = 0; i < NB_PORTS; i++) {
> port = &s->ports[i];
> @@ -666,6 +667,6 @@ void usb_uhci_init(PCIBus *bus, USBPort
>
> uhci_reset(s);
>
> - pci_register_io_region(&s->dev, 0, 0x20, +
> pci_register_io_region(&s->dev, 4, 0x20,
> PCI_ADDRESS_SPACE_IO, uhci_map);
> }
> Index: usb.c
> ===================================================================
> RCS file: /sources/qemu/qemu/hw/usb.c,v
> retrieving revision 1.3
> diff -b -u -p -r1.3 usb.c
> --- usb.c 6 Nov 2005 16:13:29 -0000 1.3
> +++ usb.c 16 Feb 2006 20:02:55 -0000
> @@ -183,7 +183,7 @@ int set_usb_string(uint8_t *buf, const c
>
> q = buf;
> len = strlen(str);
> - *q++ = 2 * len + 1;
> + *q++ = 2 * len + 2;
> *q++ = 3;
> for(i = 0; i < len; i++) {
> *q++ = str[i];
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
Hello. That change to pci_register_io_region works over here with
FreeBSD 6.0. However the revision for register 0x60 is incorrect. It
should read:
pci_conf[0x60] = 0x10; // USB Release 1.0
At least according to the uhci document I found that is the
appropriate value. Changing it to 0x11 causes FreeBSD's uhci layer to
complain of an invalid version number and kill the controller and it is
indeed not listed in the document.
next prev parent reply other threads:[~2006-02-17 4:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-16 20:06 [Qemu-devel] patch for USB issues Krister Walfridsson
2006-02-17 4:41 ` Lonnie Mendez [this message]
2006-02-17 15:37 ` Krister Walfridsson
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=43F553F5.9040406@austin.rr.com \
--to=lmendez19@austin.rr.com \
--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.