leds.c 9.0 KB
Newer Older
1 2 3
/*

  Broadcom B43 wireless driver
M
Michael Buesch 已提交
4
  LED control
5 6

  Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>,
7
  Copyright (c) 2005 Stefano Brivio <stefano.brivio@polimi.it>
M
Michael Buesch 已提交
8 9 10
  Copyright (c) 2005-2007 Michael Buesch <mb@bu3sch.de>
  Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
  Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; see the file COPYING.  If not, write to
  the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
  Boston, MA 02110-1301, USA.

*/

#include "b43.h"
#include "leds.h"
31
#include "rfkill.h"
32 33


M
Michael Buesch 已提交
34 35
static void b43_led_turn_on(struct b43_wldev *dev, u8 led_index,
			    bool activelow)
36
{
M
Michael Buesch 已提交
37
	u16 ctl;
38

M
Michael Buesch 已提交
39 40 41 42 43 44
	ctl = b43_read16(dev, B43_MMIO_GPIO_CONTROL);
	if (activelow)
		ctl &= ~(1 << led_index);
	else
		ctl |= (1 << led_index);
	b43_write16(dev, B43_MMIO_GPIO_CONTROL, ctl);
45 46
}

M
Michael Buesch 已提交
47 48
static void b43_led_turn_off(struct b43_wldev *dev, u8 led_index,
			     bool activelow)
49
{
M
Michael Buesch 已提交
50 51 52 53 54 55 56 57
	u16 ctl;

	ctl = b43_read16(dev, B43_MMIO_GPIO_CONTROL);
	if (activelow)
		ctl |= (1 << led_index);
	else
		ctl &= ~(1 << led_index);
	b43_write16(dev, B43_MMIO_GPIO_CONTROL, ctl);
58 59
}

60 61
static void b43_led_update(struct b43_wldev *dev,
			   struct b43_led *led)
62
{
M
Michael Buesch 已提交
63
	bool radio_enabled;
64
	bool turn_on;
65

66
	if (!led->wl)
67 68
		return;

M
Michael Buesch 已提交
69
	radio_enabled = (dev->phy.radio_on && dev->radio_hw_enable);
70

71 72 73 74 75
	/* The led->state read is racy, but we don't care. In case we raced
	 * with the brightness_set handler, we will be called again soon
	 * to fixup our state. */
	if (radio_enabled)
		turn_on = atomic_read(&led->state) != LED_OFF;
76
	else
77 78 79 80 81 82
		turn_on = 0;
	if (turn_on == led->hw_state)
		return;
	led->hw_state = turn_on;

	if (turn_on)
M
Michael Buesch 已提交
83
		b43_led_turn_on(dev, led->index, led->activelow);
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	else
		b43_led_turn_off(dev, led->index, led->activelow);
}

static void b43_leds_work(struct work_struct *work)
{
	struct b43_leds *leds = container_of(work, struct b43_leds, work);
	struct b43_wl *wl = container_of(leds, struct b43_wl, leds);
	struct b43_wldev *dev;

	mutex_lock(&wl->mutex);
	dev = wl->current_dev;
	if (unlikely(!dev || b43_status(dev) < B43_STAT_STARTED))
		goto out_unlock;

	b43_led_update(dev, &wl->leds.led_tx);
	b43_led_update(dev, &wl->leds.led_rx);
	b43_led_update(dev, &wl->leds.led_radio);
	b43_led_update(dev, &wl->leds.led_assoc);

out_unlock:
	mutex_unlock(&wl->mutex);
}

/* Callback from the LED subsystem. */
static void b43_led_brightness_set(struct led_classdev *led_dev,
				   enum led_brightness brightness)
{
	struct b43_led *led = container_of(led_dev, struct b43_led, led_dev);
	struct b43_wl *wl = led->wl;

	/* The check for current_dev is only needed while unregistering,
	 * so it is sequencial and does not race. But we must not dereference
	 * current_dev here. */
	if (likely(wl->current_dev)) {
		atomic_set(&led->state, brightness);
		ieee80211_queue_work(wl->hw, &wl->leds.work);
	}
122 123
}

M
Michael Buesch 已提交
124
static int b43_register_led(struct b43_wldev *dev, struct b43_led *led,
J
Johannes Berg 已提交
125
			    const char *name, const char *default_trigger,
M
Michael Buesch 已提交
126
			    u8 led_index, bool activelow)
127
{
M
Michael Buesch 已提交
128 129
	int err;

130
	if (led->wl)
M
Michael Buesch 已提交
131 132 133
		return -EEXIST;
	if (!default_trigger)
		return -EINVAL;
134
	led->wl = dev->wl;
M
Michael Buesch 已提交
135 136 137
	led->index = led_index;
	led->activelow = activelow;
	strncpy(led->name, name, sizeof(led->name));
138
	atomic_set(&led->state, 0);
M
Michael Buesch 已提交
139 140 141 142 143 144 145 146

	led->led_dev.name = led->name;
	led->led_dev.default_trigger = default_trigger;
	led->led_dev.brightness_set = b43_led_brightness_set;

	err = led_classdev_register(dev->dev->dev, &led->led_dev);
	if (err) {
		b43warn(dev->wl, "LEDs: Failed to register %s\n", name);
147
		led->wl = NULL;
M
Michael Buesch 已提交
148 149
		return err;
	}
150

M
Michael Buesch 已提交
151 152 153 154 155
	return 0;
}

static void b43_unregister_led(struct b43_led *led)
{
156
	if (!led->wl)
M
Michael Buesch 已提交
157
		return;
158
	led_classdev_unregister(&led->led_dev);
159
	led->wl = NULL;
M
Michael Buesch 已提交
160
}
161

M
Michael Buesch 已提交
162 163 164 165 166 167 168
static void b43_map_led(struct b43_wldev *dev,
			u8 led_index,
			enum b43_led_behaviour behaviour,
			bool activelow)
{
	struct ieee80211_hw *hw = dev->wl->hw;
	char name[B43_LED_MAX_NAME_LEN + 1];
169

M
Michael Buesch 已提交
170 171 172 173 174 175
	/* Map the b43 specific LED behaviour value to the
	 * generic LED triggers. */
	switch (behaviour) {
	case B43_LED_INACTIVE:
	case B43_LED_OFF:
	case B43_LED_ON:
176
		break;
M
Michael Buesch 已提交
177 178 179 180
	case B43_LED_ACTIVITY:
	case B43_LED_TRANSFER:
	case B43_LED_APTRANSFER:
		snprintf(name, sizeof(name),
181
			 "b43-%s::tx", wiphy_name(hw->wiphy));
182
		b43_register_led(dev, &dev->wl->leds.led_tx, name,
M
Michael Buesch 已提交
183 184 185
				 ieee80211_get_tx_led_name(hw),
				 led_index, activelow);
		snprintf(name, sizeof(name),
186
			 "b43-%s::rx", wiphy_name(hw->wiphy));
187
		b43_register_led(dev, &dev->wl->leds.led_rx, name,
M
Michael Buesch 已提交
188 189
				 ieee80211_get_rx_led_name(hw),
				 led_index, activelow);
190
		break;
M
Michael Buesch 已提交
191 192 193 194
	case B43_LED_RADIO_ALL:
	case B43_LED_RADIO_A:
	case B43_LED_RADIO_B:
	case B43_LED_MODE_BG:
M
Michael Buesch 已提交
195
		snprintf(name, sizeof(name),
196
			 "b43-%s::radio", wiphy_name(hw->wiphy));
197
		b43_register_led(dev, &dev->wl->leds.led_radio, name,
198
				 ieee80211_get_radio_led_name(hw),
M
Michael Buesch 已提交
199 200
				 led_index, activelow);
		break;
M
Michael Buesch 已提交
201 202 203
	case B43_LED_WEIRD:
	case B43_LED_ASSOC:
		snprintf(name, sizeof(name),
204
			 "b43-%s::assoc", wiphy_name(hw->wiphy));
205
		b43_register_led(dev, &dev->wl->leds.led_assoc, name,
M
Michael Buesch 已提交
206 207
				 ieee80211_get_assoc_led_name(hw),
				 led_index, activelow);
208 209
		break;
	default:
M
Michael Buesch 已提交
210 211 212
		b43warn(dev->wl, "LEDs: Unknown behaviour 0x%02X\n",
			behaviour);
		break;
213 214 215
	}
}

216 217 218 219
static void b43_led_get_sprominfo(struct b43_wldev *dev,
				  unsigned int led_index,
				  enum b43_led_behaviour *behaviour,
				  bool *activelow)
220
{
M
Michael Buesch 已提交
221
	struct ssb_bus *bus = dev->dev->bus;
222 223
	u8 sprom[4];

224 225 226 227
	sprom[0] = bus->sprom.gpio0;
	sprom[1] = bus->sprom.gpio1;
	sprom[2] = bus->sprom.gpio2;
	sprom[3] = bus->sprom.gpio3;
228

229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
	if (sprom[led_index] == 0xFF) {
		/* There is no LED information in the SPROM
		 * for this LED. Hardcode it here. */
		*activelow = 0;
		switch (led_index) {
		case 0:
			*behaviour = B43_LED_ACTIVITY;
			*activelow = 1;
			if (bus->boardinfo.vendor == PCI_VENDOR_ID_COMPAQ)
				*behaviour = B43_LED_RADIO_ALL;
			break;
		case 1:
			*behaviour = B43_LED_RADIO_B;
			if (bus->boardinfo.vendor == PCI_VENDOR_ID_ASUSTEK)
				*behaviour = B43_LED_ASSOC;
			break;
		case 2:
			*behaviour = B43_LED_RADIO_A;
			break;
		case 3:
			*behaviour = B43_LED_OFF;
			break;
		default:
			B43_WARN_ON(1);
			return;
		}
	} else {
		*behaviour = sprom[led_index] & B43_LED_BEHAVIOUR;
		*activelow = !!(sprom[led_index] & B43_LED_ACTIVELOW);
	}
}

void b43_leds_init(struct b43_wldev *dev)
{
	struct b43_led *led;
	unsigned int i;
	enum b43_led_behaviour behaviour;
	bool activelow;

	/* Sync the RF-kill LED state (if we have one) with radio and switch states. */
	led = &dev->wl->leds.led_radio;
	if (led->wl) {
		if (dev->phy.radio_on && b43_is_hw_radio_enabled(dev)) {
			b43_led_turn_on(dev, led->index, led->activelow);
			led->hw_state = 1;
			atomic_set(&led->state, 1);
275
		} else {
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314
			b43_led_turn_off(dev, led->index, led->activelow);
			led->hw_state = 0;
			atomic_set(&led->state, 0);
		}
	}

	/* Initialize TX/RX/ASSOC leds */
	led = &dev->wl->leds.led_tx;
	if (led->wl) {
		b43_led_turn_off(dev, led->index, led->activelow);
		led->hw_state = 0;
		atomic_set(&led->state, 0);
	}
	led = &dev->wl->leds.led_rx;
	if (led->wl) {
		b43_led_turn_off(dev, led->index, led->activelow);
		led->hw_state = 0;
		atomic_set(&led->state, 0);
	}
	led = &dev->wl->leds.led_assoc;
	if (led->wl) {
		b43_led_turn_off(dev, led->index, led->activelow);
		led->hw_state = 0;
		atomic_set(&led->state, 0);
	}

	/* Initialize other LED states. */
	for (i = 0; i < B43_MAX_NR_LEDS; i++) {
		b43_led_get_sprominfo(dev, i, &behaviour, &activelow);
		switch (behaviour) {
		case B43_LED_OFF:
			b43_led_turn_off(dev, i, activelow);
			break;
		case B43_LED_ON:
			b43_led_turn_on(dev, i, activelow);
			break;
		default:
			/* Leave others as-is. */
			break;
315 316 317 318 319 320
		}
	}
}

void b43_leds_exit(struct b43_wldev *dev)
{
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
	struct b43_leds *leds = &dev->wl->leds;

	b43_led_turn_off(dev, leds->led_tx.index, leds->led_tx.activelow);
	b43_led_turn_off(dev, leds->led_rx.index, leds->led_rx.activelow);
	b43_led_turn_off(dev, leds->led_assoc.index, leds->led_assoc.activelow);
	b43_led_turn_off(dev, leds->led_radio.index, leds->led_radio.activelow);
}

void b43_leds_register(struct b43_wldev *dev)
{
	unsigned int i;
	enum b43_led_behaviour behaviour;
	bool activelow;

	INIT_WORK(&dev->wl->leds.work, b43_leds_work);

	/* Register the LEDs to the LED subsystem. */
	for (i = 0; i < B43_MAX_NR_LEDS; i++) {
		b43_led_get_sprominfo(dev, i, &behaviour, &activelow);
		b43_map_led(dev, i, behaviour, activelow);
	}
}

void b43_leds_unregister(struct b43_wldev *dev)
{
	struct b43_leds *leds = &dev->wl->leds;

	b43_unregister_led(&leds->led_tx);
	b43_unregister_led(&leds->led_rx);
	b43_unregister_led(&leds->led_assoc);
	b43_unregister_led(&leds->led_radio);
352
}