• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0
2
3config AP6XXX
4	tristate "ap6xxx wireless cards support"
5	depends on RFKILL_RK
6	select CFG80211
7	select MAC80211
8	help
9	  This module adds support for wireless adapters based on
10	  Broadcom ap6xxx chipset.
11
12	  This driver uses the kernel's wireless extensions subsystem.
13
14	  If you choose to build a module, it'll be called dhd. Say M if
15	  unsure.
16
17choice
18	prompt "Enable Chip Interface"
19	depends on BCMDHD
20	default BCMDHD_SDIO
21	help
22	  Enable Chip Interface.
23
24config BCMDHD_SDIO
25	bool "SDIO bus interface support"
26	depends on BCMDHD && MMC
27
28config BCMDHD_PCIE
29	bool "PCIe bus interface support"
30	depends on BCMDHD && PCI
31
32endchoice
33
34config BCMDHD_FW_PATH
35	depends on BCMDHD
36	string "Firmware path"
37	default "/vendor/etc/firmware/fw_bcmdhd.bin"
38	help
39	  Path to the firmware file.
40
41config BCMDHD_NVRAM_PATH
42	depends on BCMDHD
43	string "NVRAM path"
44	default "/vendor/etc/firmware/nvram.txt"
45	help
46	  Path to the calibration file.a
47
48config BCMDHD_STATIC_IF
49	bool "Enable wlan1 support"
50	help
51	  default to add wlan1 interface
52