Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : * Copyright(c) 2018-2021 HiSilicon Limited.
3 : : */
4 : :
5 : : #include <rte_alarm.h>
6 : : #include <bus_pci_driver.h>
7 : : #include <ethdev_pci.h>
8 : :
9 : : #include "hns3_common.h"
10 : : #include "hns3_dump.h"
11 : : #include "hns3_logs.h"
12 : : #include "hns3_rxtx.h"
13 : : #include "hns3_intr.h"
14 : : #include "hns3_regs.h"
15 : : #include "hns3_dcb.h"
16 : : #include "hns3_mp.h"
17 : : #include "hns3_flow.h"
18 : : #include "hns3_ptp.h"
19 : : #include "hns3_ethdev.h"
20 : :
21 : : #define HNS3_SERVICE_INTERVAL 1000000 /* us */
22 : : #define HNS3_SERVICE_QUICK_INTERVAL 10
23 : : #define HNS3_INVALID_PVID 0xFFFF
24 : :
25 : : #define HNS3_FILTER_TYPE_VF 0
26 : : #define HNS3_FILTER_TYPE_PORT 1
27 : : #define HNS3_FILTER_FE_EGRESS_V1_B BIT(0)
28 : : #define HNS3_FILTER_FE_NIC_INGRESS_B BIT(0)
29 : : #define HNS3_FILTER_FE_NIC_EGRESS_B BIT(1)
30 : : #define HNS3_FILTER_FE_ROCE_INGRESS_B BIT(2)
31 : : #define HNS3_FILTER_FE_ROCE_EGRESS_B BIT(3)
32 : : #define HNS3_FILTER_FE_EGRESS (HNS3_FILTER_FE_NIC_EGRESS_B \
33 : : | HNS3_FILTER_FE_ROCE_EGRESS_B)
34 : : #define HNS3_FILTER_FE_INGRESS (HNS3_FILTER_FE_NIC_INGRESS_B \
35 : : | HNS3_FILTER_FE_ROCE_INGRESS_B)
36 : :
37 : : /* Reset related Registers */
38 : : #define HNS3_GLOBAL_RESET_BIT 0
39 : : #define HNS3_CORE_RESET_BIT 1
40 : : #define HNS3_IMP_RESET_BIT 2
41 : : #define HNS3_FUN_RST_ING_B 0
42 : :
43 : : #define HNS3_VECTOR0_IMP_RESET_INT_B 1
44 : : #define HNS3_VECTOR0_IMP_CMDQ_ERR_B 4U
45 : : #define HNS3_VECTOR0_IMP_RD_POISON_B 5U
46 : : #define HNS3_VECTOR0_ALL_MSIX_ERR_B 6U
47 : : #define HNS3_VECTOR0_TRIGGER_IMP_RESET_B 7U
48 : :
49 : : #define HNS3_RESET_WAIT_MS 100
50 : : #define HNS3_RESET_WAIT_CNT 200
51 : :
52 : : enum hns3_evt_cause {
53 : : HNS3_VECTOR0_EVENT_RST,
54 : : HNS3_VECTOR0_EVENT_MBX,
55 : : HNS3_VECTOR0_EVENT_ERR,
56 : : HNS3_VECTOR0_EVENT_PTP,
57 : : HNS3_VECTOR0_EVENT_OTHER,
58 : : };
59 : :
60 : : struct hns3_intr_state {
61 : : uint32_t vector0_state;
62 : : uint32_t cmdq_state;
63 : : uint32_t hw_err_state;
64 : : };
65 : :
66 : : #define HNS3_SPEEDS_SUPP_FEC (RTE_ETH_LINK_SPEED_10G | \
67 : : RTE_ETH_LINK_SPEED_25G | \
68 : : RTE_ETH_LINK_SPEED_40G | \
69 : : RTE_ETH_LINK_SPEED_50G | \
70 : : RTE_ETH_LINK_SPEED_100G | \
71 : : RTE_ETH_LINK_SPEED_200G)
72 : :
73 : : static const struct rte_eth_fec_capa speed_fec_capa_tbl[] = {
74 : : { RTE_ETH_SPEED_NUM_10G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
75 : : RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
76 : : RTE_ETH_FEC_MODE_CAPA_MASK(BASER) },
77 : :
78 : : { RTE_ETH_SPEED_NUM_25G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
79 : : RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
80 : : RTE_ETH_FEC_MODE_CAPA_MASK(BASER) |
81 : : RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
82 : :
83 : : { RTE_ETH_SPEED_NUM_40G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
84 : : RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
85 : : RTE_ETH_FEC_MODE_CAPA_MASK(BASER) },
86 : :
87 : : { RTE_ETH_SPEED_NUM_50G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
88 : : RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
89 : : RTE_ETH_FEC_MODE_CAPA_MASK(BASER) |
90 : : RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
91 : :
92 : : { RTE_ETH_SPEED_NUM_100G, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) |
93 : : RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
94 : : RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
95 : :
96 : : { RTE_ETH_SPEED_NUM_200G, RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) |
97 : : RTE_ETH_FEC_MODE_CAPA_MASK(RS) |
98 : : RTE_ETH_FEC_MODE_CAPA_MASK(LLRS) }
99 : : };
100 : :
101 : : static enum hns3_reset_level hns3_get_reset_level(struct hns3_adapter *hns,
102 : : RTE_ATOMIC(uint64_t) *levels);
103 : : static int hns3_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu);
104 : : static int hns3_vlan_pvid_configure(struct hns3_adapter *hns, uint16_t pvid,
105 : : int on);
106 : : static int hns3_update_link_info(struct rte_eth_dev *eth_dev);
107 : : static bool hns3_update_link_status(struct hns3_hw *hw);
108 : :
109 : : static int hns3_add_mc_mac_addr(struct hns3_hw *hw,
110 : : struct rte_ether_addr *mac_addr);
111 : : static int hns3_remove_mc_mac_addr(struct hns3_hw *hw,
112 : : struct rte_ether_addr *mac_addr);
113 : : static int hns3_restore_fec(struct hns3_hw *hw);
114 : : static int hns3_query_dev_fec_info(struct hns3_hw *hw);
115 : : static int hns3_do_stop(struct hns3_adapter *hns);
116 : : static int hns3_check_port_speed(struct hns3_hw *hw, uint32_t link_speeds);
117 : : static int hns3_cfg_mac_mode(struct hns3_hw *hw, bool enable);
118 : :
119 : :
120 : : static void
121 : : hns3_pf_disable_irq0(struct hns3_hw *hw)
122 : : {
123 : 0 : hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 0);
124 : : }
125 : :
126 : : static void
127 : : hns3_pf_enable_irq0(struct hns3_hw *hw)
128 : : {
129 : 0 : hns3_write_dev(hw, HNS3_MISC_VECTOR_REG_BASE, 1);
130 : 0 : }
131 : :
132 : : static enum hns3_evt_cause
133 : 0 : hns3_proc_imp_reset_event(struct hns3_adapter *hns, uint32_t *vec_val)
134 : : {
135 : : struct hns3_hw *hw = &hns->hw;
136 : :
137 : 0 : rte_atomic_store_explicit(&hw->reset.disable_cmd, 1, rte_memory_order_relaxed);
138 : 0 : hns3_atomic_set_bit(HNS3_IMP_RESET, &hw->reset.pending);
139 : 0 : *vec_val = BIT(HNS3_VECTOR0_IMPRESET_INT_B);
140 : 0 : hw->reset.stats.imp_cnt++;
141 : 0 : hns3_warn(hw, "IMP reset detected, clear reset status");
142 : :
143 : 0 : return HNS3_VECTOR0_EVENT_RST;
144 : : }
145 : :
146 : : static enum hns3_evt_cause
147 : 0 : hns3_proc_global_reset_event(struct hns3_adapter *hns, uint32_t *vec_val)
148 : : {
149 : : struct hns3_hw *hw = &hns->hw;
150 : :
151 : 0 : rte_atomic_store_explicit(&hw->reset.disable_cmd, 1, rte_memory_order_relaxed);
152 : 0 : hns3_atomic_set_bit(HNS3_GLOBAL_RESET, &hw->reset.pending);
153 : 0 : *vec_val = BIT(HNS3_VECTOR0_GLOBALRESET_INT_B);
154 : 0 : hw->reset.stats.global_cnt++;
155 : 0 : hns3_warn(hw, "Global reset detected, clear reset status");
156 : :
157 : 0 : return HNS3_VECTOR0_EVENT_RST;
158 : : }
159 : :
160 : : static void
161 : : hns3_query_intr_state(struct hns3_hw *hw, struct hns3_intr_state *state)
162 : : {
163 : 0 : state->vector0_state = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
164 : 0 : state->cmdq_state = hns3_read_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG);
165 : 0 : state->hw_err_state = hns3_read_dev(hw, HNS3_RAS_PF_OTHER_INT_STS_REG);
166 : : }
167 : :
168 : : static enum hns3_evt_cause
169 : 0 : hns3_check_event_cause(struct hns3_adapter *hns, uint32_t *clearval)
170 : : {
171 : : struct hns3_hw *hw = &hns->hw;
172 : : struct hns3_intr_state state;
173 : : uint32_t val;
174 : : enum hns3_evt_cause ret;
175 : :
176 : : hns3_query_intr_state(hw, &state);
177 : :
178 : : /*
179 : : * Assumption: If by any chance reset and mailbox events are reported
180 : : * together then we will only process reset event and defer the
181 : : * processing of the mailbox events. Since, we would have not cleared
182 : : * RX CMDQ event this time we would receive again another interrupt
183 : : * from H/W just for the mailbox.
184 : : */
185 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_IMPRESET_INT_B) & state.vector0_state) { /* IMP */
186 : 0 : ret = hns3_proc_imp_reset_event(hns, &val);
187 : 0 : goto out;
188 : : }
189 : :
190 : : /* Global reset */
191 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) & state.vector0_state) {
192 : 0 : ret = hns3_proc_global_reset_event(hns, &val);
193 : 0 : goto out;
194 : : }
195 : :
196 : : /* Check for vector0 1588 event source */
197 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_1588_INT_B) & state.vector0_state) {
198 : 0 : val = BIT(HNS3_VECTOR0_1588_INT_B);
199 : : ret = HNS3_VECTOR0_EVENT_PTP;
200 : 0 : goto out;
201 : : }
202 : :
203 : : /* check for vector0 msix event source */
204 [ # # ]: 0 : if (state.vector0_state & HNS3_VECTOR0_REG_MSIX_MASK ||
205 [ # # ]: 0 : state.hw_err_state & HNS3_RAS_REG_NFE_MASK) {
206 : 0 : val = state.vector0_state | state.hw_err_state;
207 : : ret = HNS3_VECTOR0_EVENT_ERR;
208 : 0 : goto out;
209 : : }
210 : :
211 : : /* check for vector0 mailbox(=CMDQ RX) event source */
212 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_RX_CMDQ_INT_B) & state.cmdq_state) {
213 : 0 : state.cmdq_state &= ~BIT(HNS3_VECTOR0_RX_CMDQ_INT_B);
214 : 0 : val = state.cmdq_state;
215 : : ret = HNS3_VECTOR0_EVENT_MBX;
216 : 0 : goto out;
217 : : }
218 : :
219 : 0 : val = state.vector0_state;
220 : : ret = HNS3_VECTOR0_EVENT_OTHER;
221 : :
222 : 0 : out:
223 : 0 : *clearval = val;
224 : 0 : return ret;
225 : : }
226 : :
227 : : void
228 : 0 : hns3_clear_reset_event(struct hns3_hw *hw)
229 : : {
230 : : uint32_t clearval = 0;
231 : :
232 [ # # # ]: 0 : switch (hw->reset.level) {
233 : : case HNS3_IMP_RESET:
234 : : clearval = BIT(HNS3_VECTOR0_IMPRESET_INT_B);
235 : : break;
236 : : case HNS3_GLOBAL_RESET:
237 : : clearval = BIT(HNS3_VECTOR0_GLOBALRESET_INT_B);
238 : : break;
239 : : default:
240 : : break;
241 : : }
242 : :
243 : : if (clearval == 0)
244 : : return;
245 : :
246 : 0 : hns3_write_dev(hw, HNS3_MISC_RESET_STS_REG, clearval);
247 : :
248 : : hns3_pf_enable_irq0(hw);
249 : : }
250 : :
251 : : static void
252 : : hns3_clear_event_cause(struct hns3_hw *hw, uint32_t event_type, uint32_t regclr)
253 : : {
254 : 0 : if (event_type == HNS3_VECTOR0_EVENT_RST ||
255 [ # # ]: 0 : event_type == HNS3_VECTOR0_EVENT_PTP)
256 : 0 : hns3_write_dev(hw, HNS3_MISC_RESET_STS_REG, regclr);
257 [ # # ]: 0 : else if (event_type == HNS3_VECTOR0_EVENT_MBX)
258 : 0 : hns3_write_dev(hw, HNS3_VECTOR0_CMDQ_SRC_REG, regclr);
259 : : }
260 : :
261 : : static void
262 : 0 : hns3_clear_all_event_cause(struct hns3_hw *hw)
263 : : {
264 : : uint32_t vector0_int_stats;
265 : :
266 : 0 : vector0_int_stats = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
267 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_IMPRESET_INT_B) & vector0_int_stats)
268 : 0 : hns3_warn(hw, "Probe during IMP reset interrupt");
269 : :
270 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) & vector0_int_stats)
271 : 0 : hns3_warn(hw, "Probe during Global reset interrupt");
272 : :
273 : : hns3_clear_event_cause(hw, HNS3_VECTOR0_EVENT_RST,
274 : : BIT(HNS3_VECTOR0_IMPRESET_INT_B) |
275 : : BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) |
276 : : BIT(HNS3_VECTOR0_CORERESET_INT_B));
277 : : hns3_clear_event_cause(hw, HNS3_VECTOR0_EVENT_MBX, 0);
278 : : hns3_clear_event_cause(hw, HNS3_VECTOR0_EVENT_PTP,
279 : : BIT(HNS3_VECTOR0_1588_INT_B));
280 : 0 : }
281 : :
282 : : static void
283 : 0 : hns3_handle_mac_tnl(struct hns3_hw *hw)
284 : : {
285 : : struct hns3_cmd_desc desc;
286 : : uint32_t status;
287 : : int ret;
288 : :
289 : : /* query and clear mac tnl interrupt */
290 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_MAC_TNL_INT, true);
291 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
292 [ # # ]: 0 : if (ret) {
293 : 0 : hns3_err(hw, "failed to query mac tnl int, ret = %d.", ret);
294 : 0 : return;
295 : : }
296 : :
297 : 0 : status = rte_le_to_cpu_32(desc.data[0]);
298 [ # # ]: 0 : if (status) {
299 : 0 : hns3_warn(hw, "mac tnl int occurs, status = 0x%x.", status);
300 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CLEAR_MAC_TNL_INT,
301 : : false);
302 : 0 : desc.data[0] = rte_cpu_to_le_32(HNS3_MAC_TNL_INT_CLR);
303 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
304 [ # # ]: 0 : if (ret)
305 : 0 : hns3_err(hw, "failed to clear mac tnl int, ret = %d.",
306 : : ret);
307 : : }
308 : : }
309 : :
310 : : static void
311 : 0 : hns3_delay_before_clear_event_cause(struct hns3_hw *hw, uint32_t event_type, uint32_t regclr)
312 : : {
313 : : #define IMPRESET_WAIT_MS_TIME 5
314 : :
315 [ # # # # ]: 0 : if (event_type == HNS3_VECTOR0_EVENT_RST &&
316 : 0 : regclr & BIT(HNS3_VECTOR0_IMPRESET_INT_B) &&
317 [ # # ]: 0 : hw->revision >= PCI_REVISION_ID_HIP09_A) {
318 : : rte_delay_ms(IMPRESET_WAIT_MS_TIME);
319 : 0 : hns3_dbg(hw, "wait firmware watchdog initialization completed.");
320 : : }
321 : 0 : }
322 : :
323 : : static bool
324 : 0 : hns3_reset_event_valid(struct hns3_hw *hw)
325 : : {
326 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
327 : : enum hns3_reset_level new_req = HNS3_NONE_RESET;
328 : : enum hns3_reset_level last_req;
329 : : uint32_t vector0_int;
330 : :
331 : 0 : vector0_int = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
332 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_IMPRESET_INT_B) & vector0_int)
333 : : new_req = HNS3_IMP_RESET;
334 [ # # ]: 0 : else if (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) & vector0_int)
335 : : new_req = HNS3_GLOBAL_RESET;
336 : : if (new_req == HNS3_NONE_RESET)
337 : : return true;
338 : :
339 : 0 : last_req = hns3_get_reset_level(hns, &hw->reset.pending);
340 [ # # ]: 0 : if (last_req == HNS3_NONE_RESET)
341 : : return true;
342 : :
343 [ # # ]: 0 : if (new_req > last_req)
344 : : return true;
345 : :
346 : 0 : hns3_warn(hw, "last_req (%u) less than or equal to new_req (%u) ignore",
347 : : last_req, new_req);
348 : 0 : return false;
349 : : }
350 : :
351 : : static void
352 : 0 : hns3_interrupt_handler(void *param)
353 : : {
354 : : struct rte_eth_dev *dev = (struct rte_eth_dev *)param;
355 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
356 : 0 : struct hns3_hw *hw = &hns->hw;
357 : : enum hns3_evt_cause event_cause;
358 : : struct hns3_intr_state state;
359 : 0 : uint32_t clearval = 0;
360 : :
361 [ # # ]: 0 : if (!hns3_reset_event_valid(hw))
362 : 0 : return;
363 : :
364 : : /* Disable interrupt */
365 : : hns3_pf_disable_irq0(hw);
366 : :
367 : 0 : event_cause = hns3_check_event_cause(hns, &clearval);
368 : : hns3_query_intr_state(hw, &state);
369 : 0 : hns3_delay_before_clear_event_cause(hw, event_cause, clearval);
370 : : hns3_clear_event_cause(hw, event_cause, clearval);
371 : : /* vector 0 interrupt is shared with reset and mailbox source events. */
372 [ # # ]: 0 : if (event_cause == HNS3_VECTOR0_EVENT_ERR) {
373 : 0 : hns3_warn(hw, "received interrupt: vector0_int_stat:0x%x "
374 : : "ras_int_stat:0x%x cmdq_int_stat:0x%x",
375 : : state.vector0_state, state.hw_err_state,
376 : : state.cmdq_state);
377 : 0 : hns3_handle_mac_tnl(hw);
378 : 0 : hns3_handle_error(hns);
379 [ # # ]: 0 : } else if (event_cause == HNS3_VECTOR0_EVENT_RST) {
380 : 0 : hns3_warn(hw, "received reset interrupt");
381 : 0 : hns3_schedule_reset(hns);
382 [ # # ]: 0 : } else if (event_cause == HNS3_VECTOR0_EVENT_MBX) {
383 : 0 : hns3pf_handle_mbx_msg(hw);
384 [ # # ]: 0 : } else if (event_cause != HNS3_VECTOR0_EVENT_PTP) {
385 : 0 : hns3_warn(hw, "received unknown event: vector0_int_stat:0x%x "
386 : : "ras_int_stat:0x%x cmdq_int_stat:0x%x",
387 : : state.vector0_state, state.hw_err_state,
388 : : state.cmdq_state);
389 : : }
390 : :
391 : : /* Enable interrupt if it is not cause by reset */
392 : 0 : if (event_cause == HNS3_VECTOR0_EVENT_ERR ||
393 : : event_cause == HNS3_VECTOR0_EVENT_MBX ||
394 [ # # ]: 0 : event_cause == HNS3_VECTOR0_EVENT_PTP ||
395 : : event_cause == HNS3_VECTOR0_EVENT_OTHER)
396 : : hns3_pf_enable_irq0(hw);
397 : : }
398 : :
399 : : static int
400 : 0 : hns3_set_port_vlan_filter(struct hns3_adapter *hns, uint16_t vlan_id, int on)
401 : : {
402 : : #define HNS3_VLAN_ID_OFFSET_STEP 160
403 : : #define HNS3_VLAN_BYTE_SIZE 8
404 : : struct hns3_vlan_filter_pf_cfg_cmd *req;
405 : 0 : struct hns3_hw *hw = &hns->hw;
406 : : uint8_t vlan_offset_byte_val;
407 : : struct hns3_cmd_desc desc;
408 : : uint8_t vlan_offset_byte;
409 : : uint8_t vlan_offset_base;
410 : : int ret;
411 : :
412 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_FILTER_PF_CFG, false);
413 : :
414 : 0 : vlan_offset_base = vlan_id / HNS3_VLAN_ID_OFFSET_STEP;
415 : 0 : vlan_offset_byte = (vlan_id % HNS3_VLAN_ID_OFFSET_STEP) /
416 : : HNS3_VLAN_BYTE_SIZE;
417 : 0 : vlan_offset_byte_val = 1 << (vlan_id % HNS3_VLAN_BYTE_SIZE);
418 : :
419 : : req = (struct hns3_vlan_filter_pf_cfg_cmd *)desc.data;
420 : 0 : req->vlan_offset = vlan_offset_base;
421 : 0 : req->vlan_cfg = on ? 0 : 1;
422 : 0 : req->vlan_offset_bitmap[vlan_offset_byte] = vlan_offset_byte_val;
423 : :
424 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
425 [ # # ]: 0 : if (ret)
426 : 0 : hns3_err(hw, "set port vlan id failed, vlan_id =%u, ret =%d",
427 : : vlan_id, ret);
428 : :
429 : 0 : return ret;
430 : : }
431 : :
432 : : static void
433 : 0 : hns3_rm_dev_vlan_table(struct hns3_adapter *hns, uint16_t vlan_id)
434 : : {
435 : : struct hns3_user_vlan_table *vlan_entry;
436 : : struct hns3_pf *pf = &hns->pf;
437 : :
438 [ # # ]: 0 : LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
439 [ # # ]: 0 : if (vlan_entry->vlan_id == vlan_id) {
440 [ # # ]: 0 : if (vlan_entry->hd_tbl_status)
441 : 0 : hns3_set_port_vlan_filter(hns, vlan_id, 0);
442 [ # # ]: 0 : LIST_REMOVE(vlan_entry, next);
443 : 0 : rte_free(vlan_entry);
444 : 0 : break;
445 : : }
446 : : }
447 : 0 : }
448 : :
449 : : static void
450 : 0 : hns3_add_dev_vlan_table(struct hns3_adapter *hns, uint16_t vlan_id,
451 : : bool writen_to_tbl)
452 : : {
453 : : struct hns3_user_vlan_table *vlan_entry;
454 : : struct hns3_hw *hw = &hns->hw;
455 : : struct hns3_pf *pf = &hns->pf;
456 : :
457 [ # # ]: 0 : LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
458 [ # # ]: 0 : if (vlan_entry->vlan_id == vlan_id)
459 : : return;
460 : : }
461 : :
462 : 0 : vlan_entry = rte_zmalloc("hns3_vlan_tbl", sizeof(*vlan_entry), 0);
463 [ # # ]: 0 : if (vlan_entry == NULL) {
464 : 0 : hns3_err(hw, "Failed to malloc hns3 vlan table");
465 : 0 : return;
466 : : }
467 : :
468 : 0 : vlan_entry->hd_tbl_status = writen_to_tbl;
469 : 0 : vlan_entry->vlan_id = vlan_id;
470 : :
471 [ # # ]: 0 : LIST_INSERT_HEAD(&pf->vlan_list, vlan_entry, next);
472 : : }
473 : :
474 : : static int
475 : 0 : hns3_restore_vlan_table(struct hns3_adapter *hns)
476 : : {
477 : : struct hns3_user_vlan_table *vlan_entry;
478 : : struct hns3_hw *hw = &hns->hw;
479 : : struct hns3_pf *pf = &hns->pf;
480 : : uint16_t vlan_id;
481 : : int ret = 0;
482 : :
483 [ # # ]: 0 : if (hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_ENABLE)
484 : 0 : return hns3_vlan_pvid_configure(hns,
485 : 0 : hw->port_base_vlan_cfg.pvid, 1);
486 : :
487 [ # # ]: 0 : LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
488 [ # # ]: 0 : if (vlan_entry->hd_tbl_status) {
489 : 0 : vlan_id = vlan_entry->vlan_id;
490 : 0 : ret = hns3_set_port_vlan_filter(hns, vlan_id, 1);
491 [ # # ]: 0 : if (ret)
492 : : break;
493 : : }
494 : : }
495 : :
496 : : return ret;
497 : : }
498 : :
499 : : static int
500 : 0 : hns3_vlan_filter_configure(struct hns3_adapter *hns, uint16_t vlan_id, int on)
501 : : {
502 : : struct hns3_hw *hw = &hns->hw;
503 : : bool writen_to_tbl = false;
504 : : int ret = 0;
505 : :
506 : : /*
507 : : * When vlan filter is enabled, hardware regards packets without vlan
508 : : * as packets with vlan 0. So, to receive packets without vlan, vlan id
509 : : * 0 is not allowed to be removed by rte_eth_dev_vlan_filter.
510 : : */
511 [ # # ]: 0 : if (on == 0 && vlan_id == 0)
512 : : return 0;
513 : :
514 : : /*
515 : : * When port base vlan enabled, we use port base vlan as the vlan
516 : : * filter condition. In this case, we don't update vlan filter table
517 : : * when user add new vlan or remove exist vlan, just update the
518 : : * vlan list. The vlan id in vlan list will be written in vlan filter
519 : : * table until port base vlan disabled
520 : : */
521 [ # # ]: 0 : if (hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_DISABLE) {
522 : 0 : ret = hns3_set_port_vlan_filter(hns, vlan_id, on);
523 : : writen_to_tbl = true;
524 : : }
525 : :
526 [ # # ]: 0 : if (ret == 0) {
527 [ # # ]: 0 : if (on)
528 : 0 : hns3_add_dev_vlan_table(hns, vlan_id, writen_to_tbl);
529 : : else
530 : 0 : hns3_rm_dev_vlan_table(hns, vlan_id);
531 : : }
532 : : return ret;
533 : : }
534 : :
535 : : static int
536 : 0 : hns3_vlan_filter_set(struct rte_eth_dev *dev, uint16_t vlan_id, int on)
537 : : {
538 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
539 : : struct hns3_hw *hw = &hns->hw;
540 : : int ret;
541 : :
542 : 0 : rte_spinlock_lock(&hw->lock);
543 : 0 : ret = hns3_vlan_filter_configure(hns, vlan_id, on);
544 : : rte_spinlock_unlock(&hw->lock);
545 : 0 : return ret;
546 : : }
547 : :
548 : : static int
549 : 0 : hns3_vlan_tpid_configure(struct hns3_adapter *hns, enum rte_vlan_type vlan_type,
550 : : uint16_t tpid)
551 : : {
552 : : struct hns3_rx_vlan_type_cfg_cmd *rx_req;
553 : : struct hns3_tx_vlan_type_cfg_cmd *tx_req;
554 : 0 : struct hns3_hw *hw = &hns->hw;
555 : : struct hns3_cmd_desc desc;
556 : : int ret;
557 : :
558 [ # # ]: 0 : if ((vlan_type != RTE_ETH_VLAN_TYPE_INNER &&
559 : : vlan_type != RTE_ETH_VLAN_TYPE_OUTER)) {
560 : 0 : hns3_err(hw, "Unsupported vlan type, vlan_type =%d", vlan_type);
561 : 0 : return -EINVAL;
562 : : }
563 : :
564 [ # # ]: 0 : if (tpid != RTE_ETHER_TYPE_VLAN) {
565 : 0 : hns3_err(hw, "Unsupported vlan tpid, vlan_type =%d", vlan_type);
566 : 0 : return -EINVAL;
567 : : }
568 : :
569 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_TYPE_ID, false);
570 : : rx_req = (struct hns3_rx_vlan_type_cfg_cmd *)desc.data;
571 : :
572 [ # # ]: 0 : if (vlan_type == RTE_ETH_VLAN_TYPE_OUTER) {
573 : 0 : rx_req->ot_fst_vlan_type = rte_cpu_to_le_16(tpid);
574 : 0 : rx_req->ot_sec_vlan_type = rte_cpu_to_le_16(tpid);
575 : : } else if (vlan_type == RTE_ETH_VLAN_TYPE_INNER) {
576 : 0 : rx_req->ot_fst_vlan_type = rte_cpu_to_le_16(tpid);
577 : 0 : rx_req->ot_sec_vlan_type = rte_cpu_to_le_16(tpid);
578 : 0 : rx_req->in_fst_vlan_type = rte_cpu_to_le_16(tpid);
579 : 0 : rx_req->in_sec_vlan_type = rte_cpu_to_le_16(tpid);
580 : : }
581 : :
582 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
583 [ # # ]: 0 : if (ret) {
584 : 0 : hns3_err(hw, "Send rxvlan protocol type command fail, ret =%d",
585 : : ret);
586 : 0 : return ret;
587 : : }
588 : :
589 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_INSERT, false);
590 : :
591 : : tx_req = (struct hns3_tx_vlan_type_cfg_cmd *)desc.data;
592 : 0 : tx_req->ot_vlan_type = rte_cpu_to_le_16(tpid);
593 : 0 : tx_req->in_vlan_type = rte_cpu_to_le_16(tpid);
594 : :
595 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
596 [ # # ]: 0 : if (ret)
597 : 0 : hns3_err(hw, "Send txvlan protocol type command fail, ret =%d",
598 : : ret);
599 : : return ret;
600 : : }
601 : :
602 : : static int
603 : 0 : hns3_vlan_tpid_set(struct rte_eth_dev *dev, enum rte_vlan_type vlan_type,
604 : : uint16_t tpid)
605 : : {
606 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
607 : : struct hns3_hw *hw = &hns->hw;
608 : : int ret;
609 : :
610 : 0 : rte_spinlock_lock(&hw->lock);
611 : 0 : ret = hns3_vlan_tpid_configure(hns, vlan_type, tpid);
612 : : rte_spinlock_unlock(&hw->lock);
613 : 0 : return ret;
614 : : }
615 : :
616 : : static int
617 : 0 : hns3_set_vlan_rx_offload_cfg(struct hns3_adapter *hns,
618 : : struct hns3_rx_vtag_cfg *vcfg)
619 : : {
620 : : struct hns3_vport_vtag_rx_cfg_cmd *req;
621 : 0 : struct hns3_hw *hw = &hns->hw;
622 : : struct hns3_cmd_desc desc;
623 : : uint16_t vport_id;
624 : : uint8_t bitmap;
625 : : int ret;
626 : :
627 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_PORT_RX_CFG, false);
628 : :
629 : : req = (struct hns3_vport_vtag_rx_cfg_cmd *)desc.data;
630 : 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_REM_TAG1_EN_B,
631 : : vcfg->strip_tag1_en ? 1 : 0);
632 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_REM_TAG2_EN_B,
633 : : vcfg->strip_tag2_en ? 1 : 0);
634 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_SHOW_TAG1_EN_B,
635 : : vcfg->vlan1_vlan_prionly ? 1 : 0);
636 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_SHOW_TAG2_EN_B,
637 : : vcfg->vlan2_vlan_prionly ? 1 : 0);
638 : :
639 : : /* firmware will ignore this configuration for PCI_REVISION_ID_HIP08 */
640 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_DISCARD_TAG1_EN_B,
641 : : vcfg->strip_tag1_discard_en ? 1 : 0);
642 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_DISCARD_TAG2_EN_B,
643 : : vcfg->strip_tag2_discard_en ? 1 : 0);
644 : : /*
645 : : * In current version VF is not supported when PF is driven by DPDK
646 : : * driver, just need to configure parameters for PF vport.
647 : : */
648 : : vport_id = HNS3_PF_FUNC_ID;
649 : 0 : req->vf_offset = vport_id / HNS3_VF_NUM_PER_CMD;
650 : : bitmap = 1 << (vport_id % HNS3_VF_NUM_PER_BYTE);
651 : 0 : req->vf_bitmap[req->vf_offset] = bitmap;
652 : :
653 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
654 [ # # ]: 0 : if (ret)
655 : 0 : hns3_err(hw, "Send port rxvlan cfg command fail, ret =%d", ret);
656 : 0 : return ret;
657 : : }
658 : :
659 : : static int
660 : 0 : hns3_en_hw_strip_rxvtag(struct hns3_adapter *hns, bool enable)
661 : : {
662 : : struct hns3_rx_vtag_cfg rxvlan_cfg;
663 : : struct hns3_hw *hw = &hns->hw;
664 : : int ret;
665 : :
666 [ # # ]: 0 : if (hw->port_base_vlan_cfg.state == HNS3_PORT_BASE_VLAN_DISABLE) {
667 : 0 : rxvlan_cfg.strip_tag1_en = false;
668 : 0 : rxvlan_cfg.strip_tag2_en = enable;
669 : 0 : rxvlan_cfg.strip_tag2_discard_en = false;
670 : : } else {
671 : 0 : rxvlan_cfg.strip_tag1_en = enable;
672 : 0 : rxvlan_cfg.strip_tag2_en = true;
673 : 0 : rxvlan_cfg.strip_tag2_discard_en = true;
674 : : }
675 : :
676 : 0 : rxvlan_cfg.strip_tag1_discard_en = false;
677 : 0 : rxvlan_cfg.vlan1_vlan_prionly = false;
678 : 0 : rxvlan_cfg.vlan2_vlan_prionly = false;
679 : 0 : rxvlan_cfg.rx_vlan_offload_en = enable;
680 : :
681 : 0 : ret = hns3_set_vlan_rx_offload_cfg(hns, &rxvlan_cfg);
682 [ # # ]: 0 : if (ret) {
683 [ # # ]: 0 : hns3_err(hw, "%s strip rx vtag failed, ret = %d.",
684 : : enable ? "enable" : "disable", ret);
685 : 0 : return ret;
686 : : }
687 : :
688 : 0 : memcpy(&hns->pf.vtag_config.rx_vcfg, &rxvlan_cfg,
689 : : sizeof(struct hns3_rx_vtag_cfg));
690 : :
691 : 0 : return ret;
692 : : }
693 : :
694 : : static int
695 : 0 : hns3_set_vlan_filter_ctrl(struct hns3_hw *hw, uint8_t vlan_type,
696 : : uint8_t fe_type, bool filter_en, uint8_t vf_id)
697 : : {
698 : : struct hns3_vlan_filter_ctrl_cmd *req;
699 : : struct hns3_cmd_desc desc;
700 : : int ret;
701 : :
702 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_FILTER_CTRL, false);
703 : :
704 : : req = (struct hns3_vlan_filter_ctrl_cmd *)desc.data;
705 : 0 : req->vlan_type = vlan_type;
706 [ # # ]: 0 : req->vlan_fe = filter_en ? fe_type : 0;
707 : 0 : req->vf_id = vf_id;
708 : :
709 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
710 [ # # ]: 0 : if (ret)
711 : 0 : hns3_err(hw, "set vlan filter fail, ret =%d", ret);
712 : :
713 : 0 : return ret;
714 : : }
715 : :
716 : : static int
717 : 0 : hns3_vlan_filter_init(struct hns3_adapter *hns)
718 : : {
719 : 0 : struct hns3_hw *hw = &hns->hw;
720 : : int ret;
721 : :
722 : 0 : ret = hns3_set_vlan_filter_ctrl(hw, HNS3_FILTER_TYPE_VF,
723 : : HNS3_FILTER_FE_EGRESS, false,
724 : : HNS3_PF_FUNC_ID);
725 [ # # ]: 0 : if (ret) {
726 : 0 : hns3_err(hw, "failed to init vf vlan filter, ret = %d", ret);
727 : 0 : return ret;
728 : : }
729 : :
730 : 0 : ret = hns3_set_vlan_filter_ctrl(hw, HNS3_FILTER_TYPE_PORT,
731 : : HNS3_FILTER_FE_INGRESS, false,
732 : : HNS3_PF_FUNC_ID);
733 [ # # ]: 0 : if (ret)
734 : 0 : hns3_err(hw, "failed to init port vlan filter, ret = %d", ret);
735 : :
736 : : return ret;
737 : : }
738 : :
739 : : static int
740 : 0 : hns3_enable_vlan_filter(struct hns3_adapter *hns, bool enable)
741 : : {
742 : 0 : struct hns3_hw *hw = &hns->hw;
743 : : int ret;
744 : :
745 : 0 : ret = hns3_set_vlan_filter_ctrl(hw, HNS3_FILTER_TYPE_PORT,
746 : : HNS3_FILTER_FE_INGRESS, enable,
747 : : HNS3_PF_FUNC_ID);
748 [ # # ]: 0 : if (ret)
749 [ # # ]: 0 : hns3_err(hw, "failed to %s port vlan filter, ret = %d",
750 : : enable ? "enable" : "disable", ret);
751 : :
752 : 0 : return ret;
753 : : }
754 : :
755 : : static int
756 : 0 : hns3_vlan_offload_set(struct rte_eth_dev *dev, int mask)
757 : : {
758 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
759 : : struct hns3_hw *hw = &hns->hw;
760 : : struct rte_eth_rxmode *rxmode;
761 : : unsigned int tmp_mask;
762 : : bool enable;
763 : : int ret = 0;
764 : :
765 : 0 : rte_spinlock_lock(&hw->lock);
766 : 0 : rxmode = &dev->data->dev_conf.rxmode;
767 : 0 : tmp_mask = (unsigned int)mask;
768 [ # # ]: 0 : if (tmp_mask & RTE_ETH_VLAN_FILTER_MASK) {
769 : : /* ignore vlan filter configuration during promiscuous mode */
770 [ # # ]: 0 : if (!dev->data->promiscuous) {
771 : : /* Enable or disable VLAN filter */
772 : 0 : enable = rxmode->offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER ?
773 : 0 : true : false;
774 : :
775 : 0 : ret = hns3_enable_vlan_filter(hns, enable);
776 [ # # ]: 0 : if (ret) {
777 : : rte_spinlock_unlock(&hw->lock);
778 [ # # ]: 0 : hns3_err(hw, "failed to %s rx filter, ret = %d",
779 : : enable ? "enable" : "disable", ret);
780 : 0 : return ret;
781 : : }
782 : : }
783 : : }
784 : :
785 [ # # ]: 0 : if (tmp_mask & RTE_ETH_VLAN_STRIP_MASK) {
786 : : /* Enable or disable VLAN stripping */
787 : 0 : enable = rxmode->offloads & RTE_ETH_RX_OFFLOAD_VLAN_STRIP ?
788 : 0 : true : false;
789 : :
790 : 0 : ret = hns3_en_hw_strip_rxvtag(hns, enable);
791 [ # # ]: 0 : if (ret) {
792 : : rte_spinlock_unlock(&hw->lock);
793 [ # # ]: 0 : hns3_err(hw, "failed to %s rx strip, ret = %d",
794 : : enable ? "enable" : "disable", ret);
795 : 0 : return ret;
796 : : }
797 : : }
798 : :
799 : : rte_spinlock_unlock(&hw->lock);
800 : :
801 : 0 : return ret;
802 : : }
803 : :
804 : : static int
805 : 0 : hns3_set_vlan_tx_offload_cfg(struct hns3_adapter *hns,
806 : : struct hns3_tx_vtag_cfg *vcfg)
807 : : {
808 : : struct hns3_vport_vtag_tx_cfg_cmd *req;
809 : : struct hns3_cmd_desc desc;
810 : 0 : struct hns3_hw *hw = &hns->hw;
811 : : uint16_t vport_id;
812 : : uint8_t bitmap;
813 : : int ret;
814 : :
815 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_VLAN_PORT_TX_CFG, false);
816 : :
817 : : req = (struct hns3_vport_vtag_tx_cfg_cmd *)desc.data;
818 : 0 : req->def_vlan_tag1 = vcfg->default_tag1;
819 : 0 : req->def_vlan_tag2 = vcfg->default_tag2;
820 : 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_TAG1_B,
821 : : vcfg->accept_tag1 ? 1 : 0);
822 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_UNTAG1_B,
823 : : vcfg->accept_untag1 ? 1 : 0);
824 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_TAG2_B,
825 : : vcfg->accept_tag2 ? 1 : 0);
826 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_ACCEPT_UNTAG2_B,
827 : : vcfg->accept_untag2 ? 1 : 0);
828 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_PORT_INS_TAG1_EN_B,
829 : : vcfg->insert_tag1_en ? 1 : 0);
830 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_PORT_INS_TAG2_EN_B,
831 : : vcfg->insert_tag2_en ? 1 : 0);
832 : 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_CFG_NIC_ROCE_SEL_B, 0);
833 : :
834 : : /* firmware will ignore this configuration for PCI_REVISION_ID_HIP08 */
835 [ # # ]: 0 : hns3_set_bit(req->vport_vlan_cfg, HNS3_TAG_SHIFT_MODE_EN_B,
836 : : vcfg->tag_shift_mode_en ? 1 : 0);
837 : :
838 : : /*
839 : : * In current version VF is not supported when PF is driven by DPDK
840 : : * driver, just need to configure parameters for PF vport.
841 : : */
842 : : vport_id = HNS3_PF_FUNC_ID;
843 : 0 : req->vf_offset = vport_id / HNS3_VF_NUM_PER_CMD;
844 : : bitmap = 1 << (vport_id % HNS3_VF_NUM_PER_BYTE);
845 : 0 : req->vf_bitmap[req->vf_offset] = bitmap;
846 : :
847 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
848 [ # # ]: 0 : if (ret)
849 : 0 : hns3_err(hw, "Send port txvlan cfg command fail, ret =%d", ret);
850 : :
851 : 0 : return ret;
852 : : }
853 : :
854 : : static int
855 : 0 : hns3_vlan_txvlan_cfg(struct hns3_adapter *hns, uint16_t port_base_vlan_state,
856 : : uint16_t pvid)
857 : : {
858 : : struct hns3_hw *hw = &hns->hw;
859 : : struct hns3_tx_vtag_cfg txvlan_cfg;
860 : : int ret;
861 : :
862 [ # # ]: 0 : if (port_base_vlan_state == HNS3_PORT_BASE_VLAN_DISABLE) {
863 : 0 : txvlan_cfg.accept_tag1 = true;
864 : 0 : txvlan_cfg.insert_tag1_en = false;
865 : 0 : txvlan_cfg.default_tag1 = 0;
866 : : } else {
867 : 0 : txvlan_cfg.accept_tag1 =
868 : 0 : hw->vlan_mode == HNS3_HW_SHIFT_AND_DISCARD_MODE;
869 : 0 : txvlan_cfg.insert_tag1_en = true;
870 : 0 : txvlan_cfg.default_tag1 = pvid;
871 : : }
872 : :
873 : 0 : txvlan_cfg.accept_untag1 = true;
874 : 0 : txvlan_cfg.accept_tag2 = true;
875 : 0 : txvlan_cfg.accept_untag2 = true;
876 : 0 : txvlan_cfg.insert_tag2_en = false;
877 : 0 : txvlan_cfg.default_tag2 = 0;
878 : 0 : txvlan_cfg.tag_shift_mode_en = true;
879 : :
880 : 0 : ret = hns3_set_vlan_tx_offload_cfg(hns, &txvlan_cfg);
881 [ # # ]: 0 : if (ret) {
882 : 0 : hns3_err(hw, "pf vlan set pvid failed, pvid =%u ,ret =%d", pvid,
883 : : ret);
884 : 0 : return ret;
885 : : }
886 : :
887 : 0 : memcpy(&hns->pf.vtag_config.tx_vcfg, &txvlan_cfg,
888 : : sizeof(struct hns3_tx_vtag_cfg));
889 : :
890 : 0 : return ret;
891 : : }
892 : :
893 : :
894 : : static void
895 : 0 : hns3_rm_all_vlan_table(struct hns3_adapter *hns, bool is_del_list)
896 : : {
897 : : struct hns3_user_vlan_table *vlan_entry;
898 : : struct hns3_pf *pf = &hns->pf;
899 : :
900 [ # # ]: 0 : LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
901 [ # # ]: 0 : if (vlan_entry->hd_tbl_status) {
902 : 0 : hns3_set_port_vlan_filter(hns, vlan_entry->vlan_id, 0);
903 : 0 : vlan_entry->hd_tbl_status = false;
904 : : }
905 : : }
906 : :
907 [ # # ]: 0 : if (is_del_list) {
908 : 0 : vlan_entry = LIST_FIRST(&pf->vlan_list);
909 [ # # ]: 0 : while (vlan_entry) {
910 [ # # ]: 0 : LIST_REMOVE(vlan_entry, next);
911 : 0 : rte_free(vlan_entry);
912 : 0 : vlan_entry = LIST_FIRST(&pf->vlan_list);
913 : : }
914 : : }
915 : 0 : }
916 : :
917 : : static void
918 : 0 : hns3_add_all_vlan_table(struct hns3_adapter *hns)
919 : : {
920 : : struct hns3_user_vlan_table *vlan_entry;
921 : : struct hns3_pf *pf = &hns->pf;
922 : :
923 [ # # ]: 0 : LIST_FOREACH(vlan_entry, &pf->vlan_list, next) {
924 [ # # ]: 0 : if (!vlan_entry->hd_tbl_status) {
925 : 0 : hns3_set_port_vlan_filter(hns, vlan_entry->vlan_id, 1);
926 : 0 : vlan_entry->hd_tbl_status = true;
927 : : }
928 : : }
929 : 0 : }
930 : :
931 : : static void
932 : 0 : hns3_remove_all_vlan_table(struct hns3_adapter *hns)
933 : : {
934 : : struct hns3_hw *hw = &hns->hw;
935 : : int ret;
936 : :
937 : 0 : hns3_rm_all_vlan_table(hns, true);
938 [ # # ]: 0 : if (hw->port_base_vlan_cfg.pvid != HNS3_INVALID_PVID) {
939 : 0 : ret = hns3_set_port_vlan_filter(hns,
940 : : hw->port_base_vlan_cfg.pvid, 0);
941 [ # # ]: 0 : if (ret) {
942 : 0 : hns3_err(hw, "Failed to remove all vlan table, ret =%d",
943 : : ret);
944 : 0 : return;
945 : : }
946 : : }
947 : : }
948 : :
949 : : static int
950 : 0 : hns3_update_vlan_filter_entries(struct hns3_adapter *hns,
951 : : uint16_t port_base_vlan_state, uint16_t new_pvid)
952 : : {
953 : : struct hns3_hw *hw = &hns->hw;
954 : : uint16_t old_pvid;
955 : : int ret;
956 : :
957 [ # # ]: 0 : if (port_base_vlan_state == HNS3_PORT_BASE_VLAN_ENABLE) {
958 : 0 : old_pvid = hw->port_base_vlan_cfg.pvid;
959 [ # # ]: 0 : if (old_pvid != HNS3_INVALID_PVID) {
960 : 0 : ret = hns3_set_port_vlan_filter(hns, old_pvid, 0);
961 [ # # ]: 0 : if (ret) {
962 : 0 : hns3_err(hw, "failed to remove old pvid %u, "
963 : : "ret = %d", old_pvid, ret);
964 : 0 : return ret;
965 : : }
966 : : }
967 : :
968 : 0 : hns3_rm_all_vlan_table(hns, false);
969 : 0 : ret = hns3_set_port_vlan_filter(hns, new_pvid, 1);
970 [ # # ]: 0 : if (ret) {
971 : 0 : hns3_err(hw, "failed to add new pvid %u, ret = %d",
972 : : new_pvid, ret);
973 : 0 : return ret;
974 : : }
975 : : } else {
976 : 0 : ret = hns3_set_port_vlan_filter(hns, new_pvid, 0);
977 [ # # ]: 0 : if (ret) {
978 : 0 : hns3_err(hw, "failed to remove pvid %u, ret = %d",
979 : : new_pvid, ret);
980 : 0 : return ret;
981 : : }
982 : :
983 : 0 : hns3_add_all_vlan_table(hns);
984 : : }
985 : : return 0;
986 : : }
987 : :
988 : : static int
989 : 0 : hns3_en_pvid_strip(struct hns3_adapter *hns, int on)
990 : : {
991 : : struct hns3_rx_vtag_cfg *old_cfg = &hns->pf.vtag_config.rx_vcfg;
992 : : struct hns3_rx_vtag_cfg rx_vlan_cfg;
993 : : bool rx_strip_en;
994 : : int ret;
995 : :
996 : 0 : rx_strip_en = old_cfg->rx_vlan_offload_en;
997 [ # # ]: 0 : if (on) {
998 : 0 : rx_vlan_cfg.strip_tag1_en = rx_strip_en;
999 : 0 : rx_vlan_cfg.strip_tag2_en = true;
1000 : 0 : rx_vlan_cfg.strip_tag2_discard_en = true;
1001 : : } else {
1002 : 0 : rx_vlan_cfg.strip_tag1_en = false;
1003 : 0 : rx_vlan_cfg.strip_tag2_en = rx_strip_en;
1004 : 0 : rx_vlan_cfg.strip_tag2_discard_en = false;
1005 : : }
1006 : 0 : rx_vlan_cfg.strip_tag1_discard_en = false;
1007 : 0 : rx_vlan_cfg.vlan1_vlan_prionly = false;
1008 : 0 : rx_vlan_cfg.vlan2_vlan_prionly = false;
1009 : 0 : rx_vlan_cfg.rx_vlan_offload_en = old_cfg->rx_vlan_offload_en;
1010 : :
1011 : 0 : ret = hns3_set_vlan_rx_offload_cfg(hns, &rx_vlan_cfg);
1012 [ # # ]: 0 : if (ret)
1013 : : return ret;
1014 : :
1015 : 0 : memcpy(&hns->pf.vtag_config.rx_vcfg, &rx_vlan_cfg,
1016 : : sizeof(struct hns3_rx_vtag_cfg));
1017 : :
1018 : 0 : return ret;
1019 : : }
1020 : :
1021 : : static int
1022 : 0 : hns3_vlan_pvid_configure(struct hns3_adapter *hns, uint16_t pvid, int on)
1023 : : {
1024 : : struct hns3_hw *hw = &hns->hw;
1025 : : uint16_t port_base_vlan_state;
1026 : : int ret, err;
1027 : :
1028 [ # # # # ]: 0 : if (on == 0 && pvid != hw->port_base_vlan_cfg.pvid) {
1029 [ # # ]: 0 : if (hw->port_base_vlan_cfg.pvid != HNS3_INVALID_PVID)
1030 : 0 : hns3_warn(hw, "Invalid operation! As current pvid set "
1031 : : "is %u, disable pvid %u is invalid",
1032 : : hw->port_base_vlan_cfg.pvid, pvid);
1033 : 0 : return 0;
1034 : : }
1035 : :
1036 : 0 : port_base_vlan_state = on ? HNS3_PORT_BASE_VLAN_ENABLE :
1037 : : HNS3_PORT_BASE_VLAN_DISABLE;
1038 : 0 : ret = hns3_vlan_txvlan_cfg(hns, port_base_vlan_state, pvid);
1039 [ # # ]: 0 : if (ret) {
1040 : 0 : hns3_err(hw, "failed to config tx vlan for pvid, ret = %d",
1041 : : ret);
1042 : 0 : return ret;
1043 : : }
1044 : :
1045 : 0 : ret = hns3_en_pvid_strip(hns, on);
1046 [ # # ]: 0 : if (ret) {
1047 : 0 : hns3_err(hw, "failed to config rx vlan strip for pvid, "
1048 : : "ret = %d", ret);
1049 : 0 : goto pvid_vlan_strip_fail;
1050 : : }
1051 : :
1052 [ # # ]: 0 : if (pvid == HNS3_INVALID_PVID)
1053 : 0 : goto out;
1054 : 0 : ret = hns3_update_vlan_filter_entries(hns, port_base_vlan_state, pvid);
1055 [ # # ]: 0 : if (ret) {
1056 : 0 : hns3_err(hw, "failed to update vlan filter entries, ret = %d",
1057 : : ret);
1058 : 0 : goto vlan_filter_set_fail;
1059 : : }
1060 : :
1061 : 0 : out:
1062 : 0 : hw->port_base_vlan_cfg.state = port_base_vlan_state;
1063 [ # # ]: 0 : hw->port_base_vlan_cfg.pvid = on ? pvid : HNS3_INVALID_PVID;
1064 : 0 : return ret;
1065 : :
1066 : : vlan_filter_set_fail:
1067 : 0 : err = hns3_en_pvid_strip(hns, hw->port_base_vlan_cfg.state ==
1068 : : HNS3_PORT_BASE_VLAN_ENABLE);
1069 [ # # ]: 0 : if (err)
1070 : 0 : hns3_err(hw, "fail to rollback pvid strip, ret = %d", err);
1071 : :
1072 : 0 : pvid_vlan_strip_fail:
1073 : 0 : err = hns3_vlan_txvlan_cfg(hns, hw->port_base_vlan_cfg.state,
1074 : 0 : hw->port_base_vlan_cfg.pvid);
1075 [ # # ]: 0 : if (err)
1076 : 0 : hns3_err(hw, "fail to rollback txvlan status, ret = %d", err);
1077 : :
1078 : : return ret;
1079 : : }
1080 : :
1081 : : static int
1082 : 0 : hns3_vlan_pvid_set(struct rte_eth_dev *dev, uint16_t pvid, int on)
1083 : : {
1084 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
1085 : 0 : struct hns3_hw *hw = &hns->hw;
1086 : : bool pvid_en_state_change;
1087 : : uint16_t pvid_state;
1088 : : int ret;
1089 : :
1090 [ # # ]: 0 : if (pvid > RTE_ETHER_MAX_VLAN_ID) {
1091 : 0 : hns3_err(hw, "Invalid vlan_id = %u > %d", pvid,
1092 : : RTE_ETHER_MAX_VLAN_ID);
1093 : 0 : return -EINVAL;
1094 : : }
1095 : :
1096 : : /*
1097 : : * If PVID configuration state change, should refresh the PVID
1098 : : * configuration state in struct hns3_tx_queue/hns3_rx_queue.
1099 : : */
1100 : 0 : pvid_state = hw->port_base_vlan_cfg.state;
1101 [ # # ]: 0 : if ((on && pvid_state == HNS3_PORT_BASE_VLAN_ENABLE) ||
1102 [ # # ]: 0 : (!on && pvid_state == HNS3_PORT_BASE_VLAN_DISABLE))
1103 : : pvid_en_state_change = false;
1104 : : else
1105 : : pvid_en_state_change = true;
1106 : :
1107 : 0 : rte_spinlock_lock(&hw->lock);
1108 : 0 : ret = hns3_vlan_pvid_configure(hns, pvid, on);
1109 : : rte_spinlock_unlock(&hw->lock);
1110 [ # # ]: 0 : if (ret)
1111 : : return ret;
1112 : : /*
1113 : : * Only in HNS3_SW_SHIFT_AND_MODE the PVID related operation in Tx/Rx
1114 : : * need be processed by PMD.
1115 : : */
1116 [ # # ]: 0 : if (pvid_en_state_change &&
1117 [ # # ]: 0 : hw->vlan_mode == HNS3_SW_SHIFT_AND_DISCARD_MODE)
1118 : 0 : hns3_update_all_queues_pvid_proc_en(hw);
1119 : :
1120 : : return 0;
1121 : : }
1122 : :
1123 : : static int
1124 : 0 : hns3_default_vlan_config(struct hns3_adapter *hns)
1125 : : {
1126 : : struct hns3_hw *hw = &hns->hw;
1127 : : int ret;
1128 : :
1129 : : /*
1130 : : * When vlan filter is enabled, hardware regards packets without vlan
1131 : : * as packets with vlan 0. Therefore, if vlan 0 is not in the vlan
1132 : : * table, packets without vlan won't be received. So, add vlan 0 as
1133 : : * the default vlan.
1134 : : */
1135 : 0 : ret = hns3_vlan_filter_configure(hns, 0, 1);
1136 [ # # ]: 0 : if (ret)
1137 : 0 : hns3_err(hw, "default vlan 0 config failed, ret =%d", ret);
1138 : 0 : return ret;
1139 : : }
1140 : :
1141 : : static int
1142 : 0 : hns3_init_vlan_config(struct hns3_adapter *hns)
1143 : : {
1144 : : struct hns3_hw *hw = &hns->hw;
1145 : : int ret;
1146 : :
1147 : : /*
1148 : : * This function can be called in the initialization and reset process,
1149 : : * when in reset process, it means that hardware had been reseted
1150 : : * successfully and we need to restore the hardware configuration to
1151 : : * ensure that the hardware configuration remains unchanged before and
1152 : : * after reset.
1153 : : */
1154 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.resetting, rte_memory_order_relaxed) == 0) {
1155 : 0 : hw->port_base_vlan_cfg.state = HNS3_PORT_BASE_VLAN_DISABLE;
1156 : 0 : hw->port_base_vlan_cfg.pvid = HNS3_INVALID_PVID;
1157 : : }
1158 : :
1159 : 0 : ret = hns3_vlan_filter_init(hns);
1160 [ # # ]: 0 : if (ret) {
1161 : 0 : hns3_err(hw, "vlan init fail in pf, ret =%d", ret);
1162 : 0 : return ret;
1163 : : }
1164 : :
1165 : 0 : ret = hns3_vlan_tpid_configure(hns, RTE_ETH_VLAN_TYPE_INNER,
1166 : : RTE_ETHER_TYPE_VLAN);
1167 [ # # ]: 0 : if (ret) {
1168 : 0 : hns3_err(hw, "tpid set fail in pf, ret =%d", ret);
1169 : 0 : return ret;
1170 : : }
1171 : :
1172 : : /*
1173 : : * When in the reinit dev stage of the reset process, the following
1174 : : * vlan-related configurations may differ from those at initialization,
1175 : : * we will restore configurations to hardware in hns3_restore_vlan_table
1176 : : * and hns3_restore_vlan_conf later.
1177 : : */
1178 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.resetting, rte_memory_order_relaxed) == 0) {
1179 : 0 : ret = hns3_vlan_pvid_configure(hns, HNS3_INVALID_PVID, 0);
1180 [ # # ]: 0 : if (ret) {
1181 : 0 : hns3_err(hw, "pvid set fail in pf, ret =%d", ret);
1182 : 0 : return ret;
1183 : : }
1184 : :
1185 : 0 : ret = hns3_en_hw_strip_rxvtag(hns, false);
1186 [ # # ]: 0 : if (ret) {
1187 : 0 : hns3_err(hw, "rx strip configure fail in pf, ret =%d",
1188 : : ret);
1189 : 0 : return ret;
1190 : : }
1191 : : }
1192 : :
1193 : 0 : return hns3_default_vlan_config(hns);
1194 : : }
1195 : :
1196 : : static int
1197 : 0 : hns3_restore_vlan_conf(struct hns3_adapter *hns)
1198 : : {
1199 : : struct hns3_pf *pf = &hns->pf;
1200 : : struct hns3_hw *hw = &hns->hw;
1201 : : uint64_t offloads;
1202 : : bool enable;
1203 : : int ret;
1204 : :
1205 [ # # ]: 0 : if (!hw->data->promiscuous) {
1206 : : /* restore vlan filter states */
1207 : 0 : offloads = hw->data->dev_conf.rxmode.offloads;
1208 : 0 : enable = offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER ? true : false;
1209 : 0 : ret = hns3_enable_vlan_filter(hns, enable);
1210 [ # # ]: 0 : if (ret) {
1211 : 0 : hns3_err(hw, "failed to restore vlan rx filter conf, "
1212 : : "ret = %d", ret);
1213 : 0 : return ret;
1214 : : }
1215 : : }
1216 : :
1217 : 0 : ret = hns3_set_vlan_rx_offload_cfg(hns, &pf->vtag_config.rx_vcfg);
1218 [ # # ]: 0 : if (ret) {
1219 : 0 : hns3_err(hw, "failed to restore vlan rx conf, ret = %d", ret);
1220 : 0 : return ret;
1221 : : }
1222 : :
1223 : 0 : ret = hns3_set_vlan_tx_offload_cfg(hns, &pf->vtag_config.tx_vcfg);
1224 [ # # ]: 0 : if (ret)
1225 : 0 : hns3_err(hw, "failed to restore vlan tx conf, ret = %d", ret);
1226 : :
1227 : : return ret;
1228 : : }
1229 : :
1230 : : static int
1231 : 0 : hns3_dev_configure_vlan(struct rte_eth_dev *dev)
1232 : : {
1233 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
1234 : : struct rte_eth_dev_data *data = dev->data;
1235 : : struct rte_eth_txmode *txmode;
1236 : : struct hns3_hw *hw = &hns->hw;
1237 : : int mask;
1238 : : int ret;
1239 : :
1240 : : txmode = &data->dev_conf.txmode;
1241 [ # # ]: 0 : if (txmode->hw_vlan_reject_tagged || txmode->hw_vlan_reject_untagged)
1242 : 0 : hns3_warn(hw,
1243 : : "hw_vlan_reject_tagged or hw_vlan_reject_untagged "
1244 : : "configuration is not supported! Ignore these two "
1245 : : "parameters: hw_vlan_reject_tagged(%u), "
1246 : : "hw_vlan_reject_untagged(%u)",
1247 : : txmode->hw_vlan_reject_tagged,
1248 : : txmode->hw_vlan_reject_untagged);
1249 : :
1250 : : /* Apply vlan offload setting */
1251 : : mask = RTE_ETH_VLAN_STRIP_MASK | RTE_ETH_VLAN_FILTER_MASK;
1252 : 0 : ret = hns3_vlan_offload_set(dev, mask);
1253 [ # # ]: 0 : if (ret) {
1254 : 0 : hns3_err(hw, "dev config rx vlan offload failed, ret = %d",
1255 : : ret);
1256 : 0 : return ret;
1257 : : }
1258 : :
1259 : : /*
1260 : : * If pvid config is not set in rte_eth_conf, driver needn't to set
1261 : : * VLAN pvid related configuration to hardware.
1262 : : */
1263 [ # # ]: 0 : if (txmode->pvid == 0 && txmode->hw_vlan_insert_pvid == 0)
1264 : : return 0;
1265 : :
1266 : : /* Apply pvid setting */
1267 : 0 : ret = hns3_vlan_pvid_set(dev, txmode->pvid,
1268 : 0 : txmode->hw_vlan_insert_pvid);
1269 [ # # ]: 0 : if (ret)
1270 : 0 : hns3_err(hw, "dev config vlan pvid(%u) failed, ret = %d",
1271 : : txmode->pvid, ret);
1272 : :
1273 : : return ret;
1274 : : }
1275 : :
1276 : : static int
1277 : 0 : hns3_config_tso(struct hns3_hw *hw, unsigned int tso_mss_min,
1278 : : unsigned int tso_mss_max)
1279 : : {
1280 : : struct hns3_cfg_tso_status_cmd *req;
1281 : : struct hns3_cmd_desc desc;
1282 : : uint16_t tso_mss;
1283 : :
1284 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TSO_GENERIC_CONFIG, false);
1285 : :
1286 : : req = (struct hns3_cfg_tso_status_cmd *)desc.data;
1287 : :
1288 : : tso_mss = 0;
1289 : 0 : hns3_set_field(tso_mss, HNS3_TSO_MSS_MIN_M, HNS3_TSO_MSS_MIN_S,
1290 : : tso_mss_min);
1291 : 0 : req->tso_mss_min = rte_cpu_to_le_16(tso_mss);
1292 : :
1293 : : tso_mss = 0;
1294 : 0 : hns3_set_field(tso_mss, HNS3_TSO_MSS_MIN_M, HNS3_TSO_MSS_MIN_S,
1295 : : tso_mss_max);
1296 : 0 : req->tso_mss_max = rte_cpu_to_le_16(tso_mss);
1297 : :
1298 : 0 : return hns3_cmd_send(hw, &desc, 1);
1299 : : }
1300 : :
1301 : : static int
1302 : 0 : hns3_set_umv_space(struct hns3_hw *hw, uint16_t space_size,
1303 : : uint16_t *allocated_size, bool is_alloc)
1304 : : {
1305 : : struct hns3_umv_spc_alc_cmd *req;
1306 : : struct hns3_cmd_desc desc;
1307 : : int ret;
1308 : :
1309 : : req = (struct hns3_umv_spc_alc_cmd *)desc.data;
1310 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_ALLOCATE, false);
1311 : 0 : hns3_set_bit(req->allocate, HNS3_UMV_SPC_ALC_B, is_alloc ? 0 : 1);
1312 : 0 : req->space_size = rte_cpu_to_le_32(space_size);
1313 : :
1314 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
1315 [ # # ]: 0 : if (ret) {
1316 [ # # ]: 0 : PMD_INIT_LOG(ERR, "%s umv space failed for cmd_send, ret =%d",
1317 : : is_alloc ? "allocate" : "free", ret);
1318 : 0 : return ret;
1319 : : }
1320 : :
1321 [ # # ]: 0 : if (is_alloc && allocated_size)
1322 : 0 : *allocated_size = rte_le_to_cpu_32(desc.data[1]);
1323 : :
1324 : : return 0;
1325 : : }
1326 : :
1327 : : static int
1328 : 0 : hns3_init_umv_space(struct hns3_hw *hw)
1329 : : {
1330 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1331 : : struct hns3_pf *pf = &hns->pf;
1332 : 0 : uint16_t allocated_size = 0;
1333 : : int ret;
1334 : :
1335 : 0 : ret = hns3_set_umv_space(hw, pf->wanted_umv_size, &allocated_size,
1336 : : true);
1337 [ # # ]: 0 : if (ret)
1338 : : return ret;
1339 : :
1340 [ # # ]: 0 : if (allocated_size < pf->wanted_umv_size)
1341 : 0 : PMD_INIT_LOG(WARNING, "Alloc umv space failed, want %u, get %u",
1342 : : pf->wanted_umv_size, allocated_size);
1343 : :
1344 [ # # ]: 0 : pf->max_umv_size = (!!allocated_size) ? allocated_size :
1345 : : pf->wanted_umv_size;
1346 : 0 : pf->used_umv_size = 0;
1347 : 0 : return 0;
1348 : : }
1349 : :
1350 : : static int
1351 : 0 : hns3_uninit_umv_space(struct hns3_hw *hw)
1352 : : {
1353 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1354 : : struct hns3_pf *pf = &hns->pf;
1355 : : int ret;
1356 : :
1357 [ # # ]: 0 : if (pf->max_umv_size == 0)
1358 : : return 0;
1359 : :
1360 : 0 : ret = hns3_set_umv_space(hw, pf->max_umv_size, NULL, false);
1361 [ # # ]: 0 : if (ret)
1362 : : return ret;
1363 : :
1364 : 0 : pf->max_umv_size = 0;
1365 : :
1366 : 0 : return 0;
1367 : : }
1368 : :
1369 : : static bool
1370 : : hns3_is_umv_space_full(struct hns3_hw *hw)
1371 : : {
1372 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1373 : : struct hns3_pf *pf = &hns->pf;
1374 : : bool is_full;
1375 : :
1376 : 0 : is_full = (pf->used_umv_size >= pf->max_umv_size);
1377 : :
1378 : : return is_full;
1379 : : }
1380 : :
1381 : : static void
1382 : : hns3_update_umv_space(struct hns3_hw *hw, bool is_free)
1383 : : {
1384 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1385 : : struct hns3_pf *pf = &hns->pf;
1386 : :
1387 : : if (is_free) {
1388 [ # # ]: 0 : if (pf->used_umv_size > 0)
1389 : 0 : pf->used_umv_size--;
1390 : : } else
1391 : 0 : pf->used_umv_size++;
1392 : 0 : }
1393 : :
1394 : : static void
1395 : 0 : hns3_prepare_mac_addr(struct hns3_mac_vlan_tbl_entry_cmd *new_req,
1396 : : const uint8_t *addr, bool is_mc)
1397 : : {
1398 : : const unsigned char *mac_addr = addr;
1399 : 0 : uint32_t high_val = ((uint32_t)mac_addr[3] << 24) |
1400 : 0 : ((uint32_t)mac_addr[2] << 16) |
1401 : 0 : ((uint32_t)mac_addr[1] << 8) |
1402 : 0 : (uint32_t)mac_addr[0];
1403 : 0 : uint32_t low_val = ((uint32_t)mac_addr[5] << 8) | (uint32_t)mac_addr[4];
1404 : :
1405 : 0 : hns3_set_bit(new_req->flags, HNS3_MAC_VLAN_BIT0_EN_B, 1);
1406 [ # # ]: 0 : if (is_mc) {
1407 : 0 : hns3_set_bit(new_req->entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1408 : 0 : hns3_set_bit(new_req->entry_type, HNS3_MAC_VLAN_BIT1_EN_B, 1);
1409 : 0 : hns3_set_bit(new_req->mc_mac_en, HNS3_MAC_VLAN_BIT0_EN_B, 1);
1410 : : }
1411 : :
1412 : 0 : new_req->mac_addr_hi32 = rte_cpu_to_le_32(high_val);
1413 : 0 : new_req->mac_addr_lo16 = rte_cpu_to_le_16(low_val & 0xffff);
1414 : 0 : }
1415 : :
1416 : : static int
1417 : 0 : hns3_get_mac_vlan_cmd_status(struct hns3_hw *hw, uint16_t cmdq_resp,
1418 : : uint8_t resp_code,
1419 : : enum hns3_mac_vlan_tbl_opcode op)
1420 : : {
1421 [ # # ]: 0 : if (cmdq_resp) {
1422 : 0 : hns3_err(hw, "cmdq execute failed for get_mac_vlan_cmd_status,status=%u",
1423 : : cmdq_resp);
1424 : 0 : return -EIO;
1425 : : }
1426 : :
1427 [ # # ]: 0 : if (op == HNS3_MAC_VLAN_ADD) {
1428 [ # # ]: 0 : if (resp_code == 0 || resp_code == 1) {
1429 : : return 0;
1430 [ # # ]: 0 : } else if (resp_code == HNS3_ADD_UC_OVERFLOW) {
1431 : 0 : hns3_err(hw, "add mac addr failed for uc_overflow");
1432 : 0 : return -ENOSPC;
1433 [ # # ]: 0 : } else if (resp_code == HNS3_ADD_MC_OVERFLOW) {
1434 : 0 : hns3_err(hw, "add mac addr failed for mc_overflow");
1435 : 0 : return -ENOSPC;
1436 : : }
1437 : :
1438 : 0 : hns3_err(hw, "add mac addr failed for undefined, code=%u",
1439 : : resp_code);
1440 : 0 : return -EIO;
1441 [ # # ]: 0 : } else if (op == HNS3_MAC_VLAN_REMOVE) {
1442 [ # # ]: 0 : if (resp_code == 0) {
1443 : : return 0;
1444 [ # # ]: 0 : } else if (resp_code == 1) {
1445 : 0 : hns3_dbg(hw, "remove mac addr failed for miss");
1446 : 0 : return -ENOENT;
1447 : : }
1448 : :
1449 : 0 : hns3_err(hw, "remove mac addr failed for undefined, code=%u",
1450 : : resp_code);
1451 : 0 : return -EIO;
1452 [ # # ]: 0 : } else if (op == HNS3_MAC_VLAN_LKUP) {
1453 [ # # ]: 0 : if (resp_code == 0) {
1454 : : return 0;
1455 [ # # ]: 0 : } else if (resp_code == 1) {
1456 : 0 : hns3_dbg(hw, "lookup mac addr failed for miss");
1457 : 0 : return -ENOENT;
1458 : : }
1459 : :
1460 : 0 : hns3_err(hw, "lookup mac addr failed for undefined, code=%u",
1461 : : resp_code);
1462 : 0 : return -EIO;
1463 : : }
1464 : :
1465 : 0 : hns3_err(hw, "unknown opcode for get_mac_vlan_cmd_status, opcode=%u",
1466 : : op);
1467 : :
1468 : 0 : return -EINVAL;
1469 : : }
1470 : :
1471 : : static int
1472 : 0 : hns3_lookup_mac_vlan_tbl(struct hns3_hw *hw,
1473 : : struct hns3_mac_vlan_tbl_entry_cmd *req,
1474 : : struct hns3_cmd_desc *desc, uint8_t desc_num)
1475 : : {
1476 : : uint8_t resp_code;
1477 : : uint16_t retval;
1478 : : int ret;
1479 : : int i;
1480 : :
1481 [ # # ]: 0 : if (desc_num == HNS3_MC_MAC_VLAN_OPS_DESC_NUM) {
1482 [ # # ]: 0 : for (i = 0; i < desc_num - 1; i++) {
1483 : 0 : hns3_cmd_setup_basic_desc(&desc[i],
1484 : : HNS3_OPC_MAC_VLAN_ADD, true);
1485 : 0 : desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1486 [ # # ]: 0 : if (i == 0)
1487 : 0 : memcpy(desc[i].data, req,
1488 : : sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1489 : : }
1490 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_MAC_VLAN_ADD,
1491 : : true);
1492 : : } else {
1493 : 0 : hns3_cmd_setup_basic_desc(&desc[0], HNS3_OPC_MAC_VLAN_ADD,
1494 : : true);
1495 : 0 : memcpy(desc[0].data, req,
1496 : : sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1497 : : }
1498 : 0 : ret = hns3_cmd_send(hw, desc, desc_num);
1499 [ # # ]: 0 : if (ret) {
1500 : 0 : hns3_err(hw, "lookup mac addr failed for cmd_send, ret =%d.",
1501 : : ret);
1502 : 0 : return ret;
1503 : : }
1504 : 0 : resp_code = (rte_le_to_cpu_32(desc[0].data[0]) >> 8) & 0xff;
1505 : 0 : retval = rte_le_to_cpu_16(desc[0].retval);
1506 : :
1507 : 0 : return hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1508 : : HNS3_MAC_VLAN_LKUP);
1509 : : }
1510 : :
1511 : : static int
1512 : 0 : hns3_add_mac_vlan_tbl(struct hns3_hw *hw,
1513 : : struct hns3_mac_vlan_tbl_entry_cmd *req,
1514 : : struct hns3_cmd_desc *desc, uint8_t desc_num)
1515 : : {
1516 : : uint8_t resp_code;
1517 : : uint16_t retval;
1518 : : int cfg_status;
1519 : : int ret;
1520 : : int i;
1521 : :
1522 [ # # ]: 0 : if (desc_num == HNS3_UC_MAC_VLAN_OPS_DESC_NUM) {
1523 : 0 : hns3_cmd_setup_basic_desc(desc, HNS3_OPC_MAC_VLAN_ADD, false);
1524 : 0 : memcpy(desc->data, req,
1525 : : sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1526 : 0 : ret = hns3_cmd_send(hw, desc, desc_num);
1527 : 0 : resp_code = (rte_le_to_cpu_32(desc->data[0]) >> 8) & 0xff;
1528 : 0 : retval = rte_le_to_cpu_16(desc->retval);
1529 : :
1530 : 0 : cfg_status = hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1531 : : HNS3_MAC_VLAN_ADD);
1532 : : } else {
1533 [ # # ]: 0 : for (i = 0; i < desc_num; i++) {
1534 : 0 : hns3_cmd_reuse_desc(&desc[i], false);
1535 [ # # ]: 0 : if (i == desc_num - 1)
1536 : 0 : desc[i].flag &=
1537 : : rte_cpu_to_le_16(~HNS3_CMD_FLAG_NEXT);
1538 : : else
1539 : 0 : desc[i].flag |=
1540 : : rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
1541 : : }
1542 : 0 : memcpy(desc[0].data, req,
1543 : : sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1544 : 0 : desc[0].retval = 0;
1545 : 0 : ret = hns3_cmd_send(hw, desc, desc_num);
1546 : 0 : resp_code = (rte_le_to_cpu_32(desc[0].data[0]) >> 8) & 0xff;
1547 : 0 : retval = rte_le_to_cpu_16(desc[0].retval);
1548 : :
1549 : 0 : cfg_status = hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1550 : : HNS3_MAC_VLAN_ADD);
1551 : : }
1552 : :
1553 [ # # ]: 0 : if (ret) {
1554 : 0 : hns3_err(hw, "add mac addr failed for cmd_send, ret =%d", ret);
1555 : 0 : return ret;
1556 : : }
1557 : :
1558 : : return cfg_status;
1559 : : }
1560 : :
1561 : : static int
1562 : 0 : hns3_remove_mac_vlan_tbl(struct hns3_hw *hw,
1563 : : struct hns3_mac_vlan_tbl_entry_cmd *req)
1564 : : {
1565 : : struct hns3_cmd_desc desc;
1566 : : uint8_t resp_code;
1567 : : uint16_t retval;
1568 : : int ret;
1569 : :
1570 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_VLAN_REMOVE, false);
1571 : :
1572 : : memcpy(desc.data, req, sizeof(struct hns3_mac_vlan_tbl_entry_cmd));
1573 : :
1574 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
1575 [ # # ]: 0 : if (ret) {
1576 : 0 : hns3_err(hw, "del mac addr failed for cmd_send, ret =%d", ret);
1577 : 0 : return ret;
1578 : : }
1579 : 0 : resp_code = (rte_le_to_cpu_32(desc.data[0]) >> 8) & 0xff;
1580 : 0 : retval = rte_le_to_cpu_16(desc.retval);
1581 : :
1582 : 0 : return hns3_get_mac_vlan_cmd_status(hw, retval, resp_code,
1583 : : HNS3_MAC_VLAN_REMOVE);
1584 : : }
1585 : :
1586 : : static int
1587 [ # # ]: 0 : hns3_add_uc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1588 : : {
1589 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1590 : : struct hns3_mac_vlan_tbl_entry_cmd req;
1591 : : struct hns3_pf *pf = &hns->pf;
1592 : : struct hns3_cmd_desc desc;
1593 : : char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1594 : : uint16_t egress_port = 0;
1595 : : uint8_t vf_id;
1596 : : int ret;
1597 : :
1598 : : /* check if mac addr is valid */
1599 : : if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
1600 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1601 : : mac_addr);
1602 : 0 : hns3_err(hw, "Add unicast mac addr err! addr(%s) invalid",
1603 : : mac_str);
1604 : 0 : return -EINVAL;
1605 : : }
1606 : :
1607 : : memset(&req, 0, sizeof(req));
1608 : :
1609 : : /*
1610 : : * In current version VF is not supported when PF is driven by DPDK
1611 : : * driver, just need to configure parameters for PF vport.
1612 : : */
1613 : : vf_id = HNS3_PF_FUNC_ID;
1614 : : hns3_set_field(egress_port, HNS3_MAC_EPORT_VFID_M,
1615 : : HNS3_MAC_EPORT_VFID_S, vf_id);
1616 : :
1617 : : req.egress_port = rte_cpu_to_le_16(egress_port);
1618 : :
1619 : 0 : hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, false);
1620 : :
1621 : : /*
1622 : : * Lookup the mac address in the mac_vlan table, and add
1623 : : * it if the entry is inexistent. Repeated unicast entry
1624 : : * is not allowed in the mac vlan table.
1625 : : */
1626 : 0 : ret = hns3_lookup_mac_vlan_tbl(hw, &req, &desc,
1627 : : HNS3_UC_MAC_VLAN_OPS_DESC_NUM);
1628 [ # # ]: 0 : if (ret == -ENOENT) {
1629 [ # # ]: 0 : if (!hns3_is_umv_space_full(hw)) {
1630 : 0 : ret = hns3_add_mac_vlan_tbl(hw, &req, &desc,
1631 : : HNS3_UC_MAC_VLAN_OPS_DESC_NUM);
1632 [ # # ]: 0 : if (!ret)
1633 : : hns3_update_umv_space(hw, false);
1634 : 0 : return ret;
1635 : : }
1636 : :
1637 : 0 : hns3_err(hw, "UC MAC table full(%u)", pf->used_umv_size);
1638 : :
1639 : 0 : return -ENOSPC;
1640 : : }
1641 : :
1642 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE, mac_addr);
1643 : :
1644 : : /* check if we just hit the duplicate */
1645 [ # # ]: 0 : if (ret == 0) {
1646 : 0 : hns3_dbg(hw, "mac addr(%s) has been in the MAC table", mac_str);
1647 : 0 : return 0;
1648 : : }
1649 : :
1650 : 0 : hns3_err(hw, "PF failed to add unicast entry(%s) in the MAC table",
1651 : : mac_str);
1652 : :
1653 : 0 : return ret;
1654 : : }
1655 : :
1656 : : static int
1657 [ # # ]: 0 : hns3_remove_uc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1658 : : {
1659 : : struct hns3_mac_vlan_tbl_entry_cmd req;
1660 : : char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1661 : : int ret;
1662 : :
1663 : : /* check if mac addr is valid */
1664 : : if (!rte_is_valid_assigned_ether_addr(mac_addr)) {
1665 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1666 : : mac_addr);
1667 : 0 : hns3_err(hw, "remove unicast mac addr err! addr(%s) invalid",
1668 : : mac_str);
1669 : 0 : return -EINVAL;
1670 : : }
1671 : :
1672 : : memset(&req, 0, sizeof(req));
1673 : : hns3_set_bit(req.entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1674 : 0 : hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, false);
1675 : 0 : ret = hns3_remove_mac_vlan_tbl(hw, &req);
1676 [ # # ]: 0 : if (ret == -ENOENT) /* mac addr isn't existent in the mac vlan table. */
1677 : : return 0;
1678 [ # # ]: 0 : else if (ret == 0)
1679 : : hns3_update_umv_space(hw, true);
1680 : :
1681 : : return ret;
1682 : : }
1683 : :
1684 : : static int
1685 : 0 : hns3_set_default_mac_addr(struct rte_eth_dev *dev,
1686 : : struct rte_ether_addr *mac_addr)
1687 : : {
1688 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1689 : : struct rte_ether_addr *oaddr;
1690 : : char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1691 : : int ret, ret_val;
1692 : :
1693 : 0 : rte_spinlock_lock(&hw->lock);
1694 : 0 : oaddr = (struct rte_ether_addr *)hw->mac.mac_addr;
1695 : 0 : ret = hw->ops.del_uc_mac_addr(hw, oaddr);
1696 [ # # ]: 0 : if (ret) {
1697 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1698 : : oaddr);
1699 : 0 : hns3_warn(hw, "Remove old uc mac address(%s) fail: %d",
1700 : : mac_str, ret);
1701 : :
1702 : : rte_spinlock_unlock(&hw->lock);
1703 : 0 : return ret;
1704 : : }
1705 : :
1706 : 0 : ret = hw->ops.add_uc_mac_addr(hw, mac_addr);
1707 [ # # ]: 0 : if (ret) {
1708 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1709 : : mac_addr);
1710 : 0 : hns3_err(hw, "Failed to set mac addr(%s): %d", mac_str, ret);
1711 : 0 : goto err_add_uc_addr;
1712 : : }
1713 : :
1714 : 0 : ret = hns3_pause_addr_cfg(hw, mac_addr->addr_bytes);
1715 [ # # ]: 0 : if (ret) {
1716 : 0 : hns3_err(hw, "Failed to configure mac pause address: %d", ret);
1717 : 0 : goto err_pause_addr_cfg;
1718 : : }
1719 : :
1720 : : rte_ether_addr_copy(mac_addr,
1721 : : (struct rte_ether_addr *)hw->mac.mac_addr);
1722 : : rte_spinlock_unlock(&hw->lock);
1723 : :
1724 : 0 : return 0;
1725 : :
1726 : : err_pause_addr_cfg:
1727 : 0 : ret_val = hw->ops.del_uc_mac_addr(hw, mac_addr);
1728 [ # # ]: 0 : if (ret_val) {
1729 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1730 : : mac_addr);
1731 : 0 : hns3_warn(hw,
1732 : : "Failed to roll back to del set mac addr(%s): %d",
1733 : : mac_str, ret_val);
1734 : : }
1735 : :
1736 : 0 : err_add_uc_addr:
1737 : 0 : ret_val = hw->ops.add_uc_mac_addr(hw, oaddr);
1738 [ # # ]: 0 : if (ret_val) {
1739 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE, oaddr);
1740 : 0 : hns3_warn(hw, "Failed to restore old uc mac addr(%s): %d",
1741 : : mac_str, ret_val);
1742 : : }
1743 : : rte_spinlock_unlock(&hw->lock);
1744 : :
1745 : 0 : return ret;
1746 : : }
1747 : :
1748 : : static void
1749 : 0 : hns3_update_desc_vfid(struct hns3_cmd_desc *desc, uint8_t vfid, bool clr)
1750 : : {
1751 : : #define HNS3_VF_NUM_IN_FIRST_DESC 192
1752 : : uint8_t word_num;
1753 : : uint8_t bit_num;
1754 : :
1755 [ # # ]: 0 : if (vfid < HNS3_VF_NUM_IN_FIRST_DESC) {
1756 : 0 : word_num = vfid / 32;
1757 : 0 : bit_num = vfid % 32;
1758 [ # # ]: 0 : if (clr)
1759 : 0 : desc[1].data[word_num] &=
1760 : 0 : rte_cpu_to_le_32(~(1UL << bit_num));
1761 : : else
1762 : 0 : desc[1].data[word_num] |=
1763 : 0 : rte_cpu_to_le_32(1UL << bit_num);
1764 : : } else {
1765 : 0 : word_num = (vfid - HNS3_VF_NUM_IN_FIRST_DESC) / 32;
1766 : 0 : bit_num = vfid % 32;
1767 [ # # ]: 0 : if (clr)
1768 : 0 : desc[2].data[word_num] &=
1769 : 0 : rte_cpu_to_le_32(~(1UL << bit_num));
1770 : : else
1771 : 0 : desc[2].data[word_num] |=
1772 : 0 : rte_cpu_to_le_32(1UL << bit_num);
1773 : : }
1774 : 0 : }
1775 : :
1776 : : static int
1777 [ # # ]: 0 : hns3_add_mc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1778 : : {
1779 : : struct hns3_cmd_desc desc[HNS3_MC_MAC_VLAN_OPS_DESC_NUM];
1780 : : struct hns3_mac_vlan_tbl_entry_cmd req;
1781 : : char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1782 : : uint8_t vf_id;
1783 : : int ret;
1784 : : int idx;
1785 : :
1786 : : /* Check if mac addr is valid */
1787 [ # # ]: 0 : if (!rte_is_multicast_ether_addr(mac_addr)) {
1788 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1789 : : mac_addr);
1790 : 0 : hns3_err(hw, "failed to add mc mac addr, addr(%s) invalid",
1791 : : mac_str);
1792 : 0 : return -EINVAL;
1793 : : }
1794 : :
1795 : : memset(&req, 0, sizeof(req));
1796 : : hns3_set_bit(req.entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1797 : 0 : hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, true);
1798 : 0 : ret = hns3_lookup_mac_vlan_tbl(hw, &req, desc,
1799 : : HNS3_MC_MAC_VLAN_OPS_DESC_NUM);
1800 [ # # ]: 0 : if (ret) {
1801 : : /* This mac addr do not exist, add new entry for it */
1802 [ # # ]: 0 : for (idx = 0; idx < HNS3_MC_MAC_VLAN_OPS_DESC_NUM; idx++)
1803 : 0 : memset(desc[idx].data, 0, sizeof(desc[idx].data));
1804 : : }
1805 : :
1806 : : /*
1807 : : * In current version VF is not supported when PF is driven by DPDK
1808 : : * driver, just need to configure parameters for PF vport.
1809 : : */
1810 : : vf_id = HNS3_PF_FUNC_ID;
1811 : 0 : hns3_update_desc_vfid(desc, vf_id, false);
1812 : 0 : ret = hns3_add_mac_vlan_tbl(hw, &req, desc,
1813 : : HNS3_MC_MAC_VLAN_OPS_DESC_NUM);
1814 [ # # ]: 0 : if (ret) {
1815 [ # # ]: 0 : if (ret == -ENOSPC)
1816 : 0 : hns3_err(hw, "mc mac vlan table is full");
1817 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1818 : : mac_addr);
1819 : 0 : hns3_err(hw, "failed to add mc mac addr(%s): %d", mac_str, ret);
1820 : : }
1821 : :
1822 : : return ret;
1823 : : }
1824 : :
1825 : : static int
1826 [ # # ]: 0 : hns3_remove_mc_mac_addr(struct hns3_hw *hw, struct rte_ether_addr *mac_addr)
1827 : : {
1828 : : struct hns3_mac_vlan_tbl_entry_cmd req;
1829 : : struct hns3_cmd_desc desc[3];
1830 : : char mac_str[RTE_ETHER_ADDR_FMT_SIZE];
1831 : : uint8_t vf_id;
1832 : : int ret;
1833 : :
1834 : : /* Check if mac addr is valid */
1835 [ # # ]: 0 : if (!rte_is_multicast_ether_addr(mac_addr)) {
1836 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1837 : : mac_addr);
1838 : 0 : hns3_err(hw, "Failed to rm mc mac addr, addr(%s) invalid",
1839 : : mac_str);
1840 : 0 : return -EINVAL;
1841 : : }
1842 : :
1843 : : memset(&req, 0, sizeof(req));
1844 : : hns3_set_bit(req.entry_type, HNS3_MAC_VLAN_BIT0_EN_B, 0);
1845 : 0 : hns3_prepare_mac_addr(&req, mac_addr->addr_bytes, true);
1846 : 0 : ret = hns3_lookup_mac_vlan_tbl(hw, &req, desc,
1847 : : HNS3_MC_MAC_VLAN_OPS_DESC_NUM);
1848 [ # # ]: 0 : if (ret == 0) {
1849 : : /*
1850 : : * This mac addr exist, remove this handle's VFID for it.
1851 : : * In current version VF is not supported when PF is driven by
1852 : : * DPDK driver, just need to configure parameters for PF vport.
1853 : : */
1854 : : vf_id = HNS3_PF_FUNC_ID;
1855 : 0 : hns3_update_desc_vfid(desc, vf_id, true);
1856 : :
1857 : : /* All the vfid is zero, so need to delete this entry */
1858 : 0 : ret = hns3_remove_mac_vlan_tbl(hw, &req);
1859 [ # # ]: 0 : } else if (ret == -ENOENT) {
1860 : : /* This mac addr doesn't exist. */
1861 : : return 0;
1862 : : }
1863 : :
1864 [ # # ]: 0 : if (ret) {
1865 : 0 : hns3_ether_format_addr(mac_str, RTE_ETHER_ADDR_FMT_SIZE,
1866 : : mac_addr);
1867 : 0 : hns3_err(hw, "Failed to rm mc mac addr(%s): %d", mac_str, ret);
1868 : : }
1869 : :
1870 : : return ret;
1871 : : }
1872 : :
1873 : : static int
1874 : 0 : hns3_check_mq_mode(struct rte_eth_dev *dev)
1875 : : {
1876 : 0 : enum rte_eth_rx_mq_mode rx_mq_mode = dev->data->dev_conf.rxmode.mq_mode;
1877 : 0 : enum rte_eth_tx_mq_mode tx_mq_mode = dev->data->dev_conf.txmode.mq_mode;
1878 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1879 : : struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1880 : : struct rte_eth_dcb_rx_conf *dcb_rx_conf;
1881 : : struct rte_eth_dcb_tx_conf *dcb_tx_conf;
1882 : : uint8_t num_tc;
1883 : : int max_tc = 0;
1884 : : int i;
1885 : :
1886 [ # # ]: 0 : if (((uint32_t)rx_mq_mode & RTE_ETH_MQ_RX_VMDQ_FLAG) ||
1887 [ # # ]: 0 : (tx_mq_mode == RTE_ETH_MQ_TX_VMDQ_DCB ||
1888 : : tx_mq_mode == RTE_ETH_MQ_TX_VMDQ_ONLY)) {
1889 : 0 : hns3_err(hw, "VMDQ is not supported, rx_mq_mode = %d, tx_mq_mode = %d.",
1890 : : rx_mq_mode, tx_mq_mode);
1891 : 0 : return -EOPNOTSUPP;
1892 : : }
1893 : :
1894 : : dcb_rx_conf = &dev->data->dev_conf.rx_adv_conf.dcb_rx_conf;
1895 : : dcb_tx_conf = &dev->data->dev_conf.tx_adv_conf.dcb_tx_conf;
1896 [ # # ]: 0 : if ((uint32_t)rx_mq_mode & RTE_ETH_MQ_RX_DCB_FLAG) {
1897 [ # # ]: 0 : if (dcb_rx_conf->nb_tcs > pf->tc_max) {
1898 : 0 : hns3_err(hw, "nb_tcs(%u) > max_tc(%u) driver supported.",
1899 : : dcb_rx_conf->nb_tcs, pf->tc_max);
1900 : 0 : return -EINVAL;
1901 : : }
1902 : :
1903 [ # # ]: 0 : if (!(dcb_rx_conf->nb_tcs == HNS3_4_TCS ||
1904 : : dcb_rx_conf->nb_tcs == HNS3_8_TCS)) {
1905 : 0 : hns3_err(hw, "on RTE_ETH_MQ_RX_DCB_RSS mode, "
1906 : : "nb_tcs(%d) != %d or %d in rx direction.",
1907 : : dcb_rx_conf->nb_tcs, HNS3_4_TCS, HNS3_8_TCS);
1908 : 0 : return -EINVAL;
1909 : : }
1910 : :
1911 [ # # ]: 0 : if (dcb_rx_conf->nb_tcs != dcb_tx_conf->nb_tcs) {
1912 : 0 : hns3_err(hw, "num_tcs(%d) of tx is not equal to rx(%d)",
1913 : : dcb_tx_conf->nb_tcs, dcb_rx_conf->nb_tcs);
1914 : 0 : return -EINVAL;
1915 : : }
1916 : :
1917 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_USER_PRIO; i++) {
1918 [ # # ]: 0 : if (dcb_rx_conf->dcb_tc[i] != dcb_tx_conf->dcb_tc[i]) {
1919 : 0 : hns3_err(hw, "dcb_tc[%d] = %u in rx direction, "
1920 : : "is not equal to one in tx direction.",
1921 : : i, dcb_rx_conf->dcb_tc[i]);
1922 : 0 : return -EINVAL;
1923 : : }
1924 : 0 : if (dcb_rx_conf->dcb_tc[i] > max_tc)
1925 : : max_tc = dcb_rx_conf->dcb_tc[i];
1926 : : }
1927 : :
1928 : 0 : num_tc = max_tc + 1;
1929 [ # # ]: 0 : if (num_tc > dcb_rx_conf->nb_tcs) {
1930 : 0 : hns3_err(hw, "max num_tc(%u) mapped > nb_tcs(%u)",
1931 : : num_tc, dcb_rx_conf->nb_tcs);
1932 : 0 : return -EINVAL;
1933 : : }
1934 : : }
1935 : :
1936 : : return 0;
1937 : : }
1938 : :
1939 : : static int
1940 : 0 : hns3_bind_ring_with_vector(struct hns3_hw *hw, uint16_t vector_id, bool en,
1941 : : enum hns3_ring_type queue_type, uint16_t queue_id)
1942 : : {
1943 : : struct hns3_cmd_desc desc;
1944 : : struct hns3_ctrl_vector_chain_cmd *req =
1945 : : (struct hns3_ctrl_vector_chain_cmd *)desc.data;
1946 : : enum hns3_opcode_type op;
1947 : : uint16_t tqp_type_and_id = 0;
1948 : : uint16_t type;
1949 : : uint16_t gl;
1950 : : int ret;
1951 : :
1952 [ # # ]: 0 : op = en ? HNS3_OPC_ADD_RING_TO_VECTOR : HNS3_OPC_DEL_RING_TO_VECTOR;
1953 : 0 : hns3_cmd_setup_basic_desc(&desc, op, false);
1954 : 0 : req->int_vector_id = hns3_get_field(vector_id, HNS3_TQP_INT_ID_L_M,
1955 : : HNS3_TQP_INT_ID_L_S);
1956 : 0 : req->int_vector_id_h = hns3_get_field(vector_id, HNS3_TQP_INT_ID_H_M,
1957 : : HNS3_TQP_INT_ID_H_S);
1958 : :
1959 [ # # ]: 0 : if (queue_type == HNS3_RING_TYPE_RX)
1960 : : gl = HNS3_RING_GL_RX;
1961 : : else
1962 : : gl = HNS3_RING_GL_TX;
1963 : :
1964 : 0 : type = queue_type;
1965 : :
1966 : 0 : hns3_set_field(tqp_type_and_id, HNS3_INT_TYPE_M, HNS3_INT_TYPE_S,
1967 : : type);
1968 : 0 : hns3_set_field(tqp_type_and_id, HNS3_TQP_ID_M, HNS3_TQP_ID_S, queue_id);
1969 : 0 : hns3_set_field(tqp_type_and_id, HNS3_INT_GL_IDX_M, HNS3_INT_GL_IDX_S,
1970 : : gl);
1971 : 0 : req->tqp_type_and_id[0] = rte_cpu_to_le_16(tqp_type_and_id);
1972 : 0 : req->int_cause_num = 1;
1973 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
1974 [ # # ]: 0 : if (ret) {
1975 [ # # ]: 0 : hns3_err(hw, "%s TQP %u fail, vector_id = %u, ret = %d.",
1976 : : en ? "Map" : "Unmap", queue_id, vector_id, ret);
1977 : 0 : return ret;
1978 : : }
1979 : :
1980 : : return 0;
1981 : : }
1982 : :
1983 : : static int
1984 : 0 : hns3_setup_dcb(struct rte_eth_dev *dev)
1985 : : {
1986 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
1987 : : struct hns3_hw *hw = &hns->hw;
1988 : : int ret;
1989 : :
1990 [ # # ]: 0 : if (!hns3_dev_get_support(hw, DCB)) {
1991 : 0 : hns3_err(hw, "this port does not support dcb configurations.");
1992 : 0 : return -EOPNOTSUPP;
1993 : : }
1994 : :
1995 [ # # ]: 0 : if (hw->current_fc_status == HNS3_FC_STATUS_MAC_PAUSE) {
1996 : 0 : hns3_err(hw, "MAC pause enabled, cannot config dcb info.");
1997 : 0 : return -EOPNOTSUPP;
1998 : : }
1999 : :
2000 : 0 : ret = hns3_dcb_configure(hns);
2001 [ # # ]: 0 : if (ret)
2002 : 0 : hns3_err(hw, "failed to config dcb: %d", ret);
2003 : :
2004 : : return ret;
2005 : : }
2006 : :
2007 : : static int
2008 : 0 : hns3_check_link_speed(struct hns3_hw *hw, uint32_t link_speeds)
2009 : : {
2010 : : int ret;
2011 : :
2012 : : /*
2013 : : * Some hardware doesn't support auto-negotiation, but users may not
2014 : : * configure link_speeds (default 0), which means auto-negotiation.
2015 : : * In this case, it should return success.
2016 : : */
2017 [ # # ]: 0 : if (link_speeds == RTE_ETH_LINK_SPEED_AUTONEG &&
2018 [ # # ]: 0 : hw->mac.support_autoneg == 0)
2019 : : return 0;
2020 : :
2021 [ # # ]: 0 : if (link_speeds != RTE_ETH_LINK_SPEED_AUTONEG) {
2022 : 0 : ret = hns3_check_port_speed(hw, link_speeds);
2023 [ # # ]: 0 : if (ret)
2024 : 0 : return ret;
2025 : : }
2026 : :
2027 : : return 0;
2028 : : }
2029 : :
2030 : : static int
2031 : 0 : hns3_check_dev_conf(struct rte_eth_dev *dev)
2032 : : {
2033 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2034 : : struct rte_eth_conf *conf = &dev->data->dev_conf;
2035 : : int ret;
2036 : :
2037 : 0 : ret = hns3_check_mq_mode(dev);
2038 [ # # ]: 0 : if (ret)
2039 : : return ret;
2040 : :
2041 : 0 : return hns3_check_link_speed(hw, conf->link_speeds);
2042 : : }
2043 : :
2044 : : static int
2045 : 0 : hns3_dev_configure(struct rte_eth_dev *dev)
2046 : : {
2047 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
2048 : 0 : struct rte_eth_conf *conf = &dev->data->dev_conf;
2049 : 0 : enum rte_eth_rx_mq_mode mq_mode = conf->rxmode.mq_mode;
2050 : 0 : struct hns3_hw *hw = &hns->hw;
2051 : 0 : uint16_t nb_rx_q = dev->data->nb_rx_queues;
2052 : 0 : uint16_t nb_tx_q = dev->data->nb_tx_queues;
2053 : : struct rte_eth_rss_conf rss_conf;
2054 : : bool gro_en;
2055 : : int ret;
2056 : :
2057 : 0 : hw->cfg_max_queues = RTE_MAX(nb_rx_q, nb_tx_q);
2058 : :
2059 : : /*
2060 : : * Some versions of hardware network engine does not support
2061 : : * individually enable/disable/reset the Tx or Rx queue. These devices
2062 : : * must enable/disable/reset Tx and Rx queues at the same time. When the
2063 : : * numbers of Tx queues allocated by upper applications are not equal to
2064 : : * the numbers of Rx queues, driver needs to setup fake Tx or Rx queues
2065 : : * to adjust numbers of Tx/Rx queues. otherwise, network engine can not
2066 : : * work as usual. But these fake queues are imperceptible, and can not
2067 : : * be used by upper applications.
2068 : : */
2069 : 0 : ret = hns3_set_fake_rx_or_tx_queues(dev, nb_rx_q, nb_tx_q);
2070 [ # # ]: 0 : if (ret) {
2071 : 0 : hns3_err(hw, "fail to set Rx/Tx fake queues, ret = %d.", ret);
2072 : 0 : hw->cfg_max_queues = 0;
2073 : 0 : return ret;
2074 : : }
2075 : :
2076 : 0 : hw->adapter_state = HNS3_NIC_CONFIGURING;
2077 : 0 : ret = hns3_check_dev_conf(dev);
2078 [ # # ]: 0 : if (ret)
2079 : 0 : goto cfg_err;
2080 : :
2081 [ # # ]: 0 : if ((uint32_t)mq_mode & RTE_ETH_MQ_RX_DCB_FLAG) {
2082 : 0 : ret = hns3_setup_dcb(dev);
2083 [ # # ]: 0 : if (ret)
2084 : 0 : goto cfg_err;
2085 : : }
2086 : :
2087 [ # # ]: 0 : if ((uint32_t)mq_mode & RTE_ETH_MQ_RX_RSS_FLAG) {
2088 : 0 : conf->rxmode.offloads |= RTE_ETH_RX_OFFLOAD_RSS_HASH;
2089 : 0 : rss_conf = conf->rx_adv_conf.rss_conf;
2090 : 0 : ret = hns3_dev_rss_hash_update(dev, &rss_conf);
2091 [ # # ]: 0 : if (ret)
2092 : 0 : goto cfg_err;
2093 : : }
2094 : :
2095 : 0 : ret = hns3_dev_mtu_set(dev, conf->rxmode.mtu);
2096 [ # # ]: 0 : if (ret != 0)
2097 : 0 : goto cfg_err;
2098 : :
2099 : 0 : ret = hns3_mbuf_dyn_rx_timestamp_register(dev, conf);
2100 [ # # ]: 0 : if (ret)
2101 : 0 : goto cfg_err;
2102 : :
2103 : 0 : ret = hns3_dev_configure_vlan(dev);
2104 [ # # ]: 0 : if (ret)
2105 : 0 : goto cfg_err;
2106 : :
2107 : : /* config hardware GRO */
2108 : 0 : gro_en = conf->rxmode.offloads & RTE_ETH_RX_OFFLOAD_TCP_LRO ? true : false;
2109 : 0 : ret = hns3_config_gro(hw, gro_en);
2110 [ # # ]: 0 : if (ret)
2111 : 0 : goto cfg_err;
2112 : :
2113 : 0 : hns3_init_rx_ptype_tble(dev);
2114 : 0 : hw->adapter_state = HNS3_NIC_CONFIGURED;
2115 : :
2116 : 0 : return 0;
2117 : :
2118 : 0 : cfg_err:
2119 : 0 : hw->cfg_max_queues = 0;
2120 : 0 : (void)hns3_set_fake_rx_or_tx_queues(dev, 0, 0);
2121 : 0 : hw->adapter_state = HNS3_NIC_INITIALIZED;
2122 : :
2123 : 0 : return ret;
2124 : : }
2125 : :
2126 : : static int
2127 : 0 : hns3_set_mac_mtu(struct hns3_hw *hw, uint16_t new_mps)
2128 : : {
2129 : : struct hns3_config_max_frm_size_cmd *req;
2130 : : struct hns3_cmd_desc desc;
2131 : :
2132 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_MAX_FRM_SIZE, false);
2133 : :
2134 : : req = (struct hns3_config_max_frm_size_cmd *)desc.data;
2135 : 0 : req->max_frm_size = rte_cpu_to_le_16(new_mps);
2136 : 0 : req->min_frm_size = RTE_ETHER_MIN_LEN;
2137 : :
2138 : 0 : return hns3_cmd_send(hw, &desc, 1);
2139 : : }
2140 : :
2141 : : static int
2142 : 0 : hns3_config_mtu(struct hns3_hw *hw, uint16_t mps)
2143 : : {
2144 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2145 : : int err;
2146 : : int ret;
2147 : :
2148 : 0 : ret = hns3_set_mac_mtu(hw, mps);
2149 [ # # ]: 0 : if (ret) {
2150 : 0 : hns3_err(hw, "failed to set mtu, ret = %d", ret);
2151 : 0 : return ret;
2152 : : }
2153 : :
2154 : 0 : ret = hns3_buffer_alloc(hw);
2155 [ # # ]: 0 : if (ret) {
2156 : 0 : hns3_err(hw, "failed to allocate buffer, ret = %d", ret);
2157 : 0 : goto rollback;
2158 : : }
2159 : :
2160 : 0 : hns->pf.mps = mps;
2161 : :
2162 : 0 : return 0;
2163 : :
2164 : : rollback:
2165 : 0 : err = hns3_set_mac_mtu(hw, hns->pf.mps);
2166 [ # # ]: 0 : if (err)
2167 : 0 : hns3_err(hw, "fail to rollback MTU, err = %d", err);
2168 : :
2169 : : return ret;
2170 : : }
2171 : :
2172 : : static int
2173 : 0 : hns3_dev_mtu_set(struct rte_eth_dev *dev, uint16_t mtu)
2174 : : {
2175 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
2176 : 0 : uint32_t frame_size = mtu + HNS3_ETH_OVERHEAD;
2177 : 0 : struct hns3_hw *hw = &hns->hw;
2178 : : int ret;
2179 : :
2180 [ # # ]: 0 : if (dev->data->dev_started) {
2181 : 0 : hns3_err(hw, "Failed to set mtu, port %u must be stopped "
2182 : : "before configuration", dev->data->port_id);
2183 : 0 : return -EBUSY;
2184 : : }
2185 : :
2186 : 0 : rte_spinlock_lock(&hw->lock);
2187 : 0 : frame_size = RTE_MAX(frame_size, HNS3_DEFAULT_FRAME_LEN);
2188 : :
2189 : : /*
2190 : : * Maximum value of frame_size is HNS3_MAX_FRAME_LEN, so it can safely
2191 : : * assign to "uint16_t" type variable.
2192 : : */
2193 : 0 : ret = hns3_config_mtu(hw, (uint16_t)frame_size);
2194 [ # # ]: 0 : if (ret) {
2195 : : rte_spinlock_unlock(&hw->lock);
2196 : 0 : hns3_err(hw, "Failed to set mtu, port %u mtu %u: %d",
2197 : : dev->data->port_id, mtu, ret);
2198 : 0 : return ret;
2199 : : }
2200 : :
2201 : : rte_spinlock_unlock(&hw->lock);
2202 : :
2203 : 0 : return 0;
2204 : : }
2205 : :
2206 : : static uint32_t
2207 : 0 : hns3_get_copper_port_speed_capa(uint32_t supported_speed)
2208 : : {
2209 : : uint32_t speed_capa = 0;
2210 : :
2211 [ # # ]: 0 : if (supported_speed & HNS3_PHY_LINK_SPEED_10M_HD_BIT)
2212 : : speed_capa |= RTE_ETH_LINK_SPEED_10M_HD;
2213 [ # # ]: 0 : if (supported_speed & HNS3_PHY_LINK_SPEED_10M_BIT)
2214 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_10M;
2215 [ # # ]: 0 : if (supported_speed & HNS3_PHY_LINK_SPEED_100M_HD_BIT)
2216 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_100M_HD;
2217 [ # # ]: 0 : if (supported_speed & HNS3_PHY_LINK_SPEED_100M_BIT)
2218 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_100M;
2219 [ # # ]: 0 : if (supported_speed & HNS3_PHY_LINK_SPEED_1000M_BIT)
2220 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_1G;
2221 : :
2222 : 0 : return speed_capa;
2223 : : }
2224 : :
2225 : : static uint32_t
2226 : 0 : hns3_get_firber_port_speed_capa(uint32_t supported_speed)
2227 : : {
2228 : : uint32_t speed_capa = 0;
2229 : :
2230 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_1G_BIT)
2231 : : speed_capa |= RTE_ETH_LINK_SPEED_1G;
2232 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_10G_BIT)
2233 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_10G;
2234 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_25G_BIT)
2235 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_25G;
2236 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_40G_BIT)
2237 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_40G;
2238 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_50G_BIT)
2239 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_50G;
2240 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_100G_BIT)
2241 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_100G;
2242 [ # # ]: 0 : if (supported_speed & HNS3_FIBER_LINK_SPEED_200G_BIT)
2243 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_200G;
2244 : :
2245 : 0 : return speed_capa;
2246 : : }
2247 : :
2248 : : uint32_t
2249 : 0 : hns3_get_speed_capa(struct hns3_hw *hw)
2250 : : {
2251 : : struct hns3_mac *mac = &hw->mac;
2252 : : uint32_t speed_capa;
2253 : :
2254 [ # # ]: 0 : if (mac->media_type == HNS3_MEDIA_TYPE_COPPER)
2255 : : speed_capa =
2256 : 0 : hns3_get_copper_port_speed_capa(mac->supported_speed);
2257 : : else
2258 : : speed_capa =
2259 : 0 : hns3_get_firber_port_speed_capa(mac->supported_speed);
2260 : :
2261 [ # # ]: 0 : if (mac->support_autoneg == 0)
2262 : 0 : speed_capa |= RTE_ETH_LINK_SPEED_FIXED;
2263 : :
2264 : 0 : return speed_capa;
2265 : : }
2266 : :
2267 : : static int
2268 : 0 : hns3_update_port_link_info(struct rte_eth_dev *eth_dev)
2269 : : {
2270 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
2271 : : int ret;
2272 : :
2273 : 0 : (void)hns3_update_link_status(hw);
2274 : :
2275 : 0 : ret = hns3_update_link_info(eth_dev);
2276 [ # # ]: 0 : if (ret)
2277 : 0 : hw->mac.link_status = RTE_ETH_LINK_DOWN;
2278 : :
2279 : 0 : return ret;
2280 : : }
2281 : :
2282 : : static void
2283 : 0 : hns3_setup_linkstatus(struct rte_eth_dev *eth_dev,
2284 : : struct rte_eth_link *new_link)
2285 : : {
2286 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
2287 : : struct hns3_mac *mac = &hw->mac;
2288 : :
2289 [ # # ]: 0 : switch (mac->link_speed) {
2290 : 0 : case RTE_ETH_SPEED_NUM_10M:
2291 : : case RTE_ETH_SPEED_NUM_100M:
2292 : : case RTE_ETH_SPEED_NUM_1G:
2293 : : case RTE_ETH_SPEED_NUM_10G:
2294 : : case RTE_ETH_SPEED_NUM_25G:
2295 : : case RTE_ETH_SPEED_NUM_40G:
2296 : : case RTE_ETH_SPEED_NUM_50G:
2297 : : case RTE_ETH_SPEED_NUM_100G:
2298 : : case RTE_ETH_SPEED_NUM_200G:
2299 [ # # ]: 0 : if (mac->link_status)
2300 : 0 : new_link->link_speed = mac->link_speed;
2301 : : break;
2302 : 0 : default:
2303 [ # # ]: 0 : if (mac->link_status)
2304 : 0 : new_link->link_speed = RTE_ETH_SPEED_NUM_UNKNOWN;
2305 : : break;
2306 : : }
2307 : :
2308 [ # # ]: 0 : if (!mac->link_status)
2309 : 0 : new_link->link_speed = RTE_ETH_SPEED_NUM_NONE;
2310 : :
2311 : 0 : new_link->link_duplex = mac->link_duplex;
2312 : 0 : new_link->link_status = mac->link_status ? RTE_ETH_LINK_UP : RTE_ETH_LINK_DOWN;
2313 : 0 : new_link->link_autoneg = mac->link_autoneg;
2314 : 0 : }
2315 : :
2316 : : static int
2317 : 0 : hns3_dev_link_update(struct rte_eth_dev *eth_dev, int wait_to_complete)
2318 : : {
2319 : : #define HNS3_LINK_CHECK_INTERVAL 100 /* 100ms */
2320 : : #define HNS3_MAX_LINK_CHECK_TIMES 20 /* 2s (100 * 20ms) in total */
2321 : :
2322 [ # # ]: 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(eth_dev->data->dev_private);
2323 : : uint32_t retry_cnt = HNS3_MAX_LINK_CHECK_TIMES;
2324 : : struct hns3_mac *mac = &hw->mac;
2325 : : struct rte_eth_link new_link;
2326 : : int ret;
2327 : :
2328 : : memset(&new_link, 0, sizeof(new_link));
2329 : : /* When port is stopped, report link down. */
2330 [ # # ]: 0 : if (eth_dev->data->dev_started == 0) {
2331 : 0 : new_link.link_autoneg = mac->link_autoneg;
2332 : 0 : new_link.link_duplex = mac->link_duplex;
2333 : : new_link.link_speed = RTE_ETH_SPEED_NUM_NONE;
2334 : : new_link.link_status = RTE_ETH_LINK_DOWN;
2335 : 0 : goto out;
2336 : : }
2337 : :
2338 : : do {
2339 : 0 : ret = hns3_update_port_link_info(eth_dev);
2340 [ # # ]: 0 : if (ret) {
2341 : 0 : hns3_err(hw, "failed to get port link info, ret = %d.",
2342 : : ret);
2343 : 0 : break;
2344 : : }
2345 : :
2346 [ # # # # ]: 0 : if (!wait_to_complete || mac->link_status == RTE_ETH_LINK_UP)
2347 : : break;
2348 : :
2349 : : rte_delay_ms(HNS3_LINK_CHECK_INTERVAL);
2350 [ # # ]: 0 : } while (retry_cnt--);
2351 : :
2352 : 0 : hns3_setup_linkstatus(eth_dev, &new_link);
2353 : :
2354 [ # # ]: 0 : out:
2355 : 0 : return rte_eth_linkstatus_set(eth_dev, &new_link);
2356 : : }
2357 : :
2358 : : static int
2359 : 0 : hns3_dev_set_link_up(struct rte_eth_dev *dev)
2360 : : {
2361 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2362 : : int ret;
2363 : :
2364 : : /*
2365 : : * The "tx_pkt_burst" will be restored. But the secondary process does
2366 : : * not support the mechanism for notifying the primary process.
2367 : : */
2368 [ # # ]: 0 : if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2369 : 0 : hns3_err(hw, "secondary process does not support to set link up.");
2370 : 0 : return -ENOTSUP;
2371 : : }
2372 : :
2373 : : /*
2374 : : * If device isn't started Rx/Tx function is still disabled, setting
2375 : : * link up is not allowed. But it is probably better to return success
2376 : : * to reduce the impact on the upper layer.
2377 : : */
2378 [ # # ]: 0 : if (hw->adapter_state != HNS3_NIC_STARTED) {
2379 : 0 : hns3_info(hw, "device isn't started, can't set link up.");
2380 : 0 : return 0;
2381 : : }
2382 : :
2383 [ # # ]: 0 : if (!hw->set_link_down)
2384 : : return 0;
2385 : :
2386 : 0 : rte_spinlock_lock(&hw->lock);
2387 : 0 : ret = hns3_cfg_mac_mode(hw, true);
2388 [ # # ]: 0 : if (ret) {
2389 : : rte_spinlock_unlock(&hw->lock);
2390 : 0 : hns3_err(hw, "failed to set link up, ret = %d", ret);
2391 : 0 : return ret;
2392 : : }
2393 : :
2394 : 0 : hw->set_link_down = false;
2395 : 0 : hns3_start_tx_datapath(dev);
2396 : : rte_spinlock_unlock(&hw->lock);
2397 : :
2398 : 0 : return 0;
2399 : : }
2400 : :
2401 : : static int
2402 : 0 : hns3_dev_set_link_down(struct rte_eth_dev *dev)
2403 : : {
2404 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
2405 : : int ret;
2406 : :
2407 : : /*
2408 : : * The "tx_pkt_burst" will be set to dummy function. But the secondary
2409 : : * process does not support the mechanism for notifying the primary
2410 : : * process.
2411 : : */
2412 [ # # ]: 0 : if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
2413 : 0 : hns3_err(hw, "secondary process does not support to set link down.");
2414 : 0 : return -ENOTSUP;
2415 : : }
2416 : :
2417 : : /*
2418 : : * If device isn't started or the API has been called, link status is
2419 : : * down, return success.
2420 : : */
2421 [ # # # # ]: 0 : if (hw->adapter_state != HNS3_NIC_STARTED || hw->set_link_down)
2422 : : return 0;
2423 : :
2424 : 0 : rte_spinlock_lock(&hw->lock);
2425 : 0 : hns3_stop_tx_datapath(dev);
2426 : 0 : ret = hns3_cfg_mac_mode(hw, false);
2427 [ # # ]: 0 : if (ret) {
2428 : 0 : hns3_start_tx_datapath(dev);
2429 : : rte_spinlock_unlock(&hw->lock);
2430 : 0 : hns3_err(hw, "failed to set link down, ret = %d", ret);
2431 : 0 : return ret;
2432 : : }
2433 : :
2434 : 0 : hw->set_link_down = true;
2435 : : rte_spinlock_unlock(&hw->lock);
2436 : :
2437 : 0 : return 0;
2438 : : }
2439 : :
2440 : : static int
2441 : : hns3_parse_func_status(struct hns3_hw *hw, struct hns3_func_status_cmd *status)
2442 : : {
2443 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2444 : : struct hns3_pf *pf = &hns->pf;
2445 : :
2446 [ # # ]: 0 : if (!(status->pf_state & HNS3_PF_STATE_DONE))
2447 : : return -EINVAL;
2448 : :
2449 : 0 : pf->is_main_pf = (status->pf_state & HNS3_PF_STATE_MAIN) ? true : false;
2450 : :
2451 : 0 : return 0;
2452 : : }
2453 : :
2454 : : static int
2455 : 0 : hns3_query_function_status(struct hns3_hw *hw)
2456 : : {
2457 : : #define HNS3_QUERY_MAX_CNT 10
2458 : : #define HNS3_QUERY_SLEEP_MSCOEND 1
2459 : : struct hns3_func_status_cmd *req;
2460 : : struct hns3_cmd_desc desc;
2461 : : int timeout = 0;
2462 : : int ret;
2463 : :
2464 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_FUNC_STATUS, true);
2465 : : req = (struct hns3_func_status_cmd *)desc.data;
2466 : :
2467 : : do {
2468 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
2469 [ # # ]: 0 : if (ret) {
2470 : 0 : PMD_INIT_LOG(ERR, "query function status failed %d",
2471 : : ret);
2472 : 0 : return ret;
2473 : : }
2474 : :
2475 : : /* Check pf reset is done */
2476 [ # # ]: 0 : if (req->pf_state)
2477 : : break;
2478 : :
2479 : : rte_delay_ms(HNS3_QUERY_SLEEP_MSCOEND);
2480 [ # # ]: 0 : } while (timeout++ < HNS3_QUERY_MAX_CNT);
2481 : :
2482 : : return hns3_parse_func_status(hw, req);
2483 : : }
2484 : :
2485 : : static int
2486 : : hns3_get_pf_max_tqp_num(struct hns3_hw *hw)
2487 : : {
2488 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2489 : : struct hns3_pf *pf = &hns->pf;
2490 : :
2491 : 0 : if (pf->tqp_config_mode == HNS3_FLEX_MAX_TQP_NUM_MODE) {
2492 : : /*
2493 : : * The total_tqps_num obtained from firmware is maximum tqp
2494 : : * numbers of this port, which should be used for PF and VFs.
2495 : : * There is no need for pf to have so many tqp numbers in
2496 : : * most cases. RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF,
2497 : : * coming from config file, is assigned to maximum queue number
2498 : : * for the PF of this port by user. So users can modify the
2499 : : * maximum queue number of PF according to their own application
2500 : : * scenarios, which is more flexible to use. In addition, many
2501 : : * memories can be saved due to allocating queue statistics
2502 : : * room according to the actual number of queues required. The
2503 : : * maximum queue number of PF for network engine with
2504 : : * revision_id greater than 0x30 is assigned by config file.
2505 : : */
2506 : : if (RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF <= 0) {
2507 : : hns3_err(hw, "RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF(%d) "
2508 : : "must be greater than 0.",
2509 : : RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF);
2510 : : return -EINVAL;
2511 : : }
2512 : :
2513 : 0 : hw->tqps_num = RTE_MIN(RTE_LIBRTE_HNS3_MAX_TQP_NUM_PER_PF,
2514 : : hw->total_tqps_num);
2515 : : } else {
2516 : : /*
2517 : : * Due to the limitation on the number of PF interrupts
2518 : : * available, the maximum queue number assigned to PF on
2519 : : * the network engine with revision_id 0x21 is 64.
2520 : : */
2521 : 0 : hw->tqps_num = RTE_MIN(hw->total_tqps_num,
2522 : : HNS3_MAX_TQP_NUM_HIP08_PF);
2523 : : }
2524 : :
2525 : : return 0;
2526 : : }
2527 : :
2528 : : static int
2529 : 0 : hns3_query_pf_resource(struct hns3_hw *hw)
2530 : : {
2531 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2532 : : struct hns3_pf *pf = &hns->pf;
2533 : : struct hns3_pf_res_cmd *req;
2534 : : struct hns3_cmd_desc desc;
2535 : : int ret;
2536 : :
2537 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_PF_RSRC, true);
2538 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
2539 [ # # ]: 0 : if (ret) {
2540 : 0 : PMD_INIT_LOG(ERR, "query pf resource failed %d", ret);
2541 : 0 : return ret;
2542 : : }
2543 : :
2544 : : req = (struct hns3_pf_res_cmd *)desc.data;
2545 : 0 : hw->total_tqps_num = rte_le_to_cpu_16(req->tqp_num) +
2546 [ # # ]: 0 : rte_le_to_cpu_16(req->ext_tqp_num);
2547 : : ret = hns3_get_pf_max_tqp_num(hw);
2548 : : if (ret)
2549 : : return ret;
2550 : :
2551 : 0 : pf->pkt_buf_size = rte_le_to_cpu_16(req->buf_size) << HNS3_BUF_UNIT_S;
2552 : 0 : pf->func_num = rte_le_to_cpu_16(req->pf_own_fun_number);
2553 : :
2554 [ # # ]: 0 : if (req->tx_buf_size)
2555 : 0 : pf->tx_buf_size =
2556 : 0 : rte_le_to_cpu_16(req->tx_buf_size) << HNS3_BUF_UNIT_S;
2557 : : else
2558 : 0 : pf->tx_buf_size = HNS3_DEFAULT_TX_BUF;
2559 : :
2560 : 0 : pf->tx_buf_size = roundup(pf->tx_buf_size, HNS3_BUF_SIZE_UNIT);
2561 : :
2562 [ # # ]: 0 : if (req->dv_buf_size)
2563 : 0 : pf->dv_buf_size =
2564 : 0 : rte_le_to_cpu_16(req->dv_buf_size) << HNS3_BUF_UNIT_S;
2565 : : else
2566 : 0 : pf->dv_buf_size = HNS3_DEFAULT_DV;
2567 : :
2568 : 0 : pf->dv_buf_size = roundup(pf->dv_buf_size, HNS3_BUF_SIZE_UNIT);
2569 : :
2570 : 0 : hw->num_msi =
2571 : 0 : hns3_get_field(rte_le_to_cpu_16(req->nic_pf_intr_vector_number),
2572 : : HNS3_PF_VEC_NUM_M, HNS3_PF_VEC_NUM_S);
2573 : :
2574 : 0 : return 0;
2575 : : }
2576 : :
2577 : : static void
2578 : 0 : hns3_parse_cfg(struct hns3_cfg *cfg, struct hns3_cmd_desc *desc)
2579 : : {
2580 : : struct hns3_cfg_param_cmd *req;
2581 : : uint64_t mac_addr_tmp_high;
2582 : : uint8_t ext_rss_size_max;
2583 : : uint64_t mac_addr_tmp;
2584 : : uint32_t i;
2585 : :
2586 : : req = (struct hns3_cfg_param_cmd *)desc[0].data;
2587 : :
2588 : : /* get the configuration */
2589 : 0 : cfg->tc_num = hns3_get_field(rte_le_to_cpu_32(req->param[0]),
2590 : : HNS3_CFG_TC_NUM_M, HNS3_CFG_TC_NUM_S);
2591 : :
2592 : 0 : cfg->phy_addr = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
2593 : : HNS3_CFG_PHY_ADDR_M,
2594 : : HNS3_CFG_PHY_ADDR_S);
2595 : 0 : cfg->media_type = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
2596 : : HNS3_CFG_MEDIA_TP_M,
2597 : : HNS3_CFG_MEDIA_TP_S);
2598 : : /* get mac address */
2599 : 0 : mac_addr_tmp = rte_le_to_cpu_32(req->param[2]);
2600 : 0 : mac_addr_tmp_high = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
2601 : : HNS3_CFG_MAC_ADDR_H_M,
2602 : : HNS3_CFG_MAC_ADDR_H_S);
2603 : :
2604 : 0 : mac_addr_tmp |= (mac_addr_tmp_high << 31) << 1;
2605 : :
2606 : 0 : cfg->default_speed = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
2607 : : HNS3_CFG_DEFAULT_SPEED_M,
2608 : : HNS3_CFG_DEFAULT_SPEED_S);
2609 : 0 : cfg->rss_size_max = hns3_get_field(rte_le_to_cpu_32(req->param[3]),
2610 : : HNS3_CFG_RSS_SIZE_M,
2611 : : HNS3_CFG_RSS_SIZE_S);
2612 : :
2613 [ # # ]: 0 : for (i = 0; i < RTE_ETHER_ADDR_LEN; i++)
2614 : 0 : cfg->mac_addr[i] = (mac_addr_tmp >> (8 * i)) & 0xff;
2615 : :
2616 : : req = (struct hns3_cfg_param_cmd *)desc[1].data;
2617 : 0 : cfg->numa_node_map = rte_le_to_cpu_32(req->param[0]);
2618 : :
2619 : 0 : cfg->speed_ability = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
2620 : : HNS3_CFG_SPEED_ABILITY_M,
2621 : : HNS3_CFG_SPEED_ABILITY_S);
2622 : 0 : cfg->umv_space = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
2623 : : HNS3_CFG_UMV_TBL_SPACE_M,
2624 : : HNS3_CFG_UMV_TBL_SPACE_S);
2625 [ # # ]: 0 : if (!cfg->umv_space)
2626 : 0 : cfg->umv_space = HNS3_DEFAULT_UMV_SPACE_PER_PF;
2627 : :
2628 : 0 : ext_rss_size_max = hns3_get_field(rte_le_to_cpu_32(req->param[2]),
2629 : : HNS3_CFG_EXT_RSS_SIZE_M,
2630 : : HNS3_CFG_EXT_RSS_SIZE_S);
2631 : : /*
2632 : : * Field ext_rss_size_max obtained from firmware will be more flexible
2633 : : * for future changes and expansions, which is an exponent of 2, instead
2634 : : * of reading out directly. If this field is not zero, hns3 PF PMD
2635 : : * uses it as rss_size_max under one TC. Device, whose revision
2636 : : * id is greater than or equal to PCI_REVISION_ID_HIP09_A, obtains the
2637 : : * maximum number of queues supported under a TC through this field.
2638 : : */
2639 [ # # ]: 0 : if (ext_rss_size_max)
2640 : 0 : cfg->rss_size_max = 1U << ext_rss_size_max;
2641 : 0 : }
2642 : :
2643 : : /* hns3_get_board_cfg: query the static parameter from NCL_config file in flash
2644 : : * @hw: pointer to struct hns3_hw
2645 : : * @hcfg: the config structure to be getted
2646 : : */
2647 : : static int
2648 : 0 : hns3_get_board_cfg(struct hns3_hw *hw, struct hns3_cfg *hcfg)
2649 : : {
2650 : : struct hns3_cmd_desc desc[HNS3_PF_CFG_DESC_NUM];
2651 : : struct hns3_cfg_param_cmd *req;
2652 : : uint32_t offset;
2653 : : uint32_t i;
2654 : : int ret;
2655 : :
2656 [ # # ]: 0 : for (i = 0; i < HNS3_PF_CFG_DESC_NUM; i++) {
2657 : : offset = 0;
2658 : 0 : req = (struct hns3_cfg_param_cmd *)desc[i].data;
2659 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_GET_CFG_PARAM,
2660 : : true);
2661 : 0 : hns3_set_field(offset, HNS3_CFG_OFFSET_M, HNS3_CFG_OFFSET_S,
2662 : : i * HNS3_CFG_RD_LEN_BYTES);
2663 : : /* Len should be divided by 4 when send to hardware */
2664 : 0 : hns3_set_field(offset, HNS3_CFG_RD_LEN_M, HNS3_CFG_RD_LEN_S,
2665 : : HNS3_CFG_RD_LEN_BYTES / HNS3_CFG_RD_LEN_UNIT);
2666 : 0 : req->offset = rte_cpu_to_le_32(offset);
2667 : : }
2668 : :
2669 : 0 : ret = hns3_cmd_send(hw, desc, HNS3_PF_CFG_DESC_NUM);
2670 [ # # ]: 0 : if (ret) {
2671 : 0 : PMD_INIT_LOG(ERR, "get config failed %d.", ret);
2672 : 0 : return ret;
2673 : : }
2674 : :
2675 : 0 : hns3_parse_cfg(hcfg, desc);
2676 : :
2677 : 0 : return 0;
2678 : : }
2679 : :
2680 : : static int
2681 : 0 : hns3_parse_speed(int speed_cmd, uint32_t *speed)
2682 : : {
2683 [ # # # # : 0 : switch (speed_cmd) {
# # # # #
# ]
2684 : 0 : case HNS3_CFG_SPEED_10M:
2685 : 0 : *speed = RTE_ETH_SPEED_NUM_10M;
2686 : 0 : break;
2687 : 0 : case HNS3_CFG_SPEED_100M:
2688 : 0 : *speed = RTE_ETH_SPEED_NUM_100M;
2689 : 0 : break;
2690 : 0 : case HNS3_CFG_SPEED_1G:
2691 : 0 : *speed = RTE_ETH_SPEED_NUM_1G;
2692 : 0 : break;
2693 : 0 : case HNS3_CFG_SPEED_10G:
2694 : 0 : *speed = RTE_ETH_SPEED_NUM_10G;
2695 : 0 : break;
2696 : 0 : case HNS3_CFG_SPEED_25G:
2697 : 0 : *speed = RTE_ETH_SPEED_NUM_25G;
2698 : 0 : break;
2699 : 0 : case HNS3_CFG_SPEED_40G:
2700 : 0 : *speed = RTE_ETH_SPEED_NUM_40G;
2701 : 0 : break;
2702 : 0 : case HNS3_CFG_SPEED_50G:
2703 : 0 : *speed = RTE_ETH_SPEED_NUM_50G;
2704 : 0 : break;
2705 : 0 : case HNS3_CFG_SPEED_100G:
2706 : 0 : *speed = RTE_ETH_SPEED_NUM_100G;
2707 : 0 : break;
2708 : 0 : case HNS3_CFG_SPEED_200G:
2709 : 0 : *speed = RTE_ETH_SPEED_NUM_200G;
2710 : 0 : break;
2711 : : default:
2712 : : return -EINVAL;
2713 : : }
2714 : :
2715 : : return 0;
2716 : : }
2717 : :
2718 : : static int
2719 : 0 : hns3_get_capability(struct hns3_hw *hw)
2720 : : {
2721 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2722 : : struct hns3_pf *pf = &hns->pf;
2723 : : int ret;
2724 : :
2725 : 0 : ret = hns3_query_mac_stats_reg_num(hw);
2726 [ # # ]: 0 : if (ret)
2727 : : return ret;
2728 : :
2729 [ # # ]: 0 : if (hw->revision < PCI_REVISION_ID_HIP09_A) {
2730 : 0 : hns3_set_default_dev_specifications(hw);
2731 : 0 : hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_RSV_ONE;
2732 : 0 : hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_2US;
2733 : 0 : hw->tso_mode = HNS3_TSO_SW_CAL_PSEUDO_H_CSUM;
2734 : 0 : hw->vlan_mode = HNS3_SW_SHIFT_AND_DISCARD_MODE;
2735 : 0 : hw->drop_stats_mode = HNS3_PKTS_DROP_STATS_MODE1;
2736 : 0 : hw->min_tx_pkt_len = HNS3_HIP08_MIN_TX_PKT_LEN;
2737 : 0 : pf->tqp_config_mode = HNS3_FIXED_MAX_TQP_NUM_MODE;
2738 : 0 : hw->rss_info.ipv6_sctp_offload_supported = false;
2739 : 0 : hw->udp_cksum_mode = HNS3_SPECIAL_PORT_SW_CKSUM_MODE;
2740 : 0 : pf->support_multi_tc_pause = false;
2741 : 0 : hw->rx_dma_addr_align = HNS3_RX_DMA_ADDR_ALIGN_64;
2742 : 0 : return 0;
2743 : : }
2744 : :
2745 : 0 : ret = hns3_query_dev_specifications(hw);
2746 [ # # ]: 0 : if (ret) {
2747 : 0 : PMD_INIT_LOG(ERR,
2748 : : "failed to query dev specifications, ret = %d",
2749 : : ret);
2750 : 0 : return ret;
2751 : : }
2752 : :
2753 : 0 : hw->intr.mapping_mode = HNS3_INTR_MAPPING_VEC_ALL;
2754 : 0 : hw->intr.gl_unit = HNS3_INTR_COALESCE_GL_UINT_1US;
2755 : 0 : hw->tso_mode = HNS3_TSO_HW_CAL_PSEUDO_H_CSUM;
2756 : 0 : hw->vlan_mode = HNS3_HW_SHIFT_AND_DISCARD_MODE;
2757 : 0 : hw->drop_stats_mode = HNS3_PKTS_DROP_STATS_MODE2;
2758 : 0 : pf->tqp_config_mode = HNS3_FLEX_MAX_TQP_NUM_MODE;
2759 : 0 : hw->rss_info.ipv6_sctp_offload_supported = true;
2760 : 0 : hw->udp_cksum_mode = HNS3_SPECIAL_PORT_HW_CKSUM_MODE;
2761 : 0 : pf->support_multi_tc_pause = true;
2762 : 0 : hw->rx_dma_addr_align = HNS3_RX_DMA_ADDR_ALIGN_128;
2763 : :
2764 : 0 : return 0;
2765 : : }
2766 : :
2767 : : static int
2768 : 0 : hns3_check_media_type(struct hns3_hw *hw, uint8_t media_type)
2769 : : {
2770 : : int ret;
2771 : :
2772 [ # # # ]: 0 : switch (media_type) {
2773 : 0 : case HNS3_MEDIA_TYPE_COPPER:
2774 [ # # ]: 0 : if (!hns3_dev_get_support(hw, COPPER)) {
2775 : 0 : PMD_INIT_LOG(ERR,
2776 : : "Media type is copper, not supported.");
2777 : : ret = -EOPNOTSUPP;
2778 : : } else {
2779 : : ret = 0;
2780 : : }
2781 : : break;
2782 : : case HNS3_MEDIA_TYPE_FIBER:
2783 : : case HNS3_MEDIA_TYPE_BACKPLANE:
2784 : : ret = 0;
2785 : : break;
2786 : 0 : default:
2787 : 0 : PMD_INIT_LOG(ERR, "Unknown media type = %u!", media_type);
2788 : : ret = -EINVAL;
2789 : 0 : break;
2790 : : }
2791 : :
2792 : 0 : return ret;
2793 : : }
2794 : :
2795 : : static int
2796 : 0 : hns3_get_board_configuration(struct hns3_hw *hw)
2797 : : {
2798 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
2799 : : struct hns3_pf *pf = &hns->pf;
2800 : : struct hns3_cfg cfg;
2801 : : int ret;
2802 : :
2803 : : memset(&cfg, 0, sizeof(cfg));
2804 : 0 : ret = hns3_get_board_cfg(hw, &cfg);
2805 [ # # ]: 0 : if (ret) {
2806 : 0 : PMD_INIT_LOG(ERR, "get board config failed %d", ret);
2807 : 0 : return ret;
2808 : : }
2809 : :
2810 : 0 : ret = hns3_check_media_type(hw, cfg.media_type);
2811 [ # # ]: 0 : if (ret)
2812 : : return ret;
2813 : :
2814 : 0 : hw->mac.media_type = cfg.media_type;
2815 : 0 : hw->rss_size_max = cfg.rss_size_max;
2816 : 0 : memcpy(hw->mac.mac_addr, cfg.mac_addr, RTE_ETHER_ADDR_LEN);
2817 : 0 : hw->mac.phy_addr = cfg.phy_addr;
2818 : 0 : hw->dcb_info.num_pg = 1;
2819 : 0 : hw->dcb_info.hw_pfc_map = 0;
2820 : :
2821 : 0 : ret = hns3_parse_speed(cfg.default_speed, &hw->mac.link_speed);
2822 [ # # ]: 0 : if (ret) {
2823 : 0 : PMD_INIT_LOG(ERR, "Get wrong speed %u, ret = %d",
2824 : : cfg.default_speed, ret);
2825 : 0 : return ret;
2826 : : }
2827 : :
2828 : 0 : pf->tc_max = cfg.tc_num;
2829 [ # # ]: 0 : if (pf->tc_max > HNS3_MAX_TC_NUM || pf->tc_max < 1) {
2830 : 0 : PMD_INIT_LOG(WARNING,
2831 : : "Get TC num(%u) from flash, set TC num to 1",
2832 : : pf->tc_max);
2833 : 0 : pf->tc_max = 1;
2834 : : }
2835 : :
2836 : : /* Dev does not support DCB */
2837 [ # # ]: 0 : if (!hns3_dev_get_support(hw, DCB)) {
2838 : 0 : pf->tc_max = 1;
2839 : 0 : pf->pfc_max = 0;
2840 : : } else
2841 : 0 : pf->pfc_max = pf->tc_max;
2842 : :
2843 : 0 : hw->dcb_info.num_tc = 1;
2844 : 0 : hw->alloc_rss_size = RTE_MIN(hw->rss_size_max,
2845 : : hw->tqps_num / hw->dcb_info.num_tc);
2846 : 0 : hns3_set_bit(hw->hw_tc_map, 0, 1);
2847 : 0 : pf->tx_sch_mode = HNS3_FLAG_TC_BASE_SCH_MODE;
2848 : :
2849 : 0 : pf->wanted_umv_size = cfg.umv_space;
2850 : :
2851 : 0 : return ret;
2852 : : }
2853 : :
2854 : : static int
2855 : 0 : hns3_get_configuration(struct hns3_hw *hw)
2856 : : {
2857 : : int ret;
2858 : :
2859 : 0 : ret = hns3_query_function_status(hw);
2860 [ # # ]: 0 : if (ret) {
2861 : 0 : PMD_INIT_LOG(ERR, "Failed to query function status: %d.", ret);
2862 : 0 : return ret;
2863 : : }
2864 : :
2865 : : /* Get device capability */
2866 : 0 : ret = hns3_get_capability(hw);
2867 [ # # ]: 0 : if (ret) {
2868 : 0 : PMD_INIT_LOG(ERR, "failed to get device capability: %d.", ret);
2869 : 0 : return ret;
2870 : : }
2871 : :
2872 : : /* Get pf resource */
2873 : 0 : ret = hns3_query_pf_resource(hw);
2874 [ # # ]: 0 : if (ret) {
2875 : 0 : PMD_INIT_LOG(ERR, "Failed to query pf resource: %d", ret);
2876 : 0 : return ret;
2877 : : }
2878 : :
2879 : 0 : ret = hns3_get_board_configuration(hw);
2880 [ # # ]: 0 : if (ret) {
2881 : 0 : PMD_INIT_LOG(ERR, "failed to get board configuration: %d", ret);
2882 : 0 : return ret;
2883 : : }
2884 : :
2885 : 0 : ret = hns3_query_dev_fec_info(hw);
2886 [ # # ]: 0 : if (ret)
2887 : 0 : PMD_INIT_LOG(ERR,
2888 : : "failed to query FEC information, ret = %d", ret);
2889 : :
2890 : : return ret;
2891 : : }
2892 : :
2893 : : static int
2894 : 0 : hns3_map_tqps_to_func(struct hns3_hw *hw, uint16_t func_id, uint16_t tqp_pid,
2895 : : uint16_t tqp_vid, bool is_pf)
2896 : : {
2897 : : struct hns3_tqp_map_cmd *req;
2898 : : struct hns3_cmd_desc desc;
2899 : : int ret;
2900 : :
2901 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_SET_TQP_MAP, false);
2902 : :
2903 : : req = (struct hns3_tqp_map_cmd *)desc.data;
2904 : 0 : req->tqp_id = rte_cpu_to_le_16(tqp_pid);
2905 : 0 : req->tqp_vf = func_id;
2906 : 0 : req->tqp_flag = 1 << HNS3_TQP_MAP_EN_B;
2907 [ # # ]: 0 : if (!is_pf)
2908 : 0 : req->tqp_flag |= (1 << HNS3_TQP_MAP_TYPE_B);
2909 : 0 : req->tqp_vid = rte_cpu_to_le_16(tqp_vid);
2910 : :
2911 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
2912 [ # # ]: 0 : if (ret)
2913 : 0 : PMD_INIT_LOG(ERR, "TQP map failed %d", ret);
2914 : :
2915 : 0 : return ret;
2916 : : }
2917 : :
2918 : : static int
2919 : 0 : hns3_map_tqp(struct hns3_hw *hw)
2920 : : {
2921 : : uint16_t i;
2922 : : int ret;
2923 : :
2924 : : /*
2925 : : * In current version, VF is not supported when PF is driven by DPDK
2926 : : * driver, so we assign total tqps_num tqps allocated to this port
2927 : : * to PF.
2928 : : */
2929 [ # # ]: 0 : for (i = 0; i < hw->total_tqps_num; i++) {
2930 : 0 : ret = hns3_map_tqps_to_func(hw, HNS3_PF_FUNC_ID, i, i, true);
2931 [ # # ]: 0 : if (ret)
2932 : 0 : return ret;
2933 : : }
2934 : :
2935 : : return 0;
2936 : : }
2937 : :
2938 : : static int
2939 : 0 : hns3_cfg_mac_speed_dup_hw(struct hns3_hw *hw, uint32_t speed, uint8_t duplex)
2940 : : {
2941 : : struct hns3_config_mac_speed_dup_cmd *req;
2942 : : struct hns3_cmd_desc desc;
2943 : : int ret;
2944 : :
2945 : : req = (struct hns3_config_mac_speed_dup_cmd *)desc.data;
2946 : :
2947 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_SPEED_DUP, false);
2948 : :
2949 [ # # ]: 0 : hns3_set_bit(req->speed_dup, HNS3_CFG_DUPLEX_B, !!duplex ? 1 : 0);
2950 : :
2951 [ # # # # : 0 : switch (speed) {
# # # # #
# ]
2952 : 0 : case RTE_ETH_SPEED_NUM_10M:
2953 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2954 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_10M);
2955 : 0 : break;
2956 : 0 : case RTE_ETH_SPEED_NUM_100M:
2957 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2958 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_100M);
2959 : 0 : break;
2960 : 0 : case RTE_ETH_SPEED_NUM_1G:
2961 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2962 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_1G);
2963 : 0 : break;
2964 : 0 : case RTE_ETH_SPEED_NUM_10G:
2965 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2966 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_10G);
2967 : 0 : break;
2968 : 0 : case RTE_ETH_SPEED_NUM_25G:
2969 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2970 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_25G);
2971 : 0 : break;
2972 : 0 : case RTE_ETH_SPEED_NUM_40G:
2973 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2974 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_40G);
2975 : 0 : break;
2976 : 0 : case RTE_ETH_SPEED_NUM_50G:
2977 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2978 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_50G);
2979 : 0 : break;
2980 : 0 : case RTE_ETH_SPEED_NUM_100G:
2981 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2982 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_100G);
2983 : 0 : break;
2984 : 0 : case RTE_ETH_SPEED_NUM_200G:
2985 : 0 : hns3_set_field(req->speed_dup, HNS3_CFG_SPEED_M,
2986 : : HNS3_CFG_SPEED_S, HNS3_CFG_SPEED_200G);
2987 : 0 : break;
2988 : 0 : default:
2989 : 0 : PMD_INIT_LOG(ERR, "invalid speed (%u)", speed);
2990 : 0 : return -EINVAL;
2991 : : }
2992 : :
2993 : 0 : hns3_set_bit(req->mac_change_fec_en, HNS3_CFG_MAC_SPEED_CHANGE_EN_B, 1);
2994 : :
2995 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
2996 [ # # ]: 0 : if (ret)
2997 : 0 : PMD_INIT_LOG(ERR, "mac speed/duplex config cmd failed %d", ret);
2998 : :
2999 : : return ret;
3000 : : }
3001 : :
3002 : : static int
3003 : : hns3_tx_buffer_calc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3004 : : {
3005 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3006 : : struct hns3_pf *pf = &hns->pf;
3007 : : struct hns3_priv_buf *priv;
3008 : : uint32_t i, total_size;
3009 : :
3010 : 0 : total_size = pf->pkt_buf_size;
3011 : :
3012 : : /* alloc tx buffer for all enabled tc */
3013 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3014 : : priv = &buf_alloc->priv_buf[i];
3015 : :
3016 [ # # ]: 0 : if (hw->hw_tc_map & BIT(i)) {
3017 [ # # ]: 0 : if (total_size < pf->tx_buf_size)
3018 : : return -ENOMEM;
3019 : :
3020 : 0 : priv->tx_buf_size = pf->tx_buf_size;
3021 : : } else
3022 : 0 : priv->tx_buf_size = 0;
3023 : :
3024 : 0 : total_size -= priv->tx_buf_size;
3025 : : }
3026 : :
3027 : : return 0;
3028 : : }
3029 : :
3030 : : static int
3031 : 0 : hns3_tx_buffer_alloc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3032 : : {
3033 : : /* TX buffer size is unit by 128 byte */
3034 : : #define HNS3_BUF_SIZE_UNIT_SHIFT 7
3035 : : #define HNS3_BUF_SIZE_UPDATE_EN_MSK BIT(15)
3036 : : struct hns3_tx_buff_alloc_cmd *req;
3037 : : struct hns3_cmd_desc desc;
3038 : : uint32_t buf_size;
3039 : : uint32_t i;
3040 : : int ret;
3041 : :
3042 : : req = (struct hns3_tx_buff_alloc_cmd *)desc.data;
3043 : :
3044 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TX_BUFF_ALLOC, 0);
3045 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3046 : 0 : buf_size = buf_alloc->priv_buf[i].tx_buf_size;
3047 : :
3048 : 0 : buf_size = buf_size >> HNS3_BUF_SIZE_UNIT_SHIFT;
3049 : 0 : req->tx_pkt_buff[i] = rte_cpu_to_le_16(buf_size |
3050 : : HNS3_BUF_SIZE_UPDATE_EN_MSK);
3051 : : }
3052 : :
3053 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
3054 [ # # ]: 0 : if (ret)
3055 : 0 : PMD_INIT_LOG(ERR, "tx buffer alloc cmd failed %d", ret);
3056 : :
3057 : 0 : return ret;
3058 : : }
3059 : :
3060 : : static int
3061 : : hns3_get_tc_num(struct hns3_hw *hw)
3062 : : {
3063 : : int cnt = 0;
3064 : : uint8_t i;
3065 : :
3066 [ # # # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++)
3067 [ # # # # ]: 0 : if (hw->hw_tc_map & BIT(i))
3068 : 0 : cnt++;
3069 : : return cnt;
3070 : : }
3071 : :
3072 : : static uint32_t
3073 : : hns3_get_rx_priv_buff_alloced(struct hns3_pkt_buf_alloc *buf_alloc)
3074 : : {
3075 : : struct hns3_priv_buf *priv;
3076 : : uint32_t rx_priv = 0;
3077 : : int i;
3078 : :
3079 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3080 : : priv = &buf_alloc->priv_buf[i];
3081 [ # # ]: 0 : if (priv->enable)
3082 : 0 : rx_priv += priv->buf_size;
3083 : : }
3084 : : return rx_priv;
3085 : : }
3086 : :
3087 : : static uint32_t
3088 : : hns3_get_tx_buff_alloced(struct hns3_pkt_buf_alloc *buf_alloc)
3089 : : {
3090 : : uint32_t total_tx_size = 0;
3091 : : uint32_t i;
3092 : :
3093 [ # # # # : 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++)
# # # # #
# ]
3094 : 0 : total_tx_size += buf_alloc->priv_buf[i].tx_buf_size;
3095 : :
3096 : : return total_tx_size;
3097 : : }
3098 : :
3099 : : /* Get the number of pfc enabled TCs, which have private buffer */
3100 : : static int
3101 : : hns3_get_pfc_priv_num(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3102 : : {
3103 : : struct hns3_priv_buf *priv;
3104 : : int cnt = 0;
3105 : : uint8_t i;
3106 : :
3107 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3108 : 0 : priv = &buf_alloc->priv_buf[i];
3109 [ # # # # ]: 0 : if ((hw->dcb_info.hw_pfc_map & BIT(i)) && priv->enable)
3110 : 0 : cnt++;
3111 : : }
3112 : :
3113 : : return cnt;
3114 : : }
3115 : :
3116 : : /* Get the number of pfc disabled TCs, which have private buffer */
3117 : : static int
3118 : : hns3_get_no_pfc_priv_num(struct hns3_hw *hw,
3119 : : struct hns3_pkt_buf_alloc *buf_alloc)
3120 : : {
3121 : : struct hns3_priv_buf *priv;
3122 : : int cnt = 0;
3123 : : uint8_t i;
3124 : :
3125 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3126 : 0 : priv = &buf_alloc->priv_buf[i];
3127 [ # # ]: 0 : if (hw->hw_tc_map & BIT(i) &&
3128 [ # # # # ]: 0 : !(hw->dcb_info.hw_pfc_map & BIT(i)) && priv->enable)
3129 : 0 : cnt++;
3130 : : }
3131 : :
3132 : : return cnt;
3133 : : }
3134 : :
3135 : : static bool
3136 : 0 : hns3_is_rx_buf_ok(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc,
3137 : : uint32_t rx_all)
3138 : : {
3139 : : uint32_t shared_buf_min, shared_buf_tc, shared_std, hi_thrd, lo_thrd;
3140 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3141 : : struct hns3_pf *pf = &hns->pf;
3142 : : uint32_t shared_buf, aligned_mps;
3143 : : uint32_t rx_priv;
3144 : : uint8_t tc_num;
3145 : : uint8_t i;
3146 : :
3147 : 0 : tc_num = hns3_get_tc_num(hw);
3148 : 0 : aligned_mps = roundup(pf->mps, HNS3_BUF_SIZE_UNIT);
3149 : :
3150 [ # # ]: 0 : if (hns3_dev_get_support(hw, DCB))
3151 : 0 : shared_buf_min = HNS3_BUF_MUL_BY * aligned_mps +
3152 : 0 : pf->dv_buf_size;
3153 : : else
3154 : 0 : shared_buf_min = aligned_mps + HNS3_NON_DCB_ADDITIONAL_BUF
3155 : 0 : + pf->dv_buf_size;
3156 : :
3157 : 0 : shared_buf_tc = tc_num * aligned_mps + aligned_mps;
3158 : 0 : shared_std = roundup(RTE_MAX(shared_buf_min, shared_buf_tc),
3159 : : HNS3_BUF_SIZE_UNIT);
3160 : :
3161 : : rx_priv = hns3_get_rx_priv_buff_alloced(buf_alloc);
3162 [ # # ]: 0 : if (rx_all < rx_priv + shared_std)
3163 : : return false;
3164 : :
3165 : 0 : shared_buf = rounddown(rx_all - rx_priv, HNS3_BUF_SIZE_UNIT);
3166 : 0 : buf_alloc->s_buf.buf_size = shared_buf;
3167 [ # # ]: 0 : if (hns3_dev_get_support(hw, DCB)) {
3168 : 0 : buf_alloc->s_buf.self.high = shared_buf - pf->dv_buf_size;
3169 : 0 : buf_alloc->s_buf.self.low = buf_alloc->s_buf.self.high
3170 : 0 : - roundup(aligned_mps / HNS3_BUF_DIV_BY,
3171 : : HNS3_BUF_SIZE_UNIT);
3172 : : } else {
3173 : 0 : buf_alloc->s_buf.self.high =
3174 : 0 : aligned_mps + HNS3_NON_DCB_ADDITIONAL_BUF;
3175 : 0 : buf_alloc->s_buf.self.low = aligned_mps;
3176 : : }
3177 : :
3178 [ # # ]: 0 : if (hns3_dev_get_support(hw, DCB)) {
3179 : 0 : hi_thrd = shared_buf - pf->dv_buf_size;
3180 : :
3181 [ # # ]: 0 : if (tc_num <= NEED_RESERVE_TC_NUM)
3182 : 0 : hi_thrd = hi_thrd * BUF_RESERVE_PERCENT /
3183 : : BUF_MAX_PERCENT;
3184 : :
3185 [ # # ]: 0 : if (tc_num)
3186 : 0 : hi_thrd = hi_thrd / tc_num;
3187 : :
3188 : 0 : hi_thrd = RTE_MAX(hi_thrd, HNS3_BUF_MUL_BY * aligned_mps);
3189 : 0 : hi_thrd = rounddown(hi_thrd, HNS3_BUF_SIZE_UNIT);
3190 : 0 : lo_thrd = hi_thrd - aligned_mps / HNS3_BUF_DIV_BY;
3191 : : } else {
3192 : 0 : hi_thrd = aligned_mps + HNS3_NON_DCB_ADDITIONAL_BUF;
3193 : : lo_thrd = aligned_mps;
3194 : : }
3195 : :
3196 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3197 : 0 : buf_alloc->s_buf.tc_thrd[i].low = lo_thrd;
3198 : 0 : buf_alloc->s_buf.tc_thrd[i].high = hi_thrd;
3199 : : }
3200 : :
3201 : : return true;
3202 : : }
3203 : :
3204 : : static bool
3205 : 0 : hns3_rx_buf_calc_all(struct hns3_hw *hw, bool max,
3206 : : struct hns3_pkt_buf_alloc *buf_alloc)
3207 : : {
3208 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3209 : : struct hns3_pf *pf = &hns->pf;
3210 : : struct hns3_priv_buf *priv;
3211 : : uint32_t aligned_mps;
3212 : : uint32_t rx_all;
3213 : : uint8_t i;
3214 : :
3215 : 0 : rx_all = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3216 : 0 : aligned_mps = roundup(pf->mps, HNS3_BUF_SIZE_UNIT);
3217 : :
3218 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3219 : 0 : priv = &buf_alloc->priv_buf[i];
3220 : :
3221 : 0 : priv->enable = 0;
3222 : 0 : priv->wl.low = 0;
3223 : 0 : priv->wl.high = 0;
3224 : 0 : priv->buf_size = 0;
3225 : :
3226 [ # # ]: 0 : if (!(hw->hw_tc_map & BIT(i)))
3227 : 0 : continue;
3228 : :
3229 : 0 : priv->enable = 1;
3230 [ # # ]: 0 : if (hw->dcb_info.hw_pfc_map & BIT(i)) {
3231 [ # # ]: 0 : priv->wl.low = max ? aligned_mps : HNS3_BUF_SIZE_UNIT;
3232 : 0 : priv->wl.high = roundup(priv->wl.low + aligned_mps,
3233 : : HNS3_BUF_SIZE_UNIT);
3234 : : } else {
3235 : : priv->wl.low = 0;
3236 [ # # ]: 0 : priv->wl.high = max ? (aligned_mps * HNS3_BUF_MUL_BY) :
3237 : : aligned_mps;
3238 : : }
3239 : :
3240 : 0 : priv->buf_size = priv->wl.high + pf->dv_buf_size;
3241 : : }
3242 : :
3243 : 0 : return hns3_is_rx_buf_ok(hw, buf_alloc, rx_all);
3244 : : }
3245 : :
3246 : : static bool
3247 : 0 : hns3_drop_nopfc_buf_till_fit(struct hns3_hw *hw,
3248 : : struct hns3_pkt_buf_alloc *buf_alloc)
3249 : : {
3250 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3251 : : struct hns3_pf *pf = &hns->pf;
3252 : : struct hns3_priv_buf *priv;
3253 : : int no_pfc_priv_num;
3254 : : uint32_t rx_all;
3255 : : uint8_t mask;
3256 : : int i;
3257 : :
3258 : 0 : rx_all = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3259 : : no_pfc_priv_num = hns3_get_no_pfc_priv_num(hw, buf_alloc);
3260 : :
3261 : : /* let the last to be cleared first */
3262 [ # # ]: 0 : for (i = HNS3_MAX_TC_NUM - 1; i >= 0; i--) {
3263 : : priv = &buf_alloc->priv_buf[i];
3264 : 0 : mask = BIT((uint8_t)i);
3265 [ # # ]: 0 : if (hw->hw_tc_map & mask &&
3266 [ # # ]: 0 : !(hw->dcb_info.hw_pfc_map & mask)) {
3267 : : /* Clear the no pfc TC private buffer */
3268 : 0 : priv->wl.low = 0;
3269 : 0 : priv->wl.high = 0;
3270 : 0 : priv->buf_size = 0;
3271 : 0 : priv->enable = 0;
3272 : 0 : no_pfc_priv_num--;
3273 : : }
3274 : :
3275 [ # # # # ]: 0 : if (hns3_is_rx_buf_ok(hw, buf_alloc, rx_all) ||
3276 : : no_pfc_priv_num == 0)
3277 : : break;
3278 : : }
3279 : :
3280 : 0 : return hns3_is_rx_buf_ok(hw, buf_alloc, rx_all);
3281 : : }
3282 : :
3283 : : static bool
3284 : 0 : hns3_drop_pfc_buf_till_fit(struct hns3_hw *hw,
3285 : : struct hns3_pkt_buf_alloc *buf_alloc)
3286 : : {
3287 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3288 : : struct hns3_pf *pf = &hns->pf;
3289 : : struct hns3_priv_buf *priv;
3290 : : uint32_t rx_all;
3291 : : int pfc_priv_num;
3292 : : uint8_t mask;
3293 : : int i;
3294 : :
3295 : 0 : rx_all = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3296 : : pfc_priv_num = hns3_get_pfc_priv_num(hw, buf_alloc);
3297 : :
3298 : : /* let the last to be cleared first */
3299 [ # # ]: 0 : for (i = HNS3_MAX_TC_NUM - 1; i >= 0; i--) {
3300 : : priv = &buf_alloc->priv_buf[i];
3301 : 0 : mask = BIT((uint8_t)i);
3302 [ # # # # ]: 0 : if (hw->hw_tc_map & mask && hw->dcb_info.hw_pfc_map & mask) {
3303 : : /* Reduce the number of pfc TC with private buffer */
3304 : 0 : priv->wl.low = 0;
3305 : 0 : priv->enable = 0;
3306 : 0 : priv->wl.high = 0;
3307 : 0 : priv->buf_size = 0;
3308 : 0 : pfc_priv_num--;
3309 : : }
3310 [ # # # # ]: 0 : if (hns3_is_rx_buf_ok(hw, buf_alloc, rx_all) ||
3311 : : pfc_priv_num == 0)
3312 : : break;
3313 : : }
3314 : :
3315 : 0 : return hns3_is_rx_buf_ok(hw, buf_alloc, rx_all);
3316 : : }
3317 : :
3318 : : static bool
3319 : 0 : hns3_only_alloc_priv_buff(struct hns3_hw *hw,
3320 : : struct hns3_pkt_buf_alloc *buf_alloc)
3321 : : {
3322 : : #define COMPENSATE_BUFFER 0x3C00
3323 : : #define COMPENSATE_HALF_MPS_NUM 5
3324 : : #define PRIV_WL_GAP 0x1800
3325 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3326 : : struct hns3_pf *pf = &hns->pf;
3327 : 0 : uint32_t tc_num = hns3_get_tc_num(hw);
3328 : 0 : uint32_t half_mps = pf->mps >> 1;
3329 : : struct hns3_priv_buf *priv;
3330 : : uint32_t min_rx_priv;
3331 : : uint32_t rx_priv;
3332 : : uint8_t i;
3333 : :
3334 : 0 : rx_priv = pf->pkt_buf_size - hns3_get_tx_buff_alloced(buf_alloc);
3335 [ # # ]: 0 : if (tc_num)
3336 : 0 : rx_priv = rx_priv / tc_num;
3337 : :
3338 [ # # ]: 0 : if (tc_num <= NEED_RESERVE_TC_NUM)
3339 : 0 : rx_priv = rx_priv * BUF_RESERVE_PERCENT / BUF_MAX_PERCENT;
3340 : :
3341 : : /*
3342 : : * Minimum value of private buffer in rx direction (min_rx_priv) is
3343 : : * equal to "DV + 2.5 * MPS + 15KB". Driver only allocates rx private
3344 : : * buffer if rx_priv is greater than min_rx_priv.
3345 : : */
3346 : 0 : min_rx_priv = pf->dv_buf_size + COMPENSATE_BUFFER +
3347 : 0 : COMPENSATE_HALF_MPS_NUM * half_mps;
3348 : 0 : min_rx_priv = roundup(min_rx_priv, HNS3_BUF_SIZE_UNIT);
3349 : 0 : rx_priv = rounddown(rx_priv, HNS3_BUF_SIZE_UNIT);
3350 [ # # ]: 0 : if (rx_priv < min_rx_priv)
3351 : : return false;
3352 : :
3353 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3354 : 0 : priv = &buf_alloc->priv_buf[i];
3355 : 0 : priv->enable = 0;
3356 : 0 : priv->wl.low = 0;
3357 : 0 : priv->wl.high = 0;
3358 : 0 : priv->buf_size = 0;
3359 : :
3360 [ # # ]: 0 : if (!(hw->hw_tc_map & BIT(i)))
3361 : 0 : continue;
3362 : :
3363 : 0 : priv->enable = 1;
3364 : 0 : priv->buf_size = rx_priv;
3365 : 0 : priv->wl.high = rx_priv - pf->dv_buf_size;
3366 : 0 : priv->wl.low = priv->wl.high - PRIV_WL_GAP;
3367 : : }
3368 : :
3369 : 0 : buf_alloc->s_buf.buf_size = 0;
3370 : :
3371 : 0 : return true;
3372 : : }
3373 : :
3374 : : /*
3375 : : * hns3_rx_buffer_calc: calculate the rx private buffer size for all TCs
3376 : : * @hw: pointer to struct hns3_hw
3377 : : * @buf_alloc: pointer to buffer calculation data
3378 : : * @return: 0: calculate successful, negative: fail
3379 : : */
3380 : : static int
3381 : 0 : hns3_rx_buffer_calc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3382 : : {
3383 : : /* When DCB is not supported, rx private buffer is not allocated. */
3384 [ # # ]: 0 : if (!hns3_dev_get_support(hw, DCB)) {
3385 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3386 : : struct hns3_pf *pf = &hns->pf;
3387 : 0 : uint32_t rx_all = pf->pkt_buf_size;
3388 : :
3389 : 0 : rx_all -= hns3_get_tx_buff_alloced(buf_alloc);
3390 [ # # ]: 0 : if (!hns3_is_rx_buf_ok(hw, buf_alloc, rx_all))
3391 : : return -ENOMEM;
3392 : :
3393 : 0 : return 0;
3394 : : }
3395 : :
3396 : : /*
3397 : : * Try to allocate privated packet buffer for all TCs without share
3398 : : * buffer.
3399 : : */
3400 [ # # ]: 0 : if (hns3_only_alloc_priv_buff(hw, buf_alloc))
3401 : : return 0;
3402 : :
3403 : : /*
3404 : : * Try to allocate privated packet buffer for all TCs with share
3405 : : * buffer.
3406 : : */
3407 [ # # ]: 0 : if (hns3_rx_buf_calc_all(hw, true, buf_alloc))
3408 : : return 0;
3409 : :
3410 : : /*
3411 : : * For different application scenes, the enabled port number, TC number
3412 : : * and no_drop TC number are different. In order to obtain the better
3413 : : * performance, software could allocate the buffer size and configure
3414 : : * the waterline by trying to decrease the private buffer size according
3415 : : * to the order, namely, waterline of valid tc, pfc disabled tc, pfc
3416 : : * enabled tc.
3417 : : */
3418 [ # # ]: 0 : if (hns3_rx_buf_calc_all(hw, false, buf_alloc))
3419 : : return 0;
3420 : :
3421 [ # # ]: 0 : if (hns3_drop_nopfc_buf_till_fit(hw, buf_alloc))
3422 : : return 0;
3423 : :
3424 [ # # ]: 0 : if (hns3_drop_pfc_buf_till_fit(hw, buf_alloc))
3425 : 0 : return 0;
3426 : :
3427 : : return -ENOMEM;
3428 : : }
3429 : :
3430 : : static int
3431 : 0 : hns3_rx_priv_buf_alloc(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3432 : : {
3433 : : struct hns3_rx_priv_buff_cmd *req;
3434 : : struct hns3_cmd_desc desc;
3435 : : uint32_t buf_size;
3436 : : int ret;
3437 : : int i;
3438 : :
3439 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RX_PRIV_BUFF_ALLOC, false);
3440 : : req = (struct hns3_rx_priv_buff_cmd *)desc.data;
3441 : :
3442 : : /* Alloc private buffer TCs */
3443 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
3444 : : struct hns3_priv_buf *priv = &buf_alloc->priv_buf[i];
3445 : :
3446 : 0 : req->buf_num[i] =
3447 : 0 : rte_cpu_to_le_16(priv->buf_size >> HNS3_BUF_UNIT_S);
3448 : 0 : req->buf_num[i] |= rte_cpu_to_le_16(1 << HNS3_TC0_PRI_BUF_EN_B);
3449 : : }
3450 : :
3451 : 0 : buf_size = buf_alloc->s_buf.buf_size;
3452 : 0 : req->shared_buf = rte_cpu_to_le_16((buf_size >> HNS3_BUF_UNIT_S) |
3453 : : (1 << HNS3_TC0_PRI_BUF_EN_B));
3454 : :
3455 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
3456 [ # # ]: 0 : if (ret)
3457 : 0 : PMD_INIT_LOG(ERR, "rx private buffer alloc cmd failed %d", ret);
3458 : :
3459 : 0 : return ret;
3460 : : }
3461 : :
3462 : : static int
3463 : 0 : hns3_rx_priv_wl_config(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3464 : : {
3465 : : #define HNS3_RX_PRIV_WL_ALLOC_DESC_NUM 2
3466 : : struct hns3_rx_priv_wl_buf *req;
3467 : : struct hns3_priv_buf *priv;
3468 : : struct hns3_cmd_desc desc[HNS3_RX_PRIV_WL_ALLOC_DESC_NUM];
3469 : : int i, j;
3470 : : int ret;
3471 : :
3472 [ # # ]: 0 : for (i = 0; i < HNS3_RX_PRIV_WL_ALLOC_DESC_NUM; i++) {
3473 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_RX_PRIV_WL_ALLOC,
3474 : : false);
3475 : 0 : req = (struct hns3_rx_priv_wl_buf *)desc[i].data;
3476 : :
3477 : : /* The first descriptor set the NEXT bit to 1 */
3478 [ # # ]: 0 : if (i == 0)
3479 : 0 : desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
3480 : : else
3481 : 0 : desc[i].flag &= ~rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
3482 : :
3483 [ # # ]: 0 : for (j = 0; j < HNS3_TC_NUM_ONE_DESC; j++) {
3484 : 0 : uint32_t idx = i * HNS3_TC_NUM_ONE_DESC + j;
3485 : :
3486 : : priv = &buf_alloc->priv_buf[idx];
3487 : 0 : req->tc_wl[j].high = rte_cpu_to_le_16(priv->wl.high >>
3488 : : HNS3_BUF_UNIT_S);
3489 : 0 : req->tc_wl[j].high |=
3490 : : rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
3491 : 0 : req->tc_wl[j].low = rte_cpu_to_le_16(priv->wl.low >>
3492 : : HNS3_BUF_UNIT_S);
3493 : 0 : req->tc_wl[j].low |=
3494 : : rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
3495 : : }
3496 : : }
3497 : :
3498 : : /* Send 2 descriptor at one time */
3499 : 0 : ret = hns3_cmd_send(hw, desc, HNS3_RX_PRIV_WL_ALLOC_DESC_NUM);
3500 [ # # ]: 0 : if (ret)
3501 : 0 : PMD_INIT_LOG(ERR, "rx private waterline config cmd failed %d",
3502 : : ret);
3503 : 0 : return ret;
3504 : : }
3505 : :
3506 : : static int
3507 : 0 : hns3_common_thrd_config(struct hns3_hw *hw,
3508 : : struct hns3_pkt_buf_alloc *buf_alloc)
3509 : : {
3510 : : #define HNS3_RX_COM_THRD_ALLOC_DESC_NUM 2
3511 : : struct hns3_shared_buf *s_buf = &buf_alloc->s_buf;
3512 : : struct hns3_rx_com_thrd *req;
3513 : : struct hns3_cmd_desc desc[HNS3_RX_COM_THRD_ALLOC_DESC_NUM];
3514 : : struct hns3_tc_thrd *tc;
3515 : : int tc_idx;
3516 : : int i, j;
3517 : : int ret;
3518 : :
3519 [ # # ]: 0 : for (i = 0; i < HNS3_RX_COM_THRD_ALLOC_DESC_NUM; i++) {
3520 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_RX_COM_THRD_ALLOC,
3521 : : false);
3522 : 0 : req = (struct hns3_rx_com_thrd *)&desc[i].data;
3523 : :
3524 : : /* The first descriptor set the NEXT bit to 1 */
3525 [ # # ]: 0 : if (i == 0)
3526 : 0 : desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
3527 : : else
3528 : 0 : desc[i].flag &= ~rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
3529 : :
3530 [ # # ]: 0 : for (j = 0; j < HNS3_TC_NUM_ONE_DESC; j++) {
3531 : 0 : tc_idx = i * HNS3_TC_NUM_ONE_DESC + j;
3532 : : tc = &s_buf->tc_thrd[tc_idx];
3533 : :
3534 : 0 : req->com_thrd[j].high =
3535 : 0 : rte_cpu_to_le_16(tc->high >> HNS3_BUF_UNIT_S);
3536 : 0 : req->com_thrd[j].high |=
3537 : : rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
3538 : 0 : req->com_thrd[j].low =
3539 : 0 : rte_cpu_to_le_16(tc->low >> HNS3_BUF_UNIT_S);
3540 : 0 : req->com_thrd[j].low |=
3541 : : rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
3542 : : }
3543 : : }
3544 : :
3545 : : /* Send 2 descriptors at one time */
3546 : 0 : ret = hns3_cmd_send(hw, desc, HNS3_RX_COM_THRD_ALLOC_DESC_NUM);
3547 [ # # ]: 0 : if (ret)
3548 : 0 : PMD_INIT_LOG(ERR, "common threshold config cmd failed %d", ret);
3549 : :
3550 : 0 : return ret;
3551 : : }
3552 : :
3553 : : static int
3554 : 0 : hns3_common_wl_config(struct hns3_hw *hw, struct hns3_pkt_buf_alloc *buf_alloc)
3555 : : {
3556 : : struct hns3_shared_buf *buf = &buf_alloc->s_buf;
3557 : : struct hns3_rx_com_wl *req;
3558 : : struct hns3_cmd_desc desc;
3559 : : int ret;
3560 : :
3561 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_RX_COM_WL_ALLOC, false);
3562 : :
3563 : : req = (struct hns3_rx_com_wl *)desc.data;
3564 : 0 : req->com_wl.high = rte_cpu_to_le_16(buf->self.high >> HNS3_BUF_UNIT_S);
3565 : 0 : req->com_wl.high |= rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
3566 : :
3567 : 0 : req->com_wl.low = rte_cpu_to_le_16(buf->self.low >> HNS3_BUF_UNIT_S);
3568 : 0 : req->com_wl.low |= rte_cpu_to_le_16(BIT(HNS3_RX_PRIV_EN_B));
3569 : :
3570 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
3571 [ # # ]: 0 : if (ret)
3572 : 0 : PMD_INIT_LOG(ERR, "common waterline config cmd failed %d", ret);
3573 : :
3574 : 0 : return ret;
3575 : : }
3576 : :
3577 : : int
3578 : 0 : hns3_buffer_alloc(struct hns3_hw *hw)
3579 : : {
3580 : : struct hns3_pkt_buf_alloc pkt_buf;
3581 : : int ret;
3582 : :
3583 : : memset(&pkt_buf, 0, sizeof(pkt_buf));
3584 : : ret = hns3_tx_buffer_calc(hw, &pkt_buf);
3585 [ # # ]: 0 : if (ret) {
3586 : 0 : PMD_INIT_LOG(ERR,
3587 : : "could not calc tx buffer size for all TCs %d",
3588 : : ret);
3589 : 0 : return ret;
3590 : : }
3591 : :
3592 : 0 : ret = hns3_tx_buffer_alloc(hw, &pkt_buf);
3593 [ # # ]: 0 : if (ret) {
3594 : 0 : PMD_INIT_LOG(ERR, "could not alloc tx buffers %d", ret);
3595 : 0 : return ret;
3596 : : }
3597 : :
3598 : 0 : ret = hns3_rx_buffer_calc(hw, &pkt_buf);
3599 [ # # ]: 0 : if (ret) {
3600 : 0 : PMD_INIT_LOG(ERR,
3601 : : "could not calc rx priv buffer size for all TCs %d",
3602 : : ret);
3603 : 0 : return ret;
3604 : : }
3605 : :
3606 : 0 : ret = hns3_rx_priv_buf_alloc(hw, &pkt_buf);
3607 [ # # ]: 0 : if (ret) {
3608 : 0 : PMD_INIT_LOG(ERR, "could not alloc rx priv buffer %d", ret);
3609 : 0 : return ret;
3610 : : }
3611 : :
3612 [ # # ]: 0 : if (hns3_dev_get_support(hw, DCB)) {
3613 : 0 : ret = hns3_rx_priv_wl_config(hw, &pkt_buf);
3614 [ # # ]: 0 : if (ret) {
3615 : 0 : PMD_INIT_LOG(ERR,
3616 : : "could not configure rx private waterline %d",
3617 : : ret);
3618 : 0 : return ret;
3619 : : }
3620 : :
3621 : 0 : ret = hns3_common_thrd_config(hw, &pkt_buf);
3622 [ # # ]: 0 : if (ret) {
3623 : 0 : PMD_INIT_LOG(ERR,
3624 : : "could not configure common threshold %d",
3625 : : ret);
3626 : 0 : return ret;
3627 : : }
3628 : : }
3629 : :
3630 : 0 : ret = hns3_common_wl_config(hw, &pkt_buf);
3631 [ # # ]: 0 : if (ret)
3632 : 0 : PMD_INIT_LOG(ERR, "could not configure common waterline %d",
3633 : : ret);
3634 : :
3635 : : return ret;
3636 : : }
3637 : :
3638 : : static int
3639 : 0 : hns3_mac_init(struct hns3_hw *hw)
3640 : : {
3641 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3642 : : struct hns3_mac *mac = &hw->mac;
3643 : : struct hns3_pf *pf = &hns->pf;
3644 : : int ret;
3645 : :
3646 : 0 : pf->support_sfp_query = true;
3647 : 0 : mac->link_duplex = RTE_ETH_LINK_FULL_DUPLEX;
3648 : 0 : ret = hns3_cfg_mac_speed_dup_hw(hw, mac->link_speed, mac->link_duplex);
3649 [ # # ]: 0 : if (ret) {
3650 : 0 : PMD_INIT_LOG(ERR, "Config mac speed dup fail ret = %d", ret);
3651 : 0 : return ret;
3652 : : }
3653 : :
3654 : 0 : mac->link_status = RTE_ETH_LINK_DOWN;
3655 : :
3656 : 0 : return hns3_config_mtu(hw, pf->mps);
3657 : : }
3658 : :
3659 : : static int
3660 : 0 : hns3_get_mac_ethertype_cmd_status(uint16_t cmdq_resp, uint8_t resp_code)
3661 : : {
3662 : : #define HNS3_ETHERTYPE_SUCCESS_ADD 0
3663 : : #define HNS3_ETHERTYPE_ALREADY_ADD 1
3664 : : #define HNS3_ETHERTYPE_MGR_TBL_OVERFLOW 2
3665 : : #define HNS3_ETHERTYPE_KEY_CONFLICT 3
3666 : : int return_status;
3667 : :
3668 [ # # ]: 0 : if (cmdq_resp) {
3669 : 0 : PMD_INIT_LOG(ERR,
3670 : : "cmdq execute failed for get_mac_ethertype_cmd_status, status=%u.",
3671 : : cmdq_resp);
3672 : 0 : return -EIO;
3673 : : }
3674 : :
3675 [ # # # # ]: 0 : switch (resp_code) {
3676 : : case HNS3_ETHERTYPE_SUCCESS_ADD:
3677 : : case HNS3_ETHERTYPE_ALREADY_ADD:
3678 : : return_status = 0;
3679 : : break;
3680 : 0 : case HNS3_ETHERTYPE_MGR_TBL_OVERFLOW:
3681 : 0 : PMD_INIT_LOG(ERR,
3682 : : "add mac ethertype failed for manager table overflow.");
3683 : : return_status = -EIO;
3684 : 0 : break;
3685 : 0 : case HNS3_ETHERTYPE_KEY_CONFLICT:
3686 : 0 : PMD_INIT_LOG(ERR, "add mac ethertype failed for key conflict.");
3687 : : return_status = -EIO;
3688 : 0 : break;
3689 : 0 : default:
3690 : 0 : PMD_INIT_LOG(ERR,
3691 : : "add mac ethertype failed for undefined, code=%u.",
3692 : : resp_code);
3693 : : return_status = -EIO;
3694 : 0 : break;
3695 : : }
3696 : :
3697 : : return return_status;
3698 : : }
3699 : :
3700 : : static int
3701 : 0 : hns3_add_mgr_tbl(struct hns3_hw *hw,
3702 : : const struct hns3_mac_mgr_tbl_entry_cmd *req)
3703 : : {
3704 : : struct hns3_cmd_desc desc;
3705 : : uint8_t resp_code;
3706 : : uint16_t retval;
3707 : : int ret;
3708 : :
3709 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_MAC_ETHTYPE_ADD, false);
3710 : : memcpy(desc.data, req, sizeof(struct hns3_mac_mgr_tbl_entry_cmd));
3711 : :
3712 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
3713 [ # # ]: 0 : if (ret) {
3714 : 0 : PMD_INIT_LOG(ERR,
3715 : : "add mac ethertype failed for cmd_send, ret =%d.",
3716 : : ret);
3717 : 0 : return ret;
3718 : : }
3719 : :
3720 : 0 : resp_code = (rte_le_to_cpu_32(desc.data[0]) >> 8) & 0xff;
3721 : 0 : retval = rte_le_to_cpu_16(desc.retval);
3722 : :
3723 : 0 : return hns3_get_mac_ethertype_cmd_status(retval, resp_code);
3724 : : }
3725 : :
3726 : : static void
3727 : : hns3_prepare_mgr_tbl(struct hns3_mac_mgr_tbl_entry_cmd *mgr_table,
3728 : : int *table_item_num)
3729 : : {
3730 : : struct hns3_mac_mgr_tbl_entry_cmd *tbl;
3731 : :
3732 : : /*
3733 : : * In current version, we add one item in management table as below:
3734 : : * 0x0180C200000E -- LLDP MC address
3735 : : */
3736 : : tbl = mgr_table;
3737 : 0 : tbl->flags = HNS3_MAC_MGR_MASK_VLAN_B;
3738 : 0 : tbl->ethter_type = rte_cpu_to_le_16(HNS3_MAC_ETHERTYPE_LLDP);
3739 : 0 : tbl->mac_addr_hi32 = rte_cpu_to_le_32(htonl(0x0180C200));
3740 : 0 : tbl->mac_addr_lo16 = rte_cpu_to_le_16(htons(0x000E));
3741 : 0 : tbl->i_port_bitmap = 0x1;
3742 : : *table_item_num = 1;
3743 : : }
3744 : :
3745 : : static int
3746 : 0 : hns3_init_mgr_tbl(struct hns3_hw *hw)
3747 : : {
3748 : : #define HNS_MAC_MGR_TBL_MAX_SIZE 16
3749 : : struct hns3_mac_mgr_tbl_entry_cmd mgr_table[HNS_MAC_MGR_TBL_MAX_SIZE];
3750 : : int table_item_num;
3751 : : int ret;
3752 : : int i;
3753 : :
3754 : : memset(mgr_table, 0, sizeof(mgr_table));
3755 : : hns3_prepare_mgr_tbl(mgr_table, &table_item_num);
3756 [ # # ]: 0 : for (i = 0; i < table_item_num; i++) {
3757 : 0 : ret = hns3_add_mgr_tbl(hw, &mgr_table[i]);
3758 [ # # ]: 0 : if (ret) {
3759 : 0 : PMD_INIT_LOG(ERR, "add mac ethertype failed, ret =%d",
3760 : : ret);
3761 : 0 : return ret;
3762 : : }
3763 : : }
3764 : :
3765 : : return 0;
3766 : : }
3767 : :
3768 : : static void
3769 : 0 : hns3_promisc_param_init(struct hns3_promisc_param *param, bool en_uc,
3770 : : bool en_mc, bool en_bc, int vport_id)
3771 : : {
3772 [ # # ]: 0 : if (!param)
3773 : : return;
3774 : :
3775 : : memset(param, 0, sizeof(struct hns3_promisc_param));
3776 [ # # ]: 0 : if (en_uc)
3777 : 0 : param->enable = HNS3_PROMISC_EN_UC;
3778 [ # # ]: 0 : if (en_mc)
3779 : 0 : param->enable |= HNS3_PROMISC_EN_MC;
3780 [ # # ]: 0 : if (en_bc)
3781 : 0 : param->enable |= HNS3_PROMISC_EN_BC;
3782 : 0 : param->vf_id = vport_id;
3783 : : }
3784 : :
3785 : : static int
3786 : 0 : hns3_cmd_set_promisc_mode(struct hns3_hw *hw, struct hns3_promisc_param *param)
3787 : : {
3788 : : struct hns3_promisc_cfg_cmd *req;
3789 : : struct hns3_cmd_desc desc;
3790 : : int ret;
3791 : :
3792 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_PROMISC_MODE, false);
3793 : :
3794 : : req = (struct hns3_promisc_cfg_cmd *)desc.data;
3795 : 0 : req->vf_id = param->vf_id;
3796 : 0 : req->flag = (param->enable << HNS3_PROMISC_EN_B) |
3797 : : HNS3_PROMISC_TX_EN_B | HNS3_PROMISC_RX_EN_B;
3798 : :
3799 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
3800 [ # # ]: 0 : if (ret)
3801 : 0 : PMD_INIT_LOG(ERR, "Set promisc mode fail, ret = %d", ret);
3802 : :
3803 : 0 : return ret;
3804 : : }
3805 : :
3806 : : static int
3807 : 0 : hns3_set_promisc_mode(struct hns3_hw *hw, bool en_uc_pmc, bool en_mc_pmc)
3808 : : {
3809 : : struct hns3_promisc_param param;
3810 : : bool en_bc_pmc = true;
3811 : : uint8_t vf_id;
3812 : :
3813 : : /*
3814 : : * In current version VF is not supported when PF is driven by DPDK
3815 : : * driver, just need to configure parameters for PF vport.
3816 : : */
3817 : : vf_id = HNS3_PF_FUNC_ID;
3818 : :
3819 : 0 : hns3_promisc_param_init(¶m, en_uc_pmc, en_mc_pmc, en_bc_pmc, vf_id);
3820 : 0 : return hns3_cmd_set_promisc_mode(hw, ¶m);
3821 : : }
3822 : :
3823 : : static int
3824 : 0 : hns3_promisc_init(struct hns3_hw *hw)
3825 : : {
3826 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
3827 : : struct hns3_pf *pf = &hns->pf;
3828 : : struct hns3_promisc_param param;
3829 : : uint16_t func_id;
3830 : : int ret;
3831 : :
3832 : 0 : ret = hns3_set_promisc_mode(hw, false, false);
3833 [ # # ]: 0 : if (ret) {
3834 : 0 : PMD_INIT_LOG(ERR, "failed to set promisc mode, ret = %d", ret);
3835 : 0 : return ret;
3836 : : }
3837 : :
3838 : : /*
3839 : : * In current version VFs are not supported when PF is driven by DPDK
3840 : : * driver. After PF has been taken over by DPDK, the original VF will
3841 : : * be invalid. So, there is a possibility of entry residues. It should
3842 : : * clear VFs's promisc mode to avoid unnecessary bandwidth usage
3843 : : * during init.
3844 : : */
3845 [ # # ]: 0 : for (func_id = HNS3_1ST_VF_FUNC_ID; func_id < pf->func_num; func_id++) {
3846 : 0 : hns3_promisc_param_init(¶m, false, false, false, func_id);
3847 : 0 : ret = hns3_cmd_set_promisc_mode(hw, ¶m);
3848 [ # # ]: 0 : if (ret) {
3849 : 0 : PMD_INIT_LOG(ERR, "failed to clear vf:%u promisc mode,"
3850 : : " ret = %d", func_id, ret);
3851 : 0 : return ret;
3852 : : }
3853 : : }
3854 : :
3855 : : return 0;
3856 : : }
3857 : :
3858 : : static void
3859 : 0 : hns3_promisc_uninit(struct hns3_hw *hw)
3860 : : {
3861 : : struct hns3_promisc_param param;
3862 : : uint16_t func_id;
3863 : : int ret;
3864 : :
3865 : : func_id = HNS3_PF_FUNC_ID;
3866 : :
3867 : : /*
3868 : : * In current version VFs are not supported when PF is driven by
3869 : : * DPDK driver, and VFs' promisc mode status has been cleared during
3870 : : * init and their status will not change. So just clear PF's promisc
3871 : : * mode status during uninit.
3872 : : */
3873 : : hns3_promisc_param_init(¶m, false, false, false, func_id);
3874 : 0 : ret = hns3_cmd_set_promisc_mode(hw, ¶m);
3875 [ # # ]: 0 : if (ret)
3876 : 0 : PMD_INIT_LOG(ERR, "failed to clear promisc status during"
3877 : : " uninit, ret = %d", ret);
3878 : 0 : }
3879 : :
3880 : : static int
3881 : 0 : hns3_dev_promiscuous_enable(struct rte_eth_dev *dev)
3882 : : {
3883 : 0 : bool allmulti = dev->data->all_multicast ? true : false;
3884 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
3885 : 0 : struct hns3_hw *hw = &hns->hw;
3886 : : uint64_t offloads;
3887 : : int err;
3888 : : int ret;
3889 : :
3890 : 0 : rte_spinlock_lock(&hw->lock);
3891 : 0 : ret = hns3_set_promisc_mode(hw, true, true);
3892 [ # # ]: 0 : if (ret) {
3893 : : rte_spinlock_unlock(&hw->lock);
3894 : 0 : hns3_err(hw, "failed to enable promiscuous mode, ret = %d",
3895 : : ret);
3896 : 0 : return ret;
3897 : : }
3898 : :
3899 : : /*
3900 : : * When promiscuous mode was enabled, disable the vlan filter to let
3901 : : * all packets coming in the receiving direction.
3902 : : */
3903 : 0 : offloads = dev->data->dev_conf.rxmode.offloads;
3904 [ # # ]: 0 : if (offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER) {
3905 : 0 : ret = hns3_enable_vlan_filter(hns, false);
3906 [ # # ]: 0 : if (ret) {
3907 : 0 : hns3_err(hw, "failed to enable promiscuous mode due to "
3908 : : "failure to disable vlan filter, ret = %d",
3909 : : ret);
3910 : 0 : err = hns3_set_promisc_mode(hw, false, allmulti);
3911 [ # # ]: 0 : if (err)
3912 : 0 : hns3_err(hw, "failed to restore promiscuous "
3913 : : "status after disable vlan filter "
3914 : : "failed during enabling promiscuous "
3915 : : "mode, ret = %d", ret);
3916 : : }
3917 : : }
3918 : :
3919 : : rte_spinlock_unlock(&hw->lock);
3920 : :
3921 : 0 : return ret;
3922 : : }
3923 : :
3924 : : static int
3925 : 0 : hns3_dev_promiscuous_disable(struct rte_eth_dev *dev)
3926 : : {
3927 : 0 : bool allmulti = dev->data->all_multicast ? true : false;
3928 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
3929 : 0 : struct hns3_hw *hw = &hns->hw;
3930 : : uint64_t offloads;
3931 : : int err;
3932 : : int ret;
3933 : :
3934 : : /* If now in all_multicast mode, must remain in all_multicast mode. */
3935 : 0 : rte_spinlock_lock(&hw->lock);
3936 : 0 : ret = hns3_set_promisc_mode(hw, false, allmulti);
3937 [ # # ]: 0 : if (ret) {
3938 : : rte_spinlock_unlock(&hw->lock);
3939 : 0 : hns3_err(hw, "failed to disable promiscuous mode, ret = %d",
3940 : : ret);
3941 : 0 : return ret;
3942 : : }
3943 : : /* when promiscuous mode was disabled, restore the vlan filter status */
3944 : 0 : offloads = dev->data->dev_conf.rxmode.offloads;
3945 [ # # ]: 0 : if (offloads & RTE_ETH_RX_OFFLOAD_VLAN_FILTER) {
3946 : 0 : ret = hns3_enable_vlan_filter(hns, true);
3947 [ # # ]: 0 : if (ret) {
3948 : 0 : hns3_err(hw, "failed to disable promiscuous mode due to"
3949 : : " failure to restore vlan filter, ret = %d",
3950 : : ret);
3951 : 0 : err = hns3_set_promisc_mode(hw, true, true);
3952 [ # # ]: 0 : if (err)
3953 : 0 : hns3_err(hw, "failed to restore promiscuous "
3954 : : "status after enabling vlan filter "
3955 : : "failed during disabling promiscuous "
3956 : : "mode, ret = %d", ret);
3957 : : }
3958 : : }
3959 : : rte_spinlock_unlock(&hw->lock);
3960 : :
3961 : 0 : return ret;
3962 : : }
3963 : :
3964 : : static int
3965 : 0 : hns3_dev_allmulticast_enable(struct rte_eth_dev *dev)
3966 : : {
3967 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
3968 : 0 : struct hns3_hw *hw = &hns->hw;
3969 : : int ret;
3970 : :
3971 [ # # ]: 0 : if (dev->data->promiscuous)
3972 : : return 0;
3973 : :
3974 : 0 : rte_spinlock_lock(&hw->lock);
3975 : 0 : ret = hns3_set_promisc_mode(hw, false, true);
3976 : : rte_spinlock_unlock(&hw->lock);
3977 [ # # ]: 0 : if (ret)
3978 : 0 : hns3_err(hw, "failed to enable allmulticast mode, ret = %d",
3979 : : ret);
3980 : :
3981 : : return ret;
3982 : : }
3983 : :
3984 : : static int
3985 : 0 : hns3_dev_allmulticast_disable(struct rte_eth_dev *dev)
3986 : : {
3987 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
3988 : 0 : struct hns3_hw *hw = &hns->hw;
3989 : : int ret;
3990 : :
3991 : : /* If now in promiscuous mode, must remain in all_multicast mode. */
3992 [ # # ]: 0 : if (dev->data->promiscuous)
3993 : : return 0;
3994 : :
3995 : 0 : rte_spinlock_lock(&hw->lock);
3996 : 0 : ret = hns3_set_promisc_mode(hw, false, false);
3997 : : rte_spinlock_unlock(&hw->lock);
3998 [ # # ]: 0 : if (ret)
3999 : 0 : hns3_err(hw, "failed to disable allmulticast mode, ret = %d",
4000 : : ret);
4001 : :
4002 : : return ret;
4003 : : }
4004 : :
4005 : : static int
4006 : 0 : hns3_dev_promisc_restore(struct hns3_adapter *hns)
4007 : : {
4008 : 0 : struct hns3_hw *hw = &hns->hw;
4009 : 0 : bool allmulti = hw->data->all_multicast ? true : false;
4010 : : int ret;
4011 : :
4012 [ # # ]: 0 : if (hw->data->promiscuous) {
4013 : 0 : ret = hns3_set_promisc_mode(hw, true, true);
4014 [ # # ]: 0 : if (ret)
4015 : 0 : hns3_err(hw, "failed to restore promiscuous mode, "
4016 : : "ret = %d", ret);
4017 : 0 : return ret;
4018 : : }
4019 : :
4020 : 0 : ret = hns3_set_promisc_mode(hw, false, allmulti);
4021 [ # # ]: 0 : if (ret)
4022 : 0 : hns3_err(hw, "failed to restore allmulticast mode, ret = %d",
4023 : : ret);
4024 : : return ret;
4025 : : }
4026 : :
4027 : : static int
4028 : 0 : hns3_get_sfp_info(struct hns3_hw *hw, struct hns3_mac *mac_info)
4029 : : {
4030 : : struct hns3_sfp_info_cmd *resp;
4031 : : uint32_t local_pause, lp_pause;
4032 : : struct hns3_cmd_desc desc;
4033 : : int ret;
4034 : :
4035 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GET_SFP_INFO, true);
4036 : : resp = (struct hns3_sfp_info_cmd *)desc.data;
4037 : 0 : resp->query_type = HNS3_ACTIVE_QUERY;
4038 : :
4039 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
4040 [ # # ]: 0 : if (ret == -EOPNOTSUPP) {
4041 : 0 : hns3_warn(hw, "firmware does not support get SFP info,"
4042 : : " ret = %d.", ret);
4043 : 0 : return ret;
4044 [ # # ]: 0 : } else if (ret) {
4045 : 0 : hns3_err(hw, "get sfp info failed, ret = %d.", ret);
4046 : 0 : return ret;
4047 : : }
4048 : :
4049 : : /*
4050 : : * In some case, the speed of MAC obtained from firmware may be 0, it
4051 : : * shouldn't be set to mac->speed.
4052 : : */
4053 [ # # ]: 0 : if (!rte_le_to_cpu_32(resp->sfp_speed))
4054 : : return 0;
4055 : :
4056 : 0 : mac_info->link_speed = rte_le_to_cpu_32(resp->sfp_speed);
4057 : : /*
4058 : : * if resp->supported_speed is 0, it means it's an old version
4059 : : * firmware, do not update these params.
4060 : : */
4061 [ # # ]: 0 : if (resp->supported_speed) {
4062 : 0 : mac_info->query_type = HNS3_ACTIVE_QUERY;
4063 : 0 : mac_info->supported_speed =
4064 : : rte_le_to_cpu_32(resp->supported_speed);
4065 : 0 : mac_info->support_autoneg = resp->autoneg_ability;
4066 : 0 : mac_info->link_autoneg = (resp->autoneg == 0) ? RTE_ETH_LINK_FIXED
4067 : 0 : : RTE_ETH_LINK_AUTONEG;
4068 : 0 : mac_info->fec_capa = resp->fec_ability;
4069 : 0 : local_pause = resp->pause_status & HNS3_FIBER_LOCAL_PAUSE_MASK;
4070 : 0 : lp_pause = (resp->pause_status & HNS3_FIBER_LP_PAUSE_MASK) >>
4071 : : HNS3_FIBER_LP_PAUSE_S;
4072 : 0 : mac_info->advertising =
4073 : 0 : local_pause << HNS3_PHY_LINK_MODE_PAUSE_S;
4074 : 0 : mac_info->lp_advertising =
4075 : 0 : lp_pause << HNS3_PHY_LINK_MODE_PAUSE_S;
4076 : : } else {
4077 : 0 : mac_info->query_type = HNS3_DEFAULT_QUERY;
4078 : : }
4079 : :
4080 : : return 0;
4081 : : }
4082 : :
4083 : : static uint8_t
4084 : : hns3_check_speed_dup(uint8_t duplex, uint32_t speed)
4085 : : {
4086 : 0 : if (!(speed == RTE_ETH_SPEED_NUM_10M || speed == RTE_ETH_SPEED_NUM_100M))
4087 : : duplex = RTE_ETH_LINK_FULL_DUPLEX;
4088 : :
4089 : : return duplex;
4090 : : }
4091 : :
4092 : : static int
4093 [ # # ]: 0 : hns3_cfg_mac_speed_dup(struct hns3_hw *hw, uint32_t speed, uint8_t duplex)
4094 : : {
4095 : : struct hns3_mac *mac = &hw->mac;
4096 : : int ret;
4097 : :
4098 : : duplex = hns3_check_speed_dup(duplex, speed);
4099 [ # # # # ]: 0 : if (mac->link_speed == speed && mac->link_duplex == duplex)
4100 : : return 0;
4101 : :
4102 : 0 : ret = hns3_cfg_mac_speed_dup_hw(hw, speed, duplex);
4103 [ # # ]: 0 : if (ret)
4104 : : return ret;
4105 : :
4106 : 0 : ret = hns3_port_shaper_update(hw, speed);
4107 [ # # ]: 0 : if (ret)
4108 : : return ret;
4109 : :
4110 : 0 : mac->link_speed = speed;
4111 : 0 : mac->link_duplex = duplex;
4112 : :
4113 : 0 : return 0;
4114 : : }
4115 : :
4116 : : static int
4117 : 0 : hns3_update_fiber_link_info(struct hns3_hw *hw)
4118 : : {
4119 : : struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
4120 : : struct hns3_mac *mac = &hw->mac;
4121 : : struct hns3_mac mac_info;
4122 : : int ret;
4123 : :
4124 : : /* If firmware do not support get SFP/qSFP speed, return directly */
4125 [ # # ]: 0 : if (!pf->support_sfp_query)
4126 : : return 0;
4127 : :
4128 : : memset(&mac_info, 0, sizeof(struct hns3_mac));
4129 : 0 : ret = hns3_get_sfp_info(hw, &mac_info);
4130 [ # # ]: 0 : if (ret == -EOPNOTSUPP) {
4131 : 0 : pf->support_sfp_query = false;
4132 : 0 : return ret;
4133 [ # # ]: 0 : } else if (ret)
4134 : : return ret;
4135 : :
4136 : : /* Do nothing if no SFP */
4137 [ # # ]: 0 : if (mac_info.link_speed == RTE_ETH_SPEED_NUM_NONE)
4138 : : return 0;
4139 : :
4140 : : /*
4141 : : * If query_type is HNS3_ACTIVE_QUERY, it is no need
4142 : : * to reconfigure the speed of MAC. Otherwise, it indicates
4143 : : * that the current firmware only supports to obtain the
4144 : : * speed of the SFP, and the speed of MAC needs to reconfigure.
4145 : : */
4146 : 0 : mac->query_type = mac_info.query_type;
4147 [ # # ]: 0 : if (mac->query_type == HNS3_ACTIVE_QUERY) {
4148 [ # # ]: 0 : if (mac_info.link_speed != mac->link_speed) {
4149 : 0 : ret = hns3_port_shaper_update(hw, mac_info.link_speed);
4150 [ # # ]: 0 : if (ret)
4151 : : return ret;
4152 : : }
4153 : :
4154 : 0 : mac->link_speed = mac_info.link_speed;
4155 : 0 : mac->supported_speed = mac_info.supported_speed;
4156 : 0 : mac->support_autoneg = mac_info.support_autoneg;
4157 : 0 : mac->link_autoneg = mac_info.link_autoneg;
4158 : 0 : mac->fec_capa = mac_info.fec_capa;
4159 : 0 : mac->advertising = mac_info.advertising;
4160 : 0 : mac->lp_advertising = mac_info.lp_advertising;
4161 : :
4162 : 0 : return 0;
4163 : : }
4164 : :
4165 : : /* Config full duplex for SFP */
4166 : 0 : return hns3_cfg_mac_speed_dup(hw, mac_info.link_speed,
4167 : : RTE_ETH_LINK_FULL_DUPLEX);
4168 : : }
4169 : :
4170 : : static void
4171 : : hns3_parse_copper_phy_params(struct hns3_cmd_desc *desc, struct hns3_mac *mac)
4172 : : {
4173 : : #define HNS3_PHY_SUPPORTED_SPEED_MASK 0x2f
4174 : :
4175 : : struct hns3_phy_params_bd0_cmd *req;
4176 : : uint32_t supported;
4177 : :
4178 : : req = (struct hns3_phy_params_bd0_cmd *)desc[0].data;
4179 : 0 : mac->link_speed = rte_le_to_cpu_32(req->speed);
4180 : 0 : mac->link_duplex = hns3_get_bit(req->duplex,
4181 : : HNS3_PHY_DUPLEX_CFG_B);
4182 : 0 : mac->link_autoneg = hns3_get_bit(req->autoneg,
4183 : : HNS3_PHY_AUTONEG_CFG_B);
4184 : 0 : mac->advertising = rte_le_to_cpu_32(req->advertising);
4185 : 0 : mac->lp_advertising = rte_le_to_cpu_32(req->lp_advertising);
4186 : 0 : supported = rte_le_to_cpu_32(req->supported);
4187 : 0 : mac->supported_speed = supported & HNS3_PHY_SUPPORTED_SPEED_MASK;
4188 : 0 : mac->support_autoneg = !!(supported & HNS3_PHY_LINK_MODE_AUTONEG_BIT);
4189 : : }
4190 : :
4191 : : static int
4192 : 0 : hns3_get_copper_phy_params(struct hns3_hw *hw, struct hns3_mac *mac)
4193 : : {
4194 : : struct hns3_cmd_desc desc[HNS3_PHY_PARAM_CFG_BD_NUM];
4195 : : uint16_t i;
4196 : : int ret;
4197 : :
4198 [ # # ]: 0 : for (i = 0; i < HNS3_PHY_PARAM_CFG_BD_NUM - 1; i++) {
4199 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG,
4200 : : true);
4201 : 0 : desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4202 : : }
4203 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG, true);
4204 : :
4205 : 0 : ret = hns3_cmd_send(hw, desc, HNS3_PHY_PARAM_CFG_BD_NUM);
4206 [ # # ]: 0 : if (ret) {
4207 : 0 : hns3_err(hw, "get phy parameters failed, ret = %d.", ret);
4208 : 0 : return ret;
4209 : : }
4210 : :
4211 : : hns3_parse_copper_phy_params(desc, mac);
4212 : :
4213 : 0 : return 0;
4214 : : }
4215 : :
4216 : : static int
4217 : 0 : hns3_update_copper_link_info(struct hns3_hw *hw)
4218 : : {
4219 : : struct hns3_mac *mac = &hw->mac;
4220 : : struct hns3_mac mac_info;
4221 : : int ret;
4222 : :
4223 : : memset(&mac_info, 0, sizeof(struct hns3_mac));
4224 : 0 : ret = hns3_get_copper_phy_params(hw, &mac_info);
4225 [ # # ]: 0 : if (ret)
4226 : : return ret;
4227 : :
4228 [ # # ]: 0 : if (mac_info.link_speed != mac->link_speed) {
4229 : 0 : ret = hns3_port_shaper_update(hw, mac_info.link_speed);
4230 [ # # ]: 0 : if (ret)
4231 : : return ret;
4232 : : }
4233 : :
4234 : 0 : mac->link_speed = mac_info.link_speed;
4235 : 0 : mac->link_duplex = mac_info.link_duplex;
4236 : 0 : mac->link_autoneg = mac_info.link_autoneg;
4237 : 0 : mac->supported_speed = mac_info.supported_speed;
4238 : 0 : mac->advertising = mac_info.advertising;
4239 : 0 : mac->lp_advertising = mac_info.lp_advertising;
4240 : 0 : mac->support_autoneg = mac_info.support_autoneg;
4241 : :
4242 : 0 : return 0;
4243 : : }
4244 : :
4245 : : static int
4246 : 0 : hns3_update_link_info(struct rte_eth_dev *eth_dev)
4247 : : {
4248 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
4249 : 0 : struct hns3_hw *hw = &hns->hw;
4250 : :
4251 [ # # ]: 0 : if (hw->mac.media_type == HNS3_MEDIA_TYPE_COPPER)
4252 : 0 : return hns3_update_copper_link_info(hw);
4253 : :
4254 : 0 : return hns3_update_fiber_link_info(hw);
4255 : : }
4256 : :
4257 : : static int
4258 : 0 : hns3_cfg_mac_mode(struct hns3_hw *hw, bool enable)
4259 : : {
4260 : : struct hns3_config_mac_mode_cmd *req;
4261 : : struct hns3_cmd_desc desc;
4262 : : uint32_t loop_en = 0;
4263 : : uint8_t val = 0;
4264 : : int ret;
4265 : :
4266 : : req = (struct hns3_config_mac_mode_cmd *)desc.data;
4267 : :
4268 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_MAC_MODE, false);
4269 [ # # ]: 0 : if (enable)
4270 : : val = 1;
4271 : 0 : hns3_set_bit(loop_en, HNS3_MAC_TX_EN_B, val);
4272 : 0 : hns3_set_bit(loop_en, HNS3_MAC_RX_EN_B, val);
4273 : 0 : hns3_set_bit(loop_en, HNS3_MAC_PAD_TX_B, val);
4274 : 0 : hns3_set_bit(loop_en, HNS3_MAC_PAD_RX_B, val);
4275 : : hns3_set_bit(loop_en, HNS3_MAC_1588_TX_B, 0);
4276 : : hns3_set_bit(loop_en, HNS3_MAC_1588_RX_B, 0);
4277 : : hns3_set_bit(loop_en, HNS3_MAC_APP_LP_B, 0);
4278 : : hns3_set_bit(loop_en, HNS3_MAC_LINE_LP_B, 0);
4279 : 0 : hns3_set_bit(loop_en, HNS3_MAC_FCS_TX_B, val);
4280 : 0 : hns3_set_bit(loop_en, HNS3_MAC_RX_FCS_B, val);
4281 : :
4282 : : /*
4283 : : * If RTE_ETH_RX_OFFLOAD_KEEP_CRC offload is set, MAC will not strip CRC
4284 : : * when receiving frames. Otherwise, CRC will be stripped.
4285 : : */
4286 [ # # ]: 0 : if (hw->data->dev_conf.rxmode.offloads & RTE_ETH_RX_OFFLOAD_KEEP_CRC)
4287 : : hns3_set_bit(loop_en, HNS3_MAC_RX_FCS_STRIP_B, 0);
4288 : : else
4289 : 0 : hns3_set_bit(loop_en, HNS3_MAC_RX_FCS_STRIP_B, val);
4290 : 0 : hns3_set_bit(loop_en, HNS3_MAC_TX_OVERSIZE_TRUNCATE_B, val);
4291 : 0 : hns3_set_bit(loop_en, HNS3_MAC_RX_OVERSIZE_TRUNCATE_B, val);
4292 : 0 : hns3_set_bit(loop_en, HNS3_MAC_TX_UNDER_MIN_ERR_B, val);
4293 : 0 : req->txrx_pad_fcs_loop_en = rte_cpu_to_le_32(loop_en);
4294 : :
4295 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
4296 [ # # ]: 0 : if (ret)
4297 : 0 : PMD_INIT_LOG(ERR, "mac enable fail, ret =%d.", ret);
4298 : :
4299 : 0 : return ret;
4300 : : }
4301 : :
4302 : : static int
4303 : 0 : hns3_get_mac_link_status(struct hns3_hw *hw)
4304 : : {
4305 : : struct hns3_link_status_cmd *req;
4306 : : struct hns3_cmd_desc desc;
4307 : : int link_status;
4308 : : int ret;
4309 : :
4310 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_QUERY_LINK_STATUS, true);
4311 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
4312 [ # # ]: 0 : if (ret) {
4313 : 0 : hns3_err(hw, "get link status cmd failed %d", ret);
4314 : 0 : return RTE_ETH_LINK_DOWN;
4315 : : }
4316 : :
4317 : : req = (struct hns3_link_status_cmd *)desc.data;
4318 : 0 : link_status = req->status & HNS3_LINK_STATUS_UP_M;
4319 : :
4320 : 0 : return !!link_status;
4321 : : }
4322 : :
4323 : : static bool
4324 : 0 : hns3_update_link_status(struct hns3_hw *hw)
4325 : : {
4326 : : int state;
4327 : :
4328 : 0 : state = hns3_get_mac_link_status(hw);
4329 [ # # ]: 0 : if (state != hw->mac.link_status) {
4330 : 0 : hw->mac.link_status = state;
4331 [ # # ]: 0 : hns3_warn(hw, "Link status change to %s!", state ? "up" : "down");
4332 : 0 : return true;
4333 : : }
4334 : :
4335 : : return false;
4336 : : }
4337 : :
4338 : : void
4339 : 0 : hns3_update_linkstatus_and_event(struct hns3_hw *hw, bool query)
4340 : : {
4341 : 0 : struct rte_eth_dev *dev = &rte_eth_devices[hw->data->port_id];
4342 : : struct rte_eth_link new_link;
4343 : : int ret;
4344 : :
4345 [ # # ]: 0 : if (query)
4346 : 0 : hns3_update_port_link_info(dev);
4347 : :
4348 : : memset(&new_link, 0, sizeof(new_link));
4349 : 0 : hns3_setup_linkstatus(dev, &new_link);
4350 : :
4351 : : ret = rte_eth_linkstatus_set(dev, &new_link);
4352 [ # # ]: 0 : if (ret == 0 && dev->data->dev_conf.intr_conf.lsc != 0)
4353 : 0 : hns3_start_report_lse(dev);
4354 : 0 : }
4355 : :
4356 : : static void
4357 : 0 : hns3_service_handler(void *param)
4358 : : {
4359 : : struct rte_eth_dev *eth_dev = (struct rte_eth_dev *)param;
4360 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
4361 : 0 : struct hns3_hw *hw = &hns->hw;
4362 : :
4363 [ # # ]: 0 : if (!hns3_is_reset_pending(hns)) {
4364 : 0 : hns3_update_linkstatus_and_event(hw, true);
4365 : 0 : hns3_update_hw_stats(hw);
4366 : : } else {
4367 : 0 : hns3_warn(hw, "Cancel the query when reset is pending");
4368 : : }
4369 : :
4370 : 0 : rte_eal_alarm_set(HNS3_SERVICE_INTERVAL, hns3_service_handler, eth_dev);
4371 : 0 : }
4372 : :
4373 : : static int
4374 : 0 : hns3_init_hardware(struct hns3_adapter *hns)
4375 : : {
4376 : 0 : struct hns3_hw *hw = &hns->hw;
4377 : : int ret;
4378 : :
4379 : : /*
4380 : : * All queue-related HW operations must be performed after the TCAM
4381 : : * table is configured.
4382 : : */
4383 : 0 : ret = hns3_map_tqp(hw);
4384 [ # # ]: 0 : if (ret) {
4385 : 0 : PMD_INIT_LOG(ERR, "Failed to map tqp: %d", ret);
4386 : 0 : return ret;
4387 : : }
4388 : :
4389 : 0 : ret = hns3_init_umv_space(hw);
4390 [ # # ]: 0 : if (ret) {
4391 : 0 : PMD_INIT_LOG(ERR, "Failed to init umv space: %d", ret);
4392 : 0 : return ret;
4393 : : }
4394 : :
4395 : 0 : ret = hns3_mac_init(hw);
4396 [ # # ]: 0 : if (ret) {
4397 : 0 : PMD_INIT_LOG(ERR, "Failed to init MAC: %d", ret);
4398 : 0 : goto err_mac_init;
4399 : : }
4400 : :
4401 : 0 : ret = hns3_init_mgr_tbl(hw);
4402 [ # # ]: 0 : if (ret) {
4403 : 0 : PMD_INIT_LOG(ERR, "Failed to init manager table: %d", ret);
4404 : 0 : goto err_mac_init;
4405 : : }
4406 : :
4407 : 0 : ret = hns3_promisc_init(hw);
4408 [ # # ]: 0 : if (ret) {
4409 : 0 : PMD_INIT_LOG(ERR, "Failed to init promisc: %d",
4410 : : ret);
4411 : 0 : goto err_mac_init;
4412 : : }
4413 : :
4414 : 0 : ret = hns3_init_vlan_config(hns);
4415 [ # # ]: 0 : if (ret) {
4416 : 0 : PMD_INIT_LOG(ERR, "Failed to init vlan: %d", ret);
4417 : 0 : goto err_mac_init;
4418 : : }
4419 : :
4420 : 0 : ret = hns3_dcb_init(hw);
4421 [ # # ]: 0 : if (ret) {
4422 : 0 : PMD_INIT_LOG(ERR, "Failed to init dcb: %d", ret);
4423 : 0 : goto err_mac_init;
4424 : : }
4425 : :
4426 : 0 : ret = hns3_init_fd_config(hns);
4427 [ # # ]: 0 : if (ret) {
4428 : 0 : PMD_INIT_LOG(ERR, "Failed to init flow director: %d", ret);
4429 : 0 : goto err_mac_init;
4430 : : }
4431 : :
4432 : 0 : ret = hns3_config_tso(hw, HNS3_TSO_MSS_MIN, HNS3_TSO_MSS_MAX);
4433 [ # # ]: 0 : if (ret) {
4434 : 0 : PMD_INIT_LOG(ERR, "Failed to config tso: %d", ret);
4435 : 0 : goto err_mac_init;
4436 : : }
4437 : :
4438 : 0 : ret = hns3_config_gro(hw, false);
4439 [ # # ]: 0 : if (ret) {
4440 : 0 : PMD_INIT_LOG(ERR, "Failed to config gro: %d", ret);
4441 : 0 : goto err_mac_init;
4442 : : }
4443 : :
4444 : : /*
4445 : : * In the initialization clearing the all hardware mapping relationship
4446 : : * configurations between queues and interrupt vectors is needed, so
4447 : : * some error caused by the residual configurations, such as the
4448 : : * unexpected interrupt, can be avoid.
4449 : : */
4450 : 0 : ret = hns3_init_ring_with_vector(hw);
4451 [ # # ]: 0 : if (ret) {
4452 : 0 : PMD_INIT_LOG(ERR, "Failed to init ring intr vector: %d", ret);
4453 : 0 : goto err_mac_init;
4454 : : }
4455 : :
4456 : 0 : ret = hns3_ptp_init(hw);
4457 [ # # ]: 0 : if (ret) {
4458 : 0 : PMD_INIT_LOG(ERR, "Failed to init PTP, ret = %d", ret);
4459 : 0 : goto err_mac_init;
4460 : : }
4461 : :
4462 : : return 0;
4463 : :
4464 : 0 : err_mac_init:
4465 : 0 : hns3_uninit_umv_space(hw);
4466 : 0 : return ret;
4467 : : }
4468 : :
4469 : : static int
4470 : 0 : hns3_clear_hw(struct hns3_hw *hw)
4471 : : {
4472 : : struct hns3_cmd_desc desc;
4473 : : int ret;
4474 : :
4475 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CLEAR_HW_STATE, false);
4476 : :
4477 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
4478 [ # # ]: 0 : if (ret && ret != -EOPNOTSUPP)
4479 : 0 : return ret;
4480 : :
4481 : : return 0;
4482 : : }
4483 : :
4484 : : static void
4485 : : hns3_config_all_msix_error(struct hns3_hw *hw, bool enable)
4486 : : {
4487 : : uint32_t val;
4488 : :
4489 : : /*
4490 : : * The new firmware support report more hardware error types by
4491 : : * msix mode. These errors are defined as RAS errors in hardware
4492 : : * and belong to a different type from the MSI-x errors processed
4493 : : * by the network driver.
4494 : : *
4495 : : * Network driver should open the new error report on initialization.
4496 : : */
4497 : 0 : val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
4498 : 0 : hns3_set_bit(val, HNS3_VECTOR0_ALL_MSIX_ERR_B, enable ? 1 : 0);
4499 : 0 : hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, val);
4500 : : }
4501 : :
4502 : : static uint32_t
4503 : 0 : hns3_set_firber_default_support_speed(struct hns3_hw *hw)
4504 : : {
4505 : : struct hns3_mac *mac = &hw->mac;
4506 : :
4507 [ # # # # : 0 : switch (mac->link_speed) {
# # # # ]
4508 : : case RTE_ETH_SPEED_NUM_1G:
4509 : : return HNS3_FIBER_LINK_SPEED_1G_BIT;
4510 : 0 : case RTE_ETH_SPEED_NUM_10G:
4511 : 0 : return HNS3_FIBER_LINK_SPEED_10G_BIT;
4512 : 0 : case RTE_ETH_SPEED_NUM_25G:
4513 : 0 : return HNS3_FIBER_LINK_SPEED_25G_BIT;
4514 : 0 : case RTE_ETH_SPEED_NUM_40G:
4515 : 0 : return HNS3_FIBER_LINK_SPEED_40G_BIT;
4516 : 0 : case RTE_ETH_SPEED_NUM_50G:
4517 : 0 : return HNS3_FIBER_LINK_SPEED_50G_BIT;
4518 : 0 : case RTE_ETH_SPEED_NUM_100G:
4519 : 0 : return HNS3_FIBER_LINK_SPEED_100G_BIT;
4520 : 0 : case RTE_ETH_SPEED_NUM_200G:
4521 : 0 : return HNS3_FIBER_LINK_SPEED_200G_BIT;
4522 : 0 : default:
4523 : 0 : hns3_warn(hw, "invalid speed %u Mbps.", mac->link_speed);
4524 : 0 : return 0;
4525 : : }
4526 : : }
4527 : :
4528 : : /*
4529 : : * Validity of supported_speed for fiber and copper media type can be
4530 : : * guaranteed by the following policy:
4531 : : * Copper:
4532 : : * Although the initialization of the phy in the firmware may not be
4533 : : * completed, the firmware can guarantees that the supported_speed is
4534 : : * an valid value.
4535 : : * Firber:
4536 : : * If the version of firmware supports the active query way of the
4537 : : * HNS3_OPC_GET_SFP_INFO opcode, the supported_speed can be obtained
4538 : : * through it. If unsupported, use the SFP's speed as the value of the
4539 : : * supported_speed.
4540 : : */
4541 : : static int
4542 : 0 : hns3_get_port_supported_speed(struct rte_eth_dev *eth_dev)
4543 : : {
4544 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
4545 : 0 : struct hns3_hw *hw = &hns->hw;
4546 : : struct hns3_mac *mac = &hw->mac;
4547 : : int ret;
4548 : :
4549 : 0 : ret = hns3_update_link_info(eth_dev);
4550 [ # # ]: 0 : if (ret)
4551 : : return ret;
4552 : :
4553 [ # # ]: 0 : if (mac->media_type == HNS3_MEDIA_TYPE_FIBER ||
4554 : : mac->media_type == HNS3_MEDIA_TYPE_BACKPLANE) {
4555 : : /*
4556 : : * Some firmware does not support the report of supported_speed,
4557 : : * and only report the effective speed of SFP/backplane. In this
4558 : : * case, it is necessary to use the SFP/backplane's speed as the
4559 : : * supported_speed.
4560 : : */
4561 [ # # ]: 0 : if (mac->supported_speed == 0)
4562 : 0 : mac->supported_speed =
4563 : 0 : hns3_set_firber_default_support_speed(hw);
4564 : : }
4565 : :
4566 : : return 0;
4567 : : }
4568 : :
4569 : : static int
4570 : 0 : hns3_init_pf(struct rte_eth_dev *eth_dev)
4571 : : {
4572 : 0 : struct rte_device *dev = eth_dev->device;
4573 : 0 : struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev);
4574 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
4575 : 0 : struct hns3_hw *hw = &hns->hw;
4576 : : int ret;
4577 : :
4578 : 0 : PMD_INIT_FUNC_TRACE();
4579 : :
4580 : : /* Get hardware io base address from pcie BAR2 IO space */
4581 : 0 : hw->io_base = pci_dev->mem_resource[2].addr;
4582 : :
4583 : 0 : ret = hns3_get_pci_revision_id(hw, &hw->revision);
4584 [ # # ]: 0 : if (ret)
4585 : : return ret;
4586 : :
4587 : : /* Firmware command queue initialize */
4588 : 0 : ret = hns3_cmd_init_queue(hw);
4589 [ # # ]: 0 : if (ret) {
4590 : 0 : PMD_INIT_LOG(ERR, "Failed to init cmd queue: %d", ret);
4591 : 0 : goto err_cmd_init_queue;
4592 : : }
4593 : :
4594 : 0 : hns3_clear_all_event_cause(hw);
4595 : :
4596 : : /* Firmware command initialize */
4597 : 0 : ret = hns3_cmd_init(hw);
4598 [ # # ]: 0 : if (ret) {
4599 : 0 : PMD_INIT_LOG(ERR, "Failed to init cmd: %d", ret);
4600 : 0 : goto err_cmd_init;
4601 : : }
4602 : :
4603 : 0 : hns3_tx_push_init(eth_dev);
4604 : :
4605 : : /*
4606 : : * To ensure that the hardware environment is clean during
4607 : : * initialization, the driver actively clear the hardware environment
4608 : : * during initialization, including PF and corresponding VFs' vlan, mac,
4609 : : * flow table configurations, etc.
4610 : : */
4611 : 0 : ret = hns3_clear_hw(hw);
4612 [ # # ]: 0 : if (ret) {
4613 : 0 : PMD_INIT_LOG(ERR, "failed to clear hardware: %d", ret);
4614 : 0 : goto err_cmd_init;
4615 : : }
4616 : :
4617 : : hns3_config_all_msix_error(hw, true);
4618 : :
4619 : 0 : ret = rte_intr_callback_register(pci_dev->intr_handle,
4620 : : hns3_interrupt_handler,
4621 : : eth_dev);
4622 [ # # ]: 0 : if (ret) {
4623 : 0 : PMD_INIT_LOG(ERR, "Failed to register intr: %d", ret);
4624 : 0 : goto err_intr_callback_register;
4625 : : }
4626 : :
4627 : : /* Enable interrupt */
4628 : 0 : rte_intr_enable(pci_dev->intr_handle);
4629 : : hns3_pf_enable_irq0(hw);
4630 : :
4631 : : /* Get configuration */
4632 : 0 : ret = hns3_get_configuration(hw);
4633 [ # # ]: 0 : if (ret) {
4634 : 0 : PMD_INIT_LOG(ERR, "Failed to fetch configuration: %d", ret);
4635 : 0 : goto err_get_config;
4636 : : }
4637 : :
4638 : 0 : ret = hns3_stats_init(hw);
4639 [ # # ]: 0 : if (ret)
4640 : 0 : goto err_get_config;
4641 : :
4642 : 0 : ret = hns3_init_hardware(hns);
4643 [ # # ]: 0 : if (ret) {
4644 : 0 : PMD_INIT_LOG(ERR, "Failed to init hardware: %d", ret);
4645 : 0 : goto err_init_hw;
4646 : : }
4647 : :
4648 : : /* Initialize flow director filter list & hash */
4649 : 0 : ret = hns3_fdir_filter_init(hns);
4650 [ # # ]: 0 : if (ret) {
4651 : 0 : PMD_INIT_LOG(ERR, "Failed to alloc hashmap for fdir: %d", ret);
4652 : 0 : goto err_fdir;
4653 : : }
4654 : :
4655 : 0 : hns3_rss_set_default_args(hw);
4656 : :
4657 : 0 : ret = hns3_enable_hw_error_intr(hns, true);
4658 [ # # ]: 0 : if (ret) {
4659 : 0 : PMD_INIT_LOG(ERR, "fail to enable hw error interrupts: %d",
4660 : : ret);
4661 : 0 : goto err_enable_intr;
4662 : : }
4663 : :
4664 : 0 : ret = hns3_get_port_supported_speed(eth_dev);
4665 [ # # ]: 0 : if (ret) {
4666 : 0 : PMD_INIT_LOG(ERR, "failed to get speed capabilities supported "
4667 : : "by device, ret = %d.", ret);
4668 : 0 : goto err_supported_speed;
4669 : : }
4670 : :
4671 : 0 : hns3_tm_conf_init(eth_dev);
4672 : :
4673 : 0 : return 0;
4674 : :
4675 : : err_supported_speed:
4676 : 0 : (void)hns3_enable_hw_error_intr(hns, false);
4677 : 0 : err_enable_intr:
4678 : 0 : hns3_fdir_filter_uninit(hns);
4679 : 0 : err_fdir:
4680 : 0 : hns3_uninit_umv_space(hw);
4681 : 0 : hns3_ptp_uninit(hw);
4682 : 0 : err_init_hw:
4683 : 0 : hns3_stats_uninit(hw);
4684 : 0 : err_get_config:
4685 : : hns3_pf_disable_irq0(hw);
4686 : 0 : rte_intr_disable(pci_dev->intr_handle);
4687 : 0 : hns3_intr_unregister(pci_dev->intr_handle, hns3_interrupt_handler,
4688 : : eth_dev);
4689 : 0 : err_intr_callback_register:
4690 : 0 : err_cmd_init:
4691 : 0 : hns3_cmd_uninit(hw);
4692 : 0 : hns3_cmd_destroy_queue(hw);
4693 : 0 : err_cmd_init_queue:
4694 : 0 : hw->io_base = NULL;
4695 : :
4696 : 0 : return ret;
4697 : : }
4698 : :
4699 : : static void
4700 : 0 : hns3_uninit_pf(struct rte_eth_dev *eth_dev)
4701 : : {
4702 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
4703 : 0 : struct rte_device *dev = eth_dev->device;
4704 : 0 : struct rte_pci_device *pci_dev = RTE_DEV_TO_PCI(dev);
4705 : 0 : struct hns3_hw *hw = &hns->hw;
4706 : :
4707 : 0 : PMD_INIT_FUNC_TRACE();
4708 : :
4709 : 0 : hns3_tm_conf_uninit(eth_dev);
4710 : 0 : hns3_enable_hw_error_intr(hns, false);
4711 : 0 : hns3_rss_uninit(hns);
4712 : 0 : (void)hns3_config_gro(hw, false);
4713 : 0 : hns3_promisc_uninit(hw);
4714 : 0 : hns3_flow_uninit(eth_dev);
4715 : 0 : hns3_fdir_filter_uninit(hns);
4716 : 0 : hns3_uninit_umv_space(hw);
4717 : 0 : hns3_ptp_uninit(hw);
4718 : 0 : hns3_stats_uninit(hw);
4719 : 0 : hns3_config_mac_tnl_int(hw, false);
4720 : : hns3_pf_disable_irq0(hw);
4721 : 0 : rte_intr_disable(pci_dev->intr_handle);
4722 : 0 : hns3_intr_unregister(pci_dev->intr_handle, hns3_interrupt_handler,
4723 : : eth_dev);
4724 : : hns3_config_all_msix_error(hw, false);
4725 : 0 : hns3_cmd_uninit(hw);
4726 : 0 : hns3_cmd_destroy_queue(hw);
4727 : 0 : hw->io_base = NULL;
4728 : 0 : }
4729 : :
4730 : : static uint32_t
4731 : : hns3_convert_link_speeds2bitmap_copper(uint32_t link_speeds)
4732 : : {
4733 : : uint32_t speed_bit;
4734 : :
4735 [ # # ]: 0 : switch (link_speeds & ~RTE_ETH_LINK_SPEED_FIXED) {
4736 : : case RTE_ETH_LINK_SPEED_10M:
4737 : : speed_bit = HNS3_PHY_LINK_SPEED_10M_BIT;
4738 : : break;
4739 : : case RTE_ETH_LINK_SPEED_10M_HD:
4740 : : speed_bit = HNS3_PHY_LINK_SPEED_10M_HD_BIT;
4741 : : break;
4742 : : case RTE_ETH_LINK_SPEED_100M:
4743 : : speed_bit = HNS3_PHY_LINK_SPEED_100M_BIT;
4744 : : break;
4745 : : case RTE_ETH_LINK_SPEED_100M_HD:
4746 : : speed_bit = HNS3_PHY_LINK_SPEED_100M_HD_BIT;
4747 : : break;
4748 : : case RTE_ETH_LINK_SPEED_1G:
4749 : : speed_bit = HNS3_PHY_LINK_SPEED_1000M_BIT;
4750 : : break;
4751 : : default:
4752 : : speed_bit = 0;
4753 : : break;
4754 : : }
4755 : :
4756 : : return speed_bit;
4757 : : }
4758 : :
4759 : : static uint32_t
4760 : : hns3_convert_link_speeds2bitmap_fiber(uint32_t link_speeds)
4761 : : {
4762 : : uint32_t speed_bit;
4763 : :
4764 [ # # # # : 0 : switch (link_speeds & ~RTE_ETH_LINK_SPEED_FIXED) {
# # # # ]
4765 : : case RTE_ETH_LINK_SPEED_1G:
4766 : : speed_bit = HNS3_FIBER_LINK_SPEED_1G_BIT;
4767 : : break;
4768 : 0 : case RTE_ETH_LINK_SPEED_10G:
4769 : : speed_bit = HNS3_FIBER_LINK_SPEED_10G_BIT;
4770 : 0 : break;
4771 : 0 : case RTE_ETH_LINK_SPEED_25G:
4772 : : speed_bit = HNS3_FIBER_LINK_SPEED_25G_BIT;
4773 : 0 : break;
4774 : 0 : case RTE_ETH_LINK_SPEED_40G:
4775 : : speed_bit = HNS3_FIBER_LINK_SPEED_40G_BIT;
4776 : 0 : break;
4777 : 0 : case RTE_ETH_LINK_SPEED_50G:
4778 : : speed_bit = HNS3_FIBER_LINK_SPEED_50G_BIT;
4779 : 0 : break;
4780 : 0 : case RTE_ETH_LINK_SPEED_100G:
4781 : : speed_bit = HNS3_FIBER_LINK_SPEED_100G_BIT;
4782 : 0 : break;
4783 : 0 : case RTE_ETH_LINK_SPEED_200G:
4784 : : speed_bit = HNS3_FIBER_LINK_SPEED_200G_BIT;
4785 : 0 : break;
4786 : 0 : default:
4787 : : speed_bit = 0;
4788 : 0 : break;
4789 : : }
4790 : :
4791 : : return speed_bit;
4792 : : }
4793 : :
4794 : : static int
4795 : 0 : hns3_check_port_speed(struct hns3_hw *hw, uint32_t link_speeds)
4796 : : {
4797 : : struct hns3_mac *mac = &hw->mac;
4798 : 0 : uint32_t supported_speed = mac->supported_speed;
4799 : : uint32_t speed_bit = 0;
4800 : :
4801 [ # # ]: 0 : if (mac->media_type == HNS3_MEDIA_TYPE_COPPER)
4802 : : speed_bit = hns3_convert_link_speeds2bitmap_copper(link_speeds);
4803 : : else
4804 : : speed_bit = hns3_convert_link_speeds2bitmap_fiber(link_speeds);
4805 : :
4806 [ # # ]: 0 : if (!(speed_bit & supported_speed)) {
4807 : 0 : hns3_err(hw, "link_speeds(0x%x) exceeds the supported speed capability or is incorrect.",
4808 : : link_speeds);
4809 : 0 : return -EINVAL;
4810 : : }
4811 : :
4812 : : return 0;
4813 : : }
4814 : :
4815 : : static uint32_t
4816 : 0 : hns3_get_link_speed(uint32_t link_speeds)
4817 : : {
4818 : : uint32_t speed = RTE_ETH_SPEED_NUM_NONE;
4819 : :
4820 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_10M ||
4821 : : link_speeds & RTE_ETH_LINK_SPEED_10M_HD)
4822 : : speed = RTE_ETH_SPEED_NUM_10M;
4823 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_100M ||
4824 : : link_speeds & RTE_ETH_LINK_SPEED_100M_HD)
4825 : : speed = RTE_ETH_SPEED_NUM_100M;
4826 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_1G)
4827 : : speed = RTE_ETH_SPEED_NUM_1G;
4828 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_10G)
4829 : : speed = RTE_ETH_SPEED_NUM_10G;
4830 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_25G)
4831 : : speed = RTE_ETH_SPEED_NUM_25G;
4832 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_40G)
4833 : : speed = RTE_ETH_SPEED_NUM_40G;
4834 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_50G)
4835 : : speed = RTE_ETH_SPEED_NUM_50G;
4836 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_100G)
4837 : : speed = RTE_ETH_SPEED_NUM_100G;
4838 [ # # ]: 0 : if (link_speeds & RTE_ETH_LINK_SPEED_200G)
4839 : : speed = RTE_ETH_SPEED_NUM_200G;
4840 : :
4841 : 0 : return speed;
4842 : : }
4843 : :
4844 : : static uint8_t
4845 : : hns3_get_link_duplex(uint32_t link_speeds)
4846 : : {
4847 : 0 : if ((link_speeds & RTE_ETH_LINK_SPEED_10M_HD) ||
4848 : : (link_speeds & RTE_ETH_LINK_SPEED_100M_HD))
4849 : : return RTE_ETH_LINK_HALF_DUPLEX;
4850 : : else
4851 : 0 : return RTE_ETH_LINK_FULL_DUPLEX;
4852 : : }
4853 : :
4854 : : static int
4855 : 0 : hns3_copper_port_link_speed_cfg(struct hns3_hw *hw,
4856 : : struct hns3_set_link_speed_cfg *cfg)
4857 : : {
4858 : : struct hns3_cmd_desc desc[HNS3_PHY_PARAM_CFG_BD_NUM];
4859 : : struct hns3_phy_params_bd0_cmd *req;
4860 : : uint16_t i;
4861 : :
4862 [ # # ]: 0 : for (i = 0; i < HNS3_PHY_PARAM_CFG_BD_NUM - 1; i++) {
4863 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG,
4864 : : false);
4865 : 0 : desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
4866 : : }
4867 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_PHY_PARAM_CFG, false);
4868 : : req = (struct hns3_phy_params_bd0_cmd *)desc[0].data;
4869 : 0 : req->autoneg = cfg->autoneg;
4870 : :
4871 : : /*
4872 : : * The full speed capability is used to negotiate when
4873 : : * auto-negotiation is enabled.
4874 : : */
4875 [ # # ]: 0 : if (cfg->autoneg) {
4876 : 0 : req->advertising = HNS3_PHY_LINK_SPEED_10M_BIT |
4877 : : HNS3_PHY_LINK_SPEED_10M_HD_BIT |
4878 : : HNS3_PHY_LINK_SPEED_100M_BIT |
4879 : : HNS3_PHY_LINK_SPEED_100M_HD_BIT |
4880 : : HNS3_PHY_LINK_SPEED_1000M_BIT;
4881 : : } else {
4882 : 0 : req->speed = cfg->speed;
4883 : 0 : req->duplex = cfg->duplex;
4884 : : }
4885 : :
4886 : 0 : return hns3_cmd_send(hw, desc, HNS3_PHY_PARAM_CFG_BD_NUM);
4887 : : }
4888 : :
4889 : : static int
4890 : 0 : hns3_set_copper_port_link_speed(struct hns3_hw *hw,
4891 : : struct hns3_set_link_speed_cfg *cfg)
4892 : : {
4893 : : #define HNS3_PHY_PARAM_CFG_RETRY_TIMES 10
4894 : : #define HNS3_PHY_PARAM_CFG_RETRY_DELAY_MS 100
4895 : : uint32_t retry_cnt = 0;
4896 : : int ret;
4897 : :
4898 : : /*
4899 : : * The initialization of copper port contains the following two steps.
4900 : : * 1. Configure firmware takeover the PHY. The firmware will start an
4901 : : * asynchronous task to initialize the PHY chip.
4902 : : * 2. Configure work speed and duplex.
4903 : : * In earlier versions of the firmware, when the asynchronous task is not
4904 : : * finished, the firmware will return -ENOTBLK in the second step. And this
4905 : : * will lead to driver failed to initialize. Here add retry for this case.
4906 : : */
4907 : 0 : ret = hns3_copper_port_link_speed_cfg(hw, cfg);
4908 [ # # # # ]: 0 : while (ret == -ENOTBLK && retry_cnt++ < HNS3_PHY_PARAM_CFG_RETRY_TIMES) {
4909 : : rte_delay_ms(HNS3_PHY_PARAM_CFG_RETRY_DELAY_MS);
4910 : 0 : ret = hns3_copper_port_link_speed_cfg(hw, cfg);
4911 : : }
4912 : :
4913 : 0 : return ret;
4914 : : }
4915 : :
4916 : : static int
4917 : 0 : hns3_set_autoneg(struct hns3_hw *hw, bool enable)
4918 : : {
4919 : : struct hns3_config_auto_neg_cmd *req;
4920 : : struct hns3_cmd_desc desc;
4921 : : uint32_t flag = 0;
4922 : : int ret;
4923 : :
4924 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_AN_MODE, false);
4925 : :
4926 : : req = (struct hns3_config_auto_neg_cmd *)desc.data;
4927 [ # # ]: 0 : if (enable)
4928 : : hns3_set_bit(flag, HNS3_MAC_CFG_AN_EN_B, 1);
4929 : 0 : req->cfg_an_cmd_flag = rte_cpu_to_le_32(flag);
4930 : :
4931 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
4932 [ # # ]: 0 : if (ret)
4933 : 0 : hns3_err(hw, "autoneg set cmd failed, ret = %d.", ret);
4934 : :
4935 : 0 : return ret;
4936 : : }
4937 : :
4938 : : static int
4939 : 0 : hns3_set_fiber_port_link_speed(struct hns3_hw *hw,
4940 : : struct hns3_set_link_speed_cfg *cfg)
4941 : : {
4942 : : int ret;
4943 : :
4944 [ # # ]: 0 : if (hw->mac.support_autoneg) {
4945 : 0 : ret = hns3_set_autoneg(hw, cfg->autoneg);
4946 [ # # ]: 0 : if (ret) {
4947 : 0 : hns3_err(hw, "failed to configure auto-negotiation.");
4948 : 0 : return ret;
4949 : : }
4950 : :
4951 : : /*
4952 : : * To enable auto-negotiation, we only need to open the switch
4953 : : * of auto-negotiation, then firmware sets all speed
4954 : : * capabilities.
4955 : : */
4956 [ # # ]: 0 : if (cfg->autoneg)
4957 : : return 0;
4958 : : }
4959 : :
4960 : : /*
4961 : : * Some hardware doesn't support auto-negotiation, but users may not
4962 : : * configure link_speeds (default 0), which means auto-negotiation.
4963 : : * In this case, a warning message need to be printed, instead of
4964 : : * an error.
4965 : : */
4966 [ # # ]: 0 : if (cfg->autoneg) {
4967 : 0 : hns3_warn(hw, "auto-negotiation is not supported, use default fixed speed!");
4968 : 0 : return 0;
4969 : : }
4970 : :
4971 : 0 : return hns3_cfg_mac_speed_dup(hw, cfg->speed, cfg->duplex);
4972 : : }
4973 : :
4974 : : const char *
4975 : 0 : hns3_get_media_type_name(uint8_t media_type)
4976 : : {
4977 [ # # ]: 0 : if (media_type == HNS3_MEDIA_TYPE_FIBER)
4978 : : return "fiber";
4979 [ # # ]: 0 : else if (media_type == HNS3_MEDIA_TYPE_COPPER)
4980 : : return "copper";
4981 [ # # ]: 0 : else if (media_type == HNS3_MEDIA_TYPE_BACKPLANE)
4982 : : return "backplane";
4983 : : else
4984 : 0 : return "unknown";
4985 : : }
4986 : :
4987 : : static int
4988 : 0 : hns3_set_port_link_speed(struct hns3_hw *hw,
4989 : : struct hns3_set_link_speed_cfg *cfg)
4990 : : {
4991 : : int ret;
4992 : :
4993 [ # # ]: 0 : if (hw->mac.media_type == HNS3_MEDIA_TYPE_COPPER)
4994 : 0 : ret = hns3_set_copper_port_link_speed(hw, cfg);
4995 : : else
4996 : 0 : ret = hns3_set_fiber_port_link_speed(hw, cfg);
4997 : :
4998 [ # # ]: 0 : if (ret) {
4999 : 0 : hns3_err(hw, "failed to set %s port link speed, ret = %d.",
5000 : : hns3_get_media_type_name(hw->mac.media_type),
5001 : : ret);
5002 : 0 : return ret;
5003 : : }
5004 : :
5005 : : return 0;
5006 : : }
5007 : :
5008 : : static int
5009 : 0 : hns3_apply_link_speed(struct hns3_hw *hw)
5010 : : {
5011 [ # # ]: 0 : struct rte_eth_conf *conf = &hw->data->dev_conf;
5012 : : struct hns3_set_link_speed_cfg cfg;
5013 : :
5014 : : memset(&cfg, 0, sizeof(struct hns3_set_link_speed_cfg));
5015 : 0 : cfg.autoneg = (conf->link_speeds == RTE_ETH_LINK_SPEED_AUTONEG) ?
5016 : 0 : RTE_ETH_LINK_AUTONEG : RTE_ETH_LINK_FIXED;
5017 [ # # ]: 0 : if (cfg.autoneg != RTE_ETH_LINK_AUTONEG) {
5018 [ # # ]: 0 : cfg.speed = hns3_get_link_speed(conf->link_speeds);
5019 : 0 : cfg.duplex = hns3_get_link_duplex(conf->link_speeds);
5020 : : }
5021 : :
5022 : 0 : return hns3_set_port_link_speed(hw, &cfg);
5023 : : }
5024 : :
5025 : : static int
5026 : 0 : hns3_do_start(struct hns3_adapter *hns, bool reset_queue)
5027 : : {
5028 : 0 : struct hns3_hw *hw = &hns->hw;
5029 : : bool link_en;
5030 : : int ret;
5031 : :
5032 : 0 : ret = hns3_update_queue_map_configure(hns);
5033 [ # # ]: 0 : if (ret) {
5034 : 0 : hns3_err(hw, "failed to update queue mapping configuration, ret = %d",
5035 : : ret);
5036 : 0 : return ret;
5037 : : }
5038 : :
5039 : : /* Note: hns3_tm_conf_update must be called after configuring DCB. */
5040 : 0 : ret = hns3_tm_conf_update(hw);
5041 [ # # ]: 0 : if (ret) {
5042 : 0 : PMD_INIT_LOG(ERR, "failed to update tm conf, ret = %d.", ret);
5043 : 0 : return ret;
5044 : : }
5045 : :
5046 : 0 : hns3_enable_rxd_adv_layout(hw);
5047 : :
5048 : 0 : ret = hns3_init_queues(hns, reset_queue);
5049 [ # # ]: 0 : if (ret) {
5050 : 0 : PMD_INIT_LOG(ERR, "failed to init queues, ret = %d.", ret);
5051 : 0 : return ret;
5052 : : }
5053 : :
5054 : 0 : link_en = hw->set_link_down ? false : true;
5055 : 0 : ret = hns3_cfg_mac_mode(hw, link_en);
5056 [ # # ]: 0 : if (ret) {
5057 : 0 : PMD_INIT_LOG(ERR, "failed to enable MAC, ret = %d", ret);
5058 : 0 : goto err_config_mac_mode;
5059 : : }
5060 : :
5061 : 0 : ret = hns3_apply_link_speed(hw);
5062 [ # # ]: 0 : if (ret)
5063 : 0 : goto err_set_link_speed;
5064 : :
5065 : 0 : return hns3_restore_filter(hns);
5066 : :
5067 : : err_set_link_speed:
5068 : 0 : (void)hns3_cfg_mac_mode(hw, false);
5069 : :
5070 : 0 : err_config_mac_mode:
5071 : 0 : hns3_dev_release_mbufs(hns);
5072 : : /*
5073 : : * Here is exception handling, hns3_reset_all_tqps will have the
5074 : : * corresponding error message if it is handled incorrectly, so it is
5075 : : * not necessary to check hns3_reset_all_tqps return value, here keep
5076 : : * ret as the error code causing the exception.
5077 : : */
5078 : 0 : (void)hns3_reset_all_tqps(hns);
5079 : 0 : return ret;
5080 : : }
5081 : :
5082 : : static int
5083 : 0 : hns3_dev_start(struct rte_eth_dev *dev)
5084 : : {
5085 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
5086 : 0 : struct hns3_hw *hw = &hns->hw;
5087 : 0 : bool old_state = hw->set_link_down;
5088 : : int ret;
5089 : :
5090 : 0 : PMD_INIT_FUNC_TRACE();
5091 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.resetting, rte_memory_order_relaxed))
5092 : : return -EBUSY;
5093 : :
5094 : 0 : rte_spinlock_lock(&hw->lock);
5095 : 0 : hw->adapter_state = HNS3_NIC_STARTING;
5096 : :
5097 : : /*
5098 : : * If the dev_set_link_down() API has been called, the "set_link_down"
5099 : : * flag can be cleared by dev_start() API. In addition, the flag should
5100 : : * also be cleared before calling hns3_do_start() so that MAC can be
5101 : : * enabled in dev_start stage.
5102 : : */
5103 : 0 : hw->set_link_down = false;
5104 : 0 : ret = hns3_do_start(hns, true);
5105 [ # # ]: 0 : if (ret)
5106 : 0 : goto do_start_fail;
5107 : :
5108 : 0 : ret = hns3_map_rx_interrupt(dev);
5109 [ # # ]: 0 : if (ret)
5110 : 0 : goto map_rx_inter_err;
5111 : :
5112 : : /*
5113 : : * There are three register used to control the status of a TQP
5114 : : * (contains a pair of Tx queue and Rx queue) in the new version network
5115 : : * engine. One is used to control the enabling of Tx queue, the other is
5116 : : * used to control the enabling of Rx queue, and the last is the master
5117 : : * switch used to control the enabling of the tqp. The Tx register and
5118 : : * TQP register must be enabled at the same time to enable a Tx queue.
5119 : : * The same applies to the Rx queue. For the older network engine, this
5120 : : * function only refresh the enabled flag, and it is used to update the
5121 : : * status of queue in the dpdk framework.
5122 : : */
5123 : 0 : ret = hns3_start_all_txqs(dev);
5124 [ # # ]: 0 : if (ret)
5125 : 0 : goto map_rx_inter_err;
5126 : :
5127 : 0 : ret = hns3_start_all_rxqs(dev);
5128 [ # # ]: 0 : if (ret)
5129 : 0 : goto start_all_rxqs_fail;
5130 : :
5131 : 0 : hw->adapter_state = HNS3_NIC_STARTED;
5132 : : rte_spinlock_unlock(&hw->lock);
5133 : :
5134 : 0 : hns3_rx_scattered_calc(dev);
5135 : 0 : hns3_start_rxtx_datapath(dev);
5136 : :
5137 : : /* Enable interrupt of all rx queues before enabling queues */
5138 : 0 : hns3_dev_all_rx_queue_intr_enable(hw, true);
5139 : :
5140 : : /*
5141 : : * After finished the initialization, enable tqps to receive/transmit
5142 : : * packets and refresh all queue status.
5143 : : */
5144 : 0 : hns3_start_tqps(hw);
5145 : :
5146 : 0 : hns3_tm_dev_start_proc(hw);
5147 : :
5148 [ # # ]: 0 : if (dev->data->dev_conf.intr_conf.lsc != 0)
5149 : 0 : hns3_dev_link_update(dev, 0);
5150 : 0 : rte_eal_alarm_set(HNS3_SERVICE_INTERVAL, hns3_service_handler, dev);
5151 : :
5152 : 0 : hns3_info(hw, "hns3 dev start successful!");
5153 : :
5154 : 0 : return 0;
5155 : :
5156 : : start_all_rxqs_fail:
5157 : 0 : hns3_stop_all_txqs(dev);
5158 : 0 : map_rx_inter_err:
5159 : 0 : (void)hns3_do_stop(hns);
5160 : 0 : do_start_fail:
5161 : 0 : hw->set_link_down = old_state;
5162 : 0 : hw->adapter_state = HNS3_NIC_CONFIGURED;
5163 : : rte_spinlock_unlock(&hw->lock);
5164 : :
5165 : 0 : return ret;
5166 : : }
5167 : :
5168 : : static int
5169 : 0 : hns3_do_stop(struct hns3_adapter *hns)
5170 : : {
5171 : 0 : struct hns3_hw *hw = &hns->hw;
5172 : : int ret;
5173 : :
5174 : : /*
5175 : : * The "hns3_do_stop" function will also be called by .stop_service to
5176 : : * prepare reset. At the time of global or IMP reset, the command cannot
5177 : : * be sent to stop the tx/rx queues. The mbuf in Tx/Rx queues may be
5178 : : * accessed during the reset process. So the mbuf can not be released
5179 : : * during reset and is required to be released after the reset is
5180 : : * completed.
5181 : : */
5182 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.resetting, rte_memory_order_relaxed) == 0)
5183 : 0 : hns3_dev_release_mbufs(hns);
5184 : :
5185 : 0 : ret = hns3_cfg_mac_mode(hw, false);
5186 [ # # ]: 0 : if (ret)
5187 : : return ret;
5188 : 0 : hw->mac.link_status = RTE_ETH_LINK_DOWN;
5189 : :
5190 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.disable_cmd, rte_memory_order_relaxed) == 0) {
5191 : 0 : hns3_configure_all_mac_addr(hns, true);
5192 : 0 : ret = hns3_reset_all_tqps(hns);
5193 [ # # ]: 0 : if (ret) {
5194 : 0 : hns3_err(hw, "failed to reset all queues ret = %d.",
5195 : : ret);
5196 : 0 : return ret;
5197 : : }
5198 : : }
5199 : :
5200 : : return 0;
5201 : : }
5202 : :
5203 : : static int
5204 : 0 : hns3_dev_stop(struct rte_eth_dev *dev)
5205 : : {
5206 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
5207 : 0 : struct hns3_hw *hw = &hns->hw;
5208 : :
5209 : 0 : PMD_INIT_FUNC_TRACE();
5210 : 0 : dev->data->dev_started = 0;
5211 : :
5212 : 0 : hw->adapter_state = HNS3_NIC_STOPPING;
5213 : 0 : hns3_stop_rxtx_datapath(dev);
5214 : :
5215 : 0 : rte_spinlock_lock(&hw->lock);
5216 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.resetting, rte_memory_order_relaxed) == 0) {
5217 : 0 : hns3_tm_dev_stop_proc(hw);
5218 : 0 : hns3_config_mac_tnl_int(hw, false);
5219 : 0 : hns3_stop_tqps(hw);
5220 : 0 : hns3_do_stop(hns);
5221 : 0 : hns3_unmap_rx_interrupt(dev);
5222 : 0 : hw->adapter_state = HNS3_NIC_CONFIGURED;
5223 : : }
5224 : 0 : hns3_rx_scattered_reset(dev);
5225 : 0 : rte_eal_alarm_cancel(hns3_service_handler, dev);
5226 : 0 : hns3_stop_report_lse(dev);
5227 : : rte_spinlock_unlock(&hw->lock);
5228 : :
5229 : 0 : return 0;
5230 : : }
5231 : :
5232 : : static int
5233 : 0 : hns3_dev_close(struct rte_eth_dev *eth_dev)
5234 : : {
5235 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
5236 : : struct hns3_hw *hw = &hns->hw;
5237 : : int ret = 0;
5238 : :
5239 [ # # ]: 0 : if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
5240 : 0 : hns3_mp_uninit(eth_dev);
5241 : 0 : return 0;
5242 : : }
5243 : :
5244 [ # # ]: 0 : if (hw->adapter_state == HNS3_NIC_STARTED)
5245 : 0 : ret = hns3_dev_stop(eth_dev);
5246 : :
5247 : 0 : hw->adapter_state = HNS3_NIC_CLOSING;
5248 : 0 : hns3_reset_abort(hns);
5249 : 0 : hw->adapter_state = HNS3_NIC_CLOSED;
5250 : :
5251 : 0 : hns3_configure_all_mc_mac_addr(hns, true);
5252 : 0 : hns3_remove_all_vlan_table(hns);
5253 : 0 : hns3_vlan_txvlan_cfg(hns, HNS3_PORT_BASE_VLAN_DISABLE, 0);
5254 : 0 : hns3_uninit_pf(eth_dev);
5255 : 0 : hns3_free_all_queues(eth_dev);
5256 : 0 : rte_free(hw->reset.wait_data);
5257 : 0 : hns3_mp_uninit(eth_dev);
5258 : 0 : hns3_warn(hw, "Close port %u finished", hw->data->port_id);
5259 : :
5260 : 0 : return ret;
5261 : : }
5262 : :
5263 : : static void
5264 : : hns3_get_autoneg_rxtx_pause(struct hns3_hw *hw, bool *rx_pause, bool *tx_pause)
5265 : : {
5266 : : struct hns3_mac *mac = &hw->mac;
5267 : 0 : uint32_t advertising = mac->advertising;
5268 : 0 : uint32_t lp_advertising = mac->lp_advertising;
5269 : : *rx_pause = false;
5270 : : *tx_pause = false;
5271 : :
5272 : 0 : if (advertising & lp_advertising & HNS3_PHY_LINK_MODE_PAUSE_BIT) {
5273 : : *rx_pause = true;
5274 : : *tx_pause = true;
5275 [ # # ]: 0 : } else if (advertising & lp_advertising & HNS3_PHY_LINK_MODE_ASYM_PAUSE_BIT) {
5276 [ # # ]: 0 : if (advertising & HNS3_PHY_LINK_MODE_PAUSE_BIT)
5277 : : *rx_pause = true;
5278 [ # # ]: 0 : else if (lp_advertising & HNS3_PHY_LINK_MODE_PAUSE_BIT)
5279 : : *tx_pause = true;
5280 : : }
5281 : : }
5282 : :
5283 : : static enum hns3_fc_mode
5284 [ # # ]: 0 : hns3_get_autoneg_fc_mode(struct hns3_hw *hw)
5285 : : {
5286 : : enum hns3_fc_mode current_mode;
5287 : : bool rx_pause = false;
5288 : : bool tx_pause = false;
5289 : :
5290 : : hns3_get_autoneg_rxtx_pause(hw, &rx_pause, &tx_pause);
5291 : :
5292 [ # # ]: 0 : if (rx_pause && tx_pause)
5293 : : current_mode = HNS3_FC_FULL;
5294 [ # # ]: 0 : else if (rx_pause)
5295 : : current_mode = HNS3_FC_RX_PAUSE;
5296 [ # # ]: 0 : else if (tx_pause)
5297 : : current_mode = HNS3_FC_TX_PAUSE;
5298 : : else
5299 : : current_mode = HNS3_FC_NONE;
5300 : :
5301 : 0 : return current_mode;
5302 : : }
5303 : :
5304 : : static enum hns3_fc_mode
5305 : 0 : hns3_get_current_fc_mode(struct rte_eth_dev *dev)
5306 : : {
5307 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5308 : : struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5309 : : struct hns3_mac *mac = &hw->mac;
5310 : :
5311 : : /*
5312 : : * When the flow control mode is obtained, the device may not complete
5313 : : * auto-negotiation. It is necessary to wait for link establishment.
5314 : : */
5315 : 0 : (void)hns3_dev_link_update(dev, 1);
5316 : :
5317 : : /*
5318 : : * If the link auto-negotiation of the nic is disabled, or the flow
5319 : : * control auto-negotiation is not supported, the forced flow control
5320 : : * mode is used.
5321 : : */
5322 [ # # # # ]: 0 : if (mac->link_autoneg == 0 || !pf->support_fc_autoneg)
5323 : 0 : return hw->requested_fc_mode;
5324 : :
5325 : 0 : return hns3_get_autoneg_fc_mode(hw);
5326 : : }
5327 : :
5328 : : int
5329 : 0 : hns3_flow_ctrl_get(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
5330 : : {
5331 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5332 : : struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5333 : : enum hns3_fc_mode current_mode;
5334 : :
5335 : 0 : current_mode = hns3_get_current_fc_mode(dev);
5336 [ # # # # ]: 0 : switch (current_mode) {
5337 : 0 : case HNS3_FC_FULL:
5338 : 0 : fc_conf->mode = RTE_ETH_FC_FULL;
5339 : 0 : break;
5340 : 0 : case HNS3_FC_TX_PAUSE:
5341 : 0 : fc_conf->mode = RTE_ETH_FC_TX_PAUSE;
5342 : 0 : break;
5343 : 0 : case HNS3_FC_RX_PAUSE:
5344 : 0 : fc_conf->mode = RTE_ETH_FC_RX_PAUSE;
5345 : 0 : break;
5346 : 0 : case HNS3_FC_NONE:
5347 : : default:
5348 : 0 : fc_conf->mode = RTE_ETH_FC_NONE;
5349 : 0 : break;
5350 : : }
5351 : :
5352 : 0 : fc_conf->pause_time = pf->pause_time;
5353 [ # # ]: 0 : fc_conf->autoneg = pf->support_fc_autoneg ? hw->mac.link_autoneg : 0;
5354 : :
5355 : 0 : return 0;
5356 : : }
5357 : :
5358 : : static int
5359 : 0 : hns3_check_fc_autoneg_valid(struct hns3_hw *hw, uint8_t autoneg)
5360 : : {
5361 : : struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
5362 : :
5363 [ # # ]: 0 : if (!pf->support_fc_autoneg) {
5364 [ # # ]: 0 : if (autoneg != 0) {
5365 : 0 : hns3_err(hw, "unsupported fc auto-negotiation.");
5366 : 0 : return -EOPNOTSUPP;
5367 : : }
5368 : :
5369 : : return 0;
5370 : : }
5371 : :
5372 : : /*
5373 : : * If flow control auto-negotiation of the NIC is supported, all
5374 : : * auto-negotiation features are supported.
5375 : : */
5376 [ # # ]: 0 : if (autoneg != hw->mac.link_autoneg) {
5377 : 0 : hns3_err(hw, "please use 'link_speeds' in struct rte_eth_conf to change autoneg!");
5378 : 0 : return -EOPNOTSUPP;
5379 : : }
5380 : :
5381 : : return 0;
5382 : : }
5383 : :
5384 : : static int
5385 : 0 : hns3_flow_ctrl_set(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
5386 : : {
5387 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5388 : : struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5389 : : int ret;
5390 : :
5391 [ # # # # ]: 0 : if (fc_conf->high_water || fc_conf->low_water ||
5392 [ # # # # ]: 0 : fc_conf->send_xon || fc_conf->mac_ctrl_frame_fwd) {
5393 : 0 : hns3_err(hw, "Unsupported flow control settings specified, "
5394 : : "high_water(%u), low_water(%u), send_xon(%u) and "
5395 : : "mac_ctrl_frame_fwd(%u) must be set to '0'",
5396 : : fc_conf->high_water, fc_conf->low_water,
5397 : : fc_conf->send_xon, fc_conf->mac_ctrl_frame_fwd);
5398 : 0 : return -EINVAL;
5399 : : }
5400 : :
5401 : 0 : ret = hns3_check_fc_autoneg_valid(hw, fc_conf->autoneg);
5402 [ # # ]: 0 : if (ret)
5403 : : return ret;
5404 : :
5405 [ # # ]: 0 : if (!fc_conf->pause_time) {
5406 : 0 : hns3_err(hw, "Invalid pause time %u setting.",
5407 : : fc_conf->pause_time);
5408 : 0 : return -EINVAL;
5409 : : }
5410 : :
5411 [ # # ]: 0 : if (!(hw->current_fc_status == HNS3_FC_STATUS_NONE ||
5412 : : hw->current_fc_status == HNS3_FC_STATUS_MAC_PAUSE)) {
5413 : 0 : hns3_err(hw, "PFC is enabled. Cannot set MAC pause. "
5414 : : "current_fc_status = %d", hw->current_fc_status);
5415 : 0 : return -EOPNOTSUPP;
5416 : : }
5417 : :
5418 [ # # # # ]: 0 : if (hw->num_tc > 1 && !pf->support_multi_tc_pause) {
5419 : 0 : hns3_err(hw, "in multi-TC scenarios, MAC pause is not supported.");
5420 : 0 : return -EOPNOTSUPP;
5421 : : }
5422 : :
5423 : 0 : rte_spinlock_lock(&hw->lock);
5424 : 0 : ret = hns3_fc_enable(dev, fc_conf);
5425 : : rte_spinlock_unlock(&hw->lock);
5426 : :
5427 : 0 : return ret;
5428 : : }
5429 : :
5430 : : static int
5431 : 0 : hns3_priority_flow_ctrl_set(struct rte_eth_dev *dev,
5432 : : struct rte_eth_pfc_conf *pfc_conf)
5433 : : {
5434 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5435 : : int ret;
5436 : :
5437 [ # # ]: 0 : if (!hns3_dev_get_support(hw, DCB)) {
5438 : 0 : hns3_err(hw, "This port does not support dcb configurations.");
5439 : 0 : return -EOPNOTSUPP;
5440 : : }
5441 : :
5442 [ # # # # ]: 0 : if (pfc_conf->fc.high_water || pfc_conf->fc.low_water ||
5443 [ # # # # ]: 0 : pfc_conf->fc.send_xon || pfc_conf->fc.mac_ctrl_frame_fwd) {
5444 : 0 : hns3_err(hw, "Unsupported flow control settings specified, "
5445 : : "high_water(%u), low_water(%u), send_xon(%u) and "
5446 : : "mac_ctrl_frame_fwd(%u) must be set to '0'",
5447 : : pfc_conf->fc.high_water, pfc_conf->fc.low_water,
5448 : : pfc_conf->fc.send_xon,
5449 : : pfc_conf->fc.mac_ctrl_frame_fwd);
5450 : 0 : return -EINVAL;
5451 : : }
5452 [ # # ]: 0 : if (pfc_conf->fc.autoneg) {
5453 : 0 : hns3_err(hw, "Unsupported fc auto-negotiation setting.");
5454 : 0 : return -EINVAL;
5455 : : }
5456 [ # # ]: 0 : if (pfc_conf->fc.pause_time == 0) {
5457 : 0 : hns3_err(hw, "Invalid pause time %u setting.",
5458 : : pfc_conf->fc.pause_time);
5459 : 0 : return -EINVAL;
5460 : : }
5461 : :
5462 [ # # ]: 0 : if (!(hw->current_fc_status == HNS3_FC_STATUS_NONE ||
5463 : : hw->current_fc_status == HNS3_FC_STATUS_PFC)) {
5464 : 0 : hns3_err(hw, "MAC pause is enabled. Cannot set PFC."
5465 : : "current_fc_status = %d", hw->current_fc_status);
5466 : 0 : return -EOPNOTSUPP;
5467 : : }
5468 : :
5469 : 0 : rte_spinlock_lock(&hw->lock);
5470 : 0 : ret = hns3_dcb_pfc_enable(dev, pfc_conf);
5471 : : rte_spinlock_unlock(&hw->lock);
5472 : :
5473 : 0 : return ret;
5474 : : }
5475 : :
5476 : : static int
5477 : 0 : hns3_get_dcb_info(struct rte_eth_dev *dev, struct rte_eth_dcb_info *dcb_info)
5478 : : {
5479 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
5480 : : struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
5481 : 0 : enum rte_eth_rx_mq_mode mq_mode = dev->data->dev_conf.rxmode.mq_mode;
5482 : : int i;
5483 : :
5484 : 0 : rte_spinlock_lock(&hw->lock);
5485 [ # # ]: 0 : if ((uint32_t)mq_mode & RTE_ETH_MQ_RX_DCB_FLAG)
5486 : 0 : dcb_info->nb_tcs = pf->local_max_tc;
5487 : : else
5488 : 0 : dcb_info->nb_tcs = 1;
5489 : :
5490 [ # # ]: 0 : for (i = 0; i < HNS3_MAX_USER_PRIO; i++)
5491 : 0 : dcb_info->prio_tc[i] = hw->dcb_info.prio_tc[i];
5492 [ # # ]: 0 : for (i = 0; i < dcb_info->nb_tcs; i++)
5493 : 0 : dcb_info->tc_bws[i] = hw->dcb_info.pg_info[0].tc_dwrr[i];
5494 : :
5495 [ # # ]: 0 : for (i = 0; i < hw->num_tc; i++) {
5496 : 0 : dcb_info->tc_queue.tc_rxq[0][i].base = hw->alloc_rss_size * i;
5497 : 0 : dcb_info->tc_queue.tc_txq[0][i].base =
5498 : 0 : hw->tc_queue[i].tqp_offset;
5499 : 0 : dcb_info->tc_queue.tc_rxq[0][i].nb_queue = hw->alloc_rss_size;
5500 : 0 : dcb_info->tc_queue.tc_txq[0][i].nb_queue =
5501 : 0 : hw->tc_queue[i].tqp_count;
5502 : : }
5503 : : rte_spinlock_unlock(&hw->lock);
5504 : :
5505 : 0 : return 0;
5506 : : }
5507 : :
5508 : : static int
5509 : 0 : hns3_reinit_dev(struct hns3_adapter *hns)
5510 : : {
5511 : 0 : struct hns3_hw *hw = &hns->hw;
5512 : : int ret;
5513 : :
5514 : 0 : ret = hns3_cmd_init(hw);
5515 [ # # ]: 0 : if (ret) {
5516 : 0 : hns3_err(hw, "Failed to init cmd: %d", ret);
5517 : 0 : return ret;
5518 : : }
5519 : :
5520 : 0 : ret = hns3_init_hardware(hns);
5521 [ # # ]: 0 : if (ret) {
5522 : 0 : hns3_err(hw, "Failed to init hardware: %d", ret);
5523 : 0 : return ret;
5524 : : }
5525 : :
5526 : 0 : ret = hns3_reset_all_tqps(hns);
5527 [ # # ]: 0 : if (ret) {
5528 : 0 : hns3_err(hw, "Failed to reset all queues: %d", ret);
5529 : 0 : return ret;
5530 : : }
5531 : :
5532 : 0 : ret = hns3_enable_hw_error_intr(hns, true);
5533 [ # # ]: 0 : if (ret) {
5534 : 0 : hns3_err(hw, "fail to enable hw error interrupts: %d",
5535 : : ret);
5536 : 0 : return ret;
5537 : : }
5538 : 0 : hns3_info(hw, "Reset done, driver initialization finished.");
5539 : :
5540 : 0 : return 0;
5541 : : }
5542 : :
5543 : : static bool
5544 : 0 : is_pf_reset_done(struct hns3_hw *hw)
5545 : : {
5546 : : uint32_t val, reg, reg_bit;
5547 : :
5548 [ # # ]: 0 : switch (hw->reset.level) {
5549 : : case HNS3_IMP_RESET:
5550 : : reg = HNS3_GLOBAL_RESET_REG;
5551 : : reg_bit = HNS3_IMP_RESET_BIT;
5552 : : break;
5553 : : case HNS3_GLOBAL_RESET:
5554 : : reg = HNS3_GLOBAL_RESET_REG;
5555 : : reg_bit = HNS3_GLOBAL_RESET_BIT;
5556 : : break;
5557 : : case HNS3_FUNC_RESET:
5558 : : reg = HNS3_FUN_RST_ING;
5559 : : reg_bit = HNS3_FUN_RST_ING_B;
5560 : : break;
5561 : 0 : case HNS3_FLR_RESET:
5562 : : default:
5563 : 0 : hns3_err(hw, "Wait for unsupported reset level: %d",
5564 : : hw->reset.level);
5565 : 0 : return true;
5566 : : }
5567 : 0 : val = hns3_read_dev(hw, reg);
5568 [ # # ]: 0 : if (hns3_get_bit(val, reg_bit))
5569 : : return false;
5570 : : else
5571 : 0 : return true;
5572 : : }
5573 : :
5574 : : static enum hns3_reset_level
5575 : : hns3_detect_reset_event(struct hns3_hw *hw)
5576 : : {
5577 : : enum hns3_reset_level new_req = HNS3_NONE_RESET;
5578 : : uint32_t vector0_intr_state;
5579 : :
5580 : 0 : vector0_intr_state = hns3_read_dev(hw, HNS3_VECTOR0_OTHER_INT_STS_REG);
5581 [ # # ]: 0 : if (BIT(HNS3_VECTOR0_IMPRESET_INT_B) & vector0_intr_state)
5582 : : new_req = HNS3_IMP_RESET;
5583 [ # # ]: 0 : else if (BIT(HNS3_VECTOR0_GLOBALRESET_INT_B) & vector0_intr_state)
5584 : : new_req = HNS3_GLOBAL_RESET;
5585 : :
5586 : : return new_req;
5587 : : }
5588 : :
5589 : : bool
5590 : 0 : hns3_is_reset_pending(struct hns3_adapter *hns)
5591 : : {
5592 : : enum hns3_reset_level new_req;
5593 : : struct hns3_hw *hw = &hns->hw;
5594 : : enum hns3_reset_level last_req;
5595 : :
5596 : : /*
5597 : : * Only primary can process can process the reset event,
5598 : : * so don't check reset event in secondary.
5599 : : */
5600 [ # # ]: 0 : if (rte_eal_process_type() != RTE_PROC_PRIMARY)
5601 : : return false;
5602 : :
5603 : : new_req = hns3_detect_reset_event(hw);
5604 : : if (new_req == HNS3_NONE_RESET)
5605 : : return false;
5606 : :
5607 : 0 : last_req = hns3_get_reset_level(hns, &hw->reset.pending);
5608 [ # # ]: 0 : if (last_req == HNS3_NONE_RESET || last_req < new_req) {
5609 : 0 : rte_atomic_store_explicit(&hw->reset.disable_cmd, 1, rte_memory_order_relaxed);
5610 : 0 : hns3_schedule_delayed_reset(hns);
5611 : 0 : hns3_warn(hw, "High level reset detected, delay do reset");
5612 : 0 : return true;
5613 : : }
5614 : 0 : last_req = hns3_get_reset_level(hns, &hw->reset.request);
5615 [ # # # # : 0 : if (last_req != HNS3_NONE_RESET && hw->reset.level != HNS3_NONE_RESET &&
# # ]
5616 : : hw->reset.level < last_req) {
5617 : 0 : hns3_warn(hw, "High level reset %d is request", last_req);
5618 : 0 : return true;
5619 : : }
5620 : : return false;
5621 : : }
5622 : :
5623 : : static int
5624 : 0 : hns3_wait_hardware_ready(struct hns3_adapter *hns)
5625 : : {
5626 : : struct hns3_hw *hw = &hns->hw;
5627 : 0 : struct hns3_wait_data *wait_data = hw->reset.wait_data;
5628 : : struct timeval tv;
5629 : :
5630 [ # # ]: 0 : if (wait_data->result == HNS3_WAIT_SUCCESS)
5631 : : return 0;
5632 [ # # ]: 0 : else if (wait_data->result == HNS3_WAIT_TIMEOUT) {
5633 : 0 : hns3_clock_gettime(&tv);
5634 : 0 : hns3_warn(hw, "Reset step4 hardware not ready after reset time=%ld.%.6ld",
5635 : : tv.tv_sec, tv.tv_usec);
5636 : 0 : return -ETIME;
5637 [ # # ]: 0 : } else if (wait_data->result == HNS3_WAIT_REQUEST)
5638 : : return -EAGAIN;
5639 : :
5640 : 0 : wait_data->hns = hns;
5641 : 0 : wait_data->check_completion = is_pf_reset_done;
5642 : 0 : wait_data->end_ms = (uint64_t)HNS3_RESET_WAIT_CNT *
5643 : 0 : HNS3_RESET_WAIT_MS + hns3_clock_gettime_ms();
5644 : 0 : wait_data->interval = HNS3_RESET_WAIT_MS * USEC_PER_MSEC;
5645 : 0 : wait_data->count = HNS3_RESET_WAIT_CNT;
5646 : 0 : wait_data->result = HNS3_WAIT_REQUEST;
5647 : 0 : rte_eal_alarm_set(wait_data->interval, hns3_wait_callback, wait_data);
5648 : 0 : return -EAGAIN;
5649 : : }
5650 : :
5651 : : static int
5652 : 0 : hns3_func_reset_cmd(struct hns3_hw *hw, int func_id)
5653 : : {
5654 : : struct hns3_cmd_desc desc;
5655 : : struct hns3_reset_cmd *req = (struct hns3_reset_cmd *)desc.data;
5656 : :
5657 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_RST_TRIGGER, false);
5658 : 0 : hns3_set_bit(req->mac_func_reset, HNS3_CFG_RESET_FUNC_B, 1);
5659 : 0 : req->fun_reset_vfid = func_id;
5660 : :
5661 : 0 : return hns3_cmd_send(hw, &desc, 1);
5662 : : }
5663 : :
5664 : : static void
5665 : 0 : hns3_msix_process(struct hns3_adapter *hns, enum hns3_reset_level reset_level)
5666 : : {
5667 : : struct hns3_hw *hw = &hns->hw;
5668 : : struct timeval tv;
5669 : : uint32_t val;
5670 : :
5671 : 0 : hns3_clock_gettime(&tv);
5672 [ # # # # ]: 0 : if (hns3_read_dev(hw, HNS3_GLOBAL_RESET_REG) ||
5673 : 0 : hns3_read_dev(hw, HNS3_FUN_RST_ING)) {
5674 : 0 : hns3_warn(hw, "Don't process msix during resetting time=%ld.%.6ld",
5675 : : tv.tv_sec, tv.tv_usec);
5676 : 0 : return;
5677 : : }
5678 : :
5679 [ # # # # ]: 0 : switch (reset_level) {
5680 : 0 : case HNS3_IMP_RESET:
5681 : 0 : val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
5682 : 0 : hns3_set_bit(val, HNS3_VECTOR0_TRIGGER_IMP_RESET_B, 1);
5683 : 0 : hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, val);
5684 : 0 : hns3_warn(hw, "IMP Reset requested time=%ld.%.6ld",
5685 : : tv.tv_sec, tv.tv_usec);
5686 : 0 : break;
5687 : 0 : case HNS3_GLOBAL_RESET:
5688 : 0 : val = hns3_read_dev(hw, HNS3_GLOBAL_RESET_REG);
5689 : 0 : hns3_set_bit(val, HNS3_GLOBAL_RESET_BIT, 1);
5690 : 0 : hns3_write_dev(hw, HNS3_GLOBAL_RESET_REG, val);
5691 : 0 : hns3_warn(hw, "Global Reset requested time=%ld.%.6ld",
5692 : : tv.tv_sec, tv.tv_usec);
5693 : 0 : break;
5694 : 0 : case HNS3_FUNC_RESET:
5695 : 0 : hns3_warn(hw, "PF Reset requested time=%ld.%.6ld",
5696 : : tv.tv_sec, tv.tv_usec);
5697 : : /* schedule again to check later */
5698 : 0 : hns3_atomic_set_bit(HNS3_FUNC_RESET, &hw->reset.pending);
5699 : 0 : hns3_schedule_reset(hns);
5700 : 0 : break;
5701 : 0 : default:
5702 : 0 : hns3_warn(hw, "Unsupported reset level: %d", reset_level);
5703 : 0 : return;
5704 : : }
5705 : 0 : hns3_atomic_clear_bit(reset_level, &hw->reset.request);
5706 : : }
5707 : :
5708 : : static enum hns3_reset_level
5709 [ # # ]: 0 : hns3_get_reset_level(struct hns3_adapter *hns, RTE_ATOMIC(uint64_t) *levels)
5710 : : {
5711 : : struct hns3_hw *hw = &hns->hw;
5712 : : enum hns3_reset_level reset_level = HNS3_NONE_RESET;
5713 : :
5714 : : /* Return the highest priority reset level amongst all */
5715 [ # # ]: 0 : if (hns3_atomic_test_bit(HNS3_IMP_RESET, levels))
5716 : : reset_level = HNS3_IMP_RESET;
5717 [ # # ]: 0 : else if (hns3_atomic_test_bit(HNS3_GLOBAL_RESET, levels))
5718 : : reset_level = HNS3_GLOBAL_RESET;
5719 [ # # ]: 0 : else if (hns3_atomic_test_bit(HNS3_FUNC_RESET, levels))
5720 : : reset_level = HNS3_FUNC_RESET;
5721 [ # # ]: 0 : else if (hns3_atomic_test_bit(HNS3_FLR_RESET, levels))
5722 : : reset_level = HNS3_FLR_RESET;
5723 : :
5724 [ # # # # ]: 0 : if (hw->reset.level != HNS3_NONE_RESET && reset_level < hw->reset.level)
5725 : 0 : return HNS3_NONE_RESET;
5726 : :
5727 : : return reset_level;
5728 : : }
5729 : :
5730 : : static void
5731 : 0 : hns3_record_imp_error(struct hns3_adapter *hns)
5732 : : {
5733 : : struct hns3_hw *hw = &hns->hw;
5734 : : uint32_t reg_val;
5735 : :
5736 : 0 : reg_val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
5737 [ # # ]: 0 : if (hns3_get_bit(reg_val, HNS3_VECTOR0_IMP_RD_POISON_B)) {
5738 : 0 : hns3_warn(hw, "Detected IMP RD poison!");
5739 : 0 : hns3_set_bit(reg_val, HNS3_VECTOR0_IMP_RD_POISON_B, 0);
5740 : 0 : hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, reg_val);
5741 : : }
5742 : :
5743 [ # # ]: 0 : if (hns3_get_bit(reg_val, HNS3_VECTOR0_IMP_CMDQ_ERR_B)) {
5744 : 0 : hns3_warn(hw, "Detected IMP CMDQ error!");
5745 : 0 : hns3_set_bit(reg_val, HNS3_VECTOR0_IMP_CMDQ_ERR_B, 0);
5746 : 0 : hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, reg_val);
5747 : : }
5748 : 0 : }
5749 : :
5750 : : static int
5751 : 0 : hns3_prepare_reset(struct hns3_adapter *hns)
5752 : : {
5753 : 0 : struct hns3_hw *hw = &hns->hw;
5754 : : uint32_t reg_val;
5755 : : int ret;
5756 : :
5757 [ # # # ]: 0 : switch (hw->reset.level) {
5758 : 0 : case HNS3_FUNC_RESET:
5759 : 0 : ret = hns3_func_reset_cmd(hw, HNS3_PF_FUNC_ID);
5760 [ # # ]: 0 : if (ret)
5761 : : return ret;
5762 : :
5763 : : /*
5764 : : * After performaning pf reset, it is not necessary to do the
5765 : : * mailbox handling or send any command to firmware, because
5766 : : * any mailbox handling or command to firmware is only valid
5767 : : * after hns3_cmd_init is called.
5768 : : */
5769 : 0 : rte_atomic_store_explicit(&hw->reset.disable_cmd, 1, rte_memory_order_relaxed);
5770 : 0 : hw->reset.stats.request_cnt++;
5771 : 0 : break;
5772 : 0 : case HNS3_IMP_RESET:
5773 : 0 : hns3_record_imp_error(hns);
5774 : 0 : reg_val = hns3_read_dev(hw, HNS3_VECTOR0_OTER_EN_REG);
5775 : 0 : hns3_write_dev(hw, HNS3_VECTOR0_OTER_EN_REG, reg_val |
5776 : : BIT(HNS3_VECTOR0_IMP_RESET_INT_B));
5777 : : break;
5778 : : default:
5779 : : break;
5780 : : }
5781 : : return 0;
5782 : : }
5783 : :
5784 : : static int
5785 : 0 : hns3_set_rst_done(struct hns3_hw *hw)
5786 : : {
5787 : : struct hns3_pf_rst_done_cmd *req;
5788 : : struct hns3_cmd_desc desc;
5789 : :
5790 : : req = (struct hns3_pf_rst_done_cmd *)desc.data;
5791 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_PF_RST_DONE, false);
5792 : 0 : req->pf_rst_done |= HNS3_PF_RESET_DONE_BIT;
5793 : 0 : return hns3_cmd_send(hw, &desc, 1);
5794 : : }
5795 : :
5796 : : static int
5797 : 0 : hns3_stop_service(struct hns3_adapter *hns)
5798 : : {
5799 : 0 : struct hns3_hw *hw = &hns->hw;
5800 : : struct rte_eth_dev *eth_dev;
5801 : :
5802 : 0 : eth_dev = &rte_eth_devices[hw->data->port_id];
5803 : 0 : hw->mac.link_status = RTE_ETH_LINK_DOWN;
5804 [ # # ]: 0 : if (hw->adapter_state == HNS3_NIC_STARTED) {
5805 : 0 : rte_eal_alarm_cancel(hns3_service_handler, eth_dev);
5806 : 0 : hns3_update_linkstatus_and_event(hw, false);
5807 : : }
5808 : 0 : hns3_stop_rxtx_datapath(eth_dev);
5809 : :
5810 : 0 : rte_spinlock_lock(&hw->lock);
5811 [ # # # # ]: 0 : if (hns->hw.adapter_state == HNS3_NIC_STARTED ||
5812 : : hw->adapter_state == HNS3_NIC_STOPPING) {
5813 : 0 : hns3_enable_all_queues(hw, false);
5814 : 0 : hns3_do_stop(hns);
5815 : 0 : hw->reset.mbuf_deferred_free = true;
5816 : : } else
5817 : 0 : hw->reset.mbuf_deferred_free = false;
5818 : :
5819 : : /*
5820 : : * It is cumbersome for hardware to pick-and-choose entries for deletion
5821 : : * from table space. Hence, for function reset software intervention is
5822 : : * required to delete the entries
5823 : : */
5824 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.disable_cmd, rte_memory_order_relaxed) == 0)
5825 : 0 : hns3_configure_all_mc_mac_addr(hns, true);
5826 : : rte_spinlock_unlock(&hw->lock);
5827 : :
5828 : 0 : return 0;
5829 : : }
5830 : :
5831 : : static int
5832 : 0 : hns3_start_service(struct hns3_adapter *hns)
5833 : : {
5834 : 0 : struct hns3_hw *hw = &hns->hw;
5835 : : struct rte_eth_dev *eth_dev;
5836 : :
5837 [ # # ]: 0 : if (hw->reset.level == HNS3_IMP_RESET ||
5838 : : hw->reset.level == HNS3_GLOBAL_RESET)
5839 : 0 : hns3_set_rst_done(hw);
5840 : 0 : eth_dev = &rte_eth_devices[hw->data->port_id];
5841 : 0 : hns3_start_rxtx_datapath(eth_dev);
5842 [ # # ]: 0 : if (hw->adapter_state == HNS3_NIC_STARTED) {
5843 : : /*
5844 : : * This API parent function already hold the hns3_hw.lock, the
5845 : : * hns3_service_handler may report lse, in bonding application
5846 : : * it will call driver's ops which may acquire the hns3_hw.lock
5847 : : * again, thus lead to deadlock.
5848 : : * We defer calls hns3_service_handler to avoid the deadlock.
5849 : : */
5850 : 0 : rte_eal_alarm_set(HNS3_SERVICE_QUICK_INTERVAL,
5851 : : hns3_service_handler, eth_dev);
5852 : :
5853 : : /* Enable interrupt of all rx queues before enabling queues */
5854 : 0 : hns3_dev_all_rx_queue_intr_enable(hw, true);
5855 : : /*
5856 : : * Enable state of each rxq and txq will be recovered after
5857 : : * reset, so we need to restore them before enable all tqps;
5858 : : */
5859 : 0 : hns3_restore_tqp_enable_state(hw);
5860 : : /*
5861 : : * When finished the initialization, enable queues to receive
5862 : : * and transmit packets.
5863 : : */
5864 : 0 : hns3_enable_all_queues(hw, true);
5865 : : }
5866 : :
5867 : 0 : return 0;
5868 : : }
5869 : :
5870 : : static int
5871 : 0 : hns3_restore_conf(struct hns3_adapter *hns)
5872 : : {
5873 : 0 : struct hns3_hw *hw = &hns->hw;
5874 : : int ret;
5875 : :
5876 : 0 : ret = hns3_configure_all_mac_addr(hns, false);
5877 [ # # ]: 0 : if (ret)
5878 : : return ret;
5879 : :
5880 : 0 : ret = hns3_configure_all_mc_mac_addr(hns, false);
5881 [ # # ]: 0 : if (ret)
5882 : 0 : goto err_mc_mac;
5883 : :
5884 : 0 : ret = hns3_dev_promisc_restore(hns);
5885 [ # # ]: 0 : if (ret)
5886 : 0 : goto err_promisc;
5887 : :
5888 : 0 : ret = hns3_restore_vlan_table(hns);
5889 [ # # ]: 0 : if (ret)
5890 : 0 : goto err_promisc;
5891 : :
5892 : 0 : ret = hns3_restore_vlan_conf(hns);
5893 [ # # ]: 0 : if (ret)
5894 : 0 : goto err_promisc;
5895 : :
5896 : 0 : ret = hns3_restore_ptp(hns);
5897 [ # # ]: 0 : if (ret)
5898 : 0 : goto err_promisc;
5899 : :
5900 : 0 : ret = hns3_restore_rx_interrupt(hw);
5901 [ # # ]: 0 : if (ret)
5902 : 0 : goto err_promisc;
5903 : :
5904 : 0 : ret = hns3_restore_gro_conf(hw);
5905 [ # # ]: 0 : if (ret)
5906 : 0 : goto err_promisc;
5907 : :
5908 : 0 : ret = hns3_restore_fec(hw);
5909 [ # # ]: 0 : if (ret)
5910 : 0 : goto err_promisc;
5911 : :
5912 [ # # ]: 0 : if (hns->hw.adapter_state == HNS3_NIC_STARTED) {
5913 : 0 : ret = hns3_do_start(hns, false);
5914 [ # # ]: 0 : if (ret)
5915 : 0 : goto err_promisc;
5916 : 0 : hns3_info(hw, "hns3 dev restart successful!");
5917 [ # # ]: 0 : } else if (hw->adapter_state == HNS3_NIC_STOPPING)
5918 : 0 : hw->adapter_state = HNS3_NIC_CONFIGURED;
5919 : : return 0;
5920 : :
5921 : 0 : err_promisc:
5922 : 0 : hns3_configure_all_mc_mac_addr(hns, true);
5923 : 0 : err_mc_mac:
5924 : 0 : hns3_configure_all_mac_addr(hns, true);
5925 : 0 : return ret;
5926 : : }
5927 : :
5928 : : static void
5929 : 0 : hns3_reset_service(void *param)
5930 : : {
5931 : : struct hns3_adapter *hns = (struct hns3_adapter *)param;
5932 : : struct hns3_hw *hw = &hns->hw;
5933 : : enum hns3_reset_level reset_level;
5934 : : struct timeval tv_delta;
5935 : : struct timeval tv_start;
5936 : : struct timeval tv;
5937 : : uint64_t msec;
5938 : : int ret;
5939 : :
5940 : : /*
5941 : : * The interrupt is not triggered within the delay time.
5942 : : * The interrupt may have been lost. It is necessary to handle
5943 : : * the interrupt to recover from the error.
5944 : : */
5945 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.schedule, rte_memory_order_relaxed) ==
5946 : : SCHEDULE_DEFERRED) {
5947 : 0 : rte_atomic_store_explicit(&hw->reset.schedule, SCHEDULE_REQUESTED,
5948 : : rte_memory_order_relaxed);
5949 : 0 : hns3_err(hw, "Handling interrupts in delayed tasks");
5950 : 0 : hns3_interrupt_handler(&rte_eth_devices[hw->data->port_id]);
5951 : 0 : reset_level = hns3_get_reset_level(hns, &hw->reset.pending);
5952 [ # # ]: 0 : if (reset_level == HNS3_NONE_RESET) {
5953 : 0 : hns3_err(hw, "No reset level is set, try IMP reset");
5954 : : hns3_atomic_set_bit(HNS3_IMP_RESET, &hw->reset.pending);
5955 : : }
5956 : : }
5957 : 0 : rte_atomic_store_explicit(&hw->reset.schedule, SCHEDULE_NONE, rte_memory_order_relaxed);
5958 : :
5959 : : /*
5960 : : * Check if there is any ongoing reset in the hardware. This status can
5961 : : * be checked from reset_pending. If there is then, we need to wait for
5962 : : * hardware to complete reset.
5963 : : * a. If we are able to figure out in reasonable time that hardware
5964 : : * has fully resetted then, we can proceed with driver, client
5965 : : * reset.
5966 : : * b. else, we can come back later to check this status so re-sched
5967 : : * now.
5968 : : */
5969 : 0 : reset_level = hns3_get_reset_level(hns, &hw->reset.pending);
5970 [ # # ]: 0 : if (reset_level != HNS3_NONE_RESET) {
5971 : 0 : hns3_clock_gettime(&tv_start);
5972 : 0 : ret = hns3_reset_process(hns, reset_level);
5973 : 0 : hns3_clock_gettime(&tv);
5974 [ # # ]: 0 : timersub(&tv, &tv_start, &tv_delta);
5975 : 0 : msec = hns3_clock_calctime_ms(&tv_delta);
5976 [ # # ]: 0 : if (msec > HNS3_RESET_PROCESS_MS)
5977 : 0 : hns3_err(hw, "%d handle long time delta %" PRIu64 " ms time=%ld.%.6ld",
5978 : : hw->reset.level, msec,
5979 : : tv.tv_sec, tv.tv_usec);
5980 [ # # ]: 0 : if (ret == -EAGAIN)
5981 : 0 : return;
5982 : : }
5983 : :
5984 : : /* Check if we got any *new* reset requests to be honored */
5985 : 0 : reset_level = hns3_get_reset_level(hns, &hw->reset.request);
5986 [ # # ]: 0 : if (reset_level != HNS3_NONE_RESET)
5987 : 0 : hns3_msix_process(hns, reset_level);
5988 : : }
5989 : :
5990 : : static uint32_t
5991 : 0 : hns3_get_speed_fec_capa(struct rte_eth_fec_capa *speed_fec_capa,
5992 : : uint32_t speed_capa)
5993 : : {
5994 : : uint32_t speed_bit;
5995 : : uint32_t num = 0;
5996 : : uint32_t i;
5997 : :
5998 [ # # ]: 0 : for (i = 0; i < RTE_DIM(speed_fec_capa_tbl); i++) {
5999 : : speed_bit =
6000 : 0 : rte_eth_speed_bitflag(speed_fec_capa_tbl[i].speed,
6001 : : RTE_ETH_LINK_FULL_DUPLEX);
6002 [ # # ]: 0 : if ((speed_capa & speed_bit) == 0)
6003 : 0 : continue;
6004 : :
6005 : 0 : speed_fec_capa[num].speed = speed_fec_capa_tbl[i].speed;
6006 : 0 : speed_fec_capa[num].capa = speed_fec_capa_tbl[i].capa;
6007 : 0 : num++;
6008 : : }
6009 : :
6010 : 0 : return num;
6011 : : }
6012 : :
6013 : : static int
6014 : 0 : hns3_fec_get_capability(struct rte_eth_dev *dev,
6015 : : struct rte_eth_fec_capa *speed_fec_capa,
6016 : : unsigned int num)
6017 : : {
6018 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6019 : : unsigned int speed_num;
6020 : : uint32_t speed_capa;
6021 : :
6022 : 0 : speed_capa = hns3_get_speed_capa(hw);
6023 : : /* speed_num counts number of speed capabilities */
6024 [ # # ]: 0 : speed_num = rte_popcount32(speed_capa & HNS3_SPEEDS_SUPP_FEC);
6025 [ # # ]: 0 : if (speed_num == 0)
6026 : : return -ENOTSUP;
6027 : :
6028 [ # # ]: 0 : if (speed_fec_capa == NULL)
6029 : : return speed_num;
6030 : :
6031 [ # # ]: 0 : if (num < speed_num) {
6032 : 0 : hns3_err(hw, "not enough array size(%u) to store FEC capabilities, should not be less than %u",
6033 : : num, speed_num);
6034 : 0 : return -EINVAL;
6035 : : }
6036 : :
6037 : 0 : return hns3_get_speed_fec_capa(speed_fec_capa, speed_capa);
6038 : : }
6039 : :
6040 : :
6041 : : static int
6042 : 0 : get_current_fec_auto_state(struct hns3_hw *hw, uint8_t *state)
6043 : : {
6044 : : struct hns3_config_fec_cmd *req;
6045 : : struct hns3_cmd_desc desc;
6046 : : int ret;
6047 : :
6048 : : /*
6049 : : * CMD(HNS3_OPC_CONFIG_FEC_MODE) read is not supported
6050 : : * in device of link speed
6051 : : * below 10 Gbps.
6052 : : */
6053 [ # # ]: 0 : if (hw->mac.link_speed < RTE_ETH_SPEED_NUM_10G) {
6054 : 0 : *state = 0;
6055 : 0 : return 0;
6056 : : }
6057 : :
6058 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_FEC_MODE, true);
6059 : : req = (struct hns3_config_fec_cmd *)desc.data;
6060 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
6061 [ # # ]: 0 : if (ret) {
6062 : 0 : hns3_err(hw, "get current fec auto state failed, ret = %d",
6063 : : ret);
6064 : 0 : return ret;
6065 : : }
6066 : :
6067 : 0 : *state = req->fec_mode & (1U << HNS3_MAC_CFG_FEC_AUTO_EN_B);
6068 : 0 : return 0;
6069 : : }
6070 : :
6071 : : static int
6072 : 0 : hns3_fec_get_internal(struct hns3_hw *hw, uint32_t *fec_capa)
6073 : : {
6074 : : struct hns3_sfp_info_cmd *resp;
6075 : : uint32_t tmp_fec_capa;
6076 : 0 : uint8_t auto_state = 0;
6077 : : struct hns3_cmd_desc desc;
6078 : : int ret;
6079 : :
6080 : : /*
6081 : : * If link is down and AUTO is enabled, AUTO is returned, otherwise,
6082 : : * configured FEC mode is returned.
6083 : : * If link is up, current FEC mode is returned.
6084 : : */
6085 [ # # ]: 0 : if (hw->mac.link_status == RTE_ETH_LINK_DOWN) {
6086 : 0 : ret = get_current_fec_auto_state(hw, &auto_state);
6087 [ # # ]: 0 : if (ret)
6088 : : return ret;
6089 : :
6090 [ # # ]: 0 : if (auto_state == 0x1) {
6091 : 0 : *fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(AUTO);
6092 : 0 : return 0;
6093 : : }
6094 : : }
6095 : :
6096 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GET_SFP_INFO, true);
6097 : : resp = (struct hns3_sfp_info_cmd *)desc.data;
6098 : 0 : resp->query_type = HNS3_ACTIVE_QUERY;
6099 : :
6100 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
6101 [ # # ]: 0 : if (ret == -EOPNOTSUPP) {
6102 : 0 : hns3_err(hw, "IMP do not support get FEC, ret = %d", ret);
6103 : 0 : return ret;
6104 [ # # ]: 0 : } else if (ret) {
6105 : 0 : hns3_err(hw, "get FEC failed, ret = %d", ret);
6106 : 0 : return ret;
6107 : : }
6108 : :
6109 : : /*
6110 : : * FEC mode order defined in hns3 hardware is inconsistent with
6111 : : * that defined in the ethdev library. So the sequence needs
6112 : : * to be converted.
6113 : : */
6114 [ # # ]: 0 : switch (resp->active_fec) {
6115 : : case HNS3_MAC_FEC_OFF:
6116 : : tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC);
6117 : : break;
6118 : : case HNS3_MAC_FEC_BASER:
6119 : : tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(BASER);
6120 : : break;
6121 : : case HNS3_MAC_FEC_RS:
6122 : : tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(RS);
6123 : : break;
6124 : : case HNS3_MAC_FEC_LLRS:
6125 : : tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(LLRS);
6126 : : break;
6127 : : default:
6128 : : tmp_fec_capa = RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC);
6129 : : break;
6130 : : }
6131 : :
6132 : 0 : *fec_capa = tmp_fec_capa;
6133 : 0 : return 0;
6134 : : }
6135 : :
6136 : : static int
6137 : 0 : hns3_fec_get(struct rte_eth_dev *dev, uint32_t *fec_capa)
6138 : : {
6139 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
6140 : :
6141 : 0 : return hns3_fec_get_internal(hw, fec_capa);
6142 : : }
6143 : :
6144 : : static int
6145 : 0 : hns3_set_fec_hw(struct hns3_hw *hw, uint32_t mode)
6146 : : {
6147 : : struct hns3_config_fec_cmd *req;
6148 : : struct hns3_cmd_desc desc;
6149 : : int ret;
6150 : :
6151 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CONFIG_FEC_MODE, false);
6152 : :
6153 : : req = (struct hns3_config_fec_cmd *)desc.data;
6154 [ # # # # : 0 : switch (mode) {
# # ]
6155 : 0 : case RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC):
6156 : 0 : hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6157 : : HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_OFF);
6158 : 0 : break;
6159 : 0 : case RTE_ETH_FEC_MODE_CAPA_MASK(BASER):
6160 : 0 : hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6161 : : HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_BASER);
6162 : 0 : break;
6163 : 0 : case RTE_ETH_FEC_MODE_CAPA_MASK(RS):
6164 : 0 : hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6165 : : HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_RS);
6166 : 0 : break;
6167 : 0 : case RTE_ETH_FEC_MODE_CAPA_MASK(LLRS):
6168 : 0 : hns3_set_field(req->fec_mode, HNS3_MAC_CFG_FEC_MODE_M,
6169 : : HNS3_MAC_CFG_FEC_MODE_S, HNS3_MAC_FEC_LLRS);
6170 : 0 : break;
6171 : 0 : case RTE_ETH_FEC_MODE_CAPA_MASK(AUTO):
6172 : 0 : hns3_set_bit(req->fec_mode, HNS3_MAC_CFG_FEC_AUTO_EN_B, 1);
6173 : 0 : break;
6174 : : default:
6175 : : return 0;
6176 : : }
6177 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
6178 [ # # ]: 0 : if (ret)
6179 : 0 : hns3_err(hw, "set fec mode failed, ret = %d", ret);
6180 : :
6181 : : return ret;
6182 : : }
6183 : :
6184 : : static uint32_t
6185 : 0 : hns3_parse_hw_fec_capa(uint8_t hw_fec_capa)
6186 : : {
6187 : : const struct {
6188 : : uint32_t hw_fec_capa;
6189 : : uint32_t fec_capa;
6190 : 0 : } fec_capa_map[] = {
6191 : : { HNS3_FIBER_FEC_AUTO_BIT, RTE_ETH_FEC_MODE_CAPA_MASK(AUTO) },
6192 : : { HNS3_FIBER_FEC_BASER_BIT, RTE_ETH_FEC_MODE_CAPA_MASK(BASER) },
6193 : : { HNS3_FIBER_FEC_RS_BIT, RTE_ETH_FEC_MODE_CAPA_MASK(RS) },
6194 : : { HNS3_FIBER_FEC_LLRS_BIT, RTE_ETH_FEC_MODE_CAPA_MASK(LLRS) },
6195 : : { HNS3_FIBER_FEC_NOFEC_BIT, RTE_ETH_FEC_MODE_CAPA_MASK(NOFEC) },
6196 : : };
6197 : : uint32_t capa = 0;
6198 : : uint32_t i;
6199 : :
6200 [ # # ]: 0 : for (i = 0; i < RTE_DIM(fec_capa_map); i++) {
6201 [ # # ]: 0 : if ((hw_fec_capa & fec_capa_map[i].hw_fec_capa) != 0)
6202 : 0 : capa |= fec_capa_map[i].fec_capa;
6203 : : }
6204 : :
6205 : 0 : return capa;
6206 : : }
6207 : :
6208 : : static uint32_t
6209 : 0 : hns3_get_current_speed_fec_cap(struct hns3_mac *mac)
6210 : : {
6211 : : uint32_t i;
6212 : :
6213 [ # # ]: 0 : if (mac->fec_capa != 0)
6214 : 0 : return hns3_parse_hw_fec_capa(mac->fec_capa);
6215 : :
6216 [ # # ]: 0 : for (i = 0; i < RTE_DIM(speed_fec_capa_tbl); i++) {
6217 [ # # ]: 0 : if (mac->link_speed == speed_fec_capa_tbl[i].speed)
6218 : 0 : return speed_fec_capa_tbl[i].capa;
6219 : : }
6220 : :
6221 : : return 0;
6222 : : }
6223 : :
6224 : : static int
6225 : 0 : hns3_fec_mode_valid(struct rte_eth_dev *dev, uint32_t mode)
6226 : : {
6227 [ # # ]: 0 : struct hns3_adapter *hns = dev->data->dev_private;
6228 : : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
6229 : : uint32_t cur_capa;
6230 : :
6231 [ # # ]: 0 : if (rte_popcount32(mode) != 1) {
6232 : 0 : hns3_err(hw, "FEC mode(0x%x) should be only one bit set", mode);
6233 : 0 : return -EINVAL;
6234 : : }
6235 : :
6236 : : /*
6237 : : * Check whether the configured mode is within the FEC capability.
6238 : : * If not, the configured mode will not be supported.
6239 : : */
6240 : 0 : cur_capa = hns3_get_current_speed_fec_cap(&hw->mac);
6241 [ # # ]: 0 : if ((cur_capa & mode) == 0) {
6242 : 0 : hns3_err(hw, "unsupported FEC mode(0x%x)", mode);
6243 : 0 : return -EINVAL;
6244 : : }
6245 : :
6246 : : return 0;
6247 : : }
6248 : :
6249 : : static int
6250 : 0 : hns3_fec_set(struct rte_eth_dev *dev, uint32_t mode)
6251 : : {
6252 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
6253 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
6254 : : struct hns3_pf *pf = &hns->pf;
6255 : : int ret;
6256 : :
6257 : 0 : ret = hns3_fec_mode_valid(dev, mode);
6258 [ # # ]: 0 : if (ret != 0)
6259 : : return ret;
6260 : :
6261 : 0 : rte_spinlock_lock(&hw->lock);
6262 : 0 : ret = hns3_set_fec_hw(hw, mode);
6263 [ # # ]: 0 : if (ret) {
6264 : : rte_spinlock_unlock(&hw->lock);
6265 : 0 : return ret;
6266 : : }
6267 : :
6268 : 0 : pf->fec_mode = mode;
6269 : : rte_spinlock_unlock(&hw->lock);
6270 : :
6271 : 0 : return 0;
6272 : : }
6273 : :
6274 : : static int
6275 : 0 : hns3_restore_fec(struct hns3_hw *hw)
6276 : : {
6277 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
6278 : : struct hns3_pf *pf = &hns->pf;
6279 : 0 : uint32_t mode = pf->fec_mode;
6280 : : int ret;
6281 : :
6282 : 0 : ret = hns3_set_fec_hw(hw, mode);
6283 [ # # ]: 0 : if (ret)
6284 : 0 : hns3_err(hw, "restore fec mode(0x%x) failed, ret = %d",
6285 : : mode, ret);
6286 : :
6287 : 0 : return ret;
6288 : : }
6289 : :
6290 : : static int
6291 : 0 : hns3_query_dev_fec_info(struct hns3_hw *hw)
6292 : : {
6293 : : struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
6294 : : struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(hns);
6295 : : int ret;
6296 : :
6297 : 0 : ret = hns3_fec_get_internal(hw, &pf->fec_mode);
6298 [ # # ]: 0 : if (ret)
6299 : 0 : hns3_err(hw, "query device FEC info failed, ret = %d", ret);
6300 : :
6301 : 0 : return ret;
6302 : : }
6303 : :
6304 : : static bool
6305 : 0 : hns3_optical_module_existed(struct hns3_hw *hw)
6306 : : {
6307 : : struct hns3_cmd_desc desc;
6308 : : bool existed;
6309 : : int ret;
6310 : :
6311 : 0 : hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_GET_SFP_EXIST, true);
6312 : 0 : ret = hns3_cmd_send(hw, &desc, 1);
6313 [ # # ]: 0 : if (ret) {
6314 : 0 : hns3_err(hw,
6315 : : "fail to get optical module exist state, ret = %d.",
6316 : : ret);
6317 : 0 : return false;
6318 : : }
6319 : 0 : existed = !!desc.data[0];
6320 : :
6321 : 0 : return existed;
6322 : : }
6323 : :
6324 : : static int
6325 : 0 : hns3_get_module_eeprom_data(struct hns3_hw *hw, uint32_t offset,
6326 : : uint32_t len, uint8_t *data)
6327 : : {
6328 : : #define HNS3_SFP_INFO_CMD_NUM 6
6329 : : #define HNS3_SFP_INFO_MAX_LEN \
6330 : : (HNS3_SFP_INFO_BD0_LEN + \
6331 : : (HNS3_SFP_INFO_CMD_NUM - 1) * HNS3_SFP_INFO_BDX_LEN)
6332 : : struct hns3_cmd_desc desc[HNS3_SFP_INFO_CMD_NUM];
6333 : : struct hns3_sfp_info_bd0_cmd *sfp_info_bd0;
6334 : : uint16_t read_len;
6335 : : uint16_t copy_len;
6336 : : int ret;
6337 : : int i;
6338 : :
6339 [ # # ]: 0 : for (i = 0; i < HNS3_SFP_INFO_CMD_NUM; i++) {
6340 : 0 : hns3_cmd_setup_basic_desc(&desc[i], HNS3_OPC_GET_SFP_EEPROM,
6341 : : true);
6342 [ # # ]: 0 : if (i < HNS3_SFP_INFO_CMD_NUM - 1)
6343 : 0 : desc[i].flag |= rte_cpu_to_le_16(HNS3_CMD_FLAG_NEXT);
6344 : : }
6345 : :
6346 : : sfp_info_bd0 = (struct hns3_sfp_info_bd0_cmd *)desc[0].data;
6347 : 0 : sfp_info_bd0->offset = rte_cpu_to_le_16((uint16_t)offset);
6348 : 0 : read_len = RTE_MIN(len, HNS3_SFP_INFO_MAX_LEN);
6349 : 0 : sfp_info_bd0->read_len = rte_cpu_to_le_16((uint16_t)read_len);
6350 : :
6351 : 0 : ret = hns3_cmd_send(hw, desc, HNS3_SFP_INFO_CMD_NUM);
6352 [ # # ]: 0 : if (ret) {
6353 : 0 : hns3_err(hw, "fail to get module EEPROM info, ret = %d.",
6354 : : ret);
6355 : 0 : return ret;
6356 : : }
6357 : :
6358 : : /* The data format in BD0 is different with the others. */
6359 : 0 : copy_len = RTE_MIN(len, HNS3_SFP_INFO_BD0_LEN);
6360 : : memcpy(data, sfp_info_bd0->data, copy_len);
6361 : : read_len = copy_len;
6362 : :
6363 [ # # ]: 0 : for (i = 1; i < HNS3_SFP_INFO_CMD_NUM; i++) {
6364 [ # # ]: 0 : if (read_len >= len)
6365 : : break;
6366 : :
6367 : 0 : copy_len = RTE_MIN(len - read_len, HNS3_SFP_INFO_BDX_LEN);
6368 : 0 : memcpy(data + read_len, desc[i].data, copy_len);
6369 : 0 : read_len += copy_len;
6370 : : }
6371 : :
6372 : 0 : return (int)read_len;
6373 : : }
6374 : :
6375 : : static int
6376 : 0 : hns3_get_module_eeprom(struct rte_eth_dev *dev,
6377 : : struct rte_dev_eeprom_info *info)
6378 : : {
6379 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
6380 : 0 : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
6381 : 0 : uint32_t offset = info->offset;
6382 : 0 : uint32_t len = info->length;
6383 : 0 : uint8_t *data = info->data;
6384 : : uint32_t read_len = 0;
6385 : :
6386 [ # # ]: 0 : if (hw->mac.media_type != HNS3_MEDIA_TYPE_FIBER)
6387 : : return -ENOTSUP;
6388 : :
6389 [ # # ]: 0 : if (!hns3_optical_module_existed(hw)) {
6390 : 0 : hns3_err(hw, "fail to read module EEPROM: no module is connected.");
6391 : 0 : return -EIO;
6392 : : }
6393 : :
6394 [ # # ]: 0 : while (read_len < len) {
6395 : : int ret;
6396 : 0 : ret = hns3_get_module_eeprom_data(hw, offset + read_len,
6397 : : len - read_len,
6398 : : data + read_len);
6399 [ # # ]: 0 : if (ret < 0)
6400 : : return -EIO;
6401 : 0 : read_len += ret;
6402 : : }
6403 : :
6404 : : return 0;
6405 : : }
6406 : :
6407 : : static int
6408 : 0 : hns3_get_module_info(struct rte_eth_dev *dev,
6409 : : struct rte_eth_dev_module_info *modinfo)
6410 : : {
6411 : : #define HNS3_SFF8024_ID_SFP 0x03
6412 : : #define HNS3_SFF8024_ID_QSFP_8438 0x0c
6413 : : #define HNS3_SFF8024_ID_QSFP_8436_8636 0x0d
6414 : : #define HNS3_SFF8024_ID_QSFP28_8636 0x11
6415 : : #define HNS3_SFF_8636_V1_3 0x03
6416 : 0 : struct hns3_adapter *hns = dev->data->dev_private;
6417 : : struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(hns);
6418 : : struct rte_dev_eeprom_info info;
6419 : : struct hns3_sfp_type sfp_type;
6420 : : int ret;
6421 : :
6422 : : memset(&sfp_type, 0, sizeof(sfp_type));
6423 : : memset(&info, 0, sizeof(info));
6424 : 0 : info.data = (uint8_t *)&sfp_type;
6425 : 0 : info.length = sizeof(sfp_type);
6426 : 0 : ret = hns3_get_module_eeprom(dev, &info);
6427 [ # # ]: 0 : if (ret)
6428 : : return ret;
6429 : :
6430 [ # # # # : 0 : switch (sfp_type.type) {
# ]
6431 : 0 : case HNS3_SFF8024_ID_SFP:
6432 : 0 : modinfo->type = RTE_ETH_MODULE_SFF_8472;
6433 : 0 : modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8472_LEN;
6434 : 0 : break;
6435 : 0 : case HNS3_SFF8024_ID_QSFP_8438:
6436 : 0 : modinfo->type = RTE_ETH_MODULE_SFF_8436;
6437 : 0 : modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8436_MAX_LEN;
6438 : 0 : break;
6439 : 0 : case HNS3_SFF8024_ID_QSFP_8436_8636:
6440 [ # # ]: 0 : if (sfp_type.ext_type < HNS3_SFF_8636_V1_3) {
6441 : 0 : modinfo->type = RTE_ETH_MODULE_SFF_8436;
6442 : 0 : modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8436_MAX_LEN;
6443 : : } else {
6444 : 0 : modinfo->type = RTE_ETH_MODULE_SFF_8636;
6445 : 0 : modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8636_MAX_LEN;
6446 : : }
6447 : : break;
6448 : 0 : case HNS3_SFF8024_ID_QSFP28_8636:
6449 : 0 : modinfo->type = RTE_ETH_MODULE_SFF_8636;
6450 : 0 : modinfo->eeprom_len = RTE_ETH_MODULE_SFF_8636_MAX_LEN;
6451 : 0 : break;
6452 : 0 : default:
6453 : 0 : hns3_err(hw, "unknown module, type = %u, extra_type = %u.",
6454 : : sfp_type.type, sfp_type.ext_type);
6455 : 0 : return -EINVAL;
6456 : : }
6457 : :
6458 : : return 0;
6459 : : }
6460 : :
6461 : : static const struct eth_dev_ops hns3_eth_dev_ops = {
6462 : : .dev_configure = hns3_dev_configure,
6463 : : .dev_start = hns3_dev_start,
6464 : : .dev_stop = hns3_dev_stop,
6465 : : .dev_close = hns3_dev_close,
6466 : : .promiscuous_enable = hns3_dev_promiscuous_enable,
6467 : : .promiscuous_disable = hns3_dev_promiscuous_disable,
6468 : : .allmulticast_enable = hns3_dev_allmulticast_enable,
6469 : : .allmulticast_disable = hns3_dev_allmulticast_disable,
6470 : : .mtu_set = hns3_dev_mtu_set,
6471 : : .stats_get = hns3_stats_get,
6472 : : .stats_reset = hns3_stats_reset,
6473 : : .xstats_get = hns3_dev_xstats_get,
6474 : : .xstats_get_names = hns3_dev_xstats_get_names,
6475 : : .xstats_reset = hns3_dev_xstats_reset,
6476 : : .xstats_get_by_id = hns3_dev_xstats_get_by_id,
6477 : : .xstats_get_names_by_id = hns3_dev_xstats_get_names_by_id,
6478 : : .dev_infos_get = hns3_dev_infos_get,
6479 : : .fw_version_get = hns3_fw_version_get,
6480 : : .rx_queue_setup = hns3_rx_queue_setup,
6481 : : .tx_queue_setup = hns3_tx_queue_setup,
6482 : : .rx_queue_release = hns3_dev_rx_queue_release,
6483 : : .tx_queue_release = hns3_dev_tx_queue_release,
6484 : : .rx_queue_start = hns3_dev_rx_queue_start,
6485 : : .rx_queue_stop = hns3_dev_rx_queue_stop,
6486 : : .tx_queue_start = hns3_dev_tx_queue_start,
6487 : : .tx_queue_stop = hns3_dev_tx_queue_stop,
6488 : : .rx_queue_intr_enable = hns3_dev_rx_queue_intr_enable,
6489 : : .rx_queue_intr_disable = hns3_dev_rx_queue_intr_disable,
6490 : : .rxq_info_get = hns3_rxq_info_get,
6491 : : .txq_info_get = hns3_txq_info_get,
6492 : : .rx_burst_mode_get = hns3_rx_burst_mode_get,
6493 : : .tx_burst_mode_get = hns3_tx_burst_mode_get,
6494 : : .flow_ctrl_get = hns3_flow_ctrl_get,
6495 : : .flow_ctrl_set = hns3_flow_ctrl_set,
6496 : : .priority_flow_ctrl_set = hns3_priority_flow_ctrl_set,
6497 : : .mac_addr_add = hns3_add_mac_addr,
6498 : : .mac_addr_remove = hns3_remove_mac_addr,
6499 : : .mac_addr_set = hns3_set_default_mac_addr,
6500 : : .set_mc_addr_list = hns3_set_mc_mac_addr_list,
6501 : : .link_update = hns3_dev_link_update,
6502 : : .dev_set_link_up = hns3_dev_set_link_up,
6503 : : .dev_set_link_down = hns3_dev_set_link_down,
6504 : : .rss_hash_update = hns3_dev_rss_hash_update,
6505 : : .rss_hash_conf_get = hns3_dev_rss_hash_conf_get,
6506 : : .reta_update = hns3_dev_rss_reta_update,
6507 : : .reta_query = hns3_dev_rss_reta_query,
6508 : : .flow_ops_get = hns3_dev_flow_ops_get,
6509 : : .vlan_filter_set = hns3_vlan_filter_set,
6510 : : .vlan_tpid_set = hns3_vlan_tpid_set,
6511 : : .vlan_offload_set = hns3_vlan_offload_set,
6512 : : .vlan_pvid_set = hns3_vlan_pvid_set,
6513 : : .get_reg = hns3_get_regs,
6514 : : .get_module_info = hns3_get_module_info,
6515 : : .get_module_eeprom = hns3_get_module_eeprom,
6516 : : .get_dcb_info = hns3_get_dcb_info,
6517 : : .dev_supported_ptypes_get = hns3_dev_supported_ptypes_get,
6518 : : .fec_get_capability = hns3_fec_get_capability,
6519 : : .fec_get = hns3_fec_get,
6520 : : .fec_set = hns3_fec_set,
6521 : : .tm_ops_get = hns3_tm_ops_get,
6522 : : .tx_done_cleanup = hns3_tx_done_cleanup,
6523 : : .timesync_enable = hns3_timesync_enable,
6524 : : .timesync_disable = hns3_timesync_disable,
6525 : : .timesync_read_rx_timestamp = hns3_timesync_read_rx_timestamp,
6526 : : .timesync_read_tx_timestamp = hns3_timesync_read_tx_timestamp,
6527 : : .timesync_adjust_time = hns3_timesync_adjust_time,
6528 : : .timesync_read_time = hns3_timesync_read_time,
6529 : : .timesync_write_time = hns3_timesync_write_time,
6530 : : .eth_dev_priv_dump = hns3_eth_dev_priv_dump,
6531 : : .eth_rx_descriptor_dump = hns3_rx_descriptor_dump,
6532 : : .eth_tx_descriptor_dump = hns3_tx_descriptor_dump,
6533 : : .get_monitor_addr = hns3_get_monitor_addr,
6534 : : };
6535 : :
6536 : : static const struct hns3_reset_ops hns3_reset_ops = {
6537 : : .reset_service = hns3_reset_service,
6538 : : .stop_service = hns3_stop_service,
6539 : : .prepare_reset = hns3_prepare_reset,
6540 : : .wait_hardware_ready = hns3_wait_hardware_ready,
6541 : : .reinit_dev = hns3_reinit_dev,
6542 : : .restore_conf = hns3_restore_conf,
6543 : : .start_service = hns3_start_service,
6544 : : };
6545 : :
6546 : : static void
6547 : : hns3_init_hw_ops(struct hns3_hw *hw)
6548 : : {
6549 : 0 : hw->ops.add_mc_mac_addr = hns3_add_mc_mac_addr;
6550 : 0 : hw->ops.del_mc_mac_addr = hns3_remove_mc_mac_addr;
6551 : 0 : hw->ops.add_uc_mac_addr = hns3_add_uc_mac_addr;
6552 : 0 : hw->ops.del_uc_mac_addr = hns3_remove_uc_mac_addr;
6553 : 0 : hw->ops.bind_ring_with_vector = hns3_bind_ring_with_vector;
6554 : : }
6555 : :
6556 : : static int
6557 : 0 : hns3_dev_init(struct rte_eth_dev *eth_dev)
6558 : : {
6559 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
6560 : 0 : struct hns3_hw *hw = &hns->hw;
6561 : : int ret;
6562 : :
6563 : 0 : PMD_INIT_FUNC_TRACE();
6564 : :
6565 : 0 : hns3_flow_init(eth_dev);
6566 : :
6567 : 0 : hns3_set_rxtx_function(eth_dev);
6568 : 0 : eth_dev->dev_ops = &hns3_eth_dev_ops;
6569 : 0 : eth_dev->rx_queue_count = hns3_rx_queue_count;
6570 : 0 : ret = hns3_mp_init(eth_dev);
6571 [ # # ]: 0 : if (ret)
6572 : 0 : goto err_mp_init;
6573 : :
6574 [ # # ]: 0 : if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
6575 : 0 : hns3_tx_push_init(eth_dev);
6576 : 0 : return 0;
6577 : : }
6578 : :
6579 : 0 : hw->adapter_state = HNS3_NIC_UNINITIALIZED;
6580 : 0 : hns->is_vf = false;
6581 : 0 : hw->data = eth_dev->data;
6582 : 0 : hns3_parse_devargs(eth_dev);
6583 : :
6584 : : /*
6585 : : * Set default max packet size according to the mtu
6586 : : * default vale in DPDK frame.
6587 : : */
6588 : 0 : hns->pf.mps = hw->data->mtu + HNS3_ETH_OVERHEAD;
6589 : :
6590 : 0 : ret = hns3_reset_init(hw);
6591 [ # # ]: 0 : if (ret)
6592 : 0 : goto err_init_reset;
6593 : 0 : hw->reset.ops = &hns3_reset_ops;
6594 : :
6595 : : hns3_init_hw_ops(hw);
6596 : 0 : ret = hns3_init_pf(eth_dev);
6597 [ # # ]: 0 : if (ret) {
6598 : 0 : PMD_INIT_LOG(ERR, "Failed to init pf: %d", ret);
6599 : 0 : goto err_init_pf;
6600 : : }
6601 : :
6602 : 0 : ret = hns3_init_mac_addrs(eth_dev);
6603 [ # # ]: 0 : if (ret != 0)
6604 : 0 : goto err_init_mac_addrs;
6605 : :
6606 : 0 : hw->adapter_state = HNS3_NIC_INITIALIZED;
6607 : :
6608 [ # # ]: 0 : if (rte_atomic_load_explicit(&hw->reset.schedule, rte_memory_order_relaxed) ==
6609 : : SCHEDULE_PENDING) {
6610 : 0 : hns3_err(hw, "Reschedule reset service after dev_init");
6611 : 0 : hns3_schedule_reset(hns);
6612 : : } else {
6613 : : /* IMP will wait ready flag before reset */
6614 : 0 : hns3_notify_reset_ready(hw, false);
6615 : : }
6616 : :
6617 : 0 : hns3_info(hw, "hns3 dev initialization successful!");
6618 : 0 : return 0;
6619 : :
6620 : : err_init_mac_addrs:
6621 : 0 : hns3_uninit_pf(eth_dev);
6622 : :
6623 : 0 : err_init_pf:
6624 : 0 : rte_free(hw->reset.wait_data);
6625 : :
6626 : 0 : err_init_reset:
6627 : 0 : hns3_mp_uninit(eth_dev);
6628 : :
6629 : 0 : err_mp_init:
6630 : 0 : eth_dev->dev_ops = NULL;
6631 : 0 : eth_dev->rx_pkt_burst = NULL;
6632 : 0 : eth_dev->rx_descriptor_status = NULL;
6633 : 0 : eth_dev->tx_pkt_burst = NULL;
6634 : 0 : eth_dev->tx_pkt_prepare = NULL;
6635 : 0 : eth_dev->tx_descriptor_status = NULL;
6636 : 0 : return ret;
6637 : : }
6638 : :
6639 : : static int
6640 : 0 : hns3_dev_uninit(struct rte_eth_dev *eth_dev)
6641 : : {
6642 : 0 : struct hns3_adapter *hns = eth_dev->data->dev_private;
6643 : : struct hns3_hw *hw = &hns->hw;
6644 : :
6645 : 0 : PMD_INIT_FUNC_TRACE();
6646 : :
6647 [ # # ]: 0 : if (rte_eal_process_type() != RTE_PROC_PRIMARY) {
6648 : 0 : hns3_mp_uninit(eth_dev);
6649 : 0 : return 0;
6650 : : }
6651 : :
6652 [ # # ]: 0 : if (hw->adapter_state < HNS3_NIC_CLOSING)
6653 : 0 : hns3_dev_close(eth_dev);
6654 : :
6655 : 0 : hw->adapter_state = HNS3_NIC_REMOVED;
6656 : 0 : return 0;
6657 : : }
6658 : :
6659 : : static int
6660 : 0 : eth_hns3_pci_probe(struct rte_pci_driver *pci_drv __rte_unused,
6661 : : struct rte_pci_device *pci_dev)
6662 : : {
6663 : 0 : return rte_eth_dev_pci_generic_probe(pci_dev,
6664 : : sizeof(struct hns3_adapter),
6665 : : hns3_dev_init);
6666 : : }
6667 : :
6668 : : static int
6669 : 0 : eth_hns3_pci_remove(struct rte_pci_device *pci_dev)
6670 : : {
6671 : 0 : return rte_eth_dev_pci_generic_remove(pci_dev, hns3_dev_uninit);
6672 : : }
6673 : :
6674 : : static const struct rte_pci_id pci_id_hns3_map[] = {
6675 : : { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_GE) },
6676 : : { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_25GE) },
6677 : : { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_25GE_RDMA) },
6678 : : { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_50GE_RDMA) },
6679 : : { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_100G_RDMA_MACSEC) },
6680 : : { RTE_PCI_DEVICE(PCI_VENDOR_ID_HUAWEI, HNS3_DEV_ID_200G_RDMA) },
6681 : : { .vendor_id = 0, }, /* sentinel */
6682 : : };
6683 : :
6684 : : static struct rte_pci_driver rte_hns3_pmd = {
6685 : : .id_table = pci_id_hns3_map,
6686 : : .drv_flags = RTE_PCI_DRV_NEED_MAPPING | RTE_PCI_DRV_INTR_LSC,
6687 : : .probe = eth_hns3_pci_probe,
6688 : : .remove = eth_hns3_pci_remove,
6689 : : };
6690 : :
6691 : 252 : RTE_PMD_REGISTER_PCI(net_hns3, rte_hns3_pmd);
6692 : : RTE_PMD_REGISTER_PCI_TABLE(net_hns3, pci_id_hns3_map);
6693 : : RTE_PMD_REGISTER_KMOD_DEP(net_hns3, "* igb_uio | vfio-pci");
6694 : : RTE_PMD_REGISTER_PARAM_STRING(net_hns3,
6695 : : HNS3_DEVARG_RX_FUNC_HINT "=vec|sve|simple|common "
6696 : : HNS3_DEVARG_TX_FUNC_HINT "=vec|sve|simple|common "
6697 : : HNS3_DEVARG_DEV_CAPS_MASK "=<1-65535> "
6698 : : HNS3_DEVARG_MBX_TIME_LIMIT_MS "=<uint16> "
6699 : : HNS3_DEVARG_FDIR_VLAN_MATCH_MODE "=strict|nostrict "
6700 : : HNS3_DEVARG_FDIR_TUPLE_CONFIG "=+outvlan-insmac|+outvlan-indmac|"
6701 : : "+outvlan-insip|+outvlan-indip"
6702 : : "+outvlan-sctptag|+outvlan-tunvni "
6703 : : HNS3_DEVARG_FDIR_INDEX_CONFIG "=hash|priority ");
6704 [ - + ]: 252 : RTE_LOG_REGISTER_SUFFIX(hns3_logtype_init, init, NOTICE);
6705 [ - + ]: 252 : RTE_LOG_REGISTER_SUFFIX(hns3_logtype_driver, driver, NOTICE);
6706 : : #ifdef RTE_ETHDEV_DEBUG_RX
6707 : : RTE_LOG_REGISTER_SUFFIX(hns3_logtype_rx, rx, DEBUG);
6708 : : #endif
6709 : : #ifdef RTE_ETHDEV_DEBUG_TX
6710 : : RTE_LOG_REGISTER_SUFFIX(hns3_logtype_tx, tx, DEBUG);
6711 : : #endif
|