blob: 6de8d0ad549737a0acb355286ca591754c16c846 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Jiri Bencf0706e82007-05-05 11:45:53 -07002/*
3 * Copyright 2006, Johannes Berg <johannes@sipsolutions.net>
Jiri Bencf0706e82007-05-05 11:45:53 -07004 */
5
6/* just for IFNAMSIZ */
7#include <linux/if.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09008#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -04009#include <linux/export.h>
Johannes Berg2c8dccc2008-04-08 15:14:40 -040010#include "led.h"
Jiri Bencf0706e82007-05-05 11:45:53 -070011
Michael Buesch47f0c502007-09-27 15:10:44 +020012void ieee80211_led_assoc(struct ieee80211_local *local, bool associated)
13{
Johannes Berg8d5c2582015-04-23 12:19:22 +020014 if (!atomic_read(&local->assoc_led_active))
Michael Buesch47f0c502007-09-27 15:10:44 +020015 return;
16 if (associated)
Johannes Berg8d5c2582015-04-23 12:19:22 +020017 led_trigger_event(&local->assoc_led, LED_FULL);
Michael Buesch47f0c502007-09-27 15:10:44 +020018 else
Johannes Berg8d5c2582015-04-23 12:19:22 +020019 led_trigger_event(&local->assoc_led, LED_OFF);
Michael Buesch47f0c502007-09-27 15:10:44 +020020}
21
Ivo van Doorncdcb006f2008-01-07 19:45:24 +010022void ieee80211_led_radio(struct ieee80211_local *local, bool enabled)
23{
Johannes Berg8d5c2582015-04-23 12:19:22 +020024 if (!atomic_read(&local->radio_led_active))
Ivo van Doorncdcb006f2008-01-07 19:45:24 +010025 return;
26 if (enabled)
Johannes Berg8d5c2582015-04-23 12:19:22 +020027 led_trigger_event(&local->radio_led, LED_FULL);
Ivo van Doorncdcb006f2008-01-07 19:45:24 +010028 else
Johannes Berg8d5c2582015-04-23 12:19:22 +020029 led_trigger_event(&local->radio_led, LED_OFF);
Ivo van Doorncdcb006f2008-01-07 19:45:24 +010030}
31
Johannes Berg8d5c2582015-04-23 12:19:22 +020032void ieee80211_alloc_led_names(struct ieee80211_local *local)
Johannes Bergfe67c912010-11-27 20:02:59 +010033{
Johannes Berg8d5c2582015-04-23 12:19:22 +020034 local->rx_led.name = kasprintf(GFP_KERNEL, "%srx",
35 wiphy_name(local->hw.wiphy));
36 local->tx_led.name = kasprintf(GFP_KERNEL, "%stx",
37 wiphy_name(local->hw.wiphy));
38 local->assoc_led.name = kasprintf(GFP_KERNEL, "%sassoc",
39 wiphy_name(local->hw.wiphy));
40 local->radio_led.name = kasprintf(GFP_KERNEL, "%sradio",
41 wiphy_name(local->hw.wiphy));
42}
43
44void ieee80211_free_led_names(struct ieee80211_local *local)
45{
46 kfree(local->rx_led.name);
47 kfree(local->tx_led.name);
48 kfree(local->assoc_led.name);
49 kfree(local->radio_led.name);
50}
51
Uwe Kleine-König2282e1252018-07-02 22:05:21 +020052static int ieee80211_tx_led_activate(struct led_classdev *led_cdev)
Johannes Berg8d5c2582015-04-23 12:19:22 +020053{
54 struct ieee80211_local *local = container_of(led_cdev->trigger,
55 struct ieee80211_local,
56 tx_led);
57
58 atomic_inc(&local->tx_led_active);
Uwe Kleine-König2282e1252018-07-02 22:05:21 +020059
60 return 0;
Johannes Berg8d5c2582015-04-23 12:19:22 +020061}
62
63static void ieee80211_tx_led_deactivate(struct led_classdev *led_cdev)
64{
65 struct ieee80211_local *local = container_of(led_cdev->trigger,
66 struct ieee80211_local,
67 tx_led);
68
69 atomic_dec(&local->tx_led_active);
70}
71
Uwe Kleine-König2282e1252018-07-02 22:05:21 +020072static int ieee80211_rx_led_activate(struct led_classdev *led_cdev)
Johannes Berg8d5c2582015-04-23 12:19:22 +020073{
74 struct ieee80211_local *local = container_of(led_cdev->trigger,
75 struct ieee80211_local,
76 rx_led);
77
78 atomic_inc(&local->rx_led_active);
Uwe Kleine-König2282e1252018-07-02 22:05:21 +020079
80 return 0;
Johannes Berg8d5c2582015-04-23 12:19:22 +020081}
82
83static void ieee80211_rx_led_deactivate(struct led_classdev *led_cdev)
84{
85 struct ieee80211_local *local = container_of(led_cdev->trigger,
86 struct ieee80211_local,
87 rx_led);
88
89 atomic_dec(&local->rx_led_active);
90}
91
Uwe Kleine-König2282e1252018-07-02 22:05:21 +020092static int ieee80211_assoc_led_activate(struct led_classdev *led_cdev)
Johannes Berg8d5c2582015-04-23 12:19:22 +020093{
94 struct ieee80211_local *local = container_of(led_cdev->trigger,
95 struct ieee80211_local,
96 assoc_led);
97
98 atomic_inc(&local->assoc_led_active);
Uwe Kleine-König2282e1252018-07-02 22:05:21 +020099
100 return 0;
Johannes Berg8d5c2582015-04-23 12:19:22 +0200101}
102
103static void ieee80211_assoc_led_deactivate(struct led_classdev *led_cdev)
104{
105 struct ieee80211_local *local = container_of(led_cdev->trigger,
106 struct ieee80211_local,
107 assoc_led);
108
109 atomic_dec(&local->assoc_led_active);
110}
111
Uwe Kleine-König2282e1252018-07-02 22:05:21 +0200112static int ieee80211_radio_led_activate(struct led_classdev *led_cdev)
Johannes Berg8d5c2582015-04-23 12:19:22 +0200113{
114 struct ieee80211_local *local = container_of(led_cdev->trigger,
115 struct ieee80211_local,
116 radio_led);
117
118 atomic_inc(&local->radio_led_active);
Uwe Kleine-König2282e1252018-07-02 22:05:21 +0200119
120 return 0;
Johannes Berg8d5c2582015-04-23 12:19:22 +0200121}
122
123static void ieee80211_radio_led_deactivate(struct led_classdev *led_cdev)
124{
125 struct ieee80211_local *local = container_of(led_cdev->trigger,
126 struct ieee80211_local,
127 radio_led);
128
129 atomic_dec(&local->radio_led_active);
130}
131
Uwe Kleine-König2282e1252018-07-02 22:05:21 +0200132static int ieee80211_tpt_led_activate(struct led_classdev *led_cdev)
Johannes Berg8d5c2582015-04-23 12:19:22 +0200133{
134 struct ieee80211_local *local = container_of(led_cdev->trigger,
135 struct ieee80211_local,
136 tpt_led);
137
138 atomic_inc(&local->tpt_led_active);
Uwe Kleine-König2282e1252018-07-02 22:05:21 +0200139
140 return 0;
Johannes Berg8d5c2582015-04-23 12:19:22 +0200141}
142
143static void ieee80211_tpt_led_deactivate(struct led_classdev *led_cdev)
144{
145 struct ieee80211_local *local = container_of(led_cdev->trigger,
146 struct ieee80211_local,
147 tpt_led);
148
149 atomic_dec(&local->tpt_led_active);
Johannes Bergfe67c912010-11-27 20:02:59 +0100150}
151
Jiri Bencf0706e82007-05-05 11:45:53 -0700152void ieee80211_led_init(struct ieee80211_local *local)
153{
Johannes Berg8d5c2582015-04-23 12:19:22 +0200154 atomic_set(&local->rx_led_active, 0);
155 local->rx_led.activate = ieee80211_rx_led_activate;
156 local->rx_led.deactivate = ieee80211_rx_led_deactivate;
157 if (local->rx_led.name && led_trigger_register(&local->rx_led)) {
158 kfree(local->rx_led.name);
159 local->rx_led.name = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700160 }
161
Johannes Berg8d5c2582015-04-23 12:19:22 +0200162 atomic_set(&local->tx_led_active, 0);
163 local->tx_led.activate = ieee80211_tx_led_activate;
164 local->tx_led.deactivate = ieee80211_tx_led_deactivate;
165 if (local->tx_led.name && led_trigger_register(&local->tx_led)) {
166 kfree(local->tx_led.name);
167 local->tx_led.name = NULL;
Michael Buesch47f0c502007-09-27 15:10:44 +0200168 }
169
Johannes Berg8d5c2582015-04-23 12:19:22 +0200170 atomic_set(&local->assoc_led_active, 0);
171 local->assoc_led.activate = ieee80211_assoc_led_activate;
172 local->assoc_led.deactivate = ieee80211_assoc_led_deactivate;
173 if (local->assoc_led.name && led_trigger_register(&local->assoc_led)) {
174 kfree(local->assoc_led.name);
175 local->assoc_led.name = NULL;
Jiri Bencf0706e82007-05-05 11:45:53 -0700176 }
Ivo van Doorncdcb006f2008-01-07 19:45:24 +0100177
Johannes Berg8d5c2582015-04-23 12:19:22 +0200178 atomic_set(&local->radio_led_active, 0);
179 local->radio_led.activate = ieee80211_radio_led_activate;
180 local->radio_led.deactivate = ieee80211_radio_led_deactivate;
181 if (local->radio_led.name && led_trigger_register(&local->radio_led)) {
182 kfree(local->radio_led.name);
183 local->radio_led.name = NULL;
Ivo van Doorncdcb006f2008-01-07 19:45:24 +0100184 }
Johannes Berge1e54062010-11-30 08:58:45 +0100185
Johannes Berg8d5c2582015-04-23 12:19:22 +0200186 atomic_set(&local->tpt_led_active, 0);
Johannes Berge1e54062010-11-30 08:58:45 +0100187 if (local->tpt_led_trigger) {
Johannes Berg8d5c2582015-04-23 12:19:22 +0200188 local->tpt_led.activate = ieee80211_tpt_led_activate;
189 local->tpt_led.deactivate = ieee80211_tpt_led_deactivate;
190 if (led_trigger_register(&local->tpt_led)) {
Johannes Berge1e54062010-11-30 08:58:45 +0100191 kfree(local->tpt_led_trigger);
192 local->tpt_led_trigger = NULL;
193 }
194 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700195}
196
197void ieee80211_led_exit(struct ieee80211_local *local)
198{
Johannes Berg8d5c2582015-04-23 12:19:22 +0200199 if (local->radio_led.name)
200 led_trigger_unregister(&local->radio_led);
201 if (local->assoc_led.name)
202 led_trigger_unregister(&local->assoc_led);
203 if (local->tx_led.name)
204 led_trigger_unregister(&local->tx_led);
205 if (local->rx_led.name)
206 led_trigger_unregister(&local->rx_led);
Johannes Berge1e54062010-11-30 08:58:45 +0100207
208 if (local->tpt_led_trigger) {
Johannes Berg8d5c2582015-04-23 12:19:22 +0200209 led_trigger_unregister(&local->tpt_led);
Johannes Berge1e54062010-11-30 08:58:45 +0100210 kfree(local->tpt_led_trigger);
211 }
Jiri Bencf0706e82007-05-05 11:45:53 -0700212}
213
Johannes Bergf5c4ae02015-04-23 12:09:01 +0200214const char *__ieee80211_get_radio_led_name(struct ieee80211_hw *hw)
Ivo van Doorncdcb006f2008-01-07 19:45:24 +0100215{
216 struct ieee80211_local *local = hw_to_local(hw);
217
Johannes Berg8d5c2582015-04-23 12:19:22 +0200218 return local->radio_led.name;
Ivo van Doorncdcb006f2008-01-07 19:45:24 +0100219}
220EXPORT_SYMBOL(__ieee80211_get_radio_led_name);
221
Johannes Bergf5c4ae02015-04-23 12:09:01 +0200222const char *__ieee80211_get_assoc_led_name(struct ieee80211_hw *hw)
Michael Buesch47f0c502007-09-27 15:10:44 +0200223{
224 struct ieee80211_local *local = hw_to_local(hw);
225
Johannes Berg8d5c2582015-04-23 12:19:22 +0200226 return local->assoc_led.name;
Michael Buesch47f0c502007-09-27 15:10:44 +0200227}
228EXPORT_SYMBOL(__ieee80211_get_assoc_led_name);
229
Johannes Bergf5c4ae02015-04-23 12:09:01 +0200230const char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw)
Jiri Bencf0706e82007-05-05 11:45:53 -0700231{
232 struct ieee80211_local *local = hw_to_local(hw);
233
Johannes Berg8d5c2582015-04-23 12:19:22 +0200234 return local->tx_led.name;
Jiri Bencf0706e82007-05-05 11:45:53 -0700235}
236EXPORT_SYMBOL(__ieee80211_get_tx_led_name);
237
Johannes Bergf5c4ae02015-04-23 12:09:01 +0200238const char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw)
Jiri Bencf0706e82007-05-05 11:45:53 -0700239{
240 struct ieee80211_local *local = hw_to_local(hw);
241
Johannes Berg8d5c2582015-04-23 12:19:22 +0200242 return local->rx_led.name;
Jiri Bencf0706e82007-05-05 11:45:53 -0700243}
244EXPORT_SYMBOL(__ieee80211_get_rx_led_name);
Johannes Berge1e54062010-11-30 08:58:45 +0100245
246static unsigned long tpt_trig_traffic(struct ieee80211_local *local,
247 struct tpt_led_trigger *tpt_trig)
248{
249 unsigned long traffic, delta;
250
251 traffic = tpt_trig->tx_bytes + tpt_trig->rx_bytes;
252
253 delta = traffic - tpt_trig->prev_traffic;
254 tpt_trig->prev_traffic = traffic;
255 return DIV_ROUND_UP(delta, 1024 / 8);
256}
257
Kees Cook34f11cd2017-10-16 16:35:49 -0700258static void tpt_trig_timer(struct timer_list *t)
Johannes Berge1e54062010-11-30 08:58:45 +0100259{
Kees Cook34f11cd2017-10-16 16:35:49 -0700260 struct tpt_led_trigger *tpt_trig = from_timer(tpt_trig, t, timer);
261 struct ieee80211_local *local = tpt_trig->local;
Johannes Berge1e54062010-11-30 08:58:45 +0100262 unsigned long on, off, tpt;
263 int i;
264
265 if (!tpt_trig->running)
266 return;
267
268 mod_timer(&tpt_trig->timer, round_jiffies(jiffies + HZ));
269
270 tpt = tpt_trig_traffic(local, tpt_trig);
271
272 /* default to just solid on */
273 on = 1;
274 off = 0;
275
276 for (i = tpt_trig->blink_table_len - 1; i >= 0; i--) {
277 if (tpt_trig->blink_table[i].throughput < 0 ||
278 tpt > tpt_trig->blink_table[i].throughput) {
279 off = tpt_trig->blink_table[i].blink_time / 2;
280 on = tpt_trig->blink_table[i].blink_time - off;
281 break;
282 }
283 }
284
Johannes Berg3f9d9722021-06-16 21:28:05 +0200285 led_trigger_blink(&local->tpt_led, &on, &off);
Johannes Berge1e54062010-11-30 08:58:45 +0100286}
287
Johannes Bergf5c4ae02015-04-23 12:09:01 +0200288const char *
289__ieee80211_create_tpt_led_trigger(struct ieee80211_hw *hw,
290 unsigned int flags,
291 const struct ieee80211_tpt_blink *blink_table,
292 unsigned int blink_table_len)
Johannes Berge1e54062010-11-30 08:58:45 +0100293{
294 struct ieee80211_local *local = hw_to_local(hw);
295 struct tpt_led_trigger *tpt_trig;
296
297 if (WARN_ON(local->tpt_led_trigger))
298 return NULL;
299
300 tpt_trig = kzalloc(sizeof(struct tpt_led_trigger), GFP_KERNEL);
301 if (!tpt_trig)
302 return NULL;
303
304 snprintf(tpt_trig->name, sizeof(tpt_trig->name),
305 "%stpt", wiphy_name(local->hw.wiphy));
306
Johannes Berg8d5c2582015-04-23 12:19:22 +0200307 local->tpt_led.name = tpt_trig->name;
Johannes Berge1e54062010-11-30 08:58:45 +0100308
309 tpt_trig->blink_table = blink_table;
310 tpt_trig->blink_table_len = blink_table_len;
Johannes Berg67408c82010-11-30 08:59:23 +0100311 tpt_trig->want = flags;
Kees Cook34f11cd2017-10-16 16:35:49 -0700312 tpt_trig->local = local;
Johannes Berge1e54062010-11-30 08:58:45 +0100313
Kees Cook34f11cd2017-10-16 16:35:49 -0700314 timer_setup(&tpt_trig->timer, tpt_trig_timer, 0);
Johannes Berge1e54062010-11-30 08:58:45 +0100315
316 local->tpt_led_trigger = tpt_trig;
317
318 return tpt_trig->name;
319}
320EXPORT_SYMBOL(__ieee80211_create_tpt_led_trigger);
321
Johannes Berg67408c82010-11-30 08:59:23 +0100322static void ieee80211_start_tpt_led_trig(struct ieee80211_local *local)
Johannes Berge1e54062010-11-30 08:58:45 +0100323{
324 struct tpt_led_trigger *tpt_trig = local->tpt_led_trigger;
325
Johannes Berg67408c82010-11-30 08:59:23 +0100326 if (tpt_trig->running)
Johannes Berge1e54062010-11-30 08:58:45 +0100327 return;
328
329 /* reset traffic */
330 tpt_trig_traffic(local, tpt_trig);
331 tpt_trig->running = true;
332
Kees Cook34f11cd2017-10-16 16:35:49 -0700333 tpt_trig_timer(&tpt_trig->timer);
Johannes Berge1e54062010-11-30 08:58:45 +0100334 mod_timer(&tpt_trig->timer, round_jiffies(jiffies + HZ));
335}
336
Johannes Berg67408c82010-11-30 08:59:23 +0100337static void ieee80211_stop_tpt_led_trig(struct ieee80211_local *local)
Johannes Berge1e54062010-11-30 08:58:45 +0100338{
339 struct tpt_led_trigger *tpt_trig = local->tpt_led_trigger;
Johannes Berge1e54062010-11-30 08:58:45 +0100340
Johannes Berg67408c82010-11-30 08:59:23 +0100341 if (!tpt_trig->running)
Johannes Berge1e54062010-11-30 08:58:45 +0100342 return;
343
344 tpt_trig->running = false;
345 del_timer_sync(&tpt_trig->timer);
346
Johannes Berg3f9d9722021-06-16 21:28:05 +0200347 led_trigger_event(&local->tpt_led, LED_OFF);
Johannes Berge1e54062010-11-30 08:58:45 +0100348}
Johannes Berg67408c82010-11-30 08:59:23 +0100349
350void ieee80211_mod_tpt_led_trig(struct ieee80211_local *local,
351 unsigned int types_on, unsigned int types_off)
352{
353 struct tpt_led_trigger *tpt_trig = local->tpt_led_trigger;
354 bool allowed;
355
356 WARN_ON(types_on & types_off);
357
358 if (!tpt_trig)
359 return;
360
361 tpt_trig->active &= ~types_off;
362 tpt_trig->active |= types_on;
363
364 /*
365 * Regardless of wanted state, we shouldn't blink when
366 * the radio is disabled -- this can happen due to some
367 * code ordering issues with __ieee80211_recalc_idle()
368 * being called before the radio is started.
369 */
370 allowed = tpt_trig->active & IEEE80211_TPT_LEDTRIG_FL_RADIO;
371
372 if (!allowed || !(tpt_trig->active & tpt_trig->want))
373 ieee80211_stop_tpt_led_trig(local);
374 else
375 ieee80211_start_tpt_led_trig(local);
376}