blob: 2baab6f3861d20ec998266dd0d36e30b3f446262 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Backlight Lowlevel Control Abstraction
4 *
5 * Copyright (C) 2003,2004 Hewlett-Packard Company
6 *
7 */
8
9#ifndef _LINUX_BACKLIGHT_H
10#define _LINUX_BACKLIGHT_H
11
12#include <linux/device.h>
Liu Yinga55944c2014-04-03 14:48:54 -070013#include <linux/fb.h>
Richard Purdie28ee0862007-02-08 22:25:09 +000014#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/notifier.h>
16
Richard Purdie28ee0862007-02-08 22:25:09 +000017/* Notes on locking:
18 *
Richard Purdie599a52d2007-02-10 23:07:48 +000019 * backlight_device->ops_lock is an internal backlight lock protecting the
20 * ops pointer and no code outside the core should need to touch it.
Richard Purdie28ee0862007-02-08 22:25:09 +000021 *
22 * Access to update_status() is serialised by the update_lock mutex since
23 * most drivers seem to need this and historically get it wrong.
24 *
25 * Most drivers don't need locking on their get_brightness() method.
26 * If yours does, you need to implement it in the driver. You can use the
27 * update_lock mutex if appropriate.
28 *
29 * Any other use of the locks below is probably wrong.
30 */
31
Matthew Garrett325253a2009-07-14 17:06:02 +010032enum backlight_update_reason {
33 BACKLIGHT_UPDATE_HOTKEY,
34 BACKLIGHT_UPDATE_SYSFS,
35};
36
Matthew Garrettbb7ca742011-03-22 16:30:21 -070037enum backlight_type {
38 BACKLIGHT_RAW = 1,
39 BACKLIGHT_PLATFORM,
40 BACKLIGHT_FIRMWARE,
41 BACKLIGHT_TYPE_MAX,
42};
43
Hans de Goede3cc69192014-05-21 15:39:54 +020044enum backlight_notification {
45 BACKLIGHT_REGISTERED,
46 BACKLIGHT_UNREGISTERED,
47};
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049struct backlight_device;
50struct fb_info;
51
Richard Purdie599a52d2007-02-10 23:07:48 +000052struct backlight_ops {
Richard Purdieb4144e42010-01-18 14:16:07 +000053 unsigned int options;
Richard Purdiec835ee72009-01-06 21:00:19 +000054
55#define BL_CORE_SUSPENDRESUME (1 << 0)
56
Richard Purdie6ca01762006-03-31 02:31:49 -080057 /* Notify the backlight driver some property has changed */
Richard Purdieb4144e42010-01-18 14:16:07 +000058 int (*update_status)(struct backlight_device *);
Richard Purdie6ca01762006-03-31 02:31:49 -080059 /* Return the current backlight brightness (accounting for power,
60 fb_blank etc.) */
Richard Purdieb4144e42010-01-18 14:16:07 +000061 int (*get_brightness)(struct backlight_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 /* Check if given framebuffer device is the one bound to this backlight;
63 return 0 if not, !=0 if it is. If NULL, backlight always matches the fb. */
Bruno Prémont57e148b2010-02-21 00:20:01 +010064 int (*check_fb)(struct backlight_device *, struct fb_info *);
Richard Purdie599a52d2007-02-10 23:07:48 +000065};
Richard Purdie6ca01762006-03-31 02:31:49 -080066
Richard Purdie599a52d2007-02-10 23:07:48 +000067/* This structure defines all the properties of a backlight */
68struct backlight_properties {
Richard Purdie6ca01762006-03-31 02:31:49 -080069 /* Current User requested brightness (0 - max_brightness) */
70 int brightness;
71 /* Maximal value for brightness (read-only) */
72 int max_brightness;
73 /* Current FB Power mode (0: full on, 1..3: power saving
74 modes; 4: full off), see FB_BLANK_XXX */
75 int power;
76 /* FB Blanking active? (values as for power) */
Richard Purdiec835ee72009-01-06 21:00:19 +000077 /* Due to be removed, please use (state & BL_CORE_FBBLANK) */
Richard Purdie6ca01762006-03-31 02:31:49 -080078 int fb_blank;
Matthew Garrettbb7ca742011-03-22 16:30:21 -070079 /* Backlight type */
80 enum backlight_type type;
Richard Purdiec835ee72009-01-06 21:00:19 +000081 /* Flags used to signal drivers of state changes */
82 /* Upper 4 bits are reserved for driver internal use */
83 unsigned int state;
84
85#define BL_CORE_SUSPENDED (1 << 0) /* backlight is suspended */
86#define BL_CORE_FBBLANK (1 << 1) /* backlight is under an fb blank event */
87#define BL_CORE_DRIVER4 (1 << 28) /* reserved for driver specific use */
88#define BL_CORE_DRIVER3 (1 << 29) /* reserved for driver specific use */
89#define BL_CORE_DRIVER2 (1 << 30) /* reserved for driver specific use */
90#define BL_CORE_DRIVER1 (1 << 31) /* reserved for driver specific use */
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
94struct backlight_device {
Richard Purdie599a52d2007-02-10 23:07:48 +000095 /* Backlight properties */
96 struct backlight_properties props;
97
Richard Purdie28ee0862007-02-08 22:25:09 +000098 /* Serialise access to update_status method */
99 struct mutex update_lock;
Richard Purdie599a52d2007-02-10 23:07:48 +0000100
101 /* This protects the 'ops' field. If 'ops' is NULL, the driver that
102 registered this device has been unloaded, and if class_get_devdata()
103 points to something in the body of that driver, it is also invalid. */
104 struct mutex ops_lock;
Emese Revfy9905a432009-12-14 00:58:57 +0100105 const struct backlight_ops *ops;
Richard Purdie599a52d2007-02-10 23:07:48 +0000106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 /* The framebuffer notifier block */
108 struct notifier_block fb_notif;
Richard Purdie655bfd72007-07-09 12:17:24 +0100109
Aaron Lu5915a3d2013-10-11 21:27:43 +0800110 /* list entry of all registered backlight devices */
111 struct list_head entry;
112
Richard Purdie655bfd72007-07-09 12:17:24 +0100113 struct device dev;
Liu Yinga55944c2014-04-03 14:48:54 -0700114
115 /* Multiple framebuffers may share one backlight device */
116 bool fb_bl_on[FB_MAX];
117
118 int use_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119};
120
Hyungwon Hwangcca0ba22015-05-28 16:25:15 +0900121static inline int backlight_update_status(struct backlight_device *bd)
Richard Purdie28ee0862007-02-08 22:25:09 +0000122{
Hyungwon Hwangcca0ba22015-05-28 16:25:15 +0900123 int ret = -ENOENT;
124
Richard Purdie28ee0862007-02-08 22:25:09 +0000125 mutex_lock(&bd->update_lock);
Richard Purdie599a52d2007-02-10 23:07:48 +0000126 if (bd->ops && bd->ops->update_status)
Hyungwon Hwangcca0ba22015-05-28 16:25:15 +0900127 ret = bd->ops->update_status(bd);
Richard Purdie28ee0862007-02-08 22:25:09 +0000128 mutex_unlock(&bd->update_lock);
Hyungwon Hwangcca0ba22015-05-28 16:25:15 +0900129
130 return ret;
Richard Purdie28ee0862007-02-08 22:25:09 +0000131}
132
Meghana Madhyastha5b698be2018-01-24 16:34:07 +0000133/**
134 * backlight_enable - Enable backlight
135 * @bd: the backlight device to enable
136 */
137static inline int backlight_enable(struct backlight_device *bd)
138{
139 if (!bd)
140 return 0;
141
142 bd->props.power = FB_BLANK_UNBLANK;
143 bd->props.fb_blank = FB_BLANK_UNBLANK;
144 bd->props.state &= ~BL_CORE_FBBLANK;
145
146 return backlight_update_status(bd);
147}
148
149/**
150 * backlight_disable - Disable backlight
151 * @bd: the backlight device to disable
152 */
153static inline int backlight_disable(struct backlight_device *bd)
154{
155 if (!bd)
156 return 0;
157
158 bd->props.power = FB_BLANK_POWERDOWN;
159 bd->props.fb_blank = FB_BLANK_POWERDOWN;
160 bd->props.state |= BL_CORE_FBBLANK;
161
162 return backlight_update_status(bd);
163}
164
Meghana Madhyasthac2adda22018-01-24 16:35:30 +0000165/**
166 * backlight_put - Drop backlight reference
167 * @bd: the backlight device to put
168 */
169static inline void backlight_put(struct backlight_device *bd)
170{
171 if (bd)
172 put_device(&bd->dev);
173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175extern struct backlight_device *backlight_device_register(const char *name,
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500176 struct device *dev, void *devdata, const struct backlight_ops *ops,
177 const struct backlight_properties *props);
Jingoo Han8318fde42013-07-03 15:05:13 -0700178extern struct backlight_device *devm_backlight_device_register(
179 struct device *dev, const char *name, struct device *parent,
180 void *devdata, const struct backlight_ops *ops,
181 const struct backlight_properties *props);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182extern void backlight_device_unregister(struct backlight_device *bd);
Jingoo Han8318fde42013-07-03 15:05:13 -0700183extern void devm_backlight_device_unregister(struct device *dev,
184 struct backlight_device *bd);
Matthew Garrett325253a2009-07-14 17:06:02 +0100185extern void backlight_force_update(struct backlight_device *bd,
186 enum backlight_update_reason reason);
Hans de Goede3cc69192014-05-21 15:39:54 +0200187extern int backlight_register_notifier(struct notifier_block *nb);
188extern int backlight_unregister_notifier(struct notifier_block *nb);
Aaron Luf6a47902016-04-27 20:45:02 +0800189extern struct backlight_device *backlight_device_get_by_type(enum backlight_type type);
190extern int backlight_device_set_brightness(struct backlight_device *bd, unsigned long brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Richard Purdie655bfd72007-07-09 12:17:24 +0100192#define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)
193
194static inline void * bl_get_data(struct backlight_device *bl_dev)
195{
196 return dev_get_drvdata(&bl_dev->dev);
197}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Richard Purdiec3f8f652007-09-03 00:27:00 +0100199struct generic_bl_info {
200 const char *name;
201 int max_intensity;
202 int default_intensity;
203 int limit_mask;
204 void (*set_bl_intensity)(int intensity);
205 void (*kick_battery)(void);
206};
207
Thierry Reding762a9362012-12-17 16:01:06 -0800208#ifdef CONFIG_OF
209struct backlight_device *of_find_backlight_by_node(struct device_node *node);
210#else
211static inline struct backlight_device *
212of_find_backlight_by_node(struct device_node *node)
213{
214 return NULL;
215}
216#endif
217
Meghana Madhyasthac2adda22018-01-24 16:35:30 +0000218#if IS_ENABLED(CONFIG_BACKLIGHT_CLASS_DEVICE)
219struct backlight_device *of_find_backlight(struct device *dev);
Meghana Madhyastha2e4ef332018-01-24 16:37:23 +0000220struct backlight_device *devm_of_find_backlight(struct device *dev);
Meghana Madhyasthac2adda22018-01-24 16:35:30 +0000221#else
222static inline struct backlight_device *of_find_backlight(struct device *dev)
223{
224 return NULL;
225}
Meghana Madhyastha2e4ef332018-01-24 16:37:23 +0000226
227static inline struct backlight_device *
228devm_of_find_backlight(struct device *dev)
229{
230 return NULL;
231}
Meghana Madhyasthac2adda22018-01-24 16:35:30 +0000232#endif
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#endif