diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-led.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-led.c | 447 |
1 files changed, 447 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-led.c b/drivers/net/wireless/iwlwifi/iwl-led.c new file mode 100644 index 000000000000..d59ad1844e25 --- /dev/null +++ b/drivers/net/wireless/iwlwifi/iwl-led.c | |||
@@ -0,0 +1,447 @@ | |||
1 | /****************************************************************************** | ||
2 | * | ||
3 | * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved. | ||
4 | * | ||
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: | ||
22 | * James P. Ketrenos <ipw2100-admin@linux.intel.com> | ||
23 | * 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> | ||
30 | #include <linux/version.h> | ||
31 | #include <linux/init.h> | ||
32 | #include <linux/pci.h> | ||
33 | #include <linux/dma-mapping.h> | ||
34 | #include <linux/delay.h> | ||
35 | #include <linux/skbuff.h> | ||
36 | #include <linux/netdevice.h> | ||
37 | #include <linux/wireless.h> | ||
38 | #include <net/mac80211.h> | ||
39 | #include <linux/etherdevice.h> | ||
40 | #include <asm/unaligned.h> | ||
41 | |||
42 | #include "iwl-4965.h" | ||
43 | #include "iwl-io.h" | ||
44 | #include "iwl-core.h" | ||
45 | #include "iwl-helpers.h" | ||
46 | |||
47 | #define IWL_1MB_RATE (128 * 1024) | ||
48 | #define IWL_LED_THRESHOLD (16) | ||
49 | #define IWL_MAX_BLINK_TBL (10) | ||
50 | |||
51 | static const struct { | ||
52 | u16 tpt; | ||
53 | u8 on_time; | ||
54 | u8 of_time; | ||
55 | } blink_tbl[] = | ||
56 | { | ||
57 | {300, 25, 25}, | ||
58 | {200, 40, 40}, | ||
59 | {100, 55, 55}, | ||
60 | {70, 65, 65}, | ||
61 | {50, 75, 75}, | ||
62 | {20, 85, 85}, | ||
63 | {15, 95, 95 }, | ||
64 | {10, 110, 110}, | ||
65 | {5, 130, 130}, | ||
66 | {0, 167, 167} | ||
67 | }; | ||
68 | |||
69 | static int iwl_led_cmd_callback(struct iwl_priv *priv, | ||
70 | struct iwl_cmd *cmd, struct sk_buff *skb) | ||
71 | { | ||
72 | return 1; | ||
73 | } | ||
74 | |||
75 | |||
76 | /* Send led command */ | ||
77 | static int iwl_send_led_cmd(struct iwl_priv *priv, | ||
78 | struct iwl4965_led_cmd *led_cmd) | ||
79 | { | ||
80 | struct iwl_host_cmd cmd = { | ||
81 | .id = REPLY_LEDS_CMD, | ||
82 | .len = sizeof(struct iwl4965_led_cmd), | ||
83 | .data = led_cmd, | ||
84 | .meta.flags = CMD_ASYNC, | ||
85 | .meta.u.callback = iwl_led_cmd_callback | ||
86 | }; | ||
87 | u32 reg; | ||
88 | |||
89 | reg = iwl_read32(priv, CSR_LED_REG); | ||
90 | if (reg != (reg & CSR_LED_BSM_CTRL_MSK)) | ||
91 | iwl_write32(priv, CSR_LED_REG, reg & CSR_LED_BSM_CTRL_MSK); | ||
92 | |||
93 | return iwl_send_cmd(priv, &cmd); | ||
94 | } | ||
95 | |||
96 | |||
97 | /* Set led on command */ | ||
98 | static int iwl4965_led_on(struct iwl_priv *priv, int led_id) | ||
99 | { | ||
100 | struct iwl4965_led_cmd led_cmd = { | ||
101 | .id = led_id, | ||
102 | .on = IWL_LED_SOLID, | ||
103 | .off = 0, | ||
104 | .interval = IWL_DEF_LED_INTRVL | ||
105 | }; | ||
106 | return iwl_send_led_cmd(priv, &led_cmd); | ||
107 | } | ||
108 | |||
109 | /* Set led on command */ | ||
110 | static int iwl4965_led_pattern(struct iwl_priv *priv, int led_id, | ||
111 | enum led_brightness brightness) | ||
112 | { | ||
113 | struct iwl4965_led_cmd led_cmd = { | ||
114 | .id = led_id, | ||
115 | .on = brightness, | ||
116 | .off = brightness, | ||
117 | .interval = IWL_DEF_LED_INTRVL | ||
118 | }; | ||
119 | if (brightness == LED_FULL) { | ||
120 | led_cmd.on = IWL_LED_SOLID; | ||
121 | led_cmd.off = 0; | ||
122 | } | ||
123 | return iwl_send_led_cmd(priv, &led_cmd); | ||
124 | } | ||
125 | |||
126 | /* Set led register off */ | ||
127 | static int iwl4965_led_on_reg(struct iwl_priv *priv, int led_id) | ||
128 | { | ||
129 | IWL_DEBUG_LED("led on %d\n", led_id); | ||
130 | iwl_write32(priv, CSR_LED_REG, CSR_LED_REG_TRUN_ON); | ||
131 | return 0; | ||
132 | } | ||
133 | |||
134 | #if 0 | ||
135 | /* Set led off command */ | ||
136 | int iwl4965_led_off(struct iwl_priv *priv, int led_id) | ||
137 | { | ||
138 | struct iwl4965_led_cmd led_cmd = { | ||
139 | .id = led_id, | ||
140 | .on = 0, | ||
141 | .off = 0, | ||
142 | .interval = IWL_DEF_LED_INTRVL | ||
143 | }; | ||
144 | IWL_DEBUG_LED("led off %d\n", led_id); | ||
145 | return iwl_send_led_cmd(priv, &led_cmd); | ||
146 | } | ||
147 | #endif | ||
148 | |||
149 | |||
150 | /* Set led register off */ | ||
151 | static int iwl4965_led_off_reg(struct iwl_priv *priv, int led_id) | ||
152 | { | ||
153 | IWL_DEBUG_LED("radio off\n"); | ||
154 | iwl_write32(priv, CSR_LED_REG, CSR_LED_REG_TRUN_OFF); | ||
155 | return 0; | ||
156 | } | ||
157 | |||
158 | /* Set led blink command */ | ||
159 | static int iwl4965_led_not_solid(struct iwl_priv *priv, int led_id, | ||
160 | u8 brightness) | ||
161 | { | ||
162 | struct iwl4965_led_cmd led_cmd = { | ||
163 | .id = led_id, | ||
164 | .on = brightness, | ||
165 | .off = brightness, | ||
166 | .interval = IWL_DEF_LED_INTRVL | ||
167 | }; | ||
168 | |||
169 | return iwl_send_led_cmd(priv, &led_cmd); | ||
170 | } | ||
171 | |||
172 | |||
173 | /* | ||
174 | * brightness call back function for Tx/Rx LED | ||
175 | */ | ||
176 | static int iwl4965_led_associated(struct iwl_priv *priv, int led_id) | ||
177 | { | ||
178 | if (test_bit(STATUS_EXIT_PENDING, &priv->status) || | ||
179 | !test_bit(STATUS_READY, &priv->status)) | ||
180 | return 0; | ||
181 | |||
182 | |||
183 | /* start counting Tx/Rx bytes */ | ||
184 | if (!priv->last_blink_time && priv->allow_blinking) | ||
185 | priv->last_blink_time = jiffies; | ||
186 | return 0; | ||
187 | } | ||
188 | |||
189 | /* | ||
190 | * brightness call back for association and radio | ||
191 | */ | ||
192 | static void iwl4965_led_brightness_set(struct led_classdev *led_cdev, | ||
193 | enum led_brightness brightness) | ||
194 | { | ||
195 | struct iwl4965_led *led = container_of(led_cdev, | ||
196 | struct iwl4965_led, led_dev); | ||
197 | struct iwl_priv *priv = led->priv; | ||
198 | |||
199 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) | ||
200 | return; | ||
201 | |||
202 | switch (brightness) { | ||
203 | case LED_FULL: | ||
204 | if (led->type == IWL_LED_TRG_ASSOC) | ||
205 | priv->allow_blinking = 1; | ||
206 | |||
207 | if (led->led_on) | ||
208 | led->led_on(priv, IWL_LED_LINK); | ||
209 | break; | ||
210 | case LED_OFF: | ||
211 | if (led->type == IWL_LED_TRG_ASSOC) | ||
212 | priv->allow_blinking = 0; | ||
213 | |||
214 | if (led->led_off) | ||
215 | led->led_off(priv, IWL_LED_LINK); | ||
216 | break; | ||
217 | default: | ||
218 | if (led->led_pattern) | ||
219 | led->led_pattern(priv, IWL_LED_LINK, brightness); | ||
220 | break; | ||
221 | } | ||
222 | } | ||
223 | |||
224 | |||
225 | |||
226 | /* | ||
227 | * Register led class with the system | ||
228 | */ | ||
229 | static int iwl_leds_register_led(struct iwl_priv *priv, | ||
230 | struct iwl4965_led *led, | ||
231 | enum led_type type, u8 set_led, | ||
232 | const char *name, char *trigger) | ||
233 | { | ||
234 | struct device *device = wiphy_dev(priv->hw->wiphy); | ||
235 | int ret; | ||
236 | |||
237 | led->led_dev.name = name; | ||
238 | led->led_dev.brightness_set = iwl4965_led_brightness_set; | ||
239 | led->led_dev.default_trigger = trigger; | ||
240 | |||
241 | ret = led_classdev_register(device, &led->led_dev); | ||
242 | if (ret) { | ||
243 | IWL_ERROR("Error: failed to register led handler.\n"); | ||
244 | return ret; | ||
245 | } | ||
246 | |||
247 | led->priv = priv; | ||
248 | led->type = type; | ||
249 | led->registered = 1; | ||
250 | |||
251 | if (set_led && led->led_on) | ||
252 | led->led_on(priv, IWL_LED_LINK); | ||
253 | return 0; | ||
254 | } | ||
255 | |||
256 | |||
257 | /* | ||
258 | * calculate blink rate according to last 2 sec Tx/Rx activities | ||
259 | */ | ||
260 | static inline u8 get_blink_rate(struct iwl_priv *priv) | ||
261 | { | ||
262 | int i; | ||
263 | u8 blink_rate; | ||
264 | u64 current_tpt = priv->tx_stats[2].bytes + priv->rx_stats[2].bytes; | ||
265 | s64 tpt = current_tpt - priv->led_tpt; | ||
266 | |||
267 | if (tpt < 0) /* wrapparound */ | ||
268 | tpt = -tpt; | ||
269 | |||
270 | priv->led_tpt = current_tpt; | ||
271 | |||
272 | if (tpt < IWL_LED_THRESHOLD) { | ||
273 | i = IWL_MAX_BLINK_TBL; | ||
274 | } else { | ||
275 | for (i = 0; i < IWL_MAX_BLINK_TBL; i++) | ||
276 | if (tpt > (blink_tbl[i].tpt * IWL_1MB_RATE)) | ||
277 | break; | ||
278 | } | ||
279 | /* if 0 frame is transfered */ | ||
280 | if ((i == IWL_MAX_BLINK_TBL) || !priv->allow_blinking) | ||
281 | blink_rate = IWL_LED_SOLID; | ||
282 | else | ||
283 | blink_rate = blink_tbl[i].on_time; | ||
284 | |||
285 | return blink_rate; | ||
286 | } | ||
287 | |||
288 | static inline int is_rf_kill(struct iwl_priv *priv) | ||
289 | { | ||
290 | return test_bit(STATUS_RF_KILL_HW, &priv->status) || | ||
291 | test_bit(STATUS_RF_KILL_SW, &priv->status); | ||
292 | } | ||
293 | |||
294 | /* | ||
295 | * this function called from handler. Since setting Led command can | ||
296 | * happen very frequent we postpone led command to be called from | ||
297 | * REPLY handler so we know ucode is up | ||
298 | */ | ||
299 | void iwl_leds_background(struct iwl_priv *priv) | ||
300 | { | ||
301 | u8 blink_rate; | ||
302 | |||
303 | if (test_bit(STATUS_EXIT_PENDING, &priv->status)) { | ||
304 | priv->last_blink_time = 0; | ||
305 | return; | ||
306 | } | ||
307 | if (is_rf_kill(priv)) { | ||
308 | priv->last_blink_time = 0; | ||
309 | return; | ||
310 | } | ||
311 | |||
312 | if (!priv->allow_blinking) { | ||
313 | priv->last_blink_time = 0; | ||
314 | if (priv->last_blink_rate != IWL_LED_SOLID) { | ||
315 | priv->last_blink_rate = IWL_LED_SOLID; | ||
316 | iwl4965_led_on(priv, IWL_LED_LINK); | ||
317 | } | ||
318 | return; | ||
319 | } | ||
320 | if (!priv->last_blink_time || | ||
321 | !time_after(jiffies, priv->last_blink_time + | ||
322 | msecs_to_jiffies(1000))) | ||
323 | return; | ||
324 | |||
325 | blink_rate = get_blink_rate(priv); | ||
326 | |||
327 | /* call only if blink rate change */ | ||
328 | if (blink_rate != priv->last_blink_rate) { | ||
329 | if (blink_rate != IWL_LED_SOLID) { | ||
330 | priv->last_blink_time = jiffies + | ||
331 | msecs_to_jiffies(1000); | ||
332 | iwl4965_led_not_solid(priv, IWL_LED_LINK, blink_rate); | ||
333 | } else { | ||
334 | priv->last_blink_time = 0; | ||
335 | iwl4965_led_on(priv, IWL_LED_LINK); | ||
336 | } | ||
337 | } | ||
338 | |||
339 | priv->last_blink_rate = blink_rate; | ||
340 | } | ||
341 | EXPORT_SYMBOL(iwl_leds_background); | ||
342 | |||
343 | /* Register all led handler */ | ||
344 | int iwl_leds_register(struct iwl_priv *priv) | ||
345 | { | ||
346 | char *trigger; | ||
347 | char name[32]; | ||
348 | int ret; | ||
349 | |||
350 | priv->last_blink_rate = 0; | ||
351 | priv->led_tpt = 0; | ||
352 | priv->last_blink_time = 0; | ||
353 | priv->allow_blinking = 0; | ||
354 | |||
355 | trigger = ieee80211_get_radio_led_name(priv->hw); | ||
356 | snprintf(name, sizeof(name), "iwl-%s:radio", | ||
357 | wiphy_name(priv->hw->wiphy)); | ||
358 | |||
359 | priv->led[IWL_LED_TRG_RADIO].led_on = iwl4965_led_on_reg; | ||
360 | priv->led[IWL_LED_TRG_RADIO].led_off = iwl4965_led_off_reg; | ||
361 | priv->led[IWL_LED_TRG_RADIO].led_pattern = NULL; | ||
362 | |||
363 | ret = iwl_leds_register_led(priv, | ||
364 | &priv->led[IWL_LED_TRG_RADIO], | ||
365 | IWL_LED_TRG_RADIO, 1, | ||
366 | name, trigger); | ||
367 | if (ret) | ||
368 | goto exit_fail; | ||
369 | |||
370 | trigger = ieee80211_get_assoc_led_name(priv->hw); | ||
371 | snprintf(name, sizeof(name), "iwl-%s:assoc", | ||
372 | wiphy_name(priv->hw->wiphy)); | ||
373 | |||
374 | ret = iwl_leds_register_led(priv, | ||
375 | &priv->led[IWL_LED_TRG_ASSOC], | ||
376 | IWL_LED_TRG_ASSOC, 0, | ||
377 | name, trigger); | ||
378 | /* for assoc always turn led on */ | ||
379 | priv->led[IWL_LED_TRG_ASSOC].led_on = iwl4965_led_on_reg; | ||
380 | priv->led[IWL_LED_TRG_ASSOC].led_off = iwl4965_led_on_reg; | ||
381 | priv->led[IWL_LED_TRG_ASSOC].led_pattern = NULL; | ||
382 | |||
383 | if (ret) | ||
384 | goto exit_fail; | ||
385 | |||
386 | trigger = ieee80211_get_rx_led_name(priv->hw); | ||
387 | snprintf(name, sizeof(name), "iwl-%s:RX", | ||
388 | wiphy_name(priv->hw->wiphy)); | ||
389 | |||
390 | |||
391 | ret = iwl_leds_register_led(priv, | ||
392 | &priv->led[IWL_LED_TRG_RX], | ||
393 | IWL_LED_TRG_RX, 0, | ||
394 | name, trigger); | ||
395 | |||
396 | priv->led[IWL_LED_TRG_RX].led_on = iwl4965_led_associated; | ||
397 | priv->led[IWL_LED_TRG_RX].led_off = iwl4965_led_associated; | ||
398 | priv->led[IWL_LED_TRG_RX].led_pattern = iwl4965_led_pattern; | ||
399 | |||
400 | if (ret) | ||
401 | goto exit_fail; | ||
402 | |||
403 | trigger = ieee80211_get_tx_led_name(priv->hw); | ||
404 | snprintf(name, sizeof(name), "iwl-%s:TX", | ||
405 | wiphy_name(priv->hw->wiphy)); | ||
406 | ret = iwl_leds_register_led(priv, | ||
407 | &priv->led[IWL_LED_TRG_TX], | ||
408 | IWL_LED_TRG_TX, 0, | ||
409 | name, trigger); | ||
410 | priv->led[IWL_LED_TRG_TX].led_on = iwl4965_led_associated; | ||
411 | priv->led[IWL_LED_TRG_TX].led_off = iwl4965_led_associated; | ||
412 | priv->led[IWL_LED_TRG_TX].led_pattern = iwl4965_led_pattern; | ||
413 | |||
414 | if (ret) | ||
415 | goto exit_fail; | ||
416 | |||
417 | return 0; | ||
418 | |||
419 | exit_fail: | ||
420 | iwl_leds_unregister(priv); | ||
421 | return ret; | ||
422 | } | ||
423 | EXPORT_SYMBOL(iwl_leds_register); | ||
424 | |||
425 | /* unregister led class */ | ||
426 | static void iwl_leds_unregister_led(struct iwl4965_led *led, u8 set_led) | ||
427 | { | ||
428 | if (!led->registered) | ||
429 | return; | ||
430 | |||
431 | led_classdev_unregister(&led->led_dev); | ||
432 | |||
433 | if (set_led) | ||
434 | led->led_dev.brightness_set(&led->led_dev, LED_OFF); | ||
435 | led->registered = 0; | ||
436 | } | ||
437 | |||
438 | /* Unregister all led handlers */ | ||
439 | void iwl_leds_unregister(struct iwl_priv *priv) | ||
440 | { | ||
441 | iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_ASSOC], 0); | ||
442 | iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_RX], 0); | ||
443 | iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_TX], 0); | ||
444 | iwl_leds_unregister_led(&priv->led[IWL_LED_TRG_RADIO], 1); | ||
445 | } | ||
446 | EXPORT_SYMBOL(iwl_leds_unregister); | ||
447 | |||