drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / video / s3c2410fb.c
CommitLineData
6a0e4ec7
BD
1/* linux/drivers/video/s3c2410fb.c
2 * Copyright (c) 2004,2005 Arnaud Patard
3 * Copyright (c) 2004-2008 Ben Dooks
4 *
5 * S3C2410 LCD Framebuffer Driver
20fd5767
AP
6 *
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file COPYING in the main directory of this archive for
9 * more details.
10 *
6a0e4ec7
BD
11 * Driver based on skeletonfb.c, sa1100fb.c and others.
12*/
20fd5767 13
81c16558
SK
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
20fd5767
AP
16#include <linux/module.h>
17#include <linux/kernel.h>
0b2e9cb4 18#include <linux/err.h>
20fd5767
AP
19#include <linux/errno.h>
20#include <linux/string.h>
21#include <linux/mm.h>
20fd5767
AP
22#include <linux/slab.h>
23#include <linux/delay.h>
24#include <linux/fb.h>
25#include <linux/init.h>
26#include <linux/dma-mapping.h>
20fd5767 27#include <linux/interrupt.h>
d052d1be 28#include <linux/platform_device.h>
f8ce2547 29#include <linux/clk.h>
0dac6ecd 30#include <linux/cpufreq.h>
f940b88d 31#include <linux/io.h>
20fd5767 32
20fd5767
AP
33#include <asm/div64.h>
34
35#include <asm/mach/map.h>
a09e64fb
RK
36#include <mach/regs-lcd.h>
37#include <mach/regs-gpio.h>
38#include <mach/fb.h>
20fd5767
AP
39
40#ifdef CONFIG_PM
41#include <linux/pm.h>
42#endif
43
44#include "s3c2410fb.h"
45
20fd5767
AP
46/* Debugging stuff */
47#ifdef CONFIG_FB_S3C2410_DEBUG
b0831941 48static int debug = 1;
20fd5767 49#else
f940b88d 50static int debug;
20fd5767
AP
51#endif
52
81c16558
SK
53#define dprintk(msg...) \
54do { \
55 if (debug) \
56 pr_debug(msg); \
57} while (0)
20fd5767
AP
58
59/* useful functions */
60
f62e770b
BD
61static int is_s3c2412(struct s3c2410fb_info *fbi)
62{
63 return (fbi->drv_type == DRV_S3C2412);
64}
65
20fd5767
AP
66/* s3c2410fb_set_lcdaddr
67 *
68 * initialise lcd controller address pointers
b0831941 69 */
110c1fa7 70static void s3c2410fb_set_lcdaddr(struct fb_info *info)
20fd5767 71{
20fd5767 72 unsigned long saddr1, saddr2, saddr3;
7ee0fe41
KH
73 struct s3c2410fb_info *fbi = info->par;
74 void __iomem *regs = fbi->io;
20fd5767 75
110c1fa7
KH
76 saddr1 = info->fix.smem_start >> 1;
77 saddr2 = info->fix.smem_start;
9fa7bc01 78 saddr2 += info->fix.line_length * info->var.yres;
b0831941 79 saddr2 >>= 1;
20fd5767 80
b0831941 81 saddr3 = S3C2410_OFFSIZE(0) |
9fa7bc01 82 S3C2410_PAGEWIDTH((info->fix.line_length / 2) & 0x3ff);
20fd5767
AP
83
84 dprintk("LCDSADDR1 = 0x%08lx\n", saddr1);
85 dprintk("LCDSADDR2 = 0x%08lx\n", saddr2);
86 dprintk("LCDSADDR3 = 0x%08lx\n", saddr3);
87
7ee0fe41
KH
88 writel(saddr1, regs + S3C2410_LCDSADDR1);
89 writel(saddr2, regs + S3C2410_LCDSADDR2);
90 writel(saddr3, regs + S3C2410_LCDSADDR3);
20fd5767
AP
91}
92
93/* s3c2410fb_calc_pixclk()
94 *
95 * calculate divisor for clk->pixclk
b0831941 96 */
20fd5767
AP
97static unsigned int s3c2410fb_calc_pixclk(struct s3c2410fb_info *fbi,
98 unsigned long pixclk)
99{
0dac6ecd 100 unsigned long clk = fbi->clk_rate;
20fd5767
AP
101 unsigned long long div;
102
9fa7bc01 103 /* pixclk is in picoseconds, our clock is in Hz
20fd5767
AP
104 *
105 * Hz -> picoseconds is / 10^-12
106 */
107
108 div = (unsigned long long)clk * pixclk;
9fa7bc01
KH
109 div >>= 12; /* div / 2^12 */
110 do_div(div, 625 * 625UL * 625); /* div / 5^12 */
20fd5767
AP
111
112 dprintk("pixclk %ld, divisor is %ld\n", pixclk, (long)div);
113 return div;
114}
115
116/*
117 * s3c2410fb_check_var():
118 * Get the video params out of 'var'. If a value doesn't fit, round it up,
119 * if it's too big, return -EINVAL.
120 *
121 */
122static int s3c2410fb_check_var(struct fb_var_screeninfo *var,
123 struct fb_info *info)
124{
125 struct s3c2410fb_info *fbi = info->par;
9fa7bc01 126 struct s3c2410fb_mach_info *mach_info = fbi->dev->platform_data;
09fe75f6 127 struct s3c2410fb_display *display = NULL;
e7076389
KH
128 struct s3c2410fb_display *default_display = mach_info->displays +
129 mach_info->default_display;
130 int type = default_display->type;
09fe75f6 131 unsigned i;
20fd5767
AP
132
133 dprintk("check_var(var=%p, info=%p)\n", var, info);
134
135 /* validate x/y resolution */
e7076389
KH
136 /* choose default mode if possible */
137 if (var->yres == default_display->yres &&
138 var->xres == default_display->xres &&
139 var->bits_per_pixel == default_display->bpp)
140 display = default_display;
141 else
142 for (i = 0; i < mach_info->num_displays; i++)
143 if (type == mach_info->displays[i].type &&
144 var->yres == mach_info->displays[i].yres &&
145 var->xres == mach_info->displays[i].xres &&
146 var->bits_per_pixel == mach_info->displays[i].bpp) {
147 display = mach_info->displays + i;
148 break;
149 }
20fd5767 150
09fe75f6
KH
151 if (!display) {
152 dprintk("wrong resolution or depth %dx%d at %d bpp\n",
153 var->xres, var->yres, var->bits_per_pixel);
154 return -EINVAL;
155 }
20fd5767 156
9939a481
KH
157 /* it is always the size as the display */
158 var->xres_virtual = display->xres;
159 var->yres_virtual = display->yres;
9fa7bc01
KH
160 var->height = display->height;
161 var->width = display->width;
9939a481
KH
162
163 /* copy lcd settings */
69816699 164 var->pixclock = display->pixclock;
9939a481
KH
165 var->left_margin = display->left_margin;
166 var->right_margin = display->right_margin;
9fa7bc01
KH
167 var->upper_margin = display->upper_margin;
168 var->lower_margin = display->lower_margin;
169 var->vsync_len = display->vsync_len;
170 var->hsync_len = display->hsync_len;
171
9fa7bc01
KH
172 fbi->regs.lcdcon5 = display->lcdcon5;
173 /* set display type */
36f31a70 174 fbi->regs.lcdcon1 = display->type;
9939a481 175
b0831941
KH
176 var->transp.offset = 0;
177 var->transp.length = 0;
20fd5767 178 /* set r/g/b positions */
357b819d 179 switch (var->bits_per_pixel) {
b0831941
KH
180 case 1:
181 case 2:
182 case 4:
183 var->red.offset = 0;
184 var->red.length = var->bits_per_pixel;
185 var->green = var->red;
186 var->blue = var->red;
187 break;
188 case 8:
09fe75f6 189 if (display->type != S3C2410_LCDCON1_TFT) {
b0831941
KH
190 /* 8 bpp 332 */
191 var->red.length = 3;
192 var->red.offset = 5;
193 var->green.length = 3;
194 var->green.offset = 2;
195 var->blue.length = 2;
357b819d 196 var->blue.offset = 0;
b0831941
KH
197 } else {
198 var->red.offset = 0;
357b819d 199 var->red.length = 8;
b0831941
KH
200 var->green = var->red;
201 var->blue = var->red;
202 }
203 break;
204 case 12:
205 /* 12 bpp 444 */
206 var->red.length = 4;
207 var->red.offset = 8;
208 var->green.length = 4;
209 var->green.offset = 4;
210 var->blue.length = 4;
211 var->blue.offset = 0;
212 break;
213
214 default:
215 case 16:
f28ef573 216 if (display->lcdcon5 & S3C2410_LCDCON5_FRM565) {
b0831941
KH
217 /* 16 bpp, 565 format */
218 var->red.offset = 11;
219 var->green.offset = 5;
357b819d 220 var->blue.offset = 0;
b0831941
KH
221 var->red.length = 5;
222 var->green.length = 6;
223 var->blue.length = 5;
224 } else {
225 /* 16 bpp, 5551 format */
226 var->red.offset = 11;
227 var->green.offset = 6;
228 var->blue.offset = 1;
229 var->red.length = 5;
230 var->green.length = 5;
231 var->blue.length = 5;
232 }
233 break;
93613b9f
KH
234 case 32:
235 /* 24 bpp 888 and 8 dummy */
b0831941
KH
236 var->red.length = 8;
237 var->red.offset = 16;
238 var->green.length = 8;
239 var->green.offset = 8;
240 var->blue.length = 8;
241 var->blue.offset = 0;
242 break;
357b819d 243 }
20fd5767
AP
244 return 0;
245}
246
9939a481 247/* s3c2410fb_calculate_stn_lcd_regs
20fd5767 248 *
9939a481 249 * calculate register values from var settings
b0831941 250 */
9939a481
KH
251static void s3c2410fb_calculate_stn_lcd_regs(const struct fb_info *info,
252 struct s3c2410fb_hw *regs)
20fd5767 253{
9939a481
KH
254 const struct s3c2410fb_info *fbi = info->par;
255 const struct fb_var_screeninfo *var = &info->var;
256 int type = regs->lcdcon1 & ~S3C2410_LCDCON1_TFT;
257 int hs = var->xres >> 2;
258 unsigned wdly = (var->left_margin >> 4) - 1;
93d11f5a 259 unsigned wlh = (var->hsync_len >> 4) - 1;
20fd5767 260
9939a481
KH
261 if (type != S3C2410_LCDCON1_STN4)
262 hs >>= 1;
357b819d 263
9939a481
KH
264 switch (var->bits_per_pixel) {
265 case 1:
266 regs->lcdcon1 |= S3C2410_LCDCON1_STN1BPP;
267 break;
268 case 2:
269 regs->lcdcon1 |= S3C2410_LCDCON1_STN2GREY;
270 break;
271 case 4:
272 regs->lcdcon1 |= S3C2410_LCDCON1_STN4GREY;
273 break;
274 case 8:
275 regs->lcdcon1 |= S3C2410_LCDCON1_STN8BPP;
276 hs *= 3;
277 break;
278 case 12:
279 regs->lcdcon1 |= S3C2410_LCDCON1_STN12BPP;
280 hs *= 3;
281 break;
20fd5767 282
9939a481
KH
283 default:
284 /* invalid pixel depth */
285 dev_err(fbi->dev, "invalid bpp %d\n",
286 var->bits_per_pixel);
287 }
288 /* update X/Y info */
9939a481
KH
289 dprintk("setting horz: lft=%d, rt=%d, sync=%d\n",
290 var->left_margin, var->right_margin, var->hsync_len);
20fd5767 291
3c9ffd05 292 regs->lcdcon2 = S3C2410_LCDCON2_LINEVAL(var->yres - 1);
20fd5767 293
9939a481
KH
294 if (wdly > 3)
295 wdly = 3;
20fd5767 296
93d11f5a
KH
297 if (wlh > 3)
298 wlh = 3;
299
9939a481
KH
300 regs->lcdcon3 = S3C2410_LCDCON3_WDLY(wdly) |
301 S3C2410_LCDCON3_LINEBLANK(var->right_margin / 8) |
302 S3C2410_LCDCON3_HOZVAL(hs - 1);
93d11f5a 303
e92e7395 304 regs->lcdcon4 = S3C2410_LCDCON4_WLH(wlh);
9939a481 305}
20fd5767 306
9939a481
KH
307/* s3c2410fb_calculate_tft_lcd_regs
308 *
309 * calculate register values from var settings
310 */
311static void s3c2410fb_calculate_tft_lcd_regs(const struct fb_info *info,
312 struct s3c2410fb_hw *regs)
313{
314 const struct s3c2410fb_info *fbi = info->par;
315 const struct fb_var_screeninfo *var = &info->var;
20fd5767 316
9939a481
KH
317 switch (var->bits_per_pixel) {
318 case 1:
319 regs->lcdcon1 |= S3C2410_LCDCON1_TFT1BPP;
320 break;
321 case 2:
322 regs->lcdcon1 |= S3C2410_LCDCON1_TFT2BPP;
b0831941 323 break;
9939a481
KH
324 case 4:
325 regs->lcdcon1 |= S3C2410_LCDCON1_TFT4BPP;
b0831941 326 break;
9939a481
KH
327 case 8:
328 regs->lcdcon1 |= S3C2410_LCDCON1_TFT8BPP;
93613b9f
KH
329 regs->lcdcon5 |= S3C2410_LCDCON5_BSWP |
330 S3C2410_LCDCON5_FRM565;
331 regs->lcdcon5 &= ~S3C2410_LCDCON5_HWSWP;
9939a481
KH
332 break;
333 case 16:
334 regs->lcdcon1 |= S3C2410_LCDCON1_TFT16BPP;
93613b9f
KH
335 regs->lcdcon5 &= ~S3C2410_LCDCON5_BSWP;
336 regs->lcdcon5 |= S3C2410_LCDCON5_HWSWP;
337 break;
338 case 32:
339 regs->lcdcon1 |= S3C2410_LCDCON1_TFT24BPP;
340 regs->lcdcon5 &= ~(S3C2410_LCDCON5_BSWP |
341 S3C2410_LCDCON5_HWSWP |
342 S3C2410_LCDCON5_BPP24BL);
b0831941 343 break;
9939a481
KH
344 default:
345 /* invalid pixel depth */
346 dev_err(fbi->dev, "invalid bpp %d\n",
347 var->bits_per_pixel);
357b819d 348 }
9939a481
KH
349 /* update X/Y info */
350 dprintk("setting vert: up=%d, low=%d, sync=%d\n",
351 var->upper_margin, var->lower_margin, var->vsync_len);
357b819d 352
9939a481
KH
353 dprintk("setting horz: lft=%d, rt=%d, sync=%d\n",
354 var->left_margin, var->right_margin, var->hsync_len);
357b819d 355
93d11f5a
KH
356 regs->lcdcon2 = S3C2410_LCDCON2_LINEVAL(var->yres - 1) |
357 S3C2410_LCDCON2_VBPD(var->upper_margin - 1) |
358 S3C2410_LCDCON2_VFPD(var->lower_margin - 1) |
359 S3C2410_LCDCON2_VSPW(var->vsync_len - 1);
9939a481
KH
360
361 regs->lcdcon3 = S3C2410_LCDCON3_HBPD(var->right_margin - 1) |
362 S3C2410_LCDCON3_HFPD(var->left_margin - 1) |
363 S3C2410_LCDCON3_HOZVAL(var->xres - 1);
93d11f5a 364
e92e7395 365 regs->lcdcon4 = S3C2410_LCDCON4_HSPW(var->hsync_len - 1);
9939a481
KH
366}
367
368/* s3c2410fb_activate_var
369 *
370 * activate (set) the controller from the given framebuffer
371 * information
372 */
373static void s3c2410fb_activate_var(struct fb_info *info)
374{
375 struct s3c2410fb_info *fbi = info->par;
7ee0fe41 376 void __iomem *regs = fbi->io;
9fa7bc01 377 int type = fbi->regs.lcdcon1 & S3C2410_LCDCON1_TFT;
9939a481 378 struct fb_var_screeninfo *var = &info->var;
360fa588
BD
379 int clkdiv;
380
381 clkdiv = DIV_ROUND_UP(s3c2410fb_calc_pixclk(fbi, var->pixclock), 2);
9939a481 382
5ae12170
HH
383 dprintk("%s: var->xres = %d\n", __func__, var->xres);
384 dprintk("%s: var->yres = %d\n", __func__, var->yres);
385 dprintk("%s: var->bpp = %d\n", __func__, var->bits_per_pixel);
20fd5767 386
69816699 387 if (type == S3C2410_LCDCON1_TFT) {
9939a481 388 s3c2410fb_calculate_tft_lcd_regs(info, &fbi->regs);
69816699
KH
389 --clkdiv;
390 if (clkdiv < 0)
391 clkdiv = 0;
392 } else {
9939a481 393 s3c2410fb_calculate_stn_lcd_regs(info, &fbi->regs);
69816699
KH
394 if (clkdiv < 2)
395 clkdiv = 2;
396 }
397
69816699 398 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_CLKVAL(clkdiv);
9939a481 399
20fd5767
AP
400 /* write new registers */
401
402 dprintk("new register set:\n");
403 dprintk("lcdcon[1] = 0x%08lx\n", fbi->regs.lcdcon1);
404 dprintk("lcdcon[2] = 0x%08lx\n", fbi->regs.lcdcon2);
405 dprintk("lcdcon[3] = 0x%08lx\n", fbi->regs.lcdcon3);
406 dprintk("lcdcon[4] = 0x%08lx\n", fbi->regs.lcdcon4);
407 dprintk("lcdcon[5] = 0x%08lx\n", fbi->regs.lcdcon5);
408
7ee0fe41
KH
409 writel(fbi->regs.lcdcon1 & ~S3C2410_LCDCON1_ENVID,
410 regs + S3C2410_LCDCON1);
411 writel(fbi->regs.lcdcon2, regs + S3C2410_LCDCON2);
412 writel(fbi->regs.lcdcon3, regs + S3C2410_LCDCON3);
413 writel(fbi->regs.lcdcon4, regs + S3C2410_LCDCON4);
414 writel(fbi->regs.lcdcon5, regs + S3C2410_LCDCON5);
20fd5767
AP
415
416 /* set lcd address pointers */
110c1fa7 417 s3c2410fb_set_lcdaddr(info);
20fd5767 418
9fa7bc01 419 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_ENVID,
7ee0fe41 420 writel(fbi->regs.lcdcon1, regs + S3C2410_LCDCON1);
20fd5767
AP
421}
422
20fd5767 423/*
b0831941 424 * s3c2410fb_set_par - Alters the hardware state.
20fd5767
AP
425 * @info: frame buffer structure that represents a single frame buffer
426 *
427 */
428static int s3c2410fb_set_par(struct fb_info *info)
429{
20fd5767
AP
430 struct fb_var_screeninfo *var = &info->var;
431
b0831941 432 switch (var->bits_per_pixel) {
93613b9f 433 case 32:
b0831941 434 case 16:
93613b9f 435 case 12:
b0831941
KH
436 info->fix.visual = FB_VISUAL_TRUECOLOR;
437 break;
438 case 1:
439 info->fix.visual = FB_VISUAL_MONO01;
440 break;
441 default:
442 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
443 break;
357b819d 444 }
20fd5767 445
a1033604 446 info->fix.line_length = (var->xres_virtual * var->bits_per_pixel) / 8;
20fd5767
AP
447
448 /* activate this new configuration */
449
9939a481 450 s3c2410fb_activate_var(info);
20fd5767
AP
451 return 0;
452}
453
454static void schedule_palette_update(struct s3c2410fb_info *fbi,
455 unsigned int regno, unsigned int val)
456{
457 unsigned long flags;
458 unsigned long irqen;
f62e770b 459 void __iomem *irq_base = fbi->irq_base;
20fd5767
AP
460
461 local_irq_save(flags);
462
463 fbi->palette_buffer[regno] = val;
464
465 if (!fbi->palette_ready) {
466 fbi->palette_ready = 1;
467
468 /* enable IRQ */
f62e770b 469 irqen = readl(irq_base + S3C24XX_LCDINTMSK);
20fd5767 470 irqen &= ~S3C2410_LCDINT_FRSYNC;
f62e770b 471 writel(irqen, irq_base + S3C24XX_LCDINTMSK);
20fd5767
AP
472 }
473
474 local_irq_restore(flags);
475}
476
477/* from pxafb.c */
b0831941
KH
478static inline unsigned int chan_to_field(unsigned int chan,
479 struct fb_bitfield *bf)
20fd5767
AP
480{
481 chan &= 0xffff;
482 chan >>= 16 - bf->length;
483 return chan << bf->offset;
484}
485
486static int s3c2410fb_setcolreg(unsigned regno,
487 unsigned red, unsigned green, unsigned blue,
488 unsigned transp, struct fb_info *info)
489{
490 struct s3c2410fb_info *fbi = info->par;
7ee0fe41 491 void __iomem *regs = fbi->io;
20fd5767
AP
492 unsigned int val;
493
b0831941
KH
494 /* dprintk("setcol: regno=%d, rgb=%d,%d,%d\n",
495 regno, red, green, blue); */
20fd5767 496
b0831941 497 switch (info->fix.visual) {
20fd5767 498 case FB_VISUAL_TRUECOLOR:
b0831941 499 /* true-colour, use pseudo-palette */
20fd5767
AP
500
501 if (regno < 16) {
b0831941 502 u32 *pal = info->pseudo_palette;
20fd5767 503
b0831941
KH
504 val = chan_to_field(red, &info->var.red);
505 val |= chan_to_field(green, &info->var.green);
506 val |= chan_to_field(blue, &info->var.blue);
20fd5767
AP
507
508 pal[regno] = val;
509 }
510 break;
511
512 case FB_VISUAL_PSEUDOCOLOR:
513 if (regno < 256) {
514 /* currently assume RGB 5-6-5 mode */
515
9fa7bc01
KH
516 val = (red >> 0) & 0xf800;
517 val |= (green >> 5) & 0x07e0;
518 val |= (blue >> 11) & 0x001f;
20fd5767 519
7ee0fe41 520 writel(val, regs + S3C2410_TFTPAL(regno));
20fd5767
AP
521 schedule_palette_update(fbi, regno, val);
522 }
523
524 break;
525
526 default:
b0831941 527 return 1; /* unknown type */
20fd5767
AP
528 }
529
530 return 0;
531}
532
673b4600
BD
533/* s3c2410fb_lcd_enable
534 *
535 * shutdown the lcd controller
536 */
537static void s3c2410fb_lcd_enable(struct s3c2410fb_info *fbi, int enable)
538{
539 unsigned long flags;
540
541 local_irq_save(flags);
542
543 if (enable)
544 fbi->regs.lcdcon1 |= S3C2410_LCDCON1_ENVID;
545 else
546 fbi->regs.lcdcon1 &= ~S3C2410_LCDCON1_ENVID;
547
548 writel(fbi->regs.lcdcon1, fbi->io + S3C2410_LCDCON1);
549
550 local_irq_restore(flags);
551}
552
553
b0831941 554/*
20fd5767
AP
555 * s3c2410fb_blank
556 * @blank_mode: the blank mode we want.
557 * @info: frame buffer structure that represents a single frame buffer
558 *
559 * Blank the screen if blank_mode != 0, else unblank. Return 0 if
560 * blanking succeeded, != 0 if un-/blanking failed due to e.g. a
561 * video mode which doesn't support it. Implements VESA suspend
562 * and powerdown modes on hardware that supports disabling hsync/vsync:
20fd5767
AP
563 *
564 * Returns negative errno on error, or zero on success.
565 *
566 */
567static int s3c2410fb_blank(int blank_mode, struct fb_info *info)
568{
7ee0fe41 569 struct s3c2410fb_info *fbi = info->par;
f62e770b 570 void __iomem *tpal_reg = fbi->io;
7ee0fe41 571
20fd5767
AP
572 dprintk("blank(mode=%d, info=%p)\n", blank_mode, info);
573
f62e770b
BD
574 tpal_reg += is_s3c2412(fbi) ? S3C2412_TPAL : S3C2410_TPAL;
575
f940b88d 576 if (blank_mode == FB_BLANK_POWERDOWN)
673b4600 577 s3c2410fb_lcd_enable(fbi, 0);
f940b88d 578 else
673b4600 579 s3c2410fb_lcd_enable(fbi, 1);
673b4600 580
20fd5767 581 if (blank_mode == FB_BLANK_UNBLANK)
f62e770b 582 writel(0x0, tpal_reg);
20fd5767
AP
583 else {
584 dprintk("setting TPAL to output 0x000000\n");
f62e770b 585 writel(S3C2410_TPAL_EN, tpal_reg);
20fd5767
AP
586 }
587
588 return 0;
589}
590
b0831941
KH
591static int s3c2410fb_debug_show(struct device *dev,
592 struct device_attribute *attr, char *buf)
20fd5767
AP
593{
594 return snprintf(buf, PAGE_SIZE, "%s\n", debug ? "on" : "off");
595}
9fa7bc01 596
b0831941
KH
597static int s3c2410fb_debug_store(struct device *dev,
598 struct device_attribute *attr,
599 const char *buf, size_t len)
20fd5767 600{
20fd5767
AP
601 if (len < 1)
602 return -EINVAL;
603
604 if (strnicmp(buf, "on", 2) == 0 ||
605 strnicmp(buf, "1", 1) == 0) {
606 debug = 1;
81c16558 607 dev_dbg(dev, "s3c2410fb: Debug On");
20fd5767
AP
608 } else if (strnicmp(buf, "off", 3) == 0 ||
609 strnicmp(buf, "0", 1) == 0) {
610 debug = 0;
81c16558 611 dev_dbg(dev, "s3c2410fb: Debug Off");
20fd5767
AP
612 } else {
613 return -EINVAL;
614 }
615
616 return len;
617}
618
b0831941 619static DEVICE_ATTR(debug, 0666, s3c2410fb_debug_show, s3c2410fb_debug_store);
20fd5767
AP
620
621static struct fb_ops s3c2410fb_ops = {
622 .owner = THIS_MODULE,
623 .fb_check_var = s3c2410fb_check_var,
624 .fb_set_par = s3c2410fb_set_par,
625 .fb_blank = s3c2410fb_blank,
626 .fb_setcolreg = s3c2410fb_setcolreg,
627 .fb_fillrect = cfb_fillrect,
628 .fb_copyarea = cfb_copyarea,
629 .fb_imageblit = cfb_imageblit,
20fd5767
AP
630};
631
20fd5767
AP
632/*
633 * s3c2410fb_map_video_memory():
634 * Allocates the DRAM memory for the frame buffer. This buffer is
635 * remapped into a non-cached, non-buffered, memory region to
636 * allow palette and pixel writes to occur without flushing the
637 * cache. Once this area is remapped, all virtual memory
638 * access to the video memory should occur at the new region.
639 */
48c68c4f 640static int s3c2410fb_map_video_memory(struct fb_info *info)
20fd5767 641{
110c1fa7 642 struct s3c2410fb_info *fbi = info->par;
9fa7bc01
KH
643 dma_addr_t map_dma;
644 unsigned map_size = PAGE_ALIGN(info->fix.smem_len);
110c1fa7 645
38a02f56 646 dprintk("map_video_memory(fbi=%p) map_size %u\n", fbi, map_size);
20fd5767 647
9fa7bc01
KH
648 info->screen_base = dma_alloc_writecombine(fbi->dev, map_size,
649 &map_dma, GFP_KERNEL);
20fd5767 650
9fa7bc01 651 if (info->screen_base) {
20fd5767
AP
652 /* prevent initial garbage on screen */
653 dprintk("map_video_memory: clear %p:%08x\n",
9fa7bc01 654 info->screen_base, map_size);
c0d40335 655 memset(info->screen_base, 0x00, map_size);
20fd5767 656
9fa7bc01 657 info->fix.smem_start = map_dma;
20fd5767 658
9fa7bc01
KH
659 dprintk("map_video_memory: dma=%08lx cpu=%p size=%08x\n",
660 info->fix.smem_start, info->screen_base, map_size);
20fd5767
AP
661 }
662
9fa7bc01 663 return info->screen_base ? 0 : -ENOMEM;
20fd5767
AP
664}
665
9fa7bc01 666static inline void s3c2410fb_unmap_video_memory(struct fb_info *info)
20fd5767 667{
9fa7bc01
KH
668 struct s3c2410fb_info *fbi = info->par;
669
670 dma_free_writecombine(fbi->dev, PAGE_ALIGN(info->fix.smem_len),
671 info->screen_base, info->fix.smem_start);
20fd5767
AP
672}
673
674static inline void modify_gpio(void __iomem *reg,
675 unsigned long set, unsigned long mask)
676{
677 unsigned long tmp;
678
679 tmp = readl(reg) & ~mask;
680 writel(tmp | set, reg);
681}
682
20fd5767
AP
683/*
684 * s3c2410fb_init_registers - Initialise all LCD-related registers
685 */
110c1fa7 686static int s3c2410fb_init_registers(struct fb_info *info)
20fd5767 687{
110c1fa7 688 struct s3c2410fb_info *fbi = info->par;
9fa7bc01 689 struct s3c2410fb_mach_info *mach_info = fbi->dev->platform_data;
20fd5767 690 unsigned long flags;
aff39a85 691 void __iomem *regs = fbi->io;
f62e770b
BD
692 void __iomem *tpal;
693 void __iomem *lpcsel;
694
695 if (is_s3c2412(fbi)) {
696 tpal = regs + S3C2412_TPAL;
697 lpcsel = regs + S3C2412_TCONSEL;
698 } else {
699 tpal = regs + S3C2410_TPAL;
700 lpcsel = regs + S3C2410_LPCSEL;
701 }
20fd5767
AP
702
703 /* Initialise LCD with values from haret */
704
705 local_irq_save(flags);
706
707 /* modify the gpio(s) with interrupts set (bjd) */
708
709 modify_gpio(S3C2410_GPCUP, mach_info->gpcup, mach_info->gpcup_mask);
710 modify_gpio(S3C2410_GPCCON, mach_info->gpccon, mach_info->gpccon_mask);
711 modify_gpio(S3C2410_GPDUP, mach_info->gpdup, mach_info->gpdup_mask);
712 modify_gpio(S3C2410_GPDCON, mach_info->gpdcon, mach_info->gpdcon_mask);
713
714 local_irq_restore(flags);
715
20fd5767 716 dprintk("LPCSEL = 0x%08lx\n", mach_info->lpcsel);
f62e770b 717 writel(mach_info->lpcsel, lpcsel);
20fd5767 718
f62e770b 719 dprintk("replacing TPAL %08x\n", readl(tpal));
20fd5767
AP
720
721 /* ensure temporary palette disabled */
f62e770b 722 writel(0x00, tpal);
20fd5767 723
20fd5767
AP
724 return 0;
725}
726
727static void s3c2410fb_write_palette(struct s3c2410fb_info *fbi)
728{
729 unsigned int i;
aff39a85 730 void __iomem *regs = fbi->io;
20fd5767
AP
731
732 fbi->palette_ready = 0;
733
734 for (i = 0; i < 256; i++) {
b0831941
KH
735 unsigned long ent = fbi->palette_buffer[i];
736 if (ent == PALETTE_BUFF_CLEAR)
20fd5767
AP
737 continue;
738
aff39a85 739 writel(ent, regs + S3C2410_TFTPAL(i));
20fd5767
AP
740
741 /* it seems the only way to know exactly
742 * if the palette wrote ok, is to check
743 * to see if the value verifies ok
744 */
745
aff39a85 746 if (readw(regs + S3C2410_TFTPAL(i)) == ent)
20fd5767
AP
747 fbi->palette_buffer[i] = PALETTE_BUFF_CLEAR;
748 else
749 fbi->palette_ready = 1; /* retry */
750 }
751}
752
7d12e780 753static irqreturn_t s3c2410fb_irq(int irq, void *dev_id)
20fd5767
AP
754{
755 struct s3c2410fb_info *fbi = dev_id;
f62e770b
BD
756 void __iomem *irq_base = fbi->irq_base;
757 unsigned long lcdirq = readl(irq_base + S3C24XX_LCDINTPND);
20fd5767
AP
758
759 if (lcdirq & S3C2410_LCDINT_FRSYNC) {
760 if (fbi->palette_ready)
761 s3c2410fb_write_palette(fbi);
762
f62e770b
BD
763 writel(S3C2410_LCDINT_FRSYNC, irq_base + S3C24XX_LCDINTPND);
764 writel(S3C2410_LCDINT_FRSYNC, irq_base + S3C24XX_LCDSRCPND);
20fd5767
AP
765 }
766
767 return IRQ_HANDLED;
768}
769
0dac6ecd
BD
770#ifdef CONFIG_CPU_FREQ
771
772static int s3c2410fb_cpufreq_transition(struct notifier_block *nb,
773 unsigned long val, void *data)
774{
0dac6ecd
BD
775 struct s3c2410fb_info *info;
776 struct fb_info *fbinfo;
777 long delta_f;
778
779 info = container_of(nb, struct s3c2410fb_info, freq_transition);
780 fbinfo = platform_get_drvdata(to_platform_device(info->dev));
781
782 /* work out change, <0 for speed-up */
783 delta_f = info->clk_rate - clk_get_rate(info->clk);
784
785 if ((val == CPUFREQ_POSTCHANGE && delta_f > 0) ||
786 (val == CPUFREQ_PRECHANGE && delta_f < 0)) {
787 info->clk_rate = clk_get_rate(info->clk);
788 s3c2410fb_activate_var(fbinfo);
789 }
790
791 return 0;
792}
793
794static inline int s3c2410fb_cpufreq_register(struct s3c2410fb_info *info)
795{
796 info->freq_transition.notifier_call = s3c2410fb_cpufreq_transition;
797
798 return cpufreq_register_notifier(&info->freq_transition,
799 CPUFREQ_TRANSITION_NOTIFIER);
800}
801
802static inline void s3c2410fb_cpufreq_deregister(struct s3c2410fb_info *info)
803{
804 cpufreq_unregister_notifier(&info->freq_transition,
805 CPUFREQ_TRANSITION_NOTIFIER);
806}
807
808#else
809static inline int s3c2410fb_cpufreq_register(struct s3c2410fb_info *info)
810{
811 return 0;
812}
813
814static inline void s3c2410fb_cpufreq_deregister(struct s3c2410fb_info *info)
815{
816}
817#endif
818
819
f940b88d 820static const char driver_name[] = "s3c2410fb";
20fd5767 821
48c68c4f
GKH
822static int s3c24xxfb_probe(struct platform_device *pdev,
823 enum s3c_drv_type drv_type)
20fd5767
AP
824{
825 struct s3c2410fb_info *info;
09fe75f6 826 struct s3c2410fb_display *display;
b0831941 827 struct fb_info *fbinfo;
9fa7bc01 828 struct s3c2410fb_mach_info *mach_info;
aff39a85 829 struct resource *res;
20fd5767
AP
830 int ret;
831 int irq;
832 int i;
aff39a85 833 int size;
6931a764 834 u32 lcdcon1;
20fd5767 835
3ae5eaec 836 mach_info = pdev->dev.platform_data;
20fd5767 837 if (mach_info == NULL) {
b0831941
KH
838 dev_err(&pdev->dev,
839 "no platform data for lcd, cannot attach\n");
20fd5767
AP
840 return -EINVAL;
841 }
842
e8973637
BD
843 if (mach_info->default_display >= mach_info->num_displays) {
844 dev_err(&pdev->dev, "default is %d but only %d displays\n",
845 mach_info->default_display, mach_info->num_displays);
846 return -EINVAL;
847 }
848
09fe75f6 849 display = mach_info->displays + mach_info->default_display;
20fd5767
AP
850
851 irq = platform_get_irq(pdev, 0);
852 if (irq < 0) {
3ae5eaec 853 dev_err(&pdev->dev, "no irq for device\n");
20fd5767
AP
854 return -ENOENT;
855 }
856
3ae5eaec 857 fbinfo = framebuffer_alloc(sizeof(struct s3c2410fb_info), &pdev->dev);
b0831941 858 if (!fbinfo)
20fd5767 859 return -ENOMEM;
20fd5767 860
9fa7bc01
KH
861 platform_set_drvdata(pdev, fbinfo);
862
20fd5767 863 info = fbinfo->par;
0187f221 864 info->dev = &pdev->dev;
f62e770b 865 info->drv_type = drv_type;
0187f221 866
aff39a85
BD
867 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
868 if (res == NULL) {
b0831941 869 dev_err(&pdev->dev, "failed to get memory registers\n");
aff39a85
BD
870 ret = -ENXIO;
871 goto dealloc_fb;
872 }
873
08f31538 874 size = resource_size(res);
aff39a85
BD
875 info->mem = request_mem_region(res->start, size, pdev->name);
876 if (info->mem == NULL) {
877 dev_err(&pdev->dev, "failed to get memory region\n");
878 ret = -ENOENT;
879 goto dealloc_fb;
880 }
881
882 info->io = ioremap(res->start, size);
883 if (info->io == NULL) {
884 dev_err(&pdev->dev, "ioremap() of registers failed\n");
885 ret = -ENXIO;
886 goto release_mem;
887 }
888
f940b88d
JH
889 if (drv_type == DRV_S3C2412)
890 info->irq_base = info->io + S3C2412_LCDINTBASE;
891 else
892 info->irq_base = info->io + S3C2410_LCDINTBASE;
f62e770b 893
20fd5767
AP
894 dprintk("devinit\n");
895
896 strcpy(fbinfo->fix.id, driver_name);
897
9fa7bc01 898 /* Stop the video */
aff39a85
BD
899 lcdcon1 = readl(info->io + S3C2410_LCDCON1);
900 writel(lcdcon1 & ~S3C2410_LCDCON1_ENVID, info->io + S3C2410_LCDCON1);
6931a764 901
20fd5767
AP
902 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
903 fbinfo->fix.type_aux = 0;
904 fbinfo->fix.xpanstep = 0;
905 fbinfo->fix.ypanstep = 0;
906 fbinfo->fix.ywrapstep = 0;
907 fbinfo->fix.accel = FB_ACCEL_NONE;
908
909 fbinfo->var.nonstd = 0;
910 fbinfo->var.activate = FB_ACTIVATE_NOW;
20fd5767
AP
911 fbinfo->var.accel_flags = 0;
912 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
913
914 fbinfo->fbops = &s3c2410fb_ops;
915 fbinfo->flags = FBINFO_FLAG_DEFAULT;
916 fbinfo->pseudo_palette = &info->pseudo_pal;
917
20fd5767
AP
918 for (i = 0; i < 256; i++)
919 info->palette_buffer[i] = PALETTE_BUFF_CLEAR;
920
f8798ccb 921 ret = request_irq(irq, s3c2410fb_irq, 0, pdev->name, info);
20fd5767 922 if (ret) {
3ae5eaec 923 dev_err(&pdev->dev, "cannot get irq %d - err %d\n", irq, ret);
20fd5767 924 ret = -EBUSY;
aff39a85 925 goto release_regs;
20fd5767
AP
926 }
927
928 info->clk = clk_get(NULL, "lcd");
0b2e9cb4 929 if (IS_ERR(info->clk)) {
81c16558 930 dev_err(&pdev->dev, "failed to get lcd clock source\n");
0b2e9cb4 931 ret = PTR_ERR(info->clk);
20fd5767
AP
932 goto release_irq;
933 }
934
20fd5767
AP
935 clk_enable(info->clk);
936 dprintk("got and enabled clock\n");
937
42affc2d 938 usleep_range(1000, 1100);
20fd5767 939
0dac6ecd
BD
940 info->clk_rate = clk_get_rate(info->clk);
941
9fa7bc01
KH
942 /* find maximum required memory size for display */
943 for (i = 0; i < mach_info->num_displays; i++) {
944 unsigned long smem_len = mach_info->displays[i].xres;
945
946 smem_len *= mach_info->displays[i].yres;
947 smem_len *= mach_info->displays[i].bpp;
948 smem_len >>= 3;
949 if (fbinfo->fix.smem_len < smem_len)
950 fbinfo->fix.smem_len = smem_len;
951 }
952
20fd5767 953 /* Initialize video memory */
110c1fa7 954 ret = s3c2410fb_map_video_memory(fbinfo);
20fd5767 955 if (ret) {
81c16558 956 dev_err(&pdev->dev, "Failed to allocate video RAM: %d\n", ret);
20fd5767
AP
957 ret = -ENOMEM;
958 goto release_clock;
959 }
aff39a85 960
20fd5767
AP
961 dprintk("got video memory\n");
962
9fa7bc01
KH
963 fbinfo->var.xres = display->xres;
964 fbinfo->var.yres = display->yres;
965 fbinfo->var.bits_per_pixel = display->bpp;
966
110c1fa7 967 s3c2410fb_init_registers(fbinfo);
20fd5767 968
b0831941 969 s3c2410fb_check_var(&fbinfo->var, fbinfo);
20fd5767 970
0dac6ecd
BD
971 ret = s3c2410fb_cpufreq_register(info);
972 if (ret < 0) {
973 dev_err(&pdev->dev, "Failed to register cpufreq\n");
974 goto free_video_memory;
975 }
976
20fd5767
AP
977 ret = register_framebuffer(fbinfo);
978 if (ret < 0) {
81c16558 979 dev_err(&pdev->dev, "Failed to register framebuffer device: %d\n",
b0831941 980 ret);
0dac6ecd 981 goto free_cpufreq;
20fd5767
AP
982 }
983
984 /* create device files */
d585dfe8 985 ret = device_create_file(&pdev->dev, &dev_attr_debug);
f940b88d 986 if (ret)
81c16558 987 dev_err(&pdev->dev, "failed to add debug attribute\n");
20fd5767 988
81c16558 989 dev_info(&pdev->dev, "fb%d: %s frame buffer device\n",
20fd5767
AP
990 fbinfo->node, fbinfo->fix.id);
991
992 return 0;
993
0dac6ecd
BD
994 free_cpufreq:
995 s3c2410fb_cpufreq_deregister(info);
20fd5767 996free_video_memory:
9fa7bc01 997 s3c2410fb_unmap_video_memory(fbinfo);
20fd5767
AP
998release_clock:
999 clk_disable(info->clk);
20fd5767
AP
1000 clk_put(info->clk);
1001release_irq:
b0831941 1002 free_irq(irq, info);
aff39a85
BD
1003release_regs:
1004 iounmap(info->io);
20fd5767 1005release_mem:
08f31538 1006 release_mem_region(res->start, size);
20fd5767 1007dealloc_fb:
9fa7bc01 1008 platform_set_drvdata(pdev, NULL);
20fd5767
AP
1009 framebuffer_release(fbinfo);
1010 return ret;
1011}
1012
48c68c4f 1013static int s3c2410fb_probe(struct platform_device *pdev)
f62e770b
BD
1014{
1015 return s3c24xxfb_probe(pdev, DRV_S3C2410);
1016}
1017
48c68c4f 1018static int s3c2412fb_probe(struct platform_device *pdev)
f62e770b
BD
1019{
1020 return s3c24xxfb_probe(pdev, DRV_S3C2412);
1021}
1022
20fd5767
AP
1023
1024/*
1025 * Cleanup
1026 */
48c68c4f 1027static int s3c2410fb_remove(struct platform_device *pdev)
20fd5767 1028{
b0831941 1029 struct fb_info *fbinfo = platform_get_drvdata(pdev);
20fd5767
AP
1030 struct s3c2410fb_info *info = fbinfo->par;
1031 int irq;
1032
9fa7bc01 1033 unregister_framebuffer(fbinfo);
0dac6ecd 1034 s3c2410fb_cpufreq_deregister(info);
9fa7bc01 1035
673b4600 1036 s3c2410fb_lcd_enable(info, 0);
42affc2d 1037 usleep_range(1000, 1100);
20fd5767 1038
9fa7bc01 1039 s3c2410fb_unmap_video_memory(fbinfo);
20fd5767 1040
b0831941
KH
1041 if (info->clk) {
1042 clk_disable(info->clk);
1043 clk_put(info->clk);
1044 info->clk = NULL;
20fd5767
AP
1045 }
1046
1047 irq = platform_get_irq(pdev, 0);
b0831941 1048 free_irq(irq, info);
aff39a85 1049
9fa7bc01
KH
1050 iounmap(info->io);
1051
08f31538 1052 release_mem_region(info->mem->start, resource_size(info->mem));
9fa7bc01
KH
1053
1054 platform_set_drvdata(pdev, NULL);
1055 framebuffer_release(fbinfo);
20fd5767
AP
1056
1057 return 0;
1058}
1059
1060#ifdef CONFIG_PM
1061
1062/* suspend and resume support for the lcd controller */
3ae5eaec 1063static int s3c2410fb_suspend(struct platform_device *dev, pm_message_t state)
20fd5767 1064{
3ae5eaec 1065 struct fb_info *fbinfo = platform_get_drvdata(dev);
20fd5767
AP
1066 struct s3c2410fb_info *info = fbinfo->par;
1067
673b4600 1068 s3c2410fb_lcd_enable(info, 0);
20fd5767 1069
9480e307
RK
1070 /* sleep before disabling the clock, we need to ensure
1071 * the LCD DMA engine is not going to get back on the bus
1072 * before the clock goes off again (bjd) */
20fd5767 1073
42affc2d 1074 usleep_range(1000, 1100);
9480e307 1075 clk_disable(info->clk);
20fd5767
AP
1076
1077 return 0;
1078}
1079
3ae5eaec 1080static int s3c2410fb_resume(struct platform_device *dev)
20fd5767 1081{
3ae5eaec 1082 struct fb_info *fbinfo = platform_get_drvdata(dev);
20fd5767
AP
1083 struct s3c2410fb_info *info = fbinfo->par;
1084
9480e307 1085 clk_enable(info->clk);
42affc2d 1086 usleep_range(1000, 1100);
20fd5767 1087
f0466441 1088 s3c2410fb_init_registers(fbinfo);
20fd5767 1089
60f793de
DS
1090 /* re-activate our display after resume */
1091 s3c2410fb_activate_var(fbinfo);
1092 s3c2410fb_blank(FB_BLANK_UNBLANK, fbinfo);
1093
20fd5767
AP
1094 return 0;
1095}
1096
1097#else
1098#define s3c2410fb_suspend NULL
1099#define s3c2410fb_resume NULL
1100#endif
1101
3ae5eaec 1102static struct platform_driver s3c2410fb_driver = {
20fd5767 1103 .probe = s3c2410fb_probe,
48c68c4f 1104 .remove = s3c2410fb_remove,
20fd5767
AP
1105 .suspend = s3c2410fb_suspend,
1106 .resume = s3c2410fb_resume,
3ae5eaec
RK
1107 .driver = {
1108 .name = "s3c2410-lcd",
1109 .owner = THIS_MODULE,
1110 },
20fd5767
AP
1111};
1112
f62e770b
BD
1113static struct platform_driver s3c2412fb_driver = {
1114 .probe = s3c2412fb_probe,
48c68c4f 1115 .remove = s3c2410fb_remove,
f62e770b
BD
1116 .suspend = s3c2410fb_suspend,
1117 .resume = s3c2410fb_resume,
1118 .driver = {
1119 .name = "s3c2412-lcd",
1120 .owner = THIS_MODULE,
1121 },
1122};
1123
9fa7bc01 1124int __init s3c2410fb_init(void)
20fd5767 1125{
f62e770b
BD
1126 int ret = platform_driver_register(&s3c2410fb_driver);
1127
1128 if (ret == 0)
a419aef8 1129 ret = platform_driver_register(&s3c2412fb_driver);
f62e770b
BD
1130
1131 return ret;
20fd5767
AP
1132}
1133
1134static void __exit s3c2410fb_cleanup(void)
1135{
3ae5eaec 1136 platform_driver_unregister(&s3c2410fb_driver);
f62e770b 1137 platform_driver_unregister(&s3c2412fb_driver);
20fd5767
AP
1138}
1139
20fd5767
AP
1140module_init(s3c2410fb_init);
1141module_exit(s3c2410fb_cleanup);
1142
42affc2d
JH
1143MODULE_AUTHOR("Arnaud Patard <arnaud.patard@rtp-net.org>");
1144MODULE_AUTHOR("Ben Dooks <ben-linux@fluff.org>");
20fd5767
AP
1145MODULE_DESCRIPTION("Framebuffer driver for the s3c2410");
1146MODULE_LICENSE("GPL");
ee29420a
BD
1147MODULE_ALIAS("platform:s3c2410-lcd");
1148MODULE_ALIAS("platform:s3c2412-lcd");