Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1 | config B43 |
| 2 | tristate "Broadcom 43xx wireless support (mac80211 stack)" |
Al Viro | 46cb69c | 2008-05-21 06:32:11 +0100 | [diff] [blame] | 3 | depends on SSB_POSSIBLE && MAC80211 && WLAN_80211 && HAS_DMA |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 4 | select SSB |
| 5 | select FW_LOADER |
| 6 | select HW_RANDOM |
| 7 | ---help--- |
| 8 | b43 is a driver for the Broadcom 43xx series wireless devices. |
| 9 | |
| 10 | Check "lspci" for something like |
| 11 | "Broadcom Corporation BCM43XX 802.11 Wireless LAN Controller" |
| 12 | to determine whether you own such a device. |
| 13 | |
| 14 | This driver supports the new BCM43xx IEEE 802.11G devices, but not |
| 15 | the old IEEE 802.11B devices. Old devices are supported by |
| 16 | the b43legacy driver. |
| 17 | Note that this has nothing to do with the standard that your AccessPoint |
| 18 | supports (A, B, G or a combination). |
| 19 | IEEE 802.11G devices can talk to IEEE 802.11B AccessPoints. |
| 20 | |
| 21 | It is safe to include both b43 and b43legacy as the underlying glue |
| 22 | layer will automatically load the correct version for your device. |
| 23 | |
| 24 | This driver uses V4 firmware, which must be installed separately using |
| 25 | b43-fwcutter. |
| 26 | |
| 27 | This driver can be built as a module (recommended) that will be called "b43". |
| 28 | If unsure, say M. |
| 29 | |
| 30 | # Auto-select SSB PCI-HOST support, if possible |
| 31 | config B43_PCI_AUTOSELECT |
| 32 | bool |
| 33 | depends on B43 && SSB_PCIHOST_POSSIBLE |
| 34 | select SSB_PCIHOST |
Alexey Zaytsev | c708453 | 2008-02-23 12:59:26 +0300 | [diff] [blame] | 35 | select SSB_B43_PCI_BRIDGE |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 36 | default y |
| 37 | |
| 38 | # Auto-select SSB PCICORE driver, if possible |
| 39 | config B43_PCICORE_AUTOSELECT |
| 40 | bool |
| 41 | depends on B43 && SSB_DRIVER_PCICORE_POSSIBLE |
| 42 | select SSB_DRIVER_PCICORE |
| 43 | default y |
| 44 | |
| 45 | config B43_PCMCIA |
| 46 | bool "Broadcom 43xx PCMCIA device support (EXPERIMENTAL)" |
| 47 | depends on B43 && SSB_PCMCIAHOST_POSSIBLE && EXPERIMENTAL |
| 48 | select SSB_PCMCIAHOST |
| 49 | ---help--- |
| 50 | Broadcom 43xx PCMCIA device support. |
| 51 | |
| 52 | Support for 16bit PCMCIA devices. |
| 53 | Please note that most PC-CARD devices are _NOT_ 16bit PCMCIA |
| 54 | devices, but 32bit CardBUS devices. CardBUS devices are supported |
| 55 | out of the box by b43. |
| 56 | |
| 57 | With this config option you can drive b43 cards in |
| 58 | CompactFlash formfactor in a PCMCIA adaptor. |
| 59 | CF b43 cards can sometimes be found in handheld PCs. |
| 60 | |
| 61 | It's safe to select Y here, even if you don't have a B43 PCMCIA device. |
| 62 | |
| 63 | If unsure, say N. |
| 64 | |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 65 | # Data transfers to the device via PIO |
| 66 | # This is only needed on PCMCIA devices. All others can do DMA properly. |
| 67 | config B43_PIO |
| 68 | bool |
| 69 | depends on B43 && (B43_PCMCIA || B43_FORCE_PIO) |
Michael Buesch | d8c17e1 | 2008-04-02 19:58:20 +0200 | [diff] [blame] | 70 | select SSB_BLOCKIO |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 71 | default y |
| 72 | |
Michael Buesch | d5c71e4 | 2008-01-04 17:06:29 +0100 | [diff] [blame] | 73 | config B43_NPHY |
| 74 | bool "Pre IEEE 802.11n support (BROKEN)" |
| 75 | depends on B43 && EXPERIMENTAL && BROKEN |
| 76 | ---help--- |
| 77 | Support for the IEEE 802.11n draft. |
| 78 | |
| 79 | THIS IS BROKEN AND DOES NOT WORK YET. |
| 80 | |
| 81 | SAY N. |
| 82 | |
Michael Buesch | e63e436 | 2008-08-30 10:55:48 +0200 | [diff] [blame^] | 83 | config B43_PHY_LP |
| 84 | bool "IEEE 802.11g LP-PHY support (BROKEN)" |
| 85 | depends on B43 && EXPERIMENTAL && BROKEN |
| 86 | ---help--- |
| 87 | Support for the LP-PHY. |
| 88 | The LP-PHY is an IEEE 802.11g based PHY built into some notebooks |
| 89 | and embedded devices. |
| 90 | |
| 91 | THIS IS BROKEN AND DOES NOT WORK YET. |
| 92 | |
| 93 | SAY N. |
| 94 | |
Michael Buesch | bdb3f75 | 2007-11-07 21:24:07 +0100 | [diff] [blame] | 95 | # This config option automatically enables b43 LEDS support, |
| 96 | # if it's possible. |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 97 | config B43_LEDS |
| 98 | bool |
Michael Buesch | bdb3f75 | 2007-11-07 21:24:07 +0100 | [diff] [blame] | 99 | depends on B43 && MAC80211_LEDS && (LEDS_CLASS = y || LEDS_CLASS = B43) |
Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 100 | default y |
| 101 | |
Michael Buesch | bdb3f75 | 2007-11-07 21:24:07 +0100 | [diff] [blame] | 102 | # This config option automatically enables b43 RFKILL support, |
| 103 | # if it's possible. |
Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 104 | config B43_RFKILL |
| 105 | bool |
Michael Buesch | bdb3f75 | 2007-11-07 21:24:07 +0100 | [diff] [blame] | 106 | depends on B43 && (RFKILL = y || RFKILL = B43) && RFKILL_INPUT && (INPUT_POLLDEV = y || INPUT_POLLDEV = B43) |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 107 | default y |
| 108 | |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 109 | config B43_DEBUG |
| 110 | bool "Broadcom 43xx debugging" |
| 111 | depends on B43 |
| 112 | ---help--- |
| 113 | Broadcom 43xx debugging messages. |
| 114 | |
| 115 | Say Y, if you want to find out why the driver does not |
| 116 | work for you. |
Michael Buesch | 5100d5a | 2008-03-29 21:01:16 +0100 | [diff] [blame] | 117 | |
| 118 | config B43_FORCE_PIO |
| 119 | bool "Force usage of PIO instead of DMA" |
| 120 | depends on B43 && B43_DEBUG |
| 121 | ---help--- |
| 122 | This will disable DMA and always enable PIO instead. |
| 123 | |
| 124 | Say N! |
| 125 | This is only for debugging the PIO engine code. You do |
| 126 | _NOT_ want to enable this. |