blob: 5e64252f80f6f7059b258cd4abd0ef3c8a67c13e [file] [log] [blame]
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2003 - 2009 Intel Corporation. All rights reserved.
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
Winkler, Tomas759ef892008-12-09 11:28:58 -080022 * Intel Linux Wireless <ilw@linux.intel.com>
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070023 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27
28#include <linux/kernel.h>
29#include <linux/module.h>
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070030#include <linux/init.h>
31#include <linux/pci.h>
32#include <linux/dma-mapping.h>
33#include <linux/delay.h>
34#include <linux/skbuff.h>
35#include <linux/netdevice.h>
36#include <linux/wireless.h>
37#include <net/mac80211.h>
38#include <linux/etherdevice.h>
39#include <asm/unaligned.h>
40
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070041#include "iwl-dev.h"
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070042#include "iwl-core.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070043#include "iwl-io.h"
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070044
Tomas Winkler0eee6122008-07-11 11:53:36 +080045#ifdef CONFIG_IWLWIFI_DEBUG
46static const char *led_type_str[] = {
47 __stringify(IWL_LED_TRG_TX),
48 __stringify(IWL_LED_TRG_RX),
49 __stringify(IWL_LED_TRG_ASSOC),
50 __stringify(IWL_LED_TRG_RADIO),
51 NULL
52};
53#endif /* CONFIG_IWLWIFI_DEBUG */
54
55
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070056static const struct {
57 u16 tpt;
58 u8 on_time;
Tomas Winkler0eee6122008-07-11 11:53:36 +080059 u8 off_time;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070060} blink_tbl[] =
61{
62 {300, 25, 25},
63 {200, 40, 40},
64 {100, 55, 55},
65 {70, 65, 65},
66 {50, 75, 75},
67 {20, 85, 85},
68 {15, 95, 95 },
69 {10, 110, 110},
70 {5, 130, 130},
Tomas Winklerec1a7462008-07-11 11:53:37 +080071 {0, 167, 167},
72/* SOLID_ON */
73 {-1, IWL_LED_SOLID, 0}
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070074};
75
Tomas Winklerec1a7462008-07-11 11:53:37 +080076#define IWL_1MB_RATE (128 * 1024)
77#define IWL_LED_THRESHOLD (16)
78#define IWL_MAX_BLINK_TBL (ARRAY_SIZE(blink_tbl) - 1) /* exclude SOLID_ON */
79#define IWL_SOLID_BLINK_IDX (ARRAY_SIZE(blink_tbl) - 1)
80
81/* [0-256] -> [0..8] FIXME: we need [0..10] */
82static inline int iwl_brightness_to_idx(enum led_brightness brightness)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070083{
Tomas Winklerec1a7462008-07-11 11:53:37 +080084 return fls(0x000000FF & (u32)brightness);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070085}
86
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070087/* Send led command */
Tomas Winklerec1a7462008-07-11 11:53:37 +080088static int iwl_send_led_cmd(struct iwl_priv *priv, struct iwl_led_cmd *led_cmd)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070089{
90 struct iwl_host_cmd cmd = {
91 .id = REPLY_LEDS_CMD,
Tomas Winklerec1a7462008-07-11 11:53:37 +080092 .len = sizeof(struct iwl_led_cmd),
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070093 .data = led_cmd,
94 .meta.flags = CMD_ASYNC,
Tomas Winklerec1a7462008-07-11 11:53:37 +080095 .meta.u.callback = NULL,
Mohamed Abbasab53d8a2008-03-25 16:33:36 -070096 };
97 u32 reg;
98
Tomas Winkler3395f6e2008-03-25 16:33:37 -070099 reg = iwl_read32(priv, CSR_LED_REG);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700100 if (reg != (reg & CSR_LED_BSM_CTRL_MSK))
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700101 iwl_write32(priv, CSR_LED_REG, reg & CSR_LED_BSM_CTRL_MSK);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700102
103 return iwl_send_cmd(priv, &cmd);
104}
105
Tomas Winklerec1a7462008-07-11 11:53:37 +0800106/* Set led pattern command */
Abhijeet Kolekar3eb20112008-07-11 11:53:42 +0800107static int iwl4965_led_pattern(struct iwl_priv *priv, int led_id,
108 unsigned int idx)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700109{
Tomas Winklerec1a7462008-07-11 11:53:37 +0800110 struct iwl_led_cmd led_cmd = {
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700111 .id = led_id,
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700112 .interval = IWL_DEF_LED_INTRVL
113 };
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700114
Tomas Winklerec1a7462008-07-11 11:53:37 +0800115 BUG_ON(idx > IWL_MAX_BLINK_TBL);
116
117 led_cmd.on = blink_tbl[idx].on_time;
118 led_cmd.off = blink_tbl[idx].off_time;
119
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700120 return iwl_send_led_cmd(priv, &led_cmd);
121}
122
123/* Set led register off */
124static int iwl4965_led_on_reg(struct iwl_priv *priv, int led_id)
125{
Tomas Winklere1623442009-01-27 14:27:56 -0800126 IWL_DEBUG_LED(priv, "led on %d\n", led_id);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700127 iwl_write32(priv, CSR_LED_REG, CSR_LED_REG_TRUN_ON);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700128 return 0;
129}
130
131#if 0
Tomas Winklerec1a7462008-07-11 11:53:37 +0800132/* Set led on command */
133static int iwl4965_led_on(struct iwl_priv *priv, int led_id)
134{
135 struct iwl_led_cmd led_cmd = {
136 .id = led_id,
137 .on = IWL_LED_SOLID,
138 .off = 0,
139 .interval = IWL_DEF_LED_INTRVL
140 };
141 return iwl_send_led_cmd(priv, &led_cmd);
142}
143
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700144/* Set led off command */
145int iwl4965_led_off(struct iwl_priv *priv, int led_id)
146{
Tomas Winklerec1a7462008-07-11 11:53:37 +0800147 struct iwl_led_cmd led_cmd = {
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700148 .id = led_id,
149 .on = 0,
150 .off = 0,
151 .interval = IWL_DEF_LED_INTRVL
152 };
Tomas Winklere1623442009-01-27 14:27:56 -0800153 IWL_DEBUG_LED(priv, "led off %d\n", led_id);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700154 return iwl_send_led_cmd(priv, &led_cmd);
155}
156#endif
157
158
159/* Set led register off */
160static int iwl4965_led_off_reg(struct iwl_priv *priv, int led_id)
161{
Tomas Winklere1623442009-01-27 14:27:56 -0800162 IWL_DEBUG_LED(priv, "LED Reg off\n");
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700163 iwl_write32(priv, CSR_LED_REG, CSR_LED_REG_TRUN_OFF);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700164 return 0;
165}
166
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700167/*
Esti Kummerc785d1d2008-07-18 13:53:07 +0800168 * Set led register in case of disassociation according to rfkill state
169 */
170static int iwl_led_associate(struct iwl_priv *priv, int led_id)
171{
Tomas Winklere1623442009-01-27 14:27:56 -0800172 IWL_DEBUG_LED(priv, "Associated\n");
Esti Kummerc785d1d2008-07-18 13:53:07 +0800173 priv->allow_blinking = 1;
174 return iwl4965_led_on_reg(priv, led_id);
175}
176static int iwl_led_disassociate(struct iwl_priv *priv, int led_id)
177{
178 priv->allow_blinking = 0;
Esti Kummerc785d1d2008-07-18 13:53:07 +0800179
180 return 0;
181}
182
183/*
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700184 * brightness call back function for Tx/Rx LED
185 */
Tomas Winklerec1a7462008-07-11 11:53:37 +0800186static int iwl_led_associated(struct iwl_priv *priv, int led_id)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700187{
188 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
189 !test_bit(STATUS_READY, &priv->status))
190 return 0;
191
192
193 /* start counting Tx/Rx bytes */
194 if (!priv->last_blink_time && priv->allow_blinking)
195 priv->last_blink_time = jiffies;
196 return 0;
197}
198
199/*
200 * brightness call back for association and radio
201 */
Tomas Winkler0eee6122008-07-11 11:53:36 +0800202static void iwl_led_brightness_set(struct led_classdev *led_cdev,
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700203 enum led_brightness brightness)
204{
Tomas Winkler0eee6122008-07-11 11:53:36 +0800205 struct iwl_led *led = container_of(led_cdev, struct iwl_led, led_dev);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700206 struct iwl_priv *priv = led->priv;
207
208 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
209 return;
210
Tomas Winkler0eee6122008-07-11 11:53:36 +0800211
Tomas Winklere1623442009-01-27 14:27:56 -0800212 IWL_DEBUG_LED(priv, "Led type = %s brightness = %d\n",
Tomas Winkler0eee6122008-07-11 11:53:36 +0800213 led_type_str[led->type], brightness);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700214 switch (brightness) {
215 case LED_FULL:
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700216 if (led->led_on)
217 led->led_on(priv, IWL_LED_LINK);
218 break;
219 case LED_OFF:
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700220 if (led->led_off)
221 led->led_off(priv, IWL_LED_LINK);
222 break;
223 default:
Tomas Winklerec1a7462008-07-11 11:53:37 +0800224 if (led->led_pattern) {
225 int idx = iwl_brightness_to_idx(brightness);
226 led->led_pattern(priv, IWL_LED_LINK, idx);
227 }
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700228 break;
229 }
230}
231
232
233
234/*
235 * Register led class with the system
236 */
Tomas Winkler0eee6122008-07-11 11:53:36 +0800237static int iwl_leds_register_led(struct iwl_priv *priv, struct iwl_led *led,
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700238 enum led_type type, u8 set_led,
Sven Wegener5cbbb372008-08-01 21:57:16 +0200239 char *trigger)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700240{
241 struct device *device = wiphy_dev(priv->hw->wiphy);
242 int ret;
243
Sven Wegener5cbbb372008-08-01 21:57:16 +0200244 led->led_dev.name = led->name;
Tomas Winkler0eee6122008-07-11 11:53:36 +0800245 led->led_dev.brightness_set = iwl_led_brightness_set;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700246 led->led_dev.default_trigger = trigger;
247
Tomas Winklera571ea42008-03-28 16:21:11 -0700248 led->priv = priv;
249 led->type = type;
250
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700251 ret = led_classdev_register(device, &led->led_dev);
252 if (ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800253 IWL_ERR(priv, "Error: failed to register led handler.\n");
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700254 return ret;
255 }
256
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700257 led->registered = 1;
258
259 if (set_led && led->led_on)
260 led->led_on(priv, IWL_LED_LINK);
Tomas Winklera571ea42008-03-28 16:21:11 -0700261
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700262 return 0;
263}
264
265
266/*
267 * calculate blink rate according to last 2 sec Tx/Rx activities
268 */
Tomas Winklerec1a7462008-07-11 11:53:37 +0800269static int iwl_get_blink_rate(struct iwl_priv *priv)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700270{
271 int i;
Tomas Winkler0eee6122008-07-11 11:53:36 +0800272 u64 current_tpt = priv->tx_stats[2].bytes;
273 /* FIXME: + priv->rx_stats[2].bytes; */
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700274 s64 tpt = current_tpt - priv->led_tpt;
275
Tomas Winklera96a27f2008-10-23 23:48:56 -0700276 if (tpt < 0) /* wraparound */
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700277 tpt = -tpt;
278
Tomas Winklere1623442009-01-27 14:27:56 -0800279 IWL_DEBUG_LED(priv, "tpt %lld current_tpt %llu\n",
Andrew Morton03121102008-07-22 23:50:04 -0700280 (long long)tpt,
281 (unsigned long long)current_tpt);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700282 priv->led_tpt = current_tpt;
283
Tomas Winklerec1a7462008-07-11 11:53:37 +0800284 if (!priv->allow_blinking)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700285 i = IWL_MAX_BLINK_TBL;
Tomas Winklerec1a7462008-07-11 11:53:37 +0800286 else
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700287 for (i = 0; i < IWL_MAX_BLINK_TBL; i++)
288 if (tpt > (blink_tbl[i].tpt * IWL_1MB_RATE))
289 break;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700290
Tomas Winklere1623442009-01-27 14:27:56 -0800291 IWL_DEBUG_LED(priv, "LED BLINK IDX=%d\n", i);
Tomas Winklerec1a7462008-07-11 11:53:37 +0800292 return i;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700293}
294
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700295/*
296 * this function called from handler. Since setting Led command can
297 * happen very frequent we postpone led command to be called from
298 * REPLY handler so we know ucode is up
299 */
300void iwl_leds_background(struct iwl_priv *priv)
301{
Tomas Winklerec1a7462008-07-11 11:53:37 +0800302 u8 blink_idx;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700303
304 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
305 priv->last_blink_time = 0;
306 return;
307 }
Esti Kummerc785d1d2008-07-18 13:53:07 +0800308 if (iwl_is_rfkill(priv)) {
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700309 priv->last_blink_time = 0;
310 return;
311 }
312
313 if (!priv->allow_blinking) {
314 priv->last_blink_time = 0;
Tomas Winklerec1a7462008-07-11 11:53:37 +0800315 if (priv->last_blink_rate != IWL_SOLID_BLINK_IDX) {
316 priv->last_blink_rate = IWL_SOLID_BLINK_IDX;
317 iwl4965_led_pattern(priv, IWL_LED_LINK,
318 IWL_SOLID_BLINK_IDX);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700319 }
320 return;
321 }
322 if (!priv->last_blink_time ||
323 !time_after(jiffies, priv->last_blink_time +
324 msecs_to_jiffies(1000)))
325 return;
326
Tomas Winklerec1a7462008-07-11 11:53:37 +0800327 blink_idx = iwl_get_blink_rate(priv);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700328
329 /* call only if blink rate change */
Tomas Winklerec1a7462008-07-11 11:53:37 +0800330 if (blink_idx != priv->last_blink_rate)
331 iwl4965_led_pattern(priv, IWL_LED_LINK, blink_idx);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700332
Tomas Winkler0eee6122008-07-11 11:53:36 +0800333 priv->last_blink_time = jiffies;
Tomas Winklerec1a7462008-07-11 11:53:37 +0800334 priv->last_blink_rate = blink_idx;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700335}
336EXPORT_SYMBOL(iwl_leds_background);
337
338/* Register all led handler */
339int iwl_leds_register(struct iwl_priv *priv)
340{
341 char *trigger;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700342 int ret;
343
344 priv->last_blink_rate = 0;
345 priv->led_tpt = 0;
346 priv->last_blink_time = 0;
347 priv->allow_blinking = 0;
348
349 trigger = ieee80211_get_radio_led_name(priv->hw);
Sven Wegener5cbbb372008-08-01 21:57:16 +0200350 snprintf(priv->led[IWL_LED_TRG_RADIO].name,
Danny Kukawkae5d24ef2009-01-29 21:58:26 +0100351 sizeof(priv->led[IWL_LED_TRG_RADIO].name), "iwl-%s::radio",
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700352 wiphy_name(priv->hw->wiphy));
353
354 priv->led[IWL_LED_TRG_RADIO].led_on = iwl4965_led_on_reg;
355 priv->led[IWL_LED_TRG_RADIO].led_off = iwl4965_led_off_reg;
356 priv->led[IWL_LED_TRG_RADIO].led_pattern = NULL;
357
Tomas Winkler0eee6122008-07-11 11:53:36 +0800358 ret = iwl_leds_register_led(priv, &priv->led[IWL_LED_TRG_RADIO],
Sven Wegener5cbbb372008-08-01 21:57:16 +0200359 IWL_LED_TRG_RADIO, 1, trigger);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700360 if (ret)
361 goto exit_fail;
362
363 trigger = ieee80211_get_assoc_led_name(priv->hw);
Sven Wegener5cbbb372008-08-01 21:57:16 +0200364 snprintf(priv->led[IWL_LED_TRG_ASSOC].name,
Danny Kukawkae5d24ef2009-01-29 21:58:26 +0100365 sizeof(priv->led[IWL_LED_TRG_ASSOC].name), "iwl-%s::assoc",
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700366 wiphy_name(priv->hw->wiphy));
367
Tomas Winkler0eee6122008-07-11 11:53:36 +0800368 ret = iwl_leds_register_led(priv, &priv->led[IWL_LED_TRG_ASSOC],
Sven Wegener5cbbb372008-08-01 21:57:16 +0200369 IWL_LED_TRG_ASSOC, 0, trigger);
Tomas Winkler0eee6122008-07-11 11:53:36 +0800370
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700371 /* for assoc always turn led on */
Esti Kummerc785d1d2008-07-18 13:53:07 +0800372 priv->led[IWL_LED_TRG_ASSOC].led_on = iwl_led_associate;
373 priv->led[IWL_LED_TRG_ASSOC].led_off = iwl_led_disassociate;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700374 priv->led[IWL_LED_TRG_ASSOC].led_pattern = NULL;
375
376 if (ret)
377 goto exit_fail;
378
379 trigger = ieee80211_get_rx_led_name(priv->hw);
Sven Wegener5cbbb372008-08-01 21:57:16 +0200380 snprintf(priv->led[IWL_LED_TRG_RX].name,
Danny Kukawkae5d24ef2009-01-29 21:58:26 +0100381 sizeof(priv->led[IWL_LED_TRG_RX].name), "iwl-%s::RX",
Sven Wegener5cbbb372008-08-01 21:57:16 +0200382 wiphy_name(priv->hw->wiphy));
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700383
Tomas Winkler0eee6122008-07-11 11:53:36 +0800384 ret = iwl_leds_register_led(priv, &priv->led[IWL_LED_TRG_RX],
Sven Wegener5cbbb372008-08-01 21:57:16 +0200385 IWL_LED_TRG_RX, 0, trigger);
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700386
Tomas Winklerec1a7462008-07-11 11:53:37 +0800387 priv->led[IWL_LED_TRG_RX].led_on = iwl_led_associated;
388 priv->led[IWL_LED_TRG_RX].led_off = iwl_led_associated;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700389 priv->led[IWL_LED_TRG_RX].led_pattern = iwl4965_led_pattern;
390
391 if (ret)
392 goto exit_fail;
393
394 trigger = ieee80211_get_tx_led_name(priv->hw);
Sven Wegener5cbbb372008-08-01 21:57:16 +0200395 snprintf(priv->led[IWL_LED_TRG_TX].name,
Danny Kukawkae5d24ef2009-01-29 21:58:26 +0100396 sizeof(priv->led[IWL_LED_TRG_TX].name), "iwl-%s::TX",
Sven Wegener5cbbb372008-08-01 21:57:16 +0200397 wiphy_name(priv->hw->wiphy));
398
Tomas Winkler0eee6122008-07-11 11:53:36 +0800399 ret = iwl_leds_register_led(priv, &priv->led[IWL_LED_TRG_TX],
Sven Wegener5cbbb372008-08-01 21:57:16 +0200400 IWL_LED_TRG_TX, 0, trigger);
Tomas Winkler0eee6122008-07-11 11:53:36 +0800401
Tomas Winklerec1a7462008-07-11 11:53:37 +0800402 priv->led[IWL_LED_TRG_TX].led_on = iwl_led_associated;
403 priv->led[IWL_LED_TRG_TX].led_off = iwl_led_associated;
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700404 priv->led[IWL_LED_TRG_TX].led_pattern = iwl4965_led_pattern;
405
406 if (ret)
407 goto exit_fail;
408
409 return 0;
410
411exit_fail:
412 iwl_leds_unregister(priv);
413 return ret;
414}
415EXPORT_SYMBOL(iwl_leds_register);
416
417/* unregister led class */
Tomas Winkler0eee6122008-07-11 11:53:36 +0800418static void iwl_leds_unregister_led(struct iwl_led *led, u8 set_led)
Mohamed Abbasab53d8a2008-03-25 16:33:36 -0700419{
420 if (!led->registered)
421 return;
422
423 led_classdev_unregister(&led->led_dev);
424
425 if (set_led)
426 led->led_dev.brightness_set(&led->led_dev, LED_OFF);
427 led->registered = 0;
428}
429
430/* Unregister all led handlers */
431void iwl_leds_unregister(struct iwl_priv *priv)
432{
433 iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_ASSOC], 0);
434 iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_RX], 0);
435 iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_TX], 0);
436 iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_RADIO], 1);
437}
438EXPORT_SYMBOL(iwl_leds_unregister);
439