Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Miscellaneous procedures for dealing with the PowerMac hardware. |
| 3 | * Contains support for the backlight. |
| 4 | * |
| 5 | * Copyright (C) 2000 Benjamin Herrenschmidt |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 6 | * Copyright (C) 2006 Michael Hanselmann <linux-kernel@hansmi.ch> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 7 | * |
| 8 | */ |
| 9 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 10 | #include <linux/kernel.h> |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 11 | #include <linux/fb.h> |
| 12 | #include <linux/backlight.h> |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 13 | #include <linux/adb.h> |
| 14 | #include <linux/pmu.h> |
Arun Sharma | 60063497 | 2011-07-26 16:09:06 -0700 | [diff] [blame] | 15 | #include <linux/atomic.h> |
Paul Gortmaker | 66b15db | 2011-05-27 10:46:24 -0400 | [diff] [blame] | 16 | #include <linux/export.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 17 | #include <asm/prom.h> |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 18 | #include <asm/backlight.h> |
| 19 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 20 | #define OLD_BACKLIGHT_MAX 15 |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 21 | |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 22 | static void pmac_backlight_key_worker(struct work_struct *work); |
| 23 | static void pmac_backlight_set_legacy_worker(struct work_struct *work); |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 24 | |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 25 | static DECLARE_WORK(pmac_backlight_key_work, pmac_backlight_key_worker); |
| 26 | static DECLARE_WORK(pmac_backlight_set_legacy_work, pmac_backlight_set_legacy_worker); |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 27 | |
| 28 | /* Although these variables are used in interrupt context, it makes no sense to |
| 29 | * protect them. No user is able to produce enough key events per second and |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 30 | * notice the errors that might happen. |
| 31 | */ |
| 32 | static int pmac_backlight_key_queued; |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 33 | static int pmac_backlight_set_legacy_queued; |
| 34 | |
| 35 | /* The via-pmu code allows the backlight to be grabbed, in which case the |
| 36 | * in-kernel control of the brightness needs to be disabled. This should |
| 37 | * only be used by really old PowerBooks. |
| 38 | */ |
| 39 | static atomic_t kernel_backlight_disabled = ATOMIC_INIT(0); |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 40 | |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 41 | /* Protect the pmac_backlight variable below. |
| 42 | You should hold this lock when using the pmac_backlight pointer to |
| 43 | prevent its potential removal. */ |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 44 | DEFINE_MUTEX(pmac_backlight_mutex); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 45 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 46 | /* Main backlight storage |
| 47 | * |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 48 | * Backlight drivers in this variable are required to have the "ops" |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 49 | * attribute set and to have an update_status function. |
| 50 | * |
| 51 | * We can only store one backlight here, but since Apple laptops have only one |
| 52 | * internal display, it doesn't matter. Other backlight drivers can be used |
| 53 | * independently. |
| 54 | * |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 55 | */ |
| 56 | struct backlight_device *pmac_backlight; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 57 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 58 | int pmac_has_backlight_type(const char *type) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 59 | { |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 60 | struct device_node* bk_node = of_find_node_by_name(NULL, "backlight"); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 61 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 62 | if (bk_node) { |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 63 | const char *prop = of_get_property(bk_node, |
Jeremy Kerr | 018a3d1 | 2006-07-12 15:40:29 +1000 | [diff] [blame] | 64 | "backlight-control", NULL); |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 65 | if (prop && strncmp(prop, type, strlen(type)) == 0) { |
| 66 | of_node_put(bk_node); |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 67 | return 1; |
Stephen Rothwell | 30686ba | 2007-04-24 13:53:04 +1000 | [diff] [blame] | 68 | } |
| 69 | of_node_put(bk_node); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 70 | } |
| 71 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 72 | return 0; |
| 73 | } |
| 74 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 75 | int pmac_backlight_curve_lookup(struct fb_info *info, int value) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 76 | { |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 77 | int level = (FB_BACKLIGHT_LEVELS - 1); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 78 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 79 | if (info && info->bl_dev) { |
| 80 | int i, max = 0; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 81 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 82 | /* Look for biggest value */ |
| 83 | for (i = 0; i < FB_BACKLIGHT_LEVELS; i++) |
| 84 | max = max((int)info->bl_curve[i], max); |
| 85 | |
| 86 | /* Look for nearest value */ |
| 87 | for (i = 0; i < FB_BACKLIGHT_LEVELS; i++) { |
| 88 | int diff = abs(info->bl_curve[i] - value); |
| 89 | if (diff < max) { |
| 90 | max = diff; |
| 91 | level = i; |
| 92 | } |
| 93 | } |
| 94 | |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 95 | } |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 96 | |
| 97 | return level; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 98 | } |
| 99 | |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 100 | static void pmac_backlight_key_worker(struct work_struct *work) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 101 | { |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 102 | if (atomic_read(&kernel_backlight_disabled)) |
| 103 | return; |
| 104 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 105 | mutex_lock(&pmac_backlight_mutex); |
| 106 | if (pmac_backlight) { |
| 107 | struct backlight_properties *props; |
| 108 | int brightness; |
| 109 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 110 | props = &pmac_backlight->props; |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 111 | |
| 112 | brightness = props->brightness + |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 113 | ((pmac_backlight_key_queued?-1:1) * |
| 114 | (props->max_brightness / 15)); |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 115 | |
| 116 | if (brightness < 0) |
| 117 | brightness = 0; |
| 118 | else if (brightness > props->max_brightness) |
| 119 | brightness = props->max_brightness; |
| 120 | |
| 121 | props->brightness = brightness; |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 122 | backlight_update_status(pmac_backlight); |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 123 | } |
| 124 | mutex_unlock(&pmac_backlight_mutex); |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 125 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 126 | |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 127 | /* This function is called in interrupt context */ |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 128 | void pmac_backlight_key(int direction) |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 129 | { |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 130 | if (atomic_read(&kernel_backlight_disabled)) |
| 131 | return; |
| 132 | |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 133 | /* we can receive multiple interrupts here, but the scheduled work |
| 134 | * will run only once, with the last value |
| 135 | */ |
| 136 | pmac_backlight_key_queued = direction; |
| 137 | schedule_work(&pmac_backlight_key_work); |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 138 | } |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 139 | |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 140 | static int __pmac_backlight_set_legacy_brightness(int brightness) |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 141 | { |
| 142 | int error = -ENXIO; |
| 143 | |
| 144 | mutex_lock(&pmac_backlight_mutex); |
| 145 | if (pmac_backlight) { |
| 146 | struct backlight_properties *props; |
| 147 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 148 | props = &pmac_backlight->props; |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 149 | props->brightness = brightness * |
Michael Hanselmann | cab267c | 2006-06-28 04:26:55 -0700 | [diff] [blame] | 150 | (props->max_brightness + 1) / |
| 151 | (OLD_BACKLIGHT_MAX + 1); |
| 152 | |
| 153 | if (props->brightness > props->max_brightness) |
| 154 | props->brightness = props->max_brightness; |
| 155 | else if (props->brightness < 0) |
| 156 | props->brightness = 0; |
| 157 | |
Richard Purdie | 28ee086 | 2007-02-08 22:25:09 +0000 | [diff] [blame] | 158 | backlight_update_status(pmac_backlight); |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 159 | |
| 160 | error = 0; |
| 161 | } |
| 162 | mutex_unlock(&pmac_backlight_mutex); |
| 163 | |
| 164 | return error; |
| 165 | } |
| 166 | |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 167 | static void pmac_backlight_set_legacy_worker(struct work_struct *work) |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 168 | { |
| 169 | if (atomic_read(&kernel_backlight_disabled)) |
| 170 | return; |
| 171 | |
| 172 | __pmac_backlight_set_legacy_brightness(pmac_backlight_set_legacy_queued); |
| 173 | } |
| 174 | |
| 175 | /* This function is called in interrupt context */ |
| 176 | void pmac_backlight_set_legacy_brightness_pmu(int brightness) { |
| 177 | if (atomic_read(&kernel_backlight_disabled)) |
| 178 | return; |
| 179 | |
| 180 | pmac_backlight_set_legacy_queued = brightness; |
| 181 | schedule_work(&pmac_backlight_set_legacy_work); |
| 182 | } |
| 183 | |
| 184 | int pmac_backlight_set_legacy_brightness(int brightness) |
| 185 | { |
| 186 | return __pmac_backlight_set_legacy_brightness(brightness); |
| 187 | } |
| 188 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 189 | int pmac_backlight_get_legacy_brightness() |
| 190 | { |
| 191 | int result = -ENXIO; |
| 192 | |
| 193 | mutex_lock(&pmac_backlight_mutex); |
| 194 | if (pmac_backlight) { |
| 195 | struct backlight_properties *props; |
| 196 | |
Richard Purdie | 599a52d | 2007-02-10 23:07:48 +0000 | [diff] [blame] | 197 | props = &pmac_backlight->props; |
Michael Hanselmann | cab267c | 2006-06-28 04:26:55 -0700 | [diff] [blame] | 198 | |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 199 | result = props->brightness * |
Michael Hanselmann | cab267c | 2006-06-28 04:26:55 -0700 | [diff] [blame] | 200 | (OLD_BACKLIGHT_MAX + 1) / |
| 201 | (props->max_brightness + 1); |
Michael Hanselmann | 5474c12 | 2006-06-25 05:47:08 -0700 | [diff] [blame] | 202 | } |
| 203 | mutex_unlock(&pmac_backlight_mutex); |
| 204 | |
| 205 | return result; |
Paul Mackerras | 14cf11a | 2005-09-26 16:04:21 +1000 | [diff] [blame] | 206 | } |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 207 | |
Michael Hanselmann | 4b75599 | 2006-07-30 03:04:19 -0700 | [diff] [blame] | 208 | void pmac_backlight_disable() |
| 209 | { |
| 210 | atomic_inc(&kernel_backlight_disabled); |
| 211 | } |
| 212 | |
| 213 | void pmac_backlight_enable() |
| 214 | { |
| 215 | atomic_dec(&kernel_backlight_disabled); |
| 216 | } |
| 217 | |
Michael Hanselmann | e01af03 | 2006-07-10 04:44:45 -0700 | [diff] [blame] | 218 | EXPORT_SYMBOL_GPL(pmac_backlight); |
| 219 | EXPORT_SYMBOL_GPL(pmac_backlight_mutex); |
| 220 | EXPORT_SYMBOL_GPL(pmac_has_backlight_type); |