blob: 72647429adf61e3fac4b0b91efc0f9c1eeb2c63c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Backlight Lowlevel Control Abstraction
3 *
4 * Copyright (C) 2003,2004 Hewlett-Packard Company
5 *
6 */
7
8#ifndef _LINUX_BACKLIGHT_H
9#define _LINUX_BACKLIGHT_H
10
11#include <linux/device.h>
Liu Yinga55944c2014-04-03 14:48:54 -070012#include <linux/fb.h>
Richard Purdie28ee0862007-02-08 22:25:09 +000013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/notifier.h>
15
Richard Purdie28ee0862007-02-08 22:25:09 +000016/* Notes on locking:
17 *
Richard Purdie599a52d2007-02-10 23:07:48 +000018 * backlight_device->ops_lock is an internal backlight lock protecting the
19 * ops pointer and no code outside the core should need to touch it.
Richard Purdie28ee0862007-02-08 22:25:09 +000020 *
21 * Access to update_status() is serialised by the update_lock mutex since
22 * most drivers seem to need this and historically get it wrong.
23 *
24 * Most drivers don't need locking on their get_brightness() method.
25 * If yours does, you need to implement it in the driver. You can use the
26 * update_lock mutex if appropriate.
27 *
28 * Any other use of the locks below is probably wrong.
29 */
30
Matthew Garrett325253a2009-07-14 17:06:02 +010031enum backlight_update_reason {
32 BACKLIGHT_UPDATE_HOTKEY,
33 BACKLIGHT_UPDATE_SYSFS,
34};
35
Matthew Garrettbb7ca742011-03-22 16:30:21 -070036enum backlight_type {
37 BACKLIGHT_RAW = 1,
38 BACKLIGHT_PLATFORM,
39 BACKLIGHT_FIRMWARE,
40 BACKLIGHT_TYPE_MAX,
41};
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043struct backlight_device;
44struct fb_info;
45
Richard Purdie599a52d2007-02-10 23:07:48 +000046struct backlight_ops {
Richard Purdieb4144e42010-01-18 14:16:07 +000047 unsigned int options;
Richard Purdiec835ee72009-01-06 21:00:19 +000048
49#define BL_CORE_SUSPENDRESUME (1 << 0)
50
Richard Purdie6ca01762006-03-31 02:31:49 -080051 /* Notify the backlight driver some property has changed */
Richard Purdieb4144e42010-01-18 14:16:07 +000052 int (*update_status)(struct backlight_device *);
Richard Purdie6ca01762006-03-31 02:31:49 -080053 /* Return the current backlight brightness (accounting for power,
54 fb_blank etc.) */
Richard Purdieb4144e42010-01-18 14:16:07 +000055 int (*get_brightness)(struct backlight_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 /* Check if given framebuffer device is the one bound to this backlight;
57 return 0 if not, !=0 if it is. If NULL, backlight always matches the fb. */
Bruno Prémont57e148b2010-02-21 00:20:01 +010058 int (*check_fb)(struct backlight_device *, struct fb_info *);
Richard Purdie599a52d2007-02-10 23:07:48 +000059};
Richard Purdie6ca01762006-03-31 02:31:49 -080060
Richard Purdie599a52d2007-02-10 23:07:48 +000061/* This structure defines all the properties of a backlight */
62struct backlight_properties {
Richard Purdie6ca01762006-03-31 02:31:49 -080063 /* Current User requested brightness (0 - max_brightness) */
64 int brightness;
65 /* Maximal value for brightness (read-only) */
66 int max_brightness;
67 /* Current FB Power mode (0: full on, 1..3: power saving
68 modes; 4: full off), see FB_BLANK_XXX */
69 int power;
70 /* FB Blanking active? (values as for power) */
Richard Purdiec835ee72009-01-06 21:00:19 +000071 /* Due to be removed, please use (state & BL_CORE_FBBLANK) */
Richard Purdie6ca01762006-03-31 02:31:49 -080072 int fb_blank;
Matthew Garrettbb7ca742011-03-22 16:30:21 -070073 /* Backlight type */
74 enum backlight_type type;
Richard Purdiec835ee72009-01-06 21:00:19 +000075 /* Flags used to signal drivers of state changes */
76 /* Upper 4 bits are reserved for driver internal use */
77 unsigned int state;
78
79#define BL_CORE_SUSPENDED (1 << 0) /* backlight is suspended */
80#define BL_CORE_FBBLANK (1 << 1) /* backlight is under an fb blank event */
81#define BL_CORE_DRIVER4 (1 << 28) /* reserved for driver specific use */
82#define BL_CORE_DRIVER3 (1 << 29) /* reserved for driver specific use */
83#define BL_CORE_DRIVER2 (1 << 30) /* reserved for driver specific use */
84#define BL_CORE_DRIVER1 (1 << 31) /* reserved for driver specific use */
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086};
87
88struct backlight_device {
Richard Purdie599a52d2007-02-10 23:07:48 +000089 /* Backlight properties */
90 struct backlight_properties props;
91
Richard Purdie28ee0862007-02-08 22:25:09 +000092 /* Serialise access to update_status method */
93 struct mutex update_lock;
Richard Purdie599a52d2007-02-10 23:07:48 +000094
95 /* This protects the 'ops' field. If 'ops' is NULL, the driver that
96 registered this device has been unloaded, and if class_get_devdata()
97 points to something in the body of that driver, it is also invalid. */
98 struct mutex ops_lock;
Emese Revfy9905a432009-12-14 00:58:57 +010099 const struct backlight_ops *ops;
Richard Purdie599a52d2007-02-10 23:07:48 +0000100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 /* The framebuffer notifier block */
102 struct notifier_block fb_notif;
Richard Purdie655bfd72007-07-09 12:17:24 +0100103
Aaron Lu5915a3d2013-10-11 21:27:43 +0800104 /* list entry of all registered backlight devices */
105 struct list_head entry;
106
Richard Purdie655bfd72007-07-09 12:17:24 +0100107 struct device dev;
Liu Yinga55944c2014-04-03 14:48:54 -0700108
109 /* Multiple framebuffers may share one backlight device */
110 bool fb_bl_on[FB_MAX];
111
112 int use_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113};
114
Richard Purdie28ee0862007-02-08 22:25:09 +0000115static inline void backlight_update_status(struct backlight_device *bd)
116{
117 mutex_lock(&bd->update_lock);
Richard Purdie599a52d2007-02-10 23:07:48 +0000118 if (bd->ops && bd->ops->update_status)
119 bd->ops->update_status(bd);
Richard Purdie28ee0862007-02-08 22:25:09 +0000120 mutex_unlock(&bd->update_lock);
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123extern struct backlight_device *backlight_device_register(const char *name,
Matthew Garretta19a6ee2010-02-17 16:39:44 -0500124 struct device *dev, void *devdata, const struct backlight_ops *ops,
125 const struct backlight_properties *props);
Jingoo Han8318fde42013-07-03 15:05:13 -0700126extern struct backlight_device *devm_backlight_device_register(
127 struct device *dev, const char *name, struct device *parent,
128 void *devdata, const struct backlight_ops *ops,
129 const struct backlight_properties *props);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130extern void backlight_device_unregister(struct backlight_device *bd);
Jingoo Han8318fde42013-07-03 15:05:13 -0700131extern void devm_backlight_device_unregister(struct device *dev,
132 struct backlight_device *bd);
Matthew Garrett325253a2009-07-14 17:06:02 +0100133extern void backlight_force_update(struct backlight_device *bd,
134 enum backlight_update_reason reason);
Aaron Lu5915a3d2013-10-11 21:27:43 +0800135extern bool backlight_device_registered(enum backlight_type type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Richard Purdie655bfd72007-07-09 12:17:24 +0100137#define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)
138
139static inline void * bl_get_data(struct backlight_device *bl_dev)
140{
141 return dev_get_drvdata(&bl_dev->dev);
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Richard Purdiec3f8f652007-09-03 00:27:00 +0100144struct generic_bl_info {
145 const char *name;
146 int max_intensity;
147 int default_intensity;
148 int limit_mask;
149 void (*set_bl_intensity)(int intensity);
150 void (*kick_battery)(void);
151};
152
Thierry Reding762a9362012-12-17 16:01:06 -0800153#ifdef CONFIG_OF
154struct backlight_device *of_find_backlight_by_node(struct device_node *node);
155#else
156static inline struct backlight_device *
157of_find_backlight_by_node(struct device_node *node)
158{
159 return NULL;
160}
161#endif
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#endif