1 /*******************************************************************************
3 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2012 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
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".
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 <linux/netdevice.h>
30 #include <linux/module.h>
31 #include <linux/pci.h>
36 * This is the only thing that needs to be changed to adjust the
37 * maximum number of ports that the driver can manage.
40 #define E1000_MAX_NIC 32
42 #define OPTION_UNSET -1
43 #define OPTION_DISABLED 0
44 #define OPTION_ENABLED 1
46 #define COPYBREAK_DEFAULT 256
47 unsigned int copybreak
= COPYBREAK_DEFAULT
;
48 module_param(copybreak
, uint
, 0644);
49 MODULE_PARM_DESC(copybreak
,
50 "Maximum size of packet that is copied to a new buffer on receive");
53 * All parameters are treated the same, as an integer array of values.
54 * This macro just reduces the need to repeat the same declaration code
55 * over and over (plus this helps to avoid typo bugs).
58 #define E1000_PARAM_INIT { [0 ... E1000_MAX_NIC] = OPTION_UNSET }
59 #define E1000_PARAM(X, desc) \
60 static int __devinitdata X[E1000_MAX_NIC+1] \
62 static unsigned int num_##X; \
63 module_param_array_named(X, X, int, &num_##X, 0); \
64 MODULE_PARM_DESC(X, desc);
67 * Transmit Interrupt Delay in units of 1.024 microseconds
68 * Tx interrupt delay needs to typically be set to something non-zero
70 * Valid Range: 0-65535
72 E1000_PARAM(TxIntDelay
, "Transmit Interrupt Delay");
73 #define DEFAULT_TIDV 8
74 #define MAX_TXDELAY 0xFFFF
78 * Transmit Absolute Interrupt Delay in units of 1.024 microseconds
80 * Valid Range: 0-65535
82 E1000_PARAM(TxAbsIntDelay
, "Transmit Absolute Interrupt Delay");
83 #define DEFAULT_TADV 32
84 #define MAX_TXABSDELAY 0xFFFF
85 #define MIN_TXABSDELAY 0
88 * Receive Interrupt Delay in units of 1.024 microseconds
89 * hardware will likely hang if you set this to anything but zero.
91 * Valid Range: 0-65535
93 E1000_PARAM(RxIntDelay
, "Receive Interrupt Delay");
94 #define MAX_RXDELAY 0xFFFF
98 * Receive Absolute Interrupt Delay in units of 1.024 microseconds
100 * Valid Range: 0-65535
102 E1000_PARAM(RxAbsIntDelay
, "Receive Absolute Interrupt Delay");
103 #define MAX_RXABSDELAY 0xFFFF
104 #define MIN_RXABSDELAY 0
107 * Interrupt Throttle Rate (interrupts/sec)
109 * Valid Range: 100-100000 (0=off, 1=dynamic, 3=dynamic conservative)
111 E1000_PARAM(InterruptThrottleRate
, "Interrupt Throttling Rate");
112 #define DEFAULT_ITR 3
113 #define MAX_ITR 100000
117 * IntMode (Interrupt Mode)
119 * Valid Range: varies depending on kernel configuration & hardware support
121 * legacy=0, MSI=1, MSI-X=2
123 * When MSI/MSI-X support is enabled in kernel-
124 * Default Value: 2 (MSI-X) when supported by hardware, 1 (MSI) otherwise
125 * When MSI/MSI-X support is not enabled in kernel-
126 * Default Value: 0 (legacy)
128 * When a mode is specified that is not allowed/supported, it will be
129 * demoted to the most advanced interrupt mode available.
131 E1000_PARAM(IntMode
, "Interrupt Mode");
132 #define MAX_INTMODE 2
133 #define MIN_INTMODE 0
136 * Enable Smart Power Down of the PHY
140 * Default Value: 0 (disabled)
142 E1000_PARAM(SmartPowerDownEnable
, "Enable PHY smart power down");
145 * Enable Kumeran Lock Loss workaround
149 * Default Value: 1 (enabled)
151 E1000_PARAM(KumeranLockLoss
, "Enable Kumeran lock loss workaround");
158 * Default Value: 1 (enabled)
160 E1000_PARAM(WriteProtectNVM
, "Write-protect NVM [WARNING: disabling this can lead to corrupted NVM]");
163 * Enable CRC Stripping
167 * Default Value: 1 (enabled)
169 E1000_PARAM(CrcStripping
, "Enable CRC Stripping, disable if your BMC needs " \
172 struct e1000_option
{
173 enum { enable_option
, range_option
, list_option
} type
;
178 struct { /* range_option info */
182 struct { /* list_option info */
184 struct e1000_opt_list
{ int i
; char *str
; } *p
;
189 static int __devinit
e1000_validate_option(unsigned int *value
,
190 const struct e1000_option
*opt
,
191 struct e1000_adapter
*adapter
)
193 if (*value
== OPTION_UNSET
) {
202 e_info("%s Enabled\n", opt
->name
);
204 case OPTION_DISABLED
:
205 e_info("%s Disabled\n", opt
->name
);
210 if (*value
>= opt
->arg
.r
.min
&& *value
<= opt
->arg
.r
.max
) {
211 e_info("%s set to %i\n", opt
->name
, *value
);
217 struct e1000_opt_list
*ent
;
219 for (i
= 0; i
< opt
->arg
.l
.nr
; i
++) {
220 ent
= &opt
->arg
.l
.p
[i
];
221 if (*value
== ent
->i
) {
222 if (ent
->str
[0] != '\0')
223 e_info("%s\n", ent
->str
);
233 e_info("Invalid %s value specified (%i) %s\n", opt
->name
, *value
,
240 * e1000e_check_options - Range Checking for Command Line Parameters
241 * @adapter: board private structure
243 * This routine checks all command line parameters for valid user
244 * input. If an invalid value is given, or if no user specified
245 * value exists, a default value is used. The final value is stored
246 * in a variable in the adapter structure.
248 void __devinit
e1000e_check_options(struct e1000_adapter
*adapter
)
250 struct e1000_hw
*hw
= &adapter
->hw
;
251 int bd
= adapter
->bd_number
;
253 if (bd
>= E1000_MAX_NIC
) {
254 e_notice("Warning: no configuration for board #%i\n", bd
);
255 e_notice("Using defaults for all values\n");
258 { /* Transmit Interrupt Delay */
259 static const struct e1000_option opt
= {
260 .type
= range_option
,
261 .name
= "Transmit Interrupt Delay",
262 .err
= "using default of "
263 __MODULE_STRING(DEFAULT_TIDV
),
265 .arg
= { .r
= { .min
= MIN_TXDELAY
,
266 .max
= MAX_TXDELAY
} }
269 if (num_TxIntDelay
> bd
) {
270 adapter
->tx_int_delay
= TxIntDelay
[bd
];
271 e1000_validate_option(&adapter
->tx_int_delay
, &opt
,
274 adapter
->tx_int_delay
= opt
.def
;
277 { /* Transmit Absolute Interrupt Delay */
278 static const struct e1000_option opt
= {
279 .type
= range_option
,
280 .name
= "Transmit Absolute Interrupt Delay",
281 .err
= "using default of "
282 __MODULE_STRING(DEFAULT_TADV
),
284 .arg
= { .r
= { .min
= MIN_TXABSDELAY
,
285 .max
= MAX_TXABSDELAY
} }
288 if (num_TxAbsIntDelay
> bd
) {
289 adapter
->tx_abs_int_delay
= TxAbsIntDelay
[bd
];
290 e1000_validate_option(&adapter
->tx_abs_int_delay
, &opt
,
293 adapter
->tx_abs_int_delay
= opt
.def
;
296 { /* Receive Interrupt Delay */
297 static struct e1000_option opt
= {
298 .type
= range_option
,
299 .name
= "Receive Interrupt Delay",
300 .err
= "using default of "
301 __MODULE_STRING(DEFAULT_RDTR
),
303 .arg
= { .r
= { .min
= MIN_RXDELAY
,
304 .max
= MAX_RXDELAY
} }
307 if (num_RxIntDelay
> bd
) {
308 adapter
->rx_int_delay
= RxIntDelay
[bd
];
309 e1000_validate_option(&adapter
->rx_int_delay
, &opt
,
312 adapter
->rx_int_delay
= opt
.def
;
315 { /* Receive Absolute Interrupt Delay */
316 static const struct e1000_option opt
= {
317 .type
= range_option
,
318 .name
= "Receive Absolute Interrupt Delay",
319 .err
= "using default of "
320 __MODULE_STRING(DEFAULT_RADV
),
322 .arg
= { .r
= { .min
= MIN_RXABSDELAY
,
323 .max
= MAX_RXABSDELAY
} }
326 if (num_RxAbsIntDelay
> bd
) {
327 adapter
->rx_abs_int_delay
= RxAbsIntDelay
[bd
];
328 e1000_validate_option(&adapter
->rx_abs_int_delay
, &opt
,
331 adapter
->rx_abs_int_delay
= opt
.def
;
334 { /* Interrupt Throttling Rate */
335 static const struct e1000_option opt
= {
336 .type
= range_option
,
337 .name
= "Interrupt Throttling Rate (ints/sec)",
338 .err
= "using default of "
339 __MODULE_STRING(DEFAULT_ITR
),
341 .arg
= { .r
= { .min
= MIN_ITR
,
345 if (num_InterruptThrottleRate
> bd
) {
346 adapter
->itr
= InterruptThrottleRate
[bd
];
347 switch (adapter
->itr
) {
349 e_info("%s turned off\n", opt
.name
);
352 e_info("%s set to dynamic mode\n", opt
.name
);
353 adapter
->itr_setting
= adapter
->itr
;
354 adapter
->itr
= 20000;
357 e_info("%s set to dynamic conservative mode\n",
359 adapter
->itr_setting
= adapter
->itr
;
360 adapter
->itr
= 20000;
363 e_info("%s set to simplified (2000-8000 ints) "
365 adapter
->itr_setting
= 4;
369 * Save the setting, because the dynamic bits
372 if (e1000_validate_option(&adapter
->itr
, &opt
,
374 (adapter
->itr
== 3)) {
376 * In case of invalid user value,
377 * default to conservative mode.
379 adapter
->itr_setting
= adapter
->itr
;
380 adapter
->itr
= 20000;
383 * Clear the lower two bits because
384 * they are used as control.
386 adapter
->itr_setting
=
392 adapter
->itr_setting
= opt
.def
;
393 adapter
->itr
= 20000;
396 { /* Interrupt Mode */
397 static struct e1000_option opt
= {
398 .type
= range_option
,
399 .name
= "Interrupt Mode",
400 #ifndef CONFIG_PCI_MSI
401 .err
= "defaulting to 0 (legacy)",
402 .def
= E1000E_INT_MODE_LEGACY
,
403 .arg
= { .r
= { .min
= 0,
408 #ifdef CONFIG_PCI_MSI
409 if (adapter
->flags
& FLAG_HAS_MSIX
) {
410 opt
.err
= kstrdup("defaulting to 2 (MSI-X)",
412 opt
.def
= E1000E_INT_MODE_MSIX
;
413 opt
.arg
.r
.max
= E1000E_INT_MODE_MSIX
;
415 opt
.err
= kstrdup("defaulting to 1 (MSI)", GFP_KERNEL
);
416 opt
.def
= E1000E_INT_MODE_MSI
;
417 opt
.arg
.r
.max
= E1000E_INT_MODE_MSI
;
421 dev_err(&adapter
->pdev
->dev
,
422 "Failed to allocate memory\n");
427 if (num_IntMode
> bd
) {
428 unsigned int int_mode
= IntMode
[bd
];
429 e1000_validate_option(&int_mode
, &opt
, adapter
);
430 adapter
->int_mode
= int_mode
;
432 adapter
->int_mode
= opt
.def
;
435 #ifdef CONFIG_PCI_MSI
439 { /* Smart Power Down */
440 static const struct e1000_option opt
= {
441 .type
= enable_option
,
442 .name
= "PHY Smart Power Down",
443 .err
= "defaulting to Disabled",
444 .def
= OPTION_DISABLED
447 if (num_SmartPowerDownEnable
> bd
) {
448 unsigned int spd
= SmartPowerDownEnable
[bd
];
449 e1000_validate_option(&spd
, &opt
, adapter
);
450 if ((adapter
->flags
& FLAG_HAS_SMART_POWER_DOWN
)
452 adapter
->flags
|= FLAG_SMART_POWER_DOWN
;
455 { /* CRC Stripping */
456 static const struct e1000_option opt
= {
457 .type
= enable_option
,
458 .name
= "CRC Stripping",
459 .err
= "defaulting to Enabled",
460 .def
= OPTION_ENABLED
463 if (num_CrcStripping
> bd
) {
464 unsigned int crc_stripping
= CrcStripping
[bd
];
465 e1000_validate_option(&crc_stripping
, &opt
, adapter
);
466 if (crc_stripping
== OPTION_ENABLED
)
467 adapter
->flags2
|= FLAG2_CRC_STRIPPING
;
469 adapter
->flags2
|= FLAG2_CRC_STRIPPING
;
472 { /* Kumeran Lock Loss Workaround */
473 static const struct e1000_option opt
= {
474 .type
= enable_option
,
475 .name
= "Kumeran Lock Loss Workaround",
476 .err
= "defaulting to Enabled",
477 .def
= OPTION_ENABLED
480 if (num_KumeranLockLoss
> bd
) {
481 unsigned int kmrn_lock_loss
= KumeranLockLoss
[bd
];
482 e1000_validate_option(&kmrn_lock_loss
, &opt
, adapter
);
483 if (hw
->mac
.type
== e1000_ich8lan
)
484 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw
,
487 if (hw
->mac
.type
== e1000_ich8lan
)
488 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw
,
492 { /* Write-protect NVM */
493 static const struct e1000_option opt
= {
494 .type
= enable_option
,
495 .name
= "Write-protect NVM",
496 .err
= "defaulting to Enabled",
497 .def
= OPTION_ENABLED
500 if (adapter
->flags
& FLAG_IS_ICH
) {
501 if (num_WriteProtectNVM
> bd
) {
502 unsigned int write_protect_nvm
= WriteProtectNVM
[bd
];
503 e1000_validate_option(&write_protect_nvm
, &opt
,
505 if (write_protect_nvm
)
506 adapter
->flags
|= FLAG_READ_ONLY_NVM
;
509 adapter
->flags
|= FLAG_READ_ONLY_NVM
;