Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_W5300
  17. tristate "WIZnet W5300 Ethernet support"
  18. ---help---
  19. Support for WIZnet W5300 chips.
  20. W5300 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 w5300.
  25. choice
  26. prompt "WIZnet interface mode"
  27. default WIZNET_BUS_ANY
  28. config WIZNET_BUS_DIRECT
  29. bool "Direct address bus mode"
  30. ---help---
  31. In direct address mode host system can directly access all registers
  32. after mapping to Memory-Mapped I/O space.
  33. config WIZNET_BUS_INDIRECT
  34. bool "Indirect address bus mode"
  35. ---help---
  36. In indirect address mode host system indirectly accesses registers
  37. using Indirect Mode Address Register and Indirect Mode Data Register,
  38. which are directly mapped to Memory-Mapped I/O space.
  39. config WIZNET_BUS_ANY
  40. bool "Select interface mode in runtime"
  41. ---help---
  42. If interface mode is unknown in compile time, it can be selected
  43. in runtime from board/platform resources configuration.
  44. Performance may decrease compared to explicitly selected bus mode.
  45. endchoice
  46. config WIZNET_TX_FLOW
  47. bool "Use transmit flow control"
  48. default y
  49. help
  50. This enables transmit flow control for WIZnet chips.
  51. If unsure, say Y.
  52. endif # NET_VENDOR_WIZNET