John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom BCM43xx wireless driver |
| 4 | |
| 5 | Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>, |
| 6 | Stefano Brivio <st3@riseup.net> |
| 7 | Michael Buesch <mbuesch@freenet.de> |
| 8 | Danny van Dyk <kugelfang@gentoo.org> |
| 9 | Andreas Jaggi <andreas.jaggi@waterwave.ch> |
| 10 | |
| 11 | This program is free software; you can redistribute it and/or modify |
| 12 | it under the terms of the GNU General Public License as published by |
| 13 | the Free Software Foundation; either version 2 of the License, or |
| 14 | (at your option) any later version. |
| 15 | |
| 16 | This program is distributed in the hope that it will be useful, |
| 17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | GNU General Public License for more details. |
| 20 | |
| 21 | You should have received a copy of the GNU General Public License |
| 22 | along with this program; see the file COPYING. If not, write to |
| 23 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 24 | Boston, MA 02110-1301, USA. |
| 25 | |
| 26 | */ |
| 27 | |
| 28 | #include "bcm43xx_leds.h" |
| 29 | #include "bcm43xx.h" |
| 30 | |
| 31 | #include <asm/bitops.h> |
| 32 | |
| 33 | |
| 34 | static void bcm43xx_led_changestate(struct bcm43xx_led *led) |
| 35 | { |
| 36 | struct bcm43xx_private *bcm = led->bcm; |
| 37 | const int index = bcm43xx_led_index(led); |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 38 | const u16 mask = (1 << index); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 39 | u16 ledctl; |
| 40 | |
| 41 | assert(index >= 0 && index < BCM43xx_NR_LEDS); |
| 42 | assert(led->blink_interval); |
| 43 | ledctl = bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL); |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 44 | ledctl = (ledctl & mask) ? (ledctl & ~mask) : (ledctl | mask); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 45 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_CONTROL, ledctl); |
| 46 | } |
| 47 | |
| 48 | static void bcm43xx_led_blink(unsigned long d) |
| 49 | { |
| 50 | struct bcm43xx_led *led = (struct bcm43xx_led *)d; |
| 51 | struct bcm43xx_private *bcm = led->bcm; |
| 52 | unsigned long flags; |
| 53 | |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 54 | bcm43xx_lock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 55 | if (led->blink_interval) { |
| 56 | bcm43xx_led_changestate(led); |
| 57 | mod_timer(&led->blink_timer, jiffies + led->blink_interval); |
| 58 | } |
Michael Buesch | 78ff56a | 2006-06-05 20:24:10 +0200 | [diff] [blame] | 59 | bcm43xx_unlock_irqonly(bcm, flags); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static void bcm43xx_led_blink_start(struct bcm43xx_led *led, |
| 63 | unsigned long interval) |
| 64 | { |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 65 | if (led->blink_interval) |
| 66 | return; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 67 | led->blink_interval = interval; |
| 68 | bcm43xx_led_changestate(led); |
| 69 | led->blink_timer.expires = jiffies + interval; |
| 70 | add_timer(&led->blink_timer); |
| 71 | } |
| 72 | |
| 73 | static void bcm43xx_led_blink_stop(struct bcm43xx_led *led, int sync) |
| 74 | { |
| 75 | struct bcm43xx_private *bcm = led->bcm; |
| 76 | const int index = bcm43xx_led_index(led); |
| 77 | u16 ledctl; |
| 78 | |
| 79 | if (!led->blink_interval) |
| 80 | return; |
| 81 | if (unlikely(sync)) |
| 82 | del_timer_sync(&led->blink_timer); |
| 83 | else |
| 84 | del_timer(&led->blink_timer); |
| 85 | led->blink_interval = 0; |
| 86 | |
| 87 | /* Make sure the LED is turned off. */ |
| 88 | assert(index >= 0 && index < BCM43xx_NR_LEDS); |
| 89 | ledctl = bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL); |
| 90 | if (led->activelow) |
| 91 | ledctl |= (1 << index); |
| 92 | else |
| 93 | ledctl &= ~(1 << index); |
| 94 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_CONTROL, ledctl); |
| 95 | } |
| 96 | |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 97 | static void bcm43xx_led_init_hardcoded(struct bcm43xx_private *bcm, |
| 98 | struct bcm43xx_led *led, |
| 99 | int led_index) |
| 100 | { |
| 101 | /* This function is called, if the behaviour (and activelow) |
| 102 | * information for a LED is missing in the SPROM. |
| 103 | * We hardcode the behaviour values for various devices here. |
| 104 | * Note that the BCM43xx_LED_TEST_XXX behaviour values can |
| 105 | * be used to figure out which led is mapped to which index. |
| 106 | */ |
| 107 | |
| 108 | switch (led_index) { |
| 109 | case 0: |
| 110 | led->behaviour = BCM43xx_LED_ACTIVITY; |
| 111 | if (bcm->board_vendor == PCI_VENDOR_ID_COMPAQ) |
| 112 | led->behaviour = BCM43xx_LED_RADIO_ALL; |
| 113 | break; |
| 114 | case 1: |
| 115 | led->behaviour = BCM43xx_LED_RADIO_B; |
| 116 | if (bcm->board_vendor == PCI_VENDOR_ID_ASUSTEK) |
| 117 | led->behaviour = BCM43xx_LED_ASSOC; |
| 118 | break; |
| 119 | case 2: |
| 120 | led->behaviour = BCM43xx_LED_RADIO_A; |
| 121 | break; |
| 122 | case 3: |
| 123 | led->behaviour = BCM43xx_LED_OFF; |
| 124 | break; |
| 125 | default: |
| 126 | assert(0); |
| 127 | } |
| 128 | } |
| 129 | |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 130 | int bcm43xx_leds_init(struct bcm43xx_private *bcm) |
| 131 | { |
| 132 | struct bcm43xx_led *led; |
| 133 | u8 sprom[4]; |
| 134 | int i; |
| 135 | |
| 136 | sprom[0] = bcm->sprom.wl0gpio0; |
| 137 | sprom[1] = bcm->sprom.wl0gpio1; |
| 138 | sprom[2] = bcm->sprom.wl0gpio2; |
| 139 | sprom[3] = bcm->sprom.wl0gpio3; |
| 140 | |
| 141 | for (i = 0; i < BCM43xx_NR_LEDS; i++) { |
| 142 | led = &(bcm->leds[i]); |
| 143 | led->bcm = bcm; |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 144 | setup_timer(&led->blink_timer, |
| 145 | bcm43xx_led_blink, |
| 146 | (unsigned long)led); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 147 | |
| 148 | if (sprom[i] == 0xFF) { |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 149 | bcm43xx_led_init_hardcoded(bcm, led, i); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 150 | } else { |
| 151 | led->behaviour = sprom[i] & BCM43xx_LED_BEHAVIOUR; |
| 152 | led->activelow = !!(sprom[i] & BCM43xx_LED_ACTIVELOW); |
| 153 | } |
| 154 | } |
| 155 | |
| 156 | return 0; |
| 157 | } |
| 158 | |
| 159 | void bcm43xx_leds_exit(struct bcm43xx_private *bcm) |
| 160 | { |
| 161 | struct bcm43xx_led *led; |
| 162 | int i; |
| 163 | |
| 164 | for (i = 0; i < BCM43xx_NR_LEDS; i++) { |
| 165 | led = &(bcm->leds[i]); |
| 166 | bcm43xx_led_blink_stop(led, 1); |
| 167 | } |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 168 | bcm43xx_leds_switch_all(bcm, 0); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | void bcm43xx_leds_update(struct bcm43xx_private *bcm, int activity) |
| 172 | { |
| 173 | struct bcm43xx_led *led; |
Michael Buesch | e9357c0 | 2006-03-13 19:27:34 +0100 | [diff] [blame] | 174 | struct bcm43xx_radioinfo *radio = bcm43xx_current_radio(bcm); |
| 175 | struct bcm43xx_phyinfo *phy = bcm43xx_current_phy(bcm); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 176 | const int transferring = (jiffies - bcm->stats.last_tx) < BCM43xx_LED_XFER_THRES; |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 177 | int i, turn_on; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 178 | unsigned long interval = 0; |
| 179 | u16 ledctl; |
| 180 | |
| 181 | ledctl = bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL); |
| 182 | for (i = 0; i < BCM43xx_NR_LEDS; i++) { |
| 183 | led = &(bcm->leds[i]); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 184 | |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 185 | turn_on = 0; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 186 | switch (led->behaviour) { |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 187 | case BCM43xx_LED_INACTIVE: |
| 188 | continue; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 189 | case BCM43xx_LED_OFF: |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 190 | break; |
| 191 | case BCM43xx_LED_ON: |
| 192 | turn_on = 1; |
| 193 | break; |
| 194 | case BCM43xx_LED_ACTIVITY: |
| 195 | turn_on = activity; |
| 196 | break; |
| 197 | case BCM43xx_LED_RADIO_ALL: |
| 198 | turn_on = radio->enabled; |
| 199 | break; |
| 200 | case BCM43xx_LED_RADIO_A: |
| 201 | turn_on = (radio->enabled && phy->type == BCM43xx_PHYTYPE_A); |
| 202 | break; |
| 203 | case BCM43xx_LED_RADIO_B: |
| 204 | turn_on = (radio->enabled && |
| 205 | (phy->type == BCM43xx_PHYTYPE_B || |
| 206 | phy->type == BCM43xx_PHYTYPE_G)); |
| 207 | break; |
| 208 | case BCM43xx_LED_MODE_BG: |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 209 | if (phy->type == BCM43xx_PHYTYPE_G && |
| 210 | 1/*FIXME: using G rates.*/) |
| 211 | turn_on = 1; |
| 212 | break; |
| 213 | case BCM43xx_LED_TRANSFER: |
| 214 | if (transferring) |
| 215 | bcm43xx_led_blink_start(led, BCM43xx_LEDBLINK_MEDIUM); |
| 216 | else |
| 217 | bcm43xx_led_blink_stop(led, 0); |
| 218 | continue; |
| 219 | case BCM43xx_LED_APTRANSFER: |
| 220 | if (bcm->ieee->iw_mode == IW_MODE_MASTER) { |
| 221 | if (transferring) { |
| 222 | interval = BCM43xx_LEDBLINK_FAST; |
| 223 | turn_on = 1; |
| 224 | } |
| 225 | } else { |
| 226 | turn_on = 1; |
| 227 | if (0/*TODO: not assoc*/) |
| 228 | interval = BCM43xx_LEDBLINK_SLOW; |
| 229 | else if (transferring) |
| 230 | interval = BCM43xx_LEDBLINK_FAST; |
| 231 | else |
| 232 | turn_on = 0; |
| 233 | } |
| 234 | if (turn_on) |
| 235 | bcm43xx_led_blink_start(led, interval); |
| 236 | else |
| 237 | bcm43xx_led_blink_stop(led, 0); |
| 238 | continue; |
| 239 | case BCM43xx_LED_WEIRD: |
| 240 | //TODO |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 241 | break; |
| 242 | case BCM43xx_LED_ASSOC: |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 243 | if (bcm->softmac->associated) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 244 | turn_on = 1; |
| 245 | break; |
Michael Buesch | dcfd720 | 2006-02-12 20:25:55 +0100 | [diff] [blame] | 246 | #ifdef CONFIG_BCM43XX_DEBUG |
| 247 | case BCM43xx_LED_TEST_BLINKSLOW: |
| 248 | bcm43xx_led_blink_start(led, BCM43xx_LEDBLINK_SLOW); |
| 249 | continue; |
| 250 | case BCM43xx_LED_TEST_BLINKMEDIUM: |
| 251 | bcm43xx_led_blink_start(led, BCM43xx_LEDBLINK_MEDIUM); |
| 252 | continue; |
| 253 | case BCM43xx_LED_TEST_BLINKFAST: |
| 254 | bcm43xx_led_blink_start(led, BCM43xx_LEDBLINK_FAST); |
| 255 | continue; |
| 256 | #endif /* CONFIG_BCM43XX_DEBUG */ |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 257 | default: |
| 258 | assert(0); |
| 259 | }; |
| 260 | |
| 261 | if (led->activelow) |
| 262 | turn_on = !turn_on; |
| 263 | if (turn_on) |
| 264 | ledctl |= (1 << i); |
| 265 | else |
| 266 | ledctl &= ~(1 << i); |
| 267 | } |
| 268 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_CONTROL, ledctl); |
| 269 | } |
| 270 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 271 | void bcm43xx_leds_switch_all(struct bcm43xx_private *bcm, int on) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 272 | { |
| 273 | struct bcm43xx_led *led; |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 274 | u16 ledctl; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 275 | int i; |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 276 | int bit_on; |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 277 | |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 278 | ledctl = bcm43xx_read16(bcm, BCM43xx_MMIO_GPIO_CONTROL); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 279 | for (i = 0; i < BCM43xx_NR_LEDS; i++) { |
| 280 | led = &(bcm->leds[i]); |
| 281 | if (led->behaviour == BCM43xx_LED_INACTIVE) |
| 282 | continue; |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 283 | if (on) |
| 284 | bit_on = led->activelow ? 0 : 1; |
| 285 | else |
| 286 | bit_on = led->activelow ? 1 : 0; |
| 287 | if (bit_on) |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 288 | ledctl |= (1 << i); |
Michael Buesch | 714eece | 2006-03-18 21:28:46 +0100 | [diff] [blame] | 289 | else |
| 290 | ledctl &= ~(1 << i); |
John W. Linville | f222313 | 2006-01-23 16:59:58 -0500 | [diff] [blame] | 291 | } |
| 292 | bcm43xx_write16(bcm, BCM43xx_MMIO_GPIO_CONTROL, ledctl); |
| 293 | } |