Kconfig 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. #
  2. # Arcnet configuration
  3. #
  4. menuconfig ARCNET
  5. depends on NETDEVICES && (ISA || PCI)
  6. tristate "ARCnet support"
  7. ---help---
  8. If you have a network card of this type, say Y and check out the
  9. (arguably) beautiful poetry in
  10. <file:Documentation/networking/arcnet.txt>.
  11. You need both this driver, and the driver for the particular ARCnet
  12. chipset of your card. If you don't know, then it's probably a
  13. COM90xx type card, so say Y (or M) to "ARCnet COM90xx chipset
  14. support" below.
  15. You might also want to have a look at the Ethernet-HOWTO, available
  16. from <http://www.tldp.org/docs.html#howto>(even though ARCnet
  17. is not really Ethernet).
  18. To compile this driver as a module, choose M here. The module will
  19. be called arcnet.
  20. if ARCNET
  21. config ARCNET_1201
  22. tristate "Enable standard ARCNet packet format (RFC 1201)"
  23. help
  24. This allows you to use RFC1201 with your ARCnet card via the virtual
  25. arc0 device. You need to say Y here to communicate with
  26. industry-standard RFC1201 implementations, like the arcether.com
  27. packet driver or most DOS/Windows ODI drivers. Please read the
  28. ARCnet documentation in <file:Documentation/networking/arcnet.txt>
  29. for more information about using arc0.
  30. config ARCNET_1051
  31. tristate "Enable old ARCNet packet format (RFC 1051)"
  32. ---help---
  33. This allows you to use RFC1051 with your ARCnet card via the virtual
  34. arc0s device. You only need arc0s if you want to talk to ARCnet
  35. software complying with the "old" standard, specifically, the DOS
  36. arcnet.com packet driver, Amigas running AmiTCP, and some variants
  37. of NetBSD. You do not need to say Y here to communicate with
  38. industry-standard RFC1201 implementations, like the arcether.com
  39. packet driver or most DOS/Windows ODI drivers. RFC1201 is included
  40. automatically as the arc0 device. Please read the ARCnet
  41. documentation in <file:Documentation/networking/arcnet.txt> for more
  42. information about using arc0e and arc0s.
  43. config ARCNET_RAW
  44. tristate "Enable raw mode packet interface"
  45. help
  46. ARCnet "raw mode" packet encapsulation, no soft headers. Unlikely
  47. to work unless talking to a copy of the same Linux arcnet driver,
  48. but perhaps marginally faster in that case.
  49. config ARCNET_CAP
  50. tristate "Enable CAP mode packet interface"
  51. help
  52. ARCnet "cap mode" packet encapsulation. Used to get the hardware
  53. acknowledge back to userspace. After the initial protocol byte every
  54. packet is stuffed with an extra 4 byte "cookie" which doesn't
  55. actually appear on the network. After transmit the driver will send
  56. back a packet with protocol byte 0 containing the status of the
  57. transmission:
  58. 0=no hardware acknowledge
  59. 1=excessive nak
  60. 2=transmission accepted by the receiver hardware
  61. Received packets are also stuffed with the extra 4 bytes but it will
  62. be random data.
  63. Cap only listens to protocol 1-8.
  64. config ARCNET_COM90xx
  65. tristate "ARCnet COM90xx (normal) chipset driver"
  66. help
  67. This is the chipset driver for the standard COM90xx cards. If you
  68. have always used the old ARCnet driver without knowing what type of
  69. card you had, this is probably the one for you.
  70. To compile this driver as a module, choose M here. The module will
  71. be called com90xx.
  72. config ARCNET_COM90xxIO
  73. tristate "ARCnet COM90xx (IO mapped) chipset driver"
  74. ---help---
  75. This is the chipset driver for the COM90xx cards, using them in
  76. IO-mapped mode instead of memory-mapped mode. This is slower than
  77. the normal driver. Only use it if your card doesn't support shared
  78. memory.
  79. To compile this driver as a module, choose M here. The module will
  80. be called com90io.
  81. config ARCNET_RIM_I
  82. tristate "ARCnet COM90xx (RIM I) chipset driver"
  83. ---help---
  84. This is yet another chipset driver for the COM90xx cards, but this
  85. time only using memory-mapped mode, and no IO ports at all. This
  86. driver is completely untested, so if you have one of these cards,
  87. please mail <dwmw2@infradead.org>, especially if it works!
  88. To compile this driver as a module, choose M here. The module will
  89. be called arc-rimi.
  90. config ARCNET_COM20020
  91. tristate "ARCnet COM20020 chipset driver"
  92. help
  93. This is the driver for the new COM20020 chipset. It supports such
  94. things as promiscuous mode, so packet sniffing is possible, and
  95. extra diagnostic information.
  96. To compile this driver as a module, choose M here. The module will
  97. be called com20020.
  98. config ARCNET_COM20020_ISA
  99. tristate "Support for COM20020 on ISA"
  100. depends on ARCNET_COM20020 && ISA
  101. config ARCNET_COM20020_PCI
  102. tristate "Support for COM20020 on PCI"
  103. depends on ARCNET_COM20020 && PCI
  104. endif # ARCNET