1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2018-2021 HiSilicon Limited.
3 */
4
5 #include <rte_io.h>
6 #include <rte_ethdev.h>
7
8 #include "hns3_logs.h"
9 #include "hns3_ethdev.h"
10 #include "hns3_dcb.h"
11
12 #define HNS3_SHAPER_BS_U_DEF 5
13 #define HNS3_SHAPER_BS_S_DEF 20
14 #define BW_MAX_PERCENT 100
15
16 /*
17 * hns3_shaper_para_calc: calculate ir parameter for the shaper
18 * @ir: Rate to be config, its unit is Mbps
19 * @shaper_level: the shaper level. eg: port, pg, priority, queueset
20 * @shaper_para: shaper parameter of IR shaper
21 *
22 * the formula:
23 *
24 * IR_b * (2 ^ IR_u) * 8
25 * IR(Mbps) = ------------------------- * CLOCK(1000Mbps)
26 * Tick * (2 ^ IR_s)
27 *
28 * @return: 0: calculate successful, negative: fail
29 */
30 static int
hns3_shaper_para_calc(struct hns3_hw * hw,uint32_t ir,uint8_t shaper_level,struct hns3_shaper_parameter * shaper_para)31 hns3_shaper_para_calc(struct hns3_hw *hw, uint32_t ir, uint8_t shaper_level,
32 struct hns3_shaper_parameter *shaper_para)
33 {
34 #define SHAPER_DEFAULT_IR_B 126
35 #define DIVISOR_CLK (1000 * 8)
36 #define DIVISOR_IR_B_126 (126 * DIVISOR_CLK)
37
38 const uint16_t tick_array[HNS3_SHAPER_LVL_CNT] = {
39 6 * 256, /* Priority level */
40 6 * 32, /* Priority group level */
41 6 * 8, /* Port level */
42 6 * 256 /* Qset level */
43 };
44 uint8_t ir_u_calc = 0;
45 uint8_t ir_s_calc = 0;
46 uint32_t denominator;
47 uint32_t ir_calc;
48 uint32_t tick;
49
50 /* Calc tick */
51 if (shaper_level >= HNS3_SHAPER_LVL_CNT) {
52 hns3_err(hw,
53 "shaper_level(%u) is greater than HNS3_SHAPER_LVL_CNT(%d)",
54 shaper_level, HNS3_SHAPER_LVL_CNT);
55 return -EINVAL;
56 }
57
58 if (ir > hw->max_tm_rate) {
59 hns3_err(hw, "rate(%u) exceeds the max rate(%u) driver "
60 "supported.", ir, hw->max_tm_rate);
61 return -EINVAL;
62 }
63
64 tick = tick_array[shaper_level];
65
66 /*
67 * Calc the speed if ir_b = 126, ir_u = 0 and ir_s = 0
68 * the formula is changed to:
69 * 126 * 1 * 8
70 * ir_calc = ---------------- * 1000
71 * tick * 1
72 */
73 ir_calc = (DIVISOR_IR_B_126 + (tick >> 1) - 1) / tick;
74
75 if (ir_calc == ir) {
76 shaper_para->ir_b = SHAPER_DEFAULT_IR_B;
77 } else if (ir_calc > ir) {
78 /* Increasing the denominator to select ir_s value */
79 while (ir_calc >= ir && ir) {
80 ir_s_calc++;
81 ir_calc = DIVISOR_IR_B_126 / (tick * (1 << ir_s_calc));
82 }
83
84 shaper_para->ir_b = (ir * tick * (1 << ir_s_calc) +
85 (DIVISOR_CLK >> 1)) / DIVISOR_CLK;
86 } else {
87 /*
88 * Increasing the numerator to select ir_u value. ir_u_calc will
89 * get maximum value when ir_calc is minimum and ir is maximum.
90 * ir_calc gets minimum value when tick is the maximum value.
91 * At the same time, value of ir_u_calc can only be increased up
92 * to eight after the while loop if the value of ir is equal
93 * to hw->max_tm_rate.
94 */
95 uint32_t numerator;
96 do {
97 ir_u_calc++;
98 numerator = DIVISOR_IR_B_126 * (1 << ir_u_calc);
99 ir_calc = (numerator + (tick >> 1)) / tick;
100 } while (ir_calc < ir);
101
102 if (ir_calc == ir) {
103 shaper_para->ir_b = SHAPER_DEFAULT_IR_B;
104 } else {
105 --ir_u_calc;
106
107 /*
108 * The maximum value of ir_u_calc in this branch is
109 * seven in all cases. Thus, value of denominator can
110 * not be zero here.
111 */
112 denominator = DIVISOR_CLK * (1 << ir_u_calc);
113 shaper_para->ir_b =
114 (ir * tick + (denominator >> 1)) / denominator;
115 }
116 }
117
118 shaper_para->ir_u = ir_u_calc;
119 shaper_para->ir_s = ir_s_calc;
120
121 return 0;
122 }
123
124 static int
hns3_fill_pri_array(struct hns3_hw * hw,uint8_t * pri,uint8_t pri_id)125 hns3_fill_pri_array(struct hns3_hw *hw, uint8_t *pri, uint8_t pri_id)
126 {
127 #define HNS3_HALF_BYTE_BIT_OFFSET 4
128 uint8_t tc = hw->dcb_info.prio_tc[pri_id];
129
130 if (tc >= hw->dcb_info.num_tc)
131 return -EINVAL;
132
133 /*
134 * The register for priority has four bytes, the first bytes includes
135 * priority0 and priority1, the higher 4bit stands for priority1
136 * while the lower 4bit stands for priority0, as below:
137 * first byte: | pri_1 | pri_0 |
138 * second byte: | pri_3 | pri_2 |
139 * third byte: | pri_5 | pri_4 |
140 * fourth byte: | pri_7 | pri_6 |
141 */
142 pri[pri_id >> 1] |= tc << ((pri_id & 1) * HNS3_HALF_BYTE_BIT_OFFSET);
143
144 return 0;
145 }
146
147 static int
hns3_up_to_tc_map(struct hns3_hw * hw)148 hns3_up_to_tc_map(struct hns3_hw *hw)
149 {
150 struct hns3_cmd_desc desc;
151 uint8_t *pri = (uint8_t *)desc.data;
152 uint8_t pri_id;
153 int ret;
154
155 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_PRI_TO_TC_MAPPING, false);
156
157 for (pri_id = 0; pri_id < HNS3_MAX_USER_PRIO; pri_id++) {
158 ret = hns3_fill_pri_array(hw, pri, pri_id);
159 if (ret)
160 return ret;
161 }
162
163 return hns3_cmd_send(hw, &desc, 1);
164 }
165
166 static int
hns3_pg_to_pri_map_cfg(struct hns3_hw * hw,uint8_t pg_id,uint8_t pri_bit_map)167 hns3_pg_to_pri_map_cfg(struct hns3_hw *hw, uint8_t pg_id, uint8_t pri_bit_map)
168 {
169 struct hns3_pg_to_pri_link_cmd *map;
170 struct hns3_cmd_desc desc;
171
172 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_PG_TO_PRI_LINK, false);
173
174 map = (struct hns3_pg_to_pri_link_cmd *)desc.data;
175
176 map->pg_id = pg_id;
177 map->pri_bit_map = pri_bit_map;
178
179 return hns3_cmd_send(hw, &desc, 1);
180 }
181
182 static int
hns3_pg_to_pri_map(struct hns3_hw * hw)183 hns3_pg_to_pri_map(struct hns3_hw *hw)
184 {
185 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
186 struct hns3_pf *pf = &hns->pf;
187 struct hns3_pg_info *pg_info;
188 int ret, i;
189
190 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE)
191 return -EINVAL;
192
193 for (i = 0; i < hw->dcb_info.num_pg; i++) {
194 /* Cfg pg to priority mapping */
195 pg_info = &hw->dcb_info.pg_info[i];
196 ret = hns3_pg_to_pri_map_cfg(hw, i, pg_info->tc_bit_map);
197 if (ret)
198 return ret;
199 }
200
201 return 0;
202 }
203
204 static int
hns3_qs_to_pri_map_cfg(struct hns3_hw * hw,uint16_t qs_id,uint8_t pri)205 hns3_qs_to_pri_map_cfg(struct hns3_hw *hw, uint16_t qs_id, uint8_t pri)
206 {
207 struct hns3_qs_to_pri_link_cmd *map;
208 struct hns3_cmd_desc desc;
209
210 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_QS_TO_PRI_LINK, false);
211
212 map = (struct hns3_qs_to_pri_link_cmd *)desc.data;
213
214 map->qs_id = rte_cpu_to_le_16(qs_id);
215 map->priority = pri;
216 map->link_vld = HNS3_DCB_QS_PRI_LINK_VLD_MSK;
217
218 return hns3_cmd_send(hw, &desc, 1);
219 }
220
221 static int
hns3_dcb_qs_weight_cfg(struct hns3_hw * hw,uint16_t qs_id,uint8_t dwrr)222 hns3_dcb_qs_weight_cfg(struct hns3_hw *hw, uint16_t qs_id, uint8_t dwrr)
223 {
224 struct hns3_qs_weight_cmd *weight;
225 struct hns3_cmd_desc desc;
226
227 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_QS_WEIGHT, false);
228
229 weight = (struct hns3_qs_weight_cmd *)desc.data;
230
231 weight->qs_id = rte_cpu_to_le_16(qs_id);
232 weight->dwrr = dwrr;
233
234 return hns3_cmd_send(hw, &desc, 1);
235 }
236
237 static int
hns3_dcb_ets_tc_dwrr_cfg(struct hns3_hw * hw)238 hns3_dcb_ets_tc_dwrr_cfg(struct hns3_hw *hw)
239 {
240 #define DEFAULT_TC_WEIGHT 1
241 #define DEFAULT_TC_OFFSET 14
242 struct hns3_ets_tc_weight_cmd *ets_weight;
243 struct hns3_cmd_desc desc;
244 uint8_t i;
245
246 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_ETS_TC_WEIGHT, false);
247 ets_weight = (struct hns3_ets_tc_weight_cmd *)desc.data;
248
249 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
250 struct hns3_pg_info *pg_info;
251
252 ets_weight->tc_weight[i] = DEFAULT_TC_WEIGHT;
253
254 if (!(hw->hw_tc_map & BIT(i)))
255 continue;
256
257 pg_info = &hw->dcb_info.pg_info[hw->dcb_info.tc_info[i].pgid];
258 ets_weight->tc_weight[i] = pg_info->tc_dwrr[i];
259 }
260
261 ets_weight->weight_offset = DEFAULT_TC_OFFSET;
262
263 return hns3_cmd_send(hw, &desc, 1);
264 }
265
266 static int
hns3_dcb_pri_weight_cfg(struct hns3_hw * hw,uint8_t pri_id,uint8_t dwrr)267 hns3_dcb_pri_weight_cfg(struct hns3_hw *hw, uint8_t pri_id, uint8_t dwrr)
268 {
269 struct hns3_priority_weight_cmd *weight;
270 struct hns3_cmd_desc desc;
271
272 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_PRI_WEIGHT, false);
273
274 weight = (struct hns3_priority_weight_cmd *)desc.data;
275
276 weight->pri_id = pri_id;
277 weight->dwrr = dwrr;
278
279 return hns3_cmd_send(hw, &desc, 1);
280 }
281
282 static int
hns3_dcb_pg_weight_cfg(struct hns3_hw * hw,uint8_t pg_id,uint8_t dwrr)283 hns3_dcb_pg_weight_cfg(struct hns3_hw *hw, uint8_t pg_id, uint8_t dwrr)
284 {
285 struct hns3_pg_weight_cmd *weight;
286 struct hns3_cmd_desc desc;
287
288 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_PG_WEIGHT, false);
289
290 weight = (struct hns3_pg_weight_cmd *)desc.data;
291
292 weight->pg_id = pg_id;
293 weight->dwrr = dwrr;
294
295 return hns3_cmd_send(hw, &desc, 1);
296 }
297 static int
hns3_dcb_pg_schd_mode_cfg(struct hns3_hw * hw,uint8_t pg_id)298 hns3_dcb_pg_schd_mode_cfg(struct hns3_hw *hw, uint8_t pg_id)
299 {
300 struct hns3_cmd_desc desc;
301
302 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_PG_SCH_MODE_CFG, false);
303
304 if (hw->dcb_info.pg_info[pg_id].pg_sch_mode == HNS3_SCH_MODE_DWRR)
305 desc.data[1] = rte_cpu_to_le_32(HNS3_DCB_TX_SCHD_DWRR_MSK);
306 else
307 desc.data[1] = 0;
308
309 desc.data[0] = rte_cpu_to_le_32(pg_id);
310
311 return hns3_cmd_send(hw, &desc, 1);
312 }
313
314 static uint32_t
hns3_dcb_get_shapping_para(uint8_t ir_b,uint8_t ir_u,uint8_t ir_s,uint8_t bs_b,uint8_t bs_s)315 hns3_dcb_get_shapping_para(uint8_t ir_b, uint8_t ir_u, uint8_t ir_s,
316 uint8_t bs_b, uint8_t bs_s)
317 {
318 uint32_t shapping_para = 0;
319
320 /* If ir_b is zero it means IR is 0Mbps, return zero of shapping_para */
321 if (ir_b == 0)
322 return shapping_para;
323
324 hns3_dcb_set_field(shapping_para, IR_B, ir_b);
325 hns3_dcb_set_field(shapping_para, IR_U, ir_u);
326 hns3_dcb_set_field(shapping_para, IR_S, ir_s);
327 hns3_dcb_set_field(shapping_para, BS_B, bs_b);
328 hns3_dcb_set_field(shapping_para, BS_S, bs_s);
329
330 return shapping_para;
331 }
332
333 static int
hns3_dcb_port_shaper_cfg(struct hns3_hw * hw,uint32_t speed)334 hns3_dcb_port_shaper_cfg(struct hns3_hw *hw, uint32_t speed)
335 {
336 struct hns3_port_shapping_cmd *shap_cfg_cmd;
337 struct hns3_shaper_parameter shaper_parameter;
338 uint32_t shapping_para;
339 uint32_t ir_u, ir_b, ir_s;
340 struct hns3_cmd_desc desc;
341 int ret;
342
343 ret = hns3_shaper_para_calc(hw, speed,
344 HNS3_SHAPER_LVL_PORT, &shaper_parameter);
345 if (ret) {
346 hns3_err(hw, "calculate shaper parameter failed: %d", ret);
347 return ret;
348 }
349
350 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_PORT_SHAPPING, false);
351 shap_cfg_cmd = (struct hns3_port_shapping_cmd *)desc.data;
352
353 ir_b = shaper_parameter.ir_b;
354 ir_u = shaper_parameter.ir_u;
355 ir_s = shaper_parameter.ir_s;
356 shapping_para = hns3_dcb_get_shapping_para(ir_b, ir_u, ir_s,
357 HNS3_SHAPER_BS_U_DEF,
358 HNS3_SHAPER_BS_S_DEF);
359
360 shap_cfg_cmd->port_shapping_para = rte_cpu_to_le_32(shapping_para);
361
362 /*
363 * Configure the port_rate and set bit HNS3_TM_RATE_VLD_B of flag
364 * field in hns3_port_shapping_cmd to require firmware to recalculate
365 * shapping parameters. And whether the parameters are recalculated
366 * depends on the firmware version. But driver still needs to
367 * calculate it and configure to firmware for better compatibility.
368 */
369 shap_cfg_cmd->port_rate = rte_cpu_to_le_32(speed);
370 hns3_set_bit(shap_cfg_cmd->flag, HNS3_TM_RATE_VLD_B, 1);
371
372 return hns3_cmd_send(hw, &desc, 1);
373 }
374
375 int
hns3_port_shaper_update(struct hns3_hw * hw,uint32_t speed)376 hns3_port_shaper_update(struct hns3_hw *hw, uint32_t speed)
377 {
378 int ret;
379
380 ret = hns3_dcb_port_shaper_cfg(hw, speed);
381 if (ret)
382 hns3_err(hw, "configure port shappering failed: ret = %d", ret);
383
384 return ret;
385 }
386
387 static int
hns3_dcb_pg_shapping_cfg(struct hns3_hw * hw,enum hns3_shap_bucket bucket,uint8_t pg_id,uint32_t shapping_para,uint32_t rate)388 hns3_dcb_pg_shapping_cfg(struct hns3_hw *hw, enum hns3_shap_bucket bucket,
389 uint8_t pg_id, uint32_t shapping_para, uint32_t rate)
390 {
391 struct hns3_pg_shapping_cmd *shap_cfg_cmd;
392 enum hns3_opcode_type opcode;
393 struct hns3_cmd_desc desc;
394
395 opcode = bucket ? HNS3_OPC_TM_PG_P_SHAPPING :
396 HNS3_OPC_TM_PG_C_SHAPPING;
397 hns3_cmd_setup_basic_desc(&desc, opcode, false);
398
399 shap_cfg_cmd = (struct hns3_pg_shapping_cmd *)desc.data;
400
401 shap_cfg_cmd->pg_id = pg_id;
402
403 shap_cfg_cmd->pg_shapping_para = rte_cpu_to_le_32(shapping_para);
404
405 /*
406 * Configure the pg_rate and set bit HNS3_TM_RATE_VLD_B of flag field in
407 * hns3_pg_shapping_cmd to require firmware to recalculate shapping
408 * parameters. And whether parameters are recalculated depends on
409 * the firmware version. But driver still needs to calculate it and
410 * configure to firmware for better compatibility.
411 */
412 shap_cfg_cmd->pg_rate = rte_cpu_to_le_32(rate);
413 hns3_set_bit(shap_cfg_cmd->flag, HNS3_TM_RATE_VLD_B, 1);
414
415 return hns3_cmd_send(hw, &desc, 1);
416 }
417
418 static int
hns3_pg_shaper_rate_cfg(struct hns3_hw * hw,uint8_t pg_id,uint32_t rate)419 hns3_pg_shaper_rate_cfg(struct hns3_hw *hw, uint8_t pg_id, uint32_t rate)
420 {
421 struct hns3_shaper_parameter shaper_parameter;
422 uint32_t ir_u, ir_b, ir_s;
423 uint32_t shaper_para;
424 int ret;
425
426 /* Calc shaper para */
427 ret = hns3_shaper_para_calc(hw, rate, HNS3_SHAPER_LVL_PG,
428 &shaper_parameter);
429 if (ret) {
430 hns3_err(hw, "calculate shaper parameter fail, ret = %d.",
431 ret);
432 return ret;
433 }
434
435 shaper_para = hns3_dcb_get_shapping_para(0, 0, 0,
436 HNS3_SHAPER_BS_U_DEF,
437 HNS3_SHAPER_BS_S_DEF);
438
439 ret = hns3_dcb_pg_shapping_cfg(hw, HNS3_DCB_SHAP_C_BUCKET, pg_id,
440 shaper_para, rate);
441 if (ret) {
442 hns3_err(hw, "config PG CIR shaper parameter fail, ret = %d.",
443 ret);
444 return ret;
445 }
446
447 ir_b = shaper_parameter.ir_b;
448 ir_u = shaper_parameter.ir_u;
449 ir_s = shaper_parameter.ir_s;
450 shaper_para = hns3_dcb_get_shapping_para(ir_b, ir_u, ir_s,
451 HNS3_SHAPER_BS_U_DEF,
452 HNS3_SHAPER_BS_S_DEF);
453
454 ret = hns3_dcb_pg_shapping_cfg(hw, HNS3_DCB_SHAP_P_BUCKET, pg_id,
455 shaper_para, rate);
456 if (ret) {
457 hns3_err(hw, "config PG PIR shaper parameter fail, ret = %d.",
458 ret);
459 return ret;
460 }
461
462 return 0;
463 }
464
465 static int
hns3_dcb_pg_shaper_cfg(struct hns3_hw * hw)466 hns3_dcb_pg_shaper_cfg(struct hns3_hw *hw)
467 {
468 struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
469 uint32_t rate;
470 uint8_t i;
471 int ret;
472
473 /* Cfg pg schd */
474 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE)
475 return -EINVAL;
476
477 /* Pg to pri */
478 for (i = 0; i < hw->dcb_info.num_pg; i++) {
479 rate = hw->dcb_info.pg_info[i].bw_limit;
480 ret = hns3_pg_shaper_rate_cfg(hw, i, rate);
481 if (ret)
482 return ret;
483 }
484
485 return 0;
486 }
487
488 static int
hns3_dcb_qs_schd_mode_cfg(struct hns3_hw * hw,uint16_t qs_id,uint8_t mode)489 hns3_dcb_qs_schd_mode_cfg(struct hns3_hw *hw, uint16_t qs_id, uint8_t mode)
490 {
491 struct hns3_cmd_desc desc;
492
493 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_QS_SCH_MODE_CFG, false);
494
495 if (mode == HNS3_SCH_MODE_DWRR)
496 desc.data[1] = rte_cpu_to_le_32(HNS3_DCB_TX_SCHD_DWRR_MSK);
497 else
498 desc.data[1] = 0;
499
500 desc.data[0] = rte_cpu_to_le_32(qs_id);
501
502 return hns3_cmd_send(hw, &desc, 1);
503 }
504
505 static int
hns3_dcb_pri_schd_mode_cfg(struct hns3_hw * hw,uint8_t pri_id)506 hns3_dcb_pri_schd_mode_cfg(struct hns3_hw *hw, uint8_t pri_id)
507 {
508 struct hns3_cmd_desc desc;
509
510 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_PRI_SCH_MODE_CFG, false);
511
512 if (hw->dcb_info.tc_info[pri_id].tc_sch_mode == HNS3_SCH_MODE_DWRR)
513 desc.data[1] = rte_cpu_to_le_32(HNS3_DCB_TX_SCHD_DWRR_MSK);
514 else
515 desc.data[1] = 0;
516
517 desc.data[0] = rte_cpu_to_le_32(pri_id);
518
519 return hns3_cmd_send(hw, &desc, 1);
520 }
521
522 static int
hns3_dcb_pri_shapping_cfg(struct hns3_hw * hw,enum hns3_shap_bucket bucket,uint8_t pri_id,uint32_t shapping_para,uint32_t rate)523 hns3_dcb_pri_shapping_cfg(struct hns3_hw *hw, enum hns3_shap_bucket bucket,
524 uint8_t pri_id, uint32_t shapping_para, uint32_t rate)
525 {
526 struct hns3_pri_shapping_cmd *shap_cfg_cmd;
527 enum hns3_opcode_type opcode;
528 struct hns3_cmd_desc desc;
529
530 opcode = bucket ? HNS3_OPC_TM_PRI_P_SHAPPING :
531 HNS3_OPC_TM_PRI_C_SHAPPING;
532
533 hns3_cmd_setup_basic_desc(&desc, opcode, false);
534
535 shap_cfg_cmd = (struct hns3_pri_shapping_cmd *)desc.data;
536
537 shap_cfg_cmd->pri_id = pri_id;
538
539 shap_cfg_cmd->pri_shapping_para = rte_cpu_to_le_32(shapping_para);
540
541 /*
542 * Configure the pri_rate and set bit HNS3_TM_RATE_VLD_B of flag
543 * field in hns3_pri_shapping_cmd to require firmware to recalculate
544 * shapping parameters. And whether the parameters are recalculated
545 * depends on the firmware version. But driver still needs to
546 * calculate it and configure to firmware for better compatibility.
547 */
548 shap_cfg_cmd->pri_rate = rte_cpu_to_le_32(rate);
549 hns3_set_bit(shap_cfg_cmd->flag, HNS3_TM_RATE_VLD_B, 1);
550
551 return hns3_cmd_send(hw, &desc, 1);
552 }
553
554 static int
hns3_pri_shaper_rate_cfg(struct hns3_hw * hw,uint8_t tc_no,uint32_t rate)555 hns3_pri_shaper_rate_cfg(struct hns3_hw *hw, uint8_t tc_no, uint32_t rate)
556 {
557 struct hns3_shaper_parameter shaper_parameter;
558 uint32_t ir_u, ir_b, ir_s;
559 uint32_t shaper_para;
560 int ret;
561
562 ret = hns3_shaper_para_calc(hw, rate, HNS3_SHAPER_LVL_PRI,
563 &shaper_parameter);
564 if (ret) {
565 hns3_err(hw, "calculate shaper parameter failed: %d.",
566 ret);
567 return ret;
568 }
569
570 shaper_para = hns3_dcb_get_shapping_para(0, 0, 0,
571 HNS3_SHAPER_BS_U_DEF,
572 HNS3_SHAPER_BS_S_DEF);
573
574 ret = hns3_dcb_pri_shapping_cfg(hw, HNS3_DCB_SHAP_C_BUCKET, tc_no,
575 shaper_para, rate);
576 if (ret) {
577 hns3_err(hw,
578 "config priority CIR shaper parameter failed: %d.",
579 ret);
580 return ret;
581 }
582
583 ir_b = shaper_parameter.ir_b;
584 ir_u = shaper_parameter.ir_u;
585 ir_s = shaper_parameter.ir_s;
586 shaper_para = hns3_dcb_get_shapping_para(ir_b, ir_u, ir_s,
587 HNS3_SHAPER_BS_U_DEF,
588 HNS3_SHAPER_BS_S_DEF);
589
590 ret = hns3_dcb_pri_shapping_cfg(hw, HNS3_DCB_SHAP_P_BUCKET, tc_no,
591 shaper_para, rate);
592 if (ret) {
593 hns3_err(hw,
594 "config priority PIR shaper parameter failed: %d.",
595 ret);
596 return ret;
597 }
598
599 return 0;
600 }
601
602 static int
hns3_dcb_pri_shaper_cfg(struct hns3_hw * hw)603 hns3_dcb_pri_shaper_cfg(struct hns3_hw *hw)
604 {
605 struct hns3_pf *pf = HNS3_DEV_HW_TO_PF(hw);
606 uint32_t rate;
607 uint8_t i;
608 int ret;
609
610 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE)
611 return -EINVAL;
612
613 for (i = 0; i < hw->dcb_info.num_tc; i++) {
614 rate = hw->dcb_info.tc_info[i].bw_limit;
615 ret = hns3_pri_shaper_rate_cfg(hw, i, rate);
616 if (ret) {
617 hns3_err(hw, "config pri shaper failed: %d.", ret);
618 return ret;
619 }
620 }
621
622 return 0;
623 }
624
625 static int
hns3_set_rss_size(struct hns3_hw * hw,uint16_t nb_rx_q)626 hns3_set_rss_size(struct hns3_hw *hw, uint16_t nb_rx_q)
627 {
628 struct hns3_rss_conf *rss_cfg = &hw->rss_info;
629 uint16_t rx_qnum_per_tc;
630 uint16_t used_rx_queues;
631 int i;
632
633 rx_qnum_per_tc = nb_rx_q / hw->num_tc;
634 if (rx_qnum_per_tc > hw->rss_size_max) {
635 hns3_err(hw, "rx queue number of per tc (%u) is greater than "
636 "value (%u) hardware supported.",
637 rx_qnum_per_tc, hw->rss_size_max);
638 return -EINVAL;
639 }
640
641 used_rx_queues = hw->num_tc * rx_qnum_per_tc;
642 if (used_rx_queues != nb_rx_q) {
643 hns3_err(hw, "rx queue number (%u) configured must be an "
644 "integral multiple of valid tc number (%u).",
645 nb_rx_q, hw->num_tc);
646 return -EINVAL;
647 }
648 hw->alloc_rss_size = rx_qnum_per_tc;
649 hw->used_rx_queues = used_rx_queues;
650
651 /*
652 * When rss size is changed, we need to update rss redirection table
653 * maintained by driver. Besides, during the entire reset process, we
654 * need to ensure that the rss table information are not overwritten
655 * and configured directly to the hardware in the RESET_STAGE_RESTORE
656 * stage of the reset process.
657 */
658 if (__atomic_load_n(&hw->reset.resetting, __ATOMIC_RELAXED) == 0) {
659 for (i = 0; i < hw->rss_ind_tbl_size; i++)
660 rss_cfg->rss_indirection_tbl[i] =
661 i % hw->alloc_rss_size;
662 }
663
664 return 0;
665 }
666
667 static int
hns3_tc_queue_mapping_cfg(struct hns3_hw * hw,uint16_t nb_tx_q)668 hns3_tc_queue_mapping_cfg(struct hns3_hw *hw, uint16_t nb_tx_q)
669 {
670 struct hns3_tc_queue_info *tc_queue;
671 uint16_t used_tx_queues;
672 uint16_t tx_qnum_per_tc;
673 uint8_t i;
674
675 tx_qnum_per_tc = nb_tx_q / hw->num_tc;
676 used_tx_queues = hw->num_tc * tx_qnum_per_tc;
677 if (used_tx_queues != nb_tx_q) {
678 hns3_err(hw, "tx queue number (%u) configured must be an "
679 "integral multiple of valid tc number (%u).",
680 nb_tx_q, hw->num_tc);
681 return -EINVAL;
682 }
683
684 hw->used_tx_queues = used_tx_queues;
685 hw->tx_qnum_per_tc = tx_qnum_per_tc;
686 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
687 tc_queue = &hw->tc_queue[i];
688 if (hw->hw_tc_map & BIT(i) && i < hw->num_tc) {
689 tc_queue->enable = true;
690 tc_queue->tqp_offset = i * hw->tx_qnum_per_tc;
691 tc_queue->tqp_count = hw->tx_qnum_per_tc;
692 tc_queue->tc = i;
693 } else {
694 /* Set to default queue if TC is disable */
695 tc_queue->enable = false;
696 tc_queue->tqp_offset = 0;
697 tc_queue->tqp_count = 0;
698 tc_queue->tc = 0;
699 }
700 }
701
702 return 0;
703 }
704
705 uint8_t
hns3_txq_mapped_tc_get(struct hns3_hw * hw,uint16_t txq_no)706 hns3_txq_mapped_tc_get(struct hns3_hw *hw, uint16_t txq_no)
707 {
708 struct hns3_tc_queue_info *tc_queue;
709 uint8_t i;
710
711 for (i = 0; i < HNS3_MAX_TC_NUM; i++) {
712 tc_queue = &hw->tc_queue[i];
713 if (!tc_queue->enable)
714 continue;
715
716 if (txq_no >= tc_queue->tqp_offset &&
717 txq_no < tc_queue->tqp_offset + tc_queue->tqp_count)
718 return i;
719 }
720
721 /* return TC0 in default case */
722 return 0;
723 }
724
725 int
hns3_queue_to_tc_mapping(struct hns3_hw * hw,uint16_t nb_rx_q,uint16_t nb_tx_q)726 hns3_queue_to_tc_mapping(struct hns3_hw *hw, uint16_t nb_rx_q, uint16_t nb_tx_q)
727 {
728 int ret;
729
730 if (nb_rx_q < hw->num_tc) {
731 hns3_err(hw, "number of Rx queues(%u) is less than number of TC(%u).",
732 nb_rx_q, hw->num_tc);
733 return -EINVAL;
734 }
735
736 if (nb_tx_q < hw->num_tc) {
737 hns3_err(hw, "number of Tx queues(%u) is less than number of TC(%u).",
738 nb_tx_q, hw->num_tc);
739 return -EINVAL;
740 }
741
742 ret = hns3_set_rss_size(hw, nb_rx_q);
743 if (ret)
744 return ret;
745
746 return hns3_tc_queue_mapping_cfg(hw, nb_tx_q);
747 }
748
749 static int
hns3_dcb_update_tc_queue_mapping(struct hns3_hw * hw,uint16_t nb_rx_q,uint16_t nb_tx_q)750 hns3_dcb_update_tc_queue_mapping(struct hns3_hw *hw, uint16_t nb_rx_q,
751 uint16_t nb_tx_q)
752 {
753 hw->num_tc = hw->dcb_info.num_tc;
754
755 return hns3_queue_to_tc_mapping(hw, nb_rx_q, nb_tx_q);
756 }
757
758 int
hns3_dcb_info_init(struct hns3_hw * hw)759 hns3_dcb_info_init(struct hns3_hw *hw)
760 {
761 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
762 struct hns3_pf *pf = &hns->pf;
763 int i, k;
764
765 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE &&
766 hw->dcb_info.num_pg != 1)
767 return -EINVAL;
768
769 /* Initializing PG information */
770 memset(hw->dcb_info.pg_info, 0,
771 sizeof(struct hns3_pg_info) * HNS3_PG_NUM);
772 for (i = 0; i < hw->dcb_info.num_pg; i++) {
773 hw->dcb_info.pg_dwrr[i] = i ? 0 : BW_MAX_PERCENT;
774 hw->dcb_info.pg_info[i].pg_id = i;
775 hw->dcb_info.pg_info[i].pg_sch_mode = HNS3_SCH_MODE_DWRR;
776 hw->dcb_info.pg_info[i].bw_limit = hw->max_tm_rate;
777
778 if (i != 0)
779 continue;
780
781 hw->dcb_info.pg_info[i].tc_bit_map = hw->hw_tc_map;
782 for (k = 0; k < hw->dcb_info.num_tc; k++)
783 hw->dcb_info.pg_info[i].tc_dwrr[k] = BW_MAX_PERCENT;
784 }
785
786 /* All UPs mapping to TC0 */
787 for (i = 0; i < HNS3_MAX_USER_PRIO; i++)
788 hw->dcb_info.prio_tc[i] = 0;
789
790 /* Initializing tc information */
791 memset(hw->dcb_info.tc_info, 0,
792 sizeof(struct hns3_tc_info) * HNS3_MAX_TC_NUM);
793 for (i = 0; i < hw->dcb_info.num_tc; i++) {
794 hw->dcb_info.tc_info[i].tc_id = i;
795 hw->dcb_info.tc_info[i].tc_sch_mode = HNS3_SCH_MODE_DWRR;
796 hw->dcb_info.tc_info[i].pgid = 0;
797 hw->dcb_info.tc_info[i].bw_limit =
798 hw->dcb_info.pg_info[0].bw_limit;
799 }
800
801 return 0;
802 }
803
804 static int
hns3_dcb_lvl2_schd_mode_cfg(struct hns3_hw * hw)805 hns3_dcb_lvl2_schd_mode_cfg(struct hns3_hw *hw)
806 {
807 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
808 struct hns3_pf *pf = &hns->pf;
809 int ret, i;
810
811 /* Only being config on TC-Based scheduler mode */
812 if (pf->tx_sch_mode == HNS3_FLAG_VNET_BASE_SCH_MODE)
813 return -EINVAL;
814
815 for (i = 0; i < hw->dcb_info.num_pg; i++) {
816 ret = hns3_dcb_pg_schd_mode_cfg(hw, i);
817 if (ret)
818 return ret;
819 }
820
821 return 0;
822 }
823
824 static int
hns3_dcb_lvl34_schd_mode_cfg(struct hns3_hw * hw)825 hns3_dcb_lvl34_schd_mode_cfg(struct hns3_hw *hw)
826 {
827 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
828 struct hns3_pf *pf = &hns->pf;
829 uint8_t i;
830 int ret;
831
832 if (pf->tx_sch_mode == HNS3_FLAG_TC_BASE_SCH_MODE) {
833 for (i = 0; i < hw->dcb_info.num_tc; i++) {
834 ret = hns3_dcb_pri_schd_mode_cfg(hw, i);
835 if (ret)
836 return ret;
837
838 ret = hns3_dcb_qs_schd_mode_cfg(hw, i,
839 HNS3_SCH_MODE_DWRR);
840 if (ret)
841 return ret;
842 }
843 }
844
845 return 0;
846 }
847
848 static int
hns3_dcb_schd_mode_cfg(struct hns3_hw * hw)849 hns3_dcb_schd_mode_cfg(struct hns3_hw *hw)
850 {
851 int ret;
852
853 ret = hns3_dcb_lvl2_schd_mode_cfg(hw);
854 if (ret) {
855 hns3_err(hw, "config lvl2_schd_mode failed: %d", ret);
856 return ret;
857 }
858
859 ret = hns3_dcb_lvl34_schd_mode_cfg(hw);
860 if (ret)
861 hns3_err(hw, "config lvl34_schd_mode failed: %d", ret);
862
863 return ret;
864 }
865
866 static int
hns3_dcb_pri_tc_base_dwrr_cfg(struct hns3_hw * hw)867 hns3_dcb_pri_tc_base_dwrr_cfg(struct hns3_hw *hw)
868 {
869 struct hns3_pg_info *pg_info;
870 uint8_t dwrr;
871 int ret, i;
872
873 for (i = 0; i < hw->dcb_info.num_tc; i++) {
874 pg_info = &hw->dcb_info.pg_info[hw->dcb_info.tc_info[i].pgid];
875 dwrr = pg_info->tc_dwrr[i];
876
877 ret = hns3_dcb_pri_weight_cfg(hw, i, dwrr);
878 if (ret) {
879 hns3_err(hw,
880 "fail to send priority weight cmd: %d, ret = %d",
881 i, ret);
882 return ret;
883 }
884
885 ret = hns3_dcb_qs_weight_cfg(hw, i, BW_MAX_PERCENT);
886 if (ret) {
887 hns3_err(hw, "fail to send qs_weight cmd: %d, ret = %d",
888 i, ret);
889 return ret;
890 }
891 }
892
893 return 0;
894 }
895
896 static int
hns3_dcb_pri_dwrr_cfg(struct hns3_hw * hw)897 hns3_dcb_pri_dwrr_cfg(struct hns3_hw *hw)
898 {
899 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
900 struct hns3_pf *pf = &hns->pf;
901 uint32_t version;
902 int ret;
903
904 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE)
905 return -EINVAL;
906
907 ret = hns3_dcb_pri_tc_base_dwrr_cfg(hw);
908 if (ret)
909 return ret;
910
911 if (!hns3_dev_get_support(hw, DCB))
912 return 0;
913
914 ret = hns3_dcb_ets_tc_dwrr_cfg(hw);
915 if (ret == -EOPNOTSUPP) {
916 version = hw->fw_version;
917 hns3_warn(hw,
918 "fw %lu.%lu.%lu.%lu doesn't support ets tc weight cmd",
919 hns3_get_field(version, HNS3_FW_VERSION_BYTE3_M,
920 HNS3_FW_VERSION_BYTE3_S),
921 hns3_get_field(version, HNS3_FW_VERSION_BYTE2_M,
922 HNS3_FW_VERSION_BYTE2_S),
923 hns3_get_field(version, HNS3_FW_VERSION_BYTE1_M,
924 HNS3_FW_VERSION_BYTE1_S),
925 hns3_get_field(version, HNS3_FW_VERSION_BYTE0_M,
926 HNS3_FW_VERSION_BYTE0_S));
927 ret = 0;
928 }
929
930 return ret;
931 }
932
933 static int
hns3_dcb_pg_dwrr_cfg(struct hns3_hw * hw)934 hns3_dcb_pg_dwrr_cfg(struct hns3_hw *hw)
935 {
936 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
937 struct hns3_pf *pf = &hns->pf;
938 int ret, i;
939
940 /* Cfg pg schd */
941 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE)
942 return -EINVAL;
943
944 /* Cfg pg to prio */
945 for (i = 0; i < hw->dcb_info.num_pg; i++) {
946 /* Cfg dwrr */
947 ret = hns3_dcb_pg_weight_cfg(hw, i, hw->dcb_info.pg_dwrr[i]);
948 if (ret)
949 return ret;
950 }
951
952 return 0;
953 }
954
955 static int
hns3_dcb_dwrr_cfg(struct hns3_hw * hw)956 hns3_dcb_dwrr_cfg(struct hns3_hw *hw)
957 {
958 int ret;
959
960 ret = hns3_dcb_pg_dwrr_cfg(hw);
961 if (ret) {
962 hns3_err(hw, "config pg_dwrr failed: %d", ret);
963 return ret;
964 }
965
966 ret = hns3_dcb_pri_dwrr_cfg(hw);
967 if (ret)
968 hns3_err(hw, "config pri_dwrr failed: %d", ret);
969
970 return ret;
971 }
972
973 static int
hns3_dcb_shaper_cfg(struct hns3_hw * hw)974 hns3_dcb_shaper_cfg(struct hns3_hw *hw)
975 {
976 int ret;
977
978 ret = hns3_dcb_port_shaper_cfg(hw, hw->mac.link_speed);
979 if (ret) {
980 hns3_err(hw, "config port shaper failed: %d", ret);
981 return ret;
982 }
983
984 ret = hns3_dcb_pg_shaper_cfg(hw);
985 if (ret) {
986 hns3_err(hw, "config pg shaper failed: %d", ret);
987 return ret;
988 }
989
990 return hns3_dcb_pri_shaper_cfg(hw);
991 }
992
993 static int
hns3_q_to_qs_map_cfg(struct hns3_hw * hw,uint16_t q_id,uint16_t qs_id)994 hns3_q_to_qs_map_cfg(struct hns3_hw *hw, uint16_t q_id, uint16_t qs_id)
995 {
996 struct hns3_nq_to_qs_link_cmd *map;
997 struct hns3_cmd_desc desc;
998 uint16_t tmp_qs_id = 0;
999 uint16_t qs_id_l;
1000 uint16_t qs_id_h;
1001
1002 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_NQ_TO_QS_LINK, false);
1003
1004 map = (struct hns3_nq_to_qs_link_cmd *)desc.data;
1005
1006 map->nq_id = rte_cpu_to_le_16(q_id);
1007
1008 /*
1009 * Network engine with revision_id 0x21 uses 0~9 bit of qs_id to
1010 * configure qset_id. So we need to convert qs_id to the follow
1011 * format to support qset_id > 1024.
1012 * qs_id: | 15 | 14 ~ 10 | 9 ~ 0 |
1013 * / / \ \
1014 * / / \ \
1015 * qset_id: | 15 ~ 11 | 10 | 9 ~ 0 |
1016 * | qs_id_h | vld | qs_id_l |
1017 */
1018 qs_id_l = hns3_get_field(qs_id, HNS3_DCB_QS_ID_L_MSK,
1019 HNS3_DCB_QS_ID_L_S);
1020 qs_id_h = hns3_get_field(qs_id, HNS3_DCB_QS_ID_H_MSK,
1021 HNS3_DCB_QS_ID_H_S);
1022 hns3_set_field(tmp_qs_id, HNS3_DCB_QS_ID_L_MSK, HNS3_DCB_QS_ID_L_S,
1023 qs_id_l);
1024 hns3_set_field(tmp_qs_id, HNS3_DCB_QS_ID_H_EXT_MSK,
1025 HNS3_DCB_QS_ID_H_EXT_S, qs_id_h);
1026 map->qset_id = rte_cpu_to_le_16(tmp_qs_id | HNS3_DCB_Q_QS_LINK_VLD_MSK);
1027
1028 return hns3_cmd_send(hw, &desc, 1);
1029 }
1030
1031 static int
hns3_q_to_qs_map(struct hns3_hw * hw)1032 hns3_q_to_qs_map(struct hns3_hw *hw)
1033 {
1034 struct hns3_tc_queue_info *tc_queue;
1035 uint16_t q_id;
1036 uint32_t i, j;
1037 int ret;
1038
1039 for (i = 0; i < hw->num_tc; i++) {
1040 tc_queue = &hw->tc_queue[i];
1041 for (j = 0; j < tc_queue->tqp_count; j++) {
1042 q_id = tc_queue->tqp_offset + j;
1043 ret = hns3_q_to_qs_map_cfg(hw, q_id, i);
1044 if (ret)
1045 return ret;
1046 }
1047 }
1048
1049 return 0;
1050 }
1051
1052 static int
hns3_pri_q_qs_cfg(struct hns3_hw * hw)1053 hns3_pri_q_qs_cfg(struct hns3_hw *hw)
1054 {
1055 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1056 struct hns3_pf *pf = &hns->pf;
1057 uint32_t i;
1058 int ret;
1059
1060 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE)
1061 return -EINVAL;
1062
1063 /* Cfg qs -> pri mapping */
1064 for (i = 0; i < hw->num_tc; i++) {
1065 ret = hns3_qs_to_pri_map_cfg(hw, i, i);
1066 if (ret) {
1067 hns3_err(hw, "qs_to_pri mapping fail: %d", ret);
1068 return ret;
1069 }
1070 }
1071
1072 /* Cfg q -> qs mapping */
1073 ret = hns3_q_to_qs_map(hw);
1074 if (ret)
1075 hns3_err(hw, "nq_to_qs mapping fail: %d", ret);
1076
1077 return ret;
1078 }
1079
1080 static int
hns3_dcb_map_cfg(struct hns3_hw * hw)1081 hns3_dcb_map_cfg(struct hns3_hw *hw)
1082 {
1083 int ret;
1084
1085 ret = hns3_up_to_tc_map(hw);
1086 if (ret) {
1087 hns3_err(hw, "up_to_tc mapping fail: %d", ret);
1088 return ret;
1089 }
1090
1091 ret = hns3_pg_to_pri_map(hw);
1092 if (ret) {
1093 hns3_err(hw, "pri_to_pg mapping fail: %d", ret);
1094 return ret;
1095 }
1096
1097 return hns3_pri_q_qs_cfg(hw);
1098 }
1099
1100 static int
hns3_dcb_schd_setup_hw(struct hns3_hw * hw)1101 hns3_dcb_schd_setup_hw(struct hns3_hw *hw)
1102 {
1103 int ret;
1104
1105 /* Cfg dcb mapping */
1106 ret = hns3_dcb_map_cfg(hw);
1107 if (ret)
1108 return ret;
1109
1110 /* Cfg dcb shaper */
1111 ret = hns3_dcb_shaper_cfg(hw);
1112 if (ret)
1113 return ret;
1114
1115 /* Cfg dwrr */
1116 ret = hns3_dcb_dwrr_cfg(hw);
1117 if (ret)
1118 return ret;
1119
1120 /* Cfg schd mode for each level schd */
1121 return hns3_dcb_schd_mode_cfg(hw);
1122 }
1123
1124 static int
hns3_pause_param_cfg(struct hns3_hw * hw,const uint8_t * addr,uint8_t pause_trans_gap,uint16_t pause_trans_time)1125 hns3_pause_param_cfg(struct hns3_hw *hw, const uint8_t *addr,
1126 uint8_t pause_trans_gap, uint16_t pause_trans_time)
1127 {
1128 struct hns3_cfg_pause_param_cmd *pause_param;
1129 struct hns3_cmd_desc desc;
1130
1131 pause_param = (struct hns3_cfg_pause_param_cmd *)desc.data;
1132
1133 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_MAC_PARA, false);
1134
1135 memcpy(pause_param->mac_addr, addr, RTE_ETHER_ADDR_LEN);
1136 memcpy(pause_param->mac_addr_extra, addr, RTE_ETHER_ADDR_LEN);
1137 pause_param->pause_trans_gap = pause_trans_gap;
1138 pause_param->pause_trans_time = rte_cpu_to_le_16(pause_trans_time);
1139
1140 return hns3_cmd_send(hw, &desc, 1);
1141 }
1142
1143 int
hns3_pause_addr_cfg(struct hns3_hw * hw,const uint8_t * mac_addr)1144 hns3_pause_addr_cfg(struct hns3_hw *hw, const uint8_t *mac_addr)
1145 {
1146 struct hns3_cfg_pause_param_cmd *pause_param;
1147 struct hns3_cmd_desc desc;
1148 uint16_t trans_time;
1149 uint8_t trans_gap;
1150 int ret;
1151
1152 pause_param = (struct hns3_cfg_pause_param_cmd *)desc.data;
1153
1154 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_MAC_PARA, true);
1155
1156 ret = hns3_cmd_send(hw, &desc, 1);
1157 if (ret)
1158 return ret;
1159
1160 trans_gap = pause_param->pause_trans_gap;
1161 trans_time = rte_le_to_cpu_16(pause_param->pause_trans_time);
1162
1163 return hns3_pause_param_cfg(hw, mac_addr, trans_gap, trans_time);
1164 }
1165
1166 static int
hns3_pause_param_setup_hw(struct hns3_hw * hw,uint16_t pause_time)1167 hns3_pause_param_setup_hw(struct hns3_hw *hw, uint16_t pause_time)
1168 {
1169 #define PAUSE_TIME_DIV_BY 2
1170 #define PAUSE_TIME_MIN_VALUE 0x4
1171
1172 struct hns3_mac *mac = &hw->mac;
1173 uint8_t pause_trans_gap;
1174
1175 /*
1176 * Pause transmit gap must be less than "pause_time / 2", otherwise
1177 * the behavior of MAC is undefined.
1178 */
1179 if (pause_time > PAUSE_TIME_DIV_BY * HNS3_DEFAULT_PAUSE_TRANS_GAP)
1180 pause_trans_gap = HNS3_DEFAULT_PAUSE_TRANS_GAP;
1181 else if (pause_time >= PAUSE_TIME_MIN_VALUE &&
1182 pause_time <= PAUSE_TIME_DIV_BY * HNS3_DEFAULT_PAUSE_TRANS_GAP)
1183 pause_trans_gap = pause_time / PAUSE_TIME_DIV_BY - 1;
1184 else {
1185 hns3_warn(hw, "pause_time(%u) is adjusted to 4", pause_time);
1186 pause_time = PAUSE_TIME_MIN_VALUE;
1187 pause_trans_gap = pause_time / PAUSE_TIME_DIV_BY - 1;
1188 }
1189
1190 return hns3_pause_param_cfg(hw, mac->mac_addr,
1191 pause_trans_gap, pause_time);
1192 }
1193
1194 static int
hns3_mac_pause_en_cfg(struct hns3_hw * hw,bool tx,bool rx)1195 hns3_mac_pause_en_cfg(struct hns3_hw *hw, bool tx, bool rx)
1196 {
1197 struct hns3_cmd_desc desc;
1198
1199 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_MAC_PAUSE_EN, false);
1200
1201 desc.data[0] = rte_cpu_to_le_32((tx ? HNS3_TX_MAC_PAUSE_EN_MSK : 0) |
1202 (rx ? HNS3_RX_MAC_PAUSE_EN_MSK : 0));
1203
1204 return hns3_cmd_send(hw, &desc, 1);
1205 }
1206
1207 static int
hns3_pfc_pause_en_cfg(struct hns3_hw * hw,uint8_t pfc_bitmap,bool tx,bool rx)1208 hns3_pfc_pause_en_cfg(struct hns3_hw *hw, uint8_t pfc_bitmap, bool tx, bool rx)
1209 {
1210 struct hns3_cmd_desc desc;
1211 struct hns3_pfc_en_cmd *pfc = (struct hns3_pfc_en_cmd *)desc.data;
1212
1213 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_CFG_PFC_PAUSE_EN, false);
1214
1215 pfc->tx_rx_en_bitmap = (uint8_t)((tx ? HNS3_TX_MAC_PAUSE_EN_MSK : 0) |
1216 (rx ? HNS3_RX_MAC_PAUSE_EN_MSK : 0));
1217
1218 pfc->pri_en_bitmap = pfc_bitmap;
1219
1220 return hns3_cmd_send(hw, &desc, 1);
1221 }
1222
1223 static int
hns3_qs_bp_cfg(struct hns3_hw * hw,uint8_t tc,uint8_t grp_id,uint32_t bit_map)1224 hns3_qs_bp_cfg(struct hns3_hw *hw, uint8_t tc, uint8_t grp_id, uint32_t bit_map)
1225 {
1226 struct hns3_bp_to_qs_map_cmd *bp_to_qs_map_cmd;
1227 struct hns3_cmd_desc desc;
1228
1229 hns3_cmd_setup_basic_desc(&desc, HNS3_OPC_TM_BP_TO_QSET_MAPPING, false);
1230
1231 bp_to_qs_map_cmd = (struct hns3_bp_to_qs_map_cmd *)desc.data;
1232
1233 bp_to_qs_map_cmd->tc_id = tc;
1234 bp_to_qs_map_cmd->qs_group_id = grp_id;
1235 bp_to_qs_map_cmd->qs_bit_map = rte_cpu_to_le_32(bit_map);
1236
1237 return hns3_cmd_send(hw, &desc, 1);
1238 }
1239
1240 static void
hns3_get_rx_tx_en_status(struct hns3_hw * hw,bool * tx_en,bool * rx_en)1241 hns3_get_rx_tx_en_status(struct hns3_hw *hw, bool *tx_en, bool *rx_en)
1242 {
1243 switch (hw->requested_fc_mode) {
1244 case HNS3_FC_NONE:
1245 *tx_en = false;
1246 *rx_en = false;
1247 break;
1248 case HNS3_FC_RX_PAUSE:
1249 *tx_en = false;
1250 *rx_en = true;
1251 break;
1252 case HNS3_FC_TX_PAUSE:
1253 *tx_en = true;
1254 *rx_en = false;
1255 break;
1256 case HNS3_FC_FULL:
1257 *tx_en = true;
1258 *rx_en = true;
1259 break;
1260 default:
1261 *tx_en = false;
1262 *rx_en = false;
1263 break;
1264 }
1265 }
1266
1267 static int
hns3_mac_pause_setup_hw(struct hns3_hw * hw)1268 hns3_mac_pause_setup_hw(struct hns3_hw *hw)
1269 {
1270 bool tx_en, rx_en;
1271
1272 if (hw->current_fc_status == HNS3_FC_STATUS_MAC_PAUSE)
1273 hns3_get_rx_tx_en_status(hw, &tx_en, &rx_en);
1274 else {
1275 tx_en = false;
1276 rx_en = false;
1277 }
1278
1279 return hns3_mac_pause_en_cfg(hw, tx_en, rx_en);
1280 }
1281
1282 static int
hns3_pfc_setup_hw(struct hns3_hw * hw)1283 hns3_pfc_setup_hw(struct hns3_hw *hw)
1284 {
1285 bool tx_en, rx_en;
1286
1287 if (hw->current_fc_status == HNS3_FC_STATUS_PFC)
1288 hns3_get_rx_tx_en_status(hw, &tx_en, &rx_en);
1289 else {
1290 tx_en = false;
1291 rx_en = false;
1292 }
1293
1294 return hns3_pfc_pause_en_cfg(hw, hw->dcb_info.pfc_en, tx_en, rx_en);
1295 }
1296
1297 /*
1298 * Each Tc has a 1024 queue sets to backpress, it divides to
1299 * 32 group, each group contains 32 queue sets, which can be
1300 * represented by uint32_t bitmap.
1301 */
1302 static int
hns3_bp_setup_hw(struct hns3_hw * hw,uint8_t tc)1303 hns3_bp_setup_hw(struct hns3_hw *hw, uint8_t tc)
1304 {
1305 uint32_t qs_bitmap;
1306 int ret;
1307 int i;
1308
1309 for (i = 0; i < HNS3_BP_GRP_NUM; i++) {
1310 uint8_t grp, sub_grp;
1311 qs_bitmap = 0;
1312
1313 grp = hns3_get_field(tc, HNS3_BP_GRP_ID_M, HNS3_BP_GRP_ID_S);
1314 sub_grp = hns3_get_field(tc, HNS3_BP_SUB_GRP_ID_M,
1315 HNS3_BP_SUB_GRP_ID_S);
1316 if (i == grp)
1317 qs_bitmap |= (1 << sub_grp);
1318
1319 ret = hns3_qs_bp_cfg(hw, tc, i, qs_bitmap);
1320 if (ret)
1321 return ret;
1322 }
1323
1324 return 0;
1325 }
1326
1327 static int
hns3_dcb_bp_setup(struct hns3_hw * hw)1328 hns3_dcb_bp_setup(struct hns3_hw *hw)
1329 {
1330 int ret, i;
1331
1332 for (i = 0; i < hw->dcb_info.num_tc; i++) {
1333 ret = hns3_bp_setup_hw(hw, i);
1334 if (ret)
1335 return ret;
1336 }
1337
1338 return 0;
1339 }
1340
1341 static int
hns3_dcb_pause_setup_hw(struct hns3_hw * hw)1342 hns3_dcb_pause_setup_hw(struct hns3_hw *hw)
1343 {
1344 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1345 struct hns3_pf *pf = &hns->pf;
1346 int ret;
1347
1348 ret = hns3_pause_param_setup_hw(hw, pf->pause_time);
1349 if (ret) {
1350 hns3_err(hw, "Fail to set pause parameter. ret = %d", ret);
1351 return ret;
1352 }
1353
1354 ret = hns3_mac_pause_setup_hw(hw);
1355 if (ret) {
1356 hns3_err(hw, "Fail to setup MAC pause. ret = %d", ret);
1357 return ret;
1358 }
1359
1360 /* Only DCB-supported dev supports qset back pressure and pfc cmd */
1361 if (!hns3_dev_get_support(hw, DCB))
1362 return 0;
1363
1364 ret = hns3_pfc_setup_hw(hw);
1365 if (ret) {
1366 hns3_err(hw, "config pfc failed! ret = %d", ret);
1367 return ret;
1368 }
1369
1370 return hns3_dcb_bp_setup(hw);
1371 }
1372
1373 static uint8_t
hns3_dcb_undrop_tc_map(struct hns3_hw * hw,uint8_t pfc_en)1374 hns3_dcb_undrop_tc_map(struct hns3_hw *hw, uint8_t pfc_en)
1375 {
1376 uint8_t pfc_map = 0;
1377 uint8_t *prio_tc;
1378 uint8_t i, j;
1379
1380 prio_tc = hw->dcb_info.prio_tc;
1381 for (i = 0; i < hw->dcb_info.num_tc; i++) {
1382 for (j = 0; j < HNS3_MAX_USER_PRIO; j++) {
1383 if (prio_tc[j] == i && pfc_en & BIT(j)) {
1384 pfc_map |= BIT(i);
1385 break;
1386 }
1387 }
1388 }
1389
1390 return pfc_map;
1391 }
1392
1393 static uint8_t
hns3_dcb_parse_num_tc(struct hns3_adapter * hns)1394 hns3_dcb_parse_num_tc(struct hns3_adapter *hns)
1395 {
1396 struct rte_eth_dcb_rx_conf *dcb_rx_conf;
1397 struct hns3_hw *hw = &hns->hw;
1398 uint8_t max_tc_id = 0;
1399 int i;
1400
1401 dcb_rx_conf = &hw->data->dev_conf.rx_adv_conf.dcb_rx_conf;
1402 for (i = 0; i < HNS3_MAX_USER_PRIO; i++) {
1403 if (dcb_rx_conf->dcb_tc[i] > max_tc_id)
1404 max_tc_id = dcb_rx_conf->dcb_tc[i];
1405 }
1406
1407 /* Number of TC is equal to max_tc_id plus 1. */
1408 return max_tc_id + 1;
1409 }
1410
1411 static int
hns3_dcb_info_cfg(struct hns3_adapter * hns)1412 hns3_dcb_info_cfg(struct hns3_adapter *hns)
1413 {
1414 struct rte_eth_dcb_rx_conf *dcb_rx_conf;
1415 struct hns3_pf *pf = &hns->pf;
1416 struct hns3_hw *hw = &hns->hw;
1417 uint8_t tc_bw, bw_rest;
1418 uint8_t i, j;
1419 int ret;
1420
1421 dcb_rx_conf = &hw->data->dev_conf.rx_adv_conf.dcb_rx_conf;
1422 pf->local_max_tc = (uint8_t)dcb_rx_conf->nb_tcs;
1423 pf->pfc_max = (uint8_t)dcb_rx_conf->nb_tcs;
1424
1425 /* Config pg0 */
1426 memset(hw->dcb_info.pg_info, 0,
1427 sizeof(struct hns3_pg_info) * HNS3_PG_NUM);
1428 hw->dcb_info.pg_dwrr[0] = BW_MAX_PERCENT;
1429 hw->dcb_info.pg_info[0].pg_id = 0;
1430 hw->dcb_info.pg_info[0].pg_sch_mode = HNS3_SCH_MODE_DWRR;
1431 hw->dcb_info.pg_info[0].bw_limit = hw->max_tm_rate;
1432 hw->dcb_info.pg_info[0].tc_bit_map = hw->hw_tc_map;
1433
1434 /* Each tc has same bw for valid tc by default */
1435 tc_bw = BW_MAX_PERCENT / hw->dcb_info.num_tc;
1436 for (i = 0; i < hw->dcb_info.num_tc; i++)
1437 hw->dcb_info.pg_info[0].tc_dwrr[i] = tc_bw;
1438 /* To ensure the sum of tc_dwrr is equal to 100 */
1439 bw_rest = BW_MAX_PERCENT % hw->dcb_info.num_tc;
1440 for (j = 0; j < bw_rest; j++)
1441 hw->dcb_info.pg_info[0].tc_dwrr[j]++;
1442 for (; i < dcb_rx_conf->nb_tcs; i++)
1443 hw->dcb_info.pg_info[0].tc_dwrr[i] = 0;
1444
1445 /* All tcs map to pg0 */
1446 memset(hw->dcb_info.tc_info, 0,
1447 sizeof(struct hns3_tc_info) * HNS3_MAX_TC_NUM);
1448 for (i = 0; i < hw->dcb_info.num_tc; i++) {
1449 hw->dcb_info.tc_info[i].tc_id = i;
1450 hw->dcb_info.tc_info[i].tc_sch_mode = HNS3_SCH_MODE_DWRR;
1451 hw->dcb_info.tc_info[i].pgid = 0;
1452 hw->dcb_info.tc_info[i].bw_limit =
1453 hw->dcb_info.pg_info[0].bw_limit;
1454 }
1455
1456 for (i = 0; i < HNS3_MAX_USER_PRIO; i++)
1457 hw->dcb_info.prio_tc[i] = dcb_rx_conf->dcb_tc[i];
1458
1459 ret = hns3_dcb_update_tc_queue_mapping(hw, hw->data->nb_rx_queues,
1460 hw->data->nb_tx_queues);
1461 if (ret)
1462 hns3_err(hw, "update tc queue mapping failed, ret = %d.", ret);
1463
1464 return ret;
1465 }
1466
1467 static int
hns3_dcb_info_update(struct hns3_adapter * hns,uint8_t num_tc)1468 hns3_dcb_info_update(struct hns3_adapter *hns, uint8_t num_tc)
1469 {
1470 struct hns3_pf *pf = &hns->pf;
1471 struct hns3_hw *hw = &hns->hw;
1472 uint16_t nb_rx_q = hw->data->nb_rx_queues;
1473 uint16_t nb_tx_q = hw->data->nb_tx_queues;
1474 uint8_t bit_map = 0;
1475 uint8_t i;
1476
1477 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE &&
1478 hw->dcb_info.num_pg != 1)
1479 return -EINVAL;
1480
1481 if (nb_rx_q < num_tc) {
1482 hns3_err(hw, "number of Rx queues(%u) is less than tcs(%u).",
1483 nb_rx_q, num_tc);
1484 return -EINVAL;
1485 }
1486
1487 if (nb_tx_q < num_tc) {
1488 hns3_err(hw, "number of Tx queues(%u) is less than tcs(%u).",
1489 nb_tx_q, num_tc);
1490 return -EINVAL;
1491 }
1492
1493 /* Currently not support uncontinuous tc */
1494 hw->dcb_info.num_tc = num_tc;
1495 for (i = 0; i < hw->dcb_info.num_tc; i++)
1496 bit_map |= BIT(i);
1497
1498 if (!bit_map) {
1499 bit_map = 1;
1500 hw->dcb_info.num_tc = 1;
1501 }
1502 hw->hw_tc_map = bit_map;
1503
1504 return hns3_dcb_info_cfg(hns);
1505 }
1506
1507 static int
hns3_dcb_hw_configure(struct hns3_adapter * hns)1508 hns3_dcb_hw_configure(struct hns3_adapter *hns)
1509 {
1510 struct rte_eth_dcb_rx_conf *dcb_rx_conf;
1511 struct hns3_pf *pf = &hns->pf;
1512 struct hns3_hw *hw = &hns->hw;
1513 enum hns3_fc_status fc_status = hw->current_fc_status;
1514 enum hns3_fc_mode requested_fc_mode = hw->requested_fc_mode;
1515 uint8_t hw_pfc_map = hw->dcb_info.hw_pfc_map;
1516 uint8_t pfc_en = hw->dcb_info.pfc_en;
1517 int ret;
1518
1519 if (pf->tx_sch_mode != HNS3_FLAG_TC_BASE_SCH_MODE &&
1520 pf->tx_sch_mode != HNS3_FLAG_VNET_BASE_SCH_MODE)
1521 return -ENOTSUP;
1522
1523 ret = hns3_dcb_schd_setup_hw(hw);
1524 if (ret) {
1525 hns3_err(hw, "dcb schedule configure failed! ret = %d", ret);
1526 return ret;
1527 }
1528
1529 if (hw->data->dev_conf.dcb_capability_en & RTE_ETH_DCB_PFC_SUPPORT) {
1530 dcb_rx_conf = &hw->data->dev_conf.rx_adv_conf.dcb_rx_conf;
1531 if (dcb_rx_conf->nb_tcs == 0)
1532 hw->dcb_info.pfc_en = 1; /* tc0 only */
1533 else
1534 hw->dcb_info.pfc_en =
1535 RTE_LEN2MASK((uint8_t)dcb_rx_conf->nb_tcs, uint8_t);
1536
1537 hw->dcb_info.hw_pfc_map =
1538 hns3_dcb_undrop_tc_map(hw, hw->dcb_info.pfc_en);
1539
1540 hw->current_fc_status = HNS3_FC_STATUS_PFC;
1541 hw->requested_fc_mode = HNS3_FC_FULL;
1542 } else {
1543 hw->current_fc_status = HNS3_FC_STATUS_NONE;
1544 hw->requested_fc_mode = HNS3_FC_NONE;
1545 hw->dcb_info.pfc_en = 0;
1546 hw->dcb_info.hw_pfc_map = 0;
1547 }
1548
1549 ret = hns3_buffer_alloc(hw);
1550 if (ret)
1551 goto cfg_fail;
1552
1553 ret = hns3_dcb_pause_setup_hw(hw);
1554 if (ret) {
1555 hns3_err(hw, "setup pfc failed! ret = %d", ret);
1556 goto cfg_fail;
1557 }
1558
1559 return 0;
1560
1561 cfg_fail:
1562 hw->requested_fc_mode = requested_fc_mode;
1563 hw->current_fc_status = fc_status;
1564 hw->dcb_info.pfc_en = pfc_en;
1565 hw->dcb_info.hw_pfc_map = hw_pfc_map;
1566
1567 return ret;
1568 }
1569
1570 /*
1571 * hns3_dcb_configure - setup dcb related config
1572 * @hns: pointer to hns3 adapter
1573 * Returns 0 on success, negative value on failure.
1574 */
1575 int
hns3_dcb_configure(struct hns3_adapter * hns)1576 hns3_dcb_configure(struct hns3_adapter *hns)
1577 {
1578 struct hns3_hw *hw = &hns->hw;
1579 uint8_t num_tc;
1580 int ret;
1581
1582 num_tc = hns3_dcb_parse_num_tc(hns);
1583 ret = hns3_dcb_info_update(hns, num_tc);
1584 if (ret) {
1585 hns3_err(hw, "dcb info update failed: %d", ret);
1586 return ret;
1587 }
1588
1589 ret = hns3_dcb_hw_configure(hns);
1590 if (ret) {
1591 hns3_err(hw, "dcb sw configure failed: %d", ret);
1592 return ret;
1593 }
1594
1595 return 0;
1596 }
1597
1598 int
hns3_dcb_init_hw(struct hns3_hw * hw)1599 hns3_dcb_init_hw(struct hns3_hw *hw)
1600 {
1601 int ret;
1602
1603 ret = hns3_dcb_schd_setup_hw(hw);
1604 if (ret) {
1605 hns3_err(hw, "dcb schedule setup failed: %d", ret);
1606 return ret;
1607 }
1608
1609 ret = hns3_dcb_pause_setup_hw(hw);
1610 if (ret)
1611 hns3_err(hw, "PAUSE setup failed: %d", ret);
1612
1613 return ret;
1614 }
1615
1616 int
hns3_dcb_init(struct hns3_hw * hw)1617 hns3_dcb_init(struct hns3_hw *hw)
1618 {
1619 struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
1620 struct hns3_pf *pf = &hns->pf;
1621 uint16_t default_tqp_num;
1622 int ret;
1623
1624 PMD_INIT_FUNC_TRACE();
1625
1626 /*
1627 * According to the 'adapter_state' identifier, the following branch
1628 * is only executed to initialize default configurations of dcb during
1629 * the initializing driver process. Due to driver saving dcb-related
1630 * information before reset triggered, the reinit dev stage of the
1631 * reset process can not access to the branch, or those information
1632 * will be changed.
1633 */
1634 if (hw->adapter_state == HNS3_NIC_UNINITIALIZED) {
1635 hw->requested_fc_mode = HNS3_FC_NONE;
1636 pf->pause_time = HNS3_DEFAULT_PAUSE_TRANS_TIME;
1637 hw->current_fc_status = HNS3_FC_STATUS_NONE;
1638
1639 ret = hns3_dcb_info_init(hw);
1640 if (ret) {
1641 hns3_err(hw, "dcb info init failed, ret = %d.", ret);
1642 return ret;
1643 }
1644
1645 /*
1646 * The number of queues configured by default cannot exceed
1647 * the maximum number of queues for a single TC.
1648 */
1649 default_tqp_num = RTE_MIN(hw->rss_size_max,
1650 hw->tqps_num / hw->dcb_info.num_tc);
1651 ret = hns3_dcb_update_tc_queue_mapping(hw, default_tqp_num,
1652 default_tqp_num);
1653 if (ret) {
1654 hns3_err(hw,
1655 "update tc queue mapping failed, ret = %d.",
1656 ret);
1657 return ret;
1658 }
1659 }
1660
1661 /*
1662 * DCB hardware will be configured by following the function during
1663 * the initializing driver process and the reset process. However,
1664 * driver will restore directly configurations of dcb hardware based
1665 * on dcb-related information soft maintained when driver
1666 * initialization has finished and reset is coming.
1667 */
1668 ret = hns3_dcb_init_hw(hw);
1669 if (ret) {
1670 hns3_err(hw, "dcb init hardware failed, ret = %d.", ret);
1671 return ret;
1672 }
1673
1674 return 0;
1675 }
1676
1677 int
hns3_update_queue_map_configure(struct hns3_adapter * hns)1678 hns3_update_queue_map_configure(struct hns3_adapter *hns)
1679 {
1680 struct hns3_hw *hw = &hns->hw;
1681 enum rte_eth_rx_mq_mode mq_mode = hw->data->dev_conf.rxmode.mq_mode;
1682 uint16_t nb_rx_q = hw->data->nb_rx_queues;
1683 uint16_t nb_tx_q = hw->data->nb_tx_queues;
1684 int ret;
1685
1686 if ((uint32_t)mq_mode & RTE_ETH_MQ_RX_DCB_FLAG)
1687 return 0;
1688
1689 ret = hns3_dcb_update_tc_queue_mapping(hw, nb_rx_q, nb_tx_q);
1690 if (ret) {
1691 hns3_err(hw, "failed to update tc queue mapping, ret = %d.",
1692 ret);
1693 return ret;
1694 }
1695 ret = hns3_q_to_qs_map(hw);
1696 if (ret)
1697 hns3_err(hw, "failed to map nq to qs, ret = %d.", ret);
1698
1699 return ret;
1700 }
1701
1702 static void
hns3_get_fc_mode(struct hns3_hw * hw,enum rte_eth_fc_mode mode)1703 hns3_get_fc_mode(struct hns3_hw *hw, enum rte_eth_fc_mode mode)
1704 {
1705 switch (mode) {
1706 case RTE_ETH_FC_NONE:
1707 hw->requested_fc_mode = HNS3_FC_NONE;
1708 break;
1709 case RTE_ETH_FC_RX_PAUSE:
1710 hw->requested_fc_mode = HNS3_FC_RX_PAUSE;
1711 break;
1712 case RTE_ETH_FC_TX_PAUSE:
1713 hw->requested_fc_mode = HNS3_FC_TX_PAUSE;
1714 break;
1715 case RTE_ETH_FC_FULL:
1716 hw->requested_fc_mode = HNS3_FC_FULL;
1717 break;
1718 default:
1719 hw->requested_fc_mode = HNS3_FC_NONE;
1720 hns3_warn(hw, "fc_mode(%u) exceeds member scope and is "
1721 "configured to RTE_ETH_FC_NONE", mode);
1722 break;
1723 }
1724 }
1725
1726 /*
1727 * hns3_dcb_pfc_enable - Enable priority flow control
1728 * @dev: pointer to ethernet device
1729 *
1730 * Configures the pfc settings for one priority.
1731 */
1732 int
hns3_dcb_pfc_enable(struct rte_eth_dev * dev,struct rte_eth_pfc_conf * pfc_conf)1733 hns3_dcb_pfc_enable(struct rte_eth_dev *dev, struct rte_eth_pfc_conf *pfc_conf)
1734 {
1735 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1736 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1737 enum hns3_fc_status fc_status = hw->current_fc_status;
1738 enum hns3_fc_mode old_fc_mode = hw->requested_fc_mode;
1739 uint8_t hw_pfc_map = hw->dcb_info.hw_pfc_map;
1740 uint8_t pfc_en = hw->dcb_info.pfc_en;
1741 uint8_t priority = pfc_conf->priority;
1742 uint16_t pause_time = pf->pause_time;
1743 int ret;
1744
1745 hw->dcb_info.pfc_en |= BIT(priority);
1746 hw->dcb_info.hw_pfc_map =
1747 hns3_dcb_undrop_tc_map(hw, hw->dcb_info.pfc_en);
1748 ret = hns3_buffer_alloc(hw);
1749 if (ret) {
1750 hns3_err(hw, "update packet buffer failed, ret = %d", ret);
1751 goto buffer_alloc_fail;
1752 }
1753
1754 pf->pause_time = pfc_conf->fc.pause_time;
1755 hns3_get_fc_mode(hw, pfc_conf->fc.mode);
1756 if (hw->requested_fc_mode == HNS3_FC_NONE)
1757 hw->current_fc_status = HNS3_FC_STATUS_NONE;
1758 else
1759 hw->current_fc_status = HNS3_FC_STATUS_PFC;
1760
1761 /*
1762 * The flow control mode of all UPs will be changed based on
1763 * requested_fc_mode coming from user.
1764 */
1765 ret = hns3_dcb_pause_setup_hw(hw);
1766 if (ret) {
1767 hns3_err(hw, "enable pfc failed! ret = %d", ret);
1768 goto pfc_setup_fail;
1769 }
1770
1771 return 0;
1772
1773 pfc_setup_fail:
1774 hw->requested_fc_mode = old_fc_mode;
1775 hw->current_fc_status = fc_status;
1776 pf->pause_time = pause_time;
1777 buffer_alloc_fail:
1778 hw->dcb_info.pfc_en = pfc_en;
1779 hw->dcb_info.hw_pfc_map = hw_pfc_map;
1780
1781 return ret;
1782 }
1783
1784 /*
1785 * hns3_fc_enable - Enable MAC pause
1786 * @dev: pointer to ethernet device
1787 *
1788 * Configures the MAC pause settings.
1789 */
1790 int
hns3_fc_enable(struct rte_eth_dev * dev,struct rte_eth_fc_conf * fc_conf)1791 hns3_fc_enable(struct rte_eth_dev *dev, struct rte_eth_fc_conf *fc_conf)
1792 {
1793 struct hns3_hw *hw = HNS3_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1794 struct hns3_pf *pf = HNS3_DEV_PRIVATE_TO_PF(dev->data->dev_private);
1795 enum hns3_fc_mode old_fc_mode = hw->requested_fc_mode;
1796 enum hns3_fc_status fc_status = hw->current_fc_status;
1797 uint16_t pause_time = pf->pause_time;
1798 int ret;
1799
1800 pf->pause_time = fc_conf->pause_time;
1801 hns3_get_fc_mode(hw, fc_conf->mode);
1802
1803 /*
1804 * In fact, current_fc_status is HNS3_FC_STATUS_NONE when mode
1805 * of flow control is configured to be HNS3_FC_NONE.
1806 */
1807 if (hw->requested_fc_mode == HNS3_FC_NONE)
1808 hw->current_fc_status = HNS3_FC_STATUS_NONE;
1809 else
1810 hw->current_fc_status = HNS3_FC_STATUS_MAC_PAUSE;
1811
1812 ret = hns3_dcb_pause_setup_hw(hw);
1813 if (ret) {
1814 hns3_err(hw, "enable MAC Pause failed! ret = %d", ret);
1815 goto setup_fc_fail;
1816 }
1817
1818 return 0;
1819
1820 setup_fc_fail:
1821 hw->requested_fc_mode = old_fc_mode;
1822 hw->current_fc_status = fc_status;
1823 pf->pause_time = pause_time;
1824
1825 return ret;
1826 }
1827