diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2012-02-15 19:17:59 +0200 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2012-03-16 00:41:28 +0200 |
commit | 762833b3b88b7b79af442439a8b138a04786ec3d (patch) | |
tree | c99b8c3ff00ae1fe814b5bc9d5e36020ff7dbf55 /hw/pci.h | |
parent | 1dc324d20f7404fd6a416f16c2cb9a4ec50a4dd7 (diff) | |
download | qemu-762833b3b88b7b79af442439a8b138a04786ec3d.tar.gz qemu-762833b3b88b7b79af442439a8b138a04786ec3d.tar.bz2 qemu-762833b3b88b7b79af442439a8b138a04786ec3d.zip |
slotid: add slot id capability
This capability makes it possible for the guest to
report a unique chassis identifier to the user.
The spec also recommends making chassis indentifier
persist in eeprom.
This isn't implemented.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci.h')
-rw-r--r-- | hw/pci.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -129,6 +129,8 @@ enum { /* Standard hot plug controller. */ #define QEMU_PCI_SHPC_BITNR 5 QEMU_PCI_CAP_SHPC = (1 << QEMU_PCI_SHPC_BITNR), +#define QEMU_PCI_SLOTID_BITNR 6 + QEMU_PCI_CAP_SLOTID = (1 << QEMU_PCI_SLOTID_BITNR), }; #define TYPE_PCI_DEVICE "pci-device" |