blob: be4c218bb931dc440cdc6555de1c5d4042913882 [file] [log] [blame]
Ben Dooksec549a02009-03-31 15:25:39 -07001/* linux/drivers/video/s3c-fb.c
2 *
3 * Copyright 2008 Openmoko Inc.
Ben Dooks50a55032010-08-10 18:02:33 -07004 * Copyright 2008-2010 Simtec Electronics
Ben Dooksec549a02009-03-31 15:25:39 -07005 * 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
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070012 * published by the Free Software FoundatIon.
Ben Dooksec549a02009-03-31 15:25:39 -070013*/
14
15#include <linux/kernel.h>
16#include <linux/module.h>
17#include <linux/platform_device.h>
18#include <linux/dma-mapping.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Ben Dooksec549a02009-03-31 15:25:39 -070020#include <linux/init.h>
Ben Dooksec549a02009-03-31 15:25:39 -070021#include <linux/clk.h>
22#include <linux/fb.h>
23#include <linux/io.h>
Pawel Osciakefdc8462010-08-10 18:02:38 -070024#include <linux/uaccess.h>
25#include <linux/interrupt.h>
Jingoo Han49592122010-12-17 16:45:46 +090026#include <linux/pm_runtime.h>
Ben Dooksec549a02009-03-31 15:25:39 -070027
28#include <mach/map.h>
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070029#include <plat/regs-fb-v4.h>
Ben Dooksec549a02009-03-31 15:25:39 -070030#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
Ben Dooks50a55032010-08-10 18:02:33 -070042/* 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.
Ben Dooksec549a02009-03-31 15:25:39 -070045*/
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); \
Jingoo Hanb73a21fc2011-04-01 07:17:27 +000051 __raw_writel(v, r); } while (0)
Ben Dooksec549a02009-03-31 15:25:39 -070052#endif /* FB_S3C_DEBUG_REGWRITE */
53
Pawel Osciakefdc8462010-08-10 18:02:38 -070054/* irq_flags bits */
55#define S3C_FB_VSYNC_IRQ_EN 0
56
57#define VSYNC_TIMEOUT_MSEC 50
58
Ben Dooksec549a02009-03-31 15:25:39 -070059struct s3c_fb;
60
Ben Dooks50a55032010-08-10 18:02:33 -070061#define VALID_BPP(x) (1 << ((x) - 1))
62
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070063#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
Ben Dooks50a55032010-08-10 18:02:33 -070069/**
70 * struct s3c_fb_variant - fb variant information
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070071 * @is_2443: Set if S3C2443/S3C2416 style hardware.
Ben Dooks50a55032010-08-10 18:02:33 -070072 * @nr_windows: The number of windows.
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070073 * @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.
Ben Dooks50a55032010-08-10 18:02:33 -070081 * @palette: Address of palette memory, or 0 if none.
Pawel Osciak067b2262010-08-10 18:02:38 -070082 * @has_prtcon: Set if has PRTCON register.
Pawel Osciakf5ec5462010-08-10 18:02:40 -070083 * @has_shadowcon: Set if has SHADOWCON register.
Jingoo Hanb5480ed2011-08-22 12:16:04 +090084 * @has_clksel: Set if VIDCON0 register has CLKSEL bit.
Ben Dooks50a55032010-08-10 18:02:33 -070085 */
86struct s3c_fb_variant {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070087 unsigned int is_2443:1;
Ben Dooks50a55032010-08-10 18:02:33 -070088 unsigned short nr_windows;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070089 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;
Ben Dooks50a55032010-08-10 18:02:33 -070098 unsigned short palette[S3C_FB_MAX_WIN];
Pawel Osciak067b2262010-08-10 18:02:38 -070099
100 unsigned int has_prtcon:1;
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700101 unsigned int has_shadowcon:1;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900102 unsigned int has_clksel:1;
Ben Dooks50a55032010-08-10 18:02:33 -0700103};
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.
Pawel Osciakf676ec22010-08-10 18:02:40 -0700109 * @has_osd_alpha: Set if can change alpha transparency for a window.
Ben Dooks50a55032010-08-10 18:02:33 -0700110 * @palette_sz: Size of palette in entries.
111 * @palette_16bpp: Set if palette is 16bits wide.
Pawel Osciakf676ec22010-08-10 18:02:40 -0700112 * @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.
Ben Dooks50a55032010-08-10 18:02:33 -0700114 * @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 */
118struct s3c_fb_win_variant {
119 unsigned int has_osd_c:1;
120 unsigned int has_osd_d:1;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700121 unsigned int has_osd_alpha:1;
Ben Dooks50a55032010-08-10 18:02:33 -0700122 unsigned int palette_16bpp:1;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700123 unsigned short osd_size_off;
Ben Dooks50a55032010-08-10 18:02:33 -0700124 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 */
133struct s3c_fb_driverdata {
134 struct s3c_fb_variant variant;
135 struct s3c_fb_win_variant *win[S3C_FB_MAX_WIN];
136};
137
Ben Dooksec549a02009-03-31 15:25:39 -0700138/**
Ben Dooksbc2da1b2010-08-10 18:02:34 -0700139 * struct s3c_fb_palette - palette information
140 * @r: Red bitfield.
141 * @g: Green bitfield.
142 * @b: Blue bitfield.
143 * @a: Alpha bitfield.
144 */
145struct 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/**
Ben Dooksec549a02009-03-31 15:25:39 -0700153 * 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.
Ben Dooks50a55032010-08-10 18:02:33 -0700157 * @varint: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -0700158 * @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 */
163struct 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;
Ben Dooks50a55032010-08-10 18:02:33 -0700168 struct s3c_fb_win_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700169
170 u32 *palette_buffer;
171 u32 pseudo_palette[16];
172 unsigned int index;
173};
174
175/**
Pawel Osciakefdc8462010-08-10 18:02:38 -0700176 * struct s3c_fb_vsync - vsync information
177 * @wait: a queue for processes waiting for vsync
178 * @count: vsync interrupt count
179 */
180struct s3c_fb_vsync {
181 wait_queue_head_t wait;
182 unsigned int count;
183};
184
185/**
Ben Dooksec549a02009-03-31 15:25:39 -0700186 * struct s3c_fb - overall hardware state of the hardware
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000187 * @slock: The spinlock protection for this data sturcture.
Ben Dooksec549a02009-03-31 15:25:39 -0700188 * @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.
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900191 * @lcd_clk: The clk (sclk) feeding pixclk.
Ben Dooksec549a02009-03-31 15:25:39 -0700192 * @regs: The mapped hardware registers.
Ben Dooks50a55032010-08-10 18:02:33 -0700193 * @variant: Variant information for this hardware.
Ben Dooksec549a02009-03-31 15:25:39 -0700194 * @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.
Pawel Osciakefdc8462010-08-10 18:02:38 -0700197 * @irq_no: IRQ line number
198 * @irq_flags: irq flags
199 * @vsync_info: VSYNC-related information (count, queues...)
Ben Dooksec549a02009-03-31 15:25:39 -0700200 */
201struct s3c_fb {
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000202 spinlock_t slock;
Ben Dooksec549a02009-03-31 15:25:39 -0700203 struct device *dev;
204 struct resource *regs_res;
205 struct clk *bus_clk;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900206 struct clk *lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -0700207 void __iomem *regs;
Ben Dooks50a55032010-08-10 18:02:33 -0700208 struct s3c_fb_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700209
210 unsigned char enabled;
211
212 struct s3c_fb_platdata *pdata;
213 struct s3c_fb_win *windows[S3C_FB_MAX_WIN];
Pawel Osciakefdc8462010-08-10 18:02:38 -0700214
215 int irq_no;
216 unsigned long irq_flags;
217 struct s3c_fb_vsync vsync_info;
Ben Dooksec549a02009-03-31 15:25:39 -0700218};
219
220/**
Ben Dooks50a55032010-08-10 18:02:33 -0700221 * s3c_fb_validate_win_bpp - validate the bits-per-pixel for this mode.
222 * @win: The device window.
223 * @bpp: The bit depth.
Ben Dooksec549a02009-03-31 15:25:39 -0700224 */
Ben Dooks50a55032010-08-10 18:02:33 -0700225static bool s3c_fb_validate_win_bpp(struct s3c_fb_win *win, unsigned int bpp)
Ben Dooksec549a02009-03-31 15:25:39 -0700226{
Ben Dooks50a55032010-08-10 18:02:33 -0700227 return win->variant.valid_bpp & VALID_BPP(bpp);
Ben Dooksec549a02009-03-31 15:25:39 -0700228}
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 */
238static int s3c_fb_check_var(struct fb_var_screeninfo *var,
239 struct fb_info *info)
240{
241 struct s3c_fb_win *win = info->par;
Ben Dooksec549a02009-03-31 15:25:39 -0700242 struct s3c_fb *sfb = win->parent;
243
244 dev_dbg(sfb->dev, "checking parameters\n");
245
Jingoo Han13e6af82011-06-09 04:26:38 +0000246 var->xres_virtual = max(var->xres_virtual, var->xres);
247 var->yres_virtual = max(var->yres_virtual, var->yres);
Ben Dooksec549a02009-03-31 15:25:39 -0700248
Ben Dooks50a55032010-08-10 18:02:33 -0700249 if (!s3c_fb_validate_win_bpp(win, var->bits_per_pixel)) {
Ben Dooksec549a02009-03-31 15:25:39 -0700250 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:
Ben Dooks50a55032010-08-10 18:02:33 -0700264 if (sfb->variant.palette[win->index] != 0) {
Ben Dooksec549a02009-03-31 15:25:39 -0700265 /* 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
Jingoo Hanaf1ce6b2011-05-24 08:55:23 +0000308 case 32:
Ben Dooksec549a02009-03-31 15:25:39 -0700309 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;
Ben Dooksec549a02009-03-31 15:25:39 -0700317 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 */
Mark Browneb29a5c2010-01-15 17:01:40 -0800341static int s3c_fb_calc_pixclk(struct s3c_fb *sfb, unsigned int pixclk)
Ben Dooksec549a02009-03-31 15:25:39 -0700342{
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900343 unsigned long clk;
Mark Browneb29a5c2010-01-15 17:01:40 -0800344 unsigned long long tmp;
Ben Dooksec549a02009-03-31 15:25:39 -0700345 unsigned int result;
346
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900347 if (sfb->variant.has_clksel)
348 clk = clk_get_rate(sfb->bus_clk);
349 else
350 clk = clk_get_rate(sfb->lcd_clk);
351
Mark Browneb29a5c2010-01-15 17:01:40 -0800352 tmp = (unsigned long long)clk;
353 tmp *= pixclk;
354
355 do_div(tmp, 1000000000UL);
356 result = (unsigned int)tmp / 1000;
Ben Dooksec549a02009-03-31 15:25:39 -0700357
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 */
372static 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/**
Pawel Osciakf676ec22010-08-10 18:02:40 -0700384 * 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 */
389static 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 */
405static 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/**
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700414 * 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 */
419static 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/**
Mark Browna2b77dc2011-12-27 14:16:08 +0000444 * s3c_fb_enable() - Set the state of the main LCD output
445 * @sfb: The main framebuffer state.
446 * @enable: The state to set.
447 */
448static void s3c_fb_enable(struct s3c_fb *sfb, int enable)
449{
450 u32 vidcon0 = readl(sfb->regs + VIDCON0);
451
452 if (enable)
453 vidcon0 |= VIDCON0_ENVID | VIDCON0_ENVID_F;
454 else {
455 /* see the note in the framebuffer datasheet about
456 * why you cannot take both of these bits down at the
457 * same time. */
458
459 if (!(vidcon0 & VIDCON0_ENVID))
460 return;
461
462 vidcon0 |= VIDCON0_ENVID;
463 vidcon0 &= ~VIDCON0_ENVID_F;
464 }
465
466 writel(vidcon0, sfb->regs + VIDCON0);
467}
468
469/**
Ben Dooksec549a02009-03-31 15:25:39 -0700470 * s3c_fb_set_par() - framebuffer request to set new framebuffer state.
471 * @info: The framebuffer to change.
472 *
473 * Framebuffer layer request to set a new mode for the specified framebuffer
474 */
475static int s3c_fb_set_par(struct fb_info *info)
476{
477 struct fb_var_screeninfo *var = &info->var;
478 struct s3c_fb_win *win = info->par;
479 struct s3c_fb *sfb = win->parent;
480 void __iomem *regs = sfb->regs;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700481 void __iomem *buf = regs;
Ben Dooksec549a02009-03-31 15:25:39 -0700482 int win_no = win->index;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700483 u32 alpha = 0;
Ben Dooksec549a02009-03-31 15:25:39 -0700484 u32 data;
485 u32 pagewidth;
486 int clkdiv;
487
488 dev_dbg(sfb->dev, "setting framebuffer parameters\n");
489
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700490 shadow_protect_win(win, 1);
491
Ben Dooksec549a02009-03-31 15:25:39 -0700492 switch (var->bits_per_pixel) {
493 case 32:
494 case 24:
495 case 16:
496 case 12:
497 info->fix.visual = FB_VISUAL_TRUECOLOR;
498 break;
499 case 8:
Ben Dooks50a55032010-08-10 18:02:33 -0700500 if (win->variant.palette_sz >= 256)
Ben Dooksec549a02009-03-31 15:25:39 -0700501 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
502 else
503 info->fix.visual = FB_VISUAL_TRUECOLOR;
504 break;
505 case 1:
506 info->fix.visual = FB_VISUAL_MONO01;
507 break;
508 default:
509 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
510 break;
511 }
512
513 info->fix.line_length = (var->xres_virtual * var->bits_per_pixel) / 8;
514
Pawel Osciak067b2262010-08-10 18:02:38 -0700515 info->fix.xpanstep = info->var.xres_virtual > info->var.xres ? 1 : 0;
516 info->fix.ypanstep = info->var.yres_virtual > info->var.yres ? 1 : 0;
517
Ben Dooksec549a02009-03-31 15:25:39 -0700518 /* disable the window whilst we update it */
519 writel(0, regs + WINCON(win_no));
520
InKi Daead044902010-08-10 18:02:31 -0700521 /* use platform specified window as the basis for the lcd timings */
Ben Dooksec549a02009-03-31 15:25:39 -0700522
InKi Daead044902010-08-10 18:02:31 -0700523 if (win_no == sfb->pdata->default_win) {
Mark Browneb29a5c2010-01-15 17:01:40 -0800524 clkdiv = s3c_fb_calc_pixclk(sfb, var->pixclock);
Ben Dooksec549a02009-03-31 15:25:39 -0700525
526 data = sfb->pdata->vidcon0;
527 data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR);
528
529 if (clkdiv > 1)
530 data |= VIDCON0_CLKVAL_F(clkdiv-1) | VIDCON0_CLKDIR;
531 else
532 data &= ~VIDCON0_CLKDIR; /* 1:1 clock */
533
534 /* write the timing data to the panel */
535
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700536 if (sfb->variant.is_2443)
537 data |= (1 << 5);
538
Ben Dooksec549a02009-03-31 15:25:39 -0700539 writel(data, regs + VIDCON0);
540
Mark Browna2b77dc2011-12-27 14:16:08 +0000541 s3c_fb_enable(sfb, 1);
542
Ben Dooksec549a02009-03-31 15:25:39 -0700543 data = VIDTCON0_VBPD(var->upper_margin - 1) |
544 VIDTCON0_VFPD(var->lower_margin - 1) |
545 VIDTCON0_VSPW(var->vsync_len - 1);
546
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700547 writel(data, regs + sfb->variant.vidtcon);
Ben Dooksec549a02009-03-31 15:25:39 -0700548
549 data = VIDTCON1_HBPD(var->left_margin - 1) |
550 VIDTCON1_HFPD(var->right_margin - 1) |
551 VIDTCON1_HSPW(var->hsync_len - 1);
552
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700553 /* VIDTCON1 */
554 writel(data, regs + sfb->variant.vidtcon + 4);
Ben Dooksec549a02009-03-31 15:25:39 -0700555
556 data = VIDTCON2_LINEVAL(var->yres - 1) |
557 VIDTCON2_HOZVAL(var->xres - 1);
Jingoo Hanb73a21fc2011-04-01 07:17:27 +0000558 writel(data, regs + sfb->variant.vidtcon + 8);
Ben Dooksec549a02009-03-31 15:25:39 -0700559 }
560
561 /* write the buffer address */
562
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700563 /* start and end registers stride is 8 */
564 buf = regs + win_no * 8;
565
566 writel(info->fix.smem_start, buf + sfb->variant.buf_start);
Ben Dooksec549a02009-03-31 15:25:39 -0700567
568 data = info->fix.smem_start + info->fix.line_length * var->yres;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700569 writel(data, buf + sfb->variant.buf_end);
Ben Dooksec549a02009-03-31 15:25:39 -0700570
571 pagewidth = (var->xres * var->bits_per_pixel) >> 3;
572 data = VIDW_BUF_SIZE_OFFSET(info->fix.line_length - pagewidth) |
573 VIDW_BUF_SIZE_PAGEWIDTH(pagewidth);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700574 writel(data, regs + sfb->variant.buf_size + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700575
576 /* write 'OSD' registers to control position of framebuffer */
577
578 data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700579 writel(data, regs + VIDOSD_A(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700580
581 data = VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var->bits_per_pixel,
582 var->xres - 1)) |
583 VIDOSDxB_BOTRIGHT_Y(var->yres - 1);
584
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700585 writel(data, regs + VIDOSD_B(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700586
587 data = var->xres * var->yres;
InKi Dae39000d62009-06-16 15:34:27 -0700588
Pawel Osciakf676ec22010-08-10 18:02:40 -0700589 alpha = VIDISD14C_ALPHA1_R(0xf) |
InKi Dae39000d62009-06-16 15:34:27 -0700590 VIDISD14C_ALPHA1_G(0xf) |
591 VIDISD14C_ALPHA1_B(0xf);
592
Pawel Osciakf676ec22010-08-10 18:02:40 -0700593 vidosd_set_alpha(win, alpha);
594 vidosd_set_size(win, data);
Ben Dooksec549a02009-03-31 15:25:39 -0700595
Jingoo Hanfab7c5b2011-06-09 04:26:45 +0000596 /* Enable DMA channel for this window */
597 if (sfb->variant.has_shadowcon) {
598 data = readl(sfb->regs + SHADOWCON);
599 data |= SHADOWCON_CHx_ENABLE(win_no);
600 writel(data, sfb->regs + SHADOWCON);
601 }
602
Ben Dooksec549a02009-03-31 15:25:39 -0700603 data = WINCONx_ENWIN;
Jingoo Han2d9ae7a2011-12-02 19:07:17 +0900604 sfb->enabled |= (1 << win->index);
Ben Dooksec549a02009-03-31 15:25:39 -0700605
606 /* note, since we have to round up the bits-per-pixel, we end up
607 * relying on the bitfield information for r/g/b/a to work out
608 * exactly which mode of operation is intended. */
609
610 switch (var->bits_per_pixel) {
611 case 1:
612 data |= WINCON0_BPPMODE_1BPP;
613 data |= WINCONx_BITSWP;
614 data |= WINCONx_BURSTLEN_4WORD;
615 break;
616 case 2:
617 data |= WINCON0_BPPMODE_2BPP;
618 data |= WINCONx_BITSWP;
619 data |= WINCONx_BURSTLEN_8WORD;
620 break;
621 case 4:
622 data |= WINCON0_BPPMODE_4BPP;
623 data |= WINCONx_BITSWP;
624 data |= WINCONx_BURSTLEN_8WORD;
625 break;
626 case 8:
627 if (var->transp.length != 0)
628 data |= WINCON1_BPPMODE_8BPP_1232;
629 else
630 data |= WINCON0_BPPMODE_8BPP_PALETTE;
631 data |= WINCONx_BURSTLEN_8WORD;
632 data |= WINCONx_BYTSWP;
633 break;
634 case 16:
635 if (var->transp.length != 0)
636 data |= WINCON1_BPPMODE_16BPP_A1555;
637 else
638 data |= WINCON0_BPPMODE_16BPP_565;
639 data |= WINCONx_HAWSWP;
640 data |= WINCONx_BURSTLEN_16WORD;
641 break;
642 case 24:
643 case 32:
644 if (var->red.length == 6) {
645 if (var->transp.length != 0)
646 data |= WINCON1_BPPMODE_19BPP_A1666;
647 else
648 data |= WINCON1_BPPMODE_18BPP_666;
InKi Dae39000d62009-06-16 15:34:27 -0700649 } else if (var->transp.length == 1)
650 data |= WINCON1_BPPMODE_25BPP_A1888
651 | WINCON1_BLD_PIX;
Jingoo Han4420dd22011-11-07 15:03:01 +0900652 else if ((var->transp.length == 4) ||
653 (var->transp.length == 8))
InKi Dae39000d62009-06-16 15:34:27 -0700654 data |= WINCON1_BPPMODE_28BPP_A4888
655 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
Ben Dooksec549a02009-03-31 15:25:39 -0700656 else
657 data |= WINCON0_BPPMODE_24BPP_888;
658
InKi Daedc8498c2010-08-10 18:02:32 -0700659 data |= WINCONx_WSWP;
Ben Dooksec549a02009-03-31 15:25:39 -0700660 data |= WINCONx_BURSTLEN_16WORD;
661 break;
662 }
663
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700664 /* Enable the colour keying for the window below this one */
InKi Dae39000d62009-06-16 15:34:27 -0700665 if (win_no > 0) {
666 u32 keycon0_data = 0, keycon1_data = 0;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700667 void __iomem *keycon = regs + sfb->variant.keycon;
InKi Dae39000d62009-06-16 15:34:27 -0700668
669 keycon0_data = ~(WxKEYCON0_KEYBL_EN |
670 WxKEYCON0_KEYEN_F |
671 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
672
673 keycon1_data = WxKEYCON1_COLVAL(0xffffff);
674
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700675 keycon += (win_no - 1) * 8;
676
677 writel(keycon0_data, keycon + WKEYCON0);
678 writel(keycon1_data, keycon + WKEYCON1);
InKi Dae39000d62009-06-16 15:34:27 -0700679 }
680
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700681 writel(data, regs + sfb->variant.wincon + (win_no * 4));
682 writel(0x0, regs + sfb->variant.winmap + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700683
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700684 shadow_protect_win(win, 0);
685
Ben Dooksec549a02009-03-31 15:25:39 -0700686 return 0;
687}
688
689/**
690 * s3c_fb_update_palette() - set or schedule a palette update.
691 * @sfb: The hardware information.
692 * @win: The window being updated.
693 * @reg: The palette index being changed.
694 * @value: The computed palette value.
695 *
696 * Change the value of a palette register, either by directly writing to
697 * the palette (this requires the palette RAM to be disconnected from the
698 * hardware whilst this is in progress) or schedule the update for later.
699 *
700 * At the moment, since we have no VSYNC interrupt support, we simply set
701 * the palette entry directly.
702 */
703static void s3c_fb_update_palette(struct s3c_fb *sfb,
704 struct s3c_fb_win *win,
705 unsigned int reg,
706 u32 value)
707{
708 void __iomem *palreg;
709 u32 palcon;
710
Ben Dooks50a55032010-08-10 18:02:33 -0700711 palreg = sfb->regs + sfb->variant.palette[win->index];
Ben Dooksec549a02009-03-31 15:25:39 -0700712
713 dev_dbg(sfb->dev, "%s: win %d, reg %d (%p): %08x\n",
714 __func__, win->index, reg, palreg, value);
715
716 win->palette_buffer[reg] = value;
717
718 palcon = readl(sfb->regs + WPALCON);
719 writel(palcon | WPALCON_PAL_UPDATE, sfb->regs + WPALCON);
720
Ben Dooks50a55032010-08-10 18:02:33 -0700721 if (win->variant.palette_16bpp)
722 writew(value, palreg + (reg * 2));
Ben Dooksec549a02009-03-31 15:25:39 -0700723 else
Ben Dooks50a55032010-08-10 18:02:33 -0700724 writel(value, palreg + (reg * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700725
726 writel(palcon, sfb->regs + WPALCON);
727}
728
729static inline unsigned int chan_to_field(unsigned int chan,
730 struct fb_bitfield *bf)
731{
732 chan &= 0xffff;
733 chan >>= 16 - bf->length;
734 return chan << bf->offset;
735}
736
737/**
738 * s3c_fb_setcolreg() - framebuffer layer request to change palette.
739 * @regno: The palette index to change.
740 * @red: The red field for the palette data.
741 * @green: The green field for the palette data.
742 * @blue: The blue field for the palette data.
743 * @trans: The transparency (alpha) field for the palette data.
744 * @info: The framebuffer being changed.
745 */
746static int s3c_fb_setcolreg(unsigned regno,
747 unsigned red, unsigned green, unsigned blue,
748 unsigned transp, struct fb_info *info)
749{
750 struct s3c_fb_win *win = info->par;
751 struct s3c_fb *sfb = win->parent;
752 unsigned int val;
753
754 dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
755 __func__, win->index, regno, red, green, blue);
756
757 switch (info->fix.visual) {
758 case FB_VISUAL_TRUECOLOR:
759 /* true-colour, use pseudo-palette */
760
761 if (regno < 16) {
762 u32 *pal = info->pseudo_palette;
763
764 val = chan_to_field(red, &info->var.red);
765 val |= chan_to_field(green, &info->var.green);
766 val |= chan_to_field(blue, &info->var.blue);
767
768 pal[regno] = val;
769 }
770 break;
771
772 case FB_VISUAL_PSEUDOCOLOR:
Ben Dooks50a55032010-08-10 18:02:33 -0700773 if (regno < win->variant.palette_sz) {
Ben Dooksec549a02009-03-31 15:25:39 -0700774 val = chan_to_field(red, &win->palette.r);
775 val |= chan_to_field(green, &win->palette.g);
776 val |= chan_to_field(blue, &win->palette.b);
777
778 s3c_fb_update_palette(sfb, win, regno, val);
779 }
780
781 break;
782
783 default:
784 return 1; /* unknown type */
785 }
786
787 return 0;
788}
789
790/**
Ben Dooksec549a02009-03-31 15:25:39 -0700791 * s3c_fb_blank() - blank or unblank the given window
792 * @blank_mode: The blank state from FB_BLANK_*
793 * @info: The framebuffer to blank.
794 *
795 * Framebuffer layer request to change the power state.
796 */
797static int s3c_fb_blank(int blank_mode, struct fb_info *info)
798{
799 struct s3c_fb_win *win = info->par;
800 struct s3c_fb *sfb = win->parent;
801 unsigned int index = win->index;
802 u32 wincon;
803
804 dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
805
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700806 wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700807
808 switch (blank_mode) {
809 case FB_BLANK_POWERDOWN:
810 wincon &= ~WINCONx_ENWIN;
811 sfb->enabled &= ~(1 << index);
812 /* fall through to FB_BLANK_NORMAL */
813
814 case FB_BLANK_NORMAL:
815 /* disable the DMA and display 0x0 (black) */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900816 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700817 writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700818 sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900819 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700820 break;
821
822 case FB_BLANK_UNBLANK:
Jingoo Hanff8c9102011-12-08 18:08:00 +0900823 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700824 writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900825 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700826 wincon |= WINCONx_ENWIN;
827 sfb->enabled |= (1 << index);
828 break;
829
830 case FB_BLANK_VSYNC_SUSPEND:
831 case FB_BLANK_HSYNC_SUSPEND:
832 default:
833 return 1;
834 }
835
Jingoo Hanff8c9102011-12-08 18:08:00 +0900836 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700837 writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900838 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700839
840 /* Check the enabled state to see if we need to be running the
841 * main LCD interface, as if there are no active windows then
842 * it is highly likely that we also do not need to output
843 * anything.
844 */
845
846 /* We could do something like the following code, but the current
847 * system of using framebuffer events means that we cannot make
848 * the distinction between just window 0 being inactive and all
849 * the windows being down.
850 *
851 * s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
852 */
853
854 /* we're stuck with this until we can do something about overriding
855 * the power control using the blanking event for a single fb.
856 */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900857 if (index == sfb->pdata->default_win) {
858 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700859 s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
Jingoo Hanff8c9102011-12-08 18:08:00 +0900860 shadow_protect_win(win, 0);
861 }
Ben Dooksec549a02009-03-31 15:25:39 -0700862
863 return 0;
864}
865
Pawel Osciak067b2262010-08-10 18:02:38 -0700866/**
867 * s3c_fb_pan_display() - Pan the display.
868 *
869 * Note that the offsets can be written to the device at any time, as their
870 * values are latched at each vsync automatically. This also means that only
871 * the last call to this function will have any effect on next vsync, but
872 * there is no need to sleep waiting for it to prevent tearing.
873 *
874 * @var: The screen information to verify.
875 * @info: The framebuffer device.
876 */
877static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
878 struct fb_info *info)
879{
880 struct s3c_fb_win *win = info->par;
881 struct s3c_fb *sfb = win->parent;
882 void __iomem *buf = sfb->regs + win->index * 8;
883 unsigned int start_boff, end_boff;
884
885 /* Offset in bytes to the start of the displayed area */
886 start_boff = var->yoffset * info->fix.line_length;
887 /* X offset depends on the current bpp */
888 if (info->var.bits_per_pixel >= 8) {
889 start_boff += var->xoffset * (info->var.bits_per_pixel >> 3);
890 } else {
891 switch (info->var.bits_per_pixel) {
892 case 4:
893 start_boff += var->xoffset >> 1;
894 break;
895 case 2:
896 start_boff += var->xoffset >> 2;
897 break;
898 case 1:
899 start_boff += var->xoffset >> 3;
900 break;
901 default:
902 dev_err(sfb->dev, "invalid bpp\n");
903 return -EINVAL;
904 }
905 }
906 /* Offset in bytes to the end of the displayed area */
Laurent Pinchartd8e7a742011-05-25 11:34:52 +0200907 end_boff = start_boff + info->var.yres * info->fix.line_length;
Pawel Osciak067b2262010-08-10 18:02:38 -0700908
909 /* Temporarily turn off per-vsync update from shadow registers until
910 * both start and end addresses are updated to prevent corruption */
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700911 shadow_protect_win(win, 1);
Pawel Osciak067b2262010-08-10 18:02:38 -0700912
913 writel(info->fix.smem_start + start_boff, buf + sfb->variant.buf_start);
914 writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
915
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700916 shadow_protect_win(win, 0);
Pawel Osciak067b2262010-08-10 18:02:38 -0700917
918 return 0;
919}
920
Pawel Osciakefdc8462010-08-10 18:02:38 -0700921/**
922 * s3c_fb_enable_irq() - enable framebuffer interrupts
923 * @sfb: main hardware state
924 */
925static void s3c_fb_enable_irq(struct s3c_fb *sfb)
926{
927 void __iomem *regs = sfb->regs;
928 u32 irq_ctrl_reg;
929
930 if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
931 /* IRQ disabled, enable it */
932 irq_ctrl_reg = readl(regs + VIDINTCON0);
933
934 irq_ctrl_reg |= VIDINTCON0_INT_ENABLE;
935 irq_ctrl_reg |= VIDINTCON0_INT_FRAME;
936
937 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL0_MASK;
938 irq_ctrl_reg |= VIDINTCON0_FRAMESEL0_VSYNC;
939 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL1_MASK;
940 irq_ctrl_reg |= VIDINTCON0_FRAMESEL1_NONE;
941
942 writel(irq_ctrl_reg, regs + VIDINTCON0);
943 }
944}
945
946/**
947 * s3c_fb_disable_irq() - disable framebuffer interrupts
948 * @sfb: main hardware state
949 */
950static void s3c_fb_disable_irq(struct s3c_fb *sfb)
951{
952 void __iomem *regs = sfb->regs;
953 u32 irq_ctrl_reg;
954
955 if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
956 /* IRQ enabled, disable it */
957 irq_ctrl_reg = readl(regs + VIDINTCON0);
958
959 irq_ctrl_reg &= ~VIDINTCON0_INT_FRAME;
960 irq_ctrl_reg &= ~VIDINTCON0_INT_ENABLE;
961
962 writel(irq_ctrl_reg, regs + VIDINTCON0);
963 }
964}
965
966static irqreturn_t s3c_fb_irq(int irq, void *dev_id)
967{
968 struct s3c_fb *sfb = dev_id;
969 void __iomem *regs = sfb->regs;
970 u32 irq_sts_reg;
971
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000972 spin_lock(&sfb->slock);
973
Pawel Osciakefdc8462010-08-10 18:02:38 -0700974 irq_sts_reg = readl(regs + VIDINTCON1);
975
976 if (irq_sts_reg & VIDINTCON1_INT_FRAME) {
977
978 /* VSYNC interrupt, accept it */
979 writel(VIDINTCON1_INT_FRAME, regs + VIDINTCON1);
980
981 sfb->vsync_info.count++;
982 wake_up_interruptible(&sfb->vsync_info.wait);
983 }
984
985 /* We only support waiting for VSYNC for now, so it's safe
986 * to always disable irqs here.
987 */
988 s3c_fb_disable_irq(sfb);
989
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000990 spin_unlock(&sfb->slock);
Pawel Osciakefdc8462010-08-10 18:02:38 -0700991 return IRQ_HANDLED;
992}
993
994/**
995 * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
996 * @sfb: main hardware state
997 * @crtc: head index.
998 */
999static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
1000{
1001 unsigned long count;
1002 int ret;
1003
1004 if (crtc != 0)
1005 return -ENODEV;
1006
1007 count = sfb->vsync_info.count;
1008 s3c_fb_enable_irq(sfb);
1009 ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
1010 count != sfb->vsync_info.count,
1011 msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
1012 if (ret == 0)
1013 return -ETIMEDOUT;
1014
1015 return 0;
1016}
1017
1018static int s3c_fb_ioctl(struct fb_info *info, unsigned int cmd,
1019 unsigned long arg)
1020{
1021 struct s3c_fb_win *win = info->par;
1022 struct s3c_fb *sfb = win->parent;
1023 int ret;
1024 u32 crtc;
1025
1026 switch (cmd) {
1027 case FBIO_WAITFORVSYNC:
1028 if (get_user(crtc, (u32 __user *)arg)) {
1029 ret = -EFAULT;
1030 break;
1031 }
1032
1033 ret = s3c_fb_wait_for_vsync(sfb, crtc);
1034 break;
1035 default:
1036 ret = -ENOTTY;
1037 }
1038
1039 return ret;
1040}
1041
Mark Brownfe05f8b2011-12-27 14:16:07 +00001042static int s3c_fb_open(struct fb_info *info, int user)
1043{
1044 struct s3c_fb_win *win = info->par;
1045 struct s3c_fb *sfb = win->parent;
1046
1047 pm_runtime_get_sync(sfb->dev);
1048
1049 return 0;
1050}
1051
1052static int s3c_fb_release(struct fb_info *info, int user)
1053{
1054 struct s3c_fb_win *win = info->par;
1055 struct s3c_fb *sfb = win->parent;
1056
1057 pm_runtime_put_sync(sfb->dev);
1058
1059 return 0;
1060}
1061
Ben Dooksec549a02009-03-31 15:25:39 -07001062static struct fb_ops s3c_fb_ops = {
1063 .owner = THIS_MODULE,
Mark Brownfe05f8b2011-12-27 14:16:07 +00001064 .fb_open = s3c_fb_open,
1065 .fb_release = s3c_fb_release,
Ben Dooksec549a02009-03-31 15:25:39 -07001066 .fb_check_var = s3c_fb_check_var,
1067 .fb_set_par = s3c_fb_set_par,
1068 .fb_blank = s3c_fb_blank,
1069 .fb_setcolreg = s3c_fb_setcolreg,
1070 .fb_fillrect = cfb_fillrect,
1071 .fb_copyarea = cfb_copyarea,
1072 .fb_imageblit = cfb_imageblit,
Pawel Osciak067b2262010-08-10 18:02:38 -07001073 .fb_pan_display = s3c_fb_pan_display,
Pawel Osciakefdc8462010-08-10 18:02:38 -07001074 .fb_ioctl = s3c_fb_ioctl,
Ben Dooksec549a02009-03-31 15:25:39 -07001075};
1076
1077/**
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001078 * s3c_fb_missing_pixclock() - calculates pixel clock
1079 * @mode: The video mode to change.
1080 *
1081 * Calculate the pixel clock when none has been given through platform data.
1082 */
1083static void __devinit s3c_fb_missing_pixclock(struct fb_videomode *mode)
1084{
1085 u64 pixclk = 1000000000000ULL;
1086 u32 div;
1087
1088 div = mode->left_margin + mode->hsync_len + mode->right_margin +
1089 mode->xres;
1090 div *= mode->upper_margin + mode->vsync_len + mode->lower_margin +
1091 mode->yres;
1092 div *= mode->refresh ? : 60;
1093
1094 do_div(pixclk, div);
1095
1096 mode->pixclock = pixclk;
1097}
1098
1099/**
Ben Dooksec549a02009-03-31 15:25:39 -07001100 * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1101 * @sfb: The base resources for the hardware.
1102 * @win: The window to initialise memory for.
1103 *
1104 * Allocate memory for the given framebuffer.
1105 */
1106static int __devinit s3c_fb_alloc_memory(struct s3c_fb *sfb,
1107 struct s3c_fb_win *win)
1108{
1109 struct s3c_fb_pd_win *windata = win->windata;
1110 unsigned int real_size, virt_size, size;
1111 struct fb_info *fbi = win->fbinfo;
1112 dma_addr_t map_dma;
1113
1114 dev_dbg(sfb->dev, "allocating memory for display\n");
1115
1116 real_size = windata->win_mode.xres * windata->win_mode.yres;
1117 virt_size = windata->virtual_x * windata->virtual_y;
1118
1119 dev_dbg(sfb->dev, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
1120 real_size, windata->win_mode.xres, windata->win_mode.yres,
1121 virt_size, windata->virtual_x, windata->virtual_y);
1122
1123 size = (real_size > virt_size) ? real_size : virt_size;
1124 size *= (windata->max_bpp > 16) ? 32 : windata->max_bpp;
1125 size /= 8;
1126
1127 fbi->fix.smem_len = size;
1128 size = PAGE_ALIGN(size);
1129
1130 dev_dbg(sfb->dev, "want %u bytes for window\n", size);
1131
1132 fbi->screen_base = dma_alloc_writecombine(sfb->dev, size,
1133 &map_dma, GFP_KERNEL);
1134 if (!fbi->screen_base)
1135 return -ENOMEM;
1136
1137 dev_dbg(sfb->dev, "mapped %x to %p\n",
1138 (unsigned int)map_dma, fbi->screen_base);
1139
1140 memset(fbi->screen_base, 0x0, size);
1141 fbi->fix.smem_start = map_dma;
1142
1143 return 0;
1144}
1145
1146/**
1147 * s3c_fb_free_memory() - free the display memory for the given window
1148 * @sfb: The base resources for the hardware.
1149 * @win: The window to free the display memory for.
1150 *
1151 * Free the display memory allocated by s3c_fb_alloc_memory().
1152 */
1153static void s3c_fb_free_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
1154{
1155 struct fb_info *fbi = win->fbinfo;
1156
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001157 if (fbi->screen_base)
1158 dma_free_writecombine(sfb->dev, PAGE_ALIGN(fbi->fix.smem_len),
Ben Dooksec549a02009-03-31 15:25:39 -07001159 fbi->screen_base, fbi->fix.smem_start);
1160}
1161
1162/**
1163 * s3c_fb_release_win() - release resources for a framebuffer window.
1164 * @win: The window to cleanup the resources for.
1165 *
1166 * Release the resources that where claimed for the hardware window,
1167 * such as the framebuffer instance and any memory claimed for it.
1168 */
1169static void s3c_fb_release_win(struct s3c_fb *sfb, struct s3c_fb_win *win)
1170{
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001171 u32 data;
1172
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001173 if (win->fbinfo) {
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001174 if (sfb->variant.has_shadowcon) {
1175 data = readl(sfb->regs + SHADOWCON);
1176 data &= ~SHADOWCON_CHx_ENABLE(win->index);
1177 data &= ~SHADOWCON_CHx_LOCAL_ENABLE(win->index);
1178 writel(data, sfb->regs + SHADOWCON);
1179 }
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001180 unregister_framebuffer(win->fbinfo);
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001181 if (win->fbinfo->cmap.len)
1182 fb_dealloc_cmap(&win->fbinfo->cmap);
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001183 s3c_fb_free_memory(sfb, win);
1184 framebuffer_release(win->fbinfo);
1185 }
Ben Dooksec549a02009-03-31 15:25:39 -07001186}
1187
1188/**
1189 * s3c_fb_probe_win() - register an hardware window
1190 * @sfb: The base resources for the hardware
Ben Dooks50a55032010-08-10 18:02:33 -07001191 * @variant: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -07001192 * @res: Pointer to where to place the resultant window.
1193 *
1194 * Allocate and do the basic initialisation for one of the hardware's graphics
1195 * windows.
1196 */
1197static int __devinit s3c_fb_probe_win(struct s3c_fb *sfb, unsigned int win_no,
Ben Dooks50a55032010-08-10 18:02:33 -07001198 struct s3c_fb_win_variant *variant,
Ben Dooksec549a02009-03-31 15:25:39 -07001199 struct s3c_fb_win **res)
1200{
1201 struct fb_var_screeninfo *var;
1202 struct fb_videomode *initmode;
1203 struct s3c_fb_pd_win *windata;
1204 struct s3c_fb_win *win;
1205 struct fb_info *fbinfo;
1206 int palette_size;
1207 int ret;
1208
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001209 dev_dbg(sfb->dev, "probing window %d, variant %p\n", win_no, variant);
Ben Dooksec549a02009-03-31 15:25:39 -07001210
Pawel Osciakefdc8462010-08-10 18:02:38 -07001211 init_waitqueue_head(&sfb->vsync_info.wait);
1212
Ben Dooks50a55032010-08-10 18:02:33 -07001213 palette_size = variant->palette_sz * 4;
Ben Dooksec549a02009-03-31 15:25:39 -07001214
1215 fbinfo = framebuffer_alloc(sizeof(struct s3c_fb_win) +
1216 palette_size * sizeof(u32), sfb->dev);
1217 if (!fbinfo) {
1218 dev_err(sfb->dev, "failed to allocate framebuffer\n");
1219 return -ENOENT;
1220 }
1221
1222 windata = sfb->pdata->win[win_no];
1223 initmode = &windata->win_mode;
1224
1225 WARN_ON(windata->max_bpp == 0);
1226 WARN_ON(windata->win_mode.xres == 0);
1227 WARN_ON(windata->win_mode.yres == 0);
1228
1229 win = fbinfo->par;
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001230 *res = win;
Ben Dooksec549a02009-03-31 15:25:39 -07001231 var = &fbinfo->var;
Ben Dooks50a55032010-08-10 18:02:33 -07001232 win->variant = *variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001233 win->fbinfo = fbinfo;
1234 win->parent = sfb;
1235 win->windata = windata;
1236 win->index = win_no;
1237 win->palette_buffer = (u32 *)(win + 1);
1238
1239 ret = s3c_fb_alloc_memory(sfb, win);
1240 if (ret) {
1241 dev_err(sfb->dev, "failed to allocate display memory\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001242 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001243 }
1244
1245 /* setup the r/b/g positions for the window's palette */
Ben Dooksbc2da1b2010-08-10 18:02:34 -07001246 if (win->variant.palette_16bpp) {
1247 /* Set RGB 5:6:5 as default */
1248 win->palette.r.offset = 11;
1249 win->palette.r.length = 5;
1250 win->palette.g.offset = 5;
1251 win->palette.g.length = 6;
1252 win->palette.b.offset = 0;
1253 win->palette.b.length = 5;
1254
1255 } else {
1256 /* Set 8bpp or 8bpp and 1bit alpha */
1257 win->palette.r.offset = 16;
1258 win->palette.r.length = 8;
1259 win->palette.g.offset = 8;
1260 win->palette.g.length = 8;
1261 win->palette.b.offset = 0;
1262 win->palette.b.length = 8;
1263 }
Ben Dooksec549a02009-03-31 15:25:39 -07001264
1265 /* setup the initial video mode from the window */
1266 fb_videomode_to_var(&fbinfo->var, initmode);
1267
1268 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
1269 fbinfo->fix.accel = FB_ACCEL_NONE;
1270 fbinfo->var.activate = FB_ACTIVATE_NOW;
1271 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
1272 fbinfo->var.bits_per_pixel = windata->default_bpp;
1273 fbinfo->fbops = &s3c_fb_ops;
1274 fbinfo->flags = FBINFO_FLAG_DEFAULT;
1275 fbinfo->pseudo_palette = &win->pseudo_palette;
1276
1277 /* prepare to actually start the framebuffer */
1278
1279 ret = s3c_fb_check_var(&fbinfo->var, fbinfo);
1280 if (ret < 0) {
1281 dev_err(sfb->dev, "check_var failed on initial video params\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001282 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001283 }
1284
1285 /* create initial colour map */
1286
Ben Dooks50a55032010-08-10 18:02:33 -07001287 ret = fb_alloc_cmap(&fbinfo->cmap, win->variant.palette_sz, 1);
Ben Dooksec549a02009-03-31 15:25:39 -07001288 if (ret == 0)
1289 fb_set_cmap(&fbinfo->cmap, fbinfo);
1290 else
1291 dev_err(sfb->dev, "failed to allocate fb cmap\n");
1292
1293 s3c_fb_set_par(fbinfo);
1294
1295 dev_dbg(sfb->dev, "about to register framebuffer\n");
1296
1297 /* run the check_var and set_par on our configuration. */
1298
1299 ret = register_framebuffer(fbinfo);
1300 if (ret < 0) {
1301 dev_err(sfb->dev, "failed to register framebuffer\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001302 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001303 }
1304
Ben Dooksec549a02009-03-31 15:25:39 -07001305 dev_info(sfb->dev, "window %d: fb %s\n", win_no, fbinfo->fix.id);
1306
1307 return 0;
Ben Dooksec549a02009-03-31 15:25:39 -07001308}
1309
1310/**
1311 * s3c_fb_clear_win() - clear hardware window registers.
1312 * @sfb: The base resources for the hardware.
1313 * @win: The window to process.
1314 *
1315 * Reset the specific window registers to a known state.
1316 */
1317static void s3c_fb_clear_win(struct s3c_fb *sfb, int win)
1318{
1319 void __iomem *regs = sfb->regs;
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001320 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001321
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001322 writel(0, regs + sfb->variant.wincon + (win * 4));
1323 writel(0, regs + VIDOSD_A(win, sfb->variant));
1324 writel(0, regs + VIDOSD_B(win, sfb->variant));
1325 writel(0, regs + VIDOSD_C(win, sfb->variant));
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001326 reg = readl(regs + SHADOWCON);
1327 writel(reg & ~SHADOWCON_WINx_PROTECT(win), regs + SHADOWCON);
Ben Dooksec549a02009-03-31 15:25:39 -07001328}
1329
1330static int __devinit s3c_fb_probe(struct platform_device *pdev)
1331{
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001332 const struct platform_device_id *platid;
Ben Dooks50a55032010-08-10 18:02:33 -07001333 struct s3c_fb_driverdata *fbdrv;
Ben Dooksec549a02009-03-31 15:25:39 -07001334 struct device *dev = &pdev->dev;
1335 struct s3c_fb_platdata *pd;
1336 struct s3c_fb *sfb;
1337 struct resource *res;
1338 int win;
1339 int ret = 0;
1340
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001341 platid = platform_get_device_id(pdev);
1342 fbdrv = (struct s3c_fb_driverdata *)platid->driver_data;
Ben Dooks50a55032010-08-10 18:02:33 -07001343
1344 if (fbdrv->variant.nr_windows > S3C_FB_MAX_WIN) {
1345 dev_err(dev, "too many windows, cannot attach\n");
1346 return -EINVAL;
1347 }
1348
Ben Dooksec549a02009-03-31 15:25:39 -07001349 pd = pdev->dev.platform_data;
1350 if (!pd) {
1351 dev_err(dev, "no platform data specified\n");
1352 return -EINVAL;
1353 }
1354
1355 sfb = kzalloc(sizeof(struct s3c_fb), GFP_KERNEL);
1356 if (!sfb) {
1357 dev_err(dev, "no memory for framebuffers\n");
1358 return -ENOMEM;
1359 }
1360
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001361 dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
1362
Ben Dooksec549a02009-03-31 15:25:39 -07001363 sfb->dev = dev;
1364 sfb->pdata = pd;
Ben Dooks50a55032010-08-10 18:02:33 -07001365 sfb->variant = fbdrv->variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001366
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001367 spin_lock_init(&sfb->slock);
1368
Ben Dooksec549a02009-03-31 15:25:39 -07001369 sfb->bus_clk = clk_get(dev, "lcd");
1370 if (IS_ERR(sfb->bus_clk)) {
1371 dev_err(dev, "failed to get bus clock\n");
axel lin942b8d02011-02-11 08:51:10 +00001372 ret = PTR_ERR(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001373 goto err_sfb;
1374 }
1375
1376 clk_enable(sfb->bus_clk);
1377
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001378 if (!sfb->variant.has_clksel) {
1379 sfb->lcd_clk = clk_get(dev, "sclk_fimd");
1380 if (IS_ERR(sfb->lcd_clk)) {
1381 dev_err(dev, "failed to get lcd clock\n");
1382 ret = PTR_ERR(sfb->lcd_clk);
1383 goto err_bus_clk;
1384 }
1385
1386 clk_enable(sfb->lcd_clk);
1387 }
1388
Jingoo Han49592122010-12-17 16:45:46 +09001389 pm_runtime_enable(sfb->dev);
1390
Ben Dooksec549a02009-03-31 15:25:39 -07001391 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1392 if (!res) {
1393 dev_err(dev, "failed to find registers\n");
1394 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001395 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001396 }
1397
1398 sfb->regs_res = request_mem_region(res->start, resource_size(res),
1399 dev_name(dev));
1400 if (!sfb->regs_res) {
1401 dev_err(dev, "failed to claim register region\n");
1402 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001403 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001404 }
1405
1406 sfb->regs = ioremap(res->start, resource_size(res));
1407 if (!sfb->regs) {
1408 dev_err(dev, "failed to map registers\n");
1409 ret = -ENXIO;
1410 goto err_req_region;
1411 }
1412
Pawel Osciakefdc8462010-08-10 18:02:38 -07001413 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1414 if (!res) {
1415 dev_err(dev, "failed to acquire irq resource\n");
1416 ret = -ENOENT;
1417 goto err_ioremap;
1418 }
1419 sfb->irq_no = res->start;
1420 ret = request_irq(sfb->irq_no, s3c_fb_irq,
1421 0, "s3c_fb", sfb);
1422 if (ret) {
1423 dev_err(dev, "irq request failed\n");
1424 goto err_ioremap;
1425 }
1426
Ben Dooksec549a02009-03-31 15:25:39 -07001427 dev_dbg(dev, "got resources (regs %p), probing windows\n", sfb->regs);
1428
Jingoo Han49592122010-12-17 16:45:46 +09001429 platform_set_drvdata(pdev, sfb);
1430 pm_runtime_get_sync(sfb->dev);
1431
Ben Dooksec549a02009-03-31 15:25:39 -07001432 /* setup gpio and output polarity controls */
1433
1434 pd->setup_gpio();
1435
1436 writel(pd->vidcon1, sfb->regs + VIDCON1);
1437
1438 /* zero all windows before we do anything */
1439
Ben Dooks50a55032010-08-10 18:02:33 -07001440 for (win = 0; win < fbdrv->variant.nr_windows; win++)
Ben Dooksec549a02009-03-31 15:25:39 -07001441 s3c_fb_clear_win(sfb, win);
1442
Ben Dooks94947032010-08-10 18:02:32 -07001443 /* initialise colour key controls */
Ben Dooks50a55032010-08-10 18:02:33 -07001444 for (win = 0; win < (fbdrv->variant.nr_windows - 1); win++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001445 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1446
1447 regs += (win * 8);
1448 writel(0xffffff, regs + WKEYCON0);
1449 writel(0xffffff, regs + WKEYCON1);
Ben Dooks94947032010-08-10 18:02:32 -07001450 }
1451
Ben Dooksec549a02009-03-31 15:25:39 -07001452 /* we have the register setup, start allocating framebuffers */
1453
Ben Dooks50a55032010-08-10 18:02:33 -07001454 for (win = 0; win < fbdrv->variant.nr_windows; win++) {
Ben Dooksec549a02009-03-31 15:25:39 -07001455 if (!pd->win[win])
1456 continue;
1457
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001458 if (!pd->win[win]->win_mode.pixclock)
1459 s3c_fb_missing_pixclock(&pd->win[win]->win_mode);
1460
Ben Dooks50a55032010-08-10 18:02:33 -07001461 ret = s3c_fb_probe_win(sfb, win, fbdrv->win[win],
1462 &sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001463 if (ret < 0) {
1464 dev_err(dev, "failed to create window %d\n", win);
1465 for (; win >= 0; win--)
1466 s3c_fb_release_win(sfb, sfb->windows[win]);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001467 goto err_irq;
Ben Dooksec549a02009-03-31 15:25:39 -07001468 }
1469 }
1470
1471 platform_set_drvdata(pdev, sfb);
Mark Brownfe05f8b2011-12-27 14:16:07 +00001472 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001473
1474 return 0;
1475
Pawel Osciakefdc8462010-08-10 18:02:38 -07001476err_irq:
1477 free_irq(sfb->irq_no, sfb);
1478
Ben Dooksec549a02009-03-31 15:25:39 -07001479err_ioremap:
1480 iounmap(sfb->regs);
1481
1482err_req_region:
Julia Lawall683e7cd2011-04-22 20:11:21 +00001483 release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
Ben Dooksec549a02009-03-31 15:25:39 -07001484
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001485err_lcd_clk:
1486 if (!sfb->variant.has_clksel) {
1487 clk_disable(sfb->lcd_clk);
1488 clk_put(sfb->lcd_clk);
1489 }
1490
1491err_bus_clk:
Ben Dooksec549a02009-03-31 15:25:39 -07001492 clk_disable(sfb->bus_clk);
1493 clk_put(sfb->bus_clk);
1494
1495err_sfb:
1496 kfree(sfb);
1497 return ret;
1498}
1499
1500/**
1501 * s3c_fb_remove() - Cleanup on module finalisation
1502 * @pdev: The platform device we are bound to.
1503 *
1504 * Shutdown and then release all the resources that the driver allocated
1505 * on initialisation.
1506 */
1507static int __devexit s3c_fb_remove(struct platform_device *pdev)
1508{
1509 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1510 int win;
1511
Mark Brownfe05f8b2011-12-27 14:16:07 +00001512 pm_runtime_get_sync(sfb->dev);
1513
Pawel Osciakc42b1102009-07-29 15:02:10 -07001514 for (win = 0; win < S3C_FB_MAX_WIN; win++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001515 if (sfb->windows[win])
1516 s3c_fb_release_win(sfb, sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001517
Pawel Osciakefdc8462010-08-10 18:02:38 -07001518 free_irq(sfb->irq_no, sfb);
1519
Ben Dooksec549a02009-03-31 15:25:39 -07001520 iounmap(sfb->regs);
1521
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001522 if (!sfb->variant.has_clksel) {
1523 clk_disable(sfb->lcd_clk);
1524 clk_put(sfb->lcd_clk);
1525 }
1526
Ben Dooksec549a02009-03-31 15:25:39 -07001527 clk_disable(sfb->bus_clk);
1528 clk_put(sfb->bus_clk);
1529
Julia Lawall683e7cd2011-04-22 20:11:21 +00001530 release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
Ben Dooksec549a02009-03-31 15:25:39 -07001531
Jingoo Han49592122010-12-17 16:45:46 +09001532 pm_runtime_put_sync(sfb->dev);
1533 pm_runtime_disable(sfb->dev);
1534
Jingoo Han72ba4cb2011-06-09 04:26:31 +00001535 kfree(sfb);
Ben Dooksec549a02009-03-31 15:25:39 -07001536 return 0;
1537}
1538
Mark Brownfe05f8b2011-12-27 14:16:07 +00001539#ifdef CONFIG_PM
Jingoo Han49592122010-12-17 16:45:46 +09001540static int s3c_fb_suspend(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001541{
Jingoo Han49592122010-12-17 16:45:46 +09001542 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001543 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1544 struct s3c_fb_win *win;
1545 int win_no;
1546
Pawel Osciakc42b1102009-07-29 15:02:10 -07001547 for (win_no = S3C_FB_MAX_WIN - 1; win_no >= 0; win_no--) {
Ben Dooksec549a02009-03-31 15:25:39 -07001548 win = sfb->windows[win_no];
1549 if (!win)
1550 continue;
1551
1552 /* use the blank function to push into power-down */
1553 s3c_fb_blank(FB_BLANK_POWERDOWN, win->fbinfo);
1554 }
1555
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001556 if (!sfb->variant.has_clksel)
1557 clk_disable(sfb->lcd_clk);
1558
Ben Dooksec549a02009-03-31 15:25:39 -07001559 clk_disable(sfb->bus_clk);
1560 return 0;
1561}
1562
Jingoo Han49592122010-12-17 16:45:46 +09001563static int s3c_fb_resume(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001564{
Jingoo Han49592122010-12-17 16:45:46 +09001565 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001566 struct s3c_fb *sfb = platform_get_drvdata(pdev);
Marek Szyprowski17663e52009-05-28 14:34:35 -07001567 struct s3c_fb_platdata *pd = sfb->pdata;
Ben Dooksec549a02009-03-31 15:25:39 -07001568 struct s3c_fb_win *win;
1569 int win_no;
1570
1571 clk_enable(sfb->bus_clk);
1572
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001573 if (!sfb->variant.has_clksel)
1574 clk_enable(sfb->lcd_clk);
1575
Jingoo Han6aa96812011-05-24 08:55:31 +00001576 /* setup gpio and output polarity controls */
1577 pd->setup_gpio();
Marek Szyprowski17663e52009-05-28 14:34:35 -07001578 writel(pd->vidcon1, sfb->regs + VIDCON1);
1579
1580 /* zero all windows before we do anything */
Ben Dooks50a55032010-08-10 18:02:33 -07001581 for (win_no = 0; win_no < sfb->variant.nr_windows; win_no++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001582 s3c_fb_clear_win(sfb, win_no);
1583
Ben Dooks50a55032010-08-10 18:02:33 -07001584 for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001585 void __iomem *regs = sfb->regs + sfb->variant.keycon;
Jingoo Hanff8c9102011-12-08 18:08:00 +09001586 win = sfb->windows[win_no];
1587 if (!win)
1588 continue;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001589
Jingoo Hanff8c9102011-12-08 18:08:00 +09001590 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001591 regs += (win_no * 8);
1592 writel(0xffffff, regs + WKEYCON0);
1593 writel(0xffffff, regs + WKEYCON1);
Jingoo Hanff8c9102011-12-08 18:08:00 +09001594 shadow_protect_win(win, 0);
Ben Dooks94947032010-08-10 18:02:32 -07001595 }
1596
Marek Szyprowski17663e52009-05-28 14:34:35 -07001597 /* restore framebuffers */
Ben Dooksec549a02009-03-31 15:25:39 -07001598 for (win_no = 0; win_no < S3C_FB_MAX_WIN; win_no++) {
1599 win = sfb->windows[win_no];
1600 if (!win)
1601 continue;
1602
1603 dev_dbg(&pdev->dev, "resuming window %d\n", win_no);
1604 s3c_fb_set_par(win->fbinfo);
1605 }
1606
1607 return 0;
1608}
Mark Brownfe05f8b2011-12-27 14:16:07 +00001609#else
1610#define s3c_fb_suspend NULL
1611#define s3c_fb_resume NULL
Ben Dooksec549a02009-03-31 15:25:39 -07001612#endif
1613
Ben Dooks50a55032010-08-10 18:02:33 -07001614
1615#define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1616#define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1617
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001618static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
Ben Dooks50a55032010-08-10 18:02:33 -07001619 [0] = {
1620 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001621 .osd_size_off = 0x8,
Ben Dooks50a55032010-08-10 18:02:33 -07001622 .palette_sz = 256,
Jingoo Hancd74eba2011-04-22 07:09:40 +00001623 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1624 VALID_BPP(18) | VALID_BPP(24)),
Ben Dooks50a55032010-08-10 18:02:33 -07001625 },
1626 [1] = {
1627 .has_osd_c = 1,
1628 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001629 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001630 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001631 .palette_sz = 256,
1632 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1633 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001634 VALID_BPP(24) | VALID_BPP(25) |
1635 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001636 },
1637 [2] = {
1638 .has_osd_c = 1,
1639 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001640 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001641 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001642 .palette_sz = 16,
1643 .palette_16bpp = 1,
1644 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1645 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001646 VALID_BPP(24) | VALID_BPP(25) |
1647 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001648 },
1649 [3] = {
1650 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001651 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001652 .palette_sz = 16,
1653 .palette_16bpp = 1,
1654 .valid_bpp = (VALID_BPP124 | VALID_BPP(16) |
1655 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001656 VALID_BPP(24) | VALID_BPP(25) |
1657 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001658 },
1659 [4] = {
1660 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001661 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001662 .palette_sz = 4,
1663 .palette_16bpp = 1,
1664 .valid_bpp = (VALID_BPP(1) | VALID_BPP(2) |
1665 VALID_BPP(16) | VALID_BPP(18) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001666 VALID_BPP(19) | VALID_BPP(24) |
1667 VALID_BPP(25) | VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001668 },
1669};
1670
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001671static struct s3c_fb_win_variant s3c_fb_data_s5p_wins[] = {
1672 [0] = {
1673 .has_osd_c = 1,
1674 .osd_size_off = 0x8,
1675 .palette_sz = 256,
1676 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1677 VALID_BPP(15) | VALID_BPP(16) |
1678 VALID_BPP(18) | VALID_BPP(19) |
1679 VALID_BPP(24) | VALID_BPP(25) |
1680 VALID_BPP(32)),
1681 },
1682 [1] = {
1683 .has_osd_c = 1,
1684 .has_osd_d = 1,
1685 .osd_size_off = 0xc,
1686 .has_osd_alpha = 1,
1687 .palette_sz = 256,
1688 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1689 VALID_BPP(15) | VALID_BPP(16) |
1690 VALID_BPP(18) | VALID_BPP(19) |
1691 VALID_BPP(24) | VALID_BPP(25) |
1692 VALID_BPP(32)),
1693 },
1694 [2] = {
1695 .has_osd_c = 1,
1696 .has_osd_d = 1,
1697 .osd_size_off = 0xc,
1698 .has_osd_alpha = 1,
1699 .palette_sz = 256,
1700 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1701 VALID_BPP(15) | VALID_BPP(16) |
1702 VALID_BPP(18) | VALID_BPP(19) |
1703 VALID_BPP(24) | VALID_BPP(25) |
1704 VALID_BPP(32)),
1705 },
1706 [3] = {
1707 .has_osd_c = 1,
1708 .has_osd_alpha = 1,
1709 .palette_sz = 256,
1710 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1711 VALID_BPP(15) | VALID_BPP(16) |
1712 VALID_BPP(18) | VALID_BPP(19) |
1713 VALID_BPP(24) | VALID_BPP(25) |
1714 VALID_BPP(32)),
1715 },
1716 [4] = {
1717 .has_osd_c = 1,
1718 .has_osd_alpha = 1,
1719 .palette_sz = 256,
1720 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1721 VALID_BPP(15) | VALID_BPP(16) |
1722 VALID_BPP(18) | VALID_BPP(19) |
1723 VALID_BPP(24) | VALID_BPP(25) |
1724 VALID_BPP(32)),
1725 },
1726};
1727
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001728static struct s3c_fb_driverdata s3c_fb_data_64xx = {
Ben Dooks50a55032010-08-10 18:02:33 -07001729 .variant = {
1730 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001731 .vidtcon = VIDTCON0,
1732 .wincon = WINCON(0),
1733 .winmap = WINxMAP(0),
1734 .keycon = WKEYCON,
1735 .osd = VIDOSD_BASE,
1736 .osd_stride = 16,
1737 .buf_start = VIDW_BUF_START(0),
1738 .buf_size = VIDW_BUF_SIZE(0),
1739 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001740
1741 .palette = {
1742 [0] = 0x400,
1743 [1] = 0x800,
1744 [2] = 0x300,
1745 [3] = 0x320,
1746 [4] = 0x340,
1747 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001748
1749 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001750 .has_clksel = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001751 },
1752 .win[0] = &s3c_fb_data_64xx_wins[0],
1753 .win[1] = &s3c_fb_data_64xx_wins[1],
1754 .win[2] = &s3c_fb_data_64xx_wins[2],
1755 .win[3] = &s3c_fb_data_64xx_wins[3],
1756 .win[4] = &s3c_fb_data_64xx_wins[4],
1757};
1758
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001759static struct s3c_fb_driverdata s3c_fb_data_s5pc100 = {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001760 .variant = {
1761 .nr_windows = 5,
1762 .vidtcon = VIDTCON0,
1763 .wincon = WINCON(0),
1764 .winmap = WINxMAP(0),
1765 .keycon = WKEYCON,
1766 .osd = VIDOSD_BASE,
1767 .osd_stride = 16,
1768 .buf_start = VIDW_BUF_START(0),
1769 .buf_size = VIDW_BUF_SIZE(0),
1770 .buf_end = VIDW_BUF_END(0),
1771
1772 .palette = {
1773 [0] = 0x2400,
1774 [1] = 0x2800,
1775 [2] = 0x2c00,
1776 [3] = 0x3000,
1777 [4] = 0x3400,
1778 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001779
1780 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001781 .has_clksel = 1,
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001782 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001783 .win[0] = &s3c_fb_data_s5p_wins[0],
1784 .win[1] = &s3c_fb_data_s5p_wins[1],
1785 .win[2] = &s3c_fb_data_s5p_wins[2],
1786 .win[3] = &s3c_fb_data_s5p_wins[3],
1787 .win[4] = &s3c_fb_data_s5p_wins[4],
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001788};
1789
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001790static struct s3c_fb_driverdata s3c_fb_data_s5pv210 = {
Ben Dooks50a55032010-08-10 18:02:33 -07001791 .variant = {
1792 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001793 .vidtcon = VIDTCON0,
1794 .wincon = WINCON(0),
1795 .winmap = WINxMAP(0),
1796 .keycon = WKEYCON,
1797 .osd = VIDOSD_BASE,
1798 .osd_stride = 16,
1799 .buf_start = VIDW_BUF_START(0),
1800 .buf_size = VIDW_BUF_SIZE(0),
1801 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001802
1803 .palette = {
1804 [0] = 0x2400,
1805 [1] = 0x2800,
1806 [2] = 0x2c00,
1807 [3] = 0x3000,
1808 [4] = 0x3400,
1809 },
Pawel Osciakf5ec5462010-08-10 18:02:40 -07001810
1811 .has_shadowcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001812 .has_clksel = 1,
1813 },
1814 .win[0] = &s3c_fb_data_s5p_wins[0],
1815 .win[1] = &s3c_fb_data_s5p_wins[1],
1816 .win[2] = &s3c_fb_data_s5p_wins[2],
1817 .win[3] = &s3c_fb_data_s5p_wins[3],
1818 .win[4] = &s3c_fb_data_s5p_wins[4],
1819};
1820
1821static struct s3c_fb_driverdata s3c_fb_data_exynos4 = {
1822 .variant = {
1823 .nr_windows = 5,
1824 .vidtcon = VIDTCON0,
1825 .wincon = WINCON(0),
1826 .winmap = WINxMAP(0),
1827 .keycon = WKEYCON,
1828 .osd = VIDOSD_BASE,
1829 .osd_stride = 16,
1830 .buf_start = VIDW_BUF_START(0),
1831 .buf_size = VIDW_BUF_SIZE(0),
1832 .buf_end = VIDW_BUF_END(0),
1833
1834 .palette = {
1835 [0] = 0x2400,
1836 [1] = 0x2800,
1837 [2] = 0x2c00,
1838 [3] = 0x3000,
1839 [4] = 0x3400,
1840 },
1841
1842 .has_shadowcon = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001843 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001844 .win[0] = &s3c_fb_data_s5p_wins[0],
1845 .win[1] = &s3c_fb_data_s5p_wins[1],
1846 .win[2] = &s3c_fb_data_s5p_wins[2],
1847 .win[3] = &s3c_fb_data_s5p_wins[3],
1848 .win[4] = &s3c_fb_data_s5p_wins[4],
Ben Dooks50a55032010-08-10 18:02:33 -07001849};
1850
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001851/* S3C2443/S3C2416 style hardware */
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001852static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001853 .variant = {
1854 .nr_windows = 2,
1855 .is_2443 = 1,
1856
1857 .vidtcon = 0x08,
1858 .wincon = 0x14,
1859 .winmap = 0xd0,
1860 .keycon = 0xb0,
1861 .osd = 0x28,
1862 .osd_stride = 12,
1863 .buf_start = 0x64,
1864 .buf_size = 0x94,
1865 .buf_end = 0x7c,
1866
1867 .palette = {
1868 [0] = 0x400,
1869 [1] = 0x800,
1870 },
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001871 .has_clksel = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001872 },
1873 .win[0] = &(struct s3c_fb_win_variant) {
1874 .palette_sz = 256,
1875 .valid_bpp = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24),
1876 },
1877 .win[1] = &(struct s3c_fb_win_variant) {
1878 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001879 .has_osd_alpha = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001880 .palette_sz = 256,
1881 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1882 VALID_BPP(18) | VALID_BPP(19) |
1883 VALID_BPP(24) | VALID_BPP(25) |
1884 VALID_BPP(28)),
1885 },
1886};
1887
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001888static struct s3c_fb_driverdata s3c_fb_data_s5p64x0 = {
1889 .variant = {
1890 .nr_windows = 3,
1891 .vidtcon = VIDTCON0,
1892 .wincon = WINCON(0),
1893 .winmap = WINxMAP(0),
1894 .keycon = WKEYCON,
1895 .osd = VIDOSD_BASE,
1896 .osd_stride = 16,
1897 .buf_start = VIDW_BUF_START(0),
1898 .buf_size = VIDW_BUF_SIZE(0),
1899 .buf_end = VIDW_BUF_END(0),
1900
1901 .palette = {
1902 [0] = 0x2400,
1903 [1] = 0x2800,
1904 [2] = 0x2c00,
1905 },
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};
1911
Ben Dooks50a55032010-08-10 18:02:33 -07001912static struct platform_device_id s3c_fb_driver_ids[] = {
1913 {
1914 .name = "s3c-fb",
1915 .driver_data = (unsigned long)&s3c_fb_data_64xx,
1916 }, {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001917 .name = "s5pc100-fb",
1918 .driver_data = (unsigned long)&s3c_fb_data_s5pc100,
1919 }, {
1920 .name = "s5pv210-fb",
1921 .driver_data = (unsigned long)&s3c_fb_data_s5pv210,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001922 }, {
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001923 .name = "exynos4-fb",
1924 .driver_data = (unsigned long)&s3c_fb_data_exynos4,
1925 }, {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001926 .name = "s3c2443-fb",
1927 .driver_data = (unsigned long)&s3c_fb_data_s3c2443,
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001928 }, {
1929 .name = "s5p64x0-fb",
1930 .driver_data = (unsigned long)&s3c_fb_data_s5p64x0,
Ben Dooks50a55032010-08-10 18:02:33 -07001931 },
1932 {},
1933};
1934MODULE_DEVICE_TABLE(platform, s3c_fb_driver_ids);
1935
Mark Brownfe05f8b2011-12-27 14:16:07 +00001936static UNIVERSAL_DEV_PM_OPS(s3cfb_pm_ops, s3c_fb_suspend, s3c_fb_resume, NULL);
Jingoo Han49592122010-12-17 16:45:46 +09001937
Ben Dooksec549a02009-03-31 15:25:39 -07001938static struct platform_driver s3c_fb_driver = {
1939 .probe = s3c_fb_probe,
Peter Korsgaard3163eaba2009-09-22 16:47:55 -07001940 .remove = __devexit_p(s3c_fb_remove),
Ben Dooks50a55032010-08-10 18:02:33 -07001941 .id_table = s3c_fb_driver_ids,
Ben Dooksec549a02009-03-31 15:25:39 -07001942 .driver = {
1943 .name = "s3c-fb",
1944 .owner = THIS_MODULE,
Mark Brownfe05f8b2011-12-27 14:16:07 +00001945 .pm = &s3cfb_pm_ops,
Ben Dooksec549a02009-03-31 15:25:39 -07001946 },
1947};
1948
Axel Lin4277f2c2011-11-26 10:25:54 +08001949module_platform_driver(s3c_fb_driver);
Ben Dooksec549a02009-03-31 15:25:39 -07001950
1951MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
1952MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
1953MODULE_LICENSE("GPL");
1954MODULE_ALIAS("platform:s3c-fb");