diff options
Diffstat (limited to 'include/xen/interface/physdev.h')
| -rw-r--r-- | include/xen/interface/physdev.h | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/include/xen/interface/physdev.h b/include/xen/interface/physdev.h index 9ce788d8cf4..bfa1d50fe15 100644 --- a/include/xen/interface/physdev.h +++ b/include/xen/interface/physdev.h @@ -258,6 +258,22 @@ struct physdev_pci_device {      uint8_t devfn;  }; +#define PHYSDEVOP_DBGP_RESET_PREPARE    1 +#define PHYSDEVOP_DBGP_RESET_DONE       2 + +#define PHYSDEVOP_DBGP_BUS_UNKNOWN      0 +#define PHYSDEVOP_DBGP_BUS_PCI          1 + +#define PHYSDEVOP_dbgp_op               29 +struct physdev_dbgp_op { +    /* IN */ +    uint8_t op; +    uint8_t bus; +    union { +        struct physdev_pci_device pci; +    } u; +}; +  /*   * Notify that some PIRQ-bound event channels have been unmasked.   * ** This command is obsolete since interface version 0x00030202 and is **  |