1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Huawei HiNIC PCI Express Linux driver
4 * Copyright(c) 2017 Huawei Technologies Co., Ltd
5 */
6
7 #ifndef HINIC_HW_IF_H
8 #define HINIC_HW_IF_H
9
10 #include <linux/pci.h>
11 #include <linux/io.h>
12 #include <linux/types.h>
13 #include <asm/byteorder.h>
14
15 #define HINIC_PCIE_LINK_DOWN 0xFFFFFFFF
16
17 #define HINIC_DMA_ATTR_ST_SHIFT 0
18 #define HINIC_DMA_ATTR_AT_SHIFT 8
19 #define HINIC_DMA_ATTR_PH_SHIFT 10
20 #define HINIC_DMA_ATTR_NO_SNOOPING_SHIFT 12
21 #define HINIC_DMA_ATTR_TPH_EN_SHIFT 13
22
23 #define HINIC_DMA_ATTR_ST_MASK 0xFF
24 #define HINIC_DMA_ATTR_AT_MASK 0x3
25 #define HINIC_DMA_ATTR_PH_MASK 0x3
26 #define HINIC_DMA_ATTR_NO_SNOOPING_MASK 0x1
27 #define HINIC_DMA_ATTR_TPH_EN_MASK 0x1
28
29 #define HINIC_DMA_ATTR_SET(val, member) \
30 (((u32)(val) & HINIC_DMA_ATTR_##member##_MASK) << \
31 HINIC_DMA_ATTR_##member##_SHIFT)
32
33 #define HINIC_DMA_ATTR_CLEAR(val, member) \
34 ((val) & (~(HINIC_DMA_ATTR_##member##_MASK \
35 << HINIC_DMA_ATTR_##member##_SHIFT)))
36
37 #define HINIC_FA0_FUNC_IDX_SHIFT 0
38 #define HINIC_FA0_PF_IDX_SHIFT 10
39 #define HINIC_FA0_PCI_INTF_IDX_SHIFT 14
40 #define HINIC_FA0_VF_IN_PF_SHIFT 16
41 /* reserved members - off 16 */
42 #define HINIC_FA0_FUNC_TYPE_SHIFT 24
43
44 #define HINIC_FA0_FUNC_IDX_MASK 0x3FF
45 #define HINIC_FA0_PF_IDX_MASK 0xF
46 #define HINIC_FA0_PCI_INTF_IDX_MASK 0x3
47 #define HINIC_FA0_FUNC_TYPE_MASK 0x1
48 #define HINIC_FA0_VF_IN_PF_MASK 0xFF
49
50 #define HINIC_FA0_GET(val, member) \
51 (((val) >> HINIC_FA0_##member##_SHIFT) & HINIC_FA0_##member##_MASK)
52
53 #define HINIC_FA1_AEQS_PER_FUNC_SHIFT 8
54 /* reserved members - off 10 */
55 #define HINIC_FA1_CEQS_PER_FUNC_SHIFT 12
56 /* reserved members - off 15 */
57 #define HINIC_FA1_IRQS_PER_FUNC_SHIFT 20
58 #define HINIC_FA1_DMA_ATTR_PER_FUNC_SHIFT 24
59 /* reserved members - off 27 */
60 #define HINIC_FA1_MGMT_INIT_STATUS_SHIFT 30
61 #define HINIC_FA1_PF_INIT_STATUS_SHIFT 31
62
63 #define HINIC_FA1_AEQS_PER_FUNC_MASK 0x3
64 #define HINIC_FA1_CEQS_PER_FUNC_MASK 0x7
65 #define HINIC_FA1_IRQS_PER_FUNC_MASK 0xF
66 #define HINIC_FA1_DMA_ATTR_PER_FUNC_MASK 0x7
67 #define HINIC_FA1_MGMT_INIT_STATUS_MASK 0x1
68 #define HINIC_FA1_PF_INIT_STATUS_MASK 0x1
69
70 #define HINIC_FA1_GET(val, member) \
71 (((val) >> HINIC_FA1_##member##_SHIFT) & HINIC_FA1_##member##_MASK)
72
73 #define HINIC_FA2_GLOBAL_VF_ID_OF_PF_SHIFT 16
74 #define HINIC_FA2_GLOBAL_VF_ID_OF_PF_MASK 0x3FF
75
76 #define HINIC_FA2_GET(val, member) \
77 (((val) >> HINIC_FA2_##member##_SHIFT) & HINIC_FA2_##member##_MASK)
78
79 #define HINIC_FA4_OUTBOUND_STATE_SHIFT 0
80 #define HINIC_FA4_DB_STATE_SHIFT 1
81
82 #define HINIC_FA4_OUTBOUND_STATE_MASK 0x1
83 #define HINIC_FA4_DB_STATE_MASK 0x1
84
85 #define HINIC_FA4_GET(val, member) \
86 (((val) >> HINIC_FA4_##member##_SHIFT) & HINIC_FA4_##member##_MASK)
87
88 #define HINIC_FA4_SET(val, member) \
89 ((((u32)val) & HINIC_FA4_##member##_MASK) << HINIC_FA4_##member##_SHIFT)
90
91 #define HINIC_FA4_CLEAR(val, member) \
92 ((val) & (~(HINIC_FA4_##member##_MASK << HINIC_FA4_##member##_SHIFT)))
93
94 #define HINIC_FA5_PF_ACTION_SHIFT 0
95 #define HINIC_FA5_PF_ACTION_MASK 0xFFFF
96
97 #define HINIC_FA5_SET(val, member) \
98 (((u32)(val) & HINIC_FA5_##member##_MASK) << HINIC_FA5_##member##_SHIFT)
99
100 #define HINIC_FA5_CLEAR(val, member) \
101 ((val) & (~(HINIC_FA5_##member##_MASK << HINIC_FA5_##member##_SHIFT)))
102
103 #define HINIC_PPF_ELECTION_IDX_SHIFT 0
104 #define HINIC_PPF_ELECTION_IDX_MASK 0x1F
105
106 #define HINIC_PPF_ELECTION_SET(val, member) \
107 (((u32)(val) & HINIC_PPF_ELECTION_##member##_MASK) << \
108 HINIC_PPF_ELECTION_##member##_SHIFT)
109
110 #define HINIC_PPF_ELECTION_GET(val, member) \
111 (((val) >> HINIC_PPF_ELECTION_##member##_SHIFT) & \
112 HINIC_PPF_ELECTION_##member##_MASK)
113
114 #define HINIC_PPF_ELECTION_CLEAR(val, member) \
115 ((val) & (~(HINIC_PPF_ELECTION_##member##_MASK \
116 << HINIC_PPF_ELECTION_##member##_SHIFT)))
117
118 #define HINIC_MSIX_PENDING_LIMIT_SHIFT 0
119 #define HINIC_MSIX_COALESC_TIMER_SHIFT 8
120 #define HINIC_MSIX_LLI_TIMER_SHIFT 16
121 #define HINIC_MSIX_LLI_CREDIT_SHIFT 24
122 #define HINIC_MSIX_RESEND_TIMER_SHIFT 29
123
124 #define HINIC_MSIX_PENDING_LIMIT_MASK 0xFF
125 #define HINIC_MSIX_COALESC_TIMER_MASK 0xFF
126 #define HINIC_MSIX_LLI_TIMER_MASK 0xFF
127 #define HINIC_MSIX_LLI_CREDIT_MASK 0x1F
128 #define HINIC_MSIX_RESEND_TIMER_MASK 0x7
129
130 #define HINIC_MSIX_ATTR_SET(val, member) \
131 (((u32)(val) & HINIC_MSIX_##member##_MASK) << \
132 HINIC_MSIX_##member##_SHIFT)
133
134 #define HINIC_MSIX_ATTR_GET(val, member) \
135 (((val) >> HINIC_MSIX_##member##_SHIFT) & \
136 HINIC_MSIX_##member##_MASK)
137
138 #define HINIC_MSIX_CNT_RESEND_TIMER_SHIFT 29
139
140 #define HINIC_MSIX_CNT_RESEND_TIMER_MASK 0x1
141
142 #define HINIC_MSIX_CNT_SET(val, member) \
143 (((u32)(val) & HINIC_MSIX_CNT_##member##_MASK) << \
144 HINIC_MSIX_CNT_##member##_SHIFT)
145
146 #define HINIC_HWIF_NUM_AEQS(hwif) ((hwif)->attr.num_aeqs)
147 #define HINIC_HWIF_NUM_CEQS(hwif) ((hwif)->attr.num_ceqs)
148 #define HINIC_HWIF_NUM_IRQS(hwif) ((hwif)->attr.num_irqs)
149 #define HINIC_HWIF_FUNC_IDX(hwif) ((hwif)->attr.func_idx)
150 #define HINIC_HWIF_PCI_INTF(hwif) ((hwif)->attr.pci_intf_idx)
151 #define HINIC_HWIF_PF_IDX(hwif) ((hwif)->attr.pf_idx)
152 #define HINIC_HWIF_PPF_IDX(hwif) ((hwif)->attr.ppf_idx)
153
154 #define HINIC_FUNC_TYPE(hwif) ((hwif)->attr.func_type)
155 #define HINIC_IS_VF(hwif) (HINIC_FUNC_TYPE(hwif) == HINIC_VF)
156 #define HINIC_IS_PF(hwif) (HINIC_FUNC_TYPE(hwif) == HINIC_PF)
157 #define HINIC_IS_PPF(hwif) (HINIC_FUNC_TYPE(hwif) == HINIC_PPF)
158
159 #define HINIC_PCI_CFG_REGS_BAR 0
160 #define HINIC_PCI_INTR_REGS_BAR 2
161 #define HINIC_PCI_DB_BAR 4
162
163 #define HINIC_PCIE_ST_DISABLE 0
164 #define HINIC_PCIE_AT_DISABLE 0
165 #define HINIC_PCIE_PH_DISABLE 0
166
167 #define HINIC_EQ_MSIX_PENDING_LIMIT_DEFAULT 0 /* Disabled */
168 #define HINIC_EQ_MSIX_COALESC_TIMER_DEFAULT 0xFF /* max */
169 #define HINIC_EQ_MSIX_LLI_TIMER_DEFAULT 0 /* Disabled */
170 #define HINIC_EQ_MSIX_LLI_CREDIT_LIMIT_DEFAULT 0 /* Disabled */
171 #define HINIC_EQ_MSIX_RESEND_TIMER_DEFAULT 7 /* max */
172
173 #define HINIC_PCI_MSIX_ENTRY_SIZE 16
174 #define HINIC_PCI_MSIX_ENTRY_VECTOR_CTRL 12
175 #define HINIC_PCI_MSIX_ENTRY_CTRL_MASKBIT 1
176
177 enum hinic_pcie_nosnoop {
178 HINIC_PCIE_SNOOP = 0,
179 HINIC_PCIE_NO_SNOOP = 1,
180 };
181
182 enum hinic_pcie_tph {
183 HINIC_PCIE_TPH_DISABLE = 0,
184 HINIC_PCIE_TPH_ENABLE = 1,
185 };
186
187 enum hinic_func_type {
188 HINIC_PF = 0,
189 HINIC_VF = 1,
190 HINIC_PPF = 2,
191 };
192
193 enum hinic_mod_type {
194 HINIC_MOD_COMM = 0, /* HW communication module */
195 HINIC_MOD_L2NIC = 1, /* L2NIC module */
196 HINIC_MOD_CFGM = 7, /* Configuration module */
197 HINIC_MOD_HILINK = 14, /* Hilink module */
198 HINIC_MOD_MAX = 15
199 };
200
201 enum hinic_node_id {
202 HINIC_NODE_ID_MGMT = 21,
203 };
204
205 enum hinic_pf_action {
206 HINIC_PF_MGMT_INIT = 0x0,
207
208 HINIC_PF_MGMT_ACTIVE = 0x11,
209 };
210
211 enum hinic_outbound_state {
212 HINIC_OUTBOUND_ENABLE = 0,
213 HINIC_OUTBOUND_DISABLE = 1,
214 };
215
216 enum hinic_db_state {
217 HINIC_DB_ENABLE = 0,
218 HINIC_DB_DISABLE = 1,
219 };
220
221 enum hinic_msix_state {
222 HINIC_MSIX_ENABLE,
223 HINIC_MSIX_DISABLE,
224 };
225
226 struct hinic_func_attr {
227 u16 func_idx;
228 u8 pf_idx;
229 u8 pci_intf_idx;
230
231 enum hinic_func_type func_type;
232
233 u8 ppf_idx;
234
235 u16 num_irqs;
236 u8 num_aeqs;
237 u8 num_ceqs;
238
239 u8 num_dma_attr;
240
241 u16 global_vf_id_of_pf;
242 };
243
244 struct hinic_hwif {
245 struct pci_dev *pdev;
246 void __iomem *cfg_regs_bar;
247 void __iomem *intr_regs_base;
248
249 struct hinic_func_attr attr;
250 };
251
hinic_hwif_read_reg(struct hinic_hwif * hwif,u32 reg)252 static inline u32 hinic_hwif_read_reg(struct hinic_hwif *hwif, u32 reg)
253 {
254 u32 out = readl(hwif->cfg_regs_bar + reg);
255
256 return be32_to_cpu(*(__be32 *)&out);
257 }
258
hinic_hwif_write_reg(struct hinic_hwif * hwif,u32 reg,u32 val)259 static inline void hinic_hwif_write_reg(struct hinic_hwif *hwif, u32 reg,
260 u32 val)
261 {
262 __be32 in = cpu_to_be32(val);
263
264 writel(*(u32 *)&in, hwif->cfg_regs_bar + reg);
265 }
266
267 int hinic_msix_attr_set(struct hinic_hwif *hwif, u16 msix_index,
268 u8 pending_limit, u8 coalesc_timer,
269 u8 lli_timer_cfg, u8 lli_credit_limit,
270 u8 resend_timer);
271
272 int hinic_msix_attr_get(struct hinic_hwif *hwif, u16 msix_index,
273 u8 *pending_limit, u8 *coalesc_timer_cfg,
274 u8 *lli_timer, u8 *lli_credit_limit,
275 u8 *resend_timer);
276
277 void hinic_set_msix_state(struct hinic_hwif *hwif, u16 msix_idx,
278 enum hinic_msix_state flag);
279
280 int hinic_msix_attr_cnt_clear(struct hinic_hwif *hwif, u16 msix_index);
281
282 void hinic_set_pf_action(struct hinic_hwif *hwif, enum hinic_pf_action action);
283
284 enum hinic_outbound_state hinic_outbound_state_get(struct hinic_hwif *hwif);
285
286 void hinic_outbound_state_set(struct hinic_hwif *hwif,
287 enum hinic_outbound_state outbound_state);
288
289 enum hinic_db_state hinic_db_state_get(struct hinic_hwif *hwif);
290
291 void hinic_db_state_set(struct hinic_hwif *hwif,
292 enum hinic_db_state db_state);
293
294 u16 hinic_glb_pf_vf_offset(struct hinic_hwif *hwif);
295
296 u16 hinic_global_func_id_hw(struct hinic_hwif *hwif);
297
298 u16 hinic_pf_id_of_vf_hw(struct hinic_hwif *hwif);
299
300 int hinic_init_hwif(struct hinic_hwif *hwif, struct pci_dev *pdev);
301
302 void hinic_free_hwif(struct hinic_hwif *hwif);
303
304 #endif
305