blob: ed634279062eb6de41edca0e43bdbb0e8991538f [file] [log] [blame]
Richard Purdiec72a1d62006-03-31 02:31:04 -08001/*
2 * Driver model for leds and led triggers
3 *
4 * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
5 * Copyright (C) 2005 Richard Purdie <rpurdie@openedhand.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 */
12#ifndef __LINUX_LEDS_H_INCLUDED
13#define __LINUX_LEDS_H_INCLUDED
14
Johannes Bergaf410fc2006-09-29 02:00:14 -070015#include <linux/list.h>
Jacek Anaszewskiacd899e2014-09-22 08:21:04 -070016#include <linux/mutex.h>
Richard Purdiedc472062007-11-10 13:29:04 +000017#include <linux/rwsem.h>
Jacek Anaszewski04713302014-08-07 05:10:22 -070018#include <linux/spinlock.h>
Jiri Kosina90673592014-09-02 02:03:12 -070019#include <linux/timer.h>
Fabio Baltierid23a22a2012-08-15 21:44:34 +080020#include <linux/workqueue.h>
Johannes Bergaf410fc2006-09-29 02:00:14 -070021
Richard Purdiec72a1d62006-03-31 02:31:04 -080022struct device;
Richard Purdiec72a1d62006-03-31 02:31:04 -080023/*
24 * LED Core
25 */
26
27enum led_brightness {
Ben Dooksfb5035d2006-04-10 22:54:02 -070028 LED_OFF = 0,
29 LED_HALF = 127,
30 LED_FULL = 255,
Richard Purdiec72a1d62006-03-31 02:31:04 -080031};
32
33struct led_classdev {
Ben Dooksfb5035d2006-04-10 22:54:02 -070034 const char *name;
Jacek Anaszewskid8082822014-08-07 05:10:23 -070035 enum led_brightness brightness;
36 enum led_brightness max_brightness;
Ben Dooksfb5035d2006-04-10 22:54:02 -070037 int flags;
Richard Purdiec72a1d62006-03-31 02:31:04 -080038
Richard Purdie859cb7f2009-01-08 17:55:03 +000039 /* Lower 16 bits reflect status */
Ben Dooksfb5035d2006-04-10 22:54:02 -070040#define LED_SUSPENDED (1 << 0)
Richard Purdie859cb7f2009-01-08 17:55:03 +000041 /* Upper 16 bits reflect control information */
42#define LED_CORE_SUSPENDRESUME (1 << 16)
Fabio Baltieri5bb629c2012-05-27 07:19:22 +080043#define LED_BLINK_ONESHOT (1 << 17)
44#define LED_BLINK_ONESHOT_STOP (1 << 18)
45#define LED_BLINK_INVERT (1 << 19)
Jacek Anaszewskiacd899e2014-09-22 08:21:04 -070046#define LED_SYSFS_DISABLE (1 << 20)
Jacek Anaszewski4d71a4a2014-11-14 02:50:18 -080047#define SET_BRIGHTNESS_ASYNC (1 << 21)
48#define SET_BRIGHTNESS_SYNC (1 << 22)
Jacek Anaszewski7aea8382015-01-09 07:22:51 -080049#define LED_DEV_CAP_FLASH (1 << 23)
50#define LED_DEV_CAP_SYNC_STROBE (1 << 24)
Richard Purdiec72a1d62006-03-31 02:31:04 -080051
Ben Dooksfb5035d2006-04-10 22:54:02 -070052 /* Set LED brightness level */
Richard Purdie2e214e02008-04-24 23:49:30 +010053 /* Must not sleep, use a workqueue if needed */
Ben Dooksfb5035d2006-04-10 22:54:02 -070054 void (*brightness_set)(struct led_classdev *led_cdev,
55 enum led_brightness brightness);
Jacek Anaszewski4d71a4a2014-11-14 02:50:18 -080056 /*
57 * Set LED brightness level immediately - it can block the caller for
58 * the time required for accessing a LED device register.
59 */
60 int (*brightness_set_sync)(struct led_classdev *led_cdev,
61 enum led_brightness brightness);
Henrique de Moraes Holschuh29d76df2008-03-18 09:47:48 +000062 /* Get LED brightness level */
63 enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
Richard Purdiec72a1d62006-03-31 02:31:04 -080064
Johannes Berg5ada28b2010-11-11 14:05:21 -080065 /*
66 * Activate hardware accelerated blink, delays are in milliseconds
67 * and if both are zero then a sensible default should be chosen.
68 * The call should adjust the timings in that case and if it can't
69 * match the values specified exactly.
70 * Deactivate blinking again when the brightness is set to a fixed
71 * value via the brightness_set() callback.
72 */
Márton Németh4c791412007-10-31 15:07:12 +010073 int (*blink_set)(struct led_classdev *led_cdev,
74 unsigned long *delay_on,
75 unsigned long *delay_off);
76
Richard Purdief8a7c6f2007-07-08 23:19:31 +010077 struct device *dev;
Johan Hovoldd0d480c2014-06-25 10:08:44 -070078 const struct attribute_group **groups;
79
Ben Dooksfb5035d2006-04-10 22:54:02 -070080 struct list_head node; /* LED Device list */
Anton Vorontsov781a54e2008-05-31 15:23:19 +010081 const char *default_trigger; /* Trigger to use */
Ben Dooksfb5035d2006-04-10 22:54:02 -070082
Johannes Berg5ada28b2010-11-11 14:05:21 -080083 unsigned long blink_delay_on, blink_delay_off;
Jiri Kosina90673592014-09-02 02:03:12 -070084 struct timer_list blink_timer;
Johannes Berg5ada28b2010-11-11 14:05:21 -080085 int blink_brightness;
Jacek Anaszewski7aea8382015-01-09 07:22:51 -080086 void (*flash_resume)(struct led_classdev *led_cdev);
Johannes Berg5ada28b2010-11-11 14:05:21 -080087
Fabio Baltierid23a22a2012-08-15 21:44:34 +080088 struct work_struct set_brightness_work;
89 int delayed_set_value;
90
Richard Purdiec3bc9952006-03-31 02:31:05 -080091#ifdef CONFIG_LEDS_TRIGGERS
Richard Purdiec3bc9952006-03-31 02:31:05 -080092 /* Protects the trigger data below */
Richard Purdiedc472062007-11-10 13:29:04 +000093 struct rw_semaphore trigger_lock;
Richard Purdiec3bc9952006-03-31 02:31:05 -080094
Ben Dooksfb5035d2006-04-10 22:54:02 -070095 struct led_trigger *trigger;
96 struct list_head trig_list;
97 void *trigger_data;
Shuah Khanb0096182012-05-29 15:07:27 -070098 /* true if activated - deactivate routine uses it to do cleanup */
99 bool activated;
Richard Purdiec3bc9952006-03-31 02:31:05 -0800100#endif
Jacek Anaszewskiacd899e2014-09-22 08:21:04 -0700101
102 /* Ensures consistent access to the LED Flash Class device */
103 struct mutex led_access;
Richard Purdiec72a1d62006-03-31 02:31:04 -0800104};
105
106extern int led_classdev_register(struct device *parent,
Ben Dooksfb5035d2006-04-10 22:54:02 -0700107 struct led_classdev *led_cdev);
Bjorn Anderssonca1bb4e2015-02-23 16:11:41 -0800108extern int devm_led_classdev_register(struct device *parent,
109 struct led_classdev *led_cdev);
Wolfram Sange2387d62008-11-17 14:35:44 +0000110extern void led_classdev_unregister(struct led_classdev *led_cdev);
Bjorn Anderssonca1bb4e2015-02-23 16:11:41 -0800111extern void devm_led_classdev_unregister(struct device *parent,
112 struct led_classdev *led_cdev);
Richard Purdiec72a1d62006-03-31 02:31:04 -0800113extern void led_classdev_suspend(struct led_classdev *led_cdev);
114extern void led_classdev_resume(struct led_classdev *led_cdev);
115
Johannes Berg5ada28b2010-11-11 14:05:21 -0800116/**
117 * led_blink_set - set blinking with software fallback
118 * @led_cdev: the LED to start blinking
119 * @delay_on: the time it should be on (in ms)
120 * @delay_off: the time it should ble off (in ms)
121 *
122 * This function makes the LED blink, attempting to use the
123 * hardware acceleration if possible, but falling back to
124 * software blinking if there is no hardware blinking or if
125 * the LED refuses the passed values.
126 *
127 * Note that if software blinking is active, simply calling
128 * led_cdev->brightness_set() will not stop the blinking,
129 * use led_classdev_brightness_set() instead.
130 */
131extern void led_blink_set(struct led_classdev *led_cdev,
132 unsigned long *delay_on,
133 unsigned long *delay_off);
134/**
Fabio Baltieri5bb629c2012-05-27 07:19:22 +0800135 * led_blink_set_oneshot - do a oneshot software blink
136 * @led_cdev: the LED to start blinking
137 * @delay_on: the time it should be on (in ms)
138 * @delay_off: the time it should ble off (in ms)
139 * @invert: blink off, then on, leaving the led on
140 *
141 * This function makes the LED blink one time for delay_on +
142 * delay_off time, ignoring the request if another one-shot
143 * blink is already in progress.
144 *
145 * If invert is set, led blinks for delay_off first, then for
146 * delay_on and leave the led on after the on-off cycle.
147 */
148extern void led_blink_set_oneshot(struct led_classdev *led_cdev,
149 unsigned long *delay_on,
150 unsigned long *delay_off,
151 int invert);
152/**
Shuah Khan19cd67e2012-06-14 04:34:30 +0800153 * led_set_brightness - set LED brightness
Johannes Berg5ada28b2010-11-11 14:05:21 -0800154 * @led_cdev: the LED to set
155 * @brightness: the brightness to set it to
156 *
157 * Set an LED's brightness, and, if necessary, cancel the
158 * software blink timer that implements blinking when the
159 * hardware doesn't.
160 */
Shuah Khan19cd67e2012-06-14 04:34:30 +0800161extern void led_set_brightness(struct led_classdev *led_cdev,
Johannes Berg5ada28b2010-11-11 14:05:21 -0800162 enum led_brightness brightness);
Jacek Anaszewski3ef7de52014-08-20 06:41:55 -0700163/**
164 * led_update_brightness - update LED brightness
165 * @led_cdev: the LED to query
166 *
167 * Get an LED's current brightness and update led_cdev->brightness
168 * member with the obtained value.
169 *
170 * Returns: 0 on success or negative error value on failure
171 */
172extern int led_update_brightness(struct led_classdev *led_cdev);
Johannes Berg5ada28b2010-11-11 14:05:21 -0800173
Jacek Anaszewskiacd899e2014-09-22 08:21:04 -0700174/**
175 * led_sysfs_disable - disable LED sysfs interface
176 * @led_cdev: the LED to set
177 *
178 * Disable the led_cdev's sysfs interface.
179 */
180extern void led_sysfs_disable(struct led_classdev *led_cdev);
181
182/**
183 * led_sysfs_enable - enable LED sysfs interface
184 * @led_cdev: the LED to set
185 *
186 * Enable the led_cdev's sysfs interface.
187 */
188extern void led_sysfs_enable(struct led_classdev *led_cdev);
189
190/**
191 * led_sysfs_is_disabled - check if LED sysfs interface is disabled
192 * @led_cdev: the LED to query
193 *
194 * Returns: true if the led_cdev's sysfs interface is disabled.
195 */
196static inline bool led_sysfs_is_disabled(struct led_classdev *led_cdev)
197{
198 return led_cdev->flags & LED_SYSFS_DISABLE;
199}
200
Richard Purdiec3bc9952006-03-31 02:31:05 -0800201/*
202 * LED Triggers
203 */
Kim, Milo39f7e082013-03-14 04:29:19 -0700204/* Registration functions for simple triggers */
205#define DEFINE_LED_TRIGGER(x) static struct led_trigger *x;
206#define DEFINE_LED_TRIGGER_GLOBAL(x) struct led_trigger *x;
207
Richard Purdiec3bc9952006-03-31 02:31:05 -0800208#ifdef CONFIG_LEDS_TRIGGERS
209
210#define TRIG_NAME_MAX 50
211
212struct led_trigger {
213 /* Trigger Properties */
Ben Dooksfb5035d2006-04-10 22:54:02 -0700214 const char *name;
215 void (*activate)(struct led_classdev *led_cdev);
216 void (*deactivate)(struct led_classdev *led_cdev);
Richard Purdiec3bc9952006-03-31 02:31:05 -0800217
218 /* LEDs under control by this trigger (for simple triggers) */
Ben Dooksfb5035d2006-04-10 22:54:02 -0700219 rwlock_t leddev_list_lock;
220 struct list_head led_cdevs;
Richard Purdiec3bc9952006-03-31 02:31:05 -0800221
222 /* Link to next registered trigger */
Ben Dooksfb5035d2006-04-10 22:54:02 -0700223 struct list_head next_trig;
Richard Purdiec3bc9952006-03-31 02:31:05 -0800224};
225
226/* Registration functions for complex triggers */
227extern int led_trigger_register(struct led_trigger *trigger);
228extern void led_trigger_unregister(struct led_trigger *trigger);
229
Richard Purdiec3bc9952006-03-31 02:31:05 -0800230extern void led_trigger_register_simple(const char *name,
231 struct led_trigger **trigger);
232extern void led_trigger_unregister_simple(struct led_trigger *trigger);
233extern void led_trigger_event(struct led_trigger *trigger,
234 enum led_brightness event);
Vasily Khoruzhick0b9536c2011-01-07 16:28:16 +0000235extern void led_trigger_blink(struct led_trigger *trigger,
236 unsigned long *delay_on,
237 unsigned long *delay_off);
Fabio Baltieri5bb629c2012-05-27 07:19:22 +0800238extern void led_trigger_blink_oneshot(struct led_trigger *trigger,
239 unsigned long *delay_on,
240 unsigned long *delay_off,
241 int invert);
Jingoo Han057407c2012-11-18 21:35:55 -0800242/**
243 * led_trigger_rename_static - rename a trigger
244 * @name: the new trigger name
245 * @trig: the LED trigger to rename
246 *
247 * Change a LED trigger name by copying the string passed in
248 * name into current trigger name, which MUST be large
249 * enough for the new string.
250 *
251 * Note that name must NOT point to the same string used
252 * during LED registration, as that could lead to races.
253 *
254 * This is meant to be used on triggers with statically
255 * allocated name.
256 */
257extern void led_trigger_rename_static(const char *name,
258 struct led_trigger *trig);
Richard Purdiec3bc9952006-03-31 02:31:05 -0800259
260#else
261
Kim, Milo39f7e082013-03-14 04:29:19 -0700262/* Trigger has no members */
263struct led_trigger {};
Richard Purdiec3bc9952006-03-31 02:31:05 -0800264
Kim, Milo39f7e082013-03-14 04:29:19 -0700265/* Trigger inline empty functions */
266static inline void led_trigger_register_simple(const char *name,
267 struct led_trigger **trigger) {}
268static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {}
269static inline void led_trigger_event(struct led_trigger *trigger,
270 enum led_brightness event) {}
271#endif /* CONFIG_LEDS_TRIGGERS */
Richard Purdie2bfb6462006-03-31 02:31:16 -0800272
273/* Trigger specific functions */
274#ifdef CONFIG_LEDS_TRIGGER_IDE_DISK
275extern void ledtrig_ide_activity(void);
276#else
Kim, Milo39f7e082013-03-14 04:29:19 -0700277static inline void ledtrig_ide_activity(void) {}
Richard Purdie2bfb6462006-03-31 02:31:16 -0800278#endif
279
Kim, Milo48a1d032013-03-14 04:29:24 -0700280#if defined(CONFIG_LEDS_TRIGGER_CAMERA) || defined(CONFIG_LEDS_TRIGGER_CAMERA_MODULE)
281extern void ledtrig_flash_ctrl(bool on);
282extern void ledtrig_torch_ctrl(bool on);
283#else
284static inline void ledtrig_flash_ctrl(bool on) {}
285static inline void ledtrig_torch_ctrl(bool on) {}
286#endif
287
Nate Casef46e9202008-07-16 22:49:55 +0100288/*
289 * Generic LED platform data for describing LED names and default triggers.
290 */
291struct led_info {
292 const char *name;
Trent Piepho326bb8a52008-10-13 10:13:01 +0100293 const char *default_trigger;
Nate Casef46e9202008-07-16 22:49:55 +0100294 int flags;
295};
296
297struct led_platform_data {
298 int num_leds;
299 struct led_info *leds;
300};
301
Raphael Assenat22e03f32007-02-27 19:49:53 +0000302/* For the leds-gpio driver */
303struct gpio_led {
304 const char *name;
Trent Piepho326bb8a52008-10-13 10:13:01 +0100305 const char *default_trigger;
Raphael Assenat22e03f32007-02-27 19:49:53 +0000306 unsigned gpio;
Trent Piephoed88bae2009-05-12 15:33:12 -0700307 unsigned active_low : 1;
308 unsigned retain_state_suspended : 1;
309 unsigned default_state : 2;
310 /* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */
Mika Westerberg5c512772014-10-27 23:29:32 +0100311 struct gpio_desc *gpiod;
Raphael Assenat22e03f32007-02-27 19:49:53 +0000312};
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +1000313#define LEDS_GPIO_DEFSTATE_OFF 0
314#define LEDS_GPIO_DEFSTATE_ON 1
315#define LEDS_GPIO_DEFSTATE_KEEP 2
Raphael Assenat22e03f32007-02-27 19:49:53 +0000316
317struct gpio_led_platform_data {
318 int num_leds;
Uwe Kleine-König9517f922011-03-22 16:30:17 -0700319 const struct gpio_led *leds;
Benjamin Herrenschmidt21463252010-05-22 20:54:55 +1000320
321#define GPIO_LED_NO_BLINK_LOW 0 /* No blink GPIO state low */
322#define GPIO_LED_NO_BLINK_HIGH 1 /* No blink GPIO state high */
Uwe Kleine-König9517f922011-03-22 16:30:17 -0700323#define GPIO_LED_BLINK 2 /* Please, blink */
Mika Westerbergc673a2b2014-10-31 13:40:58 +0200324 int (*gpio_blink_set)(struct gpio_desc *desc, int state,
Herbert Valerio Riedelca3259b2008-03-09 23:48:25 +0000325 unsigned long *delay_on,
326 unsigned long *delay_off);
Raphael Assenat22e03f32007-02-27 19:49:53 +0000327};
328
Uwe Kleine-König44406732011-05-24 17:13:29 -0700329struct platform_device *gpio_led_register_device(
330 int id, const struct gpio_led_platform_data *pdata);
Raphael Assenat22e03f32007-02-27 19:49:53 +0000331
Bryan Wu8f887312011-06-25 18:33:50 +0800332enum cpu_led_event {
333 CPU_LED_IDLE_START, /* CPU enters idle */
334 CPU_LED_IDLE_END, /* CPU idle ends */
335 CPU_LED_START, /* Machine starts, especially resume */
336 CPU_LED_STOP, /* Machine stops, especially suspend */
337 CPU_LED_HALTED, /* Machine shutdown */
338};
339#ifdef CONFIG_LEDS_TRIGGER_CPU
340extern void ledtrig_cpu(enum cpu_led_event evt);
341#else
342static inline void ledtrig_cpu(enum cpu_led_event evt)
343{
344 return;
345}
346#endif
347
Richard Purdiec72a1d62006-03-31 02:31:04 -0800348#endif /* __LINUX_LEDS_H_INCLUDED */