Kconfig 4.9 KB

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