brintos

brintos / linux-shallow public Read only

0
0
Text · 3.7 KiB · 1075e24 Raw
124 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2menuconfig IEEE802154_DRIVERS3	tristate "IEEE 802.15.4 drivers"4	depends on NETDEVICES && IEEE8021545	default y6	help7	  Say Y here to get to see options for IEEE 802.15.4 Low-Rate8	  Wireless Personal Area Network device drivers. This option alone9	  does not add any kernel code.10 11	  If you say N, all options in this submenu will be skipped and12	  disabled.13 14config IEEE802154_FAKELB15	depends on IEEE802154_DRIVERS && MAC80215416	tristate "IEEE 802.15.4 loopback driver"17	help18	  Say Y here to enable the fake driver that can emulate a net19	  of several interconnected radio devices.20 21	  This driver can also be built as a module. To do so say M here.22	  The module will be called 'fakelb'.23 24config IEEE802154_AT86RF23025	depends on IEEE802154_DRIVERS && MAC80215426	tristate "AT86RF230/231/233/212 transceiver driver"27	depends on SPI28	select REGMAP_SPI29	help30	  Say Y here to enable the at86rf230/231/233/212 SPI 802.15.4 wireless31	  controller.32 33	  This driver can also be built as a module. To do so, say M here.34	  the module will be called 'at86rf230'.35 36config IEEE802154_MRF24J4037	tristate "Microchip MRF24J40 transceiver driver"38	depends on IEEE802154_DRIVERS && MAC80215439	depends on SPI40	select REGMAP_SPI41	help42	  Say Y here to enable the MRF24J20 SPI 802.15.4 wireless43	  controller.44 45	  This driver can also be built as a module. To do so, say M here.46	  the module will be called 'mrf24j40'.47 48config IEEE802154_CC252049	depends on IEEE802154_DRIVERS && MAC80215450	tristate "CC2520 transceiver driver"51	depends on SPI52	help53	  Say Y here to enable the CC2520 SPI 802.15.4 wireless54	  controller.55 56	  This driver can also be built as a module. To do so, say M here.57	  the module will be called 'cc2520'.58 59config IEEE802154_ATUSB60	tristate "ATUSB transceiver driver"61	depends on IEEE802154_DRIVERS && MAC802154 && USB62	help63	  Say Y here to enable the ATUSB IEEE 802.15.4 wireless64	  controller.65 66	  This driver can also be built as a module. To do so say M here.67	  The module will be called 'atusb'.68 69config IEEE802154_ADF724270	tristate "ADF7242 transceiver driver"71	depends on IEEE802154_DRIVERS && MAC80215472	depends on SPI73	help74	  Say Y here to enable the ADF7242 SPI 802.15.4 wireless75	  controller.76 77	  This driver can also be built as a module. To do so, say M here.78	  the module will be called 'adf7242'.79 80config IEEE802154_CA821081	tristate "Cascoda CA8210 transceiver driver"82	depends on IEEE802154_DRIVERS && MAC80215483	depends on COMMON_CLK84	depends on SPI85	help86	  Say Y here to enable the CA8210 SPI 802.15.4 wireless87	  controller.88 89	  This driver can also be built as a module. To do so, say M here.90	  the module will be called 'ca8210'.91 92config IEEE802154_CA8210_DEBUGFS93	bool "CA8210 debugfs interface"94	depends on IEEE802154_CA821095	depends on DEBUG_FS96	help97	  This option compiles debugfs code for the ca8210 driver. This98	  exposes a debugfs node for each CA8210 instance which allows99	  direct use of the Cascoda API, exposing the 802.15.4 MAC100	  management entities.101 102config IEEE802154_MCR20A103	tristate "MCR20A transceiver driver"104	select REGMAP_SPI105	depends on IEEE802154_DRIVERS && MAC802154106	depends on SPI107	help108	  Say Y here to enable the MCR20A SPI 802.15.4 wireless109	  controller.110 111	  This driver can also be built as a module. To do so, say M here.112	  the module will be called 'mcr20a'.113 114config IEEE802154_HWSIM115	depends on IEEE802154_DRIVERS && MAC802154116	tristate "Simulated radio testing tool for mac802154"117	help118	  This driver is a developer testing tool that can be used to test119	  IEEE 802.15.4 networking stack (mac802154) functionality. This is not120	  needed for normal wpan usage and is only for testing.121 122	  This driver can also be built as a module. To do so say M here.123	  The module will be called 'mac802154_hwsim'.124