Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 1 | /* |
| 2 | |
| 3 | Broadcom B43 wireless driver |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 4 | LED control |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 5 | |
| 6 | Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>, |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 7 | Copyright (c) 2005 Stefano Brivio <st3@riseup.net> |
| 8 | Copyright (c) 2005-2007 Michael Buesch <mb@bu3sch.de> |
| 9 | Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org> |
| 10 | Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch> |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 11 | |
| 12 | This program is free software; you can redistribute it and/or modify |
| 13 | it under the terms of the GNU General Public License as published by |
| 14 | the Free Software Foundation; either version 2 of the License, or |
| 15 | (at your option) any later version. |
| 16 | |
| 17 | This program is distributed in the hope that it will be useful, |
| 18 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | GNU General Public License for more details. |
| 21 | |
| 22 | You should have received a copy of the GNU General Public License |
| 23 | along with this program; see the file COPYING. If not, write to |
| 24 | the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
| 25 | Boston, MA 02110-1301, USA. |
| 26 | |
| 27 | */ |
| 28 | |
| 29 | #include "b43.h" |
| 30 | #include "leds.h" |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 31 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 32 | |
| 33 | static void b43_led_turn_on(struct b43_wldev *dev, u8 led_index, |
| 34 | bool activelow) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 35 | { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 36 | struct b43_wl *wl = dev->wl; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 37 | unsigned long flags; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 38 | u16 ctl; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 39 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 40 | spin_lock_irqsave(&wl->leds_lock, flags); |
| 41 | ctl = b43_read16(dev, B43_MMIO_GPIO_CONTROL); |
| 42 | if (activelow) |
| 43 | ctl &= ~(1 << led_index); |
| 44 | else |
| 45 | ctl |= (1 << led_index); |
| 46 | b43_write16(dev, B43_MMIO_GPIO_CONTROL, ctl); |
| 47 | spin_unlock_irqrestore(&wl->leds_lock, flags); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 48 | } |
| 49 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 50 | static void b43_led_turn_off(struct b43_wldev *dev, u8 led_index, |
| 51 | bool activelow) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 52 | { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 53 | struct b43_wl *wl = dev->wl; |
| 54 | unsigned long flags; |
| 55 | u16 ctl; |
| 56 | |
| 57 | spin_lock_irqsave(&wl->leds_lock, flags); |
| 58 | ctl = b43_read16(dev, B43_MMIO_GPIO_CONTROL); |
| 59 | if (activelow) |
| 60 | ctl |= (1 << led_index); |
| 61 | else |
| 62 | ctl &= ~(1 << led_index); |
| 63 | b43_write16(dev, B43_MMIO_GPIO_CONTROL, ctl); |
| 64 | spin_unlock_irqrestore(&wl->leds_lock, flags); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 65 | } |
| 66 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 67 | /* Callback from the LED subsystem. */ |
| 68 | static void b43_led_brightness_set(struct led_classdev *led_dev, |
| 69 | enum led_brightness brightness) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 70 | { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 71 | struct b43_led *led = container_of(led_dev, struct b43_led, led_dev); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 72 | struct b43_wldev *dev = led->dev; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 73 | bool radio_enabled; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 74 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 75 | /* Checking the radio-enabled status here is slightly racy, |
| 76 | * but we want to avoid the locking overhead and we don't care |
| 77 | * whether the LED has the wrong state for a second. */ |
| 78 | radio_enabled = (dev->phy.radio_on && dev->radio_hw_enable); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 79 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 80 | if (brightness == LED_OFF || !radio_enabled) |
| 81 | b43_led_turn_off(dev, led->index, led->activelow); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 82 | else |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 83 | b43_led_turn_on(dev, led->index, led->activelow); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 84 | } |
| 85 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 86 | static int b43_register_led(struct b43_wldev *dev, struct b43_led *led, |
| 87 | const char *name, char *default_trigger, |
| 88 | u8 led_index, bool activelow) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 89 | { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 90 | int err; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 91 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 92 | b43_led_turn_off(dev, led_index, activelow); |
| 93 | if (led->dev) |
| 94 | return -EEXIST; |
| 95 | if (!default_trigger) |
| 96 | return -EINVAL; |
| 97 | led->dev = dev; |
| 98 | led->index = led_index; |
| 99 | led->activelow = activelow; |
| 100 | strncpy(led->name, name, sizeof(led->name)); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 101 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 102 | led->led_dev.name = led->name; |
| 103 | led->led_dev.default_trigger = default_trigger; |
| 104 | led->led_dev.brightness_set = b43_led_brightness_set; |
| 105 | |
| 106 | err = led_classdev_register(dev->dev->dev, &led->led_dev); |
| 107 | if (err) { |
| 108 | b43warn(dev->wl, "LEDs: Failed to register %s\n", name); |
| 109 | led->dev = NULL; |
| 110 | return err; |
| 111 | } |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | static void b43_unregister_led(struct b43_led *led) |
| 116 | { |
| 117 | if (!led->dev) |
| 118 | return; |
| 119 | led_classdev_unregister(&led->led_dev); |
| 120 | b43_led_turn_off(led->dev, led->index, led->activelow); |
| 121 | led->dev = NULL; |
| 122 | } |
| 123 | |
| 124 | static void b43_map_led(struct b43_wldev *dev, |
| 125 | u8 led_index, |
| 126 | enum b43_led_behaviour behaviour, |
| 127 | bool activelow) |
| 128 | { |
| 129 | struct ieee80211_hw *hw = dev->wl->hw; |
| 130 | char name[B43_LED_MAX_NAME_LEN + 1]; |
| 131 | |
| 132 | /* Map the b43 specific LED behaviour value to the |
| 133 | * generic LED triggers. */ |
| 134 | switch (behaviour) { |
| 135 | case B43_LED_INACTIVE: |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 136 | break; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 137 | case B43_LED_OFF: |
| 138 | b43_led_turn_off(dev, led_index, activelow); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 139 | break; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 140 | case B43_LED_ON: |
| 141 | b43_led_turn_on(dev, led_index, activelow); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 142 | break; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 143 | case B43_LED_ACTIVITY: |
| 144 | case B43_LED_TRANSFER: |
| 145 | case B43_LED_APTRANSFER: |
| 146 | snprintf(name, sizeof(name), |
| 147 | "b43-%s:tx", wiphy_name(hw->wiphy)); |
| 148 | b43_register_led(dev, &dev->led_tx, name, |
| 149 | ieee80211_get_tx_led_name(hw), |
| 150 | led_index, activelow); |
| 151 | snprintf(name, sizeof(name), |
| 152 | "b43-%s:rx", wiphy_name(hw->wiphy)); |
| 153 | b43_register_led(dev, &dev->led_rx, name, |
| 154 | ieee80211_get_rx_led_name(hw), |
| 155 | led_index, activelow); |
| 156 | break; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 157 | case B43_LED_RADIO_ALL: |
| 158 | case B43_LED_RADIO_A: |
| 159 | case B43_LED_RADIO_B: |
| 160 | case B43_LED_MODE_BG: |
Michael Buesch | 8e9f752 | 2007-09-27 21:35:34 +0200 | [diff] [blame] | 161 | snprintf(name, sizeof(name), |
| 162 | "b43-%s:radio", wiphy_name(hw->wiphy)); |
| 163 | b43_register_led(dev, &dev->led_radio, name, |
| 164 | b43_rfkill_led_name(dev), |
| 165 | led_index, activelow); |
| 166 | break; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 167 | case B43_LED_WEIRD: |
| 168 | case B43_LED_ASSOC: |
| 169 | snprintf(name, sizeof(name), |
| 170 | "b43-%s:assoc", wiphy_name(hw->wiphy)); |
| 171 | b43_register_led(dev, &dev->led_assoc, name, |
| 172 | ieee80211_get_assoc_led_name(hw), |
| 173 | led_index, activelow); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 174 | break; |
| 175 | default: |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 176 | b43warn(dev->wl, "LEDs: Unknown behaviour 0x%02X\n", |
| 177 | behaviour); |
| 178 | break; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 179 | } |
| 180 | } |
| 181 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 182 | void b43_leds_init(struct b43_wldev *dev) |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 183 | { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 184 | struct ssb_bus *bus = dev->dev->bus; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 185 | u8 sprom[4]; |
| 186 | int i; |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 187 | enum b43_led_behaviour behaviour; |
| 188 | bool activelow; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 189 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 190 | sprom[0] = bus->sprom.r1.gpio0; |
| 191 | sprom[1] = bus->sprom.r1.gpio1; |
| 192 | sprom[2] = bus->sprom.r1.gpio2; |
| 193 | sprom[3] = bus->sprom.r1.gpio3; |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 194 | |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 195 | for (i = 0; i < 4; i++) { |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 196 | if (sprom[i] == 0xFF) { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 197 | /* There is no LED information in the SPROM |
| 198 | * for this LED. Hardcode it here. */ |
| 199 | activelow = 0; |
| 200 | switch (i) { |
| 201 | case 0: |
| 202 | behaviour = B43_LED_ACTIVITY; |
| 203 | activelow = 1; |
| 204 | if (bus->boardinfo.vendor == PCI_VENDOR_ID_COMPAQ) |
| 205 | behaviour = B43_LED_RADIO_ALL; |
| 206 | break; |
| 207 | case 1: |
| 208 | behaviour = B43_LED_RADIO_B; |
| 209 | if (bus->boardinfo.vendor == PCI_VENDOR_ID_ASUSTEK) |
| 210 | behaviour = B43_LED_ASSOC; |
| 211 | break; |
| 212 | case 2: |
| 213 | behaviour = B43_LED_RADIO_A; |
| 214 | break; |
| 215 | case 3: |
| 216 | behaviour = B43_LED_OFF; |
| 217 | break; |
| 218 | default: |
| 219 | B43_WARN_ON(1); |
| 220 | return; |
| 221 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 222 | } else { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 223 | behaviour = sprom[i] & B43_LED_BEHAVIOUR; |
| 224 | activelow = !!(sprom[i] & B43_LED_ACTIVELOW); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 225 | } |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 226 | b43_map_led(dev, i, behaviour, activelow); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 227 | } |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | void b43_leds_exit(struct b43_wldev *dev) |
| 231 | { |
Michael Buesch | 21954c3 | 2007-09-27 15:31:40 +0200 | [diff] [blame] | 232 | b43_unregister_led(&dev->led_tx); |
| 233 | b43_unregister_led(&dev->led_rx); |
| 234 | b43_unregister_led(&dev->led_assoc); |
Michael Buesch | e4d6b79 | 2007-09-18 15:39:42 -0400 | [diff] [blame] | 235 | } |