Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | |
| 3 | Intel 10 Gigabit PCI Express Linux driver |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 4 | Copyright(c) 1999 - 2016 Intel Corporation. |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 5 | |
| 6 | This program is free software; you can redistribute it and/or modify it |
| 7 | under the terms and conditions of the GNU General Public License, |
| 8 | version 2, as published by the Free Software Foundation. |
| 9 | |
| 10 | This program is distributed in the hope it will be useful, but WITHOUT |
| 11 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 12 | FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 13 | more details. |
| 14 | |
| 15 | You should have received a copy of the GNU General Public License along with |
| 16 | this program; if not, write to the Free Software Foundation, Inc., |
| 17 | 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | |
| 19 | The full GNU General Public License is included in this distribution in |
| 20 | the file called "COPYING". |
| 21 | |
| 22 | Contact Information: |
| 23 | Linux NICS <linux.nics@intel.com> |
| 24 | e1000-devel Mailing List <e1000-devel@lists.sourceforge.net> |
| 25 | Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 26 | |
| 27 | *******************************************************************************/ |
| 28 | |
| 29 | |
| 30 | #include "ixgbe.h" |
| 31 | #include "ixgbe_type.h" |
| 32 | #include "ixgbe_dcb.h" |
| 33 | #include "ixgbe_dcb_82598.h" |
PJ Waskiewicz | 235ea82 | 2009-02-27 15:44:48 +0000 | [diff] [blame] | 34 | #include "ixgbe_dcb_82599.h" |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 35 | |
| 36 | /** |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 37 | * ixgbe_ieee_credits - This calculates the ieee traffic class |
| 38 | * credits from the configured bandwidth percentages. Credits |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 39 | * are the smallest unit programmable into the underlying |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 40 | * hardware. The IEEE 802.1Qaz specification do not use bandwidth |
| 41 | * groups so this is much simplified from the CEE case. |
| 42 | */ |
John Fastabend | 4c09f3a | 2011-08-04 05:47:07 +0000 | [diff] [blame] | 43 | static s32 ixgbe_ieee_credits(__u8 *bw, __u16 *refill, |
| 44 | __u16 *max, int max_frame) |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 45 | { |
| 46 | int min_percent = 100; |
| 47 | int min_credit, multiplier; |
| 48 | int i; |
| 49 | |
| 50 | min_credit = ((max_frame / 2) + DCB_CREDIT_QUANTUM - 1) / |
| 51 | DCB_CREDIT_QUANTUM; |
| 52 | |
| 53 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 54 | if (bw[i] < min_percent && bw[i]) |
| 55 | min_percent = bw[i]; |
| 56 | } |
| 57 | |
| 58 | multiplier = (min_credit / min_percent) + 1; |
| 59 | |
| 60 | /* Find out the hw credits for each TC */ |
| 61 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 62 | int val = min(bw[i] * multiplier, MAX_CREDIT_REFILL); |
| 63 | |
| 64 | if (val < min_credit) |
| 65 | val = min_credit; |
| 66 | refill[i] = val; |
| 67 | |
John Fastabend | 1390a59 | 2011-03-09 04:46:16 +0000 | [diff] [blame] | 68 | max[i] = bw[i] ? (bw[i] * MAX_CREDIT)/100 : min_credit; |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 69 | } |
| 70 | return 0; |
| 71 | } |
| 72 | |
| 73 | /** |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 74 | * ixgbe_dcb_calculate_tc_credits - Calculates traffic class credits |
| 75 | * @ixgbe_dcb_config: Struct containing DCB settings. |
| 76 | * @direction: Configuring either Tx or Rx. |
| 77 | * |
| 78 | * This function calculates the credits allocated to each traffic class. |
| 79 | * It should be called only after the rules are checked by |
| 80 | * ixgbe_dcb_check_config(). |
| 81 | */ |
John Fastabend | 80ab193 | 2010-11-16 19:26:45 -0800 | [diff] [blame] | 82 | s32 ixgbe_dcb_calculate_tc_credits(struct ixgbe_hw *hw, |
| 83 | struct ixgbe_dcb_config *dcb_config, |
John Fastabend | 9806307a | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 84 | int max_frame, u8 direction) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 85 | { |
| 86 | struct tc_bw_alloc *p; |
John Fastabend | 9806307a | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 87 | int min_credit; |
| 88 | int min_multiplier; |
| 89 | int min_percent = 100; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 90 | /* Initialization values default for Tx settings */ |
| 91 | u32 credit_refill = 0; |
| 92 | u32 credit_max = 0; |
| 93 | u16 link_percentage = 0; |
| 94 | u8 bw_percent = 0; |
| 95 | u8 i; |
| 96 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 97 | if (!dcb_config) |
| 98 | return DCB_ERR_CONFIG; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 99 | |
John Fastabend | 9806307a | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 100 | min_credit = ((max_frame / 2) + DCB_CREDIT_QUANTUM - 1) / |
| 101 | DCB_CREDIT_QUANTUM; |
| 102 | |
| 103 | /* Find smallest link percentage */ |
| 104 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 105 | p = &dcb_config->tc_config[i].path[direction]; |
| 106 | bw_percent = dcb_config->bw_percentage[direction][p->bwg_id]; |
| 107 | link_percentage = p->bwg_percent; |
| 108 | |
| 109 | link_percentage = (link_percentage * bw_percent) / 100; |
| 110 | |
| 111 | if (link_percentage && link_percentage < min_percent) |
| 112 | min_percent = link_percentage; |
| 113 | } |
| 114 | |
| 115 | /* |
| 116 | * The ratio between traffic classes will control the bandwidth |
| 117 | * percentages seen on the wire. To calculate this ratio we use |
| 118 | * a multiplier. It is required that the refill credits must be |
| 119 | * larger than the max frame size so here we find the smallest |
| 120 | * multiplier that will allow all bandwidth percentages to be |
| 121 | * greater than the max frame size. |
| 122 | */ |
| 123 | min_multiplier = (min_credit / min_percent) + 1; |
| 124 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 125 | /* Find out the link percentage for each TC first */ |
| 126 | for (i = 0; i < MAX_TRAFFIC_CLASS; i++) { |
| 127 | p = &dcb_config->tc_config[i].path[direction]; |
| 128 | bw_percent = dcb_config->bw_percentage[direction][p->bwg_id]; |
| 129 | |
| 130 | link_percentage = p->bwg_percent; |
| 131 | /* Must be careful of integer division for very small nums */ |
| 132 | link_percentage = (link_percentage * bw_percent) / 100; |
| 133 | if (p->bwg_percent > 0 && link_percentage == 0) |
| 134 | link_percentage = 1; |
| 135 | |
| 136 | /* Save link_percentage for reference */ |
| 137 | p->link_percent = (u8)link_percentage; |
| 138 | |
John Fastabend | 9806307a | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 139 | /* Calculate credit refill ratio using multiplier */ |
| 140 | credit_refill = min(link_percentage * min_multiplier, |
| 141 | MAX_CREDIT_REFILL); |
Vasu Dev | 3efcb86 | 2015-11-23 10:30:51 -0800 | [diff] [blame] | 142 | |
| 143 | /* Refill at least minimum credit */ |
| 144 | if (credit_refill < min_credit) |
| 145 | credit_refill = min_credit; |
| 146 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 147 | p->data_credits_refill = (u16)credit_refill; |
| 148 | |
| 149 | /* Calculate maximum credit for the TC */ |
| 150 | credit_max = (link_percentage * MAX_CREDIT) / 100; |
| 151 | |
| 152 | /* |
| 153 | * Adjustment based on rule checking, if the percentage |
| 154 | * of a TC is too small, the maximum credit may not be |
| 155 | * enough to send out a jumbo frame in data plane arbitration. |
| 156 | */ |
Vasu Dev | 3efcb86 | 2015-11-23 10:30:51 -0800 | [diff] [blame] | 157 | if (credit_max < min_credit) |
John Fastabend | 9806307a | 2010-10-28 00:59:57 +0000 | [diff] [blame] | 158 | credit_max = min_credit; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 159 | |
| 160 | if (direction == DCB_TX_CONFIG) { |
| 161 | /* |
| 162 | * Adjustment based on rule checking, if the |
| 163 | * percentage of a TC is too small, the maximum |
| 164 | * credit may not be enough to send out a TSO |
| 165 | * packet in descriptor plane arbitration. |
| 166 | */ |
John Fastabend | 80ab193 | 2010-11-16 19:26:45 -0800 | [diff] [blame] | 167 | if ((hw->mac.type == ixgbe_mac_82598EB) && |
| 168 | credit_max && |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 169 | (credit_max < MINIMUM_CREDIT_FOR_TSO)) |
| 170 | credit_max = MINIMUM_CREDIT_FOR_TSO; |
| 171 | |
| 172 | dcb_config->tc_config[i].desc_credits_max = |
| 173 | (u16)credit_max; |
| 174 | } |
| 175 | |
| 176 | p->data_credits_max = (u16)credit_max; |
| 177 | } |
| 178 | |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 179 | return 0; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 180 | } |
| 181 | |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 182 | void ixgbe_dcb_unpack_pfc(struct ixgbe_dcb_config *cfg, u8 *pfc_en) |
| 183 | { |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 184 | struct tc_configuration *tc_config = &cfg->tc_config[0]; |
| 185 | int tc; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 186 | |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 187 | for (*pfc_en = 0, tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) { |
| 188 | if (tc_config[tc].dcb_pfc != pfc_disabled) |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 189 | *pfc_en |= BIT(tc); |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 190 | } |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 191 | } |
| 192 | |
| 193 | void ixgbe_dcb_unpack_refill(struct ixgbe_dcb_config *cfg, int direction, |
| 194 | u16 *refill) |
| 195 | { |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 196 | struct tc_configuration *tc_config = &cfg->tc_config[0]; |
| 197 | int tc; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 198 | |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 199 | for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) |
| 200 | refill[tc] = tc_config[tc].path[direction].data_credits_refill; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | void ixgbe_dcb_unpack_max(struct ixgbe_dcb_config *cfg, u16 *max) |
| 204 | { |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 205 | struct tc_configuration *tc_config = &cfg->tc_config[0]; |
| 206 | int tc; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 207 | |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 208 | for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) |
| 209 | max[tc] = tc_config[tc].desc_credits_max; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | void ixgbe_dcb_unpack_bwgid(struct ixgbe_dcb_config *cfg, int direction, |
| 213 | u8 *bwgid) |
| 214 | { |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 215 | struct tc_configuration *tc_config = &cfg->tc_config[0]; |
| 216 | int tc; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 217 | |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 218 | for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) |
| 219 | bwgid[tc] = tc_config[tc].path[direction].bwg_id; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | void ixgbe_dcb_unpack_prio(struct ixgbe_dcb_config *cfg, int direction, |
| 223 | u8 *ptype) |
| 224 | { |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 225 | struct tc_configuration *tc_config = &cfg->tc_config[0]; |
| 226 | int tc; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 227 | |
Alexander Duyck | df0676d | 2012-05-17 05:14:39 +0000 | [diff] [blame] | 228 | for (tc = 0; tc < MAX_TRAFFIC_CLASS; tc++) |
| 229 | ptype[tc] = tc_config[tc].path[direction].prio_type; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 230 | } |
| 231 | |
Alexander Duyck | 02debdc | 2012-05-18 06:33:31 +0000 | [diff] [blame] | 232 | u8 ixgbe_dcb_get_tc_from_up(struct ixgbe_dcb_config *cfg, int direction, u8 up) |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 233 | { |
| 234 | struct tc_configuration *tc_config = &cfg->tc_config[0]; |
Jacob Keller | b4f47a4 | 2016-04-13 16:08:22 -0700 | [diff] [blame] | 235 | u8 prio_mask = BIT(up); |
Alexander Duyck | b92ad72 | 2012-05-25 01:45:38 +0000 | [diff] [blame] | 236 | u8 tc = cfg->num_tcs.pg_tcs; |
| 237 | |
| 238 | /* If tc is 0 then DCB is likely not enabled or supported */ |
| 239 | if (!tc) |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 240 | return 0; |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 241 | |
| 242 | /* |
Alexander Duyck | b92ad72 | 2012-05-25 01:45:38 +0000 | [diff] [blame] | 243 | * Test from maximum TC to 1 and report the first match we find. If |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 244 | * we find no match we can assume that the TC is 0 since the TC must |
| 245 | * be set for all user priorities |
| 246 | */ |
Alexander Duyck | b92ad72 | 2012-05-25 01:45:38 +0000 | [diff] [blame] | 247 | for (tc--; tc; tc--) { |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 248 | if (prio_mask & tc_config[tc].path[direction].up_to_tc_bitmap) |
| 249 | break; |
| 250 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 251 | |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 252 | return tc; |
| 253 | } |
| 254 | |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 255 | void ixgbe_dcb_unpack_map(struct ixgbe_dcb_config *cfg, int direction, u8 *map) |
| 256 | { |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 257 | u8 up; |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 258 | |
Alexander Duyck | 15cbc70 | 2012-05-17 05:14:34 +0000 | [diff] [blame] | 259 | for (up = 0; up < MAX_USER_PRIORITY; up++) |
| 260 | map[up] = ixgbe_dcb_get_tc_from_up(cfg, direction, up); |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 261 | } |
| 262 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 263 | /** |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 264 | * ixgbe_dcb_hw_config - Config and enable DCB |
| 265 | * @hw: pointer to hardware structure |
| 266 | * @dcb_config: pointer to ixgbe_dcb_config structure |
| 267 | * |
| 268 | * Configure dcb settings and enable dcb mode. |
| 269 | */ |
| 270 | s32 ixgbe_dcb_hw_config(struct ixgbe_hw *hw, |
Jacob Keller | e7cf745 | 2014-04-09 06:03:10 +0000 | [diff] [blame] | 271 | struct ixgbe_dcb_config *dcb_config) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 272 | { |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 273 | u8 pfc_en; |
| 274 | u8 ptype[MAX_TRAFFIC_CLASS]; |
| 275 | u8 bwgid[MAX_TRAFFIC_CLASS]; |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 276 | u8 prio_tc[MAX_TRAFFIC_CLASS]; |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 277 | u16 refill[MAX_TRAFFIC_CLASS]; |
| 278 | u16 max[MAX_TRAFFIC_CLASS]; |
| 279 | |
| 280 | /* Unpack CEE standard containers */ |
| 281 | ixgbe_dcb_unpack_pfc(dcb_config, &pfc_en); |
| 282 | ixgbe_dcb_unpack_refill(dcb_config, DCB_TX_CONFIG, refill); |
| 283 | ixgbe_dcb_unpack_max(dcb_config, max); |
| 284 | ixgbe_dcb_unpack_bwgid(dcb_config, DCB_TX_CONFIG, bwgid); |
| 285 | ixgbe_dcb_unpack_prio(dcb_config, DCB_TX_CONFIG, ptype); |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 286 | ixgbe_dcb_unpack_map(dcb_config, DCB_TX_CONFIG, prio_tc); |
John Fastabend | 55320cb | 2011-01-05 04:47:43 +0000 | [diff] [blame] | 287 | |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 288 | switch (hw->mac.type) { |
| 289 | case ixgbe_mac_82598EB: |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 290 | return ixgbe_dcb_hw_config_82598(hw, pfc_en, refill, max, |
| 291 | bwgid, ptype); |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 292 | case ixgbe_mac_82599EB: |
| 293 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 294 | case ixgbe_mac_X550: |
| 295 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 296 | case ixgbe_mac_x550em_a: |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 297 | return ixgbe_dcb_hw_config_82599(hw, pfc_en, refill, max, |
| 298 | bwgid, ptype, prio_tc); |
Don Skidmore | b93a222 | 2010-11-16 19:27:17 -0800 | [diff] [blame] | 299 | default: |
| 300 | break; |
| 301 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 302 | return 0; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 303 | } |
| 304 | |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 305 | /* Helper routines to abstract HW specifics from DCB netlink ops */ |
John Fastabend | 32701dc | 2011-09-27 03:51:56 +0000 | [diff] [blame] | 306 | s32 ixgbe_dcb_hw_pfc_config(struct ixgbe_hw *hw, u8 pfc_en, u8 *prio_tc) |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 307 | { |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 308 | switch (hw->mac.type) { |
| 309 | case ixgbe_mac_82598EB: |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 310 | return ixgbe_dcb_config_pfc_82598(hw, pfc_en); |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 311 | case ixgbe_mac_82599EB: |
| 312 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 313 | case ixgbe_mac_X550: |
| 314 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 315 | case ixgbe_mac_x550em_a: |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 316 | return ixgbe_dcb_config_pfc_82599(hw, pfc_en, prio_tc); |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 317 | default: |
| 318 | break; |
| 319 | } |
Mark Rustad | e90dd26 | 2014-07-22 06:51:08 +0000 | [diff] [blame] | 320 | return -EINVAL; |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 321 | } |
| 322 | |
John Fastabend | 4c09f3a | 2011-08-04 05:47:07 +0000 | [diff] [blame] | 323 | s32 ixgbe_dcb_hw_ets(struct ixgbe_hw *hw, struct ieee_ets *ets, int max_frame) |
| 324 | { |
| 325 | __u16 refill[IEEE_8021QAZ_MAX_TCS], max[IEEE_8021QAZ_MAX_TCS]; |
| 326 | __u8 prio_type[IEEE_8021QAZ_MAX_TCS]; |
| 327 | int i; |
| 328 | |
| 329 | /* naively give each TC a bwg to map onto CEE hardware */ |
| 330 | __u8 bwg_id[IEEE_8021QAZ_MAX_TCS] = {0, 1, 2, 3, 4, 5, 6, 7}; |
| 331 | |
| 332 | /* Map TSA onto CEE prio type */ |
| 333 | for (i = 0; i < IEEE_8021QAZ_MAX_TCS; i++) { |
| 334 | switch (ets->tc_tsa[i]) { |
| 335 | case IEEE_8021QAZ_TSA_STRICT: |
| 336 | prio_type[i] = 2; |
| 337 | break; |
| 338 | case IEEE_8021QAZ_TSA_ETS: |
| 339 | prio_type[i] = 0; |
| 340 | break; |
| 341 | default: |
| 342 | /* Hardware only supports priority strict or |
| 343 | * ETS transmission selection algorithms if |
| 344 | * we receive some other value from dcbnl |
| 345 | * throw an error |
| 346 | */ |
| 347 | return -EINVAL; |
| 348 | } |
| 349 | } |
| 350 | |
| 351 | ixgbe_ieee_credits(ets->tc_tx_bw, refill, max, max_frame); |
| 352 | return ixgbe_dcb_hw_ets_config(hw, refill, max, |
| 353 | bwg_id, prio_type, ets->prio_tc); |
| 354 | } |
| 355 | |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 356 | s32 ixgbe_dcb_hw_ets_config(struct ixgbe_hw *hw, |
John Fastabend | 17049d3 | 2011-02-23 05:58:19 +0000 | [diff] [blame] | 357 | u16 *refill, u16 *max, u8 *bwg_id, |
| 358 | u8 *prio_type, u8 *prio_tc) |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 359 | { |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 360 | switch (hw->mac.type) { |
| 361 | case ixgbe_mac_82598EB: |
| 362 | ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, |
| 363 | prio_type); |
| 364 | ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max, |
| 365 | bwg_id, prio_type); |
| 366 | ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max, |
| 367 | bwg_id, prio_type); |
| 368 | break; |
| 369 | case ixgbe_mac_82599EB: |
| 370 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 371 | case ixgbe_mac_X550: |
| 372 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 373 | case ixgbe_mac_x550em_a: |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 374 | ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, |
John Fastabend | 17049d3 | 2011-02-23 05:58:19 +0000 | [diff] [blame] | 375 | bwg_id, prio_type, prio_tc); |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 376 | ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max, |
| 377 | bwg_id, prio_type); |
John Fastabend | 17049d3 | 2011-02-23 05:58:19 +0000 | [diff] [blame] | 378 | ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max, bwg_id, |
| 379 | prio_type, prio_tc); |
John Fastabend | d033d52 | 2011-02-10 14:40:01 +0000 | [diff] [blame] | 380 | break; |
| 381 | default: |
| 382 | break; |
| 383 | } |
| 384 | return 0; |
| 385 | } |
Amir Hanania | e8915be | 2013-04-18 04:23:52 +0000 | [diff] [blame] | 386 | |
| 387 | static void ixgbe_dcb_read_rtrup2tc_82599(struct ixgbe_hw *hw, u8 *map) |
| 388 | { |
| 389 | u32 reg, i; |
| 390 | |
| 391 | reg = IXGBE_READ_REG(hw, IXGBE_RTRUP2TC); |
| 392 | for (i = 0; i < MAX_USER_PRIORITY; i++) |
| 393 | map[i] = IXGBE_RTRUP2TC_UP_MASK & |
| 394 | (reg >> (i * IXGBE_RTRUP2TC_UP_SHIFT)); |
Amir Hanania | e8915be | 2013-04-18 04:23:52 +0000 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | void ixgbe_dcb_read_rtrup2tc(struct ixgbe_hw *hw, u8 *map) |
| 398 | { |
| 399 | switch (hw->mac.type) { |
| 400 | case ixgbe_mac_82599EB: |
| 401 | case ixgbe_mac_X540: |
Don Skidmore | 9a75a1a | 2014-11-07 03:53:35 +0000 | [diff] [blame] | 402 | case ixgbe_mac_X550: |
| 403 | case ixgbe_mac_X550EM_x: |
Mark Rustad | 49425df | 2016-04-01 12:18:09 -0700 | [diff] [blame] | 404 | case ixgbe_mac_x550em_a: |
Amir Hanania | e8915be | 2013-04-18 04:23:52 +0000 | [diff] [blame] | 405 | ixgbe_dcb_read_rtrup2tc_82599(hw, map); |
| 406 | break; |
| 407 | default: |
| 408 | break; |
| 409 | } |
| 410 | } |