Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Ying | a55944c | 2014-04-03 14:48:54 -0700 | [diff] [blame] | 12 | #include <linux/fb.h> |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 13 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/notifier.h> |
Ram Chandrasekar | 65e58b4 | 2017-03-14 14:04:27 -0600 | [diff] [blame] | 15 | #include <linux/thermal.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 17 | /* Notes on locking: |
| 18 | * |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 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. |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 21 | * |
| 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 Garrett | 325253a | 2009-07-14 17:06:02 +0100 | [diff] [blame] | 32 | enum backlight_update_reason { |
| 33 | BACKLIGHT_UPDATE_HOTKEY, |
| 34 | BACKLIGHT_UPDATE_SYSFS, |
| 35 | }; |
| 36 | |
Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 37 | enum backlight_type { |
| 38 | BACKLIGHT_RAW = 1, |
| 39 | BACKLIGHT_PLATFORM, |
| 40 | BACKLIGHT_FIRMWARE, |
| 41 | BACKLIGHT_TYPE_MAX, |
| 42 | }; |
| 43 | |
Hans de Goede | 3cc6919 | 2014-05-21 15:39:54 +0200 | [diff] [blame] | 44 | enum backlight_notification { |
| 45 | BACKLIGHT_REGISTERED, |
| 46 | BACKLIGHT_UNREGISTERED, |
| 47 | }; |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | struct backlight_device; |
| 50 | struct fb_info; |
| 51 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 52 | struct backlight_ops { |
Richard Purdie | b4144e4 | 2010-01-18 14:16:07 +0000 | [diff] [blame] | 53 | unsigned int options; |
Richard Purdie | c835ee7 | 2009-01-06 21:00:19 +0000 | [diff] [blame] | 54 | |
| 55 | #define BL_CORE_SUSPENDRESUME (1 << 0) |
| 56 | |
Richard Purdie | 6ca0176 | 2006-03-31 02:31:49 -0800 | [diff] [blame] | 57 | /* Notify the backlight driver some property has changed */ |
Richard Purdie | b4144e4 | 2010-01-18 14:16:07 +0000 | [diff] [blame] | 58 | int (*update_status)(struct backlight_device *); |
Richard Purdie | 6ca0176 | 2006-03-31 02:31:49 -0800 | [diff] [blame] | 59 | /* Return the current backlight brightness (accounting for power, |
| 60 | fb_blank etc.) */ |
Richard Purdie | b4144e4 | 2010-01-18 14:16:07 +0000 | [diff] [blame] | 61 | int (*get_brightness)(struct backlight_device *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. */ |
Bruno Prémont | 57e148b | 2010-02-21 00:20:01 +0100 | [diff] [blame] | 64 | int (*check_fb)(struct backlight_device *, struct fb_info *); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 65 | }; |
Richard Purdie | 6ca0176 | 2006-03-31 02:31:49 -0800 | [diff] [blame] | 66 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 67 | /* This structure defines all the properties of a backlight */ |
| 68 | struct backlight_properties { |
Richard Purdie | 6ca0176 | 2006-03-31 02:31:49 -0800 | [diff] [blame] | 69 | /* 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 Purdie | c835ee7 | 2009-01-06 21:00:19 +0000 | [diff] [blame] | 77 | /* Due to be removed, please use (state & BL_CORE_FBBLANK) */ |
Richard Purdie | 6ca0176 | 2006-03-31 02:31:49 -0800 | [diff] [blame] | 78 | int fb_blank; |
Matthew Garrett | bb7ca74 | 2011-03-22 16:30:21 -0700 | [diff] [blame] | 79 | /* Backlight type */ |
| 80 | enum backlight_type type; |
Richard Purdie | c835ee7 | 2009-01-06 21:00:19 +0000 | [diff] [blame] | 81 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | }; |
| 93 | |
| 94 | struct backlight_device { |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 95 | /* Backlight properties */ |
| 96 | struct backlight_properties props; |
| 97 | |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 98 | /* Serialise access to update_status method */ |
| 99 | struct mutex update_lock; |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 100 | |
| 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 Revfy | 9905a43 | 2009-12-14 00:58:57 +0100 | [diff] [blame] | 105 | const struct backlight_ops *ops; |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | /* The framebuffer notifier block */ |
| 108 | struct notifier_block fb_notif; |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 109 | |
Aaron Lu | 5915a3d | 2013-10-11 21:27:43 +0800 | [diff] [blame] | 110 | /* list entry of all registered backlight devices */ |
| 111 | struct list_head entry; |
| 112 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 113 | struct device dev; |
Ram Chandrasekar | 65e58b4 | 2017-03-14 14:04:27 -0600 | [diff] [blame] | 114 | /* Backlight cooling device */ |
| 115 | struct thermal_cooling_device *cdev; |
| 116 | /* Thermally limited max brightness */ |
| 117 | int thermal_brightness_limit; |
| 118 | /* User brightness request */ |
| 119 | int usr_brightness_req; |
Liu Ying | a55944c | 2014-04-03 14:48:54 -0700 | [diff] [blame] | 120 | |
| 121 | /* Multiple framebuffers may share one backlight device */ |
| 122 | bool fb_bl_on[FB_MAX]; |
| 123 | |
| 124 | int use_count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | }; |
| 126 | |
Hyungwon Hwang | cca0ba2 | 2015-05-28 16:25:15 +0900 | [diff] [blame] | 127 | static inline int backlight_update_status(struct backlight_device *bd) |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 128 | { |
Hyungwon Hwang | cca0ba2 | 2015-05-28 16:25:15 +0900 | [diff] [blame] | 129 | int ret = -ENOENT; |
| 130 | |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 131 | mutex_lock(&bd->update_lock); |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 132 | if (bd->ops && bd->ops->update_status) |
Hyungwon Hwang | cca0ba2 | 2015-05-28 16:25:15 +0900 | [diff] [blame] | 133 | ret = bd->ops->update_status(bd); |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 134 | mutex_unlock(&bd->update_lock); |
Hyungwon Hwang | cca0ba2 | 2015-05-28 16:25:15 +0900 | [diff] [blame] | 135 | |
| 136 | return ret; |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 137 | } |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | extern struct backlight_device *backlight_device_register(const char *name, |
Matthew Garrett | a19a6ee | 2010-02-17 16:39:44 -0500 | [diff] [blame] | 140 | struct device *dev, void *devdata, const struct backlight_ops *ops, |
| 141 | const struct backlight_properties *props); |
Jingoo Han | 8318fde4 | 2013-07-03 15:05:13 -0700 | [diff] [blame] | 142 | extern struct backlight_device *devm_backlight_device_register( |
| 143 | struct device *dev, const char *name, struct device *parent, |
| 144 | void *devdata, const struct backlight_ops *ops, |
| 145 | const struct backlight_properties *props); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | extern void backlight_device_unregister(struct backlight_device *bd); |
Jingoo Han | 8318fde4 | 2013-07-03 15:05:13 -0700 | [diff] [blame] | 147 | extern void devm_backlight_device_unregister(struct device *dev, |
| 148 | struct backlight_device *bd); |
Matthew Garrett | 325253a | 2009-07-14 17:06:02 +0100 | [diff] [blame] | 149 | extern void backlight_force_update(struct backlight_device *bd, |
| 150 | enum backlight_update_reason reason); |
Hans de Goede | 3cc6919 | 2014-05-21 15:39:54 +0200 | [diff] [blame] | 151 | extern int backlight_register_notifier(struct notifier_block *nb); |
| 152 | extern int backlight_unregister_notifier(struct notifier_block *nb); |
Aaron Lu | f6a4790 | 2016-04-27 20:45:02 +0800 | [diff] [blame] | 153 | extern struct backlight_device *backlight_device_get_by_type(enum backlight_type type); |
| 154 | extern int backlight_device_set_brightness(struct backlight_device *bd, unsigned long brightness); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | |
Richard Purdie | 655bfd7 | 2007-07-09 12:17:24 +0100 | [diff] [blame] | 156 | #define to_backlight_device(obj) container_of(obj, struct backlight_device, dev) |
| 157 | |
| 158 | static inline void * bl_get_data(struct backlight_device *bl_dev) |
| 159 | { |
| 160 | return dev_get_drvdata(&bl_dev->dev); |
| 161 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Richard Purdie | c3f8f65 | 2007-09-03 00:27:00 +0100 | [diff] [blame] | 163 | struct generic_bl_info { |
| 164 | const char *name; |
| 165 | int max_intensity; |
| 166 | int default_intensity; |
| 167 | int limit_mask; |
| 168 | void (*set_bl_intensity)(int intensity); |
| 169 | void (*kick_battery)(void); |
| 170 | }; |
| 171 | |
Thierry Reding | 762a936 | 2012-12-17 16:01:06 -0800 | [diff] [blame] | 172 | #ifdef CONFIG_OF |
| 173 | struct backlight_device *of_find_backlight_by_node(struct device_node *node); |
| 174 | #else |
| 175 | static inline struct backlight_device * |
| 176 | of_find_backlight_by_node(struct device_node *node) |
| 177 | { |
| 178 | return NULL; |
| 179 | } |
| 180 | #endif |
| 181 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | #endif |