blob: d679964ae2ab28321589c9194de481a7ba0d2bea [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
2 * Miscellaneous procedures for dealing with the PowerMac hardware.
3 * Contains support for the backlight.
4 *
5 * Copyright (C) 2000 Benjamin Herrenschmidt
Michael Hanselmann5474c122006-06-25 05:47:08 -07006 * Copyright (C) 2006 Michael Hanselmann <linux-kernel@hansmi.ch>
Paul Mackerras14cf11a2005-09-26 16:04:21 +10007 *
8 */
9
Paul Mackerras14cf11a2005-09-26 16:04:21 +100010#include <linux/kernel.h>
Michael Hanselmann5474c122006-06-25 05:47:08 -070011#include <linux/fb.h>
12#include <linux/backlight.h>
Michael Hanselmann4b755992006-07-30 03:04:19 -070013#include <linux/adb.h>
14#include <linux/pmu.h>
15#include <asm/atomic.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100016#include <asm/prom.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100017#include <asm/backlight.h>
18
Michael Hanselmann5474c122006-06-25 05:47:08 -070019#define OLD_BACKLIGHT_MAX 15
Paul Mackerras14cf11a2005-09-26 16:04:21 +100020
David Howells6d5aefb2006-12-05 19:36:26 +000021static void pmac_backlight_key_worker(struct work_struct *work);
22static void pmac_backlight_set_legacy_worker(struct work_struct *work);
Michael Hanselmanne01af032006-07-10 04:44:45 -070023
David Howells6d5aefb2006-12-05 19:36:26 +000024static DECLARE_WORK(pmac_backlight_key_work, pmac_backlight_key_worker);
25static DECLARE_WORK(pmac_backlight_set_legacy_work, pmac_backlight_set_legacy_worker);
Michael Hanselmann4b755992006-07-30 03:04:19 -070026
27/* Although these variables are used in interrupt context, it makes no sense to
28 * protect them. No user is able to produce enough key events per second and
Michael Hanselmanne01af032006-07-10 04:44:45 -070029 * notice the errors that might happen.
30 */
31static int pmac_backlight_key_queued;
Michael Hanselmann4b755992006-07-30 03:04:19 -070032static int pmac_backlight_set_legacy_queued;
33
34/* The via-pmu code allows the backlight to be grabbed, in which case the
35 * in-kernel control of the brightness needs to be disabled. This should
36 * only be used by really old PowerBooks.
37 */
38static atomic_t kernel_backlight_disabled = ATOMIC_INIT(0);
Michael Hanselmanne01af032006-07-10 04:44:45 -070039
Richard Purdie28ee0862007-02-08 22:25:09 +000040/* Protect the pmac_backlight variable below.
41 You should hold this lock when using the pmac_backlight pointer to
42 prevent its potential removal. */
Michael Hanselmann5474c122006-06-25 05:47:08 -070043DEFINE_MUTEX(pmac_backlight_mutex);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100044
Michael Hanselmann5474c122006-06-25 05:47:08 -070045/* Main backlight storage
46 *
Richard Purdie599a52d2007-02-10 23:07:48 +000047 * Backlight drivers in this variable are required to have the "ops"
Michael Hanselmann5474c122006-06-25 05:47:08 -070048 * attribute set and to have an update_status function.
49 *
50 * We can only store one backlight here, but since Apple laptops have only one
51 * internal display, it doesn't matter. Other backlight drivers can be used
52 * independently.
53 *
Michael Hanselmann5474c122006-06-25 05:47:08 -070054 */
55struct backlight_device *pmac_backlight;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100056
Michael Hanselmann5474c122006-06-25 05:47:08 -070057int pmac_has_backlight_type(const char *type)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100058{
Stephen Rothwell30686ba2007-04-24 13:53:04 +100059 struct device_node* bk_node = of_find_node_by_name(NULL, "backlight");
Paul Mackerras14cf11a2005-09-26 16:04:21 +100060
Paul Mackerras14cf11a2005-09-26 16:04:21 +100061 if (bk_node) {
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100062 const char *prop = of_get_property(bk_node,
Jeremy Kerr018a3d12006-07-12 15:40:29 +100063 "backlight-control", NULL);
Stephen Rothwell30686ba2007-04-24 13:53:04 +100064 if (prop && strncmp(prop, type, strlen(type)) == 0) {
65 of_node_put(bk_node);
Michael Hanselmann5474c122006-06-25 05:47:08 -070066 return 1;
Stephen Rothwell30686ba2007-04-24 13:53:04 +100067 }
68 of_node_put(bk_node);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100069 }
70
Paul Mackerras14cf11a2005-09-26 16:04:21 +100071 return 0;
72}
73
Michael Hanselmann5474c122006-06-25 05:47:08 -070074int pmac_backlight_curve_lookup(struct fb_info *info, int value)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100075{
Michael Hanselmann5474c122006-06-25 05:47:08 -070076 int level = (FB_BACKLIGHT_LEVELS - 1);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100077
Michael Hanselmann5474c122006-06-25 05:47:08 -070078 if (info && info->bl_dev) {
79 int i, max = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100080
Michael Hanselmann5474c122006-06-25 05:47:08 -070081 /* Look for biggest value */
82 for (i = 0; i < FB_BACKLIGHT_LEVELS; i++)
83 max = max((int)info->bl_curve[i], max);
84
85 /* Look for nearest value */
86 for (i = 0; i < FB_BACKLIGHT_LEVELS; i++) {
87 int diff = abs(info->bl_curve[i] - value);
88 if (diff < max) {
89 max = diff;
90 level = i;
91 }
92 }
93
Paul Mackerras14cf11a2005-09-26 16:04:21 +100094 }
Michael Hanselmann5474c122006-06-25 05:47:08 -070095
96 return level;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100097}
98
David Howells6d5aefb2006-12-05 19:36:26 +000099static void pmac_backlight_key_worker(struct work_struct *work)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000100{
Michael Hanselmann4b755992006-07-30 03:04:19 -0700101 if (atomic_read(&kernel_backlight_disabled))
102 return;
103
Michael Hanselmann5474c122006-06-25 05:47:08 -0700104 mutex_lock(&pmac_backlight_mutex);
105 if (pmac_backlight) {
106 struct backlight_properties *props;
107 int brightness;
108
Richard Purdie599a52d2007-02-10 23:07:48 +0000109 props = &pmac_backlight->props;
Michael Hanselmann5474c122006-06-25 05:47:08 -0700110
111 brightness = props->brightness +
Michael Hanselmanne01af032006-07-10 04:44:45 -0700112 ((pmac_backlight_key_queued?-1:1) *
113 (props->max_brightness / 15));
Michael Hanselmann5474c122006-06-25 05:47:08 -0700114
115 if (brightness < 0)
116 brightness = 0;
117 else if (brightness > props->max_brightness)
118 brightness = props->max_brightness;
119
120 props->brightness = brightness;
Richard Purdie28ee0862007-02-08 22:25:09 +0000121 backlight_update_status(pmac_backlight);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700122 }
123 mutex_unlock(&pmac_backlight_mutex);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000124}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000125
Michael Hanselmann4b755992006-07-30 03:04:19 -0700126/* This function is called in interrupt context */
Michael Hanselmanne01af032006-07-10 04:44:45 -0700127void pmac_backlight_key(int direction)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000128{
Michael Hanselmann4b755992006-07-30 03:04:19 -0700129 if (atomic_read(&kernel_backlight_disabled))
130 return;
131
Michael Hanselmanne01af032006-07-10 04:44:45 -0700132 /* we can receive multiple interrupts here, but the scheduled work
133 * will run only once, with the last value
134 */
135 pmac_backlight_key_queued = direction;
136 schedule_work(&pmac_backlight_key_work);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700137}
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000138
Michael Hanselmann4b755992006-07-30 03:04:19 -0700139static int __pmac_backlight_set_legacy_brightness(int brightness)
Michael Hanselmann5474c122006-06-25 05:47:08 -0700140{
141 int error = -ENXIO;
142
143 mutex_lock(&pmac_backlight_mutex);
144 if (pmac_backlight) {
145 struct backlight_properties *props;
146
Richard Purdie599a52d2007-02-10 23:07:48 +0000147 props = &pmac_backlight->props;
Michael Hanselmann5474c122006-06-25 05:47:08 -0700148 props->brightness = brightness *
Michael Hanselmanncab267c2006-06-28 04:26:55 -0700149 (props->max_brightness + 1) /
150 (OLD_BACKLIGHT_MAX + 1);
151
152 if (props->brightness > props->max_brightness)
153 props->brightness = props->max_brightness;
154 else if (props->brightness < 0)
155 props->brightness = 0;
156
Richard Purdie28ee0862007-02-08 22:25:09 +0000157 backlight_update_status(pmac_backlight);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700158
159 error = 0;
160 }
161 mutex_unlock(&pmac_backlight_mutex);
162
163 return error;
164}
165
David Howells6d5aefb2006-12-05 19:36:26 +0000166static void pmac_backlight_set_legacy_worker(struct work_struct *work)
Michael Hanselmann4b755992006-07-30 03:04:19 -0700167{
168 if (atomic_read(&kernel_backlight_disabled))
169 return;
170
171 __pmac_backlight_set_legacy_brightness(pmac_backlight_set_legacy_queued);
172}
173
174/* This function is called in interrupt context */
175void pmac_backlight_set_legacy_brightness_pmu(int brightness) {
176 if (atomic_read(&kernel_backlight_disabled))
177 return;
178
179 pmac_backlight_set_legacy_queued = brightness;
180 schedule_work(&pmac_backlight_set_legacy_work);
181}
182
183int pmac_backlight_set_legacy_brightness(int brightness)
184{
185 return __pmac_backlight_set_legacy_brightness(brightness);
186}
187
Michael Hanselmann5474c122006-06-25 05:47:08 -0700188int pmac_backlight_get_legacy_brightness()
189{
190 int result = -ENXIO;
191
192 mutex_lock(&pmac_backlight_mutex);
193 if (pmac_backlight) {
194 struct backlight_properties *props;
195
Richard Purdie599a52d2007-02-10 23:07:48 +0000196 props = &pmac_backlight->props;
Michael Hanselmanncab267c2006-06-28 04:26:55 -0700197
Michael Hanselmann5474c122006-06-25 05:47:08 -0700198 result = props->brightness *
Michael Hanselmanncab267c2006-06-28 04:26:55 -0700199 (OLD_BACKLIGHT_MAX + 1) /
200 (props->max_brightness + 1);
Michael Hanselmann5474c122006-06-25 05:47:08 -0700201 }
202 mutex_unlock(&pmac_backlight_mutex);
203
204 return result;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000205}
Michael Hanselmanne01af032006-07-10 04:44:45 -0700206
Michael Hanselmann4b755992006-07-30 03:04:19 -0700207void pmac_backlight_disable()
208{
209 atomic_inc(&kernel_backlight_disabled);
210}
211
212void pmac_backlight_enable()
213{
214 atomic_dec(&kernel_backlight_disabled);
215}
216
Michael Hanselmanne01af032006-07-10 04:44:45 -0700217EXPORT_SYMBOL_GPL(pmac_backlight);
218EXPORT_SYMBOL_GPL(pmac_backlight_mutex);
219EXPORT_SYMBOL_GPL(pmac_has_backlight_type);