• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1config BCMDHD
2	tristate "Broadcom FullMAC wireless cards support"
3	help
4	  This module adds support for wireless adapters based on
5	  Broadcom FullMAC chipset.
6
7config BCMDHD_FW_PATH
8	depends on BCMDHD
9	string "Firmware path"
10	default "/vendor/etc/firmware/fw_bcmdhd.bin"
11	help
12	  Path to the firmware file.
13
14config BCMDHD_NVRAM_PATH
15	depends on BCMDHD
16	string "NVRAM path"
17	default "/vendor/etc/firmware/nvram.txt"
18	help
19	  Path to the calibration file.
20
21config BCMDHD_WEXT
22	bool "Enable WEXT support"
23	depends on BCMDHD && CFG80211 = n
24	select WIRELESS_EXT
25	select WEXT_PRIV
26	help
27	  Enables WEXT support
28
29choice
30	prompt "Enable Chip Interface"
31	depends on BCMDHD
32	help
33		Enable Chip Interface.
34config BCMDHD_SDIO
35		bool "SDIO bus interface support"
36		depends on BCMDHD && MMC
37config BCMDHD_PCIE
38		bool "PCIe bus interface support"
39		depends on BCMDHD && PCI
40config BCMDHD_USB
41		bool "USB bus interface support"
42		depends on BCMDHD && USB
43endchoice
44
45choice
46	depends on BCMDHD && BCMDHD_SDIO
47	prompt "Interrupt type"
48	default BCMDHD_OOB
49	help
50		Interrupt type
51config BCMDHD_OOB
52	depends on BCMDHD && BCMDHD_SDIO
53	bool "Out-of-Band Interrupt"
54	help
55		Interrupt from WL_HOST_WAKE.
56config BCMDHD_SDIO_IRQ
57	depends on BCMDHD && BCMDHD_SDIO
58	bool "In-Band Interrupt"
59	help
60	  Interrupt from SDIO DAT[1]
61endchoice
62