blob: 92e201e81fbdd7adb7c7e2b544f9fa90f57b03f3 [file] [log] [blame]
Alan Hourihanedbe7e422007-05-08 00:39:25 -07001/*
2 * Copyright (c) Intel Corp. 2007.
3 * All Rights Reserved.
4 *
5 * Intel funded Tungsten Graphics (http://www.tungstengraphics.com) to
6 * develop this driver.
7 *
8 * This file is part of the Carillo Ranch video subsystem driver.
9 * The Carillo Ranch video subsystem driver is free software;
10 * you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * The Carillo Ranch video subsystem driver is distributed
16 * in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this driver; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 *
25 * Authors:
26 * Thomas Hellstrom <thomas-at-tungstengraphics-dot-com>
27 * Alan Hourihane <alanh-at-tungstengraphics-dot-com>
28 */
29
30#include <linux/module.h>
31#include <linux/kernel.h>
32#include <linux/init.h>
33#include <linux/platform_device.h>
34#include <linux/mutex.h>
35#include <linux/fb.h>
36#include <linux/backlight.h>
37#include <linux/lcd.h>
38#include <linux/pci.h>
39#include <asm/uaccess.h>
40
41/* The LVDS- and panel power controls sits on the
42 * GPIO port of the ISA bridge.
43 */
44
45#define CRVML_DEVICE_LPC 0x27B8
46#define CRVML_REG_GPIOBAR 0x48
47#define CRVML_REG_GPIOEN 0x4C
48#define CRVML_GPIOEN_BIT (1 << 4)
49#define CRVML_PANEL_PORT 0x38
50#define CRVML_LVDS_ON 0x00000001
51#define CRVML_PANEL_ON 0x00000002
52#define CRVML_BACKLIGHT_OFF 0x00000004
53
54/* The PLL Clock register sits on Host bridge */
55#define CRVML_DEVICE_MCH 0x5001
56#define CRVML_REG_MCHBAR 0x44
57#define CRVML_REG_MCHEN 0x54
58#define CRVML_MCHEN_BIT (1 << 28)
59#define CRVML_MCHMAP_SIZE 4096
60#define CRVML_REG_CLOCK 0xc3c
61#define CRVML_CLOCK_SHIFT 8
62#define CRVML_CLOCK_MASK 0x00000f00
63
64static struct pci_dev *lpc_dev;
65static u32 gpio_bar;
66
67struct cr_panel {
68 struct backlight_device *cr_backlight_device;
69 struct lcd_device *cr_lcd_device;
70};
71
72static int cr_backlight_set_intensity(struct backlight_device *bd)
73{
74 int intensity = bd->props.brightness;
75 u32 addr = gpio_bar + CRVML_PANEL_PORT;
76 u32 cur = inl(addr);
77
78 if (bd->props.power == FB_BLANK_UNBLANK)
79 intensity = FB_BLANK_UNBLANK;
80 if (bd->props.fb_blank == FB_BLANK_UNBLANK)
81 intensity = FB_BLANK_UNBLANK;
82 if (bd->props.power == FB_BLANK_POWERDOWN)
83 intensity = FB_BLANK_POWERDOWN;
84 if (bd->props.fb_blank == FB_BLANK_POWERDOWN)
85 intensity = FB_BLANK_POWERDOWN;
86
87 if (intensity == FB_BLANK_UNBLANK) { /* FULL ON */
88 cur &= ~CRVML_BACKLIGHT_OFF;
89 outl(cur, addr);
90 } else if (intensity == FB_BLANK_POWERDOWN) { /* OFF */
91 cur |= CRVML_BACKLIGHT_OFF;
92 outl(cur, addr);
93 } /* anything else, don't bother */
94
95 return 0;
96}
97
98static int cr_backlight_get_intensity(struct backlight_device *bd)
99{
100 u32 addr = gpio_bar + CRVML_PANEL_PORT;
101 u32 cur = inl(addr);
102 u8 intensity;
103
104 if (cur & CRVML_BACKLIGHT_OFF)
105 intensity = FB_BLANK_POWERDOWN;
106 else
107 intensity = FB_BLANK_UNBLANK;
108
109 return intensity;
110}
111
112static struct backlight_ops cr_backlight_ops = {
113 .get_brightness = cr_backlight_get_intensity,
114 .update_status = cr_backlight_set_intensity,
115};
116
117static void cr_panel_on(void)
118{
119 u32 addr = gpio_bar + CRVML_PANEL_PORT;
120 u32 cur = inl(addr);
121
122 if (!(cur & CRVML_PANEL_ON)) {
123 /* Make sure LVDS controller is down. */
124 if (cur & 0x00000001) {
125 cur &= ~CRVML_LVDS_ON;
126 outl(cur, addr);
127 }
128 /* Power up Panel */
129 schedule_timeout(HZ / 10);
130 cur |= CRVML_PANEL_ON;
131 outl(cur, addr);
132 }
133
134 /* Power up LVDS controller */
135
136 if (!(cur & CRVML_LVDS_ON)) {
137 schedule_timeout(HZ / 10);
138 outl(cur | CRVML_LVDS_ON, addr);
139 }
140}
141
142static void cr_panel_off(void)
143{
144 u32 addr = gpio_bar + CRVML_PANEL_PORT;
145 u32 cur = inl(addr);
146
147 /* Power down LVDS controller first to avoid high currents */
148 if (cur & CRVML_LVDS_ON) {
149 cur &= ~CRVML_LVDS_ON;
150 outl(cur, addr);
151 }
152 if (cur & CRVML_PANEL_ON) {
153 schedule_timeout(HZ / 10);
154 outl(cur & ~CRVML_PANEL_ON, addr);
155 }
156}
157
158static int cr_lcd_set_power(struct lcd_device *ld, int power)
159{
160 if (power == FB_BLANK_UNBLANK)
161 cr_panel_on();
162 if (power == FB_BLANK_POWERDOWN)
163 cr_panel_off();
164
165 return 0;
166}
167
168static struct lcd_ops cr_lcd_ops = {
169 .set_power = cr_lcd_set_power,
170};
171
172static int cr_backlight_probe(struct platform_device *pdev)
173{
Jesper Juhl0b75f2d2007-08-11 10:29:59 +0100174 struct backlight_device *bdp;
175 struct lcd_device *ldp;
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700176 struct cr_panel *crp;
177 u8 dev_en;
178
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700179 lpc_dev = pci_get_device(PCI_VENDOR_ID_INTEL,
180 CRVML_DEVICE_LPC, NULL);
181 if (!lpc_dev) {
182 printk("INTEL CARILLO RANCH LPC not found.\n");
183 return -ENODEV;
184 }
185
186 pci_read_config_byte(lpc_dev, CRVML_REG_GPIOEN, &dev_en);
187 if (!(dev_en & CRVML_GPIOEN_BIT)) {
188 printk(KERN_ERR
189 "Carillo Ranch GPIO device was not enabled.\n");
190 pci_dev_put(lpc_dev);
191 return -ENODEV;
192 }
193
Jesper Juhl0b75f2d2007-08-11 10:29:59 +0100194 bdp = backlight_device_register("cr-backlight",
195 &pdev->dev, NULL, &cr_backlight_ops);
196 if (IS_ERR(bdp)) {
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700197 pci_dev_put(lpc_dev);
Jesper Juhl0b75f2d2007-08-11 10:29:59 +0100198 return PTR_ERR(bdp);
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700199 }
200
Jesper Juhl0b75f2d2007-08-11 10:29:59 +0100201 ldp = lcd_device_register("cr-lcd", &pdev->dev, NULL, &cr_lcd_ops);
202 if (IS_ERR(ldp)) {
203 backlight_device_unregister(bdp);
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700204 pci_dev_put(lpc_dev);
Jesper Juhl0b75f2d2007-08-11 10:29:59 +0100205 return PTR_ERR(bdp);
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700206 }
207
208 pci_read_config_dword(lpc_dev, CRVML_REG_GPIOBAR,
209 &gpio_bar);
210 gpio_bar &= ~0x3F;
211
Jesper Juhl0b75f2d2007-08-11 10:29:59 +0100212 crp = kzalloc(sizeof(*crp), GFP_KERNEL);
213 if (!crp) {
214 lcd_device_unregister(ldp);
215 backlight_device_unregister(bdp);
216 pci_dev_put(lpc_dev);
217 return -ENOMEM;
218 }
219
220 crp->cr_backlight_device = bdp;
221 crp->cr_lcd_device = ldp;
Alan Hourihanedbe7e422007-05-08 00:39:25 -0700222 crp->cr_backlight_device->props.power = FB_BLANK_UNBLANK;
223 crp->cr_backlight_device->props.brightness = 0;
224 crp->cr_backlight_device->props.max_brightness = 0;
225 cr_backlight_set_intensity(crp->cr_backlight_device);
226
227 cr_lcd_set_power(crp->cr_lcd_device, FB_BLANK_UNBLANK);
228
229 platform_set_drvdata(pdev, crp);
230
231 return 0;
232}
233
234static int cr_backlight_remove(struct platform_device *pdev)
235{
236 struct cr_panel *crp = platform_get_drvdata(pdev);
237 crp->cr_backlight_device->props.power = FB_BLANK_POWERDOWN;
238 crp->cr_backlight_device->props.brightness = 0;
239 crp->cr_backlight_device->props.max_brightness = 0;
240 cr_backlight_set_intensity(crp->cr_backlight_device);
241 cr_lcd_set_power(crp->cr_lcd_device, FB_BLANK_POWERDOWN);
242 backlight_device_unregister(crp->cr_backlight_device);
243 lcd_device_unregister(crp->cr_lcd_device);
244 pci_dev_put(lpc_dev);
245
246 return 0;
247}
248
249static struct platform_driver cr_backlight_driver = {
250 .probe = cr_backlight_probe,
251 .remove = cr_backlight_remove,
252 .driver = {
253 .name = "cr_backlight",
254 },
255};
256
257static struct platform_device *crp;
258
259static int __init cr_backlight_init(void)
260{
261 int ret = platform_driver_register(&cr_backlight_driver);
262
263 if (!ret) {
264 crp = platform_device_alloc("cr_backlight", -1);
265 if (!crp)
266 return -ENOMEM;
267
268 ret = platform_device_add(crp);
269
270 if (ret) {
271 platform_device_put(crp);
272 platform_driver_unregister(&cr_backlight_driver);
273 }
274 }
275
276 printk("Carillo Ranch Backlight Driver Initialized.\n");
277
278 return ret;
279}
280
281static void __exit cr_backlight_exit(void)
282{
283 platform_device_unregister(crp);
284 platform_driver_unregister(&cr_backlight_driver);
285}
286
287module_init(cr_backlight_init);
288module_exit(cr_backlight_exit);
289
290MODULE_AUTHOR("Tungsten Graphics Inc.");
291MODULE_DESCRIPTION("Carillo Ranch Backlight Driver");
292MODULE_LICENSE("GPL");