aboutsummaryrefslogtreecommitdiff
path: root/qapi/vfio.json
blob: b53b7caecd71710c295a38d2a106d0f983df1aca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*- Mode: Python -*-
# vim: filetype=python
#

##
# = VFIO devices
##

##
# @QapiVfioMigrationState:
#
# An enumeration of the VFIO device migration states.
#
# @stop: The device is stopped.
#
# @running: The device is running.
#
# @stop-copy: The device is stopped and its internal state is
#     available for reading.
#
# @resuming: The device is stopped and its internal state is available
#     for writing.
#
# @running-p2p: The device is running in the P2P quiescent state.
#
# @pre-copy: The device is running, tracking its internal state and
#     its internal state is available for reading.
#
# @pre-copy-p2p: The device is running in the P2P quiescent state,
#     tracking its internal state and its internal state is available
#     for reading.
#
# Since: 9.1
##
{ 'enum': 'QapiVfioMigrationState',
  'data': [ 'stop', 'running', 'stop-copy', 'resuming', 'running-p2p',
            'pre-copy', 'pre-copy-p2p' ] }

##
# @VFIO_MIGRATION:
#
# This event is emitted when a VFIO device migration state is changed.
#
# @device-id: The device's id, if it has one.
#
# @qom-path: The device's QOM path.
#
# @device-state: The new changed device migration state.
#
# Since: 9.1
#
# .. qmp-example::
#
#     <- { "timestamp": { "seconds": 1713771323, "microseconds": 212268 },
#          "event": "VFIO_MIGRATION",
#          "data": {
#              "device-id": "vfio_dev1",
#              "qom-path": "/machine/peripheral/vfio_dev1",
#              "device-state": "stop" } }
##
{ 'event': 'VFIO_MIGRATION',
  'data': {
      'device-id': 'str',
      'qom-path': 'str',
      'device-state': 'QapiVfioMigrationState'
  } }