84cf6319aac23ebd4d79460f315db34e13bc6b52
[firefly-linux-kernel-4.4.55.git] / drivers / video / s3c-fb.c
1 /* linux/drivers/video/s3c-fb.c
2  *
3  * Copyright 2008 Openmoko Inc.
4  * Copyright 2008-2010 Simtec Electronics
5  *      Ben Dooks <ben@simtec.co.uk>
6  *      http://armlinux.simtec.co.uk/
7  *
8  * Samsung SoC Framebuffer driver
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software FoundatIon.
13 */
14
15 #include <linux/kernel.h>
16 #include <linux/module.h>
17 #include <linux/platform_device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/slab.h>
20 #include <linux/init.h>
21 #include <linux/clk.h>
22 #include <linux/fb.h>
23 #include <linux/io.h>
24 #include <linux/uaccess.h>
25 #include <linux/interrupt.h>
26 #include <linux/pm_runtime.h>
27
28 #include <mach/map.h>
29 #include <plat/regs-fb-v4.h>
30 #include <plat/fb.h>
31
32 /* This driver will export a number of framebuffer interfaces depending
33  * on the configuration passed in via the platform data. Each fb instance
34  * maps to a hardware window. Currently there is no support for runtime
35  * setting of the alpha-blending functions that each window has, so only
36  * window 0 is actually useful.
37  *
38  * Window 0 is treated specially, it is used for the basis of the LCD
39  * output timings and as the control for the output power-down state.
40 */
41
42 /* note, the previous use of <mach/regs-fb.h> to get platform specific data
43  * has been replaced by using the platform device name to pick the correct
44  * configuration data for the system.
45 */
46
47 #ifdef CONFIG_FB_S3C_DEBUG_REGWRITE
48 #undef writel
49 #define writel(v, r) do { \
50         printk(KERN_DEBUG "%s: %08x => %p\n", __func__, (unsigned int)v, r); \
51         __raw_writel(v, r); } while (0)
52 #endif /* FB_S3C_DEBUG_REGWRITE */
53
54 /* irq_flags bits */
55 #define S3C_FB_VSYNC_IRQ_EN     0
56
57 #define VSYNC_TIMEOUT_MSEC 50
58
59 struct s3c_fb;
60
61 #define VALID_BPP(x) (1 << ((x) - 1))
62
63 #define OSD_BASE(win, variant) ((variant).osd + ((win) * (variant).osd_stride))
64 #define VIDOSD_A(win, variant) (OSD_BASE(win, variant) + 0x00)
65 #define VIDOSD_B(win, variant) (OSD_BASE(win, variant) + 0x04)
66 #define VIDOSD_C(win, variant) (OSD_BASE(win, variant) + 0x08)
67 #define VIDOSD_D(win, variant) (OSD_BASE(win, variant) + 0x0C)
68
69 /**
70  * struct s3c_fb_variant - fb variant information
71  * @is_2443: Set if S3C2443/S3C2416 style hardware.
72  * @nr_windows: The number of windows.
73  * @vidtcon: The base for the VIDTCONx registers
74  * @wincon: The base for the WINxCON registers.
75  * @winmap: The base for the WINxMAP registers.
76  * @keycon: The abse for the WxKEYCON registers.
77  * @buf_start: Offset of buffer start registers.
78  * @buf_size: Offset of buffer size registers.
79  * @buf_end: Offset of buffer end registers.
80  * @osd: The base for the OSD registers.
81  * @palette: Address of palette memory, or 0 if none.
82  * @has_prtcon: Set if has PRTCON register.
83  * @has_shadowcon: Set if has SHADOWCON register.
84  * @has_clksel: Set if VIDCON0 register has CLKSEL bit.
85  */
86 struct s3c_fb_variant {
87         unsigned int    is_2443:1;
88         unsigned short  nr_windows;
89         unsigned short  vidtcon;
90         unsigned short  wincon;
91         unsigned short  winmap;
92         unsigned short  keycon;
93         unsigned short  buf_start;
94         unsigned short  buf_end;
95         unsigned short  buf_size;
96         unsigned short  osd;
97         unsigned short  osd_stride;
98         unsigned short  palette[S3C_FB_MAX_WIN];
99
100         unsigned int    has_prtcon:1;
101         unsigned int    has_shadowcon:1;
102         unsigned int    has_clksel:1;
103 };
104
105 /**
106  * struct s3c_fb_win_variant
107  * @has_osd_c: Set if has OSD C register.
108  * @has_osd_d: Set if has OSD D register.
109  * @has_osd_alpha: Set if can change alpha transparency for a window.
110  * @palette_sz: Size of palette in entries.
111  * @palette_16bpp: Set if palette is 16bits wide.
112  * @osd_size_off: If != 0, supports setting up OSD for a window; the appropriate
113  *                register is located at the given offset from OSD_BASE.
114  * @valid_bpp: 1 bit per BPP setting to show valid bits-per-pixel.
115  *
116  * valid_bpp bit x is set if (x+1)BPP is supported.
117  */
118 struct s3c_fb_win_variant {
119         unsigned int    has_osd_c:1;
120         unsigned int    has_osd_d:1;
121         unsigned int    has_osd_alpha:1;
122         unsigned int    palette_16bpp:1;
123         unsigned short  osd_size_off;
124         unsigned short  palette_sz;
125         u32             valid_bpp;
126 };
127
128 /**
129  * struct s3c_fb_driverdata - per-device type driver data for init time.
130  * @variant: The variant information for this driver.
131  * @win: The window information for each window.
132  */
133 struct s3c_fb_driverdata {
134         struct s3c_fb_variant   variant;
135         struct s3c_fb_win_variant *win[S3C_FB_MAX_WIN];
136 };
137
138 /**
139  * struct s3c_fb_palette - palette information
140  * @r: Red bitfield.
141  * @g: Green bitfield.
142  * @b: Blue bitfield.
143  * @a: Alpha bitfield.
144  */
145 struct s3c_fb_palette {
146         struct fb_bitfield      r;
147         struct fb_bitfield      g;
148         struct fb_bitfield      b;
149         struct fb_bitfield      a;
150 };
151
152 /**
153  * struct s3c_fb_win - per window private data for each framebuffer.
154  * @windata: The platform data supplied for the window configuration.
155  * @parent: The hardware that this window is part of.
156  * @fbinfo: Pointer pack to the framebuffer info for this window.
157  * @varint: The variant information for this window.
158  * @palette_buffer: Buffer/cache to hold palette entries.
159  * @pseudo_palette: For use in TRUECOLOUR modes for entries 0..15/
160  * @index: The window number of this window.
161  * @palette: The bitfields for changing r/g/b into a hardware palette entry.
162  */
163 struct s3c_fb_win {
164         struct s3c_fb_pd_win    *windata;
165         struct s3c_fb           *parent;
166         struct fb_info          *fbinfo;
167         struct s3c_fb_palette    palette;
168         struct s3c_fb_win_variant variant;
169
170         u32                     *palette_buffer;
171         u32                      pseudo_palette[16];
172         unsigned int             index;
173 };
174
175 /**
176  * struct s3c_fb_vsync - vsync information
177  * @wait:       a queue for processes waiting for vsync
178  * @count:      vsync interrupt count
179  */
180 struct s3c_fb_vsync {
181         wait_queue_head_t       wait;
182         unsigned int            count;
183 };
184
185 /**
186  * struct s3c_fb - overall hardware state of the hardware
187  * @slock: The spinlock protection for this data sturcture.
188  * @dev: The device that we bound to, for printing, etc.
189  * @regs_res: The resource we claimed for the IO registers.
190  * @bus_clk: The clk (hclk) feeding our interface and possibly pixclk.
191  * @lcd_clk: The clk (sclk) feeding pixclk.
192  * @regs: The mapped hardware registers.
193  * @variant: Variant information for this hardware.
194  * @enabled: A bitmask of enabled hardware windows.
195  * @output_on: Flag if the physical output is enabled.
196  * @pdata: The platform configuration data passed with the device.
197  * @windows: The hardware windows that have been claimed.
198  * @irq_no: IRQ line number
199  * @irq_flags: irq flags
200  * @vsync_info: VSYNC-related information (count, queues...)
201  */
202 struct s3c_fb {
203         spinlock_t              slock;
204         struct device           *dev;
205         struct resource         *regs_res;
206         struct clk              *bus_clk;
207         struct clk              *lcd_clk;
208         void __iomem            *regs;
209         struct s3c_fb_variant    variant;
210
211         unsigned char            enabled;
212         bool                     output_on;
213
214         struct s3c_fb_platdata  *pdata;
215         struct s3c_fb_win       *windows[S3C_FB_MAX_WIN];
216
217         int                      irq_no;
218         unsigned long            irq_flags;
219         struct s3c_fb_vsync      vsync_info;
220 };
221
222 /**
223  * s3c_fb_validate_win_bpp - validate the bits-per-pixel for this mode.
224  * @win: The device window.
225  * @bpp: The bit depth.
226  */
227 static bool s3c_fb_validate_win_bpp(struct s3c_fb_win *win, unsigned int bpp)
228 {
229         return win->variant.valid_bpp & VALID_BPP(bpp);
230 }
231
232 /**
233  * s3c_fb_check_var() - framebuffer layer request to verify a given mode.
234  * @var: The screen information to verify.
235  * @info: The framebuffer device.
236  *
237  * Framebuffer layer call to verify the given information and allow us to
238  * update various information depending on the hardware capabilities.
239  */
240 static int s3c_fb_check_var(struct fb_var_screeninfo *var,
241                             struct fb_info *info)
242 {
243         struct s3c_fb_win *win = info->par;
244         struct s3c_fb *sfb = win->parent;
245
246         dev_dbg(sfb->dev, "checking parameters\n");
247
248         var->xres_virtual = max(var->xres_virtual, var->xres);
249         var->yres_virtual = max(var->yres_virtual, var->yres);
250
251         if (!s3c_fb_validate_win_bpp(win, var->bits_per_pixel)) {
252                 dev_dbg(sfb->dev, "win %d: unsupported bpp %d\n",
253                         win->index, var->bits_per_pixel);
254                 return -EINVAL;
255         }
256
257         /* always ensure these are zero, for drop through cases below */
258         var->transp.offset = 0;
259         var->transp.length = 0;
260
261         switch (var->bits_per_pixel) {
262         case 1:
263         case 2:
264         case 4:
265         case 8:
266                 if (sfb->variant.palette[win->index] != 0) {
267                         /* non palletised, A:1,R:2,G:3,B:2 mode */
268                         var->red.offset         = 4;
269                         var->green.offset       = 2;
270                         var->blue.offset        = 0;
271                         var->red.length         = 5;
272                         var->green.length       = 3;
273                         var->blue.length        = 2;
274                         var->transp.offset      = 7;
275                         var->transp.length      = 1;
276                 } else {
277                         var->red.offset = 0;
278                         var->red.length = var->bits_per_pixel;
279                         var->green      = var->red;
280                         var->blue       = var->red;
281                 }
282                 break;
283
284         case 19:
285                 /* 666 with one bit alpha/transparency */
286                 var->transp.offset      = 18;
287                 var->transp.length      = 1;
288         case 18:
289                 var->bits_per_pixel     = 32;
290
291                 /* 666 format */
292                 var->red.offset         = 12;
293                 var->green.offset       = 6;
294                 var->blue.offset        = 0;
295                 var->red.length         = 6;
296                 var->green.length       = 6;
297                 var->blue.length        = 6;
298                 break;
299
300         case 16:
301                 /* 16 bpp, 565 format */
302                 var->red.offset         = 11;
303                 var->green.offset       = 5;
304                 var->blue.offset        = 0;
305                 var->red.length         = 5;
306                 var->green.length       = 6;
307                 var->blue.length        = 5;
308                 break;
309
310         case 32:
311         case 28:
312         case 25:
313                 var->transp.length      = var->bits_per_pixel - 24;
314                 var->transp.offset      = 24;
315                 /* drop through */
316         case 24:
317                 /* our 24bpp is unpacked, so 32bpp */
318                 var->bits_per_pixel     = 32;
319                 var->red.offset         = 16;
320                 var->red.length         = 8;
321                 var->green.offset       = 8;
322                 var->green.length       = 8;
323                 var->blue.offset        = 0;
324                 var->blue.length        = 8;
325                 break;
326
327         default:
328                 dev_err(sfb->dev, "invalid bpp\n");
329         }
330
331         dev_dbg(sfb->dev, "%s: verified parameters\n", __func__);
332         return 0;
333 }
334
335 /**
336  * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock.
337  * @sfb: The hardware state.
338  * @pixclock: The pixel clock wanted, in picoseconds.
339  *
340  * Given the specified pixel clock, work out the necessary divider to get
341  * close to the output frequency.
342  */
343 static int s3c_fb_calc_pixclk(struct s3c_fb *sfb, unsigned int pixclk)
344 {
345         unsigned long clk;
346         unsigned long long tmp;
347         unsigned int result;
348
349         if (sfb->variant.has_clksel)
350                 clk = clk_get_rate(sfb->bus_clk);
351         else
352                 clk = clk_get_rate(sfb->lcd_clk);
353
354         tmp = (unsigned long long)clk;
355         tmp *= pixclk;
356
357         do_div(tmp, 1000000000UL);
358         result = (unsigned int)tmp / 1000;
359
360         dev_dbg(sfb->dev, "pixclk=%u, clk=%lu, div=%d (%lu)\n",
361                 pixclk, clk, result, clk / result);
362
363         return result;
364 }
365
366 /**
367  * s3c_fb_align_word() - align pixel count to word boundary
368  * @bpp: The number of bits per pixel
369  * @pix: The value to be aligned.
370  *
371  * Align the given pixel count so that it will start on an 32bit word
372  * boundary.
373  */
374 static int s3c_fb_align_word(unsigned int bpp, unsigned int pix)
375 {
376         int pix_per_word;
377
378         if (bpp > 16)
379                 return pix;
380
381         pix_per_word = (8 * 32) / bpp;
382         return ALIGN(pix, pix_per_word);
383 }
384
385 /**
386  * vidosd_set_size() - set OSD size for a window
387  *
388  * @win: the window to set OSD size for
389  * @size: OSD size register value
390  */
391 static void vidosd_set_size(struct s3c_fb_win *win, u32 size)
392 {
393         struct s3c_fb *sfb = win->parent;
394
395         /* OSD can be set up if osd_size_off != 0 for this window */
396         if (win->variant.osd_size_off)
397                 writel(size, sfb->regs + OSD_BASE(win->index, sfb->variant)
398                                 + win->variant.osd_size_off);
399 }
400
401 /**
402  * vidosd_set_alpha() - set alpha transparency for a window
403  *
404  * @win: the window to set OSD size for
405  * @alpha: alpha register value
406  */
407 static void vidosd_set_alpha(struct s3c_fb_win *win, u32 alpha)
408 {
409         struct s3c_fb *sfb = win->parent;
410
411         if (win->variant.has_osd_alpha)
412                 writel(alpha, sfb->regs + VIDOSD_C(win->index, sfb->variant));
413 }
414
415 /**
416  * shadow_protect_win() - disable updating values from shadow registers at vsync
417  *
418  * @win: window to protect registers for
419  * @protect: 1 to protect (disable updates)
420  */
421 static void shadow_protect_win(struct s3c_fb_win *win, bool protect)
422 {
423         struct s3c_fb *sfb = win->parent;
424         u32 reg;
425
426         if (protect) {
427                 if (sfb->variant.has_prtcon) {
428                         writel(PRTCON_PROTECT, sfb->regs + PRTCON);
429                 } else if (sfb->variant.has_shadowcon) {
430                         reg = readl(sfb->regs + SHADOWCON);
431                         writel(reg | SHADOWCON_WINx_PROTECT(win->index),
432                                 sfb->regs + SHADOWCON);
433                 }
434         } else {
435                 if (sfb->variant.has_prtcon) {
436                         writel(0, sfb->regs + PRTCON);
437                 } else if (sfb->variant.has_shadowcon) {
438                         reg = readl(sfb->regs + SHADOWCON);
439                         writel(reg & ~SHADOWCON_WINx_PROTECT(win->index),
440                                 sfb->regs + SHADOWCON);
441                 }
442         }
443 }
444
445 /**
446  * s3c_fb_enable() - Set the state of the main LCD output
447  * @sfb: The main framebuffer state.
448  * @enable: The state to set.
449  */
450 static void s3c_fb_enable(struct s3c_fb *sfb, int enable)
451 {
452         u32 vidcon0 = readl(sfb->regs + VIDCON0);
453
454         if (enable && !sfb->output_on)
455                 pm_runtime_get_sync(sfb->dev);
456
457         if (enable) {
458                 vidcon0 |= VIDCON0_ENVID | VIDCON0_ENVID_F;
459         } else {
460                 /* see the note in the framebuffer datasheet about
461                  * why you cannot take both of these bits down at the
462                  * same time. */
463
464                 if (vidcon0 & VIDCON0_ENVID) {
465                         vidcon0 |= VIDCON0_ENVID;
466                         vidcon0 &= ~VIDCON0_ENVID_F;
467                 }
468         }
469
470         writel(vidcon0, sfb->regs + VIDCON0);
471
472         if (!enable && sfb->output_on)
473                 pm_runtime_put_sync(sfb->dev);
474
475         sfb->output_on = enable;
476 }
477
478 /**
479  * s3c_fb_set_par() - framebuffer request to set new framebuffer state.
480  * @info: The framebuffer to change.
481  *
482  * Framebuffer layer request to set a new mode for the specified framebuffer
483  */
484 static int s3c_fb_set_par(struct fb_info *info)
485 {
486         struct fb_var_screeninfo *var = &info->var;
487         struct s3c_fb_win *win = info->par;
488         struct s3c_fb *sfb = win->parent;
489         void __iomem *regs = sfb->regs;
490         void __iomem *buf = regs;
491         int win_no = win->index;
492         u32 alpha = 0;
493         u32 data;
494         u32 pagewidth;
495         int clkdiv;
496
497         dev_dbg(sfb->dev, "setting framebuffer parameters\n");
498
499         pm_runtime_get_sync(sfb->dev);
500
501         shadow_protect_win(win, 1);
502
503         switch (var->bits_per_pixel) {
504         case 32:
505         case 24:
506         case 16:
507         case 12:
508                 info->fix.visual = FB_VISUAL_TRUECOLOR;
509                 break;
510         case 8:
511                 if (win->variant.palette_sz >= 256)
512                         info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
513                 else
514                         info->fix.visual = FB_VISUAL_TRUECOLOR;
515                 break;
516         case 1:
517                 info->fix.visual = FB_VISUAL_MONO01;
518                 break;
519         default:
520                 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
521                 break;
522         }
523
524         info->fix.line_length = (var->xres_virtual * var->bits_per_pixel) / 8;
525
526         info->fix.xpanstep = info->var.xres_virtual > info->var.xres ? 1 : 0;
527         info->fix.ypanstep = info->var.yres_virtual > info->var.yres ? 1 : 0;
528
529         /* disable the window whilst we update it */
530         writel(0, regs + WINCON(win_no));
531
532         /* use platform specified window as the basis for the lcd timings */
533
534         if (win_no == sfb->pdata->default_win) {
535                 clkdiv = s3c_fb_calc_pixclk(sfb, var->pixclock);
536
537                 data = sfb->pdata->vidcon0;
538                 data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR);
539
540                 if (clkdiv > 1)
541                         data |= VIDCON0_CLKVAL_F(clkdiv-1) | VIDCON0_CLKDIR;
542                 else
543                         data &= ~VIDCON0_CLKDIR;        /* 1:1 clock */
544
545                 /* write the timing data to the panel */
546
547                 if (sfb->variant.is_2443)
548                         data |= (1 << 5);
549
550                 writel(data, regs + VIDCON0);
551
552                 s3c_fb_enable(sfb, 1);
553
554                 data = VIDTCON0_VBPD(var->upper_margin - 1) |
555                        VIDTCON0_VFPD(var->lower_margin - 1) |
556                        VIDTCON0_VSPW(var->vsync_len - 1);
557
558                 writel(data, regs + sfb->variant.vidtcon);
559
560                 data = VIDTCON1_HBPD(var->left_margin - 1) |
561                        VIDTCON1_HFPD(var->right_margin - 1) |
562                        VIDTCON1_HSPW(var->hsync_len - 1);
563
564                 /* VIDTCON1 */
565                 writel(data, regs + sfb->variant.vidtcon + 4);
566
567                 data = VIDTCON2_LINEVAL(var->yres - 1) |
568                        VIDTCON2_HOZVAL(var->xres - 1);
569                 writel(data, regs + sfb->variant.vidtcon + 8);
570         }
571
572         /* write the buffer address */
573
574         /* start and end registers stride is 8 */
575         buf = regs + win_no * 8;
576
577         writel(info->fix.smem_start, buf + sfb->variant.buf_start);
578
579         data = info->fix.smem_start + info->fix.line_length * var->yres;
580         writel(data, buf + sfb->variant.buf_end);
581
582         pagewidth = (var->xres * var->bits_per_pixel) >> 3;
583         data = VIDW_BUF_SIZE_OFFSET(info->fix.line_length - pagewidth) |
584                VIDW_BUF_SIZE_PAGEWIDTH(pagewidth);
585         writel(data, regs + sfb->variant.buf_size + (win_no * 4));
586
587         /* write 'OSD' registers to control position of framebuffer */
588
589         data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0);
590         writel(data, regs + VIDOSD_A(win_no, sfb->variant));
591
592         data = VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var->bits_per_pixel,
593                                                      var->xres - 1)) |
594                VIDOSDxB_BOTRIGHT_Y(var->yres - 1);
595
596         writel(data, regs + VIDOSD_B(win_no, sfb->variant));
597
598         data = var->xres * var->yres;
599
600         alpha = VIDISD14C_ALPHA1_R(0xf) |
601                 VIDISD14C_ALPHA1_G(0xf) |
602                 VIDISD14C_ALPHA1_B(0xf);
603
604         vidosd_set_alpha(win, alpha);
605         vidosd_set_size(win, data);
606
607         /* Enable DMA channel for this window */
608         if (sfb->variant.has_shadowcon) {
609                 data = readl(sfb->regs + SHADOWCON);
610                 data |= SHADOWCON_CHx_ENABLE(win_no);
611                 writel(data, sfb->regs + SHADOWCON);
612         }
613
614         data = WINCONx_ENWIN;
615         sfb->enabled |= (1 << win->index);
616
617         /* note, since we have to round up the bits-per-pixel, we end up
618          * relying on the bitfield information for r/g/b/a to work out
619          * exactly which mode of operation is intended. */
620
621         switch (var->bits_per_pixel) {
622         case 1:
623                 data |= WINCON0_BPPMODE_1BPP;
624                 data |= WINCONx_BITSWP;
625                 data |= WINCONx_BURSTLEN_4WORD;
626                 break;
627         case 2:
628                 data |= WINCON0_BPPMODE_2BPP;
629                 data |= WINCONx_BITSWP;
630                 data |= WINCONx_BURSTLEN_8WORD;
631                 break;
632         case 4:
633                 data |= WINCON0_BPPMODE_4BPP;
634                 data |= WINCONx_BITSWP;
635                 data |= WINCONx_BURSTLEN_8WORD;
636                 break;
637         case 8:
638                 if (var->transp.length != 0)
639                         data |= WINCON1_BPPMODE_8BPP_1232;
640                 else
641                         data |= WINCON0_BPPMODE_8BPP_PALETTE;
642                 data |= WINCONx_BURSTLEN_8WORD;
643                 data |= WINCONx_BYTSWP;
644                 break;
645         case 16:
646                 if (var->transp.length != 0)
647                         data |= WINCON1_BPPMODE_16BPP_A1555;
648                 else
649                         data |= WINCON0_BPPMODE_16BPP_565;
650                 data |= WINCONx_HAWSWP;
651                 data |= WINCONx_BURSTLEN_16WORD;
652                 break;
653         case 24:
654         case 32:
655                 if (var->red.length == 6) {
656                         if (var->transp.length != 0)
657                                 data |= WINCON1_BPPMODE_19BPP_A1666;
658                         else
659                                 data |= WINCON1_BPPMODE_18BPP_666;
660                 } else if (var->transp.length == 1)
661                         data |= WINCON1_BPPMODE_25BPP_A1888
662                                 | WINCON1_BLD_PIX;
663                 else if ((var->transp.length == 4) ||
664                         (var->transp.length == 8))
665                         data |= WINCON1_BPPMODE_28BPP_A4888
666                                 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
667                 else
668                         data |= WINCON0_BPPMODE_24BPP_888;
669
670                 data |= WINCONx_WSWP;
671                 data |= WINCONx_BURSTLEN_16WORD;
672                 break;
673         }
674
675         /* Enable the colour keying for the window below this one */
676         if (win_no > 0) {
677                 u32 keycon0_data = 0, keycon1_data = 0;
678                 void __iomem *keycon = regs + sfb->variant.keycon;
679
680                 keycon0_data = ~(WxKEYCON0_KEYBL_EN |
681                                 WxKEYCON0_KEYEN_F |
682                                 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
683
684                 keycon1_data = WxKEYCON1_COLVAL(0xffffff);
685
686                 keycon += (win_no - 1) * 8;
687
688                 writel(keycon0_data, keycon + WKEYCON0);
689                 writel(keycon1_data, keycon + WKEYCON1);
690         }
691
692         writel(data, regs + sfb->variant.wincon + (win_no * 4));
693         writel(0x0, regs + sfb->variant.winmap + (win_no * 4));
694
695         shadow_protect_win(win, 0);
696
697         pm_runtime_put_sync(sfb->dev);
698
699         return 0;
700 }
701
702 /**
703  * s3c_fb_update_palette() - set or schedule a palette update.
704  * @sfb: The hardware information.
705  * @win: The window being updated.
706  * @reg: The palette index being changed.
707  * @value: The computed palette value.
708  *
709  * Change the value of a palette register, either by directly writing to
710  * the palette (this requires the palette RAM to be disconnected from the
711  * hardware whilst this is in progress) or schedule the update for later.
712  *
713  * At the moment, since we have no VSYNC interrupt support, we simply set
714  * the palette entry directly.
715  */
716 static void s3c_fb_update_palette(struct s3c_fb *sfb,
717                                   struct s3c_fb_win *win,
718                                   unsigned int reg,
719                                   u32 value)
720 {
721         void __iomem *palreg;
722         u32 palcon;
723
724         palreg = sfb->regs + sfb->variant.palette[win->index];
725
726         dev_dbg(sfb->dev, "%s: win %d, reg %d (%p): %08x\n",
727                 __func__, win->index, reg, palreg, value);
728
729         win->palette_buffer[reg] = value;
730
731         palcon = readl(sfb->regs + WPALCON);
732         writel(palcon | WPALCON_PAL_UPDATE, sfb->regs + WPALCON);
733
734         if (win->variant.palette_16bpp)
735                 writew(value, palreg + (reg * 2));
736         else
737                 writel(value, palreg + (reg * 4));
738
739         writel(palcon, sfb->regs + WPALCON);
740 }
741
742 static inline unsigned int chan_to_field(unsigned int chan,
743                                          struct fb_bitfield *bf)
744 {
745         chan &= 0xffff;
746         chan >>= 16 - bf->length;
747         return chan << bf->offset;
748 }
749
750 /**
751  * s3c_fb_setcolreg() - framebuffer layer request to change palette.
752  * @regno: The palette index to change.
753  * @red: The red field for the palette data.
754  * @green: The green field for the palette data.
755  * @blue: The blue field for the palette data.
756  * @trans: The transparency (alpha) field for the palette data.
757  * @info: The framebuffer being changed.
758  */
759 static int s3c_fb_setcolreg(unsigned regno,
760                             unsigned red, unsigned green, unsigned blue,
761                             unsigned transp, struct fb_info *info)
762 {
763         struct s3c_fb_win *win = info->par;
764         struct s3c_fb *sfb = win->parent;
765         unsigned int val;
766
767         dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
768                 __func__, win->index, regno, red, green, blue);
769
770         pm_runtime_get_sync(sfb->dev);
771
772         switch (info->fix.visual) {
773         case FB_VISUAL_TRUECOLOR:
774                 /* true-colour, use pseudo-palette */
775
776                 if (regno < 16) {
777                         u32 *pal = info->pseudo_palette;
778
779                         val  = chan_to_field(red,   &info->var.red);
780                         val |= chan_to_field(green, &info->var.green);
781                         val |= chan_to_field(blue,  &info->var.blue);
782
783                         pal[regno] = val;
784                 }
785                 break;
786
787         case FB_VISUAL_PSEUDOCOLOR:
788                 if (regno < win->variant.palette_sz) {
789                         val  = chan_to_field(red, &win->palette.r);
790                         val |= chan_to_field(green, &win->palette.g);
791                         val |= chan_to_field(blue, &win->palette.b);
792
793                         s3c_fb_update_palette(sfb, win, regno, val);
794                 }
795
796                 break;
797
798         default:
799                 pm_runtime_put_sync(sfb->dev);
800                 return 1;       /* unknown type */
801         }
802
803         pm_runtime_put_sync(sfb->dev);
804         return 0;
805 }
806
807 /**
808  * s3c_fb_blank() - blank or unblank the given window
809  * @blank_mode: The blank state from FB_BLANK_*
810  * @info: The framebuffer to blank.
811  *
812  * Framebuffer layer request to change the power state.
813  */
814 static int s3c_fb_blank(int blank_mode, struct fb_info *info)
815 {
816         struct s3c_fb_win *win = info->par;
817         struct s3c_fb *sfb = win->parent;
818         unsigned int index = win->index;
819         u32 wincon;
820
821         dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
822
823         pm_runtime_get_sync(sfb->dev);
824
825         wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
826
827         switch (blank_mode) {
828         case FB_BLANK_POWERDOWN:
829                 wincon &= ~WINCONx_ENWIN;
830                 sfb->enabled &= ~(1 << index);
831                 /* fall through to FB_BLANK_NORMAL */
832
833         case FB_BLANK_NORMAL:
834                 /* disable the DMA and display 0x0 (black) */
835                 shadow_protect_win(win, 1);
836                 writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
837                        sfb->regs + sfb->variant.winmap + (index * 4));
838                 shadow_protect_win(win, 0);
839                 break;
840
841         case FB_BLANK_UNBLANK:
842                 shadow_protect_win(win, 1);
843                 writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
844                 shadow_protect_win(win, 0);
845                 wincon |= WINCONx_ENWIN;
846                 sfb->enabled |= (1 << index);
847                 break;
848
849         case FB_BLANK_VSYNC_SUSPEND:
850         case FB_BLANK_HSYNC_SUSPEND:
851         default:
852                 pm_runtime_put_sync(sfb->dev);
853                 return 1;
854         }
855
856         shadow_protect_win(win, 1);
857         writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
858         shadow_protect_win(win, 0);
859
860         /* Check the enabled state to see if we need to be running the
861          * main LCD interface, as if there are no active windows then
862          * it is highly likely that we also do not need to output
863          * anything.
864          */
865
866         /* We could do something like the following code, but the current
867          * system of using framebuffer events means that we cannot make
868          * the distinction between just window 0 being inactive and all
869          * the windows being down.
870          *
871          * s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
872         */
873
874         /* we're stuck with this until we can do something about overriding
875          * the power control using the blanking event for a single fb.
876          */
877         if (index == sfb->pdata->default_win) {
878                 shadow_protect_win(win, 1);
879                 s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
880                 shadow_protect_win(win, 0);
881         }
882
883         pm_runtime_put_sync(sfb->dev);
884
885         return 0;
886 }
887
888 /**
889  * s3c_fb_pan_display() - Pan the display.
890  *
891  * Note that the offsets can be written to the device at any time, as their
892  * values are latched at each vsync automatically. This also means that only
893  * the last call to this function will have any effect on next vsync, but
894  * there is no need to sleep waiting for it to prevent tearing.
895  *
896  * @var: The screen information to verify.
897  * @info: The framebuffer device.
898  */
899 static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
900                               struct fb_info *info)
901 {
902         struct s3c_fb_win *win  = info->par;
903         struct s3c_fb *sfb      = win->parent;
904         void __iomem *buf       = sfb->regs + win->index * 8;
905         unsigned int start_boff, end_boff;
906
907         pm_runtime_get_sync(sfb->dev);
908
909         /* Offset in bytes to the start of the displayed area */
910         start_boff = var->yoffset * info->fix.line_length;
911         /* X offset depends on the current bpp */
912         if (info->var.bits_per_pixel >= 8) {
913                 start_boff += var->xoffset * (info->var.bits_per_pixel >> 3);
914         } else {
915                 switch (info->var.bits_per_pixel) {
916                 case 4:
917                         start_boff += var->xoffset >> 1;
918                         break;
919                 case 2:
920                         start_boff += var->xoffset >> 2;
921                         break;
922                 case 1:
923                         start_boff += var->xoffset >> 3;
924                         break;
925                 default:
926                         dev_err(sfb->dev, "invalid bpp\n");
927                         pm_runtime_put_sync(sfb->dev);
928                         return -EINVAL;
929                 }
930         }
931         /* Offset in bytes to the end of the displayed area */
932         end_boff = start_boff + info->var.yres * info->fix.line_length;
933
934         /* Temporarily turn off per-vsync update from shadow registers until
935          * both start and end addresses are updated to prevent corruption */
936         shadow_protect_win(win, 1);
937
938         writel(info->fix.smem_start + start_boff, buf + sfb->variant.buf_start);
939         writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
940
941         shadow_protect_win(win, 0);
942
943         pm_runtime_put_sync(sfb->dev);
944         return 0;
945 }
946
947 /**
948  * s3c_fb_enable_irq() - enable framebuffer interrupts
949  * @sfb: main hardware state
950  */
951 static void s3c_fb_enable_irq(struct s3c_fb *sfb)
952 {
953         void __iomem *regs = sfb->regs;
954         u32 irq_ctrl_reg;
955
956         if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
957                 /* IRQ disabled, enable it */
958                 irq_ctrl_reg = readl(regs + VIDINTCON0);
959
960                 irq_ctrl_reg |= VIDINTCON0_INT_ENABLE;
961                 irq_ctrl_reg |= VIDINTCON0_INT_FRAME;
962
963                 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL0_MASK;
964                 irq_ctrl_reg |= VIDINTCON0_FRAMESEL0_VSYNC;
965                 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL1_MASK;
966                 irq_ctrl_reg |= VIDINTCON0_FRAMESEL1_NONE;
967
968                 writel(irq_ctrl_reg, regs + VIDINTCON0);
969         }
970 }
971
972 /**
973  * s3c_fb_disable_irq() - disable framebuffer interrupts
974  * @sfb: main hardware state
975  */
976 static void s3c_fb_disable_irq(struct s3c_fb *sfb)
977 {
978         void __iomem *regs = sfb->regs;
979         u32 irq_ctrl_reg;
980
981         if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
982                 /* IRQ enabled, disable it */
983                 irq_ctrl_reg = readl(regs + VIDINTCON0);
984
985                 irq_ctrl_reg &= ~VIDINTCON0_INT_FRAME;
986                 irq_ctrl_reg &= ~VIDINTCON0_INT_ENABLE;
987
988                 writel(irq_ctrl_reg, regs + VIDINTCON0);
989         }
990 }
991
992 static irqreturn_t s3c_fb_irq(int irq, void *dev_id)
993 {
994         struct s3c_fb *sfb = dev_id;
995         void __iomem  *regs = sfb->regs;
996         u32 irq_sts_reg;
997
998         spin_lock(&sfb->slock);
999
1000         irq_sts_reg = readl(regs + VIDINTCON1);
1001
1002         if (irq_sts_reg & VIDINTCON1_INT_FRAME) {
1003
1004                 /* VSYNC interrupt, accept it */
1005                 writel(VIDINTCON1_INT_FRAME, regs + VIDINTCON1);
1006
1007                 sfb->vsync_info.count++;
1008                 wake_up_interruptible(&sfb->vsync_info.wait);
1009         }
1010
1011         /* We only support waiting for VSYNC for now, so it's safe
1012          * to always disable irqs here.
1013          */
1014         s3c_fb_disable_irq(sfb);
1015
1016         spin_unlock(&sfb->slock);
1017         return IRQ_HANDLED;
1018 }
1019
1020 /**
1021  * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
1022  * @sfb: main hardware state
1023  * @crtc: head index.
1024  */
1025 static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
1026 {
1027         unsigned long count;
1028         int ret;
1029
1030         if (crtc != 0)
1031                 return -ENODEV;
1032
1033         pm_runtime_get_sync(sfb->dev);
1034
1035         count = sfb->vsync_info.count;
1036         s3c_fb_enable_irq(sfb);
1037         ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
1038                                        count != sfb->vsync_info.count,
1039                                        msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
1040
1041         pm_runtime_put_sync(sfb->dev);
1042
1043         if (ret == 0)
1044                 return -ETIMEDOUT;
1045
1046         return 0;
1047 }
1048
1049 static int s3c_fb_ioctl(struct fb_info *info, unsigned int cmd,
1050                         unsigned long arg)
1051 {
1052         struct s3c_fb_win *win = info->par;
1053         struct s3c_fb *sfb = win->parent;
1054         int ret;
1055         u32 crtc;
1056
1057         switch (cmd) {
1058         case FBIO_WAITFORVSYNC:
1059                 if (get_user(crtc, (u32 __user *)arg)) {
1060                         ret = -EFAULT;
1061                         break;
1062                 }
1063
1064                 ret = s3c_fb_wait_for_vsync(sfb, crtc);
1065                 break;
1066         default:
1067                 ret = -ENOTTY;
1068         }
1069
1070         return ret;
1071 }
1072
1073 static int s3c_fb_open(struct fb_info *info, int user)
1074 {
1075         struct s3c_fb_win *win = info->par;
1076         struct s3c_fb *sfb = win->parent;
1077
1078         pm_runtime_get_sync(sfb->dev);
1079
1080         return 0;
1081 }
1082
1083 static int s3c_fb_release(struct fb_info *info, int user)
1084 {
1085         struct s3c_fb_win *win = info->par;
1086         struct s3c_fb *sfb = win->parent;
1087
1088         pm_runtime_put_sync(sfb->dev);
1089
1090         return 0;
1091 }
1092
1093 static struct fb_ops s3c_fb_ops = {
1094         .owner          = THIS_MODULE,
1095         .fb_open        = s3c_fb_open,
1096         .fb_release     = s3c_fb_release,
1097         .fb_check_var   = s3c_fb_check_var,
1098         .fb_set_par     = s3c_fb_set_par,
1099         .fb_blank       = s3c_fb_blank,
1100         .fb_setcolreg   = s3c_fb_setcolreg,
1101         .fb_fillrect    = cfb_fillrect,
1102         .fb_copyarea    = cfb_copyarea,
1103         .fb_imageblit   = cfb_imageblit,
1104         .fb_pan_display = s3c_fb_pan_display,
1105         .fb_ioctl       = s3c_fb_ioctl,
1106 };
1107
1108 /**
1109  * s3c_fb_missing_pixclock() - calculates pixel clock
1110  * @mode: The video mode to change.
1111  *
1112  * Calculate the pixel clock when none has been given through platform data.
1113  */
1114 static void __devinit s3c_fb_missing_pixclock(struct fb_videomode *mode)
1115 {
1116         u64 pixclk = 1000000000000ULL;
1117         u32 div;
1118
1119         div  = mode->left_margin + mode->hsync_len + mode->right_margin +
1120                mode->xres;
1121         div *= mode->upper_margin + mode->vsync_len + mode->lower_margin +
1122                mode->yres;
1123         div *= mode->refresh ? : 60;
1124
1125         do_div(pixclk, div);
1126
1127         mode->pixclock = pixclk;
1128 }
1129
1130 /**
1131  * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1132  * @sfb: The base resources for the hardware.
1133  * @win: The window to initialise memory for.
1134  *
1135  * Allocate memory for the given framebuffer.
1136  */
1137 static int __devinit s3c_fb_alloc_memory(struct s3c_fb *sfb,
1138                                          struct s3c_fb_win *win)
1139 {
1140         struct s3c_fb_pd_win *windata = win->windata;
1141         unsigned int real_size, virt_size, size;
1142         struct fb_info *fbi = win->fbinfo;
1143         dma_addr_t map_dma;
1144
1145         dev_dbg(sfb->dev, "allocating memory for display\n");
1146
1147         real_size = windata->win_mode.xres * windata->win_mode.yres;
1148         virt_size = windata->virtual_x * windata->virtual_y;
1149
1150         dev_dbg(sfb->dev, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
1151                 real_size, windata->win_mode.xres, windata->win_mode.yres,
1152                 virt_size, windata->virtual_x, windata->virtual_y);
1153
1154         size = (real_size > virt_size) ? real_size : virt_size;
1155         size *= (windata->max_bpp > 16) ? 32 : windata->max_bpp;
1156         size /= 8;
1157
1158         fbi->fix.smem_len = size;
1159         size = PAGE_ALIGN(size);
1160
1161         dev_dbg(sfb->dev, "want %u bytes for window\n", size);
1162
1163         fbi->screen_base = dma_alloc_writecombine(sfb->dev, size,
1164                                                   &map_dma, GFP_KERNEL);
1165         if (!fbi->screen_base)
1166                 return -ENOMEM;
1167
1168         dev_dbg(sfb->dev, "mapped %x to %p\n",
1169                 (unsigned int)map_dma, fbi->screen_base);
1170
1171         memset(fbi->screen_base, 0x0, size);
1172         fbi->fix.smem_start = map_dma;
1173
1174         return 0;
1175 }
1176
1177 /**
1178  * s3c_fb_free_memory() - free the display memory for the given window
1179  * @sfb: The base resources for the hardware.
1180  * @win: The window to free the display memory for.
1181  *
1182  * Free the display memory allocated by s3c_fb_alloc_memory().
1183  */
1184 static void s3c_fb_free_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
1185 {
1186         struct fb_info *fbi = win->fbinfo;
1187
1188         if (fbi->screen_base)
1189                 dma_free_writecombine(sfb->dev, PAGE_ALIGN(fbi->fix.smem_len),
1190                               fbi->screen_base, fbi->fix.smem_start);
1191 }
1192
1193 /**
1194  * s3c_fb_release_win() - release resources for a framebuffer window.
1195  * @win: The window to cleanup the resources for.
1196  *
1197  * Release the resources that where claimed for the hardware window,
1198  * such as the framebuffer instance and any memory claimed for it.
1199  */
1200 static void s3c_fb_release_win(struct s3c_fb *sfb, struct s3c_fb_win *win)
1201 {
1202         u32 data;
1203
1204         if (win->fbinfo) {
1205                 if (sfb->variant.has_shadowcon) {
1206                         data = readl(sfb->regs + SHADOWCON);
1207                         data &= ~SHADOWCON_CHx_ENABLE(win->index);
1208                         data &= ~SHADOWCON_CHx_LOCAL_ENABLE(win->index);
1209                         writel(data, sfb->regs + SHADOWCON);
1210                 }
1211                 unregister_framebuffer(win->fbinfo);
1212                 if (win->fbinfo->cmap.len)
1213                         fb_dealloc_cmap(&win->fbinfo->cmap);
1214                 s3c_fb_free_memory(sfb, win);
1215                 framebuffer_release(win->fbinfo);
1216         }
1217 }
1218
1219 /**
1220  * s3c_fb_probe_win() - register an hardware window
1221  * @sfb: The base resources for the hardware
1222  * @variant: The variant information for this window.
1223  * @res: Pointer to where to place the resultant window.
1224  *
1225  * Allocate and do the basic initialisation for one of the hardware's graphics
1226  * windows.
1227  */
1228 static int __devinit s3c_fb_probe_win(struct s3c_fb *sfb, unsigned int win_no,
1229                                       struct s3c_fb_win_variant *variant,
1230                                       struct s3c_fb_win **res)
1231 {
1232         struct fb_var_screeninfo *var;
1233         struct fb_videomode *initmode;
1234         struct s3c_fb_pd_win *windata;
1235         struct s3c_fb_win *win;
1236         struct fb_info *fbinfo;
1237         int palette_size;
1238         int ret;
1239
1240         dev_dbg(sfb->dev, "probing window %d, variant %p\n", win_no, variant);
1241
1242         init_waitqueue_head(&sfb->vsync_info.wait);
1243
1244         palette_size = variant->palette_sz * 4;
1245
1246         fbinfo = framebuffer_alloc(sizeof(struct s3c_fb_win) +
1247                                    palette_size * sizeof(u32), sfb->dev);
1248         if (!fbinfo) {
1249                 dev_err(sfb->dev, "failed to allocate framebuffer\n");
1250                 return -ENOENT;
1251         }
1252
1253         windata = sfb->pdata->win[win_no];
1254         initmode = &windata->win_mode;
1255
1256         WARN_ON(windata->max_bpp == 0);
1257         WARN_ON(windata->win_mode.xres == 0);
1258         WARN_ON(windata->win_mode.yres == 0);
1259
1260         win = fbinfo->par;
1261         *res = win;
1262         var = &fbinfo->var;
1263         win->variant = *variant;
1264         win->fbinfo = fbinfo;
1265         win->parent = sfb;
1266         win->windata = windata;
1267         win->index = win_no;
1268         win->palette_buffer = (u32 *)(win + 1);
1269
1270         ret = s3c_fb_alloc_memory(sfb, win);
1271         if (ret) {
1272                 dev_err(sfb->dev, "failed to allocate display memory\n");
1273                 return ret;
1274         }
1275
1276         /* setup the r/b/g positions for the window's palette */
1277         if (win->variant.palette_16bpp) {
1278                 /* Set RGB 5:6:5 as default */
1279                 win->palette.r.offset = 11;
1280                 win->palette.r.length = 5;
1281                 win->palette.g.offset = 5;
1282                 win->palette.g.length = 6;
1283                 win->palette.b.offset = 0;
1284                 win->palette.b.length = 5;
1285
1286         } else {
1287                 /* Set 8bpp or 8bpp and 1bit alpha */
1288                 win->palette.r.offset = 16;
1289                 win->palette.r.length = 8;
1290                 win->palette.g.offset = 8;
1291                 win->palette.g.length = 8;
1292                 win->palette.b.offset = 0;
1293                 win->palette.b.length = 8;
1294         }
1295
1296         /* setup the initial video mode from the window */
1297         fb_videomode_to_var(&fbinfo->var, initmode);
1298
1299         fbinfo->fix.type        = FB_TYPE_PACKED_PIXELS;
1300         fbinfo->fix.accel       = FB_ACCEL_NONE;
1301         fbinfo->var.activate    = FB_ACTIVATE_NOW;
1302         fbinfo->var.vmode       = FB_VMODE_NONINTERLACED;
1303         fbinfo->var.bits_per_pixel = windata->default_bpp;
1304         fbinfo->fbops           = &s3c_fb_ops;
1305         fbinfo->flags           = FBINFO_FLAG_DEFAULT;
1306         fbinfo->pseudo_palette  = &win->pseudo_palette;
1307
1308         /* prepare to actually start the framebuffer */
1309
1310         ret = s3c_fb_check_var(&fbinfo->var, fbinfo);
1311         if (ret < 0) {
1312                 dev_err(sfb->dev, "check_var failed on initial video params\n");
1313                 return ret;
1314         }
1315
1316         /* create initial colour map */
1317
1318         ret = fb_alloc_cmap(&fbinfo->cmap, win->variant.palette_sz, 1);
1319         if (ret == 0)
1320                 fb_set_cmap(&fbinfo->cmap, fbinfo);
1321         else
1322                 dev_err(sfb->dev, "failed to allocate fb cmap\n");
1323
1324         s3c_fb_set_par(fbinfo);
1325
1326         dev_dbg(sfb->dev, "about to register framebuffer\n");
1327
1328         /* run the check_var and set_par on our configuration. */
1329
1330         ret = register_framebuffer(fbinfo);
1331         if (ret < 0) {
1332                 dev_err(sfb->dev, "failed to register framebuffer\n");
1333                 return ret;
1334         }
1335
1336         dev_info(sfb->dev, "window %d: fb %s\n", win_no, fbinfo->fix.id);
1337
1338         return 0;
1339 }
1340
1341 /**
1342  * s3c_fb_clear_win() - clear hardware window registers.
1343  * @sfb: The base resources for the hardware.
1344  * @win: The window to process.
1345  *
1346  * Reset the specific window registers to a known state.
1347  */
1348 static void s3c_fb_clear_win(struct s3c_fb *sfb, int win)
1349 {
1350         void __iomem *regs = sfb->regs;
1351         u32 reg;
1352
1353         writel(0, regs + sfb->variant.wincon + (win * 4));
1354         writel(0, regs + VIDOSD_A(win, sfb->variant));
1355         writel(0, regs + VIDOSD_B(win, sfb->variant));
1356         writel(0, regs + VIDOSD_C(win, sfb->variant));
1357         reg = readl(regs + SHADOWCON);
1358         writel(reg & ~SHADOWCON_WINx_PROTECT(win), regs + SHADOWCON);
1359 }
1360
1361 static int __devinit s3c_fb_probe(struct platform_device *pdev)
1362 {
1363         const struct platform_device_id *platid;
1364         struct s3c_fb_driverdata *fbdrv;
1365         struct device *dev = &pdev->dev;
1366         struct s3c_fb_platdata *pd;
1367         struct s3c_fb *sfb;
1368         struct resource *res;
1369         int win;
1370         int ret = 0;
1371
1372         platid = platform_get_device_id(pdev);
1373         fbdrv = (struct s3c_fb_driverdata *)platid->driver_data;
1374
1375         if (fbdrv->variant.nr_windows > S3C_FB_MAX_WIN) {
1376                 dev_err(dev, "too many windows, cannot attach\n");
1377                 return -EINVAL;
1378         }
1379
1380         pd = pdev->dev.platform_data;
1381         if (!pd) {
1382                 dev_err(dev, "no platform data specified\n");
1383                 return -EINVAL;
1384         }
1385
1386         sfb = kzalloc(sizeof(struct s3c_fb), GFP_KERNEL);
1387         if (!sfb) {
1388                 dev_err(dev, "no memory for framebuffers\n");
1389                 return -ENOMEM;
1390         }
1391
1392         dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
1393
1394         sfb->dev = dev;
1395         sfb->pdata = pd;
1396         sfb->variant = fbdrv->variant;
1397
1398         spin_lock_init(&sfb->slock);
1399
1400         sfb->bus_clk = clk_get(dev, "lcd");
1401         if (IS_ERR(sfb->bus_clk)) {
1402                 dev_err(dev, "failed to get bus clock\n");
1403                 ret = PTR_ERR(sfb->bus_clk);
1404                 goto err_sfb;
1405         }
1406
1407         clk_enable(sfb->bus_clk);
1408
1409         if (!sfb->variant.has_clksel) {
1410                 sfb->lcd_clk = clk_get(dev, "sclk_fimd");
1411                 if (IS_ERR(sfb->lcd_clk)) {
1412                         dev_err(dev, "failed to get lcd clock\n");
1413                         ret = PTR_ERR(sfb->lcd_clk);
1414                         goto err_bus_clk;
1415                 }
1416
1417                 clk_enable(sfb->lcd_clk);
1418         }
1419
1420         pm_runtime_enable(sfb->dev);
1421
1422         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1423         if (!res) {
1424                 dev_err(dev, "failed to find registers\n");
1425                 ret = -ENOENT;
1426                 goto err_lcd_clk;
1427         }
1428
1429         sfb->regs_res = request_mem_region(res->start, resource_size(res),
1430                                            dev_name(dev));
1431         if (!sfb->regs_res) {
1432                 dev_err(dev, "failed to claim register region\n");
1433                 ret = -ENOENT;
1434                 goto err_lcd_clk;
1435         }
1436
1437         sfb->regs = ioremap(res->start, resource_size(res));
1438         if (!sfb->regs) {
1439                 dev_err(dev, "failed to map registers\n");
1440                 ret = -ENXIO;
1441                 goto err_req_region;
1442         }
1443
1444         res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1445         if (!res) {
1446                 dev_err(dev, "failed to acquire irq resource\n");
1447                 ret = -ENOENT;
1448                 goto err_ioremap;
1449         }
1450         sfb->irq_no = res->start;
1451         ret = request_irq(sfb->irq_no, s3c_fb_irq,
1452                           0, "s3c_fb", sfb);
1453         if (ret) {
1454                 dev_err(dev, "irq request failed\n");
1455                 goto err_ioremap;
1456         }
1457
1458         dev_dbg(dev, "got resources (regs %p), probing windows\n", sfb->regs);
1459
1460         platform_set_drvdata(pdev, sfb);
1461         pm_runtime_get_sync(sfb->dev);
1462
1463         /* setup gpio and output polarity controls */
1464
1465         pd->setup_gpio();
1466
1467         writel(pd->vidcon1, sfb->regs + VIDCON1);
1468
1469         /* zero all windows before we do anything */
1470
1471         for (win = 0; win < fbdrv->variant.nr_windows; win++)
1472                 s3c_fb_clear_win(sfb, win);
1473
1474         /* initialise colour key controls */
1475         for (win = 0; win < (fbdrv->variant.nr_windows - 1); win++) {
1476                 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1477
1478                 regs += (win * 8);
1479                 writel(0xffffff, regs + WKEYCON0);
1480                 writel(0xffffff, regs + WKEYCON1);
1481         }
1482
1483         /* we have the register setup, start allocating framebuffers */
1484
1485         for (win = 0; win < fbdrv->variant.nr_windows; win++) {
1486                 if (!pd->win[win])
1487                         continue;
1488
1489                 if (!pd->win[win]->win_mode.pixclock)
1490                         s3c_fb_missing_pixclock(&pd->win[win]->win_mode);
1491
1492                 ret = s3c_fb_probe_win(sfb, win, fbdrv->win[win],
1493                                        &sfb->windows[win]);
1494                 if (ret < 0) {
1495                         dev_err(dev, "failed to create window %d\n", win);
1496                         for (; win >= 0; win--)
1497                                 s3c_fb_release_win(sfb, sfb->windows[win]);
1498                         goto err_pm_runtime;
1499                 }
1500         }
1501
1502         platform_set_drvdata(pdev, sfb);
1503         pm_runtime_put_sync(sfb->dev);
1504
1505         return 0;
1506
1507 err_pm_runtime:
1508         pm_runtime_put_sync(sfb->dev);
1509         free_irq(sfb->irq_no, sfb);
1510
1511 err_ioremap:
1512         iounmap(sfb->regs);
1513
1514 err_req_region:
1515         release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
1516
1517 err_lcd_clk:
1518         pm_runtime_disable(sfb->dev);
1519
1520         if (!sfb->variant.has_clksel) {
1521                 clk_disable(sfb->lcd_clk);
1522                 clk_put(sfb->lcd_clk);
1523         }
1524
1525 err_bus_clk:
1526         clk_disable(sfb->bus_clk);
1527         clk_put(sfb->bus_clk);
1528
1529 err_sfb:
1530         kfree(sfb);
1531         return ret;
1532 }
1533
1534 /**
1535  * s3c_fb_remove() - Cleanup on module finalisation
1536  * @pdev: The platform device we are bound to.
1537  *
1538  * Shutdown and then release all the resources that the driver allocated
1539  * on initialisation.
1540  */
1541 static int __devexit s3c_fb_remove(struct platform_device *pdev)
1542 {
1543         struct s3c_fb *sfb = platform_get_drvdata(pdev);
1544         int win;
1545
1546         pm_runtime_get_sync(sfb->dev);
1547
1548         for (win = 0; win < S3C_FB_MAX_WIN; win++)
1549                 if (sfb->windows[win])
1550                         s3c_fb_release_win(sfb, sfb->windows[win]);
1551
1552         free_irq(sfb->irq_no, sfb);
1553
1554         iounmap(sfb->regs);
1555
1556         if (!sfb->variant.has_clksel) {
1557                 clk_disable(sfb->lcd_clk);
1558                 clk_put(sfb->lcd_clk);
1559         }
1560
1561         clk_disable(sfb->bus_clk);
1562         clk_put(sfb->bus_clk);
1563
1564         release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
1565
1566         pm_runtime_put_sync(sfb->dev);
1567         pm_runtime_disable(sfb->dev);
1568
1569         kfree(sfb);
1570         return 0;
1571 }
1572
1573 #ifdef CONFIG_PM_SLEEP
1574 static int s3c_fb_suspend(struct device *dev)
1575 {
1576         struct platform_device *pdev = to_platform_device(dev);
1577         struct s3c_fb *sfb = platform_get_drvdata(pdev);
1578         struct s3c_fb_win *win;
1579         int win_no;
1580
1581         for (win_no = S3C_FB_MAX_WIN - 1; win_no >= 0; win_no--) {
1582                 win = sfb->windows[win_no];
1583                 if (!win)
1584                         continue;
1585
1586                 /* use the blank function to push into power-down */
1587                 s3c_fb_blank(FB_BLANK_POWERDOWN, win->fbinfo);
1588         }
1589
1590         if (!sfb->variant.has_clksel)
1591                 clk_disable(sfb->lcd_clk);
1592
1593         clk_disable(sfb->bus_clk);
1594         return 0;
1595 }
1596
1597 static int s3c_fb_resume(struct device *dev)
1598 {
1599         struct platform_device *pdev = to_platform_device(dev);
1600         struct s3c_fb *sfb = platform_get_drvdata(pdev);
1601         struct s3c_fb_platdata *pd = sfb->pdata;
1602         struct s3c_fb_win *win;
1603         int win_no;
1604
1605         clk_enable(sfb->bus_clk);
1606
1607         if (!sfb->variant.has_clksel)
1608                 clk_enable(sfb->lcd_clk);
1609
1610         /* setup gpio and output polarity controls */
1611         pd->setup_gpio();
1612         writel(pd->vidcon1, sfb->regs + VIDCON1);
1613
1614         /* zero all windows before we do anything */
1615         for (win_no = 0; win_no < sfb->variant.nr_windows; win_no++)
1616                 s3c_fb_clear_win(sfb, win_no);
1617
1618         for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
1619                 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1620                 win = sfb->windows[win_no];
1621                 if (!win)
1622                         continue;
1623
1624                 shadow_protect_win(win, 1);
1625                 regs += (win_no * 8);
1626                 writel(0xffffff, regs + WKEYCON0);
1627                 writel(0xffffff, regs + WKEYCON1);
1628                 shadow_protect_win(win, 0);
1629         }
1630
1631         /* restore framebuffers */
1632         for (win_no = 0; win_no < S3C_FB_MAX_WIN; win_no++) {
1633                 win = sfb->windows[win_no];
1634                 if (!win)
1635                         continue;
1636
1637                 dev_dbg(&pdev->dev, "resuming window %d\n", win_no);
1638                 s3c_fb_set_par(win->fbinfo);
1639         }
1640
1641         return 0;
1642 }
1643 #endif
1644
1645 #ifdef CONFIG_PM_RUNTIME
1646 static int s3c_fb_runtime_suspend(struct device *dev)
1647 {
1648         struct platform_device *pdev = to_platform_device(dev);
1649         struct s3c_fb *sfb = platform_get_drvdata(pdev);
1650
1651         if (!sfb->variant.has_clksel)
1652                 clk_disable(sfb->lcd_clk);
1653
1654         clk_disable(sfb->bus_clk);
1655
1656         return 0;
1657 }
1658
1659 static int s3c_fb_runtime_resume(struct device *dev)
1660 {
1661         struct platform_device *pdev = to_platform_device(dev);
1662         struct s3c_fb *sfb = platform_get_drvdata(pdev);
1663         struct s3c_fb_platdata *pd = sfb->pdata;
1664
1665         clk_enable(sfb->bus_clk);
1666
1667         if (!sfb->variant.has_clksel)
1668                 clk_enable(sfb->lcd_clk);
1669
1670         /* setup gpio and output polarity controls */
1671         pd->setup_gpio();
1672         writel(pd->vidcon1, sfb->regs + VIDCON1);
1673
1674         return 0;
1675 }
1676 #endif
1677
1678 #define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1679 #define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1680
1681 static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
1682         [0] = {
1683                 .has_osd_c      = 1,
1684                 .osd_size_off   = 0x8,
1685                 .palette_sz     = 256,
1686                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(16) |
1687                                    VALID_BPP(18) | VALID_BPP(24)),
1688         },
1689         [1] = {
1690                 .has_osd_c      = 1,
1691                 .has_osd_d      = 1,
1692                 .osd_size_off   = 0xc,
1693                 .has_osd_alpha  = 1,
1694                 .palette_sz     = 256,
1695                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(16) |
1696                                    VALID_BPP(18) | VALID_BPP(19) |
1697                                    VALID_BPP(24) | VALID_BPP(25) |
1698                                    VALID_BPP(28)),
1699         },
1700         [2] = {
1701                 .has_osd_c      = 1,
1702                 .has_osd_d      = 1,
1703                 .osd_size_off   = 0xc,
1704                 .has_osd_alpha  = 1,
1705                 .palette_sz     = 16,
1706                 .palette_16bpp  = 1,
1707                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(16) |
1708                                    VALID_BPP(18) | VALID_BPP(19) |
1709                                    VALID_BPP(24) | VALID_BPP(25) |
1710                                    VALID_BPP(28)),
1711         },
1712         [3] = {
1713                 .has_osd_c      = 1,
1714                 .has_osd_alpha  = 1,
1715                 .palette_sz     = 16,
1716                 .palette_16bpp  = 1,
1717                 .valid_bpp      = (VALID_BPP124  | VALID_BPP(16) |
1718                                    VALID_BPP(18) | VALID_BPP(19) |
1719                                    VALID_BPP(24) | VALID_BPP(25) |
1720                                    VALID_BPP(28)),
1721         },
1722         [4] = {
1723                 .has_osd_c      = 1,
1724                 .has_osd_alpha  = 1,
1725                 .palette_sz     = 4,
1726                 .palette_16bpp  = 1,
1727                 .valid_bpp      = (VALID_BPP(1) | VALID_BPP(2) |
1728                                    VALID_BPP(16) | VALID_BPP(18) |
1729                                    VALID_BPP(19) | VALID_BPP(24) |
1730                                    VALID_BPP(25) | VALID_BPP(28)),
1731         },
1732 };
1733
1734 static struct s3c_fb_win_variant s3c_fb_data_s5p_wins[] = {
1735         [0] = {
1736                 .has_osd_c      = 1,
1737                 .osd_size_off   = 0x8,
1738                 .palette_sz     = 256,
1739                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(13) |
1740                                    VALID_BPP(15) | VALID_BPP(16) |
1741                                    VALID_BPP(18) | VALID_BPP(19) |
1742                                    VALID_BPP(24) | VALID_BPP(25) |
1743                                    VALID_BPP(32)),
1744         },
1745         [1] = {
1746                 .has_osd_c      = 1,
1747                 .has_osd_d      = 1,
1748                 .osd_size_off   = 0xc,
1749                 .has_osd_alpha  = 1,
1750                 .palette_sz     = 256,
1751                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(13) |
1752                                    VALID_BPP(15) | VALID_BPP(16) |
1753                                    VALID_BPP(18) | VALID_BPP(19) |
1754                                    VALID_BPP(24) | VALID_BPP(25) |
1755                                    VALID_BPP(32)),
1756         },
1757         [2] = {
1758                 .has_osd_c      = 1,
1759                 .has_osd_d      = 1,
1760                 .osd_size_off   = 0xc,
1761                 .has_osd_alpha  = 1,
1762                 .palette_sz     = 256,
1763                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(13) |
1764                                    VALID_BPP(15) | VALID_BPP(16) |
1765                                    VALID_BPP(18) | VALID_BPP(19) |
1766                                    VALID_BPP(24) | VALID_BPP(25) |
1767                                    VALID_BPP(32)),
1768         },
1769         [3] = {
1770                 .has_osd_c      = 1,
1771                 .has_osd_alpha  = 1,
1772                 .palette_sz     = 256,
1773                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(13) |
1774                                    VALID_BPP(15) | VALID_BPP(16) |
1775                                    VALID_BPP(18) | VALID_BPP(19) |
1776                                    VALID_BPP(24) | VALID_BPP(25) |
1777                                    VALID_BPP(32)),
1778         },
1779         [4] = {
1780                 .has_osd_c      = 1,
1781                 .has_osd_alpha  = 1,
1782                 .palette_sz     = 256,
1783                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(13) |
1784                                    VALID_BPP(15) | VALID_BPP(16) |
1785                                    VALID_BPP(18) | VALID_BPP(19) |
1786                                    VALID_BPP(24) | VALID_BPP(25) |
1787                                    VALID_BPP(32)),
1788         },
1789 };
1790
1791 static struct s3c_fb_driverdata s3c_fb_data_64xx = {
1792         .variant = {
1793                 .nr_windows     = 5,
1794                 .vidtcon        = VIDTCON0,
1795                 .wincon         = WINCON(0),
1796                 .winmap         = WINxMAP(0),
1797                 .keycon         = WKEYCON,
1798                 .osd            = VIDOSD_BASE,
1799                 .osd_stride     = 16,
1800                 .buf_start      = VIDW_BUF_START(0),
1801                 .buf_size       = VIDW_BUF_SIZE(0),
1802                 .buf_end        = VIDW_BUF_END(0),
1803
1804                 .palette = {
1805                         [0] = 0x400,
1806                         [1] = 0x800,
1807                         [2] = 0x300,
1808                         [3] = 0x320,
1809                         [4] = 0x340,
1810                 },
1811
1812                 .has_prtcon     = 1,
1813                 .has_clksel     = 1,
1814         },
1815         .win[0] = &s3c_fb_data_64xx_wins[0],
1816         .win[1] = &s3c_fb_data_64xx_wins[1],
1817         .win[2] = &s3c_fb_data_64xx_wins[2],
1818         .win[3] = &s3c_fb_data_64xx_wins[3],
1819         .win[4] = &s3c_fb_data_64xx_wins[4],
1820 };
1821
1822 static struct s3c_fb_driverdata s3c_fb_data_s5pc100 = {
1823         .variant = {
1824                 .nr_windows     = 5,
1825                 .vidtcon        = VIDTCON0,
1826                 .wincon         = WINCON(0),
1827                 .winmap         = WINxMAP(0),
1828                 .keycon         = WKEYCON,
1829                 .osd            = VIDOSD_BASE,
1830                 .osd_stride     = 16,
1831                 .buf_start      = VIDW_BUF_START(0),
1832                 .buf_size       = VIDW_BUF_SIZE(0),
1833                 .buf_end        = VIDW_BUF_END(0),
1834
1835                 .palette = {
1836                         [0] = 0x2400,
1837                         [1] = 0x2800,
1838                         [2] = 0x2c00,
1839                         [3] = 0x3000,
1840                         [4] = 0x3400,
1841                 },
1842
1843                 .has_prtcon     = 1,
1844                 .has_clksel     = 1,
1845         },
1846         .win[0] = &s3c_fb_data_s5p_wins[0],
1847         .win[1] = &s3c_fb_data_s5p_wins[1],
1848         .win[2] = &s3c_fb_data_s5p_wins[2],
1849         .win[3] = &s3c_fb_data_s5p_wins[3],
1850         .win[4] = &s3c_fb_data_s5p_wins[4],
1851 };
1852
1853 static struct s3c_fb_driverdata s3c_fb_data_s5pv210 = {
1854         .variant = {
1855                 .nr_windows     = 5,
1856                 .vidtcon        = VIDTCON0,
1857                 .wincon         = WINCON(0),
1858                 .winmap         = WINxMAP(0),
1859                 .keycon         = WKEYCON,
1860                 .osd            = VIDOSD_BASE,
1861                 .osd_stride     = 16,
1862                 .buf_start      = VIDW_BUF_START(0),
1863                 .buf_size       = VIDW_BUF_SIZE(0),
1864                 .buf_end        = VIDW_BUF_END(0),
1865
1866                 .palette = {
1867                         [0] = 0x2400,
1868                         [1] = 0x2800,
1869                         [2] = 0x2c00,
1870                         [3] = 0x3000,
1871                         [4] = 0x3400,
1872                 },
1873
1874                 .has_shadowcon  = 1,
1875                 .has_clksel     = 1,
1876         },
1877         .win[0] = &s3c_fb_data_s5p_wins[0],
1878         .win[1] = &s3c_fb_data_s5p_wins[1],
1879         .win[2] = &s3c_fb_data_s5p_wins[2],
1880         .win[3] = &s3c_fb_data_s5p_wins[3],
1881         .win[4] = &s3c_fb_data_s5p_wins[4],
1882 };
1883
1884 static struct s3c_fb_driverdata s3c_fb_data_exynos4 = {
1885         .variant = {
1886                 .nr_windows     = 5,
1887                 .vidtcon        = VIDTCON0,
1888                 .wincon         = WINCON(0),
1889                 .winmap         = WINxMAP(0),
1890                 .keycon         = WKEYCON,
1891                 .osd            = VIDOSD_BASE,
1892                 .osd_stride     = 16,
1893                 .buf_start      = VIDW_BUF_START(0),
1894                 .buf_size       = VIDW_BUF_SIZE(0),
1895                 .buf_end        = VIDW_BUF_END(0),
1896
1897                 .palette = {
1898                         [0] = 0x2400,
1899                         [1] = 0x2800,
1900                         [2] = 0x2c00,
1901                         [3] = 0x3000,
1902                         [4] = 0x3400,
1903                 },
1904
1905                 .has_shadowcon  = 1,
1906         },
1907         .win[0] = &s3c_fb_data_s5p_wins[0],
1908         .win[1] = &s3c_fb_data_s5p_wins[1],
1909         .win[2] = &s3c_fb_data_s5p_wins[2],
1910         .win[3] = &s3c_fb_data_s5p_wins[3],
1911         .win[4] = &s3c_fb_data_s5p_wins[4],
1912 };
1913
1914 /* S3C2443/S3C2416 style hardware */
1915 static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
1916         .variant = {
1917                 .nr_windows     = 2,
1918                 .is_2443        = 1,
1919
1920                 .vidtcon        = 0x08,
1921                 .wincon         = 0x14,
1922                 .winmap         = 0xd0,
1923                 .keycon         = 0xb0,
1924                 .osd            = 0x28,
1925                 .osd_stride     = 12,
1926                 .buf_start      = 0x64,
1927                 .buf_size       = 0x94,
1928                 .buf_end        = 0x7c,
1929
1930                 .palette = {
1931                         [0] = 0x400,
1932                         [1] = 0x800,
1933                 },
1934                 .has_clksel     = 1,
1935         },
1936         .win[0] = &(struct s3c_fb_win_variant) {
1937                 .palette_sz     = 256,
1938                 .valid_bpp      = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24),
1939         },
1940         .win[1] = &(struct s3c_fb_win_variant) {
1941                 .has_osd_c      = 1,
1942                 .has_osd_alpha  = 1,
1943                 .palette_sz     = 256,
1944                 .valid_bpp      = (VALID_BPP1248 | VALID_BPP(16) |
1945                                    VALID_BPP(18) | VALID_BPP(19) |
1946                                    VALID_BPP(24) | VALID_BPP(25) |
1947                                    VALID_BPP(28)),
1948         },
1949 };
1950
1951 static struct s3c_fb_driverdata s3c_fb_data_s5p64x0 = {
1952         .variant = {
1953                 .nr_windows     = 3,
1954                 .vidtcon        = VIDTCON0,
1955                 .wincon         = WINCON(0),
1956                 .winmap         = WINxMAP(0),
1957                 .keycon         = WKEYCON,
1958                 .osd            = VIDOSD_BASE,
1959                 .osd_stride     = 16,
1960                 .buf_start      = VIDW_BUF_START(0),
1961                 .buf_size       = VIDW_BUF_SIZE(0),
1962                 .buf_end        = VIDW_BUF_END(0),
1963
1964                 .palette = {
1965                         [0] = 0x2400,
1966                         [1] = 0x2800,
1967                         [2] = 0x2c00,
1968                 },
1969         },
1970         .win[0] = &s3c_fb_data_s5p_wins[0],
1971         .win[1] = &s3c_fb_data_s5p_wins[1],
1972         .win[2] = &s3c_fb_data_s5p_wins[2],
1973 };
1974
1975 static struct platform_device_id s3c_fb_driver_ids[] = {
1976         {
1977                 .name           = "s3c-fb",
1978                 .driver_data    = (unsigned long)&s3c_fb_data_64xx,
1979         }, {
1980                 .name           = "s5pc100-fb",
1981                 .driver_data    = (unsigned long)&s3c_fb_data_s5pc100,
1982         }, {
1983                 .name           = "s5pv210-fb",
1984                 .driver_data    = (unsigned long)&s3c_fb_data_s5pv210,
1985         }, {
1986                 .name           = "exynos4-fb",
1987                 .driver_data    = (unsigned long)&s3c_fb_data_exynos4,
1988         }, {
1989                 .name           = "s3c2443-fb",
1990                 .driver_data    = (unsigned long)&s3c_fb_data_s3c2443,
1991         }, {
1992                 .name           = "s5p64x0-fb",
1993                 .driver_data    = (unsigned long)&s3c_fb_data_s5p64x0,
1994         },
1995         {},
1996 };
1997 MODULE_DEVICE_TABLE(platform, s3c_fb_driver_ids);
1998
1999 static const struct dev_pm_ops s3cfb_pm_ops = {
2000         SET_SYSTEM_SLEEP_PM_OPS(s3c_fb_suspend, s3c_fb_resume)
2001         SET_RUNTIME_PM_OPS(s3c_fb_runtime_suspend, s3c_fb_runtime_resume,
2002                            NULL)
2003 };
2004
2005 static struct platform_driver s3c_fb_driver = {
2006         .probe          = s3c_fb_probe,
2007         .remove         = __devexit_p(s3c_fb_remove),
2008         .id_table       = s3c_fb_driver_ids,
2009         .driver         = {
2010                 .name   = "s3c-fb",
2011                 .owner  = THIS_MODULE,
2012                 .pm     = &s3cfb_pm_ops,
2013         },
2014 };
2015
2016 module_platform_driver(s3c_fb_driver);
2017
2018 MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
2019 MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
2020 MODULE_LICENSE("GPL");
2021 MODULE_ALIAS("platform:s3c-fb");