Statistics
| Branch: | Revision:

root / hw / pcie_regs.h @ c1ded3dc

History | View | Annotate | Download (7.2 kB)

1
/*
2
 * constants for pcie configurations space from pci express spec.
3
 *
4
 * TODO:
5
 * Those constants and macros should go to Linux pci_regs.h
6
 * Once they're merged, they will go away.
7
 */
8
#ifndef QEMU_PCIE_REGS_H
9
#define QEMU_PCIE_REGS_H
10

    
11

    
12
/* express capability */
13

    
14
#define PCI_EXP_VER2_SIZEOF             0x3c /* express capability of ver. 2 */
15
#define PCI_EXT_CAP_VER_SHIFT           16
16
#define PCI_EXT_CAP_NEXT_SHIFT          20
17
#define PCI_EXT_CAP_NEXT_MASK           (0xffc << PCI_EXT_CAP_NEXT_SHIFT)
18

    
19
#define PCI_EXT_CAP(id, ver, next)                                      \
20
    ((id) |                                                             \
21
     ((ver) << PCI_EXT_CAP_VER_SHIFT) |                                 \
22
     ((next) << PCI_EXT_CAP_NEXT_SHIFT))
23

    
24
#define PCI_EXT_CAP_ALIGN               4
25
#define PCI_EXT_CAP_ALIGNUP(x)                                  \
26
    (((x) + PCI_EXT_CAP_ALIGN - 1) & ~(PCI_EXT_CAP_ALIGN - 1))
27

    
28
/* PCI_EXP_FLAGS */
29
#define PCI_EXP_FLAGS_VER2              2 /* for now, supports only ver. 2 */
30
#define PCI_EXP_FLAGS_IRQ_SHIFT         (ffs(PCI_EXP_FLAGS_IRQ) - 1)
31
#define PCI_EXP_FLAGS_TYPE_SHIFT        (ffs(PCI_EXP_FLAGS_TYPE) - 1)
32

    
33

    
34
/* PCI_EXP_LINK{CAP, STA} */
35
/* link speed */
36
#define PCI_EXP_LNK_LS_25               1
37

    
38
#define PCI_EXP_LNK_MLW_SHIFT           (ffs(PCI_EXP_LNKCAP_MLW) - 1)
39
#define PCI_EXP_LNK_MLW_1               (1 << PCI_EXP_LNK_MLW_SHIFT)
40

    
41
/* PCI_EXP_LINKCAP */
42
#define PCI_EXP_LNKCAP_ASPMS_SHIFT      (ffs(PCI_EXP_LNKCAP_ASPMS) - 1)
43
#define PCI_EXP_LNKCAP_ASPMS_0S         (1 << PCI_EXP_LNKCAP_ASPMS_SHIFT)
44

    
45
#define PCI_EXP_LNKCAP_PN_SHIFT         (ffs(PCI_EXP_LNKCAP_PN) - 1)
46

    
47
#define PCI_EXP_SLTCAP_PSN_SHIFT        (ffs(PCI_EXP_SLTCAP_PSN) - 1)
48

    
49
#define PCI_EXP_SLTCTL_IND_RESERVED     0x0
50
#define PCI_EXP_SLTCTL_IND_ON           0x1
51
#define PCI_EXP_SLTCTL_IND_BLINK        0x2
52
#define PCI_EXP_SLTCTL_IND_OFF          0x3
53
#define PCI_EXP_SLTCTL_AIC_SHIFT        (ffs(PCI_EXP_SLTCTL_AIC) - 1)
54
#define PCI_EXP_SLTCTL_AIC_OFF                          \
55
    (PCI_EXP_SLTCTL_IND_OFF << PCI_EXP_SLTCTL_AIC_SHIFT)
56

    
57
#define PCI_EXP_SLTCTL_PIC_SHIFT        (ffs(PCI_EXP_SLTCTL_PIC) - 1)
58
#define PCI_EXP_SLTCTL_PIC_OFF                          \
59
    (PCI_EXP_SLTCTL_IND_OFF << PCI_EXP_SLTCTL_PIC_SHIFT)
60

    
61
#define PCI_EXP_SLTCTL_SUPPORTED        \
62
            (PCI_EXP_SLTCTL_ABPE |      \
63
             PCI_EXP_SLTCTL_PDCE |      \
64
             PCI_EXP_SLTCTL_CCIE |      \
65
             PCI_EXP_SLTCTL_HPIE |      \
66
             PCI_EXP_SLTCTL_AIC |       \
67
             PCI_EXP_SLTCTL_PCC |       \
68
             PCI_EXP_SLTCTL_EIC)
69

    
70
#define PCI_EXP_DEVCAP2_EFF             0x100000
71
#define PCI_EXP_DEVCAP2_EETLPP          0x200000
72

    
73
#define PCI_EXP_DEVCTL2_EETLPPB         0x80
74

    
75
/* ARI */
76
#define PCI_ARI_VER                     1
77
#define PCI_ARI_SIZEOF                  8
78

    
79
/* AER */
80
#define PCI_ERR_VER                     2
81
#define PCI_ERR_SIZEOF                  0x48
82

    
83
#define PCI_ERR_UNC_SDN                 0x00000020      /* surprise down */
84
#define PCI_ERR_UNC_ACSV                0x00200000      /* ACS Violation */
85
#define PCI_ERR_UNC_INTN                0x00400000      /* Internal Error */
86
#define PCI_ERR_UNC_MCBTLP              0x00800000      /* MC Blcoked TLP */
87
#define PCI_ERR_UNC_ATOP_EBLOCKED       0x01000000      /* atomic op egress blocked */
88
#define PCI_ERR_UNC_TLP_PRF_BLOCKED     0x02000000      /* TLP Prefix Blocked */
89
#define PCI_ERR_COR_ADV_NONFATAL        0x00002000      /* Advisory Non-Fatal */
90
#define PCI_ERR_COR_INTERNAL            0x00004000      /* Corrected Internal */
91
#define PCI_ERR_COR_HL_OVERFLOW         0x00008000      /* Header Long Overflow */
92
#define PCI_ERR_CAP_FEP_MASK            0x0000001f
93
#define PCI_ERR_CAP_MHRC                0x00000200
94
#define PCI_ERR_CAP_MHRE                0x00000400
95
#define PCI_ERR_CAP_TLP                 0x00000800
96

    
97
#define PCI_ERR_TLP_PREFIX_LOG          0x38
98

    
99
#define PCI_SEC_STATUS_RCV_SYSTEM_ERROR         0x4000
100

    
101
/* aer root error command/status */
102
#define PCI_ERR_ROOT_CMD_EN_MASK        (PCI_ERR_ROOT_CMD_COR_EN |      \
103
                                         PCI_ERR_ROOT_CMD_NONFATAL_EN | \
104
                                         PCI_ERR_ROOT_CMD_FATAL_EN)
105

    
106
#define PCI_ERR_ROOT_IRQ_MAX            32
107
#define PCI_ERR_ROOT_IRQ                0xf8000000
108
#define PCI_ERR_ROOT_IRQ_SHIFT          (ffs(PCI_ERR_ROOT_IRQ) - 1)
109
#define PCI_ERR_ROOT_STATUS_REPORT_MASK (PCI_ERR_ROOT_COR_RCV |         \
110
                                         PCI_ERR_ROOT_MULTI_COR_RCV |   \
111
                                         PCI_ERR_ROOT_UNCOR_RCV |       \
112
                                         PCI_ERR_ROOT_MULTI_UNCOR_RCV | \
113
                                         PCI_ERR_ROOT_FIRST_FATAL |     \
114
                                         PCI_ERR_ROOT_NONFATAL_RCV |    \
115
                                         PCI_ERR_ROOT_FATAL_RCV)
116

    
117
#define PCI_ERR_UNC_SUPPORTED           (PCI_ERR_UNC_DLP |              \
118
                                         PCI_ERR_UNC_SDN |              \
119
                                         PCI_ERR_UNC_POISON_TLP |       \
120
                                         PCI_ERR_UNC_FCP |              \
121
                                         PCI_ERR_UNC_COMP_TIME |        \
122
                                         PCI_ERR_UNC_COMP_ABORT |       \
123
                                         PCI_ERR_UNC_UNX_COMP |         \
124
                                         PCI_ERR_UNC_RX_OVER |          \
125
                                         PCI_ERR_UNC_MALF_TLP |         \
126
                                         PCI_ERR_UNC_ECRC |             \
127
                                         PCI_ERR_UNC_UNSUP |            \
128
                                         PCI_ERR_UNC_ACSV |             \
129
                                         PCI_ERR_UNC_INTN |             \
130
                                         PCI_ERR_UNC_MCBTLP |           \
131
                                         PCI_ERR_UNC_ATOP_EBLOCKED |    \
132
                                         PCI_ERR_UNC_TLP_PRF_BLOCKED)
133

    
134
#define PCI_ERR_UNC_SEVERITY_DEFAULT    (PCI_ERR_UNC_DLP |              \
135
                                         PCI_ERR_UNC_SDN |              \
136
                                         PCI_ERR_UNC_FCP |              \
137
                                         PCI_ERR_UNC_RX_OVER |          \
138
                                         PCI_ERR_UNC_MALF_TLP |         \
139
                                         PCI_ERR_UNC_INTN)
140

    
141
#define PCI_ERR_COR_SUPPORTED           (PCI_ERR_COR_RCVR |             \
142
                                         PCI_ERR_COR_BAD_TLP |          \
143
                                         PCI_ERR_COR_BAD_DLLP |         \
144
                                         PCI_ERR_COR_REP_ROLL |         \
145
                                         PCI_ERR_COR_REP_TIMER |        \
146
                                         PCI_ERR_COR_ADV_NONFATAL |     \
147
                                         PCI_ERR_COR_INTERNAL |         \
148
                                         PCI_ERR_COR_HL_OVERFLOW)
149

    
150
#define PCI_ERR_COR_MASK_DEFAULT        (PCI_ERR_COR_ADV_NONFATAL |     \
151
                                         PCI_ERR_COR_INTERNAL |         \
152
                                         PCI_ERR_COR_HL_OVERFLOW)
153

    
154
#endif /* QEMU_PCIE_REGS_H */