blob: f10310178e3e97a904daa496acb2fb19bd2eb76b [file] [log] [blame]
Arnaud Patard20fd5762005-09-09 13:10:07 -07001/*
2 * linux/drivers/video/s3c2410fb.c
3 * Copyright (c) Arnaud Patard, Ben Dooks
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file COPYING in the main directory of this archive for
7 * more details.
8 *
9 * S3C2410 LCD Controller Frame Buffer Driver
10 * based on skeletonfb.c, sa1100fb.c and others
11 *
12 * ChangeLog
13 * 2005-04-07: Arnaud Patard <arnaud.patard@rtp-net.org>
14 * - u32 state -> pm_message_t state
15 * - S3C2410_{VA,SZ}_LCD -> S3C24XX
16 *
17 * 2005-03-15: Arnaud Patard <arnaud.patard@rtp-net.org>
18 * - Removed the ioctl
19 * - use readl/writel instead of __raw_writel/__raw_readl
20 *
21 * 2004-12-04: Arnaud Patard <arnaud.patard@rtp-net.org>
22 * - Added the possibility to set on or off the
23 * debugging mesaages
24 * - Replaced 0 and 1 by on or off when reading the
25 * /sys files
26 *
27 * 2005-03-23: Ben Dooks <ben-linux@fluff.org>
28 * - added non 16bpp modes
29 * - updated platform information for range of x/y/bpp
30 * - add code to ensure palette is written correctly
31 * - add pixel clock divisor control
32 *
33 * 2004-11-11: Arnaud Patard <arnaud.patard@rtp-net.org>
Krzysztof Heltb0831942007-10-16 01:28:54 -070034 * - Removed the use of currcon as it no more exist
35 * - Added LCD power sysfs interface
Arnaud Patard20fd5762005-09-09 13:10:07 -070036 *
37 * 2004-11-03: Ben Dooks <ben-linux@fluff.org>
38 * - minor cleanups
39 * - add suspend/resume support
40 * - s3c2410fb_setcolreg() not valid in >8bpp modes
41 * - removed last CONFIG_FB_S3C2410_FIXED
42 * - ensure lcd controller stopped before cleanup
43 * - added sysfs interface for backlight power
44 * - added mask for gpio configuration
45 * - ensured IRQs disabled during GPIO configuration
46 * - disable TPAL before enabling video
47 *
48 * 2004-09-20: Arnaud Patard <arnaud.patard@rtp-net.org>
49 * - Suppress command line options
50 *
51 * 2004-09-15: Arnaud Patard <arnaud.patard@rtp-net.org>
Krzysztof Heltb0831942007-10-16 01:28:54 -070052 * - code cleanup
Arnaud Patard20fd5762005-09-09 13:10:07 -070053 *
54 * 2004-09-07: Arnaud Patard <arnaud.patard@rtp-net.org>
Krzysztof Heltb0831942007-10-16 01:28:54 -070055 * - Renamed from h1940fb.c to s3c2410fb.c
56 * - Add support for different devices
57 * - Backlight support
Arnaud Patard20fd5762005-09-09 13:10:07 -070058 *
59 * 2004-09-05: Herbert Pötzl <herbert@13thfloor.at>
60 * - added clock (de-)allocation code
61 * - added fixem fbmem option
62 *
63 * 2004-07-27: Arnaud Patard <arnaud.patard@rtp-net.org>
64 * - code cleanup
65 * - added a forgotten return in h1940fb_init
66 *
67 * 2004-07-19: Herbert Pötzl <herbert@13thfloor.at>
68 * - code cleanup and extended debugging
69 *
70 * 2004-07-15: Arnaud Patard <arnaud.patard@rtp-net.org>
71 * - First version
72 */
73
74#include <linux/module.h>
75#include <linux/kernel.h>
76#include <linux/errno.h>
77#include <linux/string.h>
78#include <linux/mm.h>
Arnaud Patard20fd5762005-09-09 13:10:07 -070079#include <linux/slab.h>
80#include <linux/delay.h>
81#include <linux/fb.h>
82#include <linux/init.h>
83#include <linux/dma-mapping.h>
Arnaud Patard20fd5762005-09-09 13:10:07 -070084#include <linux/interrupt.h>
85#include <linux/workqueue.h>
86#include <linux/wait.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010087#include <linux/platform_device.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000088#include <linux/clk.h>
Arnaud Patard20fd5762005-09-09 13:10:07 -070089
90#include <asm/io.h>
91#include <asm/uaccess.h>
92#include <asm/div64.h>
93
94#include <asm/mach/map.h>
95#include <asm/arch/regs-lcd.h>
96#include <asm/arch/regs-gpio.h>
97#include <asm/arch/fb.h>
Arnaud Patard20fd5762005-09-09 13:10:07 -070098
99#ifdef CONFIG_PM
100#include <linux/pm.h>
101#endif
102
103#include "s3c2410fb.h"
104
Arnaud Patard20fd5762005-09-09 13:10:07 -0700105static struct s3c2410fb_mach_info *mach_info;
106
107/* Debugging stuff */
108#ifdef CONFIG_FB_S3C2410_DEBUG
Krzysztof Heltb0831942007-10-16 01:28:54 -0700109static int debug = 1;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700110#else
Krzysztof Heltb0831942007-10-16 01:28:54 -0700111static int debug = 0;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700112#endif
113
114#define dprintk(msg...) if (debug) { printk(KERN_DEBUG "s3c2410fb: " msg); }
115
116/* useful functions */
117
118/* s3c2410fb_set_lcdaddr
119 *
120 * initialise lcd controller address pointers
Krzysztof Heltb0831942007-10-16 01:28:54 -0700121 */
Arnaud Patard20fd5762005-09-09 13:10:07 -0700122static void s3c2410fb_set_lcdaddr(struct s3c2410fb_info *fbi)
123{
124 struct fb_var_screeninfo *var = &fbi->fb->var;
125 unsigned long saddr1, saddr2, saddr3;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700126 int line_length = var->xres * var->bits_per_pixel;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700127
128 saddr1 = fbi->fb->fix.smem_start >> 1;
129 saddr2 = fbi->fb->fix.smem_start;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700130 saddr2 += (line_length * var->yres) / 8;
131 saddr2 >>= 1;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700132
Krzysztof Heltb0831942007-10-16 01:28:54 -0700133 saddr3 = S3C2410_OFFSIZE(0) |
134 S3C2410_PAGEWIDTH((line_length / 16) & 0x3ff);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700135
136 dprintk("LCDSADDR1 = 0x%08lx\n", saddr1);
137 dprintk("LCDSADDR2 = 0x%08lx\n", saddr2);
138 dprintk("LCDSADDR3 = 0x%08lx\n", saddr3);
139
140 writel(saddr1, S3C2410_LCDSADDR1);
141 writel(saddr2, S3C2410_LCDSADDR2);
142 writel(saddr3, S3C2410_LCDSADDR3);
143}
144
145/* s3c2410fb_calc_pixclk()
146 *
147 * calculate divisor for clk->pixclk
Krzysztof Heltb0831942007-10-16 01:28:54 -0700148 */
Arnaud Patard20fd5762005-09-09 13:10:07 -0700149static unsigned int s3c2410fb_calc_pixclk(struct s3c2410fb_info *fbi,
150 unsigned long pixclk)
151{
152 unsigned long clk = clk_get_rate(fbi->clk);
153 unsigned long long div;
154
155 /* pixclk is in picoseoncds, our clock is in Hz
156 *
157 * Hz -> picoseconds is / 10^-12
158 */
159
160 div = (unsigned long long)clk * pixclk;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700161 do_div(div, 1000000UL);
162 do_div(div, 1000000UL);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700163
164 dprintk("pixclk %ld, divisor is %ld\n", pixclk, (long)div);
165 return div;
166}
167
168/*
169 * s3c2410fb_check_var():
170 * Get the video params out of 'var'. If a value doesn't fit, round it up,
171 * if it's too big, return -EINVAL.
172 *
173 */
174static int s3c2410fb_check_var(struct fb_var_screeninfo *var,
175 struct fb_info *info)
176{
177 struct s3c2410fb_info *fbi = info->par;
178
179 dprintk("check_var(var=%p, info=%p)\n", var, info);
180
181 /* validate x/y resolution */
182
183 if (var->yres > fbi->mach_info->yres.max)
184 var->yres = fbi->mach_info->yres.max;
185 else if (var->yres < fbi->mach_info->yres.min)
186 var->yres = fbi->mach_info->yres.min;
187
188 if (var->xres > fbi->mach_info->xres.max)
189 var->yres = fbi->mach_info->xres.max;
190 else if (var->xres < fbi->mach_info->xres.min)
191 var->xres = fbi->mach_info->xres.min;
192
193 /* validate bpp */
194
195 if (var->bits_per_pixel > fbi->mach_info->bpp.max)
196 var->bits_per_pixel = fbi->mach_info->bpp.max;
197 else if (var->bits_per_pixel < fbi->mach_info->bpp.min)
198 var->bits_per_pixel = fbi->mach_info->bpp.min;
199
Krzysztof Heltb0831942007-10-16 01:28:54 -0700200 var->transp.offset = 0;
201 var->transp.length = 0;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700202 /* set r/g/b positions */
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800203 switch (var->bits_per_pixel) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700204 case 1:
205 case 2:
206 case 4:
207 var->red.offset = 0;
208 var->red.length = var->bits_per_pixel;
209 var->green = var->red;
210 var->blue = var->red;
211 break;
212 case 8:
213 if (fbi->mach_info->type != S3C2410_LCDCON1_TFT) {
214 /* 8 bpp 332 */
215 var->red.length = 3;
216 var->red.offset = 5;
217 var->green.length = 3;
218 var->green.offset = 2;
219 var->blue.length = 2;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800220 var->blue.offset = 0;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700221 } else {
222 var->red.offset = 0;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800223 var->red.length = 8;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700224 var->green = var->red;
225 var->blue = var->red;
226 }
227 break;
228 case 12:
229 /* 12 bpp 444 */
230 var->red.length = 4;
231 var->red.offset = 8;
232 var->green.length = 4;
233 var->green.offset = 4;
234 var->blue.length = 4;
235 var->blue.offset = 0;
236 break;
237
238 default:
239 case 16:
240 if (fbi->regs.lcdcon5 & S3C2410_LCDCON5_FRM565) {
241 /* 16 bpp, 565 format */
242 var->red.offset = 11;
243 var->green.offset = 5;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800244 var->blue.offset = 0;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700245 var->red.length = 5;
246 var->green.length = 6;
247 var->blue.length = 5;
248 } else {
249 /* 16 bpp, 5551 format */
250 var->red.offset = 11;
251 var->green.offset = 6;
252 var->blue.offset = 1;
253 var->red.length = 5;
254 var->green.length = 5;
255 var->blue.length = 5;
256 }
257 break;
258 case 24:
259 /* 24 bpp 888 */
260 var->red.length = 8;
261 var->red.offset = 16;
262 var->green.length = 8;
263 var->green.offset = 8;
264 var->blue.length = 8;
265 var->blue.offset = 0;
266 break;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800267
268
Arnaud Patard20fd5762005-09-09 13:10:07 -0700269 }
Arnaud Patard20fd5762005-09-09 13:10:07 -0700270 return 0;
271}
272
273/* s3c2410fb_activate_var
274 *
275 * activate (set) the controller from the given framebuffer
276 * information
Krzysztof Heltb0831942007-10-16 01:28:54 -0700277 */
Ben Dooksfe984bb2005-09-29 05:24:38 +0800278static void s3c2410fb_activate_var(struct s3c2410fb_info *fbi,
279 struct fb_var_screeninfo *var)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700280{
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800281 int hs;
282
Arnaud Patard20fd5762005-09-09 13:10:07 -0700283 fbi->regs.lcdcon1 &= ~S3C2410_LCDCON1_MODEMASK;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800284 fbi->regs.lcdcon1 &= ~S3C2410_LCDCON1_TFT;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700285
286 dprintk("%s: var->xres = %d\n", __FUNCTION__, var->xres);
287 dprintk("%s: var->yres = %d\n", __FUNCTION__, var->yres);
288 dprintk("%s: var->bpp = %d\n", __FUNCTION__, var->bits_per_pixel);
289
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800290 fbi->regs.lcdcon1 |= fbi->mach_info->type;
291
292 if (fbi->mach_info->type == S3C2410_LCDCON1_TFT)
293 switch (var->bits_per_pixel) {
294 case 1:
295 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_TFT1BPP;
296 break;
297 case 2:
298 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_TFT2BPP;
299 break;
300 case 4:
301 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_TFT4BPP;
302 break;
303 case 8:
304 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_TFT8BPP;
305 break;
306 case 16:
307 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_TFT16BPP;
308 break;
309
310 default:
311 /* invalid pixel depth */
Krzysztof Heltb0831942007-10-16 01:28:54 -0700312 dev_err(fbi->dev, "invalid bpp %d\n",
313 var->bits_per_pixel);
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800314 }
315 else
316 switch (var->bits_per_pixel) {
317 case 1:
318 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_STN1BPP;
319 break;
320 case 2:
321 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_STN2GREY;
322 break;
323 case 4:
324 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_STN4GREY;
325 break;
326 case 8:
327 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_STN8BPP;
328 break;
329 case 12:
330 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_STN12BPP;
331 break;
332
333 default:
334 /* invalid pixel depth */
Krzysztof Heltb0831942007-10-16 01:28:54 -0700335 dev_err(fbi->dev, "invalid bpp %d\n",
336 var->bits_per_pixel);
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800337 }
Arnaud Patard20fd5762005-09-09 13:10:07 -0700338
339 /* check to see if we need to update sync/borders */
340
341 if (!fbi->mach_info->fixed_syncs) {
342 dprintk("setting vert: up=%d, low=%d, sync=%d\n",
Krzysztof Heltb0831942007-10-16 01:28:54 -0700343 var->upper_margin, var->lower_margin, var->vsync_len);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700344
345 dprintk("setting horz: lft=%d, rt=%d, sync=%d\n",
Krzysztof Heltb0831942007-10-16 01:28:54 -0700346 var->left_margin, var->right_margin, var->hsync_len);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700347
348 fbi->regs.lcdcon2 =
349 S3C2410_LCDCON2_VBPD(var->upper_margin - 1) |
350 S3C2410_LCDCON2_VFPD(var->lower_margin - 1) |
351 S3C2410_LCDCON2_VSPW(var->vsync_len - 1);
352
353 fbi->regs.lcdcon3 =
354 S3C2410_LCDCON3_HBPD(var->right_margin - 1) |
355 S3C2410_LCDCON3_HFPD(var->left_margin - 1);
356
357 fbi->regs.lcdcon4 &= ~S3C2410_LCDCON4_HSPW(0xff);
358 fbi->regs.lcdcon4 |= S3C2410_LCDCON4_HSPW(var->hsync_len - 1);
359 }
360
361 /* update X/Y info */
362
363 fbi->regs.lcdcon2 &= ~S3C2410_LCDCON2_LINEVAL(0x3ff);
364 fbi->regs.lcdcon2 |= S3C2410_LCDCON2_LINEVAL(var->yres - 1);
365
Krzysztof Heltb0831942007-10-16 01:28:54 -0700366 switch (fbi->mach_info->type) {
367 case S3C2410_LCDCON1_DSCAN4:
368 case S3C2410_LCDCON1_STN8:
369 hs = var->xres / 8;
370 break;
371 case S3C2410_LCDCON1_STN4:
372 hs = var->xres / 4;
373 break;
374 default:
375 case S3C2410_LCDCON1_TFT:
376 hs = var->xres;
377 break;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800378 }
379
380 /* Special cases : STN color displays */
Krzysztof Heltb0831942007-10-16 01:28:54 -0700381 if (((fbi->regs.lcdcon1 & S3C2410_LCDCON1_MODEMASK) == S3C2410_LCDCON1_STN8BPP) ||
382 ((fbi->regs.lcdcon1 & S3C2410_LCDCON1_MODEMASK) == S3C2410_LCDCON1_STN12BPP))
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800383 hs = hs * 3;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800384
Arnaud Patard20fd5762005-09-09 13:10:07 -0700385 fbi->regs.lcdcon3 &= ~S3C2410_LCDCON3_HOZVAL(0x7ff);
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800386 fbi->regs.lcdcon3 |= S3C2410_LCDCON3_HOZVAL(hs - 1);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700387
388 if (var->pixclock > 0) {
389 int clkdiv = s3c2410fb_calc_pixclk(fbi, var->pixclock);
390
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800391 if (fbi->mach_info->type == S3C2410_LCDCON1_TFT) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700392 clkdiv = (clkdiv / 2) - 1;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800393 if (clkdiv < 0)
394 clkdiv = 0;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700395 } else {
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800396 clkdiv = (clkdiv / 2);
397 if (clkdiv < 2)
398 clkdiv = 2;
399 }
Arnaud Patard20fd5762005-09-09 13:10:07 -0700400
401 fbi->regs.lcdcon1 &= ~S3C2410_LCDCON1_CLKVAL(0x3ff);
402 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_CLKVAL(clkdiv);
403 }
404
405 /* write new registers */
406
407 dprintk("new register set:\n");
408 dprintk("lcdcon[1] = 0x%08lx\n", fbi->regs.lcdcon1);
409 dprintk("lcdcon[2] = 0x%08lx\n", fbi->regs.lcdcon2);
410 dprintk("lcdcon[3] = 0x%08lx\n", fbi->regs.lcdcon3);
411 dprintk("lcdcon[4] = 0x%08lx\n", fbi->regs.lcdcon4);
412 dprintk("lcdcon[5] = 0x%08lx\n", fbi->regs.lcdcon5);
413
414 writel(fbi->regs.lcdcon1 & ~S3C2410_LCDCON1_ENVID, S3C2410_LCDCON1);
415 writel(fbi->regs.lcdcon2, S3C2410_LCDCON2);
416 writel(fbi->regs.lcdcon3, S3C2410_LCDCON3);
417 writel(fbi->regs.lcdcon4, S3C2410_LCDCON4);
418 writel(fbi->regs.lcdcon5, S3C2410_LCDCON5);
419
420 /* set lcd address pointers */
421 s3c2410fb_set_lcdaddr(fbi);
422
423 writel(fbi->regs.lcdcon1, S3C2410_LCDCON1);
424}
425
Arnaud Patard20fd5762005-09-09 13:10:07 -0700426/*
Krzysztof Heltb0831942007-10-16 01:28:54 -0700427 * s3c2410fb_set_par - Alters the hardware state.
Arnaud Patard20fd5762005-09-09 13:10:07 -0700428 * @info: frame buffer structure that represents a single frame buffer
429 *
430 */
431static int s3c2410fb_set_par(struct fb_info *info)
432{
433 struct s3c2410fb_info *fbi = info->par;
434 struct fb_var_screeninfo *var = &info->var;
435
Krzysztof Heltb0831942007-10-16 01:28:54 -0700436 switch (var->bits_per_pixel) {
437 case 16:
438 info->fix.visual = FB_VISUAL_TRUECOLOR;
439 break;
440 case 1:
441 info->fix.visual = FB_VISUAL_MONO01;
442 break;
443 default:
444 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
445 break;
Arnaud Patard (Rtp357b8192006-12-08 02:40:23 -0800446 }
Arnaud Patard20fd5762005-09-09 13:10:07 -0700447
Krzysztof Heltb0831942007-10-16 01:28:54 -0700448 info->fix.line_length = (var->width * var->bits_per_pixel) / 8;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700449
450 /* activate this new configuration */
451
452 s3c2410fb_activate_var(fbi, var);
453 return 0;
454}
455
456static void schedule_palette_update(struct s3c2410fb_info *fbi,
457 unsigned int regno, unsigned int val)
458{
459 unsigned long flags;
460 unsigned long irqen;
Ben Dooksaff39a82007-07-31 00:37:37 -0700461 void __iomem *regs = fbi->io;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700462
463 local_irq_save(flags);
464
465 fbi->palette_buffer[regno] = val;
466
467 if (!fbi->palette_ready) {
468 fbi->palette_ready = 1;
469
470 /* enable IRQ */
Ben Dooksaff39a82007-07-31 00:37:37 -0700471 irqen = readl(regs + S3C2410_LCDINTMSK);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700472 irqen &= ~S3C2410_LCDINT_FRSYNC;
Ben Dooksaff39a82007-07-31 00:37:37 -0700473 writel(irqen, regs + S3C2410_LCDINTMSK);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700474 }
475
476 local_irq_restore(flags);
477}
478
479/* from pxafb.c */
Krzysztof Heltb0831942007-10-16 01:28:54 -0700480static inline unsigned int chan_to_field(unsigned int chan,
481 struct fb_bitfield *bf)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700482{
483 chan &= 0xffff;
484 chan >>= 16 - bf->length;
485 return chan << bf->offset;
486}
487
488static int s3c2410fb_setcolreg(unsigned regno,
489 unsigned red, unsigned green, unsigned blue,
490 unsigned transp, struct fb_info *info)
491{
492 struct s3c2410fb_info *fbi = info->par;
493 unsigned int val;
494
Krzysztof Heltb0831942007-10-16 01:28:54 -0700495 /* dprintk("setcol: regno=%d, rgb=%d,%d,%d\n",
496 regno, red, green, blue); */
Arnaud Patard20fd5762005-09-09 13:10:07 -0700497
Krzysztof Heltb0831942007-10-16 01:28:54 -0700498 switch (info->fix.visual) {
Arnaud Patard20fd5762005-09-09 13:10:07 -0700499 case FB_VISUAL_TRUECOLOR:
Krzysztof Heltb0831942007-10-16 01:28:54 -0700500 /* true-colour, use pseudo-palette */
Arnaud Patard20fd5762005-09-09 13:10:07 -0700501
502 if (regno < 16) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700503 u32 *pal = info->pseudo_palette;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700504
Krzysztof Heltb0831942007-10-16 01:28:54 -0700505 val = chan_to_field(red, &info->var.red);
506 val |= chan_to_field(green, &info->var.green);
507 val |= chan_to_field(blue, &info->var.blue);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700508
509 pal[regno] = val;
510 }
511 break;
512
513 case FB_VISUAL_PSEUDOCOLOR:
514 if (regno < 256) {
515 /* currently assume RGB 5-6-5 mode */
516
517 val = ((red >> 0) & 0xf800);
518 val |= ((green >> 5) & 0x07e0);
519 val |= ((blue >> 11) & 0x001f);
520
521 writel(val, S3C2410_TFTPAL(regno));
522 schedule_palette_update(fbi, regno, val);
523 }
524
525 break;
526
527 default:
Krzysztof Heltb0831942007-10-16 01:28:54 -0700528 return 1; /* unknown type */
Arnaud Patard20fd5762005-09-09 13:10:07 -0700529 }
530
531 return 0;
532}
533
Krzysztof Heltb0831942007-10-16 01:28:54 -0700534/*
Arnaud Patard20fd5762005-09-09 13:10:07 -0700535 * s3c2410fb_blank
536 * @blank_mode: the blank mode we want.
537 * @info: frame buffer structure that represents a single frame buffer
538 *
539 * Blank the screen if blank_mode != 0, else unblank. Return 0 if
540 * blanking succeeded, != 0 if un-/blanking failed due to e.g. a
541 * video mode which doesn't support it. Implements VESA suspend
542 * and powerdown modes on hardware that supports disabling hsync/vsync:
543 * blank_mode == 2: suspend vsync
544 * blank_mode == 3: suspend hsync
545 * blank_mode == 4: powerdown
546 *
547 * Returns negative errno on error, or zero on success.
548 *
549 */
550static int s3c2410fb_blank(int blank_mode, struct fb_info *info)
551{
552 dprintk("blank(mode=%d, info=%p)\n", blank_mode, info);
553
554 if (mach_info == NULL)
555 return -EINVAL;
556
557 if (blank_mode == FB_BLANK_UNBLANK)
558 writel(0x0, S3C2410_TPAL);
559 else {
560 dprintk("setting TPAL to output 0x000000\n");
561 writel(S3C2410_TPAL_EN, S3C2410_TPAL);
562 }
563
564 return 0;
565}
566
Krzysztof Heltb0831942007-10-16 01:28:54 -0700567static int s3c2410fb_debug_show(struct device *dev,
568 struct device_attribute *attr, char *buf)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700569{
570 return snprintf(buf, PAGE_SIZE, "%s\n", debug ? "on" : "off");
571}
Krzysztof Heltb0831942007-10-16 01:28:54 -0700572static int s3c2410fb_debug_store(struct device *dev,
573 struct device_attribute *attr,
574 const char *buf, size_t len)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700575{
576 if (mach_info == NULL)
577 return -EINVAL;
578
579 if (len < 1)
580 return -EINVAL;
581
582 if (strnicmp(buf, "on", 2) == 0 ||
583 strnicmp(buf, "1", 1) == 0) {
584 debug = 1;
585 printk(KERN_DEBUG "s3c2410fb: Debug On");
586 } else if (strnicmp(buf, "off", 3) == 0 ||
587 strnicmp(buf, "0", 1) == 0) {
588 debug = 0;
589 printk(KERN_DEBUG "s3c2410fb: Debug Off");
590 } else {
591 return -EINVAL;
592 }
593
594 return len;
595}
596
Krzysztof Heltb0831942007-10-16 01:28:54 -0700597static DEVICE_ATTR(debug, 0666, s3c2410fb_debug_show, s3c2410fb_debug_store);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700598
599static struct fb_ops s3c2410fb_ops = {
600 .owner = THIS_MODULE,
601 .fb_check_var = s3c2410fb_check_var,
602 .fb_set_par = s3c2410fb_set_par,
603 .fb_blank = s3c2410fb_blank,
604 .fb_setcolreg = s3c2410fb_setcolreg,
605 .fb_fillrect = cfb_fillrect,
606 .fb_copyarea = cfb_copyarea,
607 .fb_imageblit = cfb_imageblit,
Arnaud Patard20fd5762005-09-09 13:10:07 -0700608};
609
Arnaud Patard20fd5762005-09-09 13:10:07 -0700610/*
611 * s3c2410fb_map_video_memory():
612 * Allocates the DRAM memory for the frame buffer. This buffer is
613 * remapped into a non-cached, non-buffered, memory region to
614 * allow palette and pixel writes to occur without flushing the
615 * cache. Once this area is remapped, all virtual memory
616 * access to the video memory should occur at the new region.
617 */
618static int __init s3c2410fb_map_video_memory(struct s3c2410fb_info *fbi)
619{
620 dprintk("map_video_memory(fbi=%p)\n", fbi);
621
622 fbi->map_size = PAGE_ALIGN(fbi->fb->fix.smem_len + PAGE_SIZE);
623 fbi->map_cpu = dma_alloc_writecombine(fbi->dev, fbi->map_size,
624 &fbi->map_dma, GFP_KERNEL);
625
626 fbi->map_size = fbi->fb->fix.smem_len;
627
628 if (fbi->map_cpu) {
629 /* prevent initial garbage on screen */
630 dprintk("map_video_memory: clear %p:%08x\n",
631 fbi->map_cpu, fbi->map_size);
632 memset(fbi->map_cpu, 0xf0, fbi->map_size);
633
634 fbi->screen_dma = fbi->map_dma;
635 fbi->fb->screen_base = fbi->map_cpu;
636 fbi->fb->fix.smem_start = fbi->screen_dma;
637
638 dprintk("map_video_memory: dma=%08x cpu=%p size=%08x\n",
639 fbi->map_dma, fbi->map_cpu, fbi->fb->fix.smem_len);
640 }
641
642 return fbi->map_cpu ? 0 : -ENOMEM;
643}
644
645static inline void s3c2410fb_unmap_video_memory(struct s3c2410fb_info *fbi)
646{
Krzysztof Heltb0831942007-10-16 01:28:54 -0700647 dma_free_writecombine(fbi->dev, fbi->map_size, fbi->map_cpu,
648 fbi->map_dma);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700649}
650
651static inline void modify_gpio(void __iomem *reg,
652 unsigned long set, unsigned long mask)
653{
654 unsigned long tmp;
655
656 tmp = readl(reg) & ~mask;
657 writel(tmp | set, reg);
658}
659
Arnaud Patard20fd5762005-09-09 13:10:07 -0700660/*
661 * s3c2410fb_init_registers - Initialise all LCD-related registers
662 */
Arnaud Patard740f14b2006-01-09 20:53:41 -0800663static int s3c2410fb_init_registers(struct s3c2410fb_info *fbi)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700664{
665 unsigned long flags;
Ben Dooksaff39a82007-07-31 00:37:37 -0700666 void __iomem *regs = fbi->io;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700667
668 /* Initialise LCD with values from haret */
669
670 local_irq_save(flags);
671
672 /* modify the gpio(s) with interrupts set (bjd) */
673
674 modify_gpio(S3C2410_GPCUP, mach_info->gpcup, mach_info->gpcup_mask);
675 modify_gpio(S3C2410_GPCCON, mach_info->gpccon, mach_info->gpccon_mask);
676 modify_gpio(S3C2410_GPDUP, mach_info->gpdup, mach_info->gpdup_mask);
677 modify_gpio(S3C2410_GPDCON, mach_info->gpdcon, mach_info->gpdcon_mask);
678
679 local_irq_restore(flags);
680
Ben Dooksaff39a82007-07-31 00:37:37 -0700681 writel(fbi->regs.lcdcon1, regs + S3C2410_LCDCON1);
682 writel(fbi->regs.lcdcon2, regs + S3C2410_LCDCON2);
683 writel(fbi->regs.lcdcon3, regs + S3C2410_LCDCON3);
684 writel(fbi->regs.lcdcon4, regs + S3C2410_LCDCON4);
685 writel(fbi->regs.lcdcon5, regs + S3C2410_LCDCON5);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700686
Krzysztof Heltb0831942007-10-16 01:28:54 -0700687 s3c2410fb_set_lcdaddr(fbi);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700688
689 dprintk("LPCSEL = 0x%08lx\n", mach_info->lpcsel);
Ben Dooksaff39a82007-07-31 00:37:37 -0700690 writel(mach_info->lpcsel, regs + S3C2410_LPCSEL);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700691
Ben Dooksaff39a82007-07-31 00:37:37 -0700692 dprintk("replacing TPAL %08x\n", readl(regs + S3C2410_TPAL));
Arnaud Patard20fd5762005-09-09 13:10:07 -0700693
694 /* ensure temporary palette disabled */
Ben Dooksaff39a82007-07-31 00:37:37 -0700695 writel(0x00, regs + S3C2410_TPAL);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700696
697 /* Enable video by setting the ENVID bit to 1 */
698 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_ENVID;
Ben Dooksaff39a82007-07-31 00:37:37 -0700699 writel(fbi->regs.lcdcon1, regs + S3C2410_LCDCON1);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700700 return 0;
701}
702
703static void s3c2410fb_write_palette(struct s3c2410fb_info *fbi)
704{
705 unsigned int i;
Ben Dooksaff39a82007-07-31 00:37:37 -0700706 void __iomem *regs = fbi->io;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700707
708 fbi->palette_ready = 0;
709
710 for (i = 0; i < 256; i++) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700711 unsigned long ent = fbi->palette_buffer[i];
712 if (ent == PALETTE_BUFF_CLEAR)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700713 continue;
714
Ben Dooksaff39a82007-07-31 00:37:37 -0700715 writel(ent, regs + S3C2410_TFTPAL(i));
Arnaud Patard20fd5762005-09-09 13:10:07 -0700716
717 /* it seems the only way to know exactly
718 * if the palette wrote ok, is to check
719 * to see if the value verifies ok
720 */
721
Ben Dooksaff39a82007-07-31 00:37:37 -0700722 if (readw(regs + S3C2410_TFTPAL(i)) == ent)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700723 fbi->palette_buffer[i] = PALETTE_BUFF_CLEAR;
724 else
725 fbi->palette_ready = 1; /* retry */
726 }
727}
728
David Howells7d12e782006-10-05 14:55:46 +0100729static irqreturn_t s3c2410fb_irq(int irq, void *dev_id)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700730{
731 struct s3c2410fb_info *fbi = dev_id;
Ben Dooksaff39a82007-07-31 00:37:37 -0700732 void __iomem *regs = fbi->io;
733 unsigned long lcdirq = readl(regs + S3C2410_LCDINTPND);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700734
735 if (lcdirq & S3C2410_LCDINT_FRSYNC) {
736 if (fbi->palette_ready)
737 s3c2410fb_write_palette(fbi);
738
Ben Dooksaff39a82007-07-31 00:37:37 -0700739 writel(S3C2410_LCDINT_FRSYNC, regs + S3C2410_LCDINTPND);
740 writel(S3C2410_LCDINT_FRSYNC, regs + S3C2410_LCDSRCPND);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700741 }
742
743 return IRQ_HANDLED;
744}
745
Krzysztof Heltb0831942007-10-16 01:28:54 -0700746static char driver_name[] = "s3c2410fb";
Arnaud Patard20fd5762005-09-09 13:10:07 -0700747
Arnaud Patard740f14b2006-01-09 20:53:41 -0800748static int __init s3c2410fb_probe(struct platform_device *pdev)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700749{
750 struct s3c2410fb_info *info;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700751 struct fb_info *fbinfo;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700752 struct s3c2410fb_hw *mregs;
Ben Dooksaff39a82007-07-31 00:37:37 -0700753 struct resource *res;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700754 int ret;
755 int irq;
756 int i;
Ben Dooksaff39a82007-07-31 00:37:37 -0700757 int size;
Arnaud Patard6931a762006-06-26 00:26:45 -0700758 u32 lcdcon1;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700759
Russell King3ae5eae2005-11-09 22:32:44 +0000760 mach_info = pdev->dev.platform_data;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700761 if (mach_info == NULL) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700762 dev_err(&pdev->dev,
763 "no platform data for lcd, cannot attach\n");
Arnaud Patard20fd5762005-09-09 13:10:07 -0700764 return -EINVAL;
765 }
766
767 mregs = &mach_info->regs;
768
769 irq = platform_get_irq(pdev, 0);
770 if (irq < 0) {
Russell King3ae5eae2005-11-09 22:32:44 +0000771 dev_err(&pdev->dev, "no irq for device\n");
Arnaud Patard20fd5762005-09-09 13:10:07 -0700772 return -ENOENT;
773 }
774
Russell King3ae5eae2005-11-09 22:32:44 +0000775 fbinfo = framebuffer_alloc(sizeof(struct s3c2410fb_info), &pdev->dev);
Krzysztof Heltb0831942007-10-16 01:28:54 -0700776 if (!fbinfo)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700777 return -ENOMEM;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700778
Arnaud Patard20fd5762005-09-09 13:10:07 -0700779 info = fbinfo->par;
780 info->fb = fbinfo;
Ben Dooks0187f222007-02-16 01:28:42 -0800781 info->dev = &pdev->dev;
782
Ben Dooksaff39a82007-07-31 00:37:37 -0700783 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
784 if (res == NULL) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700785 dev_err(&pdev->dev, "failed to get memory registers\n");
Ben Dooksaff39a82007-07-31 00:37:37 -0700786 ret = -ENXIO;
787 goto dealloc_fb;
788 }
789
Krzysztof Heltb0831942007-10-16 01:28:54 -0700790 size = (res->end - res->start) + 1;
Ben Dooksaff39a82007-07-31 00:37:37 -0700791 info->mem = request_mem_region(res->start, size, pdev->name);
792 if (info->mem == NULL) {
793 dev_err(&pdev->dev, "failed to get memory region\n");
794 ret = -ENOENT;
795 goto dealloc_fb;
796 }
797
798 info->io = ioremap(res->start, size);
799 if (info->io == NULL) {
800 dev_err(&pdev->dev, "ioremap() of registers failed\n");
801 ret = -ENXIO;
802 goto release_mem;
803 }
804
Russell King3ae5eae2005-11-09 22:32:44 +0000805 platform_set_drvdata(pdev, fbinfo);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700806
Arnaud Patard20fd5762005-09-09 13:10:07 -0700807 dprintk("devinit\n");
808
809 strcpy(fbinfo->fix.id, driver_name);
810
811 memcpy(&info->regs, &mach_info->regs, sizeof(info->regs));
812
Arnaud Patard6931a762006-06-26 00:26:45 -0700813 /* Stop the video and unset ENVID if set */
814 info->regs.lcdcon1 &= ~S3C2410_LCDCON1_ENVID;
Ben Dooksaff39a82007-07-31 00:37:37 -0700815 lcdcon1 = readl(info->io + S3C2410_LCDCON1);
816 writel(lcdcon1 & ~S3C2410_LCDCON1_ENVID, info->io + S3C2410_LCDCON1);
Arnaud Patard6931a762006-06-26 00:26:45 -0700817
Russell King3ae5eae2005-11-09 22:32:44 +0000818 info->mach_info = pdev->dev.platform_data;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700819
820 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
821 fbinfo->fix.type_aux = 0;
822 fbinfo->fix.xpanstep = 0;
823 fbinfo->fix.ypanstep = 0;
824 fbinfo->fix.ywrapstep = 0;
825 fbinfo->fix.accel = FB_ACCEL_NONE;
826
827 fbinfo->var.nonstd = 0;
828 fbinfo->var.activate = FB_ACTIVATE_NOW;
829 fbinfo->var.height = mach_info->height;
830 fbinfo->var.width = mach_info->width;
831 fbinfo->var.accel_flags = 0;
832 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
833
834 fbinfo->fbops = &s3c2410fb_ops;
835 fbinfo->flags = FBINFO_FLAG_DEFAULT;
836 fbinfo->pseudo_palette = &info->pseudo_pal;
837
838 fbinfo->var.xres = mach_info->xres.defval;
839 fbinfo->var.xres_virtual = mach_info->xres.defval;
840 fbinfo->var.yres = mach_info->yres.defval;
841 fbinfo->var.yres_virtual = mach_info->yres.defval;
842 fbinfo->var.bits_per_pixel = mach_info->bpp.defval;
843
Krzysztof Heltb0831942007-10-16 01:28:54 -0700844 fbinfo->var.upper_margin =
845 S3C2410_LCDCON2_GET_VBPD(mregs->lcdcon2) + 1;
846 fbinfo->var.lower_margin =
847 S3C2410_LCDCON2_GET_VFPD(mregs->lcdcon2) + 1;
848 fbinfo->var.vsync_len =
849 S3C2410_LCDCON2_GET_VSPW(mregs->lcdcon2) + 1;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700850
Krzysztof Heltb0831942007-10-16 01:28:54 -0700851 fbinfo->var.left_margin =
852 S3C2410_LCDCON3_GET_HFPD(mregs->lcdcon3) + 1;
853 fbinfo->var.right_margin =
854 S3C2410_LCDCON3_GET_HBPD(mregs->lcdcon3) + 1;
855 fbinfo->var.hsync_len =
856 S3C2410_LCDCON4_GET_HSPW(mregs->lcdcon4) + 1;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700857
858 fbinfo->var.red.offset = 11;
859 fbinfo->var.green.offset = 5;
860 fbinfo->var.blue.offset = 0;
861 fbinfo->var.transp.offset = 0;
862 fbinfo->var.red.length = 5;
863 fbinfo->var.green.length = 6;
864 fbinfo->var.blue.length = 5;
865 fbinfo->var.transp.length = 0;
Krzysztof Heltb0831942007-10-16 01:28:54 -0700866 fbinfo->fix.smem_len = mach_info->xres.max *
Arnaud Patard20fd5762005-09-09 13:10:07 -0700867 mach_info->yres.max *
868 mach_info->bpp.max / 8;
869
870 for (i = 0; i < 256; i++)
871 info->palette_buffer[i] = PALETTE_BUFF_CLEAR;
872
Thomas Gleixner63a43392006-07-01 19:29:45 -0700873 ret = request_irq(irq, s3c2410fb_irq, IRQF_DISABLED, pdev->name, info);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700874 if (ret) {
Russell King3ae5eae2005-11-09 22:32:44 +0000875 dev_err(&pdev->dev, "cannot get irq %d - err %d\n", irq, ret);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700876 ret = -EBUSY;
Ben Dooksaff39a82007-07-31 00:37:37 -0700877 goto release_regs;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700878 }
879
880 info->clk = clk_get(NULL, "lcd");
881 if (!info->clk || IS_ERR(info->clk)) {
882 printk(KERN_ERR "failed to get lcd clock source\n");
883 ret = -ENOENT;
884 goto release_irq;
885 }
886
Arnaud Patard20fd5762005-09-09 13:10:07 -0700887 clk_enable(info->clk);
888 dprintk("got and enabled clock\n");
889
890 msleep(1);
891
892 /* Initialize video memory */
893 ret = s3c2410fb_map_video_memory(info);
894 if (ret) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700895 printk(KERN_ERR "Failed to allocate video RAM: %d\n", ret);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700896 ret = -ENOMEM;
897 goto release_clock;
898 }
Ben Dooksaff39a82007-07-31 00:37:37 -0700899
Arnaud Patard20fd5762005-09-09 13:10:07 -0700900 dprintk("got video memory\n");
901
Krzysztof Heltb0831942007-10-16 01:28:54 -0700902 s3c2410fb_init_registers(info);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700903
Krzysztof Heltb0831942007-10-16 01:28:54 -0700904 s3c2410fb_check_var(&fbinfo->var, fbinfo);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700905
906 ret = register_framebuffer(fbinfo);
907 if (ret < 0) {
Krzysztof Heltb0831942007-10-16 01:28:54 -0700908 printk(KERN_ERR "Failed to register framebuffer device: %d\n",
909 ret);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700910 goto free_video_memory;
911 }
912
913 /* create device files */
Russell King3ae5eae2005-11-09 22:32:44 +0000914 device_create_file(&pdev->dev, &dev_attr_debug);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700915
916 printk(KERN_INFO "fb%d: %s frame buffer device\n",
917 fbinfo->node, fbinfo->fix.id);
918
919 return 0;
920
921free_video_memory:
922 s3c2410fb_unmap_video_memory(info);
923release_clock:
924 clk_disable(info->clk);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700925 clk_put(info->clk);
926release_irq:
Krzysztof Heltb0831942007-10-16 01:28:54 -0700927 free_irq(irq, info);
Ben Dooksaff39a82007-07-31 00:37:37 -0700928release_regs:
929 iounmap(info->io);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700930release_mem:
Ben Dooksaff39a82007-07-31 00:37:37 -0700931 release_resource(info->mem);
932 kfree(info->mem);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700933dealloc_fb:
934 framebuffer_release(fbinfo);
935 return ret;
936}
937
938/* s3c2410fb_stop_lcd
939 *
940 * shutdown the lcd controller
Krzysztof Heltb0831942007-10-16 01:28:54 -0700941 */
Arnaud Patard6931a762006-06-26 00:26:45 -0700942static void s3c2410fb_stop_lcd(struct s3c2410fb_info *fbi)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700943{
944 unsigned long flags;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700945
946 local_irq_save(flags);
947
Arnaud Patard6931a762006-06-26 00:26:45 -0700948 fbi->regs.lcdcon1 &= ~S3C2410_LCDCON1_ENVID;
Ben Dooksaff39a82007-07-31 00:37:37 -0700949 writel(fbi->regs.lcdcon1, fbi->io + S3C2410_LCDCON1);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700950
951 local_irq_restore(flags);
952}
953
954/*
955 * Cleanup
956 */
Russell King3ae5eae2005-11-09 22:32:44 +0000957static int s3c2410fb_remove(struct platform_device *pdev)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700958{
Krzysztof Heltb0831942007-10-16 01:28:54 -0700959 struct fb_info *fbinfo = platform_get_drvdata(pdev);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700960 struct s3c2410fb_info *info = fbinfo->par;
961 int irq;
962
Arnaud Patard6931a762006-06-26 00:26:45 -0700963 s3c2410fb_stop_lcd(info);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700964 msleep(1);
965
966 s3c2410fb_unmap_video_memory(info);
967
Krzysztof Heltb0831942007-10-16 01:28:54 -0700968 if (info->clk) {
969 clk_disable(info->clk);
970 clk_put(info->clk);
971 info->clk = NULL;
Arnaud Patard20fd5762005-09-09 13:10:07 -0700972 }
973
974 irq = platform_get_irq(pdev, 0);
Krzysztof Heltb0831942007-10-16 01:28:54 -0700975 free_irq(irq, info);
Ben Dooksaff39a82007-07-31 00:37:37 -0700976
977 release_resource(info->mem);
978 kfree(info->mem);
979 iounmap(info->io);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700980 unregister_framebuffer(fbinfo);
981
982 return 0;
983}
984
985#ifdef CONFIG_PM
986
987/* suspend and resume support for the lcd controller */
Russell King3ae5eae2005-11-09 22:32:44 +0000988static int s3c2410fb_suspend(struct platform_device *dev, pm_message_t state)
Arnaud Patard20fd5762005-09-09 13:10:07 -0700989{
Russell King3ae5eae2005-11-09 22:32:44 +0000990 struct fb_info *fbinfo = platform_get_drvdata(dev);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700991 struct s3c2410fb_info *info = fbinfo->par;
992
Arnaud Patard6931a762006-06-26 00:26:45 -0700993 s3c2410fb_stop_lcd(info);
Arnaud Patard20fd5762005-09-09 13:10:07 -0700994
Russell King9480e302005-10-28 09:52:56 -0700995 /* sleep before disabling the clock, we need to ensure
996 * the LCD DMA engine is not going to get back on the bus
997 * before the clock goes off again (bjd) */
Arnaud Patard20fd5762005-09-09 13:10:07 -0700998
Russell King9480e302005-10-28 09:52:56 -0700999 msleep(1);
1000 clk_disable(info->clk);
Arnaud Patard20fd5762005-09-09 13:10:07 -07001001
1002 return 0;
1003}
1004
Russell King3ae5eae2005-11-09 22:32:44 +00001005static int s3c2410fb_resume(struct platform_device *dev)
Arnaud Patard20fd5762005-09-09 13:10:07 -07001006{
Russell King3ae5eae2005-11-09 22:32:44 +00001007 struct fb_info *fbinfo = platform_get_drvdata(dev);
Arnaud Patard20fd5762005-09-09 13:10:07 -07001008 struct s3c2410fb_info *info = fbinfo->par;
1009
Russell King9480e302005-10-28 09:52:56 -07001010 clk_enable(info->clk);
1011 msleep(1);
Arnaud Patard20fd5762005-09-09 13:10:07 -07001012
Russell King9480e302005-10-28 09:52:56 -07001013 s3c2410fb_init_registers(info);
Arnaud Patard20fd5762005-09-09 13:10:07 -07001014
1015 return 0;
1016}
1017
1018#else
1019#define s3c2410fb_suspend NULL
1020#define s3c2410fb_resume NULL
1021#endif
1022
Russell King3ae5eae2005-11-09 22:32:44 +00001023static struct platform_driver s3c2410fb_driver = {
Arnaud Patard20fd5762005-09-09 13:10:07 -07001024 .probe = s3c2410fb_probe,
Russell King3ae5eae2005-11-09 22:32:44 +00001025 .remove = s3c2410fb_remove,
Arnaud Patard20fd5762005-09-09 13:10:07 -07001026 .suspend = s3c2410fb_suspend,
1027 .resume = s3c2410fb_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001028 .driver = {
1029 .name = "s3c2410-lcd",
1030 .owner = THIS_MODULE,
1031 },
Arnaud Patard20fd5762005-09-09 13:10:07 -07001032};
1033
1034int __devinit s3c2410fb_init(void)
1035{
Russell King3ae5eae2005-11-09 22:32:44 +00001036 return platform_driver_register(&s3c2410fb_driver);
Arnaud Patard20fd5762005-09-09 13:10:07 -07001037}
1038
1039static void __exit s3c2410fb_cleanup(void)
1040{
Russell King3ae5eae2005-11-09 22:32:44 +00001041 platform_driver_unregister(&s3c2410fb_driver);
Arnaud Patard20fd5762005-09-09 13:10:07 -07001042}
1043
Arnaud Patard20fd5762005-09-09 13:10:07 -07001044module_init(s3c2410fb_init);
1045module_exit(s3c2410fb_cleanup);
1046
Krzysztof Heltb0831942007-10-16 01:28:54 -07001047MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>, "
1048 "Ben Dooks <ben-linux@fluff.org>");
Arnaud Patard20fd5762005-09-09 13:10:07 -07001049MODULE_DESCRIPTION("Framebuffer driver for the s3c2410");
1050MODULE_LICENSE("GPL");