Kconfig 4.8 KB

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