From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1EYPHG-0005go-W6 for qemu-devel@nongnu.org; Sat, 05 Nov 2005 09:44:19 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1EYPHF-0005gR-Kq for qemu-devel@nongnu.org; Sat, 05 Nov 2005 09:44:18 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EYPHF-0005gJ-7M for qemu-devel@nongnu.org; Sat, 05 Nov 2005 09:44:17 -0500 Received: from [84.96.92.60] (helo=Smtp.neuf.fr) by monty-python.gnu.org with esmtp (Exim 4.34) id 1EYPHF-0000oY-CE for qemu-devel@nongnu.org; Sat, 05 Nov 2005 09:44:17 -0500 Received: from [84.99.204.155] by sp604001mt.gpm.neuf.ld (Sun Java System Messaging Server 6.2-4.03 (built Sep 22 2005)) with ESMTP id <0IPH00F2QKXSFXE0@sp604001mt.gpm.neuf.ld> for qemu-devel@nongnu.org; Sat, 05 Nov 2005 15:44:16 +0100 (CET) Date: Sat, 05 Nov 2005 15:45:45 +0100 From: Fabrice Bellard Message-id: <436CC599.3080905@bellard.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT Subject: [Qemu-devel] USB support Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, I just commited an initial USB support for QEMU. This USB layer will ultimately enable QEMU to use some host USB devices and to simulate USB devices. WARNING: the current USB support is for USB hackers only - it is not meant to be fully usable yet. The following features are implemented: - PCI UHCI USB controller (I finally decided to implement UHCI because I know it better than OHCI and because Bochs has a similar driver. Of course it would still be very interesting to have an equivalent OHCI controller for non PC targets and an EHCI controller for USB 2.0 devices). - Virtual USB 1.1 hub. - Linux host USB redirector to use the USB 1.1 host devices which are not requested by the host OS (i.e. no host driver is loaded for them). It is *very* limited and buggy at the moment, but I was able (once !) to mount a disk-on-key flash device. I plan to implement a USB mouse device as in Bochs just to have at least one "useful" virtual USB device to play with. Anyone is free to implement other devices by looking at the USB hub implementation in usb.c. Fabrice.