Merge branch 'sched/urgent'
[linux-2.6/x86.git] / drivers / net / ixgbe / ixgbe_dcb_82598.c
blob2288c3cac0106927ef566e97b11d9fdfc143bec2
1 /*******************************************************************************
3 Intel 10 Gigabit PCI Express Linux driver
4 Copyright(c) 1999 - 2011 Intel Corporation.
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.
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.
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.
19 The full GNU General Public License is included in this distribution in
20 the file called "COPYING".
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
27 *******************************************************************************/
29 #include "ixgbe.h"
30 #include "ixgbe_type.h"
31 #include "ixgbe_dcb.h"
32 #include "ixgbe_dcb_82598.h"
34 /**
35 * ixgbe_dcb_config_rx_arbiter_82598 - Config Rx data arbiter
36 * @hw: pointer to hardware structure
37 * @dcb_config: pointer to ixgbe_dcb_config structure
39 * Configure Rx Data Arbiter and credits for each traffic class.
41 s32 ixgbe_dcb_config_rx_arbiter_82598(struct ixgbe_hw *hw,
42 u16 *refill,
43 u16 *max,
44 u8 *prio_type)
46 u32 reg = 0;
47 u32 credit_refill = 0;
48 u32 credit_max = 0;
49 u8 i = 0;
51 reg = IXGBE_READ_REG(hw, IXGBE_RUPPBMR) | IXGBE_RUPPBMR_MQA;
52 IXGBE_WRITE_REG(hw, IXGBE_RUPPBMR, reg);
54 reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
55 /* Enable Arbiter */
56 reg &= ~IXGBE_RMCS_ARBDIS;
57 /* Enable Receive Recycle within the BWG */
58 reg |= IXGBE_RMCS_RRM;
59 /* Enable Deficit Fixed Priority arbitration*/
60 reg |= IXGBE_RMCS_DFP;
62 IXGBE_WRITE_REG(hw, IXGBE_RMCS, reg);
64 /* Configure traffic class credits and priority */
65 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
66 credit_refill = refill[i];
67 credit_max = max[i];
69 reg = credit_refill | (credit_max << IXGBE_RT2CR_MCL_SHIFT);
71 if (prio_type[i] == prio_link)
72 reg |= IXGBE_RT2CR_LSP;
74 IXGBE_WRITE_REG(hw, IXGBE_RT2CR(i), reg);
77 reg = IXGBE_READ_REG(hw, IXGBE_RDRXCTL);
78 reg |= IXGBE_RDRXCTL_RDMTS_1_2;
79 reg |= IXGBE_RDRXCTL_MPBEN;
80 reg |= IXGBE_RDRXCTL_MCEN;
81 IXGBE_WRITE_REG(hw, IXGBE_RDRXCTL, reg);
83 reg = IXGBE_READ_REG(hw, IXGBE_RXCTRL);
84 /* Make sure there is enough descriptors before arbitration */
85 reg &= ~IXGBE_RXCTRL_DMBYPS;
86 IXGBE_WRITE_REG(hw, IXGBE_RXCTRL, reg);
88 return 0;
91 /**
92 * ixgbe_dcb_config_tx_desc_arbiter_82598 - Config Tx Desc. arbiter
93 * @hw: pointer to hardware structure
94 * @dcb_config: pointer to ixgbe_dcb_config structure
96 * Configure Tx Descriptor Arbiter and credits for each traffic class.
98 s32 ixgbe_dcb_config_tx_desc_arbiter_82598(struct ixgbe_hw *hw,
99 u16 *refill,
100 u16 *max,
101 u8 *bwg_id,
102 u8 *prio_type)
104 u32 reg, max_credits;
105 u8 i;
107 reg = IXGBE_READ_REG(hw, IXGBE_DPMCS);
109 /* Enable arbiter */
110 reg &= ~IXGBE_DPMCS_ARBDIS;
111 /* Enable DFP and Recycle mode */
112 reg |= (IXGBE_DPMCS_TDPAC | IXGBE_DPMCS_TRM);
113 reg |= IXGBE_DPMCS_TSOEF;
114 /* Configure Max TSO packet size 34KB including payload and headers */
115 reg |= (0x4 << IXGBE_DPMCS_MTSOS_SHIFT);
117 IXGBE_WRITE_REG(hw, IXGBE_DPMCS, reg);
119 /* Configure traffic class credits and priority */
120 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
121 max_credits = max[i];
122 reg = max_credits << IXGBE_TDTQ2TCCR_MCL_SHIFT;
123 reg |= refill[i];
124 reg |= (u32)(bwg_id[i]) << IXGBE_TDTQ2TCCR_BWG_SHIFT;
126 if (prio_type[i] == prio_group)
127 reg |= IXGBE_TDTQ2TCCR_GSP;
129 if (prio_type[i] == prio_link)
130 reg |= IXGBE_TDTQ2TCCR_LSP;
132 IXGBE_WRITE_REG(hw, IXGBE_TDTQ2TCCR(i), reg);
135 return 0;
139 * ixgbe_dcb_config_tx_data_arbiter_82598 - Config Tx data arbiter
140 * @hw: pointer to hardware structure
141 * @dcb_config: pointer to ixgbe_dcb_config structure
143 * Configure Tx Data Arbiter and credits for each traffic class.
145 s32 ixgbe_dcb_config_tx_data_arbiter_82598(struct ixgbe_hw *hw,
146 u16 *refill,
147 u16 *max,
148 u8 *bwg_id,
149 u8 *prio_type)
151 u32 reg;
152 u8 i;
154 reg = IXGBE_READ_REG(hw, IXGBE_PDPMCS);
155 /* Enable Data Plane Arbiter */
156 reg &= ~IXGBE_PDPMCS_ARBDIS;
157 /* Enable DFP and Transmit Recycle Mode */
158 reg |= (IXGBE_PDPMCS_TPPAC | IXGBE_PDPMCS_TRM);
160 IXGBE_WRITE_REG(hw, IXGBE_PDPMCS, reg);
162 /* Configure traffic class credits and priority */
163 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
164 reg = refill[i];
165 reg |= (u32)(max[i]) << IXGBE_TDPT2TCCR_MCL_SHIFT;
166 reg |= (u32)(bwg_id[i]) << IXGBE_TDPT2TCCR_BWG_SHIFT;
168 if (prio_type[i] == prio_group)
169 reg |= IXGBE_TDPT2TCCR_GSP;
171 if (prio_type[i] == prio_link)
172 reg |= IXGBE_TDPT2TCCR_LSP;
174 IXGBE_WRITE_REG(hw, IXGBE_TDPT2TCCR(i), reg);
177 /* Enable Tx packet buffer division */
178 reg = IXGBE_READ_REG(hw, IXGBE_DTXCTL);
179 reg |= IXGBE_DTXCTL_ENDBUBD;
180 IXGBE_WRITE_REG(hw, IXGBE_DTXCTL, reg);
182 return 0;
186 * ixgbe_dcb_config_pfc_82598 - Config priority flow control
187 * @hw: pointer to hardware structure
188 * @dcb_config: pointer to ixgbe_dcb_config structure
190 * Configure Priority Flow Control for each traffic class.
192 s32 ixgbe_dcb_config_pfc_82598(struct ixgbe_hw *hw, u8 pfc_en)
194 u32 reg, rx_pba_size;
195 u8 i;
197 if (pfc_en) {
198 /* Enable Transmit Priority Flow Control */
199 reg = IXGBE_READ_REG(hw, IXGBE_RMCS);
200 reg &= ~IXGBE_RMCS_TFCE_802_3X;
201 /* correct the reporting of our flow control status */
202 reg |= IXGBE_RMCS_TFCE_PRIORITY;
203 IXGBE_WRITE_REG(hw, IXGBE_RMCS, reg);
205 /* Enable Receive Priority Flow Control */
206 reg = IXGBE_READ_REG(hw, IXGBE_FCTRL);
207 reg &= ~IXGBE_FCTRL_RFCE;
208 reg |= IXGBE_FCTRL_RPFCE;
209 IXGBE_WRITE_REG(hw, IXGBE_FCTRL, reg);
211 /* Configure pause time */
212 for (i = 0; i < (MAX_TRAFFIC_CLASS >> 1); i++)
213 IXGBE_WRITE_REG(hw, IXGBE_FCTTV(i), 0x68006800);
215 /* Configure flow control refresh threshold value */
216 IXGBE_WRITE_REG(hw, IXGBE_FCRTV, 0x3400);
220 * Configure flow control thresholds and enable priority flow control
221 * for each traffic class.
223 for (i = 0; i < MAX_TRAFFIC_CLASS; i++) {
224 int enabled = pfc_en & (1 << i);
225 rx_pba_size = IXGBE_READ_REG(hw, IXGBE_RXPBSIZE(i));
226 rx_pba_size >>= IXGBE_RXPBSIZE_SHIFT;
227 reg = (rx_pba_size - hw->fc.low_water) << 10;
229 if (enabled == pfc_enabled_tx ||
230 enabled == pfc_enabled_full)
231 reg |= IXGBE_FCRTL_XONE;
233 IXGBE_WRITE_REG(hw, IXGBE_FCRTL(i), reg);
235 reg = (rx_pba_size - hw->fc.high_water) << 10;
236 if (enabled == pfc_enabled_tx ||
237 enabled == pfc_enabled_full)
238 reg |= IXGBE_FCRTH_FCEN;
240 IXGBE_WRITE_REG(hw, IXGBE_FCRTH(i), reg);
243 return 0;
247 * ixgbe_dcb_config_tc_stats_82598 - Configure traffic class statistics
248 * @hw: pointer to hardware structure
250 * Configure queue statistics registers, all queues belonging to same traffic
251 * class uses a single set of queue statistics counters.
253 static s32 ixgbe_dcb_config_tc_stats_82598(struct ixgbe_hw *hw)
255 u32 reg = 0;
256 u8 i = 0;
257 u8 j = 0;
259 /* Receive Queues stats setting - 8 queues per statistics reg */
260 for (i = 0, j = 0; i < 15 && j < 8; i = i + 2, j++) {
261 reg = IXGBE_READ_REG(hw, IXGBE_RQSMR(i));
262 reg |= ((0x1010101) * j);
263 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i), reg);
264 reg = IXGBE_READ_REG(hw, IXGBE_RQSMR(i + 1));
265 reg |= ((0x1010101) * j);
266 IXGBE_WRITE_REG(hw, IXGBE_RQSMR(i + 1), reg);
268 /* Transmit Queues stats setting - 4 queues per statistics reg */
269 for (i = 0; i < 8; i++) {
270 reg = IXGBE_READ_REG(hw, IXGBE_TQSMR(i));
271 reg |= ((0x1010101) * i);
272 IXGBE_WRITE_REG(hw, IXGBE_TQSMR(i), reg);
275 return 0;
279 * ixgbe_dcb_hw_config_82598 - Config and enable DCB
280 * @hw: pointer to hardware structure
281 * @dcb_config: pointer to ixgbe_dcb_config structure
283 * Configure dcb settings and enable dcb mode.
285 s32 ixgbe_dcb_hw_config_82598(struct ixgbe_hw *hw, u8 pfc_en, u16 *refill,
286 u16 *max, u8 *bwg_id, u8 *prio_type)
288 ixgbe_dcb_config_rx_arbiter_82598(hw, refill, max, prio_type);
289 ixgbe_dcb_config_tx_desc_arbiter_82598(hw, refill, max,
290 bwg_id, prio_type);
291 ixgbe_dcb_config_tx_data_arbiter_82598(hw, refill, max,
292 bwg_id, prio_type);
293 ixgbe_dcb_config_pfc_82598(hw, pfc_en);
294 ixgbe_dcb_config_tc_stats_82598(hw);
296 return 0;