1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Backlight Lowlevel Control Abstraction
5 * Copyright (C) 2003,2004 Hewlett-Packard Company
9 #ifndef _LINUX_BACKLIGHT_H
10 #define _LINUX_BACKLIGHT_H
12 #include <linux/device.h>
14 #include <linux/mutex.h>
15 #include <linux/notifier.h>
19 * 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.
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.
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.
29 * Any other use of the locks below is probably wrong.
32 enum backlight_update_reason
{
33 BACKLIGHT_UPDATE_HOTKEY
,
34 BACKLIGHT_UPDATE_SYSFS
,
44 enum backlight_notification
{
46 BACKLIGHT_UNREGISTERED
,
49 struct backlight_device
;
52 struct backlight_ops
{
55 #define BL_CORE_SUSPENDRESUME (1 << 0)
57 /* Notify the backlight driver some property has changed */
58 int (*update_status
)(struct backlight_device
*);
59 /* Return the current backlight brightness (accounting for power,
61 int (*get_brightness
)(struct backlight_device
*);
62 /* 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. */
64 int (*check_fb
)(struct backlight_device
*, struct fb_info
*);
67 /* This structure defines all the properties of a backlight */
68 struct backlight_properties
{
69 /* Current User requested brightness (0 - max_brightness) */
71 /* Maximal value for brightness (read-only) */
73 /* Current FB Power mode (0: full on, 1..3: power saving
74 modes; 4: full off), see FB_BLANK_XXX */
76 /* FB Blanking active? (values as for power) */
77 /* Due to be removed, please use (state & BL_CORE_FBBLANK) */
80 enum backlight_type type
;
81 /* Flags used to signal drivers of state changes */
82 /* Upper 4 bits are reserved for driver internal use */
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 */
94 struct backlight_device
{
95 /* Backlight properties */
96 struct backlight_properties props
;
98 /* Serialise access to update_status method */
99 struct mutex update_lock
;
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
;
105 const struct backlight_ops
*ops
;
107 /* The framebuffer notifier block */
108 struct notifier_block fb_notif
;
110 /* list entry of all registered backlight devices */
111 struct list_head entry
;
115 /* Multiple framebuffers may share one backlight device */
116 bool fb_bl_on
[FB_MAX
];
121 static inline int backlight_update_status(struct backlight_device
*bd
)
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
);
133 extern 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
);
136 extern 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
);
140 extern void backlight_device_unregister(struct backlight_device
*bd
);
141 extern void devm_backlight_device_unregister(struct device
*dev
,
142 struct backlight_device
*bd
);
143 extern void backlight_force_update(struct backlight_device
*bd
,
144 enum backlight_update_reason reason
);
145 extern int backlight_register_notifier(struct notifier_block
*nb
);
146 extern int backlight_unregister_notifier(struct notifier_block
*nb
);
147 extern struct backlight_device
*backlight_device_get_by_type(enum backlight_type type
);
148 extern int backlight_device_set_brightness(struct backlight_device
*bd
, unsigned long brightness
);
150 #define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)
152 static inline void * bl_get_data(struct backlight_device
*bl_dev
)
154 return dev_get_drvdata(&bl_dev
->dev
);
157 struct generic_bl_info
{
160 int default_intensity
;
162 void (*set_bl_intensity
)(int intensity
);
163 void (*kick_battery
)(void);
167 struct backlight_device
*of_find_backlight_by_node(struct device_node
*node
);
169 static inline struct backlight_device
*
170 of_find_backlight_by_node(struct device_node
*node
)