blob: 88a08f05624128fb2ffbd148e9036fd8437e4f63 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*******************************************************************************
2
Auke Kok0abb6eb2006-09-27 12:53:14 -07003 Intel PRO/10GbE Linux driver
Jesse Brandeburgf731a9e2008-07-08 15:53:09 -07004 Copyright(c) 1999 - 2008 Intel Corporation.
Auke Kok0abb6eb2006-09-27 12:53:14 -07005
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 more details.
Auke Kok0abb6eb2006-09-27 12:53:14 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 You should have received a copy of the GNU General Public License along with
Auke Kok0abb6eb2006-09-27 12:53:14 -070016 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 Contact Information:
23 Linux NICS <linux.nics@intel.com>
Auke Kok0abb6eb2006-09-27 12:53:14 -070024 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
26
27*******************************************************************************/
28
Joe Perchesd328bc82010-04-27 00:50:58 +000029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "ixgb.h"
32
33/* This is the only thing that needs to be changed to adjust the
34 * maximum number of ports that the driver can manage.
35 */
36
37#define IXGB_MAX_NIC 8
38
39#define OPTION_UNSET -1
40#define OPTION_DISABLED 0
41#define OPTION_ENABLED 1
42
43/* All parameters are treated the same, as an integer array of values.
44 * This macro just reduces the need to repeat the same declaration code
45 * over and over (plus this helps to avoid typo bugs).
46 */
47
48#define IXGB_PARAM_INIT { [0 ... IXGB_MAX_NIC] = OPTION_UNSET }
Stephen Hemminger273dc742007-10-29 10:46:13 -070049#define IXGB_PARAM(X, desc) \
50 static int __devinitdata X[IXGB_MAX_NIC+1] \
51 = IXGB_PARAM_INIT; \
52 static unsigned int num_##X = 0; \
53 module_param_array_named(X, X, int, &num_##X, 0); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 MODULE_PARM_DESC(X, desc);
55
56/* Transmit Descriptor Count
57 *
58 * Valid Range: 64-4096
59 *
60 * Default Value: 256
61 */
62
63IXGB_PARAM(TxDescriptors, "Number of transmit descriptors");
64
65/* Receive Descriptor Count
66 *
67 * Valid Range: 64-4096
68 *
69 * Default Value: 1024
70 */
71
72IXGB_PARAM(RxDescriptors, "Number of receive descriptors");
73
74/* User Specified Flow Control Override
75 *
76 * Valid Range: 0-3
77 * - 0 - No Flow Control
78 * - 1 - Rx only, respond to PAUSE frames but do not generate them
79 * - 2 - Tx only, generate PAUSE frames but ignore them on receive
80 * - 3 - Full Flow Control Support
81 *
Auke Kok953784d2006-05-23 10:29:50 -070082 * Default Value: 2 - Tx only (silicon bug avoidance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
84
85IXGB_PARAM(FlowControl, "Flow Control setting");
86
87/* XsumRX - Receive Checksum Offload Enable/Disable
88 *
89 * Valid Range: 0, 1
90 * - 0 - disables all checksum offload
91 * - 1 - enables receive IP/TCP/UDP checksum offload
92 * on 82597 based NICs
93 *
94 * Default Value: 1
95 */
96
97IXGB_PARAM(XsumRX, "Disable or enable Receive Checksum offload");
98
99/* Transmit Interrupt Delay in units of 0.8192 microseconds
100 *
101 * Valid Range: 0-65535
102 *
103 * Default Value: 32
104 */
105
106IXGB_PARAM(TxIntDelay, "Transmit Interrupt Delay");
107
108/* Receive Interrupt Delay in units of 0.8192 microseconds
109 *
110 * Valid Range: 0-65535
111 *
112 * Default Value: 72
113 */
114
115IXGB_PARAM(RxIntDelay, "Receive Interrupt Delay");
116
117/* Receive Flow control high threshold (when we send a pause frame)
118 * (FCRTH)
119 *
120 * Valid Range: 1,536 - 262,136 (0x600 - 0x3FFF8, 8 byte granularity)
121 *
122 * Default Value: 196,608 (0x30000)
123 */
124
125IXGB_PARAM(RxFCHighThresh, "Receive Flow Control High Threshold");
126
127/* Receive Flow control low threshold (when we send a resume frame)
128 * (FCRTL)
129 *
130 * Valid Range: 64 - 262,136 (0x40 - 0x3FFF8, 8 byte granularity)
131 * must be less than high threshold by at least 8 bytes
132 *
133 * Default Value: 163,840 (0x28000)
134 */
135
136IXGB_PARAM(RxFCLowThresh, "Receive Flow Control Low Threshold");
137
138/* Flow control request timeout (how long to pause the link partner's tx)
139 * (PAP 15:0)
140 *
Jesse Brandeburg0060c072008-07-08 15:52:23 -0700141 * Valid Range: 1 - 65535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 *
Auke Kok953784d2006-05-23 10:29:50 -0700143 * Default Value: 65535 (0xffff) (we'll send an xon if we recover)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 */
145
146IXGB_PARAM(FCReqTimeout, "Flow Control Request Timeout");
147
148/* Interrupt Delay Enable
149 *
150 * Valid Range: 0, 1
151 *
152 * - 0 - disables transmit interrupt delay
153 * - 1 - enables transmmit interrupt delay
154 *
155 * Default Value: 1
156 */
157
158IXGB_PARAM(IntDelayEnable, "Transmit Interrupt Delay Enable");
159
160
161#define DEFAULT_TIDV 32
162#define MAX_TIDV 0xFFFF
163#define MIN_TIDV 0
164
165#define DEFAULT_RDTR 72
166#define MAX_RDTR 0xFFFF
167#define MIN_RDTR 0
168
169#define XSUMRX_DEFAULT OPTION_ENABLED
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171#define DEFAULT_FCRTL 0x28000
172#define DEFAULT_FCRTH 0x30000
173#define MIN_FCRTL 0
174#define MAX_FCRTL 0x3FFE8
175#define MIN_FCRTH 8
176#define MAX_FCRTH 0x3FFF0
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define MIN_FCPAUSE 1
179#define MAX_FCPAUSE 0xffff
Auke Kok953784d2006-05-23 10:29:50 -0700180#define DEFAULT_FCPAUSE 0xFFFF /* this may be too long */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182struct ixgb_option {
183 enum { enable_option, range_option, list_option } type;
Stephen Hemminger273dc742007-10-29 10:46:13 -0700184 const char *name;
185 const char *err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 int def;
187 union {
188 struct { /* range_option info */
189 int min;
190 int max;
191 } r;
192 struct { /* list_option info */
193 int nr;
194 struct ixgb_opt_list {
195 int i;
196 char *str;
197 } *p;
198 } l;
199 } arg;
200};
201
202static int __devinit
Stephen Hemminger273dc742007-10-29 10:46:13 -0700203ixgb_validate_option(unsigned int *value, const struct ixgb_option *opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700205 if (*value == OPTION_UNSET) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *value = opt->def;
207 return 0;
208 }
209
210 switch (opt->type) {
211 case enable_option:
212 switch (*value) {
213 case OPTION_ENABLED:
Joe Perchesd328bc82010-04-27 00:50:58 +0000214 pr_info("%s Enabled\n", opt->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return 0;
216 case OPTION_DISABLED:
Joe Perchesd328bc82010-04-27 00:50:58 +0000217 pr_info("%s Disabled\n", opt->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return 0;
219 }
220 break;
221 case range_option:
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700222 if (*value >= opt->arg.r.min && *value <= opt->arg.r.max) {
Joe Perchesd328bc82010-04-27 00:50:58 +0000223 pr_info("%s set to %i\n", opt->name, *value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 return 0;
225 }
226 break;
227 case list_option: {
228 int i;
229 struct ixgb_opt_list *ent;
230
Jesse Brandeburg14593362008-07-08 15:52:33 -0700231 for (i = 0; i < opt->arg.l.nr; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ent = &opt->arg.l.p[i];
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700233 if (*value == ent->i) {
234 if (ent->str[0] != '\0')
Joe Perchesd328bc82010-04-27 00:50:58 +0000235 pr_info("%s\n", ent->str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 return 0;
237 }
238 }
239 }
240 break;
241 default:
242 BUG();
243 }
244
Joe Perchesd328bc82010-04-27 00:50:58 +0000245 pr_info("Invalid %s specified (%i) %s\n", opt->name, *value, opt->err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 *value = opt->def;
247 return -1;
248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/**
251 * ixgb_check_options - Range Checking for Command Line Parameters
252 * @adapter: board private structure
253 *
254 * This routine checks all command line parameters for valid user
255 * input. If an invalid value is given, or if no user specified
256 * value exists, a default value is used. The final value is stored
257 * in a variable in the adapter structure.
258 **/
259
260void __devinit
261ixgb_check_options(struct ixgb_adapter *adapter)
262{
263 int bd = adapter->bd_number;
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700264 if (bd >= IXGB_MAX_NIC) {
Joe Perchesd328bc82010-04-27 00:50:58 +0000265 pr_notice("Warning: no configuration for board #%i\n", bd);
266 pr_notice("Using defaults for all values\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 }
268
269 { /* Transmit Descriptor Count */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700270 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 .type = range_option,
272 .name = "Transmit Descriptors",
273 .err = "using default of " __MODULE_STRING(DEFAULT_TXD),
274 .def = DEFAULT_TXD,
275 .arg = { .r = { .min = MIN_TXD,
276 .max = MAX_TXD}}
277 };
278 struct ixgb_desc_ring *tx_ring = &adapter->tx_ring;
279
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700280 if (num_TxDescriptors > bd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 tx_ring->count = TxDescriptors[bd];
282 ixgb_validate_option(&tx_ring->count, &opt);
283 } else {
284 tx_ring->count = opt.def;
285 }
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700286 tx_ring->count = ALIGN(tx_ring->count, IXGB_REQ_TX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288 { /* Receive Descriptor Count */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700289 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .type = range_option,
291 .name = "Receive Descriptors",
292 .err = "using default of " __MODULE_STRING(DEFAULT_RXD),
293 .def = DEFAULT_RXD,
294 .arg = { .r = { .min = MIN_RXD,
295 .max = MAX_RXD}}
296 };
297 struct ixgb_desc_ring *rx_ring = &adapter->rx_ring;
298
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700299 if (num_RxDescriptors > bd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 rx_ring->count = RxDescriptors[bd];
301 ixgb_validate_option(&rx_ring->count, &opt);
302 } else {
303 rx_ring->count = opt.def;
304 }
Milind Arun Choudhary55e924c2007-04-27 13:55:31 -0700305 rx_ring->count = ALIGN(rx_ring->count, IXGB_REQ_RX_DESCRIPTOR_MULTIPLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307 { /* Receive Checksum Offload Enable */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700308 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 .type = enable_option,
310 .name = "Receive Checksum Offload",
311 .err = "defaulting to Enabled",
312 .def = OPTION_ENABLED
313 };
314
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700315 if (num_XsumRX > bd) {
Stephen Hemminger273dc742007-10-29 10:46:13 -0700316 unsigned int rx_csum = XsumRX[bd];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 ixgb_validate_option(&rx_csum, &opt);
318 adapter->rx_csum = rx_csum;
319 } else {
320 adapter->rx_csum = opt.def;
321 }
322 }
323 { /* Flow Control */
324
325 struct ixgb_opt_list fc_list[] =
326 {{ ixgb_fc_none, "Flow Control Disabled" },
327 { ixgb_fc_rx_pause,"Flow Control Receive Only" },
328 { ixgb_fc_tx_pause,"Flow Control Transmit Only" },
329 { ixgb_fc_full, "Flow Control Enabled" },
330 { ixgb_fc_default, "Flow Control Hardware Default" }};
331
Stephen Hemminger273dc742007-10-29 10:46:13 -0700332 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 .type = list_option,
334 .name = "Flow Control",
335 .err = "reading default settings from EEPROM",
Auke Kok953784d2006-05-23 10:29:50 -0700336 .def = ixgb_fc_tx_pause,
Ahmed S. Darwish1c8816c2007-03-06 11:08:28 -0800337 .arg = { .l = { .nr = ARRAY_SIZE(fc_list),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 .p = fc_list }}
339 };
340
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700341 if (num_FlowControl > bd) {
Stephen Hemminger273dc742007-10-29 10:46:13 -0700342 unsigned int fc = FlowControl[bd];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 ixgb_validate_option(&fc, &opt);
344 adapter->hw.fc.type = fc;
345 } else {
346 adapter->hw.fc.type = opt.def;
347 }
348 }
349 { /* Receive Flow Control High Threshold */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700350 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 .type = range_option,
352 .name = "Rx Flow Control High Threshold",
353 .err = "using default of " __MODULE_STRING(DEFAULT_FCRTH),
354 .def = DEFAULT_FCRTH,
355 .arg = { .r = { .min = MIN_FCRTH,
356 .max = MAX_FCRTH}}
357 };
358
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700359 if (num_RxFCHighThresh > bd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 adapter->hw.fc.high_water = RxFCHighThresh[bd];
361 ixgb_validate_option(&adapter->hw.fc.high_water, &opt);
362 } else {
363 adapter->hw.fc.high_water = opt.def;
364 }
Auke Kok953784d2006-05-23 10:29:50 -0700365 if (!(adapter->hw.fc.type & ixgb_fc_tx_pause) )
Joe Perchesd328bc82010-04-27 00:50:58 +0000366 pr_info("Ignoring RxFCHighThresh when no RxFC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 }
368 { /* Receive Flow Control Low Threshold */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700369 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 .type = range_option,
371 .name = "Rx Flow Control Low Threshold",
372 .err = "using default of " __MODULE_STRING(DEFAULT_FCRTL),
373 .def = DEFAULT_FCRTL,
374 .arg = { .r = { .min = MIN_FCRTL,
375 .max = MAX_FCRTL}}
376 };
377
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700378 if (num_RxFCLowThresh > bd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 adapter->hw.fc.low_water = RxFCLowThresh[bd];
380 ixgb_validate_option(&adapter->hw.fc.low_water, &opt);
381 } else {
382 adapter->hw.fc.low_water = opt.def;
383 }
Auke Kok953784d2006-05-23 10:29:50 -0700384 if (!(adapter->hw.fc.type & ixgb_fc_tx_pause) )
Joe Perchesd328bc82010-04-27 00:50:58 +0000385 pr_info("Ignoring RxFCLowThresh when no RxFC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387 { /* Flow Control Pause Time Request*/
Stephen Hemminger273dc742007-10-29 10:46:13 -0700388 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 .type = range_option,
390 .name = "Flow Control Pause Time Request",
391 .err = "using default of "__MODULE_STRING(DEFAULT_FCPAUSE),
392 .def = DEFAULT_FCPAUSE,
393 .arg = { .r = { .min = MIN_FCPAUSE,
394 .max = MAX_FCPAUSE}}
395 };
396
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700397 if (num_FCReqTimeout > bd) {
Stephen Hemminger273dc742007-10-29 10:46:13 -0700398 unsigned int pause_time = FCReqTimeout[bd];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 ixgb_validate_option(&pause_time, &opt);
400 adapter->hw.fc.pause_time = pause_time;
401 } else {
402 adapter->hw.fc.pause_time = opt.def;
403 }
Auke Kok953784d2006-05-23 10:29:50 -0700404 if (!(adapter->hw.fc.type & ixgb_fc_tx_pause) )
Joe Perchesd328bc82010-04-27 00:50:58 +0000405 pr_info("Ignoring FCReqTimeout when no RxFC\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407 /* high low and spacing check for rx flow control thresholds */
Auke Kok953784d2006-05-23 10:29:50 -0700408 if (adapter->hw.fc.type & ixgb_fc_tx_pause) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /* high must be greater than low */
410 if (adapter->hw.fc.high_water < (adapter->hw.fc.low_water + 8)) {
411 /* set defaults */
Joe Perchesd328bc82010-04-27 00:50:58 +0000412 pr_info("RxFCHighThresh must be >= (RxFCLowThresh + 8), Using Defaults\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 adapter->hw.fc.high_water = DEFAULT_FCRTH;
414 adapter->hw.fc.low_water = DEFAULT_FCRTL;
415 }
416 }
417 { /* Receive Interrupt Delay */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700418 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 .type = range_option,
420 .name = "Receive Interrupt Delay",
421 .err = "using default of " __MODULE_STRING(DEFAULT_RDTR),
422 .def = DEFAULT_RDTR,
423 .arg = { .r = { .min = MIN_RDTR,
424 .max = MAX_RDTR}}
425 };
426
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700427 if (num_RxIntDelay > bd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 adapter->rx_int_delay = RxIntDelay[bd];
429 ixgb_validate_option(&adapter->rx_int_delay, &opt);
430 } else {
431 adapter->rx_int_delay = opt.def;
432 }
433 }
434 { /* Transmit Interrupt Delay */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700435 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 .type = range_option,
437 .name = "Transmit Interrupt Delay",
438 .err = "using default of " __MODULE_STRING(DEFAULT_TIDV),
439 .def = DEFAULT_TIDV,
440 .arg = { .r = { .min = MIN_TIDV,
441 .max = MAX_TIDV}}
442 };
443
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700444 if (num_TxIntDelay > bd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 adapter->tx_int_delay = TxIntDelay[bd];
446 ixgb_validate_option(&adapter->tx_int_delay, &opt);
447 } else {
448 adapter->tx_int_delay = opt.def;
449 }
450 }
451
452 { /* Transmit Interrupt Delay Enable */
Stephen Hemminger273dc742007-10-29 10:46:13 -0700453 const struct ixgb_option opt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 .type = enable_option,
455 .name = "Tx Interrupt Delay Enable",
456 .err = "defaulting to Enabled",
457 .def = OPTION_ENABLED
458 };
459
Jesse Brandeburg03f83042008-07-08 15:52:13 -0700460 if (num_IntDelayEnable > bd) {
Stephen Hemminger273dc742007-10-29 10:46:13 -0700461 unsigned int ide = IntDelayEnable[bd];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 ixgb_validate_option(&ide, &opt);
463 adapter->tx_int_delay_enable = ide;
464 } else {
465 adapter->tx_int_delay_enable = opt.def;
466 }
467 }
468}