leds.h 7.1 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/list.h>
16
#include <linux/spinlock.h>
17
#include <linux/rwsem.h>
18
#include <linux/timer.h>
19

R
Richard Purdie 已提交
20 21 22 23 24 25
struct device;
/*
 * LED Core
 */

enum led_brightness {
26 27 28
	LED_OFF		= 0,
	LED_HALF	= 127,
	LED_FULL	= 255,
R
Richard Purdie 已提交
29 30 31
};

struct led_classdev {
32 33
	const char		*name;
	int			 brightness;
34
	int			 max_brightness;
35
	int			 flags;
R
Richard Purdie 已提交
36

37
	/* Lower 16 bits reflect status */
38
#define LED_SUSPENDED		(1 << 0)
39 40
	/* Upper 16 bits reflect control information */
#define LED_CORE_SUSPENDRESUME	(1 << 16)
41 42 43
#define LED_BLINK_ONESHOT	(1 << 17)
#define LED_BLINK_ONESHOT_STOP	(1 << 18)
#define LED_BLINK_INVERT	(1 << 19)
R
Richard Purdie 已提交
44

45
	/* Set LED brightness level */
46
	/* Must not sleep, use a workqueue if needed */
47 48
	void		(*brightness_set)(struct led_classdev *led_cdev,
					  enum led_brightness brightness);
49 50
	/* Get LED brightness level */
	enum led_brightness (*brightness_get)(struct led_classdev *led_cdev);
51

52 53 54 55 56 57 58 59
	/*
	 * 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.
	 */
60 61 62 63
	int		(*blink_set)(struct led_classdev *led_cdev,
				     unsigned long *delay_on,
				     unsigned long *delay_off);

64
	struct device		*dev;
65
	struct list_head	 node;			/* LED Device list */
66
	const char		*default_trigger;	/* Trigger to use */
R
Richard Purdie 已提交
67

68 69 70 71
	unsigned long		 blink_delay_on, blink_delay_off;
	struct timer_list	 blink_timer;
	int			 blink_brightness;

72 73
#ifdef CONFIG_LEDS_TRIGGERS
	/* Protects the trigger data below */
74
	struct rw_semaphore	 trigger_lock;
75

76 77 78
	struct led_trigger	*trigger;
	struct list_head	 trig_list;
	void			*trigger_data;
79 80
	/* true if activated - deactivate routine uses it to do cleanup */
	bool			activated;
81
#endif
R
Richard Purdie 已提交
82 83 84
};

extern int led_classdev_register(struct device *parent,
85
				 struct led_classdev *led_cdev);
86
extern void led_classdev_unregister(struct led_classdev *led_cdev);
R
Richard Purdie 已提交
87 88 89
extern void led_classdev_suspend(struct led_classdev *led_cdev);
extern void led_classdev_resume(struct led_classdev *led_cdev);

90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
/**
 * 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);
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
/**
 * 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);
126
/**
127
 * led_set_brightness - set LED brightness
128 129 130 131 132 133 134
 * @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.
 */
135
extern void led_set_brightness(struct led_classdev *led_cdev,
136 137
			       enum led_brightness brightness);

138 139 140 141 142 143 144 145 146
/*
 * LED Triggers
 */
#ifdef CONFIG_LEDS_TRIGGERS

#define TRIG_NAME_MAX 50

struct led_trigger {
	/* Trigger Properties */
147 148 149
	const char	 *name;
	void		(*activate)(struct led_classdev *led_cdev);
	void		(*deactivate)(struct led_classdev *led_cdev);
150 151

	/* LEDs under control by this trigger (for simple triggers) */
152 153
	rwlock_t	  leddev_list_lock;
	struct list_head  led_cdevs;
154 155

	/* Link to next registered trigger */
156
	struct list_head  next_trig;
157 158 159 160 161 162 163 164 165 166 167 168 169 170
};

/* Registration functions for complex triggers */
extern int led_trigger_register(struct led_trigger *trigger);
extern void led_trigger_unregister(struct led_trigger *trigger);

/* 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;
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);
171 172 173
extern void led_trigger_blink(struct led_trigger *trigger,
			      unsigned long *delay_on,
			      unsigned long *delay_off);
174 175 176 177
extern void led_trigger_blink_oneshot(struct led_trigger *trigger,
				      unsigned long *delay_on,
				      unsigned long *delay_off,
				      int invert);
178 179 180 181 182 183 184 185 186 187 188

#else

/* Triggers aren't active - null macros */
#define DEFINE_LED_TRIGGER(x)
#define DEFINE_LED_TRIGGER_GLOBAL(x)
#define led_trigger_register_simple(x, y) do {} while(0)
#define led_trigger_unregister_simple(x) do {} while(0)
#define led_trigger_event(x, y) do {} while(0)

#endif
189 190 191 192 193 194 195 196

/* Trigger specific functions */
#ifdef CONFIG_LEDS_TRIGGER_IDE_DISK
extern void ledtrig_ide_activity(void);
#else
#define ledtrig_ide_activity() do {} while(0)
#endif

197 198 199 200 201
/*
 * Generic LED platform data for describing LED names and default triggers.
 */
struct led_info {
	const char	*name;
202
	const char	*default_trigger;
203 204 205 206 207 208 209 210
	int		flags;
};

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

211 212 213
/* For the leds-gpio driver */
struct gpio_led {
	const char *name;
214
	const char *default_trigger;
215
	unsigned 	gpio;
216 217 218 219
	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) */
220
};
221 222 223
#define LEDS_GPIO_DEFSTATE_OFF		0
#define LEDS_GPIO_DEFSTATE_ON		1
#define LEDS_GPIO_DEFSTATE_KEEP		2
224 225 226

struct gpio_led_platform_data {
	int 		num_leds;
227
	const struct gpio_led *leds;
228 229 230

#define GPIO_LED_NO_BLINK_LOW	0	/* No blink GPIO state low */
#define GPIO_LED_NO_BLINK_HIGH	1	/* No blink GPIO state high */
231
#define GPIO_LED_BLINK		2	/* Please, blink */
232
	int		(*gpio_blink_set)(unsigned gpio, int state,
233 234
					unsigned long *delay_on,
					unsigned long *delay_off);
235 236
};

237 238
struct platform_device *gpio_led_register_device(
		int id, const struct gpio_led_platform_data *pdata);
239

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