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