x86: improve UP kernel when CPU-hotplug and SMP is enabled
[linux/fpc-iii.git] / drivers / net / e1000e / param.c
blobd91dbf7ba4341665c403fe9491f81355098db80d
1 /*******************************************************************************
3 Intel PRO/1000 Linux driver
4 Copyright(c) 1999 - 2008 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 <linux/netdevice.h>
30 #include <linux/pci.h>
32 #include "e1000.h"
35 * This is the only thing that needs to be changed to adjust the
36 * maximum number of ports that the driver can manage.
39 #define E1000_MAX_NIC 32
41 #define OPTION_UNSET -1
42 #define OPTION_DISABLED 0
43 #define OPTION_ENABLED 1
45 #define COPYBREAK_DEFAULT 256
46 unsigned int copybreak = COPYBREAK_DEFAULT;
47 module_param(copybreak, uint, 0644);
48 MODULE_PARM_DESC(copybreak,
49 "Maximum size of packet that is copied to a new buffer on receive");
52 * All parameters are treated the same, as an integer array of values.
53 * This macro just reduces the need to repeat the same declaration code
54 * over and over (plus this helps to avoid typo bugs).
57 #define E1000_PARAM_INIT { [0 ... E1000_MAX_NIC] = OPTION_UNSET }
58 #define E1000_PARAM(X, desc) \
59 static int __devinitdata X[E1000_MAX_NIC+1] \
60 = E1000_PARAM_INIT; \
61 static unsigned int num_##X; \
62 module_param_array_named(X, X, int, &num_##X, 0); \
63 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
75 #define MIN_TXDELAY 0
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 DEFAULT_RDTR 0
95 #define MAX_RXDELAY 0xFFFF
96 #define MIN_RXDELAY 0
99 * Receive Absolute Interrupt Delay in units of 1.024 microseconds
101 * Valid Range: 0-65535
103 E1000_PARAM(RxAbsIntDelay, "Receive Absolute Interrupt Delay");
104 #define DEFAULT_RADV 8
105 #define MAX_RXABSDELAY 0xFFFF
106 #define MIN_RXABSDELAY 0
109 * Interrupt Throttle Rate (interrupts/sec)
111 * Valid Range: 100-100000 (0=off, 1=dynamic, 3=dynamic conservative)
113 E1000_PARAM(InterruptThrottleRate, "Interrupt Throttling Rate");
114 #define DEFAULT_ITR 3
115 #define MAX_ITR 100000
116 #define MIN_ITR 100
119 * Enable Smart Power Down of the PHY
121 * Valid Range: 0, 1
123 * Default Value: 0 (disabled)
125 E1000_PARAM(SmartPowerDownEnable, "Enable PHY smart power down");
128 * Enable Kumeran Lock Loss workaround
130 * Valid Range: 0, 1
132 * Default Value: 1 (enabled)
134 E1000_PARAM(KumeranLockLoss, "Enable Kumeran lock loss workaround");
137 * Write Protect NVM
139 * Valid Range: 0, 1
141 * Default Value: 1 (enabled)
143 E1000_PARAM(WriteProtectNVM, "Write-protect NVM [WARNING: disabling this can lead to corrupted NVM]");
145 struct e1000_option {
146 enum { enable_option, range_option, list_option } type;
147 const char *name;
148 const char *err;
149 int def;
150 union {
151 struct { /* range_option info */
152 int min;
153 int max;
154 } r;
155 struct { /* list_option info */
156 int nr;
157 struct e1000_opt_list { int i; char *str; } *p;
158 } l;
159 } arg;
162 static int __devinit e1000_validate_option(unsigned int *value,
163 const struct e1000_option *opt,
164 struct e1000_adapter *adapter)
166 if (*value == OPTION_UNSET) {
167 *value = opt->def;
168 return 0;
171 switch (opt->type) {
172 case enable_option:
173 switch (*value) {
174 case OPTION_ENABLED:
175 e_info("%s Enabled\n", opt->name);
176 return 0;
177 case OPTION_DISABLED:
178 e_info("%s Disabled\n", opt->name);
179 return 0;
181 break;
182 case range_option:
183 if (*value >= opt->arg.r.min && *value <= opt->arg.r.max) {
184 e_info("%s set to %i\n", opt->name, *value);
185 return 0;
187 break;
188 case list_option: {
189 int i;
190 struct e1000_opt_list *ent;
192 for (i = 0; i < opt->arg.l.nr; i++) {
193 ent = &opt->arg.l.p[i];
194 if (*value == ent->i) {
195 if (ent->str[0] != '\0')
196 e_info("%s\n", ent->str);
197 return 0;
201 break;
202 default:
203 BUG();
206 e_info("Invalid %s value specified (%i) %s\n", opt->name, *value,
207 opt->err);
208 *value = opt->def;
209 return -1;
213 * e1000e_check_options - Range Checking for Command Line Parameters
214 * @adapter: board private structure
216 * This routine checks all command line parameters for valid user
217 * input. If an invalid value is given, or if no user specified
218 * value exists, a default value is used. The final value is stored
219 * in a variable in the adapter structure.
221 void __devinit e1000e_check_options(struct e1000_adapter *adapter)
223 struct e1000_hw *hw = &adapter->hw;
224 int bd = adapter->bd_number;
226 if (bd >= E1000_MAX_NIC) {
227 e_notice("Warning: no configuration for board #%i\n", bd);
228 e_notice("Using defaults for all values\n");
231 { /* Transmit Interrupt Delay */
232 const struct e1000_option opt = {
233 .type = range_option,
234 .name = "Transmit Interrupt Delay",
235 .err = "using default of "
236 __MODULE_STRING(DEFAULT_TIDV),
237 .def = DEFAULT_TIDV,
238 .arg = { .r = { .min = MIN_TXDELAY,
239 .max = MAX_TXDELAY } }
242 if (num_TxIntDelay > bd) {
243 adapter->tx_int_delay = TxIntDelay[bd];
244 e1000_validate_option(&adapter->tx_int_delay, &opt,
245 adapter);
246 } else {
247 adapter->tx_int_delay = opt.def;
250 { /* Transmit Absolute Interrupt Delay */
251 const struct e1000_option opt = {
252 .type = range_option,
253 .name = "Transmit Absolute Interrupt Delay",
254 .err = "using default of "
255 __MODULE_STRING(DEFAULT_TADV),
256 .def = DEFAULT_TADV,
257 .arg = { .r = { .min = MIN_TXABSDELAY,
258 .max = MAX_TXABSDELAY } }
261 if (num_TxAbsIntDelay > bd) {
262 adapter->tx_abs_int_delay = TxAbsIntDelay[bd];
263 e1000_validate_option(&adapter->tx_abs_int_delay, &opt,
264 adapter);
265 } else {
266 adapter->tx_abs_int_delay = opt.def;
269 { /* Receive Interrupt Delay */
270 struct e1000_option opt = {
271 .type = range_option,
272 .name = "Receive Interrupt Delay",
273 .err = "using default of "
274 __MODULE_STRING(DEFAULT_RDTR),
275 .def = DEFAULT_RDTR,
276 .arg = { .r = { .min = MIN_RXDELAY,
277 .max = MAX_RXDELAY } }
280 if (num_RxIntDelay > bd) {
281 adapter->rx_int_delay = RxIntDelay[bd];
282 e1000_validate_option(&adapter->rx_int_delay, &opt,
283 adapter);
284 } else {
285 adapter->rx_int_delay = opt.def;
288 { /* Receive Absolute Interrupt Delay */
289 const struct e1000_option opt = {
290 .type = range_option,
291 .name = "Receive Absolute Interrupt Delay",
292 .err = "using default of "
293 __MODULE_STRING(DEFAULT_RADV),
294 .def = DEFAULT_RADV,
295 .arg = { .r = { .min = MIN_RXABSDELAY,
296 .max = MAX_RXABSDELAY } }
299 if (num_RxAbsIntDelay > bd) {
300 adapter->rx_abs_int_delay = RxAbsIntDelay[bd];
301 e1000_validate_option(&adapter->rx_abs_int_delay, &opt,
302 adapter);
303 } else {
304 adapter->rx_abs_int_delay = opt.def;
307 { /* Interrupt Throttling Rate */
308 const struct e1000_option opt = {
309 .type = range_option,
310 .name = "Interrupt Throttling Rate (ints/sec)",
311 .err = "using default of "
312 __MODULE_STRING(DEFAULT_ITR),
313 .def = DEFAULT_ITR,
314 .arg = { .r = { .min = MIN_ITR,
315 .max = MAX_ITR } }
318 if (num_InterruptThrottleRate > bd) {
319 adapter->itr = InterruptThrottleRate[bd];
320 switch (adapter->itr) {
321 case 0:
322 e_info("%s turned off\n", opt.name);
323 break;
324 case 1:
325 e_info("%s set to dynamic mode\n", opt.name);
326 adapter->itr_setting = adapter->itr;
327 adapter->itr = 20000;
328 break;
329 case 3:
330 e_info("%s set to dynamic conservative mode\n",
331 opt.name);
332 adapter->itr_setting = adapter->itr;
333 adapter->itr = 20000;
334 break;
335 default:
337 * Save the setting, because the dynamic bits
338 * change itr.
340 if (e1000_validate_option(&adapter->itr, &opt,
341 adapter) &&
342 (adapter->itr == 3)) {
344 * In case of invalid user value,
345 * default to conservative mode.
347 adapter->itr_setting = adapter->itr;
348 adapter->itr = 20000;
349 } else {
351 * Clear the lower two bits because
352 * they are used as control.
354 adapter->itr_setting =
355 adapter->itr & ~3;
357 break;
359 } else {
360 adapter->itr_setting = opt.def;
361 adapter->itr = 20000;
364 { /* Smart Power Down */
365 const struct e1000_option opt = {
366 .type = enable_option,
367 .name = "PHY Smart Power Down",
368 .err = "defaulting to Disabled",
369 .def = OPTION_DISABLED
372 if (num_SmartPowerDownEnable > bd) {
373 unsigned int spd = SmartPowerDownEnable[bd];
374 e1000_validate_option(&spd, &opt, adapter);
375 if ((adapter->flags & FLAG_HAS_SMART_POWER_DOWN)
376 && spd)
377 adapter->flags |= FLAG_SMART_POWER_DOWN;
380 { /* Kumeran Lock Loss Workaround */
381 const struct e1000_option opt = {
382 .type = enable_option,
383 .name = "Kumeran Lock Loss Workaround",
384 .err = "defaulting to Enabled",
385 .def = OPTION_ENABLED
388 if (num_KumeranLockLoss > bd) {
389 unsigned int kmrn_lock_loss = KumeranLockLoss[bd];
390 e1000_validate_option(&kmrn_lock_loss, &opt, adapter);
391 if (hw->mac.type == e1000_ich8lan)
392 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw,
393 kmrn_lock_loss);
394 } else {
395 if (hw->mac.type == e1000_ich8lan)
396 e1000e_set_kmrn_lock_loss_workaround_ich8lan(hw,
397 opt.def);
400 { /* Write-protect NVM */
401 const struct e1000_option opt = {
402 .type = enable_option,
403 .name = "Write-protect NVM",
404 .err = "defaulting to Enabled",
405 .def = OPTION_ENABLED
408 if (adapter->flags & FLAG_IS_ICH) {
409 if (num_WriteProtectNVM > bd) {
410 unsigned int write_protect_nvm = WriteProtectNVM[bd];
411 e1000_validate_option(&write_protect_nvm, &opt,
412 adapter);
413 if (write_protect_nvm)
414 adapter->flags |= FLAG_READ_ONLY_NVM;
415 } else {
416 if (opt.def)
417 adapter->flags |= FLAG_READ_ONLY_NVM;