blob: c16bd75b6caa3f85f4f510da7fb56bafcd0f2b40 [file] [log] [blame]
Auke Kokbc7f75f2007-09-17 12:30:59 -07001/*******************************************************************************
2
3 Intel PRO/1000 Linux driver
Bruce Allanbf670442013-01-01 16:00:01 +00004 Copyright(c) 1999 - 2013 Intel Corporation.
Auke Kokbc7f75f2007-09-17 12:30:59 -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
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#include <linux/netdevice.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040030#include <linux/module.h>
Jeff Kirsher44defeb2008-08-04 17:20:41 -070031#include <linux/pci.h>
Auke Kokbc7f75f2007-09-17 12:30:59 -070032
33#include "e1000.h"
34
Bruce Allane921eb12012-11-28 09:28:37 +000035/* This is the only thing that needs to be changed to adjust the
Auke Kokbc7f75f2007-09-17 12:30:59 -070036 * maximum number of ports that the driver can manage.
37 */
Auke Kokbc7f75f2007-09-17 12:30:59 -070038#define E1000_MAX_NIC 32
39
40#define OPTION_UNSET -1
41#define OPTION_DISABLED 0
42#define OPTION_ENABLED 1
43
44#define COPYBREAK_DEFAULT 256
45unsigned int copybreak = COPYBREAK_DEFAULT;
46module_param(copybreak, uint, 0644);
47MODULE_PARM_DESC(copybreak,
Bruce Allan17e813e2013-02-20 04:06:01 +000048 "Maximum size of packet that is copied to a new buffer on receive");
Auke Kokbc7f75f2007-09-17 12:30:59 -070049
Bruce Allane921eb12012-11-28 09:28:37 +000050/* All parameters are treated the same, as an integer array of values.
Auke Kokbc7f75f2007-09-17 12:30:59 -070051 * This macro just reduces the need to repeat the same declaration code
52 * over and over (plus this helps to avoid typo bugs).
53 */
Auke Kokbc7f75f2007-09-17 12:30:59 -070054#define E1000_PARAM_INIT { [0 ... E1000_MAX_NIC] = OPTION_UNSET }
Stephen Hemminger5a9147b2007-10-29 10:46:05 -070055#define E1000_PARAM(X, desc) \
Bruce Allan55c5f552013-01-12 07:28:24 +000056 static int X[E1000_MAX_NIC+1] = E1000_PARAM_INIT; \
Stephen Hemminger5a9147b2007-10-29 10:46:05 -070057 static unsigned int num_##X; \
58 module_param_array_named(X, X, int, &num_##X, 0); \
Auke Kokbc7f75f2007-09-17 12:30:59 -070059 MODULE_PARM_DESC(X, desc);
60
Bruce Allane921eb12012-11-28 09:28:37 +000061/* Transmit Interrupt Delay in units of 1.024 microseconds
Bruce Allanaf667a22010-12-31 06:10:01 +000062 * Tx interrupt delay needs to typically be set to something non-zero
Auke Kokbc7f75f2007-09-17 12:30:59 -070063 *
64 * Valid Range: 0-65535
65 */
66E1000_PARAM(TxIntDelay, "Transmit Interrupt Delay");
67#define DEFAULT_TIDV 8
68#define MAX_TXDELAY 0xFFFF
69#define MIN_TXDELAY 0
70
Bruce Allane921eb12012-11-28 09:28:37 +000071/* Transmit Absolute Interrupt Delay in units of 1.024 microseconds
Auke Kokbc7f75f2007-09-17 12:30:59 -070072 *
73 * Valid Range: 0-65535
74 */
75E1000_PARAM(TxAbsIntDelay, "Transmit Absolute Interrupt Delay");
76#define DEFAULT_TADV 32
77#define MAX_TXABSDELAY 0xFFFF
78#define MIN_TXABSDELAY 0
79
Bruce Allane921eb12012-11-28 09:28:37 +000080/* Receive Interrupt Delay in units of 1.024 microseconds
Bruce Allanad680762008-03-28 09:15:03 -070081 * hardware will likely hang if you set this to anything but zero.
Auke Kokbc7f75f2007-09-17 12:30:59 -070082 *
83 * Valid Range: 0-65535
84 */
85E1000_PARAM(RxIntDelay, "Receive Interrupt Delay");
Auke Kokbc7f75f2007-09-17 12:30:59 -070086#define MAX_RXDELAY 0xFFFF
87#define MIN_RXDELAY 0
88
Bruce Allane921eb12012-11-28 09:28:37 +000089/* Receive Absolute Interrupt Delay in units of 1.024 microseconds
Auke Kokbc7f75f2007-09-17 12:30:59 -070090 *
91 * Valid Range: 0-65535
92 */
93E1000_PARAM(RxAbsIntDelay, "Receive Absolute Interrupt Delay");
Auke Kokbc7f75f2007-09-17 12:30:59 -070094#define MAX_RXABSDELAY 0xFFFF
95#define MIN_RXABSDELAY 0
96
Bruce Allane921eb12012-11-28 09:28:37 +000097/* Interrupt Throttle Rate (interrupts/sec)
Auke Kokbc7f75f2007-09-17 12:30:59 -070098 *
Jeff Kirsher727c3562012-04-20 08:51:45 +000099 * Valid Range: 100-100000 or one of: 0=off, 1=dynamic, 3=dynamic conservative
Auke Kokbc7f75f2007-09-17 12:30:59 -0700100 */
101E1000_PARAM(InterruptThrottleRate, "Interrupt Throttling Rate");
102#define DEFAULT_ITR 3
103#define MAX_ITR 100000
104#define MIN_ITR 100
Bruce Allanaf667a22010-12-31 06:10:01 +0000105
Bruce Allane921eb12012-11-28 09:28:37 +0000106/* IntMode (Interrupt Mode)
Bruce Allan4662e822008-08-26 18:37:06 -0700107 *
Bruce Allanb6fbca22011-12-16 00:45:56 +0000108 * Valid Range: varies depending on kernel configuration & hardware support
Bruce Allan4662e822008-08-26 18:37:06 -0700109 *
Bruce Allanb6fbca22011-12-16 00:45:56 +0000110 * legacy=0, MSI=1, MSI-X=2
111 *
112 * When MSI/MSI-X support is enabled in kernel-
113 * Default Value: 2 (MSI-X) when supported by hardware, 1 (MSI) otherwise
114 * When MSI/MSI-X support is not enabled in kernel-
115 * Default Value: 0 (legacy)
116 *
117 * When a mode is specified that is not allowed/supported, it will be
118 * demoted to the most advanced interrupt mode available.
Bruce Allan4662e822008-08-26 18:37:06 -0700119 */
120E1000_PARAM(IntMode, "Interrupt Mode");
121#define MAX_INTMODE 2
122#define MIN_INTMODE 0
Auke Kokbc7f75f2007-09-17 12:30:59 -0700123
Bruce Allane921eb12012-11-28 09:28:37 +0000124/* Enable Smart Power Down of the PHY
Auke Kokbc7f75f2007-09-17 12:30:59 -0700125 *
126 * Valid Range: 0, 1
127 *
128 * Default Value: 0 (disabled)
129 */
130E1000_PARAM(SmartPowerDownEnable, "Enable PHY smart power down");
131
Bruce Allane921eb12012-11-28 09:28:37 +0000132/* Enable Kumeran Lock Loss workaround
Auke Kokbc7f75f2007-09-17 12:30:59 -0700133 *
134 * Valid Range: 0, 1
135 *
136 * Default Value: 1 (enabled)
137 */
138E1000_PARAM(KumeranLockLoss, "Enable Kumeran lock loss workaround");
139
Bruce Allane921eb12012-11-28 09:28:37 +0000140/* Write Protect NVM
Bruce Allan4a770352008-10-01 17:18:35 -0700141 *
142 * Valid Range: 0, 1
143 *
144 * Default Value: 1 (enabled)
145 */
Bruce Allanc29c3ba2013-02-20 04:05:50 +0000146E1000_PARAM(WriteProtectNVM,
147 "Write-protect NVM [WARNING: disabling this can lead to corrupted NVM]");
Bruce Allan4a770352008-10-01 17:18:35 -0700148
Bruce Allane921eb12012-11-28 09:28:37 +0000149/* Enable CRC Stripping
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000150 *
151 * Valid Range: 0, 1
152 *
153 * Default Value: 1 (enabled)
154 */
Bruce Allan6ad65142012-04-12 05:47:09 +0000155E1000_PARAM(CrcStripping,
156 "Enable CRC Stripping, disable if your BMC needs the CRC");
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000157
Auke Kokbc7f75f2007-09-17 12:30:59 -0700158struct e1000_option {
159 enum { enable_option, range_option, list_option } type;
Stephen Hemminger5a9147b2007-10-29 10:46:05 -0700160 const char *name;
161 const char *err;
162 int def;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700163 union {
Bruce Allan33550ce2013-02-20 04:06:16 +0000164 /* range_option info */
165 struct {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700166 int min;
167 int max;
168 } r;
Bruce Allan33550ce2013-02-20 04:06:16 +0000169 /* list_option info */
170 struct {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700171 int nr;
Bruce Allanbbf441272013-02-20 04:06:37 +0000172 struct e1000_opt_list {
173 int i;
174 char *str;
175 } *p;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700176 } l;
177 } arg;
178};
179
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500180static int e1000_validate_option(unsigned int *value,
Greg Kroah-Hartman1dd06ae2012-12-06 14:30:56 +0000181 const struct e1000_option *opt,
182 struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700183{
184 if (*value == OPTION_UNSET) {
185 *value = opt->def;
186 return 0;
187 }
188
189 switch (opt->type) {
190 case enable_option:
191 switch (*value) {
192 case OPTION_ENABLED:
Bruce Allan185095f2012-06-07 02:23:37 +0000193 dev_info(&adapter->pdev->dev, "%s Enabled\n",
194 opt->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700195 return 0;
196 case OPTION_DISABLED:
Bruce Allan185095f2012-06-07 02:23:37 +0000197 dev_info(&adapter->pdev->dev, "%s Disabled\n",
198 opt->name);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700199 return 0;
200 }
201 break;
202 case range_option:
203 if (*value >= opt->arg.r.min && *value <= opt->arg.r.max) {
Bruce Allan185095f2012-06-07 02:23:37 +0000204 dev_info(&adapter->pdev->dev, "%s set to %i\n",
205 opt->name, *value);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700206 return 0;
207 }
208 break;
209 case list_option: {
210 int i;
211 struct e1000_opt_list *ent;
212
213 for (i = 0; i < opt->arg.l.nr; i++) {
214 ent = &opt->arg.l.p[i];
215 if (*value == ent->i) {
216 if (ent->str[0] != '\0')
Bruce Allan185095f2012-06-07 02:23:37 +0000217 dev_info(&adapter->pdev->dev, "%s\n",
218 ent->str);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700219 return 0;
220 }
221 }
222 }
223 break;
224 default:
225 BUG();
226 }
227
Bruce Allan185095f2012-06-07 02:23:37 +0000228 dev_info(&adapter->pdev->dev, "Invalid %s value specified (%i) %s\n",
229 opt->name, *value, opt->err);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700230 *value = opt->def;
231 return -1;
232}
233
234/**
235 * e1000e_check_options - Range Checking for Command Line Parameters
236 * @adapter: board private structure
237 *
238 * This routine checks all command line parameters for valid user
239 * input. If an invalid value is given, or if no user specified
240 * value exists, a default value is used. The final value is stored
241 * in a variable in the adapter structure.
242 **/
Bill Pemberton9f9a12f2012-12-03 09:24:25 -0500243void e1000e_check_options(struct e1000_adapter *adapter)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700244{
245 struct e1000_hw *hw = &adapter->hw;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700246 int bd = adapter->bd_number;
247
248 if (bd >= E1000_MAX_NIC) {
Bruce Allan185095f2012-06-07 02:23:37 +0000249 dev_notice(&adapter->pdev->dev,
250 "Warning: no configuration for board #%i\n", bd);
251 dev_notice(&adapter->pdev->dev,
252 "Using defaults for all values\n");
Auke Kokbc7f75f2007-09-17 12:30:59 -0700253 }
254
Bruce Allan33550ce2013-02-20 04:06:16 +0000255 /* Transmit Interrupt Delay */
256 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000257 static const struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700258 .type = range_option,
259 .name = "Transmit Interrupt Delay",
260 .err = "using default of "
261 __MODULE_STRING(DEFAULT_TIDV),
262 .def = DEFAULT_TIDV,
263 .arg = { .r = { .min = MIN_TXDELAY,
264 .max = MAX_TXDELAY } }
265 };
266
267 if (num_TxIntDelay > bd) {
268 adapter->tx_int_delay = TxIntDelay[bd];
269 e1000_validate_option(&adapter->tx_int_delay, &opt,
270 adapter);
271 } else {
272 adapter->tx_int_delay = opt.def;
273 }
274 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000275 /* Transmit Absolute Interrupt Delay */
276 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000277 static const struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700278 .type = range_option,
279 .name = "Transmit Absolute Interrupt Delay",
280 .err = "using default of "
281 __MODULE_STRING(DEFAULT_TADV),
282 .def = DEFAULT_TADV,
283 .arg = { .r = { .min = MIN_TXABSDELAY,
284 .max = MAX_TXABSDELAY } }
285 };
286
287 if (num_TxAbsIntDelay > bd) {
288 adapter->tx_abs_int_delay = TxAbsIntDelay[bd];
289 e1000_validate_option(&adapter->tx_abs_int_delay, &opt,
290 adapter);
291 } else {
292 adapter->tx_abs_int_delay = opt.def;
293 }
294 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000295 /* Receive Interrupt Delay */
296 {
Bruce Allan4fe44912010-05-10 14:59:10 +0000297 static struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700298 .type = range_option,
299 .name = "Receive Interrupt Delay",
300 .err = "using default of "
301 __MODULE_STRING(DEFAULT_RDTR),
302 .def = DEFAULT_RDTR,
303 .arg = { .r = { .min = MIN_RXDELAY,
304 .max = MAX_RXDELAY } }
305 };
306
Auke Kokbc7f75f2007-09-17 12:30:59 -0700307 if (num_RxIntDelay > bd) {
308 adapter->rx_int_delay = RxIntDelay[bd];
309 e1000_validate_option(&adapter->rx_int_delay, &opt,
310 adapter);
311 } else {
312 adapter->rx_int_delay = opt.def;
313 }
314 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000315 /* Receive Absolute Interrupt Delay */
316 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000317 static const struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700318 .type = range_option,
319 .name = "Receive Absolute Interrupt Delay",
320 .err = "using default of "
321 __MODULE_STRING(DEFAULT_RADV),
322 .def = DEFAULT_RADV,
323 .arg = { .r = { .min = MIN_RXABSDELAY,
324 .max = MAX_RXABSDELAY } }
325 };
326
327 if (num_RxAbsIntDelay > bd) {
328 adapter->rx_abs_int_delay = RxAbsIntDelay[bd];
329 e1000_validate_option(&adapter->rx_abs_int_delay, &opt,
330 adapter);
331 } else {
332 adapter->rx_abs_int_delay = opt.def;
333 }
334 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000335 /* Interrupt Throttling Rate */
336 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000337 static const struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700338 .type = range_option,
339 .name = "Interrupt Throttling Rate (ints/sec)",
340 .err = "using default of "
341 __MODULE_STRING(DEFAULT_ITR),
342 .def = DEFAULT_ITR,
343 .arg = { .r = { .min = MIN_ITR,
344 .max = MAX_ITR } }
345 };
346
347 if (num_InterruptThrottleRate > bd) {
348 adapter->itr = InterruptThrottleRate[bd];
Jeff Kirsher2e7d21c2012-05-09 02:23:46 -0700349
Bruce Allane921eb12012-11-28 09:28:37 +0000350 /* Make sure a message is printed for non-special
Jeff Kirsher2e7d21c2012-05-09 02:23:46 -0700351 * values. And in case of an invalid option, display
352 * warning, use default and go through itr/itr_setting
353 * adjustment logic below
354 */
355 if ((adapter->itr > 4) &&
356 e1000_validate_option(&adapter->itr, &opt, adapter))
357 adapter->itr = opt.def;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700358 } else {
Bruce Allane921eb12012-11-28 09:28:37 +0000359 /* If no option specified, use default value and go
Jeff Kirsher727c3562012-04-20 08:51:45 +0000360 * through the logic below to adjust itr/itr_setting
361 */
362 adapter->itr = opt.def;
363
Bruce Allane921eb12012-11-28 09:28:37 +0000364 /* Make sure a message is printed for non-special
Jeff Kirsher727c3562012-04-20 08:51:45 +0000365 * default values
366 */
Jeff Kirsher2e7d21c2012-05-09 02:23:46 -0700367 if (adapter->itr > 4)
Bruce Allan185095f2012-06-07 02:23:37 +0000368 dev_info(&adapter->pdev->dev,
369 "%s set to default %d\n", opt.name,
370 adapter->itr);
Jeff Kirsher727c3562012-04-20 08:51:45 +0000371 }
372
373 adapter->itr_setting = adapter->itr;
374 switch (adapter->itr) {
375 case 0:
Bruce Allan185095f2012-06-07 02:23:37 +0000376 dev_info(&adapter->pdev->dev, "%s turned off\n",
377 opt.name);
Jeff Kirsher727c3562012-04-20 08:51:45 +0000378 break;
379 case 1:
Bruce Allan185095f2012-06-07 02:23:37 +0000380 dev_info(&adapter->pdev->dev,
381 "%s set to dynamic mode\n", opt.name);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700382 adapter->itr = 20000;
Jeff Kirsher727c3562012-04-20 08:51:45 +0000383 break;
384 case 3:
Bruce Allan185095f2012-06-07 02:23:37 +0000385 dev_info(&adapter->pdev->dev,
386 "%s set to dynamic conservative mode\n",
387 opt.name);
Jeff Kirsher727c3562012-04-20 08:51:45 +0000388 adapter->itr = 20000;
389 break;
390 case 4:
Bruce Allan185095f2012-06-07 02:23:37 +0000391 dev_info(&adapter->pdev->dev,
392 "%s set to simplified (2000-8000 ints) mode\n",
393 opt.name);
Jeff Kirsher727c3562012-04-20 08:51:45 +0000394 break;
395 default:
Bruce Allane921eb12012-11-28 09:28:37 +0000396 /* Save the setting, because the dynamic bits
Jeff Kirsher727c3562012-04-20 08:51:45 +0000397 * change itr.
398 *
399 * Clear the lower two bits because
400 * they are used as control.
401 */
402 adapter->itr_setting &= ~3;
403 break;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700404 }
405 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000406 /* Interrupt Mode */
407 {
Bruce Allan4fe44912010-05-10 14:59:10 +0000408 static struct e1000_option opt = {
Bruce Allan4662e822008-08-26 18:37:06 -0700409 .type = range_option,
410 .name = "Interrupt Mode",
Bruce Allanb6fbca22011-12-16 00:45:56 +0000411#ifndef CONFIG_PCI_MSI
412 .err = "defaulting to 0 (legacy)",
413 .def = E1000E_INT_MODE_LEGACY,
414 .arg = { .r = { .min = 0,
415 .max = 0 } }
416#endif
Bruce Allan4662e822008-08-26 18:37:06 -0700417 };
418
Bruce Allanb6fbca22011-12-16 00:45:56 +0000419#ifdef CONFIG_PCI_MSI
420 if (adapter->flags & FLAG_HAS_MSIX) {
421 opt.err = kstrdup("defaulting to 2 (MSI-X)",
422 GFP_KERNEL);
423 opt.def = E1000E_INT_MODE_MSIX;
424 opt.arg.r.max = E1000E_INT_MODE_MSIX;
425 } else {
426 opt.err = kstrdup("defaulting to 1 (MSI)", GFP_KERNEL);
427 opt.def = E1000E_INT_MODE_MSI;
428 opt.arg.r.max = E1000E_INT_MODE_MSI;
429 }
430
431 if (!opt.err) {
432 dev_err(&adapter->pdev->dev,
433 "Failed to allocate memory\n");
434 return;
435 }
436#endif
437
Bruce Allan4662e822008-08-26 18:37:06 -0700438 if (num_IntMode > bd) {
439 unsigned int int_mode = IntMode[bd];
440 e1000_validate_option(&int_mode, &opt, adapter);
441 adapter->int_mode = int_mode;
442 } else {
443 adapter->int_mode = opt.def;
444 }
Bruce Allanb6fbca22011-12-16 00:45:56 +0000445
446#ifdef CONFIG_PCI_MSI
447 kfree(opt.err);
448#endif
Bruce Allan4662e822008-08-26 18:37:06 -0700449 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000450 /* Smart Power Down */
451 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000452 static const struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700453 .type = enable_option,
454 .name = "PHY Smart Power Down",
455 .err = "defaulting to Disabled",
456 .def = OPTION_DISABLED
457 };
458
459 if (num_SmartPowerDownEnable > bd) {
Stephen Hemminger5a9147b2007-10-29 10:46:05 -0700460 unsigned int spd = SmartPowerDownEnable[bd];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700461 e1000_validate_option(&spd, &opt, adapter);
Bruce Allan1860ac82012-12-05 06:26:40 +0000462 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN) && spd)
Auke Kokbc7f75f2007-09-17 12:30:59 -0700463 adapter->flags |= FLAG_SMART_POWER_DOWN;
464 }
465 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000466 /* CRC Stripping */
467 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000468 static const struct e1000_option opt = {
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000469 .type = enable_option,
470 .name = "CRC Stripping",
Bruce Allane9262442010-11-24 06:02:06 +0000471 .err = "defaulting to Enabled",
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000472 .def = OPTION_ENABLED
473 };
474
475 if (num_CrcStripping > bd) {
476 unsigned int crc_stripping = CrcStripping[bd];
477 e1000_validate_option(&crc_stripping, &opt, adapter);
Ben Greear01840392012-02-11 15:39:25 +0000478 if (crc_stripping == OPTION_ENABLED) {
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000479 adapter->flags2 |= FLAG2_CRC_STRIPPING;
Ben Greear01840392012-02-11 15:39:25 +0000480 adapter->flags2 |= FLAG2_DFLT_CRC_STRIPPING;
481 }
Bruce Allan6e50912a2009-06-02 11:28:01 +0000482 } else {
483 adapter->flags2 |= FLAG2_CRC_STRIPPING;
Ben Greear01840392012-02-11 15:39:25 +0000484 adapter->flags2 |= FLAG2_DFLT_CRC_STRIPPING;
Jeff Kirshereb7c3ad2008-11-14 06:45:23 +0000485 }
486 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000487 /* Kumeran Lock Loss Workaround */
488 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000489 static const struct e1000_option opt = {
Auke Kokbc7f75f2007-09-17 12:30:59 -0700490 .type = enable_option,
491 .name = "Kumeran Lock Loss Workaround",
492 .err = "defaulting to Enabled",
493 .def = OPTION_ENABLED
494 };
Bruce Allan17e813e2013-02-20 04:06:01 +0000495 bool enabled = opt.def;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700496
497 if (num_KumeranLockLoss > bd) {
Stephen Hemminger5a9147b2007-10-29 10:46:05 -0700498 unsigned int kmrn_lock_loss = KumeranLockLoss[bd];
Auke Kokbc7f75f2007-09-17 12:30:59 -0700499 e1000_validate_option(&kmrn_lock_loss, &opt, adapter);
Bruce Allan17e813e2013-02-20 04:06:01 +0000500 enabled = kmrn_lock_loss;
Auke Kokbc7f75f2007-09-17 12:30:59 -0700501 }
Bruce Allan17e813e2013-02-20 04:06:01 +0000502
503 if (hw->mac.type == e1000_ich8lan)
504 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw,
505 enabled);
Auke Kokbc7f75f2007-09-17 12:30:59 -0700506 }
Bruce Allan33550ce2013-02-20 04:06:16 +0000507 /* Write-protect NVM */
508 {
Jesse Brandeburg6f59d662010-04-09 10:51:09 +0000509 static const struct e1000_option opt = {
Bruce Allan4a770352008-10-01 17:18:35 -0700510 .type = enable_option,
511 .name = "Write-protect NVM",
512 .err = "defaulting to Enabled",
513 .def = OPTION_ENABLED
514 };
515
516 if (adapter->flags & FLAG_IS_ICH) {
517 if (num_WriteProtectNVM > bd) {
Bruce Allanc29c3ba2013-02-20 04:05:50 +0000518 unsigned int write_protect_nvm =
519 WriteProtectNVM[bd];
Bruce Allan4a770352008-10-01 17:18:35 -0700520 e1000_validate_option(&write_protect_nvm, &opt,
521 adapter);
522 if (write_protect_nvm)
523 adapter->flags |= FLAG_READ_ONLY_NVM;
524 } else {
525 if (opt.def)
526 adapter->flags |= FLAG_READ_ONLY_NVM;
527 }
528 }
529 }
Auke Kokbc7f75f2007-09-17 12:30:59 -0700530}