1
2
3
4
5
6
7
8
9#ifndef _LINUX_BACKLIGHT_H
10#define _LINUX_BACKLIGHT_H
11
12#include <linux/device.h>
13#include <linux/fb.h>
14#include <linux/mutex.h>
15#include <linux/notifier.h>
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32enum backlight_update_reason {
33 BACKLIGHT_UPDATE_HOTKEY,
34 BACKLIGHT_UPDATE_SYSFS,
35};
36
37enum backlight_type {
38 BACKLIGHT_RAW = 1,
39 BACKLIGHT_PLATFORM,
40 BACKLIGHT_FIRMWARE,
41 BACKLIGHT_TYPE_MAX,
42};
43
44enum backlight_notification {
45 BACKLIGHT_REGISTERED,
46 BACKLIGHT_UNREGISTERED,
47};
48
49struct backlight_device;
50struct fb_info;
51
52struct backlight_ops {
53 unsigned int options;
54
55#define BL_CORE_SUSPENDRESUME (1 << 0)
56
57
58 int (*update_status)(struct backlight_device *);
59
60
61 int (*get_brightness)(struct backlight_device *);
62
63
64 int (*check_fb)(struct backlight_device *, struct fb_info *);
65};
66
67
68struct backlight_properties {
69
70 int brightness;
71
72 int max_brightness;
73
74
75 int power;
76
77
78 int fb_blank;
79
80 enum backlight_type type;
81
82
83 unsigned int state;
84
85#define BL_CORE_SUSPENDED (1 << 0)
86#define BL_CORE_FBBLANK (1 << 1)
87#define BL_CORE_DRIVER4 (1 << 28)
88#define BL_CORE_DRIVER3 (1 << 29)
89#define BL_CORE_DRIVER2 (1 << 30)
90#define BL_CORE_DRIVER1 (1 << 31)
91
92};
93
94struct backlight_device {
95
96 struct backlight_properties props;
97
98
99 struct mutex update_lock;
100
101
102
103
104 struct mutex ops_lock;
105 const struct backlight_ops *ops;
106
107
108 struct notifier_block fb_notif;
109
110
111 struct list_head entry;
112
113 struct device dev;
114
115
116 bool fb_bl_on[FB_MAX];
117
118 int use_count;
119};
120
121static inline int backlight_update_status(struct backlight_device *bd)
122{
123 int ret = -ENOENT;
124
125 mutex_lock(&bd->update_lock);
126 if (bd->ops && bd->ops->update_status)
127 ret = bd->ops->update_status(bd);
128 mutex_unlock(&bd->update_lock);
129
130 return ret;
131}
132
133extern struct backlight_device *backlight_device_register(const char *name,
134 struct device *dev, void *devdata, const struct backlight_ops *ops,
135 const struct backlight_properties *props);
136extern struct backlight_device *devm_backlight_device_register(
137 struct device *dev, const char *name, struct device *parent,
138 void *devdata, const struct backlight_ops *ops,
139 const struct backlight_properties *props);
140extern void backlight_device_unregister(struct backlight_device *bd);
141extern void devm_backlight_device_unregister(struct device *dev,
142 struct backlight_device *bd);
143extern void backlight_force_update(struct backlight_device *bd,
144 enum backlight_update_reason reason);
145extern int backlight_register_notifier(struct notifier_block *nb);
146extern int backlight_unregister_notifier(struct notifier_block *nb);
147extern struct backlight_device *backlight_device_get_by_type(enum backlight_type type);
148extern int backlight_device_set_brightness(struct backlight_device *bd, unsigned long brightness);
149
150#define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)
151
152static inline void * bl_get_data(struct backlight_device *bl_dev)
153{
154 return dev_get_drvdata(&bl_dev->dev);
155}
156
157struct generic_bl_info {
158 const char *name;
159 int max_intensity;
160 int default_intensity;
161 int limit_mask;
162 void (*set_bl_intensity)(int intensity);
163 void (*kick_battery)(void);
164};
165
166#ifdef CONFIG_OF
167struct backlight_device *of_find_backlight_by_node(struct device_node *node);
168#else
169static inline struct backlight_device *
170of_find_backlight_by_node(struct device_node *node)
171{
172 return NULL;
173}
174#endif
175
176#endif
177