]> git.proxmox.com Git - qemu.git/blame - docs/usb2.txt
net: Refactor net_client_types
[qemu.git] / docs / usb2.txt
CommitLineData
94527ead
GH
1
2USB 2.0 Quick Start
3===================
4
76f30473
GH
5The QEMU EHCI Adapter can be used with and without companion
6controllers. See below for the companion controller mode.
7
8When not running in companion controller mode there are two completely
9separate USB busses: One USB 1.1 bus driven by the UHCI controller and
10one USB 2.0 bus driven by the EHCI controller. Devices must be
11attached to the correct controller manually.
94527ead
GH
12
13The '-usb' switch will make qemu create the UHCI controller as part of
14the PIIX3 chipset. The USB 1.1 bus will carry the name "usb.0".
15
16You can use the standard -device switch to add a EHCI controller to
17your virtual machine. It is strongly recommended to specify an ID for
18the controller so the USB 2.0 bus gets a individual name, for example
19'-device usb-ehci,id=ehci". This will give you a USB 2.0 bus named
20"ehci.0".
21
22I strongly recomment to also use -device to attach usb devices because
23you can specify the bus they should be attached to this way. Here is
24a complete example:
25
26 qemu -M pc ${otheroptions} \
27 -drive if=none,id=usbstick,file=/path/to/image \
28 -usb \
29 -device usb-ehci,id=ehci \
30 -device usb-tablet,bus=usb.0 \
31 -device usb-storage,bus=ehci.0,drive=usbstick
32
33This attaches a usb tablet to the UHCI adapter and a usb mass storage
34device to the EHCI adapter.
35
f72e502e 36
76f30473
GH
37Companion controller support
38----------------------------
39
40Companion controller support has been added recently. The operational
41model described above with two completely separate busses still works
42fine. Additionally the UHCI and OHCI controllers got the ability to
43attach to a usb bus created by EHCI as companion controllers. This is
44done by specifying the masterbus and firstport properties. masterbus
45specifies the bus name the controller should attach to. firstport
46specifies the first port the controller should attach to, which is
47needed as usually one ehci controller with six ports has three uhci
48companion controllers with two ports each.
49
50There is a config file in docs which will do all this for you, just
51try ...
52
53 qemu -readconfig docs/ich9-ehci-uhci.cfg
54
55... then use "bus=ehci.0" to assign your usb devices to that bus.
56
57
f72e502e
GH
58More USB tips & tricks
59======================
60
61Recently the usb pass through driver (also known as usb-host) and the
62qemu usb subsystem gained a few capabilities which are available only
63via qdev properties, i,e. when using '-device'.
64
65
66physical port addressing
67------------------------
68
69First you can (for all usb devices) specify the physical port where
70the device will show up in the guest. This can be done using the
71"port" property. UHCI has two root ports (1,2). EHCI has four root
72ports (1-4), the emulated (1.1) USB hub has eight ports.
73
74Plugging a tablet into UHCI port 1 works like this:
75
76 -device usb-tablet,bus=usb.0,port=1
77
78Plugging a hub into UHCI port 2 works like this:
79
80 -device usb-hub,bus=usb.0,port=2
81
82Plugging a virtual usb stick into port 4 of the hub just plugged works
83this way:
84
85 -device usb-storage,bus=usb.0,port=2.4,drive=...
86
87You can do basically the same in the monitor using the device_add
88command. If you want to unplug devices too you should specify some
89unique id which you can use to refer to the device ...
90
91 (qemu) device_add usb-tablet,bus=usb.0,port=1,id=my-tablet
92 (qemu) device_del my-tablet
93
94... when unplugging it with device_del.
95
96
97USB pass through hints
98----------------------
99
100The usb-host driver has a bunch of properties to specify the device
101which should be passed to the guest:
102
103 hostbus=<nr> -- Specifies the bus number the device must be attached
104 to.
105
106 hostaddr=<nr> -- Specifies the device address the device got
107 assigned by the guest os.
108
109 hostport=<str> -- Specifies the physical port the device is attached
110 to.
111
112 vendorid=<hexnr> -- Specifies the vendor ID of the device.
113 productid=<hexnr> -- Specifies the product ID of the device.
114
115In theory you can combine all these properties as you like. In
116practice only a few combinations are useful:
117
118 (1) vendorid+productid -- match for a specific device, pass it to
119 the guest when it shows up somewhere in the host.
120
121 (2) hostbus+hostport -- match for a specific physical port in the
122 host, any device which is plugged in there gets passed to the
123 guest.
124
125 (3) hostbus+hostaddr -- most useful for ad-hoc pass through as the
126 hostaddr isn't stable, the next time you plug in the device it
127 gets a new one ...
128
129Note that USB 1.1 devices are handled by UHCI/OHCI and USB 2.0 by
130EHCI. That means a device plugged into the very same physical port
131may show up on different busses depending on the speed. The port I'm
132using for testing is bus 1 + port 1 for 2.0 devices and bus 3 + port 1
133for 1.1 devices. Passing through any device plugged into that port
134and also assign them to the correct bus can be done this way:
135
136 qemu -M pc ${otheroptions} \
137 -usb \
138 -device usb-ehci,id=ehci \
139 -device usb-host,bus=usb.0,hostbus=3,hostport=1 \
140 -device usb-host,bus=ehci.0,hostbus=1,hostport=1
141
94527ead
GH
142enjoy,
143 Gerd
144
145--
146Gerd Hoffmann <kraxel@redhat.com>