1 // SPDX-License-Identifier: GPL-2.0+
2 // Copyright (c) 2016-2017 Hisilicon Limited.
4 #include "hclge_main.h"
11 static int hclge_ieee_ets_to_tm_info(struct hclge_dev *hdev,
16 for (i = 0; i < HNAE3_MAX_TC; i++) {
17 switch (ets->tc_tsa[i]) {
18 case IEEE_8021QAZ_TSA_STRICT:
19 hdev->tm_info.tc_info[i].tc_sch_mode =
21 hdev->tm_info.pg_info[0].tc_dwrr[i] = 0;
23 case IEEE_8021QAZ_TSA_ETS:
24 hdev->tm_info.tc_info[i].tc_sch_mode =
26 hdev->tm_info.pg_info[0].tc_dwrr[i] =
30 /* Hardware only supports SP (strict priority)
31 * or ETS (enhanced transmission selection)
32 * algorithms, if we receive some other value
33 * from dcbnl, then throw an error.
39 hclge_tm_prio_tc_info_update(hdev, ets->prio_tc);
44 static void hclge_tm_info_to_ieee_ets(struct hclge_dev *hdev,
49 memset(ets, 0, sizeof(*ets));
51 ets->ets_cap = hdev->tc_max;
53 for (i = 0; i < HNAE3_MAX_TC; i++) {
54 ets->prio_tc[i] = hdev->tm_info.prio_tc[i];
55 ets->tc_tx_bw[i] = hdev->tm_info.pg_info[0].tc_dwrr[i];
57 if (hdev->tm_info.tc_info[i].tc_sch_mode ==
59 ets->tc_tsa[i] = IEEE_8021QAZ_TSA_STRICT;
61 ets->tc_tsa[i] = IEEE_8021QAZ_TSA_ETS;
66 static int hclge_ieee_getets(struct hnae3_handle *h, struct ieee_ets *ets)
68 struct hclge_vport *vport = hclge_get_vport(h);
69 struct hclge_dev *hdev = vport->back;
71 hclge_tm_info_to_ieee_ets(hdev, ets);
76 static int hclge_dcb_common_validate(struct hclge_dev *hdev, u8 num_tc,
81 if (num_tc > hdev->tc_max) {
82 dev_err(&hdev->pdev->dev,
83 "tc num checking failed, %u > tc_max(%u)\n",
84 num_tc, hdev->tc_max);
88 for (i = 0; i < HNAE3_MAX_USER_PRIO; i++) {
89 if (prio_tc[i] >= num_tc) {
90 dev_err(&hdev->pdev->dev,
91 "prio_tc[%d] checking failed, %u >= num_tc(%u)\n",
92 i, prio_tc[i], num_tc);
97 if (num_tc > hdev->vport[0].alloc_tqps) {
98 dev_err(&hdev->pdev->dev,
99 "allocated tqp checking failed, %u > tqp(%u)\n",
100 num_tc, hdev->vport[0].alloc_tqps);
107 static u8 hclge_ets_tc_changed(struct hclge_dev *hdev, struct ieee_ets *ets,
113 for (i = 0; i < HNAE3_MAX_USER_PRIO; i++) {
114 if (ets->prio_tc[i] != hdev->tm_info.prio_tc[i])
117 if (ets->prio_tc[i] > max_tc_id)
118 max_tc_id = ets->prio_tc[i];
121 /* return max tc number, max tc id need to plus 1 */
122 return max_tc_id + 1;
125 static int hclge_ets_sch_mode_validate(struct hclge_dev *hdev,
126 struct ieee_ets *ets, bool *changed)
128 bool has_ets_tc = false;
129 u32 total_ets_bw = 0;
132 for (i = 0; i < hdev->tc_max; i++) {
133 switch (ets->tc_tsa[i]) {
134 case IEEE_8021QAZ_TSA_STRICT:
135 if (hdev->tm_info.tc_info[i].tc_sch_mode !=
139 case IEEE_8021QAZ_TSA_ETS:
140 if (hdev->tm_info.tc_info[i].tc_sch_mode !=
144 total_ets_bw += ets->tc_tx_bw[i];
152 if (has_ets_tc && total_ets_bw != BW_PERCENT)
158 static int hclge_ets_validate(struct hclge_dev *hdev, struct ieee_ets *ets,
159 u8 *tc, bool *changed)
164 tc_num = hclge_ets_tc_changed(hdev, ets, changed);
166 ret = hclge_dcb_common_validate(hdev, tc_num, ets->prio_tc);
170 ret = hclge_ets_sch_mode_validate(hdev, ets, changed);
175 if (*tc != hdev->tm_info.num_tc)
181 static int hclge_map_update(struct hclge_dev *hdev)
185 ret = hclge_tm_schd_setup_hw(hdev);
189 ret = hclge_pause_setup_hw(hdev, false);
193 ret = hclge_buffer_alloc(hdev);
197 hclge_rss_indir_init_cfg(hdev);
199 return hclge_rss_init_hw(hdev);
202 static int hclge_notify_down_uinit(struct hclge_dev *hdev)
206 ret = hclge_notify_client(hdev, HNAE3_DOWN_CLIENT);
210 return hclge_notify_client(hdev, HNAE3_UNINIT_CLIENT);
213 static int hclge_notify_init_up(struct hclge_dev *hdev)
217 ret = hclge_notify_client(hdev, HNAE3_INIT_CLIENT);
221 return hclge_notify_client(hdev, HNAE3_UP_CLIENT);
224 static int hclge_ieee_setets(struct hnae3_handle *h, struct ieee_ets *ets)
226 struct hclge_vport *vport = hclge_get_vport(h);
227 struct net_device *netdev = h->kinfo.netdev;
228 struct hclge_dev *hdev = vport->back;
229 bool map_changed = false;
233 if (!(hdev->dcbx_cap & DCB_CAP_DCBX_VER_IEEE) ||
234 hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE)
237 ret = hclge_ets_validate(hdev, ets, &num_tc, &map_changed);
242 netif_dbg(h, drv, netdev, "set ets\n");
244 ret = hclge_notify_down_uinit(hdev);
249 hclge_tm_schd_info_update(hdev, num_tc);
251 hdev->flag |= HCLGE_FLAG_DCB_ENABLE;
253 hdev->flag &= ~HCLGE_FLAG_DCB_ENABLE;
255 ret = hclge_ieee_ets_to_tm_info(hdev, ets);
260 ret = hclge_map_update(hdev);
264 return hclge_notify_init_up(hdev);
267 return hclge_tm_dwrr_cfg(hdev);
273 hclge_notify_init_up(hdev);
278 static int hclge_ieee_getpfc(struct hnae3_handle *h, struct ieee_pfc *pfc)
280 u64 requests[HNAE3_MAX_TC], indications[HNAE3_MAX_TC];
281 struct hclge_vport *vport = hclge_get_vport(h);
282 struct hclge_dev *hdev = vport->back;
286 memset(pfc, 0, sizeof(*pfc));
287 pfc->pfc_cap = hdev->pfc_max;
288 pfc->pfc_en = hdev->tm_info.pfc_en;
290 ret = hclge_pfc_tx_stats_get(hdev, requests);
294 ret = hclge_pfc_rx_stats_get(hdev, indications);
298 for (i = 0; i < HCLGE_MAX_TC_NUM; i++) {
299 pfc->requests[i] = requests[i];
300 pfc->indications[i] = indications[i];
305 static int hclge_ieee_setpfc(struct hnae3_handle *h, struct ieee_pfc *pfc)
307 struct hclge_vport *vport = hclge_get_vport(h);
308 struct net_device *netdev = h->kinfo.netdev;
309 struct hclge_dev *hdev = vport->back;
310 u8 i, j, pfc_map, *prio_tc;
313 if (!(hdev->dcbx_cap & DCB_CAP_DCBX_VER_IEEE))
316 if (pfc->pfc_en == hdev->tm_info.pfc_en)
319 prio_tc = hdev->tm_info.prio_tc;
322 for (i = 0; i < hdev->tm_info.num_tc; i++) {
323 for (j = 0; j < HNAE3_MAX_USER_PRIO; j++) {
324 if ((prio_tc[j] == i) && (pfc->pfc_en & BIT(j))) {
331 hdev->tm_info.hw_pfc_map = pfc_map;
332 hdev->tm_info.pfc_en = pfc->pfc_en;
334 netif_dbg(h, drv, netdev,
335 "set pfc: pfc_en=%x, pfc_map=%x, num_tc=%u\n",
336 pfc->pfc_en, pfc_map, hdev->tm_info.num_tc);
338 hclge_tm_pfc_info_update(hdev);
340 ret = hclge_pause_setup_hw(hdev, false);
344 ret = hclge_notify_client(hdev, HNAE3_DOWN_CLIENT);
348 ret = hclge_buffer_alloc(hdev);
350 hclge_notify_client(hdev, HNAE3_UP_CLIENT);
354 return hclge_notify_client(hdev, HNAE3_UP_CLIENT);
357 /* DCBX configuration */
358 static u8 hclge_getdcbx(struct hnae3_handle *h)
360 struct hclge_vport *vport = hclge_get_vport(h);
361 struct hclge_dev *hdev = vport->back;
363 if (hdev->flag & HCLGE_FLAG_MQPRIO_ENABLE)
366 return hdev->dcbx_cap;
369 static u8 hclge_setdcbx(struct hnae3_handle *h, u8 mode)
371 struct hclge_vport *vport = hclge_get_vport(h);
372 struct net_device *netdev = h->kinfo.netdev;
373 struct hclge_dev *hdev = vport->back;
375 netif_dbg(h, drv, netdev, "set dcbx: mode=%u\n", mode);
377 /* No support for LLD_MANAGED modes or CEE */
378 if ((mode & DCB_CAP_DCBX_LLD_MANAGED) ||
379 (mode & DCB_CAP_DCBX_VER_CEE) ||
380 !(mode & DCB_CAP_DCBX_HOST))
383 hdev->dcbx_cap = mode;
388 static int hclge_mqprio_qopt_check(struct hclge_dev *hdev,
389 struct tc_mqprio_qopt_offload *mqprio_qopt)
395 if (!mqprio_qopt->qopt.num_tc) {
396 mqprio_qopt->qopt.num_tc = 1;
400 ret = hclge_dcb_common_validate(hdev, mqprio_qopt->qopt.num_tc,
401 mqprio_qopt->qopt.prio_tc_map);
405 for (i = 0; i < mqprio_qopt->qopt.num_tc; i++) {
406 if (!is_power_of_2(mqprio_qopt->qopt.count[i])) {
407 dev_err(&hdev->pdev->dev,
408 "qopt queue count must be power of 2\n");
412 if (mqprio_qopt->qopt.count[i] > hdev->pf_rss_size_max) {
413 dev_err(&hdev->pdev->dev,
414 "qopt queue count should be no more than %u\n",
415 hdev->pf_rss_size_max);
419 if (mqprio_qopt->qopt.offset[i] != queue_sum) {
420 dev_err(&hdev->pdev->dev,
421 "qopt queue offset must start from 0, and being continuous\n");
425 if (mqprio_qopt->min_rate[i] || mqprio_qopt->max_rate[i]) {
426 dev_err(&hdev->pdev->dev,
427 "qopt tx_rate is not supported\n");
431 queue_sum = mqprio_qopt->qopt.offset[i];
432 queue_sum += mqprio_qopt->qopt.count[i];
434 if (hdev->vport[0].alloc_tqps < queue_sum) {
435 dev_err(&hdev->pdev->dev,
436 "qopt queue count sum should be less than %u\n",
437 hdev->vport[0].alloc_tqps);
444 static void hclge_sync_mqprio_qopt(struct hnae3_tc_info *tc_info,
445 struct tc_mqprio_qopt_offload *mqprio_qopt)
447 memset(tc_info, 0, sizeof(*tc_info));
448 tc_info->num_tc = mqprio_qopt->qopt.num_tc;
449 memcpy(tc_info->prio_tc, mqprio_qopt->qopt.prio_tc_map,
450 sizeof_field(struct hnae3_tc_info, prio_tc));
451 memcpy(tc_info->tqp_count, mqprio_qopt->qopt.count,
452 sizeof_field(struct hnae3_tc_info, tqp_count));
453 memcpy(tc_info->tqp_offset, mqprio_qopt->qopt.offset,
454 sizeof_field(struct hnae3_tc_info, tqp_offset));
457 static int hclge_config_tc(struct hclge_dev *hdev,
458 struct hnae3_tc_info *tc_info)
462 hclge_tm_schd_info_update(hdev, tc_info->num_tc);
463 for (i = 0; i < HNAE3_MAX_USER_PRIO; i++)
464 hdev->tm_info.prio_tc[i] = tc_info->prio_tc[i];
466 return hclge_map_update(hdev);
469 /* Set up TC for hardware offloaded mqprio in channel mode */
470 static int hclge_setup_tc(struct hnae3_handle *h,
471 struct tc_mqprio_qopt_offload *mqprio_qopt)
473 struct hclge_vport *vport = hclge_get_vport(h);
474 struct hnae3_knic_private_info *kinfo;
475 struct hclge_dev *hdev = vport->back;
476 struct hnae3_tc_info old_tc_info;
477 u8 tc = mqprio_qopt->qopt.num_tc;
480 /* if client unregistered, it's not allowed to change
481 * mqprio configuration, which may cause uninit ring
484 if (!test_bit(HCLGE_STATE_NIC_REGISTERED, &hdev->state))
487 if (hdev->flag & HCLGE_FLAG_DCB_ENABLE)
490 ret = hclge_mqprio_qopt_check(hdev, mqprio_qopt);
492 dev_err(&hdev->pdev->dev,
493 "failed to check mqprio qopt params, ret = %d\n", ret);
497 ret = hclge_notify_down_uinit(hdev);
501 kinfo = &vport->nic.kinfo;
502 memcpy(&old_tc_info, &kinfo->tc_info, sizeof(old_tc_info));
503 hclge_sync_mqprio_qopt(&kinfo->tc_info, mqprio_qopt);
504 kinfo->tc_info.mqprio_active = tc > 0;
506 ret = hclge_config_tc(hdev, &kinfo->tc_info);
510 hdev->flag &= ~HCLGE_FLAG_DCB_ENABLE;
513 hdev->flag |= HCLGE_FLAG_MQPRIO_ENABLE;
515 hdev->flag &= ~HCLGE_FLAG_MQPRIO_ENABLE;
517 return hclge_notify_init_up(hdev);
521 dev_warn(&hdev->pdev->dev,
522 "failed to destroy mqprio, will active after reset, ret = %d\n",
526 memcpy(&kinfo->tc_info, &old_tc_info, sizeof(old_tc_info));
527 if (hclge_config_tc(hdev, &kinfo->tc_info))
528 dev_err(&hdev->pdev->dev,
529 "failed to roll back tc configuration\n");
531 hclge_notify_init_up(hdev);
536 static const struct hnae3_dcb_ops hns3_dcb_ops = {
537 .ieee_getets = hclge_ieee_getets,
538 .ieee_setets = hclge_ieee_setets,
539 .ieee_getpfc = hclge_ieee_getpfc,
540 .ieee_setpfc = hclge_ieee_setpfc,
541 .getdcbx = hclge_getdcbx,
542 .setdcbx = hclge_setdcbx,
543 .setup_tc = hclge_setup_tc,
546 void hclge_dcb_ops_set(struct hclge_dev *hdev)
548 struct hclge_vport *vport = hdev->vport;
549 struct hnae3_knic_private_info *kinfo;
551 /* Hdev does not support DCB or vport is
552 * not a pf, then dcb_ops is not set.
554 if (!hnae3_dev_dcb_supported(hdev) ||
555 vport->vport_id != 0)
558 kinfo = &vport->nic.kinfo;
559 kinfo->dcb_ops = &hns3_dcb_ops;
560 hdev->dcbx_cap = DCB_CAP_DCBX_VER_IEEE | DCB_CAP_DCBX_HOST;