This source file includes following definitions.
- gen3_db_ioread
- gen3_db_iowrite
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 #ifndef _NTB_INTEL_GEN3_H_
45 #define _NTB_INTEL_GEN3_H_
46
47 #include "ntb_hw_intel.h"
48
49
50 #define GEN3_IMBAR1SZ_OFFSET 0x00d0
51 #define GEN3_IMBAR2SZ_OFFSET 0x00d1
52 #define GEN3_EMBAR1SZ_OFFSET 0x00d2
53 #define GEN3_EMBAR2SZ_OFFSET 0x00d3
54 #define GEN3_DEVCTRL_OFFSET 0x0098
55 #define GEN3_DEVSTS_OFFSET 0x009a
56 #define GEN3_UNCERRSTS_OFFSET 0x014c
57 #define GEN3_CORERRSTS_OFFSET 0x0158
58 #define GEN3_LINK_STATUS_OFFSET 0x01a2
59
60 #define GEN3_NTBCNTL_OFFSET 0x0000
61 #define GEN3_IMBAR1XBASE_OFFSET 0x0010
62 #define GEN3_IMBAR1XLMT_OFFSET 0x0018
63 #define GEN3_IMBAR2XBASE_OFFSET 0x0020
64 #define GEN3_IMBAR2XLMT_OFFSET 0x0028
65 #define GEN3_IM_INT_STATUS_OFFSET 0x0040
66 #define GEN3_IM_INT_DISABLE_OFFSET 0x0048
67 #define GEN3_IM_SPAD_OFFSET 0x0080
68 #define GEN3_USMEMMISS_OFFSET 0x0070
69 #define GEN3_INTVEC_OFFSET 0x00d0
70 #define GEN3_IM_DOORBELL_OFFSET 0x0100
71 #define GEN3_B2B_SPAD_OFFSET 0x0180
72 #define GEN3_EMBAR0XBASE_OFFSET 0x4008
73 #define GEN3_EMBAR1XBASE_OFFSET 0x4010
74 #define GEN3_EMBAR1XLMT_OFFSET 0x4018
75 #define GEN3_EMBAR2XBASE_OFFSET 0x4020
76 #define GEN3_EMBAR2XLMT_OFFSET 0x4028
77 #define GEN3_EM_INT_STATUS_OFFSET 0x4040
78 #define GEN3_EM_INT_DISABLE_OFFSET 0x4048
79 #define GEN3_EM_SPAD_OFFSET 0x4080
80 #define GEN3_EM_DOORBELL_OFFSET 0x4100
81 #define GEN3_SPCICMD_OFFSET 0x4504
82 #define GEN3_EMBAR0_OFFSET 0x4510
83 #define GEN3_EMBAR1_OFFSET 0x4518
84 #define GEN3_EMBAR2_OFFSET 0x4520
85
86 #define GEN3_DB_COUNT 32
87 #define GEN3_DB_LINK 32
88 #define GEN3_DB_LINK_BIT BIT_ULL(GEN3_DB_LINK)
89 #define GEN3_DB_MSIX_VECTOR_COUNT 33
90 #define GEN3_DB_MSIX_VECTOR_SHIFT 1
91 #define GEN3_DB_TOTAL_SHIFT 33
92 #define GEN3_SPAD_COUNT 16
93
94 static inline u64 gen3_db_ioread(void __iomem *mmio)
95 {
96 return ioread64(mmio);
97 }
98
99 static inline void gen3_db_iowrite(u64 bits, void __iomem *mmio)
100 {
101 iowrite64(bits, mmio);
102 }
103
104 ssize_t ndev_ntb3_debugfs_read(struct file *filp, char __user *ubuf,
105 size_t count, loff_t *offp);
106 int gen3_init_dev(struct intel_ntb_dev *ndev);
107
108 extern const struct ntb_dev_ops intel_ntb3_ops;
109
110 #endif