Merge tag 'fbdev-for-6.4-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/deller...
[linux-block.git] / include / linux / leds.h
CommitLineData
d2912cb1 1/* SPDX-License-Identifier: GPL-2.0-only */
c72a1d60
RP
2/*
3 * Driver model for leds and led triggers
4 *
5 * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
6 * Copyright (C) 2005 Richard Purdie <rpurdie@openedhand.com>
c72a1d60
RP
7 */
8#ifndef __LINUX_LEDS_H_INCLUDED
9#define __LINUX_LEDS_H_INCLUDED
10
bb4e9af0 11#include <dt-bindings/leds/common.h>
20f56758 12#include <linux/device.h>
acd899e4 13#include <linux/mutex.h>
dc47206e 14#include <linux/rwsem.h>
04713306 15#include <linux/spinlock.h>
9067359f 16#include <linux/timer.h>
d35d0c9d 17#include <linux/types.h>
d23a22a7 18#include <linux/workqueue.h>
af410fc1 19
d35d0c9d 20struct attribute_group;
699a8c7c 21struct device_node;
d35d0c9d
AS
22struct fwnode_handle;
23struct gpio_desc;
24struct kernfs_node;
25struct led_pattern;
26struct platform_device;
27
c72a1d60
RP
28/*
29 * LED Core
30 */
31
c7e4ea68 32/* This is obsolete/useless. We now support variable maximum brightness. */
c72a1d60 33enum led_brightness {
fb5035db 34 LED_OFF = 0,
4e552c8c 35 LED_ON = 1,
fb5035db
BD
36 LED_HALF = 127,
37 LED_FULL = 255,
c72a1d60
RP
38};
39
791bc411
DOH
40enum led_default_state {
41 LEDS_DEFSTATE_OFF = 0,
42 LEDS_DEFSTATE_ON = 1,
43 LEDS_DEFSTATE_KEEP = 2,
44};
45
abc3100f
HG
46/**
47 * struct led_lookup_data - represents a single LED lookup entry
48 *
49 * @list: internal list of all LED lookup entries
50 * @provider: name of led_classdev providing the LED
51 * @dev_id: name of the device associated with this LED
52 * @con_id: name of the LED from the device's point of view
53 */
54struct led_lookup_data {
55 struct list_head list;
56 const char *provider;
57 const char *dev_id;
58 const char *con_id;
59};
60
b2b998c0
JA
61struct led_init_data {
62 /* device fwnode handle */
63 struct fwnode_handle *fwnode;
bb4e9af0
JA
64 /*
65 * default <color:function> tuple, for backward compatibility
66 * with in-driver hard-coded LED names used as a fallback when
67 * DT "label" property is absent; it should be set to NULL
68 * in new LED class drivers.
69 */
70 const char *default_label;
71 /*
72 * string to be used for devicename section of LED class device
73 * either for label based LED name composition path or for fwnode
74 * based when devname_mandatory is true
75 */
76 const char *devicename;
77 /*
78 * indicates if LED name should always comprise devicename section;
79 * only LEDs exposed by drivers of hot-pluggable devices should
80 * set it to true
81 */
82 bool devname_mandatory;
b2b998c0
JA
83};
84
e5029edd 85#if IS_ENABLED(CONFIG_NEW_LEDS)
156a5bb8 86enum led_default_state led_init_default_state_get(struct fwnode_handle *fwnode);
e5029edd
AL
87#else
88static inline enum led_default_state
89led_init_default_state_get(struct fwnode_handle *fwnode)
90{
91 return LEDS_DEFSTATE_OFF;
92}
93#endif
156a5bb8 94
93690cdf
MB
95struct led_hw_trigger_type {
96 int dummy;
97};
98
c72a1d60 99struct led_classdev {
fb5035db 100 const char *name;
af0bfab9
AS
101 unsigned int brightness;
102 unsigned int max_brightness;
fb5035db 103 int flags;
c72a1d60 104
859cb7f2 105 /* Lower 16 bits reflect status */
55edd1da
DL
106#define LED_SUSPENDED BIT(0)
107#define LED_UNREGISTERING BIT(1)
859cb7f2 108 /* Upper 16 bits reflect control information */
55edd1da
DL
109#define LED_CORE_SUSPENDRESUME BIT(16)
110#define LED_SYSFS_DISABLE BIT(17)
111#define LED_DEV_CAP_FLASH BIT(18)
112#define LED_HW_PLUGGABLE BIT(19)
113#define LED_PANIC_INDICATOR BIT(20)
114#define LED_BRIGHT_HW_CHANGED BIT(21)
115#define LED_RETAIN_AT_SHUTDOWN BIT(22)
02d31765 116#define LED_INIT_DEFAULT_TRIGGER BIT(23)
a9c6ce57
HG
117
118 /* set_brightness_work / blink_timer flags, atomic, private. */
119 unsigned long work_flags;
120
121#define LED_BLINK_SW 0
122#define LED_BLINK_ONESHOT 1
123#define LED_BLINK_ONESHOT_STOP 2
124#define LED_BLINK_INVERT 3
125#define LED_BLINK_BRIGHTNESS_CHANGE 4
126#define LED_BLINK_DISABLE 5
c72a1d60 127
70b2563b
HK
128 /* Set LED brightness level
129 * Must not sleep. Use brightness_set_blocking for drivers
130 * that can sleep while setting brightness.
131 */
fb5035db
BD
132 void (*brightness_set)(struct led_classdev *led_cdev,
133 enum led_brightness brightness);
4d71a4a1
JA
134 /*
135 * Set LED brightness level immediately - it can block the caller for
136 * the time required for accessing a LED device register.
137 */
437a4240
JA
138 int (*brightness_set_blocking)(struct led_classdev *led_cdev,
139 enum led_brightness brightness);
29d76dfa
HMH
140 /* Get LED brightness level */
141 enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
fb5035db 142
5ada28bf
JB
143 /*
144 * Activate hardware accelerated blink, delays are in milliseconds
145 * and if both are zero then a sensible default should be chosen.
146 * The call should adjust the timings in that case and if it can't
147 * match the values specified exactly.
7cfe749f
TM
148 * Deactivate blinking again when the brightness is set to LED_OFF
149 * via the brightness_set() callback.
5ada28bf 150 */
4c79141d
MN
151 int (*blink_set)(struct led_classdev *led_cdev,
152 unsigned long *delay_on,
153 unsigned long *delay_off);
154
5fd752b6
BW
155 int (*pattern_set)(struct led_classdev *led_cdev,
156 struct led_pattern *pattern, u32 len, int repeat);
157 int (*pattern_clear)(struct led_classdev *led_cdev);
158
f8a7c6fe 159 struct device *dev;
d0d480cc
JH
160 const struct attribute_group **groups;
161
fb5035db 162 struct list_head node; /* LED Device list */
781a54e7 163 const char *default_trigger; /* Trigger to use */
c72a1d60 164
5ada28bf 165 unsigned long blink_delay_on, blink_delay_off;
9067359f 166 struct timer_list blink_timer;
5ada28bf 167 int blink_brightness;
eb1610b4 168 int new_blink_brightness;
7aea8389 169 void (*flash_resume)(struct led_classdev *led_cdev);
5ada28bf 170
d23a22a7
FB
171 struct work_struct set_brightness_work;
172 int delayed_set_value;
173
c3bc9956 174#ifdef CONFIG_LEDS_TRIGGERS
c3bc9956 175 /* Protects the trigger data below */
dc47206e 176 struct rw_semaphore trigger_lock;
c3bc9956 177
fb5035db
BD
178 struct led_trigger *trigger;
179 struct list_head trig_list;
180 void *trigger_data;
b0096182
SK
181 /* true if activated - deactivate routine uses it to do cleanup */
182 bool activated;
93690cdf
MB
183
184 /* LEDs that have private triggers have this set */
185 struct led_hw_trigger_type *trigger_type;
c3bc9956 186#endif
acd899e4 187
0cb8eb30
HG
188#ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED
189 int brightness_hw_changed;
190 struct kernfs_node *brightness_hw_changed_kn;
191#endif
192
acd899e4
JA
193 /* Ensures consistent access to the LED Flash Class device */
194 struct mutex led_access;
c72a1d60
RP
195};
196
b2b998c0
JA
197/**
198 * led_classdev_register_ext - register a new object of LED class with
199 * init data
200 * @parent: LED controller device this LED is driven by
201 * @led_cdev: the led_classdev structure for this device
202 * @init_data: the LED class device initialization data
203 *
7c322056
JA
204 * Register a new object of LED class, with name derived from init_data.
205 *
b2b998c0
JA
206 * Returns: 0 on success or negative error value on failure
207 */
ec28a8cf 208int led_classdev_register_ext(struct device *parent,
b2b998c0
JA
209 struct led_classdev *led_cdev,
210 struct led_init_data *init_data);
7c322056
JA
211
212/**
213 * led_classdev_register - register a new object of LED class
214 * @parent: LED controller device this LED is driven by
215 * @led_cdev: the led_classdev structure for this device
216 *
217 * Register a new object of LED class, with name derived from the name property
218 * of passed led_cdev argument.
219 *
220 * Returns: 0 on success or negative error value on failure
221 */
222static inline int led_classdev_register(struct device *parent,
223 struct led_classdev *led_cdev)
224{
225 return led_classdev_register_ext(parent, led_cdev, NULL);
226}
227
e5029edd 228#if IS_ENABLED(CONFIG_LEDS_CLASS)
ec28a8cf 229int devm_led_classdev_register_ext(struct device *parent,
b2b998c0
JA
230 struct led_classdev *led_cdev,
231 struct led_init_data *init_data);
e5029edd
AL
232#else
233static inline int
234devm_led_classdev_register_ext(struct device *parent,
235 struct led_classdev *led_cdev,
236 struct led_init_data *init_data)
237{
238 return 0;
239}
240#endif
7c322056
JA
241
242static inline int devm_led_classdev_register(struct device *parent,
243 struct led_classdev *led_cdev)
244{
245 return devm_led_classdev_register_ext(parent, led_cdev, NULL);
246}
ec28a8cf
DM
247void led_classdev_unregister(struct led_classdev *led_cdev);
248void devm_led_classdev_unregister(struct device *parent,
249 struct led_classdev *led_cdev);
250void led_classdev_suspend(struct led_classdev *led_cdev);
251void led_classdev_resume(struct led_classdev *led_cdev);
c72a1d60 252
abc3100f
HG
253void led_add_lookup(struct led_lookup_data *led_lookup);
254void led_remove_lookup(struct led_lookup_data *led_lookup);
255
256struct led_classdev *__must_check led_get(struct device *dev, char *con_id);
257struct led_classdev *__must_check devm_led_get(struct device *dev, char *con_id);
258
699a8c7c
TV
259extern struct led_classdev *of_led_get(struct device_node *np, int index);
260extern void led_put(struct led_classdev *led_cdev);
e389240a
JJH
261struct led_classdev *__must_check devm_of_led_get(struct device *dev,
262 int index);
699a8c7c 263
5ada28bf
JB
264/**
265 * led_blink_set - set blinking with software fallback
266 * @led_cdev: the LED to start blinking
267 * @delay_on: the time it should be on (in ms)
268 * @delay_off: the time it should ble off (in ms)
269 *
270 * This function makes the LED blink, attempting to use the
271 * hardware acceleration if possible, but falling back to
272 * software blinking if there is no hardware blinking or if
273 * the LED refuses the passed values.
274 *
275 * Note that if software blinking is active, simply calling
276 * led_cdev->brightness_set() will not stop the blinking,
8af70e20 277 * use led_set_brightness() instead.
5ada28bf 278 */
ec28a8cf
DM
279void led_blink_set(struct led_classdev *led_cdev, unsigned long *delay_on,
280 unsigned long *delay_off);
5bb629c5
FB
281/**
282 * led_blink_set_oneshot - do a oneshot software blink
283 * @led_cdev: the LED to start blinking
284 * @delay_on: the time it should be on (in ms)
285 * @delay_off: the time it should ble off (in ms)
286 * @invert: blink off, then on, leaving the led on
287 *
288 * This function makes the LED blink one time for delay_on +
289 * delay_off time, ignoring the request if another one-shot
290 * blink is already in progress.
291 *
292 * If invert is set, led blinks for delay_off first, then for
293 * delay_on and leave the led on after the on-off cycle.
294 */
ec28a8cf
DM
295void led_blink_set_oneshot(struct led_classdev *led_cdev,
296 unsigned long *delay_on, unsigned long *delay_off,
297 int invert);
5ada28bf 298/**
19cd67e2 299 * led_set_brightness - set LED brightness
5ada28bf
JB
300 * @led_cdev: the LED to set
301 * @brightness: the brightness to set it to
302 *
303 * Set an LED's brightness, and, if necessary, cancel the
304 * software blink timer that implements blinking when the
1afcadfc 305 * hardware doesn't. This function is guaranteed not to sleep.
5ada28bf 306 */
af0bfab9 307void led_set_brightness(struct led_classdev *led_cdev, unsigned int brightness);
13ae79bb
JA
308
309/**
310 * led_set_brightness_sync - set LED brightness synchronously
311 * @led_cdev: the LED to set
9cc93be7 312 * @value: the brightness to set it to
13ae79bb
JA
313 *
314 * Set an LED's brightness immediately. This function will block
315 * the caller for the time required for accessing device registers,
316 * and it can sleep.
317 *
318 * Returns: 0 on success or negative error value on failure
319 */
af0bfab9 320int led_set_brightness_sync(struct led_classdev *led_cdev, unsigned int value);
13ae79bb 321
3ef7de53
JA
322/**
323 * led_update_brightness - update LED brightness
324 * @led_cdev: the LED to query
325 *
326 * Get an LED's current brightness and update led_cdev->brightness
327 * member with the obtained value.
328 *
329 * Returns: 0 on success or negative error value on failure
330 */
ec28a8cf 331int led_update_brightness(struct led_classdev *led_cdev);
5ada28bf 332
8e1f4561
KK
333/**
334 * led_get_default_pattern - return default pattern
335 *
336 * @led_cdev: the LED to get default pattern for
337 * @size: pointer for storing the number of elements in returned array,
338 * modified only if return != NULL
339 *
340 * Return: Allocated array of integers with default pattern from device tree
341 * or NULL. Caller is responsible for kfree().
342 */
ec28a8cf 343u32 *led_get_default_pattern(struct led_classdev *led_cdev, unsigned int *size);
8e1f4561 344
acd899e4
JA
345/**
346 * led_sysfs_disable - disable LED sysfs interface
347 * @led_cdev: the LED to set
348 *
349 * Disable the led_cdev's sysfs interface.
350 */
ec28a8cf 351void led_sysfs_disable(struct led_classdev *led_cdev);
acd899e4
JA
352
353/**
354 * led_sysfs_enable - enable LED sysfs interface
355 * @led_cdev: the LED to set
356 *
357 * Enable the led_cdev's sysfs interface.
358 */
ec28a8cf 359void led_sysfs_enable(struct led_classdev *led_cdev);
acd899e4 360
bb4e9af0
JA
361/**
362 * led_compose_name - compose LED class device name
363 * @dev: LED controller device object
9cc93be7 364 * @init_data: the LED class device initialization data
bb4e9af0
JA
365 * @led_classdev_name: composed LED class device name
366 *
367 * Create LED class device name basing on the provided init_data argument.
368 * The name can have <devicename:color:function> or <color:function>.
369 * form, depending on the init_data configuration.
370 *
371 * Returns: 0 on success or negative error value on failure
372 */
ec28a8cf
DM
373int led_compose_name(struct device *dev, struct led_init_data *init_data,
374 char *led_classdev_name);
bb4e9af0 375
acd899e4
JA
376/**
377 * led_sysfs_is_disabled - check if LED sysfs interface is disabled
378 * @led_cdev: the LED to query
379 *
380 * Returns: true if the led_cdev's sysfs interface is disabled.
381 */
382static inline bool led_sysfs_is_disabled(struct led_classdev *led_cdev)
383{
384 return led_cdev->flags & LED_SYSFS_DISABLE;
385}
386
c3bc9956
RP
387/*
388 * LED Triggers
389 */
39f7e08a
KM
390/* Registration functions for simple triggers */
391#define DEFINE_LED_TRIGGER(x) static struct led_trigger *x;
392#define DEFINE_LED_TRIGGER_GLOBAL(x) struct led_trigger *x;
393
c3bc9956
RP
394#ifdef CONFIG_LEDS_TRIGGERS
395
396#define TRIG_NAME_MAX 50
397
398struct led_trigger {
399 /* Trigger Properties */
fb5035db 400 const char *name;
2282e125 401 int (*activate)(struct led_classdev *led_cdev);
fb5035db 402 void (*deactivate)(struct led_classdev *led_cdev);
c3bc9956 403
93690cdf
MB
404 /* LED-private triggers have this set */
405 struct led_hw_trigger_type *trigger_type;
406
c3bc9956 407 /* LEDs under control by this trigger (for simple triggers) */
2a5a8fa8 408 spinlock_t leddev_list_lock;
fb5035db 409 struct list_head led_cdevs;
c3bc9956
RP
410
411 /* Link to next registered trigger */
fb5035db 412 struct list_head next_trig;
a7e7a315
UKK
413
414 const struct attribute_group **groups;
c3bc9956
RP
415};
416
a7e7a315
UKK
417/*
418 * Currently the attributes in struct led_trigger::groups are added directly to
419 * the LED device. As this might change in the future, the following
420 * macros abstract getting the LED device and its trigger_data from the dev
421 * parameter passed to the attribute accessor functions.
422 */
423#define led_trigger_get_led(dev) ((struct led_classdev *)dev_get_drvdata((dev)))
424#define led_trigger_get_drvdata(dev) (led_get_trigger_data(led_trigger_get_led(dev)))
425
c3bc9956 426/* Registration functions for complex triggers */
ec28a8cf
DM
427int led_trigger_register(struct led_trigger *trigger);
428void led_trigger_unregister(struct led_trigger *trigger);
429int devm_led_trigger_register(struct device *dev,
9534cc31 430 struct led_trigger *trigger);
c3bc9956 431
ec28a8cf 432void led_trigger_register_simple(const char *name,
c3bc9956 433 struct led_trigger **trigger);
ec28a8cf
DM
434void led_trigger_unregister_simple(struct led_trigger *trigger);
435void led_trigger_event(struct led_trigger *trigger, enum led_brightness event);
436void led_trigger_blink(struct led_trigger *trigger, unsigned long *delay_on,
437 unsigned long *delay_off);
438void led_trigger_blink_oneshot(struct led_trigger *trigger,
439 unsigned long *delay_on,
440 unsigned long *delay_off,
441 int invert);
442void led_trigger_set_default(struct led_classdev *led_cdev);
443int led_trigger_set(struct led_classdev *led_cdev, struct led_trigger *trigger);
444void led_trigger_remove(struct led_classdev *led_cdev);
20f56758 445
9acc560d
UKK
446static inline void led_set_trigger_data(struct led_classdev *led_cdev,
447 void *trigger_data)
448{
449 led_cdev->trigger_data = trigger_data;
450}
451
20f56758
JA
452static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
453{
454 return led_cdev->trigger_data;
455}
456
057407c7
JH
457/**
458 * led_trigger_rename_static - rename a trigger
459 * @name: the new trigger name
460 * @trig: the LED trigger to rename
461 *
462 * Change a LED trigger name by copying the string passed in
463 * name into current trigger name, which MUST be large
464 * enough for the new string.
465 *
466 * Note that name must NOT point to the same string used
467 * during LED registration, as that could lead to races.
468 *
469 * This is meant to be used on triggers with statically
470 * allocated name.
471 */
ec28a8cf 472void led_trigger_rename_static(const char *name, struct led_trigger *trig);
c3bc9956 473
a0b75076
UKK
474#define module_led_trigger(__led_trigger) \
475 module_driver(__led_trigger, led_trigger_register, \
476 led_trigger_unregister)
477
c3bc9956
RP
478#else
479
39f7e08a
KM
480/* Trigger has no members */
481struct led_trigger {};
c3bc9956 482
39f7e08a
KM
483/* Trigger inline empty functions */
484static inline void led_trigger_register_simple(const char *name,
485 struct led_trigger **trigger) {}
486static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {}
487static inline void led_trigger_event(struct led_trigger *trigger,
488 enum led_brightness event) {}
8890624a
MG
489static inline void led_trigger_blink(struct led_trigger *trigger,
490 unsigned long *delay_on,
491 unsigned long *delay_off) {}
492static inline void led_trigger_blink_oneshot(struct led_trigger *trigger,
493 unsigned long *delay_on,
494 unsigned long *delay_off,
495 int invert) {}
20f56758 496static inline void led_trigger_set_default(struct led_classdev *led_cdev) {}
2282e125
UKK
497static inline int led_trigger_set(struct led_classdev *led_cdev,
498 struct led_trigger *trigger)
499{
500 return 0;
501}
502
20f56758 503static inline void led_trigger_remove(struct led_classdev *led_cdev) {}
9acc560d 504static inline void led_set_trigger_data(struct led_classdev *led_cdev) {}
20f56758
JA
505static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
506{
507 return NULL;
508}
509
39f7e08a 510#endif /* CONFIG_LEDS_TRIGGERS */
2bfb646c
RP
511
512/* Trigger specific functions */
eb25cb99 513#ifdef CONFIG_LEDS_TRIGGER_DISK
ec28a8cf 514void ledtrig_disk_activity(bool write);
2bfb646c 515#else
d1ed7c55 516static inline void ledtrig_disk_activity(bool write) {}
2bfb646c
RP
517#endif
518
4b721174 519#ifdef CONFIG_LEDS_TRIGGER_MTD
ec28a8cf 520void ledtrig_mtd_activity(void);
4b721174
EG
521#else
522static inline void ledtrig_mtd_activity(void) {}
523#endif
524
48a1d032 525#if defined(CONFIG_LEDS_TRIGGER_CAMERA) || defined(CONFIG_LEDS_TRIGGER_CAMERA_MODULE)
ec28a8cf
DM
526void ledtrig_flash_ctrl(bool on);
527void ledtrig_torch_ctrl(bool on);
48a1d032
KM
528#else
529static inline void ledtrig_flash_ctrl(bool on) {}
530static inline void ledtrig_torch_ctrl(bool on) {}
531#endif
532
f46e9203
NC
533/*
534 * Generic LED platform data for describing LED names and default triggers.
535 */
536struct led_info {
537 const char *name;
326bb8a5 538 const char *default_trigger;
f46e9203
NC
539 int flags;
540};
541
542struct led_platform_data {
543 int num_leds;
544 struct led_info *leds;
545};
546
bb4e9af0
JA
547struct led_properties {
548 u32 color;
549 bool color_present;
550 const char *function;
551 u32 func_enum;
552 bool func_enum_present;
553 const char *label;
554};
555
68620e59
HK
556typedef int (*gpio_blink_set_t)(struct gpio_desc *desc, int state,
557 unsigned long *delay_on,
558 unsigned long *delay_off);
559
22e03f3b
RA
560/* For the leds-gpio driver */
561struct gpio_led {
562 const char *name;
326bb8a5 563 const char *default_trigger;
22e03f3b 564 unsigned gpio;
ed88bae6
TP
565 unsigned active_low : 1;
566 unsigned retain_state_suspended : 1;
80d6737b 567 unsigned panic_indicator : 1;
ed88bae6 568 unsigned default_state : 2;
f5808ac1 569 unsigned retain_state_shutdown : 1;
ed88bae6 570 /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */
5c51277a 571 struct gpio_desc *gpiod;
22e03f3b 572};
791bc411
DOH
573#define LEDS_GPIO_DEFSTATE_OFF LEDS_DEFSTATE_OFF
574#define LEDS_GPIO_DEFSTATE_ON LEDS_DEFSTATE_ON
575#define LEDS_GPIO_DEFSTATE_KEEP LEDS_DEFSTATE_KEEP
22e03f3b
RA
576
577struct gpio_led_platform_data {
578 int num_leds;
9517f925 579 const struct gpio_led *leds;
2146325d
BH
580
581#define GPIO_LED_NO_BLINK_LOW 0 /* No blink GPIO state low */
582#define GPIO_LED_NO_BLINK_HIGH 1 /* No blink GPIO state high */
9517f925 583#define GPIO_LED_BLINK 2 /* Please, blink */
68620e59 584 gpio_blink_set_t gpio_blink_set;
22e03f3b
RA
585};
586
fca23e47 587#ifdef CONFIG_NEW_LEDS
4440673a
UKK
588struct platform_device *gpio_led_register_device(
589 int id, const struct gpio_led_platform_data *pdata);
fca23e47
AD
590#else
591static inline struct platform_device *gpio_led_register_device(
592 int id, const struct gpio_led_platform_data *pdata)
593{
594 return 0;
595}
596#endif
22e03f3b 597
8f88731d
BW
598enum cpu_led_event {
599 CPU_LED_IDLE_START, /* CPU enters idle */
600 CPU_LED_IDLE_END, /* CPU idle ends */
601 CPU_LED_START, /* Machine starts, especially resume */
602 CPU_LED_STOP, /* Machine stops, especially suspend */
603 CPU_LED_HALTED, /* Machine shutdown */
604};
605#ifdef CONFIG_LEDS_TRIGGER_CPU
ec28a8cf 606void ledtrig_cpu(enum cpu_led_event evt);
8f88731d
BW
607#else
608static inline void ledtrig_cpu(enum cpu_led_event evt)
609{
610 return;
611}
612#endif
613
0cb8eb30 614#ifdef CONFIG_LEDS_BRIGHTNESS_HW_CHANGED
ec28a8cf 615void led_classdev_notify_brightness_hw_changed(
af0bfab9 616 struct led_classdev *led_cdev, unsigned int brightness);
0cb8eb30
HG
617#else
618static inline void led_classdev_notify_brightness_hw_changed(
619 struct led_classdev *led_cdev, enum led_brightness brightness) { }
620#endif
621
5fd752b6
BW
622/**
623 * struct led_pattern - pattern interval settings
624 * @delta_t: pattern interval delay, in milliseconds
625 * @brightness: pattern interval brightness
626 */
627struct led_pattern {
628 u32 delta_t;
629 int brightness;
630};
631
faa2541f
TI
632enum led_audio {
633 LED_AUDIO_MUTE, /* master mute LED */
634 LED_AUDIO_MICMUTE, /* mic mute LED */
635 NUM_AUDIO_LEDS
636};
637
638#if IS_ENABLED(CONFIG_LEDS_TRIGGER_AUDIO)
639enum led_brightness ledtrig_audio_get(enum led_audio type);
640void ledtrig_audio_set(enum led_audio type, enum led_brightness state);
641#else
642static inline enum led_brightness ledtrig_audio_get(enum led_audio type)
643{
644 return LED_OFF;
645}
646static inline void ledtrig_audio_set(enum led_audio type,
647 enum led_brightness state)
648{
649}
650#endif
651
c72a1d60 652#endif /* __LINUX_LEDS_H_INCLUDED */