]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/net/ixgbe/ixgbe_dcb_82599.c
ixgbe: DCB, misallocated packet buffer size with X540 device
[karo-tx-linux.git] / drivers / net / ixgbe / ixgbe_dcb_82599.c
1 /*******************************************************************************
2
3   Intel 10 Gigabit PCI Express Linux driver
4   Copyright(c) 1999 - 2011 Intel Corporation.
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   e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
24   Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
25
26 *******************************************************************************/
27
28 #include "ixgbe.h"
29 #include "ixgbe_type.h"
30 #include "ixgbe_dcb.h"
31 #include "ixgbe_dcb_82599.h"
32
33 /**
34  * ixgbe_dcb_config_packet_buffers_82599 - Configure DCB packet buffers
35  * @hw: pointer to hardware structure
36  * @rx_pba: method to distribute packet buffer
37  *
38  * Configure packet buffers for DCB mode.
39  */
40 static s32 ixgbe_dcb_config_packet_buffers_82599(struct ixgbe_hw *hw, u8 rx_pba)
41 {
42         int num_tcs = IXGBE_MAX_PACKET_BUFFERS;
43         u32 rx_pb_size = hw->mac.rx_pb_size << IXGBE_RXPBSIZE_SHIFT;
44         u32 rxpktsize;
45         u32 txpktsize;
46         u32 txpbthresh;
47         u8  i = 0;
48
49         /*
50          * This really means configure the first half of the TCs
51          * (Traffic Classes) to use 5/8 of the Rx packet buffer
52          * space.  To determine the size of the buffer for each TC,
53          * we are multiplying the average size by 5/4 and applying
54          * it to half of the traffic classes.
55          */
56         if (rx_pba == pba_80_48) {
57                 rxpktsize = (rx_pb_size * 5) / (num_tcs * 4);
58                 rx_pb_size -= rxpktsize * (num_tcs / 2);
59                 for (; i < (num_tcs / 2); i++)
60                         IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
61         }
62
63         /* Divide the remaining Rx packet buffer evenly among the TCs */
64         rxpktsize = rx_pb_size / (num_tcs - i);
65         for (; i < num_tcs; i++)
66                 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), rxpktsize);
67
68         /*
69          * Setup Tx packet buffer and threshold equally for all TCs
70          * TXPBTHRESH register is set in K so divide by 1024 and subtract
71          * 10 since the largest packet we support is just over 9K.
72          */
73         txpktsize = IXGBE_TXPBSIZE_MAX / num_tcs;
74         txpbthresh = (txpktsize / 1024) - IXGBE_TXPKT_SIZE_MAX;
75         for (i = 0; i < num_tcs; i++) {
76                 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), txpktsize);
77                 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), txpbthresh);
78         }
79
80         /* Clear unused TCs, if any, to zero buffer size*/
81         for (; i < MAX_TRAFFIC_CLASS; i++) {
82                 IXGBE_WRITE_REG(hw, IXGBE_RXPBSIZE(i), 0);
83                 IXGBE_WRITE_REG(hw, IXGBE_TXPBSIZE(i), 0);
84                 IXGBE_WRITE_REG(hw, IXGBE_TXPBTHRESH(i), 0);
85         }
86
87         return 0;
88 }
89
90 /**
91  * ixgbe_dcb_config_rx_arbiter_82599 - Config Rx Data arbiter
92  * @hw: pointer to hardware structure
93  * @refill: refill credits index by traffic class
94  * @max: max credits index by traffic class
95  * @bwg_id: bandwidth grouping indexed by traffic class
96  * @prio_type: priority type indexed by traffic class
97  *
98  * Configure Rx Packet Arbiter and credits for each traffic class.
99  */
100 s32 ixgbe_dcb_config_rx_arbiter_82599(struct ixgbe_hw *hw,
101                                       u16 *refill,
102                                       u16 *max,
103                                       u8 *bwg_id,
104                                       u8 *prio_type,
105                                       u8 *prio_tc)
106 {
107         u32    reg           = 0;
108         u32    credit_refill = 0;
109         u32    credit_max    = 0;
110         u8     i             = 0;
111
112         /*
113          * Disable the arbiter before changing parameters
114          * (always enable recycle mode; WSP)
115          */
116         reg = IXGBE_RTRPCS_RRM | IXGBE_RTRPCS_RAC | IXGBE_RTRPCS_ARBDIS;
117         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, reg);
118
119         /* Map all traffic classes to their UP, 1 to 1 */
120         reg = 0;
121         for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
122                 reg |= (prio_tc[i] << (i * IXGBE_RTRUP2TC_UP_SHIFT));
123         IXGBE_WRITE_REG(hw, IXGBE_RTRUP2TC, reg);
124
125         /* Configure traffic class credits and priority */
126         for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
127                 credit_refill = refill[i];
128                 credit_max    = max[i];
129                 reg = credit_refill | (credit_max << IXGBE_RTRPT4C_MCL_SHIFT);
130
131                 reg |= (u32)(bwg_id[i]) << IXGBE_RTRPT4C_BWG_SHIFT;
132
133                 if (prio_type[i] == prio_link)
134                         reg |= IXGBE_RTRPT4C_LSP;
135
136                 IXGBE_WRITE_REG(hw, IXGBE_RTRPT4C(i), reg);
137         }
138
139         /*
140          * Configure Rx packet plane (recycle mode; WSP) and
141          * enable arbiter
142          */
143         reg = IXGBE_RTRPCS_RRM | IXGBE_RTRPCS_RAC;
144         IXGBE_WRITE_REG(hw, IXGBE_RTRPCS, reg);
145
146         return 0;
147 }
148
149 /**
150  * ixgbe_dcb_config_tx_desc_arbiter_82599 - Config Tx Desc. arbiter
151  * @hw: pointer to hardware structure
152  * @refill: refill credits index by traffic class
153  * @max: max credits index by traffic class
154  * @bwg_id: bandwidth grouping indexed by traffic class
155  * @prio_type: priority type indexed by traffic class
156  *
157  * Configure Tx Descriptor Arbiter and credits for each traffic class.
158  */
159 s32 ixgbe_dcb_config_tx_desc_arbiter_82599(struct ixgbe_hw *hw,
160                                            u16 *refill,
161                                            u16 *max,
162                                            u8 *bwg_id,
163                                            u8 *prio_type)
164 {
165         u32    reg, max_credits;
166         u8     i;
167
168         /* Clear the per-Tx queue credits; we use per-TC instead */
169         for (i = 0; i < 128; i++) {
170                 IXGBE_WRITE_REG(hw, IXGBE_RTTDQSEL, i);
171                 IXGBE_WRITE_REG(hw, IXGBE_RTTDT1C, 0);
172         }
173
174         /* Configure traffic class credits and priority */
175         for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
176                 max_credits = max[i];
177                 reg = max_credits << IXGBE_RTTDT2C_MCL_SHIFT;
178                 reg |= refill[i];
179                 reg |= (u32)(bwg_id[i]) << IXGBE_RTTDT2C_BWG_SHIFT;
180
181                 if (prio_type[i] == prio_group)
182                         reg |= IXGBE_RTTDT2C_GSP;
183
184                 if (prio_type[i] == prio_link)
185                         reg |= IXGBE_RTTDT2C_LSP;
186
187                 IXGBE_WRITE_REG(hw, IXGBE_RTTDT2C(i), reg);
188         }
189
190         /*
191          * Configure Tx descriptor plane (recycle mode; WSP) and
192          * enable arbiter
193          */
194         reg = IXGBE_RTTDCS_TDPAC | IXGBE_RTTDCS_TDRM;
195         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
196
197         return 0;
198 }
199
200 /**
201  * ixgbe_dcb_config_tx_data_arbiter_82599 - Config Tx Data arbiter
202  * @hw: pointer to hardware structure
203  * @refill: refill credits index by traffic class
204  * @max: max credits index by traffic class
205  * @bwg_id: bandwidth grouping indexed by traffic class
206  * @prio_type: priority type indexed by traffic class
207  *
208  * Configure Tx Packet Arbiter and credits for each traffic class.
209  */
210 s32 ixgbe_dcb_config_tx_data_arbiter_82599(struct ixgbe_hw *hw,
211                                            u16 *refill,
212                                            u16 *max,
213                                            u8 *bwg_id,
214                                            u8 *prio_type,
215                                            u8 *prio_tc)
216 {
217         u32 reg;
218         u8 i;
219
220         /*
221          * Disable the arbiter before changing parameters
222          * (always enable recycle mode; SP; arb delay)
223          */
224         reg = IXGBE_RTTPCS_TPPAC | IXGBE_RTTPCS_TPRM |
225               (IXGBE_RTTPCS_ARBD_DCB << IXGBE_RTTPCS_ARBD_SHIFT) |
226               IXGBE_RTTPCS_ARBDIS;
227         IXGBE_WRITE_REG(hw, IXGBE_RTTPCS, reg);
228
229         /* Map all traffic classes to their UP, 1 to 1 */
230         reg = 0;
231         for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
232                 reg |= (prio_tc[i] << (i * IXGBE_RTTUP2TC_UP_SHIFT));
233         IXGBE_WRITE_REG(hw, IXGBE_RTTUP2TC, reg);
234
235         /* Configure traffic class credits and priority */
236         for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
237                 reg = refill[i];
238                 reg |= (u32)(max[i]) << IXGBE_RTTPT2C_MCL_SHIFT;
239                 reg |= (u32)(bwg_id[i]) << IXGBE_RTTPT2C_BWG_SHIFT;
240
241                 if (prio_type[i] == prio_group)
242                         reg |= IXGBE_RTTPT2C_GSP;
243
244                 if (prio_type[i] == prio_link)
245                         reg |= IXGBE_RTTPT2C_LSP;
246
247                 IXGBE_WRITE_REG(hw, IXGBE_RTTPT2C(i), reg);
248         }
249
250         /*
251          * Configure Tx packet plane (recycle mode; SP; arb delay) and
252          * enable arbiter
253          */
254         reg = IXGBE_RTTPCS_TPPAC | IXGBE_RTTPCS_TPRM |
255               (IXGBE_RTTPCS_ARBD_DCB << IXGBE_RTTPCS_ARBD_SHIFT);
256         IXGBE_WRITE_REG(hw, IXGBE_RTTPCS, reg);
257
258         return 0;
259 }
260
261 /**
262  * ixgbe_dcb_config_pfc_82599 - Configure priority flow control
263  * @hw: pointer to hardware structure
264  * @pfc_en: enabled pfc bitmask
265  *
266  * Configure Priority Flow Control (PFC) for each traffic class.
267  */
268 s32 ixgbe_dcb_config_pfc_82599(struct ixgbe_hw *hw, u8 pfc_en)
269 {
270         u32 i, reg, rx_pba_size;
271
272         /* Configure PFC Tx thresholds per TC */
273         for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
274                 int enabled = pfc_en & (1 << i);
275                 rx_pba_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
276                 rx_pba_size >>= IXGBE_RXPBSIZE_SHIFT;
277
278                 reg = (rx_pba_size - hw->fc.low_water) << 10;
279
280                 if (enabled)
281                         reg |= IXGBE_FCRTL_XONE;
282                 IXGBE_WRITE_REG(hw, IXGBE_FCRTL_82599(i), reg);
283
284                 reg = (rx_pba_size - hw->fc.high_water) << 10;
285                 if (enabled)
286                         reg |= IXGBE_FCRTH_FCEN;
287                 IXGBE_WRITE_REG(hw, IXGBE_FCRTH_82599(i), reg);
288         }
289
290         if (pfc_en) {
291                 /* Configure pause time (2 TCs per register) */
292                 reg = hw->fc.pause_time | (hw->fc.pause_time << 16);
293                 for (i = 0; i < (MAX_TRAFFIC_CLASS / 2); i++)
294                         IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), reg);
295
296                 /* Configure flow control refresh threshold value */
297                 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, hw->fc.pause_time / 2);
298
299
300                 reg = IXGBE_FCCFG_TFCE_PRIORITY;
301                 IXGBE_WRITE_REG(hw, IXGBE_FCCFG, reg);
302                 /*
303                  * Enable Receive PFC
304                  * We will always honor XOFF frames we receive when
305                  * we are in PFC mode.
306                  */
307                 reg = IXGBE_READ_REG(hw, IXGBE_MFLCN);
308                 reg &= ~IXGBE_MFLCN_RFCE;
309                 reg |= IXGBE_MFLCN_RPFCE | IXGBE_MFLCN_DPF;
310                 IXGBE_WRITE_REG(hw, IXGBE_MFLCN, reg);
311
312         } else {
313                 for (i = 0; i < MAX_TRAFFIC_CLASS; i++)
314                         hw->mac.ops.fc_enable(hw, i);
315         }
316
317         return 0;
318 }
319
320 /**
321  * ixgbe_dcb_config_tc_stats_82599 - Config traffic class statistics
322  * @hw: pointer to hardware structure
323  *
324  * Configure queue statistics registers, all queues belonging to same traffic
325  * class uses a single set of queue statistics counters.
326  */
327 static s32 ixgbe_dcb_config_tc_stats_82599(struct ixgbe_hw *hw)
328 {
329         u32 reg = 0;
330         u8  i   = 0;
331
332         /*
333          * Receive Queues stats setting
334          * 32 RQSMR registers, each configuring 4 queues.
335          * Set all 16 queues of each TC to the same stat
336          * with TC 'n' going to stat 'n'.
337          */
338         for (i = 0; i < 32; i++) {
339                 reg = 0x01010101 * (i / 4);
340                 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), reg);
341         }
342         /*
343          * Transmit Queues stats setting
344          * 32 TQSM registers, each controlling 4 queues.
345          * Set all queues of each TC to the same stat
346          * with TC 'n' going to stat 'n'.
347          * Tx queues are allocated non-uniformly to TCs:
348          * 32, 32, 16, 16, 8, 8, 8, 8.
349          */
350         for (i = 0; i < 32; i++) {
351                 if (i < 8)
352                         reg = 0x00000000;
353                 else if (i < 16)
354                         reg = 0x01010101;
355                 else if (i < 20)
356                         reg = 0x02020202;
357                 else if (i < 24)
358                         reg = 0x03030303;
359                 else if (i < 26)
360                         reg = 0x04040404;
361                 else if (i < 28)
362                         reg = 0x05050505;
363                 else if (i < 30)
364                         reg = 0x06060606;
365                 else
366                         reg = 0x07070707;
367                 IXGBE_WRITE_REG(hw, IXGBE_TQSM(i), reg);
368         }
369
370         return 0;
371 }
372
373 /**
374  * ixgbe_dcb_config_82599 - Configure general DCB parameters
375  * @hw: pointer to hardware structure
376  *
377  * Configure general DCB parameters.
378  */
379 static s32 ixgbe_dcb_config_82599(struct ixgbe_hw *hw)
380 {
381         u32 reg;
382         u32 q;
383
384         /* Disable the Tx desc arbiter so that MTQC can be changed */
385         reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
386         reg |= IXGBE_RTTDCS_ARBDIS;
387         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
388
389         /* Enable DCB for Rx with 8 TCs */
390         reg = IXGBE_READ_REG(hw, IXGBE_MRQC);
391         switch (reg & IXGBE_MRQC_MRQE_MASK) {
392         case 0:
393         case IXGBE_MRQC_RT4TCEN:
394                 /* RSS disabled cases */
395                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) | IXGBE_MRQC_RT8TCEN;
396                 break;
397         case IXGBE_MRQC_RSSEN:
398         case IXGBE_MRQC_RTRSS4TCEN:
399                 /* RSS enabled cases */
400                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) | IXGBE_MRQC_RTRSS8TCEN;
401                 break;
402         default:
403                 /* Unsupported value, assume stale data, overwrite no RSS */
404                 reg = (reg & ~IXGBE_MRQC_MRQE_MASK) | IXGBE_MRQC_RT8TCEN;
405         }
406         IXGBE_WRITE_REG(hw, IXGBE_MRQC, reg);
407
408         /* Enable DCB for Tx with 8 TCs */
409         reg = IXGBE_MTQC_RT_ENA | IXGBE_MTQC_8TC_8TQ;
410         IXGBE_WRITE_REG(hw, IXGBE_MTQC, reg);
411
412         /* Disable drop for all queues */
413         for (q = 0; q < 128; q++)
414                 IXGBE_WRITE_REG(hw, IXGBE_QDE, q << IXGBE_QDE_IDX_SHIFT);
415
416         /* Enable the Tx desc arbiter */
417         reg = IXGBE_READ_REG(hw, IXGBE_RTTDCS);
418         reg &= ~IXGBE_RTTDCS_ARBDIS;
419         IXGBE_WRITE_REG(hw, IXGBE_RTTDCS, reg);
420
421         /* Enable Security TX Buffer IFG for DCB */
422         reg = IXGBE_READ_REG(hw, IXGBE_SECTXMINIFG);
423         reg |= IXGBE_SECTX_DCB;
424         IXGBE_WRITE_REG(hw, IXGBE_SECTXMINIFG, reg);
425
426         return 0;
427 }
428
429 /**
430  * ixgbe_dcb_hw_config_82599 - Configure and enable DCB
431  * @hw: pointer to hardware structure
432  * @rx_pba: method to distribute packet buffer
433  * @refill: refill credits index by traffic class
434  * @max: max credits index by traffic class
435  * @bwg_id: bandwidth grouping indexed by traffic class
436  * @prio_type: priority type indexed by traffic class
437  * @pfc_en: enabled pfc bitmask
438  *
439  * Configure dcb settings and enable dcb mode.
440  */
441 s32 ixgbe_dcb_hw_config_82599(struct ixgbe_hw *hw,
442                               u8 rx_pba, u8 pfc_en, u16 *refill,
443                               u16 *max, u8 *bwg_id, u8 *prio_type, u8 *prio_tc)
444 {
445         ixgbe_dcb_config_packet_buffers_82599(hw, rx_pba);
446         ixgbe_dcb_config_82599(hw);
447         ixgbe_dcb_config_rx_arbiter_82599(hw, refill, max, bwg_id,
448                                           prio_type, prio_tc);
449         ixgbe_dcb_config_tx_desc_arbiter_82599(hw, refill, max,
450                                                bwg_id, prio_type);
451         ixgbe_dcb_config_tx_data_arbiter_82599(hw, refill, max,
452                                                bwg_id, prio_type, prio_tc);
453         ixgbe_dcb_config_pfc_82599(hw, pfc_en);
454         ixgbe_dcb_config_tc_stats_82599(hw);
455
456         return 0;
457 }
458