Lines Matching +full:0 +full:- +full:100
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright(c) 1999 - 2006 Intel Corporation. */
12 #define OPTION_UNSET -1
13 #define OPTION_DISABLED 0
21 #define E1000_PARAM_INIT { [0 ... E1000_MAX_NIC] = OPTION_UNSET }
25 module_param_array_named(X, X, int, &num_##X, 0); \
30 * Valid Range: 80-256 for 82542 and 82543 gigabit ethernet controllers
31 * Valid Range: 80-4096 for 82544 and newer
39 * Valid Range: 80-256 for 82542 and 82543 gigabit ethernet controllers
40 * Valid Range: 80-4096 for 82544 and newer
48 * Valid Range: 0, 10, 100, 1000
49 * - 0 - auto-negotiate at all supported speeds
50 * - 10 - only link at 10 Mbps
51 * - 100 - only link at 100 Mbps
52 * - 1000 - only link at 1000 Mbps
54 * Default Value: 0
60 * Valid Range: 0-2
61 * - 0 - auto-negotiate for duplex
62 * - 1 - only link at half duplex
63 * - 2 - only link at full duplex
65 * Default Value: 0
69 /* Auto-negotiation Advertisement Override
71 * Valid Range: 0x01-0x0F, 0x20-0x2F (copper); 0x20 (fiber)
74 * combinations should be advertised during auto-negotiation.
77 * Bit 7 6 5 4 3 2 1 0
78 * Speed (Mbps) N/A N/A 1000 N/A 100 100 10 10
81 * Default Value: 0x2F (copper); 0x20 (fiber)
83 E1000_PARAM(AutoNeg, "Advertised auto-negotiation setting");
84 #define AUTONEG_ADV_DEFAULT 0x2F
88 * Valid Range: 0-3
89 * - 0 - No Flow Control
90 * - 1 - Rx only, respond to PAUSE frames but do not generate them
91 * - 2 - Tx only, generate PAUSE frames but ignore them on receive
92 * - 3 - Full Flow Control Support
98 /* XsumRX - Receive Checksum Offload Enable/Disable
100 * Valid Range: 0, 1
101 * - 0 - disables all checksum offload
102 * - 1 - enables receive IP/TCP/UDP checksum offload
103 * on 82543 and newer -based NICs
112 * Valid Range: 0-65535
116 #define MAX_TXDELAY 0xFFFF
117 #define MIN_TXDELAY 0
121 * Valid Range: 0-65535
125 #define MAX_TXABSDELAY 0xFFFF
126 #define MIN_TXABSDELAY 0
131 * Valid Range: 0-65535
134 #define DEFAULT_RDTR 0
135 #define MAX_RXDELAY 0xFFFF
136 #define MIN_RXDELAY 0
140 * Valid Range: 0-65535
144 #define MAX_RXABSDELAY 0xFFFF
145 #define MIN_RXABSDELAY 0
149 * Valid Range: 100-100000 (0=off, 1=dynamic, 3=dynamic conservative)
154 #define MIN_ITR 100
158 * Valid Range: 0, 1
160 * Default Value: 0 (disabled)
186 *value = opt->def; in e1000_validate_option()
187 return 0; in e1000_validate_option()
190 switch (opt->type) { in e1000_validate_option()
194 e_dev_info("%s Enabled\n", opt->name); in e1000_validate_option()
195 return 0; in e1000_validate_option()
197 e_dev_info("%s Disabled\n", opt->name); in e1000_validate_option()
198 return 0; in e1000_validate_option()
202 if (*value >= opt->arg.r.min && *value <= opt->arg.r.max) { in e1000_validate_option()
203 e_dev_info("%s set to %i\n", opt->name, *value); in e1000_validate_option()
204 return 0; in e1000_validate_option()
211 for (i = 0; i < opt->arg.l.nr; i++) { in e1000_validate_option()
212 ent = &opt->arg.l.p[i]; in e1000_validate_option()
213 if (*value == ent->i) { in e1000_validate_option()
214 if (ent->str[0] != '\0') in e1000_validate_option()
215 e_dev_info("%s\n", ent->str); in e1000_validate_option()
216 return 0; in e1000_validate_option()
226 opt->name, *value, opt->err); in e1000_validate_option()
227 *value = opt->def; in e1000_validate_option()
228 return -1; in e1000_validate_option()
235 * e1000_check_options - Range Checking for Command Line Parameters
246 int bd = adapter->bd_number; in e1000_check_options()
254 struct e1000_tx_ring *tx_ring = adapter->tx_ring; in e1000_check_options()
256 e1000_mac_type mac_type = adapter->hw.mac_type; in e1000_check_options()
271 tx_ring->count = TxDescriptors[bd]; in e1000_check_options()
272 e1000_validate_option(&tx_ring->count, &opt, adapter); in e1000_check_options()
273 tx_ring->count = ALIGN(tx_ring->count, in e1000_check_options()
276 tx_ring->count = opt.def; in e1000_check_options()
278 for (i = 0; i < adapter->num_tx_queues; i++) in e1000_check_options()
279 tx_ring[i].count = tx_ring->count; in e1000_check_options()
282 struct e1000_rx_ring *rx_ring = adapter->rx_ring; in e1000_check_options()
284 e1000_mac_type mac_type = adapter->hw.mac_type; in e1000_check_options()
300 rx_ring->count = RxDescriptors[bd]; in e1000_check_options()
301 e1000_validate_option(&rx_ring->count, &opt, adapter); in e1000_check_options()
302 rx_ring->count = ALIGN(rx_ring->count, in e1000_check_options()
305 rx_ring->count = opt.def; in e1000_check_options()
307 for (i = 0; i < adapter->num_rx_queues; i++) in e1000_check_options()
308 rx_ring[i].count = rx_ring->count; in e1000_check_options()
321 adapter->rx_csum = rx_csum; in e1000_check_options()
323 adapter->rx_csum = opt.def; in e1000_check_options()
348 adapter->hw.fc = adapter->hw.original_fc = fc; in e1000_check_options()
350 adapter->hw.fc = adapter->hw.original_fc = opt.def; in e1000_check_options()
364 adapter->tx_int_delay = TxIntDelay[bd]; in e1000_check_options()
365 e1000_validate_option(&adapter->tx_int_delay, &opt, in e1000_check_options()
368 adapter->tx_int_delay = opt.def; in e1000_check_options()
382 adapter->tx_abs_int_delay = TxAbsIntDelay[bd]; in e1000_check_options()
383 e1000_validate_option(&adapter->tx_abs_int_delay, &opt, in e1000_check_options()
386 adapter->tx_abs_int_delay = opt.def; in e1000_check_options()
400 adapter->rx_int_delay = RxIntDelay[bd]; in e1000_check_options()
401 e1000_validate_option(&adapter->rx_int_delay, &opt, in e1000_check_options()
404 adapter->rx_int_delay = opt.def; in e1000_check_options()
418 adapter->rx_abs_int_delay = RxAbsIntDelay[bd]; in e1000_check_options()
419 e1000_validate_option(&adapter->rx_abs_int_delay, &opt, in e1000_check_options()
422 adapter->rx_abs_int_delay = opt.def; in e1000_check_options()
436 adapter->itr = InterruptThrottleRate[bd]; in e1000_check_options()
437 switch (adapter->itr) { in e1000_check_options()
438 case 0: in e1000_check_options()
444 adapter->itr_setting = adapter->itr; in e1000_check_options()
445 adapter->itr = 20000; in e1000_check_options()
450 adapter->itr_setting = adapter->itr; in e1000_check_options()
451 adapter->itr = 20000; in e1000_check_options()
455 "(2000-8000) ints mode\n", opt.name); in e1000_check_options()
456 adapter->itr_setting = adapter->itr; in e1000_check_options()
459 e1000_validate_option(&adapter->itr, &opt, in e1000_check_options()
466 adapter->itr_setting = adapter->itr & ~3; in e1000_check_options()
470 adapter->itr_setting = opt.def; in e1000_check_options()
471 adapter->itr = 20000; in e1000_check_options()
485 adapter->smart_power_down = spd; in e1000_check_options()
487 adapter->smart_power_down = opt.def; in e1000_check_options()
491 switch (adapter->hw.media_type) { in e1000_check_options()
505 * e1000_check_fiber_options - Range Checking for Link Options, Fiber Version
512 int bd = adapter->bd_number; in e1000_check_fiber_options()
523 if ((num_AutoNeg > bd) && (AutoNeg[bd] != 0x20)) { in e1000_check_fiber_options()
530 * e1000_check_copper_options - Range Checking for Link Options, Copper Version
539 int bd = adapter->bd_number; in e1000_check_copper_options()
543 { 0, "" }, in e1000_check_copper_options()
552 .def = 0, in e1000_check_copper_options()
566 { 0, "" }, in e1000_check_copper_options()
574 .def = 0, in e1000_check_copper_options()
587 if ((num_AutoNeg > bd) && (speed != 0 || dplx != 0)) { in e1000_check_copper_options()
590 adapter->hw.autoneg_advertised = AUTONEG_ADV_DEFAULT; in e1000_check_copper_options()
594 {{ 0x01, AA "10/HD" }, in e1000_check_copper_options()
595 { 0x02, AA "10/FD" }, in e1000_check_copper_options()
596 { 0x03, AA "10/FD, 10/HD" }, in e1000_check_copper_options()
597 { 0x04, AA "100/HD" }, in e1000_check_copper_options()
598 { 0x05, AA "100/HD, 10/HD" }, in e1000_check_copper_options()
599 { 0x06, AA "100/HD, 10/FD" }, in e1000_check_copper_options()
600 { 0x07, AA "100/HD, 10/FD, 10/HD" }, in e1000_check_copper_options()
601 { 0x08, AA "100/FD" }, in e1000_check_copper_options()
602 { 0x09, AA "100/FD, 10/HD" }, in e1000_check_copper_options()
603 { 0x0a, AA "100/FD, 10/FD" }, in e1000_check_copper_options()
604 { 0x0b, AA "100/FD, 10/FD, 10/HD" }, in e1000_check_copper_options()
605 { 0x0c, AA "100/FD, 100/HD" }, in e1000_check_copper_options()
606 { 0x0d, AA "100/FD, 100/HD, 10/HD" }, in e1000_check_copper_options()
607 { 0x0e, AA "100/FD, 100/HD, 10/FD" }, in e1000_check_copper_options()
608 { 0x0f, AA "100/FD, 100/HD, 10/FD, 10/HD" }, in e1000_check_copper_options()
609 { 0x20, AA "1000/FD" }, in e1000_check_copper_options()
610 { 0x21, AA "1000/FD, 10/HD" }, in e1000_check_copper_options()
611 { 0x22, AA "1000/FD, 10/FD" }, in e1000_check_copper_options()
612 { 0x23, AA "1000/FD, 10/FD, 10/HD" }, in e1000_check_copper_options()
613 { 0x24, AA "1000/FD, 100/HD" }, in e1000_check_copper_options()
614 { 0x25, AA "1000/FD, 100/HD, 10/HD" }, in e1000_check_copper_options()
615 { 0x26, AA "1000/FD, 100/HD, 10/FD" }, in e1000_check_copper_options()
616 { 0x27, AA "1000/FD, 100/HD, 10/FD, 10/HD" }, in e1000_check_copper_options()
617 { 0x28, AA "1000/FD, 100/FD" }, in e1000_check_copper_options()
618 { 0x29, AA "1000/FD, 100/FD, 10/HD" }, in e1000_check_copper_options()
619 { 0x2a, AA "1000/FD, 100/FD, 10/FD" }, in e1000_check_copper_options()
620 { 0x2b, AA "1000/FD, 100/FD, 10/FD, 10/HD" }, in e1000_check_copper_options()
621 { 0x2c, AA "1000/FD, 100/FD, 100/HD" }, in e1000_check_copper_options()
622 { 0x2d, AA "1000/FD, 100/FD, 100/HD, 10/HD" }, in e1000_check_copper_options()
623 { 0x2e, AA "1000/FD, 100/FD, 100/HD, 10/FD" }, in e1000_check_copper_options()
624 { 0x2f, AA "1000/FD, 100/FD, 100/HD, 10/FD, 10/HD" }}; in e1000_check_copper_options()
641 adapter->hw.autoneg_advertised = an; in e1000_check_copper_options()
645 case 0: in e1000_check_copper_options()
646 adapter->hw.autoneg = adapter->fc_autoneg = 1; in e1000_check_copper_options()
647 if ((num_Speed > bd) && (speed != 0 || dplx != 0)) in e1000_check_copper_options()
654 adapter->hw.autoneg = adapter->fc_autoneg = 1; in e1000_check_copper_options()
655 adapter->hw.autoneg_advertised = ADVERTISE_10_HALF | in e1000_check_copper_options()
661 adapter->hw.autoneg = adapter->fc_autoneg = 1; in e1000_check_copper_options()
662 adapter->hw.autoneg_advertised = ADVERTISE_10_FULL | in e1000_check_copper_options()
669 adapter->hw.autoneg = adapter->fc_autoneg = 1; in e1000_check_copper_options()
670 adapter->hw.autoneg_advertised = ADVERTISE_10_HALF | in e1000_check_copper_options()
675 adapter->hw.autoneg = adapter->fc_autoneg = 0; in e1000_check_copper_options()
676 adapter->hw.forced_speed_duplex = e1000_10_half; in e1000_check_copper_options()
677 adapter->hw.autoneg_advertised = 0; in e1000_check_copper_options()
681 adapter->hw.autoneg = adapter->fc_autoneg = 0; in e1000_check_copper_options()
682 adapter->hw.forced_speed_duplex = e1000_10_full; in e1000_check_copper_options()
683 adapter->hw.autoneg_advertised = 0; in e1000_check_copper_options()
686 e_dev_info("100 Mbps Speed specified without Duplex\n"); in e1000_check_copper_options()
687 e_dev_info("Using Autonegotiation at 100 Mbps only\n"); in e1000_check_copper_options()
688 adapter->hw.autoneg = adapter->fc_autoneg = 1; in e1000_check_copper_options()
689 adapter->hw.autoneg_advertised = ADVERTISE_100_HALF | in e1000_check_copper_options()
693 e_dev_info("Forcing to 100 Mbps Half Duplex\n"); in e1000_check_copper_options()
694 adapter->hw.autoneg = adapter->fc_autoneg = 0; in e1000_check_copper_options()
695 adapter->hw.forced_speed_duplex = e1000_100_half; in e1000_check_copper_options()
696 adapter->hw.autoneg_advertised = 0; in e1000_check_copper_options()
699 e_dev_info("Forcing to 100 Mbps Full Duplex\n"); in e1000_check_copper_options()
700 adapter->hw.autoneg = adapter->fc_autoneg = 0; in e1000_check_copper_options()
701 adapter->hw.forced_speed_duplex = e1000_100_full; in e1000_check_copper_options()
702 adapter->hw.autoneg_advertised = 0; in e1000_check_copper_options()
714 adapter->hw.autoneg = adapter->fc_autoneg = 1; in e1000_check_copper_options()
715 adapter->hw.autoneg_advertised = ADVERTISE_1000_FULL; in e1000_check_copper_options()
721 /* Speed, AutoNeg and MDI/MDI-X must all play nice */ in e1000_check_copper_options()
722 if (e1000_validate_mdi_setting(&(adapter->hw)) < 0) { in e1000_check_copper_options()
723 e_dev_info("Speed, AutoNeg and MDI-X specs are incompatible. " in e1000_check_copper_options()
724 "Setting MDI-X to a compatible value.\n"); in e1000_check_copper_options()