leds.h 2.0 KB
Newer Older
R
Richard Purdie 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * LED Core
 *
 * Copyright 2005 Openedhand Ltd.
 *
 * Author: 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 __LEDS_H_INCLUDED
#define __LEDS_H_INCLUDED

16
#include <linux/device.h>
17
#include <linux/rwsem.h>
R
Richard Purdie 已提交
18 19
#include <linux/leds.h>

20
static inline void led_set_brightness_async(struct led_classdev *led_cdev,
R
Richard Purdie 已提交
21 22
					enum led_brightness value)
{
23 24
	led_cdev->brightness = min(value, led_cdev->max_brightness);

R
Richard Purdie 已提交
25 26 27 28
	if (!(led_cdev->flags & LED_SUSPENDED))
		led_cdev->brightness_set(led_cdev, value);
}

29 30 31 32 33 34 35 36 37 38 39 40 41
static inline int led_set_brightness_sync(struct led_classdev *led_cdev,
					enum led_brightness value)
{
	int ret = 0;

	led_cdev->brightness = min(value, led_cdev->max_brightness);

	if (!(led_cdev->flags & LED_SUSPENDED))
		ret = led_cdev->brightness_set_sync(led_cdev,
						led_cdev->brightness);
	return ret;
}

42 43 44 45 46
static inline int led_get_brightness(struct led_classdev *led_cdev)
{
	return led_cdev->brightness;
}

47 48
void led_stop_software_blink(struct led_classdev *led_cdev);

49
extern struct rw_semaphore leds_list_lock;
R
Richard Purdie 已提交
50 51
extern struct list_head leds_list;

52 53 54 55
#ifdef CONFIG_LEDS_TRIGGERS
void led_trigger_set_default(struct led_classdev *led_cdev);
void led_trigger_set(struct led_classdev *led_cdev,
			struct led_trigger *trigger);
56
void led_trigger_remove(struct led_classdev *led_cdev);
57 58 59 60 61 62

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

63
#else
64 65 66
#define led_trigger_set_default(x) do {} while (0)
#define led_trigger_set(x, y) do {} while (0)
#define led_trigger_remove(x) do {} while (0)
67
#define led_get_trigger_data(x) (NULL)
68 69
#endif

70 71 72 73
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);
74

R
Richard Purdie 已提交
75
#endif	/* __LEDS_H_INCLUDED */