File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 22
22
*/
23
23
#define PCIE_PME_TO_L2_TIMEOUT_US 10000
24
24
25
+ /* Message Routing (r[2:0]); PCIe r6.0, sec 2.2.8 */
26
+ #define PCIE_MSG_TYPE_R_RC 0
27
+ #define PCIE_MSG_TYPE_R_ADDR 1
28
+ #define PCIE_MSG_TYPE_R_ID 2
29
+ #define PCIE_MSG_TYPE_R_BC 3
30
+ #define PCIE_MSG_TYPE_R_LOCAL 4
31
+ #define PCIE_MSG_TYPE_R_GATHER 5
32
+
33
+ /* INTx Mechanism Messages; PCIe r6.0, sec 2.2.8.1 */
34
+ #define PCIE_MSG_CODE_ASSERT_INTA 0x20
35
+ #define PCIE_MSG_CODE_ASSERT_INTB 0x21
36
+ #define PCIE_MSG_CODE_ASSERT_INTC 0x22
37
+ #define PCIE_MSG_CODE_ASSERT_INTD 0x23
38
+ #define PCIE_MSG_CODE_DEASSERT_INTA 0x24
39
+ #define PCIE_MSG_CODE_DEASSERT_INTB 0x25
40
+ #define PCIE_MSG_CODE_DEASSERT_INTC 0x26
41
+ #define PCIE_MSG_CODE_DEASSERT_INTD 0x27
42
+
25
43
extern const unsigned char pcie_link_speed [];
26
44
extern bool pci_early_dump ;
27
45
You can’t perform that action at this time.
0 commit comments