2 * Copyright 2006, Johannes Berg <johannes@sipsolutions.net>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/list.h>
10 #include <linux/spinlock.h>
11 #include <linux/leds.h>
12 #include "ieee80211_i.h"
14 #define MAC80211_BLINK_DELAY 50 /* ms */
16 static inline void ieee80211_led_rx(struct ieee80211_local
*local
)
18 #ifdef CONFIG_MAC80211_LEDS
19 unsigned long led_delay
= MAC80211_BLINK_DELAY
;
21 if (!atomic_read(&local
->rx_led_active
))
23 led_trigger_blink_oneshot(&local
->rx_led
, &led_delay
, &led_delay
, 0);
27 static inline void ieee80211_led_tx(struct ieee80211_local
*local
)
29 #ifdef CONFIG_MAC80211_LEDS
30 unsigned long led_delay
= MAC80211_BLINK_DELAY
;
32 if (!atomic_read(&local
->tx_led_active
))
34 led_trigger_blink_oneshot(&local
->tx_led
, &led_delay
, &led_delay
, 0);
38 #ifdef CONFIG_MAC80211_LEDS
39 void ieee80211_led_assoc(struct ieee80211_local
*local
,
41 void ieee80211_led_radio(struct ieee80211_local
*local
,
43 void ieee80211_alloc_led_names(struct ieee80211_local
*local
);
44 void ieee80211_free_led_names(struct ieee80211_local
*local
);
45 void ieee80211_led_init(struct ieee80211_local
*local
);
46 void ieee80211_led_exit(struct ieee80211_local
*local
);
47 void ieee80211_mod_tpt_led_trig(struct ieee80211_local
*local
,
48 unsigned int types_on
, unsigned int types_off
);
50 static inline void ieee80211_led_assoc(struct ieee80211_local
*local
,
54 static inline void ieee80211_led_radio(struct ieee80211_local
*local
,
58 static inline void ieee80211_alloc_led_names(struct ieee80211_local
*local
)
61 static inline void ieee80211_free_led_names(struct ieee80211_local
*local
)
64 static inline void ieee80211_led_init(struct ieee80211_local
*local
)
67 static inline void ieee80211_led_exit(struct ieee80211_local
*local
)
70 static inline void ieee80211_mod_tpt_led_trig(struct ieee80211_local
*local
,
71 unsigned int types_on
,
72 unsigned int types_off
)
78 ieee80211_tpt_led_trig_tx(struct ieee80211_local
*local
, __le16 fc
, int bytes
)
80 #ifdef CONFIG_MAC80211_LEDS
81 if (ieee80211_is_data(fc
) && atomic_read(&local
->tpt_led_active
))
82 local
->tpt_led_trigger
->tx_bytes
+= bytes
;
87 ieee80211_tpt_led_trig_rx(struct ieee80211_local
*local
, __le16 fc
, int bytes
)
89 #ifdef CONFIG_MAC80211_LEDS
90 if (ieee80211_is_data(fc
) && atomic_read(&local
->tpt_led_active
))
91 local
->tpt_led_trigger
->rx_bytes
+= bytes
;