Kconfig (8b1467a31343ade557489aff2bf4c2be44ca2725) Kconfig (32ed53b83ea5ec26a4dba90e18f5e0ff6c71eb48)
1#
2# WIZnet devices configuration
3#
4
5config NET_VENDOR_WIZNET
6 bool "WIZnet devices"
7 default y
8 ---help---

--- 5 unchanged lines hidden (view full) ---

14 kernel: saying N will just cause the configurator to skip all
15 the questions about WIZnet devices. If you say Y, you will be asked
16 for your specific card in the following questions.
17
18if NET_VENDOR_WIZNET
19
20config WIZNET_W5100
21 tristate "WIZnet W5100 Ethernet support"
1#
2# WIZnet devices configuration
3#
4
5config NET_VENDOR_WIZNET
6 bool "WIZnet devices"
7 default y
8 ---help---

--- 5 unchanged lines hidden (view full) ---

14 kernel: saying N will just cause the configurator to skip all
15 the questions about WIZnet devices. If you say Y, you will be asked
16 for your specific card in the following questions.
17
18if NET_VENDOR_WIZNET
19
20config WIZNET_W5100
21 tristate "WIZnet W5100 Ethernet support"
22 depends on HAS_IOMEM
22 ---help---
23 Support for WIZnet W5100 chips.
24
25 W5100 is a single chip with integrated 10/100 Ethernet MAC,
26 PHY and hardware TCP/IP stack, but this driver is limited to
27 the MAC and PHY functions only, onchip TCP/IP is unused.
28
29 To compile this driver as a module, choose M here: the module
30 will be called w5100.
31
32config WIZNET_W5300
33 tristate "WIZnet W5300 Ethernet support"
23 ---help---
24 Support for WIZnet W5100 chips.
25
26 W5100 is a single chip with integrated 10/100 Ethernet MAC,
27 PHY and hardware TCP/IP stack, but this driver is limited to
28 the MAC and PHY functions only, onchip TCP/IP is unused.
29
30 To compile this driver as a module, choose M here: the module
31 will be called w5100.
32
33config WIZNET_W5300
34 tristate "WIZnet W5300 Ethernet support"
35 depends on HAS_IOMEM
34 ---help---
35 Support for WIZnet W5300 chips.
36
37 W5300 is a single chip with integrated 10/100 Ethernet MAC,
38 PHY and hardware TCP/IP stack, but this driver is limited to
39 the MAC and PHY functions only, onchip TCP/IP is unused.
40
41 To compile this driver as a module, choose M here: the module
42 will be called w5300.
43
44choice
45 prompt "WIZnet interface mode"
36 ---help---
37 Support for WIZnet W5300 chips.
38
39 W5300 is a single chip with integrated 10/100 Ethernet MAC,
40 PHY and hardware TCP/IP stack, but this driver is limited to
41 the MAC and PHY functions only, onchip TCP/IP is unused.
42
43 To compile this driver as a module, choose M here: the module
44 will be called w5300.
45
46choice
47 prompt "WIZnet interface mode"
48 depends on WIZNET_W5100 || WIZNET_W5300
46 default WIZNET_BUS_ANY
47
48config WIZNET_BUS_DIRECT
49 bool "Direct address bus mode"
50 ---help---
51 In direct address mode host system can directly access all registers
52 after mapping to Memory-Mapped I/O space.
53

--- 10 unchanged lines hidden (view full) ---

64 If interface mode is unknown in compile time, it can be selected
65 in runtime from board/platform resources configuration.
66
67 Performance may decrease compared to explicitly selected bus mode.
68endchoice
69
70config WIZNET_TX_FLOW
71 bool "Use transmit flow control"
49 default WIZNET_BUS_ANY
50
51config WIZNET_BUS_DIRECT
52 bool "Direct address bus mode"
53 ---help---
54 In direct address mode host system can directly access all registers
55 after mapping to Memory-Mapped I/O space.
56

--- 10 unchanged lines hidden (view full) ---

67 If interface mode is unknown in compile time, it can be selected
68 in runtime from board/platform resources configuration.
69
70 Performance may decrease compared to explicitly selected bus mode.
71endchoice
72
73config WIZNET_TX_FLOW
74 bool "Use transmit flow control"
75 depends on WIZNET_W5100 || WIZNET_W5300
72 default y
73 help
74 This enables transmit flow control for WIZnet chips.
75 If unsure, say Y.
76
77endif # NET_VENDOR_WIZNET
76 default y
77 help
78 This enables transmit flow control for WIZnet chips.
79 If unsure, say Y.
80
81endif # NET_VENDOR_WIZNET