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