blob: 245cdf29c7635084fd55b5425afb9411285b7368 [file] [log] [blame]
Markus Armbruster96560cb2009-12-17 17:19:17 +01001= How to convert to -device & friends =
2
3=== Specifying Bus and Address on Bus ===
4
5In qdev, each device has a parent bus. Some devices provide one or
6more buses for children. You can specify a device's parent bus with
7-device parameter bus.
8
9A device typically has a device address on its parent bus. For buses
10where this address can be configured, devices provide a bus-specific
Markus Armbruster23bf93b2011-06-07 10:34:31 +020011property. Examples:
Markus Armbruster96560cb2009-12-17 17:19:17 +010012
Markus Armbruster23bf93b2011-06-07 10:34:31 +020013 bus property name value format
14 PCI addr %x.%x (dev.fn, .fn optional)
15 I2C address %u
16 SCSI scsi-id %u
17 IDE unit %u
18 HDA cad %u
19 virtio-serial-bus nr %u
20 ccid-bus slot %u
21 USB port %d(.%d)* (port.port...)
Markus Armbruster96560cb2009-12-17 17:19:17 +010022
23Example: device i440FX-pcihost is on the root bus, and provides a PCI
24bus named pci.0. To put a FOO device into its slot 4, use -device
25FOO,bus=/i440FX-pcihost/pci.0,addr=4. The abbreviated form bus=pci.0
26also works as long as the bus name is unique.
27
Markus Armbruster96560cb2009-12-17 17:19:17 +010028=== Block Devices ===
29
30A QEMU block device (drive) has a host and a guest part.
31
32In the general case, the guest device is connected to a controller
33device. For instance, the IDE controller provides two IDE buses, each
Markus Armbruster1c9f3b82017-05-09 11:41:15 +020034of which can have up to two devices, and each device is a guest part,
35and is connected to a host part.
Markus Armbruster96560cb2009-12-17 17:19:17 +010036
37Except we sometimes lump controller, bus(es) and drive device(s) all
38together into a single device. For instance, the ISA floppy
39controller is connected to up to two host drives.
40
41The old ways to define block devices define host and guest part
42together. Sometimes, they can even define a controller device in
43addition to the block device.
44
45The new way keeps the parts separate: you create the host part with
46-drive, and guest device(s) with -device.
47
48The various old ways to define drives all boil down to the common form
49
Markus Armbruster23bf93b2011-06-07 10:34:31 +020050 -drive if=TYPE,bus=BUS,unit=UNIT,OPTS...
Markus Armbruster96560cb2009-12-17 17:19:17 +010051
52TYPE, BUS and UNIT identify the controller device, which of its buses
53to use, and the drive's address on that bus. Details depend on TYPE.
Markus Armbruster23bf93b2011-06-07 10:34:31 +020054
55Instead of bus=BUS,unit=UNIT, you can also say index=IDX.
Markus Armbruster96560cb2009-12-17 17:19:17 +010056
57In the new way, this becomes something like
58
59 -drive if=none,id=DRIVE-ID,HOST-OPTS...
60 -device DEVNAME,drive=DRIVE-ID,DEV-OPTS...
61
Markus Armbruster23bf93b2011-06-07 10:34:31 +020062The old OPTS get split into HOST-OPTS and DEV-OPTS as follows:
63
64* file, format, snapshot, cache, aio, readonly, rerror, werror go into
65 HOST-OPTS.
66
67* cyls, head, secs and trans go into HOST-OPTS. Future work: they
68 should go into DEV-OPTS instead.
69
70* serial goes into DEV-OPTS, for devices supporting serial numbers.
71 For other devices, it goes nowhere.
72
73* media is special. In the old way, it selects disk vs. CD-ROM with
74 if=ide, if=scsi and if=xen. The new way uses DEVNAME for that.
75 Additionally, readonly=on goes into HOST-OPTS.
76
77* addr is special, see if=virtio below.
78
79The -device argument differs in detail for each type of drive:
Markus Armbruster96560cb2009-12-17 17:19:17 +010080
81* if=ide
82
Markus Armbruster23bf93b2011-06-07 10:34:31 +020083 -device DEVNAME,drive=DRIVE-ID,bus=IDE-BUS,unit=UNIT
Markus Armbruster96560cb2009-12-17 17:19:17 +010084
Markus Armbruster23bf93b2011-06-07 10:34:31 +020085 where DEVNAME is either ide-hd or ide-cd, IDE-BUS identifies an IDE
86 bus, normally either ide.0 or ide.1, and UNIT is either 0 or 1.
Markus Armbruster96560cb2009-12-17 17:19:17 +010087
88* if=scsi
89
90 The old way implicitly creates SCSI controllers as needed. The new
91 way makes that explicit:
92
93 -device lsi53c895a,id=ID
94
95 As for all PCI devices, you can add bus=PCI-BUS,addr=DEVFN to
96 control the PCI device address.
97
Markus Armbruster23bf93b2011-06-07 10:34:31 +020098 This SCSI controller provides a single SCSI bus, named ID.0. Put a
99 disk on it:
Markus Armbruster96560cb2009-12-17 17:19:17 +0100100
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200101 -device DEVNAME,drive=DRIVE-ID,bus=ID.0,scsi-id=UNIT
Stefan Hajnoczia5c062e2011-01-24 15:35:01 +0000102
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200103 where DEVNAME is either scsi-hd, scsi-cd or scsi-generic.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100104
105* if=floppy
106
Markus Armbruster4a27a632020-06-22 11:42:17 +0200107 -device floppy,unit=UNIT,drive=DRIVE-ID
Markus Armbruster96560cb2009-12-17 17:19:17 +0100108
Markus Armbruster4a27a632020-06-22 11:42:17 +0200109 Without any -device floppy,... you get an empty unit 0 and no unit
110 1. You can use -nodefaults to suppress the default unit 0, see
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200111 "Default Devices".
Markus Armbruster96560cb2009-12-17 17:19:17 +0100112
113* if=virtio
114
Stefan Hajnoczi65d6dcb2010-12-17 12:01:52 +0000115 -device virtio-blk-pci,drive=DRIVE-ID,class=C,vectors=V,ioeventfd=IOEVENTFD
Markus Armbruster96560cb2009-12-17 17:19:17 +0100116
117 This lets you control PCI device class and MSI-X vectors.
118
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200119 IOEVENTFD controls whether or not ioeventfd is used for virtqueue
120 notify. It can be set to on (default) or off.
Stefan Hajnoczi65d6dcb2010-12-17 12:01:52 +0000121
Markus Armbruster96560cb2009-12-17 17:19:17 +0100122 As for all PCI devices, you can add bus=PCI-BUS,addr=DEVFN to
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200123 control the PCI device address. This replaces option addr available
124 with -drive if=virtio.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100125
126* if=pflash, if=mtd, if=sd, if=xen are not yet available with -device
127
Markus Armbruster923fbd42020-08-06 10:11:47 +0200128For USB devices, the old way was actually different:
129
130 -usbdevice disk:format=FMT:FILENAME
131
132"Was" because "disk:" is gone since v2.12.0.
133
134The old way provided much less control than -drive's OPTS... The new
135way fixes that:
Markus Armbruster96560cb2009-12-17 17:19:17 +0100136
Stefan Hajnoczia5c062e2011-01-24 15:35:01 +0000137 -device usb-storage,drive=DRIVE-ID,removable=RMB
138
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200139The removable parameter gives control over the SCSI INQUIRY removable
140(RMB) bit. USB thumbdrives usually set removable=on, while USB hard
141disks set removable=off.
142
143Bug: usb-storage pretends to be a block device, but it's really a SCSI
144controller that can serve only a single device, which it creates
145automatically. The automatic creation guesses what kind of guest part
146to create from the host part, like -drive if=scsi. Host and guest
147part are not cleanly separated.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100148
149=== Character Devices ===
150
151A QEMU character device has a host and a guest part.
152
153The old ways to define character devices define host and guest part
154together.
155
156The new way keeps the parts separate: you create the host part with
157-chardev, and the guest device with -device.
158
159The various old ways to define a character device are all of the
160general form
161
162 -FOO FOO-OPTS...,LEGACY-CHARDEV
163
164where FOO-OPTS... is specific to -FOO, and the host part
165LEGACY-CHARDEV is the same everywhere.
166
167In the new way, this becomes
168
169 -chardev HOST-OPTS...,id=CHR-ID
170 -device DEVNAME,chardev=CHR-ID,DEV-OPTS...
171
172The appropriate DEVNAME depends on the machine type. For type "pc":
173
174* -serial becomes -device isa-serial,iobase=IOADDR,irq=IRQ,index=IDX
175
176 This lets you control I/O ports and IRQs.
177
178* -parallel becomes -device isa-parallel,iobase=IOADDR,irq=IRQ,index=IDX
179
180 This lets you control I/O ports and IRQs.
181
Markus Armbruster96560cb2009-12-17 17:19:17 +0100182* -usbdevice braille doesn't support LEGACY-CHARDEV syntax. It always
183 uses "braille". With -device, this useful default is gone, so you
184 have to use something like
185
Thomas Hutha92ff8c2017-05-08 17:13:49 +0200186 -device usb-braille,chardev=braille -chardev braille,id=braille
Markus Armbruster96560cb2009-12-17 17:19:17 +0100187
Markus Armbruster923fbd42020-08-06 10:11:47 +0200188* -usbdevice serial::chardev is gone since v2.12.0. It became
189 -device usb-serial,chardev=dev.
190
Markus Armbruster96560cb2009-12-17 17:19:17 +0100191LEGACY-CHARDEV translates to -chardev HOST-OPTS... as follows:
192
193* null becomes -chardev null
194
Anatoli Huseu1378af962017-02-06 15:23:27 +0100195* pty, msmouse, wctablet, braille, stdio likewise
Markus Armbruster96560cb2009-12-17 17:19:17 +0100196
197* vc:WIDTHxHEIGHT becomes -chardev vc,width=WIDTH,height=HEIGHT
198
199* vc:<COLS>Cx<ROWS>C becomes -chardev vc,cols=<COLS>,rows=<ROWS>
200
201* con: becomes -chardev console
202
Markus Armbruster6e93a442011-09-06 10:01:36 +0200203* COM<NUM> becomes -chardev serial,path=COM<NUM>
Markus Armbruster96560cb2009-12-17 17:19:17 +0100204
205* file:FNAME becomes -chardev file,path=FNAME
206
207* pipe:FNAME becomes -chardev pipe,path=FNAME
208
209* tcp:HOST:PORT,OPTS... becomes -chardev socket,host=HOST,port=PORT,OPTS...
210
211* telnet:HOST:PORT,OPTS... becomes
212 -chardev socket,host=HOST,port=PORT,OPTS...,telnet=on
213
214* udp:HOST:PORT@LOCALADDR:LOCALPORT becomes
215 -chardev udp,host=HOST,port=PORT,localaddr=LOCALADDR,localport=LOCALPORT
216
217* unix:FNAME becomes -chardev socket,path=FNAME
218
219* /dev/parportN becomes -chardev parport,file=/dev/parportN
220
221* /dev/ppiN likewise
222
223* Any other /dev/FNAME becomes -chardev tty,path=/dev/FNAME
224
225* mon:LEGACY-CHARDEV is special: it multiplexes the monitor onto the
226 character device defined by LEGACY-CHARDEV. -chardev provides more
227 general multiplexing instead: you can connect up to four users to a
228 single host part. You need to pass mux=on to -chardev to enable
229 switching the input focus.
230
231QEMU uses LEGACY-CHARDEV syntax not just to set up guest devices, but
232also in various other places such as -monitor or -net
233user,guestfwd=... You can use chardev:CHR-ID in place of
234LEGACY-CHARDEV to refer to a host part defined with -chardev.
235
236=== Network Devices ===
237
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200238Host and guest part of network devices have always been separate.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100239
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200240The old way to define the guest part looks like this:
Markus Armbruster96560cb2009-12-17 17:19:17 +0100241
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200242 -net nic,netdev=NET-ID,macaddr=MACADDR,model=MODEL,name=ID,addr=STR,vectors=V
Markus Armbruster96560cb2009-12-17 17:19:17 +0100243
Markus Armbruster923fbd42020-08-06 10:11:47 +0200244Except for USB it looked like this:
245
246 -usbdevice net:netdev=NET-ID,macaddr=MACADDR,name=ID
247
248"Looked" because "net:" is gone since v2.12.0.
249
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200250The new way is -device:
Markus Armbruster96560cb2009-12-17 17:19:17 +0100251
Markus Armbruster96560cb2009-12-17 17:19:17 +0100252 -device DEVNAME,netdev=NET-ID,mac=MACADDR,DEV-OPTS...
253
Markus Armbruster96560cb2009-12-17 17:19:17 +0100254DEVNAME equals MODEL, except for virtio you have to name the virtio
255device appropriate for the bus (virtio-net-pci for PCI), and for USB
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200256you have to use usb-net.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100257
258The old name=ID parameter becomes the usual id=ID with -device.
259
260For PCI devices, you can add bus=PCI-BUS,addr=DEVFN to control the PCI
261device address, as usual. The old -net nic provides parameter addr
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200262for that, which is silently ignored when the NIC is not a PCI device.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100263
Stefan Hajnoczi65d6dcb2010-12-17 12:01:52 +0000264For virtio-net-pci, you can control whether or not ioeventfd is used for
265virtqueue notify by setting ioeventfd= to on or off (default).
266
Markus Armbruster96560cb2009-12-17 17:19:17 +0100267-net nic accepts vectors=V for all models, but it's silently ignored
268except for virtio-net-pci (model=virtio). With -device, only devices
269that support it accept it.
270
271Not all devices are available with -device at this time. All PCI
272devices and ne2k_isa are.
273
274Some PCI devices aren't available with -net nic, e.g. i82558a.
275
Markus Armbruster96560cb2009-12-17 17:19:17 +0100276=== Graphics Devices ===
277
278Host and guest part of graphics devices have always been separate.
279
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200280The old way to define the guest graphics device is -vga VGA. Not all
281machines support all -vga options.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100282
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200283The new way is -device. The mapping from -vga argument to -device
284depends on the machine type. For machine "pc", it's:
Markus Armbruster96560cb2009-12-17 17:19:17 +0100285
286 std -device VGA
287 cirrus -device cirrus-vga
288 vmware -device vmware-svga
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200289 qxl -device qxl-vga
290 none -nodefaults
291 disables more than just VGA, see "Default Devices"
Markus Armbruster96560cb2009-12-17 17:19:17 +0100292
293As for all PCI devices, you can add bus=PCI-BUS,addr=DEVFN to control
294the PCI device address.
295
296-device VGA supports properties bios-offset and bios-size, but they
297aren't used with machine type "pc".
298
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200299For machine "isapc", it's
Markus Armbruster96560cb2009-12-17 17:19:17 +0100300
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200301 std -device isa-vga
302 cirrus not yet available with -device
303 none -nodefaults
304 disables more than just VGA, see "Default Devices"
Markus Armbruster96560cb2009-12-17 17:19:17 +0100305
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200306Bug: the new way doesn't work for machine types "pc" and "isapc",
307because it violates obscure device initialization ordering
308constraints.
Markus Armbruster96560cb2009-12-17 17:19:17 +0100309
310=== Audio Devices ===
311
312Host and guest part of audio devices have always been separate.
313
314The old way to define guest audio devices is -soundhw C1,...
315
316The new way is to define each guest audio device separately with
317-device.
318
319Map from -soundhw sound card name to -device:
320
321 ac97 -device AC97
322 cs4231a -device cs4231a,iobase=IOADDR,irq=IRQ,dma=DMA
323 es1370 -device ES1370
324 gus -device gus,iobase=IOADDR,irq=IRQ,dma=DMA,freq=F
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200325 hda -device intel-hda,msi=MSI -device hda-duplex
Markus Armbruster96560cb2009-12-17 17:19:17 +0100326 sb16 -device sb16,iobase=IOADDR,irq=IRQ,dma=DMA,dma16=DMA16,version=V
327 adlib not yet available with -device
328 pcspk not yet available with -device
329
330For PCI devices, you can add bus=PCI-BUS,addr=DEVFN to control the PCI
331device address, as usual.
332
333=== USB Devices ===
334
335The old way to define a virtual USB device is -usbdevice DRIVER:OPTS...
336
337The new way is -device DEVNAME,DEV-OPTS... Details depend on DRIVER:
338
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200339* ccid -device usb-ccid
340* keyboard -device usb-kbd
Markus Armbruster96560cb2009-12-17 17:19:17 +0100341* mouse -device usb-mouse
342* tablet -device usb-tablet
Markus Armbruster96560cb2009-12-17 17:19:17 +0100343* wacom-tablet -device usb-wacom-tablet
César Belleyc81737e2020-08-26 13:42:06 +0200344* u2f -device u2f-{emulated,passthru}
Markus Armbruster96560cb2009-12-17 17:19:17 +0100345* braille See "Character Devices"
Markus Armbruster96560cb2009-12-17 17:19:17 +0100346
Markus Armbruster923fbd42020-08-06 10:11:47 +0200347Until v2.12.0, we additionally had
348
349* host:... See "Host Device Assignment"
350* disk:... See "Block Devices"
351* serial:... See "Character Devices"
352* net:... See "Network Devices"
353
Markus Armbruster96560cb2009-12-17 17:19:17 +0100354=== Watchdog Devices ===
355
356Host and guest part of watchdog devices have always been separate.
357
358The old way to define a guest watchdog device is -watchdog DEVNAME.
359The new way is -device DEVNAME. For PCI devices, you can add
360bus=PCI-BUS,addr=DEVFN to control the PCI device address, as usual.
361
362=== Host Device Assignment ===
363
364QEMU supports assigning host PCI devices (qemu-kvm only at this time)
Paolo Bonziniab37bfc2017-10-20 10:17:50 +0200365and host USB devices. PCI devices can only be assigned with -device:
Markus Armbruster96560cb2009-12-17 17:19:17 +0100366
Paolo Bonziniab37bfc2017-10-20 10:17:50 +0200367 -device vfio-pci,host=ADDR,id=ID
Markus Armbruster96560cb2009-12-17 17:19:17 +0100368
Markus Armbruster923fbd42020-08-06 10:11:47 +0200369The old way to assign a USB host device
370
371 -usbdevice host:auto:BUS.ADDR:VID:PRID
372
373was removed in v2.12.0. Any of BUS, ADDR, VID, PRID could be the
374wildcard *.
375
376The new way is
Markus Armbruster96560cb2009-12-17 17:19:17 +0100377
378 -device usb-host,hostbus=BUS,hostaddr=ADDR,vendorid=VID,productid=PRID
379
Thomas Huth480324e2020-07-10 08:55:20 +0200380Omitted options match anything.
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200381
382=== Default Devices ===
383
384QEMU creates a number of devices by default, depending on the machine
385type.
386
387-device DEVNAME... and global DEVNAME... suppress default devices for
388some DEVNAMEs:
389
390 default device suppressing DEVNAMEs
Markus Armbruster7a0bbd52017-05-09 11:41:16 +0200391 CD-ROM ide-cd, ide-drive, ide-hd, scsi-cd, scsi-hd
Markus Armbruster4a27a632020-06-22 11:42:17 +0200392 floppy floppy, isa-fdc
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200393 parallel isa-parallel
394 serial isa-serial
Markus Armbruster7a0bbd52017-05-09 11:41:16 +0200395 VGA VGA, cirrus-vga, isa-vga, isa-cirrus-vga,
Markus Armbruster63d5dfb2020-06-22 11:42:18 +0200396 vmware-svga, qxl-vga, virtio-vga, ati-vga,
397 vhost-user-vga
Markus Armbruster23bf93b2011-06-07 10:34:31 +0200398
399The default NIC is connected to a default part created along with it.
400It is *not* suppressed by configuring a NIC with -device (you may call
401that a bug). -net and -netdev suppress the default NIC.
402
403-nodefaults suppresses all the default devices mentioned above, plus a
404few other things such as default SD-Card drive and default monitor.