leds.h 11.6 KB
Newer Older
R
Richard Purdie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Driver model for leds and led triggers
 *
 * Copyright (C) 2005 John Lenz <lenz@cs.wisc.edu>
 * Copyright (C) 2005 Richard Purdie <rpurdie@openedhand.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 */
#ifndef __LINUX_LEDS_H_INCLUDED
#define __LINUX_LEDS_H_INCLUDED

15
#include <linux/device.h>
16
#include <linux/list.h>
17
#include <linux/mutex.h>
18
#include <linux/rwsem.h>
19
#include <linux/spinlock.h>
20
#include <linux/timer.h>
21
#include <linux/workqueue.h>
22

R
Richard Purdie 已提交
23 24 25 26 27 28
struct device;
/*
 * LED Core
 */

enum led_brightness {
29 30 31
	LED_OFF		= 0,
	LED_HALF	= 127,
	LED_FULL	= 255,
R
Richard Purdie 已提交
32 33 34
};

struct led_classdev {
35
	const char		*name;
36 37
	enum led_brightness	 brightness;
	enum led_brightness	 max_brightness;
38
	int			 flags;
R
Richard Purdie 已提交
39

40
	/* Lower 16 bits reflect status */
41
#define LED_SUSPENDED		(1 << 0)
42 43
	/* Upper 16 bits reflect control information */
#define LED_CORE_SUSPENDRESUME	(1 << 16)
44 45 46
#define LED_BLINK_ONESHOT	(1 << 17)
#define LED_BLINK_ONESHOT_STOP	(1 << 18)
#define LED_BLINK_INVERT	(1 << 19)
47
#define LED_SYSFS_DISABLE	(1 << 20)
48 49
#define SET_BRIGHTNESS_ASYNC	(1 << 21)
#define SET_BRIGHTNESS_SYNC	(1 << 22)
50
#define LED_DEV_CAP_FLASH	(1 << 23)
R
Richard Purdie 已提交
51

52
	/* Set LED brightness level */
53
	/* Must not sleep, use a workqueue if needed */
54 55
	void		(*brightness_set)(struct led_classdev *led_cdev,
					  enum led_brightness brightness);
56 57 58 59 60 61
	/*
	 * Set LED brightness level immediately - it can block the caller for
	 * the time required for accessing a LED device register.
	 */
	int		(*brightness_set_sync)(struct led_classdev *led_cdev,
					enum led_brightness brightness);
62 63
	/* Get LED brightness level */
	enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
64

65 66 67 68 69 70 71 72
	/*
	 * Activate hardware accelerated blink, delays are in milliseconds
	 * and if both are zero then a sensible default should be chosen.
	 * The call should adjust the timings in that case and if it can't
	 * match the values specified exactly.
	 * Deactivate blinking again when the brightness is set to a fixed
	 * value via the brightness_set() callback.
	 */
73 74 75 76
	int		(*blink_set)(struct led_classdev *led_cdev,
				     unsigned long *delay_on,
				     unsigned long *delay_off);

77
	struct device		*dev;
78 79
	const struct attribute_group	**groups;

80
	struct list_head	 node;			/* LED Device list */
81
	const char		*default_trigger;	/* Trigger to use */
R
Richard Purdie 已提交
82

83
	unsigned long		 blink_delay_on, blink_delay_off;
84
	struct timer_list	 blink_timer;
85
	int			 blink_brightness;
86
	void			(*flash_resume)(struct led_classdev *led_cdev);
87

88 89 90
	struct work_struct	set_brightness_work;
	int			delayed_set_value;

91 92
#ifdef CONFIG_LEDS_TRIGGERS
	/* Protects the trigger data below */
93
	struct rw_semaphore	 trigger_lock;
94

95 96 97
	struct led_trigger	*trigger;
	struct list_head	 trig_list;
	void			*trigger_data;
98 99
	/* true if activated - deactivate routine uses it to do cleanup */
	bool			activated;
100
#endif
101 102 103

	/* Ensures consistent access to the LED Flash Class device */
	struct mutex		led_access;
R
Richard Purdie 已提交
104 105 106
};

extern int led_classdev_register(struct device *parent,
107
				 struct led_classdev *led_cdev);
108 109
extern int devm_led_classdev_register(struct device *parent,
				      struct led_classdev *led_cdev);
110
extern void led_classdev_unregister(struct led_classdev *led_cdev);
111 112
extern void devm_led_classdev_unregister(struct device *parent,
					 struct led_classdev *led_cdev);
R
Richard Purdie 已提交
113 114 115
extern void led_classdev_suspend(struct led_classdev *led_cdev);
extern void led_classdev_resume(struct led_classdev *led_cdev);

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
/**
 * led_blink_set - set blinking with software fallback
 * @led_cdev: the LED to start blinking
 * @delay_on: the time it should be on (in ms)
 * @delay_off: the time it should ble off (in ms)
 *
 * This function makes the LED blink, attempting to use the
 * hardware acceleration if possible, but falling back to
 * software blinking if there is no hardware blinking or if
 * the LED refuses the passed values.
 *
 * Note that if software blinking is active, simply calling
 * led_cdev->brightness_set() will not stop the blinking,
 * use led_classdev_brightness_set() instead.
 */
extern void led_blink_set(struct led_classdev *led_cdev,
			  unsigned long *delay_on,
			  unsigned long *delay_off);
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
/**
 * led_blink_set_oneshot - do a oneshot software blink
 * @led_cdev: the LED to start blinking
 * @delay_on: the time it should be on (in ms)
 * @delay_off: the time it should ble off (in ms)
 * @invert: blink off, then on, leaving the led on
 *
 * This function makes the LED blink one time for delay_on +
 * delay_off time, ignoring the request if another one-shot
 * blink is already in progress.
 *
 * If invert is set, led blinks for delay_off first, then for
 * delay_on and leave the led on after the on-off cycle.
 */
extern void led_blink_set_oneshot(struct led_classdev *led_cdev,
				  unsigned long *delay_on,
				  unsigned long *delay_off,
				  int invert);
152
/**
153
 * led_set_brightness - set LED brightness
154 155 156 157 158 159 160
 * @led_cdev: the LED to set
 * @brightness: the brightness to set it to
 *
 * Set an LED's brightness, and, if necessary, cancel the
 * software blink timer that implements blinking when the
 * hardware doesn't.
 */
161
extern void led_set_brightness(struct led_classdev *led_cdev,
162
			       enum led_brightness brightness);
163 164 165 166 167 168 169 170 171 172
/**
 * led_update_brightness - update LED brightness
 * @led_cdev: the LED to query
 *
 * Get an LED's current brightness and update led_cdev->brightness
 * member with the obtained value.
 *
 * Returns: 0 on success or negative error value on failure
 */
extern int led_update_brightness(struct led_classdev *led_cdev);
173

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
/**
 * led_sysfs_disable - disable LED sysfs interface
 * @led_cdev: the LED to set
 *
 * Disable the led_cdev's sysfs interface.
 */
extern void led_sysfs_disable(struct led_classdev *led_cdev);

/**
 * led_sysfs_enable - enable LED sysfs interface
 * @led_cdev: the LED to set
 *
 * Enable the led_cdev's sysfs interface.
 */
extern void led_sysfs_enable(struct led_classdev *led_cdev);

/**
 * led_sysfs_is_disabled - check if LED sysfs interface is disabled
 * @led_cdev: the LED to query
 *
 * Returns: true if the led_cdev's sysfs interface is disabled.
 */
static inline bool led_sysfs_is_disabled(struct led_classdev *led_cdev)
{
	return led_cdev->flags & LED_SYSFS_DISABLE;
}

201 202 203
/*
 * LED Triggers
 */
204 205 206 207
/* Registration functions for simple triggers */
#define DEFINE_LED_TRIGGER(x)		static struct led_trigger *x;
#define DEFINE_LED_TRIGGER_GLOBAL(x)	struct led_trigger *x;

208 209 210 211 212 213
#ifdef CONFIG_LEDS_TRIGGERS

#define TRIG_NAME_MAX 50

struct led_trigger {
	/* Trigger Properties */
214 215 216
	const char	 *name;
	void		(*activate)(struct led_classdev *led_cdev);
	void		(*deactivate)(struct led_classdev *led_cdev);
217 218

	/* LEDs under control by this trigger (for simple triggers) */
219 220
	rwlock_t	  leddev_list_lock;
	struct list_head  led_cdevs;
221 222

	/* Link to next registered trigger */
223
	struct list_head  next_trig;
224 225
};

226 227 228 229 230
ssize_t led_trigger_store(struct device *dev, struct device_attribute *attr,
			const char *buf, size_t count);
ssize_t led_trigger_show(struct device *dev, struct device_attribute *attr,
			char *buf);

231 232 233 234 235 236 237 238 239
/* Registration functions for complex triggers */
extern int led_trigger_register(struct led_trigger *trigger);
extern void led_trigger_unregister(struct led_trigger *trigger);

extern void led_trigger_register_simple(const char *name,
				struct led_trigger **trigger);
extern void led_trigger_unregister_simple(struct led_trigger *trigger);
extern void led_trigger_event(struct led_trigger *trigger,
				enum led_brightness event);
240 241 242
extern void led_trigger_blink(struct led_trigger *trigger,
			      unsigned long *delay_on,
			      unsigned long *delay_off);
243 244 245 246
extern void led_trigger_blink_oneshot(struct led_trigger *trigger,
				      unsigned long *delay_on,
				      unsigned long *delay_off,
				      int invert);
247 248 249 250 251 252 253 254 255 256
extern void led_trigger_set_default(struct led_classdev *led_cdev);
extern void led_trigger_set(struct led_classdev *led_cdev,
			struct led_trigger *trigger);
extern void led_trigger_remove(struct led_classdev *led_cdev);

static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
{
	return led_cdev->trigger_data;
}

257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
/**
 * led_trigger_rename_static - rename a trigger
 * @name: the new trigger name
 * @trig: the LED trigger to rename
 *
 * Change a LED trigger name by copying the string passed in
 * name into current trigger name, which MUST be large
 * enough for the new string.
 *
 * Note that name must NOT point to the same string used
 * during LED registration, as that could lead to races.
 *
 * This is meant to be used on triggers with statically
 * allocated name.
 */
extern void led_trigger_rename_static(const char *name,
				      struct led_trigger *trig);
274 275 276

#else

277 278
/* Trigger has no members */
struct led_trigger {};
279

280 281 282 283 284 285
/* Trigger inline empty functions */
static inline void led_trigger_register_simple(const char *name,
					struct led_trigger **trigger) {}
static inline void led_trigger_unregister_simple(struct led_trigger *trigger) {}
static inline void led_trigger_event(struct led_trigger *trigger,
				enum led_brightness event) {}
286 287 288 289 290 291 292
static inline void led_trigger_blink(struct led_trigger *trigger,
				      unsigned long *delay_on,
				      unsigned long *delay_off) {}
static inline void led_trigger_blink_oneshot(struct led_trigger *trigger,
				      unsigned long *delay_on,
				      unsigned long *delay_off,
				      int invert) {}
293 294 295 296 297 298 299 300 301
static inline void led_trigger_set_default(struct led_classdev *led_cdev) {}
static inline void led_trigger_set(struct led_classdev *led_cdev,
				struct led_trigger *trigger) {}
static inline void led_trigger_remove(struct led_classdev *led_cdev) {}
static inline void *led_get_trigger_data(struct led_classdev *led_cdev)
{
	return NULL;
}

302
#endif /* CONFIG_LEDS_TRIGGERS */
303 304 305 306 307

/* Trigger specific functions */
#ifdef CONFIG_LEDS_TRIGGER_IDE_DISK
extern void ledtrig_ide_activity(void);
#else
308
static inline void ledtrig_ide_activity(void) {}
309 310
#endif

K
Kim, Milo 已提交
311 312 313 314 315 316 317 318
#if defined(CONFIG_LEDS_TRIGGER_CAMERA) || defined(CONFIG_LEDS_TRIGGER_CAMERA_MODULE)
extern void ledtrig_flash_ctrl(bool on);
extern void ledtrig_torch_ctrl(bool on);
#else
static inline void ledtrig_flash_ctrl(bool on) {}
static inline void ledtrig_torch_ctrl(bool on) {}
#endif

319 320 321 322 323
/*
 * Generic LED platform data for describing LED names and default triggers.
 */
struct led_info {
	const char	*name;
324
	const char	*default_trigger;
325 326 327 328 329 330 331 332
	int		flags;
};

struct led_platform_data {
	int		num_leds;
	struct led_info	*leds;
};

333 334 335
/* For the leds-gpio driver */
struct gpio_led {
	const char *name;
336
	const char *default_trigger;
337
	unsigned 	gpio;
338 339 340 341
	unsigned	active_low : 1;
	unsigned	retain_state_suspended : 1;
	unsigned	default_state : 2;
	/* default_state should be one of LEDS_GPIO_DEFSTATE_(ON|OFF|KEEP) */
342
	struct gpio_desc *gpiod;
343
};
344 345 346
#define LEDS_GPIO_DEFSTATE_OFF		0
#define LEDS_GPIO_DEFSTATE_ON		1
#define LEDS_GPIO_DEFSTATE_KEEP		2
347 348 349

struct gpio_led_platform_data {
	int 		num_leds;
350
	const struct gpio_led *leds;
351 352 353

#define GPIO_LED_NO_BLINK_LOW	0	/* No blink GPIO state low */
#define GPIO_LED_NO_BLINK_HIGH	1	/* No blink GPIO state high */
354
#define GPIO_LED_BLINK		2	/* Please, blink */
355
	int		(*gpio_blink_set)(struct gpio_desc *desc, int state,
356 357
					unsigned long *delay_on,
					unsigned long *delay_off);
358 359
};

360 361
struct platform_device *gpio_led_register_device(
		int id, const struct gpio_led_platform_data *pdata);
362

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378
enum cpu_led_event {
	CPU_LED_IDLE_START,	/* CPU enters idle */
	CPU_LED_IDLE_END,	/* CPU idle ends */
	CPU_LED_START,		/* Machine starts, especially resume */
	CPU_LED_STOP,		/* Machine stops, especially suspend */
	CPU_LED_HALTED,		/* Machine shutdown */
};
#ifdef CONFIG_LEDS_TRIGGER_CPU
extern void ledtrig_cpu(enum cpu_led_event evt);
#else
static inline void ledtrig_cpu(enum cpu_led_event evt)
{
	return;
}
#endif

R
Richard Purdie 已提交
379
#endif		/* __LINUX_LEDS_H_INCLUDED */