1 /******************************************************************************
3 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
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.
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
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
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
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
25 *****************************************************************************/
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>
45 #include "iwl-helpers.h"
47 #define IWL_1MB_RATE (128 * 1024)
48 #define IWL_LED_THRESHOLD (16)
49 #define IWL_MAX_BLINK_TBL (10)
69 static int iwl_led_cmd_callback(struct iwl_priv *priv,
70 struct iwl_cmd *cmd, struct sk_buff *skb)
76 /* Send led command */
77 static int iwl_send_led_cmd(struct iwl_priv *priv,
78 struct iwl4965_led_cmd *led_cmd)
80 struct iwl_host_cmd cmd = {
82 .len = sizeof(struct iwl4965_led_cmd),
84 .meta.flags = CMD_ASYNC,
85 .meta.u.callback = iwl_led_cmd_callback
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);
93 return iwl_send_cmd(priv, &cmd);
97 /* Set led on command */
98 static int iwl4965_led_on(struct iwl_priv *priv, int led_id)
100 struct iwl4965_led_cmd led_cmd = {
104 .interval = IWL_DEF_LED_INTRVL
106 return iwl_send_led_cmd(priv, &led_cmd);
109 /* Set led on command */
110 static int iwl4965_led_pattern(struct iwl_priv *priv, int led_id,
111 enum led_brightness brightness)
113 struct iwl4965_led_cmd led_cmd = {
117 .interval = IWL_DEF_LED_INTRVL
119 if (brightness == LED_FULL) {
120 led_cmd.on = IWL_LED_SOLID;
123 return iwl_send_led_cmd(priv, &led_cmd);
126 /* Set led register off */
127 static int iwl4965_led_on_reg(struct iwl_priv *priv, int led_id)
129 IWL_DEBUG_LED("led on %d\n", led_id);
130 iwl_write32(priv, CSR_LED_REG, CSR_LED_REG_TRUN_ON);
135 /* Set led off command */
136 int iwl4965_led_off(struct iwl_priv *priv, int led_id)
138 struct iwl4965_led_cmd led_cmd = {
142 .interval = IWL_DEF_LED_INTRVL
144 IWL_DEBUG_LED("led off %d\n", led_id);
145 return iwl_send_led_cmd(priv, &led_cmd);
150 /* Set led register off */
151 static int iwl4965_led_off_reg(struct iwl_priv *priv, int led_id)
153 IWL_DEBUG_LED("radio off\n");
154 iwl_write32(priv, CSR_LED_REG, CSR_LED_REG_TRUN_OFF);
158 /* Set led blink command */
159 static int iwl4965_led_not_solid(struct iwl_priv *priv, int led_id,
162 struct iwl4965_led_cmd led_cmd = {
166 .interval = IWL_DEF_LED_INTRVL
169 return iwl_send_led_cmd(priv, &led_cmd);
174 * brightness call back function for Tx/Rx LED
176 static int iwl4965_led_associated(struct iwl_priv *priv, int led_id)
178 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
179 !test_bit(STATUS_READY, &priv->status))
183 /* start counting Tx/Rx bytes */
184 if (!priv->last_blink_time && priv->allow_blinking)
185 priv->last_blink_time = jiffies;
190 * brightness call back for association and radio
192 static void iwl4965_led_brightness_set(struct led_classdev *led_cdev,
193 enum led_brightness brightness)
195 struct iwl4965_led *led = container_of(led_cdev,
196 struct iwl4965_led, led_dev);
197 struct iwl_priv *priv = led->priv;
199 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
202 switch (brightness) {
204 if (led->type == IWL_LED_TRG_ASSOC)
205 priv->allow_blinking = 1;
208 led->led_on(priv, IWL_LED_LINK);
211 if (led->type == IWL_LED_TRG_ASSOC)
212 priv->allow_blinking = 0;
215 led->led_off(priv, IWL_LED_LINK);
218 if (led->led_pattern)
219 led->led_pattern(priv, IWL_LED_LINK, brightness);
227 * Register led class with the system
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)
234 struct device *device = wiphy_dev(priv->hw->wiphy);
237 led->led_dev.name = name;
238 led->led_dev.brightness_set = iwl4965_led_brightness_set;
239 led->led_dev.default_trigger = trigger;
241 ret = led_classdev_register(device, &led->led_dev);
243 IWL_ERROR("Error: failed to register led handler.\n");
251 if (set_led && led->led_on)
252 led->led_on(priv, IWL_LED_LINK);
258 * calculate blink rate according to last 2 sec Tx/Rx activities
260 static inline u8 get_blink_rate(struct iwl_priv *priv)
264 u64 current_tpt = priv->tx_stats[2].bytes + priv->rx_stats[2].bytes;
265 s64 tpt = current_tpt - priv->led_tpt;
267 if (tpt < 0) /* wrapparound */
270 priv->led_tpt = current_tpt;
272 if (tpt < IWL_LED_THRESHOLD) {
273 i = IWL_MAX_BLINK_TBL;
275 for (i = 0; i < IWL_MAX_BLINK_TBL; i++)
276 if (tpt > (blink_tbl[i].tpt * IWL_1MB_RATE))
279 /* if 0 frame is transfered */
280 if ((i == IWL_MAX_BLINK_TBL) || !priv->allow_blinking)
281 blink_rate = IWL_LED_SOLID;
283 blink_rate = blink_tbl[i].on_time;
288 static inline int is_rf_kill(struct iwl_priv *priv)
290 return test_bit(STATUS_RF_KILL_HW, &priv->status) ||
291 test_bit(STATUS_RF_KILL_SW, &priv->status);
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
299 void iwl_leds_background(struct iwl_priv *priv)
303 if (test_bit(STATUS_EXIT_PENDING, &priv->status)) {
304 priv->last_blink_time = 0;
307 if (is_rf_kill(priv)) {
308 priv->last_blink_time = 0;
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);
320 if (!priv->last_blink_time ||
321 !time_after(jiffies, priv->last_blink_time +
322 msecs_to_jiffies(1000)))
325 blink_rate = get_blink_rate(priv);
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);
334 priv->last_blink_time = 0;
335 iwl4965_led_on(priv, IWL_LED_LINK);
339 priv->last_blink_rate = blink_rate;
341 EXPORT_SYMBOL(iwl_leds_background);
343 /* Register all led handler */
344 int iwl_leds_register(struct iwl_priv *priv)
350 priv->last_blink_rate = 0;
352 priv->last_blink_time = 0;
353 priv->allow_blinking = 0;
355 trigger = ieee80211_get_radio_led_name(priv->hw);
356 snprintf(name, sizeof(name), "iwl-%s:radio",
357 wiphy_name(priv->hw->wiphy));
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;
363 ret = iwl_leds_register_led(priv,
364 &priv->led[IWL_LED_TRG_RADIO],
365 IWL_LED_TRG_RADIO, 1,
370 trigger = ieee80211_get_assoc_led_name(priv->hw);
371 snprintf(name, sizeof(name), "iwl-%s:assoc",
372 wiphy_name(priv->hw->wiphy));
374 ret = iwl_leds_register_led(priv,
375 &priv->led[IWL_LED_TRG_ASSOC],
376 IWL_LED_TRG_ASSOC, 0,
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;
386 trigger = ieee80211_get_rx_led_name(priv->hw);
387 snprintf(name, sizeof(name), "iwl-%s:RX",
388 wiphy_name(priv->hw->wiphy));
391 ret = iwl_leds_register_led(priv,
392 &priv->led[IWL_LED_TRG_RX],
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;
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],
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;
420 iwl_leds_unregister(priv);
423 EXPORT_SYMBOL(iwl_leds_register);
425 /* unregister led class */
426 static void iwl_leds_unregister_led(struct iwl4965_led *led, u8 set_led)
428 if (!led->registered)
431 led_classdev_unregister(&led->led_dev);
434 led->led_dev.brightness_set(&led->led_dev, LED_OFF);
438 /* Unregister all led handlers */
439 void iwl_leds_unregister(struct iwl_priv *priv)
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);
446 EXPORT_SYMBOL(iwl_leds_unregister);