aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/bcm4329/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/bcm4329/Kconfig')
-rw-r--r--drivers/net/wireless/bcm4329/Kconfig82
1 files changed, 82 insertions, 0 deletions
diff --git a/drivers/net/wireless/bcm4329/Kconfig b/drivers/net/wireless/bcm4329/Kconfig
new file mode 100644
index 00000000000..a04ba4c4d4c
--- /dev/null
+++ b/drivers/net/wireless/bcm4329/Kconfig
@@ -0,0 +1,82 @@
1config BCM4329
2 tristate "Broadcom 4329 wireless cards support"
3 depends on MMC
4 select WIRELESS_EXT
5 select WEXT_PRIV
6 ---help---
7 This module adds support for wireless adapters based on
8 Broadcom 4329 chipset.
9
10 This driver uses the kernel's wireless extensions subsystem.
11
12 If you choose to build a module, it'll be called dhd. Say M if
13 unsure.
14
15config BCM4329_FIRST_SCAN
16 depends on BCM4329
17 bool "first scan support"
18 default n
19 ---help---
20 Initiate broadcast scan (active scan) just after
21 initializing with network interface.
22
23config BCM4329_FW_PATH
24 depends on BCM4329
25 string "Firmware path"
26 default "/system/etc/firmware/fw_bcm4329.bin"
27 ---help---
28 Path to the firmware file.
29
30config BCM4329_NVRAM_PATH
31 depends on BCM4329
32 string "NVRAM path"
33 default "/proc/calibration"
34 ---help---
35 Path to the calibration file.
36
37config BCM4329_WIFI_CONTROL_FUNC
38 bool "Use bcm4329_wlan device"
39 depends on BCM4329
40 default n
41 ---help---
42 Use this option to get various parameters from architecture specific
43 bcm4329_wlan platform device. Say n if unsure.
44
45if BCM4329_WIFI_CONTROL_FUNC
46
47config BCM4329_DHD_USE_STATIC_BUF
48 bool "Use static buffer"
49 depends on BCM4329
50 default n
51 ---help---
52 Use static buffer from kernel heap allocated during bcm4329_wlan
53 platform device creation.
54
55config BCM4329_HW_OOB
56 bool "Use out of band interrupt"
57 depends on BCM4329
58 default n
59 ---help---
60 Use out of band interrupt for wake on wireless.
61
62config BCM4329_OOB_INTR_ONLY
63 bool "Use out of band interrupt only"
64 depends on BCM4329
65 default n
66 ---help---
67 Use out of band interrupt for all interrupts(including SDIO interrupts).
68
69config BCM4329_GET_CUSTOM_MAC_ENABLE
70 bool "Use custom mac address"
71 depends on BCM4329
72 default n
73 ---help---
74 Use mac address provided by bcm4329_wlan platform device.
75
76config BCM4329_CSCAN_ENABLE
77 bool "Enable Combo Scan"
78 depends on BCM4329
79 default n
80 ---help---
81 Enable Combo Scan
82endif