rfkill: rewrite
[deliverable/linux.git] / drivers / net / wireless / b43legacy / Kconfig
CommitLineData
75388acd
LF
1config B43LEGACY
2 tristate "Broadcom 43xx-legacy wireless support (mac80211 stack)"
46cb69cc 3 depends on SSB_POSSIBLE && MAC80211 && WLAN_80211 && HAS_DMA
75388acd
LF
4 select SSB
5 select FW_LOADER
75388acd
LF
6 ---help---
7 b43legacy is a driver for 802.11b devices from Broadcom (BCM4301 and
8 BCM4303) and early model 802.11g chips (BCM4306 Ver. 2) used in the
9 Linksys WPC54G V1 PCMCIA devices.
10
11 Newer 802.11g and 802.11a devices need b43.
12
13 It is safe to include both b43 and b43legacy as the underlying glue
14 layer will automatically load the correct version for your device.
15
16 This driver uses V3 firmware, which must be installed separately using
17 b43-fwcutter.
18
19 This driver can be built as a module (recommended) that will be
20 called "b43legacy". If unsure, say M.
21
22# Auto-select SSB PCI-HOST support, if possible
23config B43LEGACY_PCI_AUTOSELECT
24 bool
25 depends on B43LEGACY && SSB_PCIHOST_POSSIBLE
26 select SSB_PCIHOST
c7084535 27 select SSB_B43_PCI_BRIDGE
75388acd
LF
28 default y
29
30# Auto-select SSB PCICORE driver, if possible
31config B43LEGACY_PCICORE_AUTOSELECT
32 bool
33 depends on B43LEGACY && SSB_DRIVER_PCICORE_POSSIBLE
34 select SSB_DRIVER_PCICORE
35 default y
36
ba48f7bb 37# LED support
59f1b154
SB
38# This config option automatically enables b43legacy LEDS support,
39# if it's possible.
ba48f7bb
LF
40config B43LEGACY_LEDS
41 bool
59f1b154 42 depends on B43LEGACY && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43LEGACY)
93bb7f3a
LF
43 default y
44
45# RFKILL support
59f1b154
SB
46# This config option automatically enables b43legacy RFKILL support,
47# if it's possible.
93bb7f3a
LF
48config B43LEGACY_RFKILL
49 bool
19d337df 50 depends on B43LEGACY && (RFKILL = y || RFKILL = B43LEGACY)
ba48f7bb
LF
51 default y
52
910cfee3
LF
53# This config option automatically enables b43 HW-RNG support,
54# if the HW-RNG core is enabled.
55config B43LEGACY_HWRNG
56 bool
57 depends on B43LEGACY && (HW_RANDOM = y || HW_RANDOM = B43LEGACY)
58 default y
59
75388acd
LF
60config B43LEGACY_DEBUG
61 bool "Broadcom 43xx-legacy debugging"
62 depends on B43LEGACY
63 default y
64 ---help---
65 Say Y, because this information will help you get the driver running.
66 This option generates a minimum of log output.
67
68config B43LEGACY_DMA
69 bool
70 depends on B43LEGACY
71
72config B43LEGACY_PIO
73 bool
74 depends on B43LEGACY
75
76choice
77 prompt "Broadcom 43xx-legacy data transfer mode"
78 depends on B43LEGACY
79 default B43LEGACY_DMA_AND_PIO_MODE
80
81config B43LEGACY_DMA_AND_PIO_MODE
82 bool "DMA + PIO"
83 select B43LEGACY_DMA
84 select B43LEGACY_PIO
85 ---help---
86 Include both, Direct Memory Access (DMA) and Programmed I/O (PIO)
87 data transfer modes. The mode actually used is selectable through
88 the module parameter "pio". With pio=0 as a module parameter, the
89 default DMA is used, otherwise PIO is used.
90
91 If unsure, choose this option.
92
93config B43LEGACY_DMA_MODE
94 bool "DMA (Direct Memory Access) only"
95 select B43LEGACY_DMA
96 ---help---
97 Only include Direct Memory Access (DMA).
98 This reduces the size of the driver module, by omitting the PIO code.
99
100config B43LEGACY_PIO_MODE
101 bool "PIO (Programmed I/O) only"
102 select B43LEGACY_PIO
103 ---help---
104 Only include Programmed I/O (PIO).
105 This reduces the size of the driver module, by omitting the DMA code.
106 Please note that PIO transfers are slow (compared to DMA).
107
108 Also note that not all devices of the b43legacy series support PIO.
109
110 You should use PIO only if DMA does not work for you.
111
112endchoice
This page took 0.332218 seconds and 5 git commands to generate.