4 # This work is licensed under the terms of the GNU GPL, version 2 or later.
5 # See the COPYING file in the top-level directory.
8 # = Device infrastructure (qdev)
11 { 'include': 'qom.json' }
14 # @device-list-properties:
16 # List properties associated with a device.
18 # @typename: the type name of a device
20 # Returns: a list of ObjectPropertyInfo describing a devices properties
22 # Note: objects can create properties at runtime, for example to describe
23 # links between different devices and/or objects. These properties
24 # are not included in the output of this command.
28 { 'command': 'device-list-properties',
29 'data': { 'typename': 'str'},
30 'returns': [ 'ObjectPropertyInfo' ] }
35 # @driver: the name of the new device's driver
37 # @bus: the device's parent bus (device tree path)
39 # @id: the device's ID, must be unique
41 # Additional arguments depend on the type.
46 # 1. For detailed information about this command, please refer to the
47 # 'docs/qdev-device-use.txt' file.
49 # 2. It's possible to list device properties by running QEMU with the
50 # "-device DEVICE,help" command-line argument, where DEVICE is the
55 # -> { "execute": "device_add",
56 # "arguments": { "driver": "e1000", "id": "net1",
58 # "mac": "52:54:00:12:34:56" } }
61 # TODO: This command effectively bypasses QAPI completely due to its
62 # "additional arguments" business. It shouldn't have been added to
63 # the schema in this form. It should be qapified properly, or
64 # replaced by a properly qapified command.
68 { 'command': 'device_add',
69 'data': {'driver': 'str', '*bus': 'str', '*id': 'str'},
70 'gen': false } # so we can get the additional arguments
75 # Remove a device from a guest
77 # @id: the device's ID or QOM path
79 # Returns: Nothing on success
80 # If @id is not a valid device, DeviceNotFound
82 # Notes: When this command completes, the device may not be removed from the
83 # guest. Hot removal is an operation that requires guest cooperation.
84 # This command merely requests that the guest begin the hot removal
85 # process. Completion of the device removal process is signaled with a
86 # DEVICE_DELETED event. Guest reset will automatically complete removal
93 # -> { "execute": "device_del",
94 # "arguments": { "id": "net1" } }
97 # -> { "execute": "device_del",
98 # "arguments": { "id": "/machine/peripheral-anon/device[0]" } }
102 { 'command': 'device_del', 'data': {'id': 'str'} }
107 # Emitted whenever the device removal completion is acknowledged by the guest.
108 # At this point, it's safe to reuse the specified device ID. Device removal can
109 # be initiated by the guest or by HMP/QMP commands.
111 # @device: device name
119 # <- { "event": "DEVICE_DELETED",
120 # "data": { "device": "virtio-net-pci-0",
121 # "path": "/machine/peripheral/virtio-net-pci-0" },
122 # "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
125 { 'event': 'DEVICE_DELETED',
126 'data': { '*device': 'str', 'path': 'str' } }