1 /*******************************************************************************
3 Copyright (c) 2001-2014, Intel Corporation
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
9 1. Redistributions of source code must retain the above copyright notice,
10 this list of conditions and the following disclaimer.
12 2. Redistributions in binary form must reproduce the above copyright
13 notice, this list of conditions and the following disclaimer in the
14 documentation and/or other materials provided with the distribution.
16 3. Neither the name of the Intel Corporation nor the names of its
17 contributors may be used to endorse or promote products derived from
18 this software without specific prior written permission.
20 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
32 ***************************************************************************/
35 #include "ixgbe_type.h"
36 #include "ixgbe_dcb.h"
37 #include "ixgbe_dcb_82598.h"
38 #include "ixgbe_dcb_82599.h"
39 #ident "$Id: ixgbe_dcb.c,v 1.55 2013/11/22 01:02:01 jtkirshe Exp $"
42 * ixgbe_dcb_calculate_tc_credits - This calculates the ieee traffic class
43 * credits from the configured bandwidth percentages. Credits
44 * are the smallest unit programmable into the underlying
45 * hardware. The IEEE 802.1Qaz specification do not use bandwidth
46 * groups so this is much simplified from the CEE case.
48 s32 ixgbe_dcb_calculate_tc_credits(u8 *bw, u16 *refill, u16 *max,
51 int min_percent = 100;
52 int min_credit, multiplier;
55 min_credit = ((max_frame_size / 2) + IXGBE_DCB_CREDIT_QUANTUM - 1) /
56 IXGBE_DCB_CREDIT_QUANTUM;
58 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
59 if (bw[i] < min_percent && bw[i])
63 multiplier = (min_credit / min_percent) + 1;
65 /* Find out the hw credits for each TC */
66 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
67 int val = min(bw[i] * multiplier, IXGBE_DCB_MAX_CREDIT_REFILL);
73 max[i] = bw[i] ? (bw[i]*IXGBE_DCB_MAX_CREDIT)/100 : min_credit;
80 * ixgbe_dcb_calculate_tc_credits_cee - Calculates traffic class credits
81 * @ixgbe_dcb_config: Struct containing DCB settings.
82 * @direction: Configuring either Tx or Rx.
84 * This function calculates the credits allocated to each traffic class.
85 * It should be called only after the rules are checked by
86 * ixgbe_dcb_check_config_cee().
88 s32 ixgbe_dcb_calculate_tc_credits_cee(struct ixgbe_hw *hw,
89 struct ixgbe_dcb_config *dcb_config,
90 u32 max_frame_size, u8 direction)
92 struct ixgbe_dcb_tc_path *p;
93 u32 min_multiplier = 0;
94 u16 min_percent = 100;
95 s32 ret_val = IXGBE_SUCCESS;
96 /* Initialization values default for Tx settings */
98 u32 credit_refill = 0;
100 u16 link_percentage = 0;
104 if (dcb_config == NULL) {
105 ret_val = IXGBE_ERR_CONFIG;
109 min_credit = ((max_frame_size / 2) + IXGBE_DCB_CREDIT_QUANTUM - 1) /
110 IXGBE_DCB_CREDIT_QUANTUM;
112 /* Find smallest link percentage */
113 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
114 p = &dcb_config->tc_config[i].path[direction];
115 bw_percent = dcb_config->bw_percentage[direction][p->bwg_id];
116 link_percentage = p->bwg_percent;
118 link_percentage = (link_percentage * bw_percent) / 100;
120 if (link_percentage && link_percentage < min_percent)
121 min_percent = link_percentage;
125 * The ratio between traffic classes will control the bandwidth
126 * percentages seen on the wire. To calculate this ratio we use
127 * a multiplier. It is required that the refill credits must be
128 * larger than the max frame size so here we find the smallest
129 * multiplier that will allow all bandwidth percentages to be
130 * greater than the max frame size.
132 min_multiplier = (min_credit / min_percent) + 1;
134 /* Find out the link percentage for each TC first */
135 for (i = 0; i < IXGBE_DCB_MAX_TRAFFIC_CLASS; i++) {
136 p = &dcb_config->tc_config[i].path[direction];
137 bw_percent = dcb_config->bw_percentage[direction][p->bwg_id];
139 link_percentage = p->bwg_percent;
140 /* Must be careful of integer division for very small nums */
141 link_percentage = (link_percentage * bw_percent) / 100;
142 if (p->bwg_percent > 0 && link_percentage == 0)
145 /* Save link_percentage for reference */
146 p->link_percent = (u8)link_percentage;
148 /* Calculate credit refill ratio using multiplier */
149 credit_refill = min(link_percentage * min_multiplier,
150 (u32)IXGBE_DCB_MAX_CREDIT_REFILL);
151 p->data_credits_refill = (u16)credit_refill;
153 /* Calculate maximum credit for the TC */
154 credit_max = (link_percentage * IXGBE_DCB_MAX_CREDIT) / 100;
157 * Adjustment based on rule checking, if the percentage
158 * of a TC is too small, the maximum credit may not be
159 * enough to send out a jumbo frame in data plane arbitration.
161 if (credit_max && (credit_max < min_credit))
162 credit_max = min_credit;
164 if (direction == IXGBE_DCB_TX_CONFIG) {
166 * Adjustment based on rule checking, if the
167 * percentage of a TC is too small, the maximum
168 * credit may not be enough to send out a TSO
169 * packet in descriptor plane arbitration.
171 if (credit_max && (credit_max <
172 IXGBE_DCB_MIN_TSO_CREDIT)
173 && (hw->mac.type == ixgbe_mac_82598EB))
174 credit_max = IXGBE_DCB_MIN_TSO_CREDIT;
176 dcb_config->tc_config[i].desc_credits_max =
180 p->data_credits_max = (u16)credit_max;
188 * ixgbe_dcb_unpack_pfc_cee - Unpack dcb_config PFC info
189 * @cfg: dcb configuration to unpack into hardware consumable fields
190 * @map: user priority to traffic class map
191 * @pfc_up: u8 to store user priority PFC bitmask
193 * This unpacks the dcb configuration PFC info which is stored per
194 * traffic class into a 8bit user priority bitmask that can be
195 * consumed by hardware routines. The priority to tc map must be
196 * updated before calling this routine to use current up-to maps.
198 void ixgbe_dcb_unpack_pfc_cee(struct ixgbe_dcb_config *cfg, u8 *map, u8 *pfc_up)
200 struct ixgbe_dcb_tc_config *tc_config = &cfg->tc_config[0];
204 * If the TC for this user priority has PFC enabled then set the
205 * matching bit in 'pfc_up' to reflect that PFC is enabled.
207 for (*pfc_up = 0, up = 0; up < IXGBE_DCB_MAX_USER_PRIORITY; up++) {
208 if (tc_config[map[up]].pfc != ixgbe_dcb_pfc_disabled)
213 void ixgbe_dcb_unpack_refill_cee(struct ixgbe_dcb_config *cfg, int direction,
216 struct ixgbe_dcb_tc_config *tc_config = &cfg->tc_config[0];
219 for (tc = 0; tc < IXGBE_DCB_MAX_TRAFFIC_CLASS; tc++)
220 refill[tc] = tc_config[tc].path[direction].data_credits_refill;
223 void ixgbe_dcb_unpack_max_cee(struct ixgbe_dcb_config *cfg, u16 *max)
225 struct ixgbe_dcb_tc_config *tc_config = &cfg->tc_config[0];
228 for (tc = 0; tc < IXGBE_DCB_MAX_TRAFFIC_CLASS; tc++)
229 max[tc] = tc_config[tc].desc_credits_max;
232 void ixgbe_dcb_unpack_bwgid_cee(struct ixgbe_dcb_config *cfg, int direction,
235 struct ixgbe_dcb_tc_config *tc_config = &cfg->tc_config[0];
238 for (tc = 0; tc < IXGBE_DCB_MAX_TRAFFIC_CLASS; tc++)
239 bwgid[tc] = tc_config[tc].path[direction].bwg_id;
242 void ixgbe_dcb_unpack_tsa_cee(struct ixgbe_dcb_config *cfg, int direction,
245 struct ixgbe_dcb_tc_config *tc_config = &cfg->tc_config[0];
248 for (tc = 0; tc < IXGBE_DCB_MAX_TRAFFIC_CLASS; tc++)
249 tsa[tc] = tc_config[tc].path[direction].tsa;
252 u8 ixgbe_dcb_get_tc_from_up(struct ixgbe_dcb_config *cfg, int direction, u8 up)
254 struct ixgbe_dcb_tc_config *tc_config = &cfg->tc_config[0];
255 u8 prio_mask = 1 << up;
256 u8 tc = cfg->num_tcs.pg_tcs;
258 /* If tc is 0 then DCB is likely not enabled or supported */
263 * Test from maximum TC to 1 and report the first match we find. If
264 * we find no match we can assume that the TC is 0 since the TC must
265 * be set for all user priorities
267 for (tc--; tc; tc--) {
268 if (prio_mask & tc_config[tc].path[direction].up_to_tc_bitmap)
275 void ixgbe_dcb_unpack_map_cee(struct ixgbe_dcb_config *cfg, int direction,
280 for (up = 0; up < IXGBE_DCB_MAX_USER_PRIORITY; up++)
281 map[up] = ixgbe_dcb_get_tc_from_up(cfg, direction, up);
285 * ixgbe_dcb_config - Struct containing DCB settings.
286 * @dcb_config: Pointer to DCB config structure
288 * This function checks DCB rules for DCB settings.
289 * The following rules are checked:
290 * 1. The sum of bandwidth percentages of all Bandwidth Groups must total 100%.
291 * 2. The sum of bandwidth percentages of all Traffic Classes within a Bandwidth
292 * Group must total 100.
293 * 3. A Traffic Class should not be set to both Link Strict Priority
294 * and Group Strict Priority.
295 * 4. Link strict Bandwidth Groups can only have link strict traffic classes
296 * with zero bandwidth.
298 s32 ixgbe_dcb_check_config_cee(struct ixgbe_dcb_config *dcb_config)
300 struct ixgbe_dcb_tc_path *p;
301 s32 ret_val = IXGBE_SUCCESS;
302 u8 i, j, bw = 0, bw_id;
303 u8 bw_sum[2][IXGBE_DCB_MAX_BW_GROUP];
304 bool link_strict[2][IXGBE_DCB_MAX_BW_GROUP];
306 memset(bw_sum, 0, sizeof(bw_sum));
307 memset(link_strict, 0, sizeof(link_strict));
309 /* First Tx, then Rx */
310 for (i = 0; i < 2; i++) {
311 /* Check each traffic class for rule violation */
312 for (j = 0; j < IXGBE_DCB_MAX_TRAFFIC_CLASS; j++) {
313 p = &dcb_config->tc_config[j].path[i];
318 if (bw_id >= IXGBE_DCB_MAX_BW_GROUP) {
319 ret_val = IXGBE_ERR_CONFIG;
322 if (p->tsa == ixgbe_dcb_tsa_strict) {
323 link_strict[i][bw_id] = true;
324 /* Link strict should have zero bandwidth */
326 ret_val = IXGBE_ERR_CONFIG;
331 * Traffic classes without link strict
332 * should have non-zero bandwidth.
334 ret_val = IXGBE_ERR_CONFIG;
337 bw_sum[i][bw_id] += bw;
342 /* Check each bandwidth group for rule violation */
343 for (j = 0; j < IXGBE_DCB_MAX_BW_GROUP; j++) {
344 bw += dcb_config->bw_percentage[i][j];
346 * Sum of bandwidth percentages of all traffic classes
347 * within a Bandwidth Group must total 100 except for
348 * link strict group (zero bandwidth).
350 if (link_strict[i][j]) {
353 * Link strict group should have zero
356 ret_val = IXGBE_ERR_CONFIG;
359 } else if (bw_sum[i][j] != IXGBE_DCB_BW_PERCENT &&
361 ret_val = IXGBE_ERR_CONFIG;
366 if (bw != IXGBE_DCB_BW_PERCENT) {
367 ret_val = IXGBE_ERR_CONFIG;
373 DEBUGOUT2("DCB error code %d while checking %s settings.\n",
374 ret_val, (i == IXGBE_DCB_TX_CONFIG) ? "Tx" : "Rx");
380 * ixgbe_dcb_get_tc_stats - Returns status of each traffic class
381 * @hw: pointer to hardware structure
382 * @stats: pointer to statistics structure
383 * @tc_count: Number of elements in bwg_array.
385 * This function returns the status data for each of the Traffic Classes in use.
387 s32 ixgbe_dcb_get_tc_stats(struct ixgbe_hw *hw, struct ixgbe_hw_stats *stats,
390 s32 ret = IXGBE_NOT_IMPLEMENTED;
391 switch (hw->mac.type) {
392 case ixgbe_mac_82598EB:
393 ret = ixgbe_dcb_get_tc_stats_82598(hw, stats, tc_count);
395 case ixgbe_mac_82599EB:
398 case ixgbe_mac_X550EM_x:
399 ret = ixgbe_dcb_get_tc_stats_82599(hw, stats, tc_count);
408 * ixgbe_dcb_get_pfc_stats - Returns CBFC status of each traffic class
409 * @hw: pointer to hardware structure
410 * @stats: pointer to statistics structure
411 * @tc_count: Number of elements in bwg_array.
413 * This function returns the CBFC status data for each of the Traffic Classes.
415 s32 ixgbe_dcb_get_pfc_stats(struct ixgbe_hw *hw, struct ixgbe_hw_stats *stats,
418 s32 ret = IXGBE_NOT_IMPLEMENTED;
419 switch (hw->mac.type) {
420 case ixgbe_mac_82598EB:
421 ret = ixgbe_dcb_get_pfc_stats_82598(hw, stats, tc_count);
423 case ixgbe_mac_82599EB:
426 case ixgbe_mac_X550EM_x:
427 ret = ixgbe_dcb_get_pfc_stats_82599(hw, stats, tc_count);
436 * ixgbe_dcb_config_rx_arbiter_cee - Config Rx arbiter
437 * @hw: pointer to hardware structure
438 * @dcb_config: pointer to ixgbe_dcb_config structure
440 * Configure Rx Data Arbiter and credits for each traffic class.
442 s32 ixgbe_dcb_config_rx_arbiter_cee(struct ixgbe_hw *hw,
443 struct ixgbe_dcb_config *dcb_config)
445 s32 ret = IXGBE_NOT_IMPLEMENTED;
446 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 };
447 u8 bwgid[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 };
448 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
449 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 };
450 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS] = { 0 };
452 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_TX_CONFIG, refill);
453 ixgbe_dcb_unpack_max_cee(dcb_config, max);
454 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_TX_CONFIG, bwgid);
455 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
456 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_TX_CONFIG, map);
458 switch (hw->mac.type) {
459 case ixgbe_mac_82598EB:
460 ret = ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
462 case ixgbe_mac_82599EB:
465 case ixgbe_mac_X550EM_x:
466 ret = ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwgid,
476 * ixgbe_dcb_config_tx_desc_arbiter_cee - Config Tx Desc arbiter
477 * @hw: pointer to hardware structure
478 * @dcb_config: pointer to ixgbe_dcb_config structure
480 * Configure Tx Descriptor Arbiter and credits for each traffic class.
482 s32 ixgbe_dcb_config_tx_desc_arbiter_cee(struct ixgbe_hw *hw,
483 struct ixgbe_dcb_config *dcb_config)
485 s32 ret = IXGBE_NOT_IMPLEMENTED;
486 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS];
487 u8 bwgid[IXGBE_DCB_MAX_TRAFFIC_CLASS];
488 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS];
489 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS];
491 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_TX_CONFIG, refill);
492 ixgbe_dcb_unpack_max_cee(dcb_config, max);
493 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_TX_CONFIG, bwgid);
494 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
496 switch (hw->mac.type) {
497 case ixgbe_mac_82598EB:
498 ret = ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max,
501 case ixgbe_mac_82599EB:
504 case ixgbe_mac_X550EM_x:
505 ret = ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max,
515 * ixgbe_dcb_config_tx_data_arbiter_cee - Config Tx data arbiter
516 * @hw: pointer to hardware structure
517 * @dcb_config: pointer to ixgbe_dcb_config structure
519 * Configure Tx Data Arbiter and credits for each traffic class.
521 s32 ixgbe_dcb_config_tx_data_arbiter_cee(struct ixgbe_hw *hw,
522 struct ixgbe_dcb_config *dcb_config)
524 s32 ret = IXGBE_NOT_IMPLEMENTED;
525 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS];
526 u8 bwgid[IXGBE_DCB_MAX_TRAFFIC_CLASS];
527 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
528 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS];
529 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS];
531 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_TX_CONFIG, refill);
532 ixgbe_dcb_unpack_max_cee(dcb_config, max);
533 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_TX_CONFIG, bwgid);
534 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
535 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_TX_CONFIG, map);
537 switch (hw->mac.type) {
538 case ixgbe_mac_82598EB:
539 ret = ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max,
542 case ixgbe_mac_82599EB:
545 case ixgbe_mac_X550EM_x:
546 ret = ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max,
557 * ixgbe_dcb_config_pfc_cee - Config priority flow control
558 * @hw: pointer to hardware structure
559 * @dcb_config: pointer to ixgbe_dcb_config structure
561 * Configure Priority Flow Control for each traffic class.
563 s32 ixgbe_dcb_config_pfc_cee(struct ixgbe_hw *hw,
564 struct ixgbe_dcb_config *dcb_config)
566 s32 ret = IXGBE_NOT_IMPLEMENTED;
568 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
570 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_TX_CONFIG, map);
571 ixgbe_dcb_unpack_pfc_cee(dcb_config, map, &pfc_en);
573 switch (hw->mac.type) {
574 case ixgbe_mac_82598EB:
575 ret = ixgbe_dcb_config_pfc_82598(hw, pfc_en);
577 case ixgbe_mac_82599EB:
580 case ixgbe_mac_X550EM_x:
581 ret = ixgbe_dcb_config_pfc_82599(hw, pfc_en, map);
590 * ixgbe_dcb_config_tc_stats - Config traffic class statistics
591 * @hw: pointer to hardware structure
593 * Configure queue statistics registers, all queues belonging to same traffic
594 * class uses a single set of queue statistics counters.
596 s32 ixgbe_dcb_config_tc_stats(struct ixgbe_hw *hw)
598 s32 ret = IXGBE_NOT_IMPLEMENTED;
599 switch (hw->mac.type) {
600 case ixgbe_mac_82598EB:
601 ret = ixgbe_dcb_config_tc_stats_82598(hw);
603 case ixgbe_mac_82599EB:
606 case ixgbe_mac_X550EM_x:
607 ret = ixgbe_dcb_config_tc_stats_82599(hw, NULL);
616 * ixgbe_dcb_hw_config_cee - Config and enable DCB
617 * @hw: pointer to hardware structure
618 * @dcb_config: pointer to ixgbe_dcb_config structure
620 * Configure dcb settings and enable dcb mode.
622 s32 ixgbe_dcb_hw_config_cee(struct ixgbe_hw *hw,
623 struct ixgbe_dcb_config *dcb_config)
625 s32 ret = IXGBE_NOT_IMPLEMENTED;
627 u8 tsa[IXGBE_DCB_MAX_TRAFFIC_CLASS];
628 u8 bwgid[IXGBE_DCB_MAX_TRAFFIC_CLASS];
629 u8 map[IXGBE_DCB_MAX_USER_PRIORITY] = { 0 };
630 u16 refill[IXGBE_DCB_MAX_TRAFFIC_CLASS];
631 u16 max[IXGBE_DCB_MAX_TRAFFIC_CLASS];
633 /* Unpack CEE standard containers */
634 ixgbe_dcb_unpack_refill_cee(dcb_config, IXGBE_DCB_TX_CONFIG, refill);
635 ixgbe_dcb_unpack_max_cee(dcb_config, max);
636 ixgbe_dcb_unpack_bwgid_cee(dcb_config, IXGBE_DCB_TX_CONFIG, bwgid);
637 ixgbe_dcb_unpack_tsa_cee(dcb_config, IXGBE_DCB_TX_CONFIG, tsa);
638 ixgbe_dcb_unpack_map_cee(dcb_config, IXGBE_DCB_TX_CONFIG, map);
640 switch (hw->mac.type) {
641 case ixgbe_mac_82598EB:
642 ret = ixgbe_dcb_hw_config_82598(hw, dcb_config->link_speed,
643 refill, max, bwgid, tsa);
645 case ixgbe_mac_82599EB:
648 case ixgbe_mac_X550EM_x:
649 ixgbe_dcb_config_82599(hw, dcb_config);
650 ret = ixgbe_dcb_hw_config_82599(hw, dcb_config->link_speed,
654 ixgbe_dcb_config_tc_stats_82599(hw, dcb_config);
660 if (!ret && dcb_config->pfc_mode_enable) {
661 ixgbe_dcb_unpack_pfc_cee(dcb_config, map, &pfc_en);
662 ret = ixgbe_dcb_config_pfc(hw, pfc_en, map);
668 /* Helper routines to abstract HW specifics from DCB netlink ops */
669 s32 ixgbe_dcb_config_pfc(struct ixgbe_hw *hw, u8 pfc_en, u8 *map)
671 int ret = IXGBE_ERR_PARAM;
673 switch (hw->mac.type) {
674 case ixgbe_mac_82598EB:
675 ret = ixgbe_dcb_config_pfc_82598(hw, pfc_en);
677 case ixgbe_mac_82599EB:
680 case ixgbe_mac_X550EM_x:
681 ret = ixgbe_dcb_config_pfc_82599(hw, pfc_en, map);
689 s32 ixgbe_dcb_hw_config(struct ixgbe_hw *hw, u16 *refill, u16 *max,
690 u8 *bwg_id, u8 *tsa, u8 *map)
692 switch (hw->mac.type) {
693 case ixgbe_mac_82598EB:
694 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, tsa);
695 ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max, bwg_id,
697 ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max, bwg_id,
700 case ixgbe_mac_82599EB:
703 case ixgbe_mac_X550EM_x:
704 ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwg_id,
706 ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max, bwg_id,
708 ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max, bwg_id,