1menuconfig WL12XX_MENU
2	tristate "TI wl12xx driver support"
3	depends on MAC80211 && EXPERIMENTAL
4	---help---
5	  This will enable TI wl12xx driver support for the following chips:
6	  wl1271 and wl1273.
7	  The drivers make use of the mac80211 stack.
8
9config WL12XX
10	tristate "TI wl12xx support"
11	depends on WL12XX_MENU && GENERIC_HARDIRQS
12	depends on INET
13	select FW_LOADER
14	select CRC7
15	---help---
16	  This module adds support for wireless adapters based on TI wl1271 and
17	  TI wl1273 chipsets. This module does *not* include support for wl1251.
18	  For wl1251 support, use the separate homonymous driver instead.
19
20	  If you choose to build a module, it will be called wl12xx. Say N if
21	  unsure.
22
23config WL12XX_HT
24        bool "TI wl12xx 802.11 HT support (EXPERIMENTAL)"
25        depends on WL12XX && EXPERIMENTAL
26        default n
27        ---help---
28          This will enable 802.11 HT support in the wl12xx module.
29
30	  That configuration is temporary due to the code incomplete and
31	  still in testing process.
32
33config WL12XX_SPI
34	tristate "TI wl12xx SPI support"
35	depends on WL12XX && SPI_MASTER
36	---help---
37	  This module adds support for the SPI interface of adapters using
38	  TI wl12xx chipsets.  Select this if your platform is using
39	  the SPI bus.
40
41	  If you choose to build a module, it'll be called wl12xx_spi.
42	  Say N if unsure.
43
44config WL12XX_SDIO
45	tristate "TI wl12xx SDIO support"
46	depends on WL12XX && MMC
47	---help---
48	  This module adds support for the SDIO interface of adapters using
49	  TI wl12xx chipsets.  Select this if your platform is using
50	  the SDIO bus.
51
52	  If you choose to build a module, it'll be called wl12xx_sdio.
53	  Say N if unsure.
54
55config WL12XX_SDIO_TEST
56	tristate "TI wl12xx SDIO testing support"
57	depends on WL12XX && MMC && WL12XX_SDIO
58	default n
59	---help---
60	  This module adds support for the SDIO bus testing with the
61	  TI wl12xx chipsets.  You probably don't want this unless you are
62	  testing a new hardware platform.  Select this if you want to test the
63	  SDIO bus which is connected to the wl12xx chip.
64
65config WL12XX_PLATFORM_DATA
66	bool
67	depends on WL12XX_SDIO != n || WL1251_SDIO != n
68	default y
69