Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #
  2. # WIZnet devices configuration
  3. #
  4. config NET_VENDOR_WIZNET
  5. bool "WIZnet devices"
  6. default y
  7. ---help---
  8. If you have a network (Ethernet) card belonging to this class, say Y
  9. and read the Ethernet-HOWTO, available from
  10. <http://www.tldp.org/docs.html#howto>.
  11. Note that the answer to this question doesn't directly affect the
  12. kernel: saying N will just cause the configurator to skip all
  13. the questions about WIZnet devices. If you say Y, you will be asked
  14. for your specific card in the following questions.
  15. if NET_VENDOR_WIZNET
  16. config WIZNET_W5100
  17. tristate "WIZnet W5100 Ethernet support"
  18. ---help---
  19. Support for WIZnet W5100 chips.
  20. W5100 is a single chip with integrated 10/100 Ethernet MAC,
  21. PHY and hardware TCP/IP stack, but this driver is limited to
  22. the MAC and PHY functions only, onchip TCP/IP is unused.
  23. To compile this driver as a module, choose M here: the module
  24. will be called w5100.
  25. config WIZNET_W5300
  26. tristate "WIZnet W5300 Ethernet support"
  27. ---help---
  28. Support for WIZnet W5300 chips.
  29. W5300 is a single chip with integrated 10/100 Ethernet MAC,
  30. PHY and hardware TCP/IP stack, but this driver is limited to
  31. the MAC and PHY functions only, onchip TCP/IP is unused.
  32. To compile this driver as a module, choose M here: the module
  33. will be called w5300.
  34. choice
  35. prompt "WIZnet interface mode"
  36. default WIZNET_BUS_ANY
  37. config WIZNET_BUS_DIRECT
  38. bool "Direct address bus mode"
  39. ---help---
  40. In direct address mode host system can directly access all registers
  41. after mapping to Memory-Mapped I/O space.
  42. config 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. config WIZNET_BUS_ANY
  49. bool "Select interface mode in runtime"
  50. ---help---
  51. If interface mode is unknown in compile time, it can be selected
  52. in runtime from board/platform resources configuration.
  53. Performance may decrease compared to explicitly selected bus mode.
  54. endchoice
  55. config WIZNET_TX_FLOW
  56. bool "Use transmit flow control"
  57. default y
  58. help
  59. This enables transmit flow control for WIZnet chips.
  60. If unsure, say Y.
  61. endif # NET_VENDOR_WIZNET