Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. menuconfig IEEE802154_DRIVERS
  2. tristate "IEEE 802.15.4 drivers"
  3. depends on NETDEVICES && IEEE802154
  4. default y
  5. ---help---
  6. Say Y here to get to see options for IEEE 802.15.4 Low-Rate
  7. Wireless Personal Area Network device drivers. This option alone
  8. does not add any kernel code.
  9. If you say N, all options in this submenu will be skipped and
  10. disabled.
  11. config IEEE802154_FAKELB
  12. depends on IEEE802154_DRIVERS && MAC802154
  13. tristate "IEEE 802.15.4 loopback driver"
  14. ---help---
  15. Say Y here to enable the fake driver that can emulate a net
  16. of several interconnected radio devices.
  17. This driver can also be built as a module. To do so say M here.
  18. The module will be called 'fakelb'.
  19. config IEEE802154_AT86RF230
  20. depends on IEEE802154_DRIVERS && MAC802154
  21. tristate "AT86RF230/231/233/212 transceiver driver"
  22. depends on SPI
  23. select REGMAP_SPI
  24. ---help---
  25. Say Y here to enable the at86rf230/231/233/212 SPI 802.15.4 wireless
  26. controller.
  27. This driver can also be built as a module. To do so, say M here.
  28. the module will be called 'at86rf230'.
  29. config IEEE802154_AT86RF230_DEBUGFS
  30. depends on IEEE802154_AT86RF230
  31. bool "AT86RF230 debugfs interface"
  32. depends on DEBUG_FS
  33. ---help---
  34. This option compiles debugfs code for the at86rf230 driver.
  35. config IEEE802154_MRF24J40
  36. tristate "Microchip MRF24J40 transceiver driver"
  37. depends on IEEE802154_DRIVERS && MAC802154
  38. depends on SPI
  39. select REGMAP_SPI
  40. ---help---
  41. Say Y here to enable the MRF24J20 SPI 802.15.4 wireless
  42. controller.
  43. This driver can also be built as a module. To do so, say M here.
  44. the module will be called 'mrf24j40'.
  45. config IEEE802154_CC2520
  46. depends on IEEE802154_DRIVERS && MAC802154
  47. tristate "CC2520 transceiver driver"
  48. depends on SPI
  49. ---help---
  50. Say Y here to enable the CC2520 SPI 802.15.4 wireless
  51. controller.
  52. This driver can also be built as a module. To do so, say M here.
  53. the module will be called 'cc2520'.
  54. config IEEE802154_ATUSB
  55. tristate "ATUSB transceiver driver"
  56. depends on IEEE802154_DRIVERS && MAC802154 && USB
  57. ---help---
  58. Say Y here to enable the ATUSB IEEE 802.15.4 wireless
  59. controller.
  60. This driver can also be built as a module. To do so say M here.
  61. The module will be called 'atusb'.
  62. config IEEE802154_ADF7242
  63. tristate "ADF7242 transceiver driver"
  64. depends on IEEE802154_DRIVERS && MAC802154
  65. depends on SPI
  66. ---help---
  67. Say Y here to enable the ADF7242 SPI 802.15.4 wireless
  68. controller.
  69. This driver can also be built as a module. To do so, say M here.
  70. the module will be called 'adf7242'.
  71. config IEEE802154_CA8210
  72. tristate "Cascoda CA8210 transceiver driver"
  73. depends on IEEE802154_DRIVERS && MAC802154
  74. depends on COMMON_CLK
  75. depends on SPI
  76. ---help---
  77. Say Y here to enable the CA8210 SPI 802.15.4 wireless
  78. controller.
  79. This driver can also be built as a module. To do so, say M here.
  80. the module will be called 'ca8210'.
  81. config IEEE802154_CA8210_DEBUGFS
  82. bool "CA8210 debugfs interface"
  83. depends on IEEE802154_CA8210
  84. depends on DEBUG_FS
  85. ---help---
  86. This option compiles debugfs code for the ca8210 driver. This
  87. exposes a debugfs node for each CA8210 instance which allows
  88. direct use of the Cascoda API, exposing the 802.15.4 MAC
  89. management entities.
  90. config IEEE802154_MCR20A
  91. tristate "MCR20A transceiver driver"
  92. depends on IEEE802154_DRIVERS && MAC802154
  93. depends on SPI
  94. ---help---
  95. Say Y here to enable the MCR20A SPI 802.15.4 wireless
  96. controller.
  97. This driver can also be built as a module. To do so, say M here.
  98. the module will be called 'mcr20a'.
  99. config IEEE802154_HWSIM
  100. depends on IEEE802154_DRIVERS && MAC802154
  101. tristate "Simulated radio testing tool for mac802154"
  102. ---help---
  103. This driver is a developer testing tool that can be used to test
  104. IEEE 802.15.4 networking stack (mac802154) functionality. This is not
  105. needed for normal wpan usage and is only for testing.
  106. This driver can also be built as a module. To do so say M here.
  107. The module will be called 'mac802154_hwsim'.