1#
2# WIZnet devices configuration
3#
4
5config NET_VENDOR_WIZNET
6	bool "WIZnet devices"
7	default y
8	---help---
9	  If you have a network (Ethernet) card belonging to this class, say Y
10	  and read the Ethernet-HOWTO, available from
11	  <http://www.tldp.org/docs.html#howto>.
12
13	  Note that the answer to this question doesn't directly affect the
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_W5300
21	tristate "WIZnet W5300 Ethernet support"
22	---help---
23	  Support for WIZnet W5300 chips.
24
25	  W5300 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 w5300.
31
32choice
33	prompt "WIZnet interface mode"
34	default WIZNET_BUS_ANY
35
36config WIZNET_BUS_DIRECT
37	bool "Direct address bus mode"
38	---help---
39	  In direct address mode host system can directly access all registers
40	  after mapping to Memory-Mapped I/O space.
41
42config WIZNET_BUS_INDIRECT
43	bool "Indirect address bus mode"
44	---help---
45	  In indirect address mode host system indirectly accesses registers
46	  using Indirect Mode Address Register and Indirect Mode Data Register,
47	  which are directly mapped to Memory-Mapped I/O space.
48
49config WIZNET_BUS_ANY
50	bool "Select interface mode in runtime"
51	---help---
52	  If interface mode is unknown in compile time, it can be selected
53	  in runtime from board/platform resources configuration.
54
55	  Performance may decrease compared to explicitly selected bus mode.
56endchoice
57
58config WIZNET_TX_FLOW
59	bool "Use transmit flow control"
60	default y
61	help
62	  This enables transmit flow control for WIZnet chips.
63	  If unsure, say Y.
64
65endif # NET_VENDOR_WIZNET
66