diff options
author | kib <kib@FreeBSD.org> | 2013-10-24 20:25:29 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2013-10-24 20:25:29 +0000 |
commit | b0e31581c3e3fb94a6bc75c92ce2701a9d9dc735 (patch) | |
tree | aae907b60ef2c1c153ffd7a49926bcc208286473 /sys/dev | |
parent | 8184f491d7bcb60efc83b7fc2c9028c354cfa38c (diff) | |
download | FreeBSD-src-b0e31581c3e3fb94a6bc75c92ce2701a9d9dc735.zip FreeBSD-src-b0e31581c3e3fb94a6bc75c92ce2701a9d9dc735.tar.gz |
Add some definitions for the bits in root control and status PCIe cap
registers.
Reviewed by: jhb
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/pcireg.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/pci/pcireg.h b/sys/dev/pci/pcireg.h index 8db21ba..afd140f 100644 --- a/sys/dev/pci/pcireg.h +++ b/sys/dev/pci/pcireg.h @@ -762,8 +762,17 @@ #define PCIEM_SLOT_STA_EIS 0x0080 #define PCIEM_SLOT_STA_DLLSC 0x0100 #define PCIER_ROOT_CTL 0x1c +#define PCIEM_ROOT_CTL_SERR_CORR 0x0001 +#define PCIEM_ROOT_CTL_SERR_NONFATAL 0x0002 +#define PCIEM_ROOT_CTL_SERR_FATAL 0x0004 +#define PCIEM_ROOT_CTL_PME 0x0008 +#define PCIEM_ROOT_CTL_CRS_VIS 0x0010 #define PCIER_ROOT_CAP 0x1e +#define PCIEM_ROOT_CAP_CRS_VIS 0x0001 #define PCIER_ROOT_STA 0x20 +#define PCIEM_ROOT_STA_PME_REQID_MASK 0x0000ffff +#define PCIEM_ROOT_STA_PME_STATUS 0x00010000 +#define PCIEM_ROOT_STA_PME_PEND 0x00020000 #define PCIER_DEVICE_CAP2 0x24 #define PCIER_DEVICE_CTL2 0x28 #define PCIEM_CTL2_COMP_TIMEOUT_VAL 0x000f |