Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. #
  2. # Realtek device configuration
  3. #
  4. config NET_VENDOR_REALTEK
  5. bool "Realtek devices"
  6. default y
  7. depends on PCI || (PARPORT && X86)
  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. Note that the answer to this question doesn't directly affect the
  13. kernel: saying N will just cause the configurator to skip all
  14. the questions about Realtek devices. If you say Y, you will be asked for
  15. your specific card in the following questions.
  16. if NET_VENDOR_REALTEK
  17. config ATP
  18. tristate "AT-LAN-TEC/RealTek pocket adapter support"
  19. depends on PARPORT && X86
  20. select CRC32
  21. ---help---
  22. This is a network (Ethernet) device which attaches to your parallel
  23. port. Read <file:drivers/net/ethernet/realtek/atp.c> as well as the
  24. Ethernet-HOWTO, available from <http://www.tldp.org/docs.html#howto>,
  25. if you want to use this. If you intend to use this driver, you
  26. should have said N to the "Parallel printer support", because the two
  27. drivers don't like each other.
  28. To compile this driver as a module, choose M here: the module
  29. will be called atp.
  30. config 8139CP
  31. tristate "RealTek RTL-8139 C+ PCI Fast Ethernet Adapter support (EXPERIMENTAL)"
  32. depends on PCI && EXPERIMENTAL
  33. select CRC32
  34. select NET_CORE
  35. select MII
  36. ---help---
  37. This is a driver for the Fast Ethernet PCI network cards based on
  38. the RTL8139C+ chips. If you have one of those, say Y and read
  39. the Ethernet-HOWTO, available from
  40. <http://www.tldp.org/docs.html#howto>.
  41. To compile this driver as a module, choose M here: the module
  42. will be called 8139cp. This is recommended.
  43. config 8139TOO
  44. tristate "RealTek RTL-8129/8130/8139 PCI Fast Ethernet Adapter support"
  45. depends on PCI
  46. select CRC32
  47. select NET_CORE
  48. select MII
  49. ---help---
  50. This is a driver for the Fast Ethernet PCI network cards based on
  51. the RTL 8129/8130/8139 chips. If you have one of those, say Y and
  52. read the Ethernet-HOWTO <http://www.tldp.org/docs.html#howto>.
  53. To compile this driver as a module, choose M here: the module
  54. will be called 8139too. This is recommended.
  55. config 8139TOO_PIO
  56. bool "Use PIO instead of MMIO"
  57. default y
  58. depends on 8139TOO
  59. ---help---
  60. This instructs the driver to use programmed I/O ports (PIO) instead
  61. of PCI shared memory (MMIO). This can possibly solve some problems
  62. in case your mainboard has memory consistency issues. If unsure,
  63. say N.
  64. config 8139TOO_TUNE_TWISTER
  65. bool "Support for uncommon RTL-8139 rev. K (automatic channel equalization)"
  66. depends on 8139TOO
  67. ---help---
  68. This implements a function which might come in handy in case you
  69. are using low quality on long cabling. It is required for RealTek
  70. RTL-8139 revision K boards, and totally unused otherwise. It tries
  71. to match the transceiver to the cable characteristics. This is
  72. experimental since hardly documented by the manufacturer.
  73. If unsure, say Y.
  74. config 8139TOO_8129
  75. bool "Support for older RTL-8129/8130 boards"
  76. depends on 8139TOO
  77. ---help---
  78. This enables support for the older and uncommon RTL-8129 and
  79. RTL-8130 chips, which support MII via an external transceiver,
  80. instead of an internal one. Disabling this option will save some
  81. memory by making the code size smaller. If unsure, say Y.
  82. config 8139_OLD_RX_RESET
  83. bool "Use older RX-reset method"
  84. depends on 8139TOO
  85. ---help---
  86. The 8139too driver was recently updated to contain a more rapid
  87. reset sequence, in the face of severe receive errors. This "new"
  88. RX-reset method should be adequate for all boards. But if you
  89. experience problems, you can enable this option to restore the
  90. old RX-reset behavior. If unsure, say N.
  91. config R8169
  92. tristate "Realtek 8169 gigabit ethernet support"
  93. depends on PCI
  94. select FW_LOADER
  95. select CRC32
  96. select NET_CORE
  97. select MII
  98. ---help---
  99. Say Y here if you have a Realtek 8169 PCI Gigabit Ethernet adapter.
  100. To compile this driver as a module, choose M here: the module
  101. will be called r8169. This is recommended.
  102. endif # NET_VENDOR_REALTEK