diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/pci.h | 1 | ||||
| -rw-r--r-- | include/linux/pci_regs.h | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 983fca251b25..8565b81d7fbc 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h | |||
| @@ -161,6 +161,7 @@ struct pci_dev { | |||
| 161 | unsigned int is_enabled:1; /* pci_enable_device has been called */ | 161 | unsigned int is_enabled:1; /* pci_enable_device has been called */ |
| 162 | unsigned int is_busmaster:1; /* device is busmaster */ | 162 | unsigned int is_busmaster:1; /* device is busmaster */ |
| 163 | unsigned int no_msi:1; /* device may not use msi */ | 163 | unsigned int no_msi:1; /* device may not use msi */ |
| 164 | unsigned int no_d1d2:1; /* only allow d0 or d3 */ | ||
| 164 | unsigned int block_ucfg_access:1; /* userspace config space access is blocked */ | 165 | unsigned int block_ucfg_access:1; /* userspace config space access is blocked */ |
| 165 | unsigned int broken_parity_status:1; /* Device generates false positive parity */ | 166 | unsigned int broken_parity_status:1; /* Device generates false positive parity */ |
| 166 | unsigned int msi_enabled:1; | 167 | unsigned int msi_enabled:1; |
diff --git a/include/linux/pci_regs.h b/include/linux/pci_regs.h index 6bce4a240364..96930cb5927c 100644 --- a/include/linux/pci_regs.h +++ b/include/linux/pci_regs.h | |||
| @@ -422,7 +422,23 @@ | |||
| 422 | #define PCI_ERR_CAP_ECRC_CHKE 0x00000100 /* ECRC Check Enable */ | 422 | #define PCI_ERR_CAP_ECRC_CHKE 0x00000100 /* ECRC Check Enable */ |
| 423 | #define PCI_ERR_HEADER_LOG 28 /* Header Log Register (16 bytes) */ | 423 | #define PCI_ERR_HEADER_LOG 28 /* Header Log Register (16 bytes) */ |
| 424 | #define PCI_ERR_ROOT_COMMAND 44 /* Root Error Command */ | 424 | #define PCI_ERR_ROOT_COMMAND 44 /* Root Error Command */ |
| 425 | /* Correctable Err Reporting Enable */ | ||
| 426 | #define PCI_ERR_ROOT_CMD_COR_EN 0x00000001 | ||
| 427 | /* Non-fatal Err Reporting Enable */ | ||
| 428 | #define PCI_ERR_ROOT_CMD_NONFATAL_EN 0x00000002 | ||
| 429 | /* Fatal Err Reporting Enable */ | ||
| 430 | #define PCI_ERR_ROOT_CMD_FATAL_EN 0x00000004 | ||
| 425 | #define PCI_ERR_ROOT_STATUS 48 | 431 | #define PCI_ERR_ROOT_STATUS 48 |
| 432 | #define PCI_ERR_ROOT_COR_RCV 0x00000001 /* ERR_COR Received */ | ||
| 433 | /* Multi ERR_COR Received */ | ||
| 434 | #define PCI_ERR_ROOT_MULTI_COR_RCV 0x00000002 | ||
| 435 | /* ERR_FATAL/NONFATAL Recevied */ | ||
| 436 | #define PCI_ERR_ROOT_UNCOR_RCV 0x00000004 | ||
| 437 | /* Multi ERR_FATAL/NONFATAL Recevied */ | ||
| 438 | #define PCI_ERR_ROOT_MULTI_UNCOR_RCV 0x00000008 | ||
| 439 | #define PCI_ERR_ROOT_FIRST_FATAL 0x00000010 /* First Fatal */ | ||
| 440 | #define PCI_ERR_ROOT_NONFATAL_RCV 0x00000020 /* Non-Fatal Received */ | ||
| 441 | #define PCI_ERR_ROOT_FATAL_RCV 0x00000040 /* Fatal Received */ | ||
| 426 | #define PCI_ERR_ROOT_COR_SRC 52 | 442 | #define PCI_ERR_ROOT_COR_SRC 52 |
| 427 | #define PCI_ERR_ROOT_SRC 54 | 443 | #define PCI_ERR_ROOT_SRC 54 |
| 428 | 444 | ||
