blob: a0b3fd670f7133fa48ad0ff60660e198b4b28b72 [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/**
Ben Dooksec549a02009-03-31 15:25:39 -0700444 * 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 */
449static 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;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700455 void __iomem *buf = regs;
Ben Dooksec549a02009-03-31 15:25:39 -0700456 int win_no = win->index;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700457 u32 alpha = 0;
Ben Dooksec549a02009-03-31 15:25:39 -0700458 u32 data;
459 u32 pagewidth;
460 int clkdiv;
461
462 dev_dbg(sfb->dev, "setting framebuffer parameters\n");
463
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700464 shadow_protect_win(win, 1);
465
Ben Dooksec549a02009-03-31 15:25:39 -0700466 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:
Ben Dooks50a55032010-08-10 18:02:33 -0700474 if (win->variant.palette_sz >= 256)
Ben Dooksec549a02009-03-31 15:25:39 -0700475 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
Pawel Osciak067b2262010-08-10 18:02:38 -0700489 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
Ben Dooksec549a02009-03-31 15:25:39 -0700492 /* disable the window whilst we update it */
493 writel(0, regs + WINCON(win_no));
494
InKi Daead044902010-08-10 18:02:31 -0700495 /* use platform specified window as the basis for the lcd timings */
Ben Dooksec549a02009-03-31 15:25:39 -0700496
InKi Daead044902010-08-10 18:02:31 -0700497 if (win_no == sfb->pdata->default_win) {
Mark Browneb29a5c2010-01-15 17:01:40 -0800498 clkdiv = s3c_fb_calc_pixclk(sfb, var->pixclock);
Ben Dooksec549a02009-03-31 15:25:39 -0700499
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
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700510 if (sfb->variant.is_2443)
511 data |= (1 << 5);
512
Ben Dooksec549a02009-03-31 15:25:39 -0700513 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
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700520 writel(data, regs + sfb->variant.vidtcon);
Ben Dooksec549a02009-03-31 15:25:39 -0700521
522 data = VIDTCON1_HBPD(var->left_margin - 1) |
523 VIDTCON1_HFPD(var->right_margin - 1) |
524 VIDTCON1_HSPW(var->hsync_len - 1);
525
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700526 /* VIDTCON1 */
527 writel(data, regs + sfb->variant.vidtcon + 4);
Ben Dooksec549a02009-03-31 15:25:39 -0700528
529 data = VIDTCON2_LINEVAL(var->yres - 1) |
530 VIDTCON2_HOZVAL(var->xres - 1);
Jingoo Hanb73a21fc2011-04-01 07:17:27 +0000531 writel(data, regs + sfb->variant.vidtcon + 8);
Ben Dooksec549a02009-03-31 15:25:39 -0700532 }
533
534 /* write the buffer address */
535
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700536 /* 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);
Ben Dooksec549a02009-03-31 15:25:39 -0700540
541 data = info->fix.smem_start + info->fix.line_length * var->yres;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700542 writel(data, buf + sfb->variant.buf_end);
Ben Dooksec549a02009-03-31 15:25:39 -0700543
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);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700547 writel(data, regs + sfb->variant.buf_size + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700548
549 /* write 'OSD' registers to control position of framebuffer */
550
551 data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700552 writel(data, regs + VIDOSD_A(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700553
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
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700558 writel(data, regs + VIDOSD_B(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700559
560 data = var->xres * var->yres;
InKi Dae39000d62009-06-16 15:34:27 -0700561
Pawel Osciakf676ec22010-08-10 18:02:40 -0700562 alpha = VIDISD14C_ALPHA1_R(0xf) |
InKi Dae39000d62009-06-16 15:34:27 -0700563 VIDISD14C_ALPHA1_G(0xf) |
564 VIDISD14C_ALPHA1_B(0xf);
565
Pawel Osciakf676ec22010-08-10 18:02:40 -0700566 vidosd_set_alpha(win, alpha);
567 vidosd_set_size(win, data);
Ben Dooksec549a02009-03-31 15:25:39 -0700568
Jingoo Hanfab7c5b2011-06-09 04:26:45 +0000569 /* 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
Ben Dooksec549a02009-03-31 15:25:39 -0700576 data = WINCONx_ENWIN;
Jingoo Han2d9ae7a2011-12-02 19:07:17 +0900577 sfb->enabled |= (1 << win->index);
Ben Dooksec549a02009-03-31 15:25:39 -0700578
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;
InKi Dae39000d62009-06-16 15:34:27 -0700622 } else if (var->transp.length == 1)
623 data |= WINCON1_BPPMODE_25BPP_A1888
624 | WINCON1_BLD_PIX;
Jingoo Han4420dd22011-11-07 15:03:01 +0900625 else if ((var->transp.length == 4) ||
626 (var->transp.length == 8))
InKi Dae39000d62009-06-16 15:34:27 -0700627 data |= WINCON1_BPPMODE_28BPP_A4888
628 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
Ben Dooksec549a02009-03-31 15:25:39 -0700629 else
630 data |= WINCON0_BPPMODE_24BPP_888;
631
InKi Daedc8498c2010-08-10 18:02:32 -0700632 data |= WINCONx_WSWP;
Ben Dooksec549a02009-03-31 15:25:39 -0700633 data |= WINCONx_BURSTLEN_16WORD;
634 break;
635 }
636
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700637 /* Enable the colour keying for the window below this one */
InKi Dae39000d62009-06-16 15:34:27 -0700638 if (win_no > 0) {
639 u32 keycon0_data = 0, keycon1_data = 0;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700640 void __iomem *keycon = regs + sfb->variant.keycon;
InKi Dae39000d62009-06-16 15:34:27 -0700641
642 keycon0_data = ~(WxKEYCON0_KEYBL_EN |
643 WxKEYCON0_KEYEN_F |
644 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
645
646 keycon1_data = WxKEYCON1_COLVAL(0xffffff);
647
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700648 keycon += (win_no - 1) * 8;
649
650 writel(keycon0_data, keycon + WKEYCON0);
651 writel(keycon1_data, keycon + WKEYCON1);
InKi Dae39000d62009-06-16 15:34:27 -0700652 }
653
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700654 writel(data, regs + sfb->variant.wincon + (win_no * 4));
655 writel(0x0, regs + sfb->variant.winmap + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700656
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700657 shadow_protect_win(win, 0);
658
Ben Dooksec549a02009-03-31 15:25:39 -0700659 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 */
676static 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
Ben Dooks50a55032010-08-10 18:02:33 -0700684 palreg = sfb->regs + sfb->variant.palette[win->index];
Ben Dooksec549a02009-03-31 15:25:39 -0700685
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
Ben Dooks50a55032010-08-10 18:02:33 -0700694 if (win->variant.palette_16bpp)
695 writew(value, palreg + (reg * 2));
Ben Dooksec549a02009-03-31 15:25:39 -0700696 else
Ben Dooks50a55032010-08-10 18:02:33 -0700697 writel(value, palreg + (reg * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700698
699 writel(palcon, sfb->regs + WPALCON);
700}
701
702static 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 */
719static 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:
Ben Dooks50a55032010-08-10 18:02:33 -0700746 if (regno < win->variant.palette_sz) {
Ben Dooksec549a02009-03-31 15:25:39 -0700747 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 */
768static 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 */
796static 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
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700805 wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700806
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) */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900815 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700816 writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700817 sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900818 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700819 break;
820
821 case FB_BLANK_UNBLANK:
Jingoo Hanff8c9102011-12-08 18:08:00 +0900822 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700823 writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900824 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700825 wincon |= WINCONx_ENWIN;
826 sfb->enabled |= (1 << index);
827 break;
828
829 case FB_BLANK_VSYNC_SUSPEND:
830 case FB_BLANK_HSYNC_SUSPEND:
831 default:
832 return 1;
833 }
834
Jingoo Hanff8c9102011-12-08 18:08:00 +0900835 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700836 writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900837 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700838
839 /* Check the enabled state to see if we need to be running the
840 * main LCD interface, as if there are no active windows then
841 * it is highly likely that we also do not need to output
842 * anything.
843 */
844
845 /* We could do something like the following code, but the current
846 * system of using framebuffer events means that we cannot make
847 * the distinction between just window 0 being inactive and all
848 * the windows being down.
849 *
850 * s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
851 */
852
853 /* we're stuck with this until we can do something about overriding
854 * the power control using the blanking event for a single fb.
855 */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900856 if (index == sfb->pdata->default_win) {
857 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700858 s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
Jingoo Hanff8c9102011-12-08 18:08:00 +0900859 shadow_protect_win(win, 0);
860 }
Ben Dooksec549a02009-03-31 15:25:39 -0700861
862 return 0;
863}
864
Pawel Osciak067b2262010-08-10 18:02:38 -0700865/**
866 * s3c_fb_pan_display() - Pan the display.
867 *
868 * Note that the offsets can be written to the device at any time, as their
869 * values are latched at each vsync automatically. This also means that only
870 * the last call to this function will have any effect on next vsync, but
871 * there is no need to sleep waiting for it to prevent tearing.
872 *
873 * @var: The screen information to verify.
874 * @info: The framebuffer device.
875 */
876static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
877 struct fb_info *info)
878{
879 struct s3c_fb_win *win = info->par;
880 struct s3c_fb *sfb = win->parent;
881 void __iomem *buf = sfb->regs + win->index * 8;
882 unsigned int start_boff, end_boff;
883
884 /* Offset in bytes to the start of the displayed area */
885 start_boff = var->yoffset * info->fix.line_length;
886 /* X offset depends on the current bpp */
887 if (info->var.bits_per_pixel >= 8) {
888 start_boff += var->xoffset * (info->var.bits_per_pixel >> 3);
889 } else {
890 switch (info->var.bits_per_pixel) {
891 case 4:
892 start_boff += var->xoffset >> 1;
893 break;
894 case 2:
895 start_boff += var->xoffset >> 2;
896 break;
897 case 1:
898 start_boff += var->xoffset >> 3;
899 break;
900 default:
901 dev_err(sfb->dev, "invalid bpp\n");
902 return -EINVAL;
903 }
904 }
905 /* Offset in bytes to the end of the displayed area */
Laurent Pinchartd8e7a742011-05-25 11:34:52 +0200906 end_boff = start_boff + info->var.yres * info->fix.line_length;
Pawel Osciak067b2262010-08-10 18:02:38 -0700907
908 /* Temporarily turn off per-vsync update from shadow registers until
909 * both start and end addresses are updated to prevent corruption */
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700910 shadow_protect_win(win, 1);
Pawel Osciak067b2262010-08-10 18:02:38 -0700911
912 writel(info->fix.smem_start + start_boff, buf + sfb->variant.buf_start);
913 writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
914
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700915 shadow_protect_win(win, 0);
Pawel Osciak067b2262010-08-10 18:02:38 -0700916
917 return 0;
918}
919
Pawel Osciakefdc8462010-08-10 18:02:38 -0700920/**
921 * s3c_fb_enable_irq() - enable framebuffer interrupts
922 * @sfb: main hardware state
923 */
924static void s3c_fb_enable_irq(struct s3c_fb *sfb)
925{
926 void __iomem *regs = sfb->regs;
927 u32 irq_ctrl_reg;
928
929 if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
930 /* IRQ disabled, enable it */
931 irq_ctrl_reg = readl(regs + VIDINTCON0);
932
933 irq_ctrl_reg |= VIDINTCON0_INT_ENABLE;
934 irq_ctrl_reg |= VIDINTCON0_INT_FRAME;
935
936 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL0_MASK;
937 irq_ctrl_reg |= VIDINTCON0_FRAMESEL0_VSYNC;
938 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL1_MASK;
939 irq_ctrl_reg |= VIDINTCON0_FRAMESEL1_NONE;
940
941 writel(irq_ctrl_reg, regs + VIDINTCON0);
942 }
943}
944
945/**
946 * s3c_fb_disable_irq() - disable framebuffer interrupts
947 * @sfb: main hardware state
948 */
949static void s3c_fb_disable_irq(struct s3c_fb *sfb)
950{
951 void __iomem *regs = sfb->regs;
952 u32 irq_ctrl_reg;
953
954 if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
955 /* IRQ enabled, disable it */
956 irq_ctrl_reg = readl(regs + VIDINTCON0);
957
958 irq_ctrl_reg &= ~VIDINTCON0_INT_FRAME;
959 irq_ctrl_reg &= ~VIDINTCON0_INT_ENABLE;
960
961 writel(irq_ctrl_reg, regs + VIDINTCON0);
962 }
963}
964
965static irqreturn_t s3c_fb_irq(int irq, void *dev_id)
966{
967 struct s3c_fb *sfb = dev_id;
968 void __iomem *regs = sfb->regs;
969 u32 irq_sts_reg;
970
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000971 spin_lock(&sfb->slock);
972
Pawel Osciakefdc8462010-08-10 18:02:38 -0700973 irq_sts_reg = readl(regs + VIDINTCON1);
974
975 if (irq_sts_reg & VIDINTCON1_INT_FRAME) {
976
977 /* VSYNC interrupt, accept it */
978 writel(VIDINTCON1_INT_FRAME, regs + VIDINTCON1);
979
980 sfb->vsync_info.count++;
981 wake_up_interruptible(&sfb->vsync_info.wait);
982 }
983
984 /* We only support waiting for VSYNC for now, so it's safe
985 * to always disable irqs here.
986 */
987 s3c_fb_disable_irq(sfb);
988
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000989 spin_unlock(&sfb->slock);
Pawel Osciakefdc8462010-08-10 18:02:38 -0700990 return IRQ_HANDLED;
991}
992
993/**
994 * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
995 * @sfb: main hardware state
996 * @crtc: head index.
997 */
998static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
999{
1000 unsigned long count;
1001 int ret;
1002
1003 if (crtc != 0)
1004 return -ENODEV;
1005
1006 count = sfb->vsync_info.count;
1007 s3c_fb_enable_irq(sfb);
1008 ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
1009 count != sfb->vsync_info.count,
1010 msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
1011 if (ret == 0)
1012 return -ETIMEDOUT;
1013
1014 return 0;
1015}
1016
1017static int s3c_fb_ioctl(struct fb_info *info, unsigned int cmd,
1018 unsigned long arg)
1019{
1020 struct s3c_fb_win *win = info->par;
1021 struct s3c_fb *sfb = win->parent;
1022 int ret;
1023 u32 crtc;
1024
1025 switch (cmd) {
1026 case FBIO_WAITFORVSYNC:
1027 if (get_user(crtc, (u32 __user *)arg)) {
1028 ret = -EFAULT;
1029 break;
1030 }
1031
1032 ret = s3c_fb_wait_for_vsync(sfb, crtc);
1033 break;
1034 default:
1035 ret = -ENOTTY;
1036 }
1037
1038 return ret;
1039}
1040
Ben Dooksec549a02009-03-31 15:25:39 -07001041static struct fb_ops s3c_fb_ops = {
1042 .owner = THIS_MODULE,
1043 .fb_check_var = s3c_fb_check_var,
1044 .fb_set_par = s3c_fb_set_par,
1045 .fb_blank = s3c_fb_blank,
1046 .fb_setcolreg = s3c_fb_setcolreg,
1047 .fb_fillrect = cfb_fillrect,
1048 .fb_copyarea = cfb_copyarea,
1049 .fb_imageblit = cfb_imageblit,
Pawel Osciak067b2262010-08-10 18:02:38 -07001050 .fb_pan_display = s3c_fb_pan_display,
Pawel Osciakefdc8462010-08-10 18:02:38 -07001051 .fb_ioctl = s3c_fb_ioctl,
Ben Dooksec549a02009-03-31 15:25:39 -07001052};
1053
1054/**
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001055 * s3c_fb_missing_pixclock() - calculates pixel clock
1056 * @mode: The video mode to change.
1057 *
1058 * Calculate the pixel clock when none has been given through platform data.
1059 */
1060static void __devinit s3c_fb_missing_pixclock(struct fb_videomode *mode)
1061{
1062 u64 pixclk = 1000000000000ULL;
1063 u32 div;
1064
1065 div = mode->left_margin + mode->hsync_len + mode->right_margin +
1066 mode->xres;
1067 div *= mode->upper_margin + mode->vsync_len + mode->lower_margin +
1068 mode->yres;
1069 div *= mode->refresh ? : 60;
1070
1071 do_div(pixclk, div);
1072
1073 mode->pixclock = pixclk;
1074}
1075
1076/**
Ben Dooksec549a02009-03-31 15:25:39 -07001077 * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1078 * @sfb: The base resources for the hardware.
1079 * @win: The window to initialise memory for.
1080 *
1081 * Allocate memory for the given framebuffer.
1082 */
1083static int __devinit s3c_fb_alloc_memory(struct s3c_fb *sfb,
1084 struct s3c_fb_win *win)
1085{
1086 struct s3c_fb_pd_win *windata = win->windata;
1087 unsigned int real_size, virt_size, size;
1088 struct fb_info *fbi = win->fbinfo;
1089 dma_addr_t map_dma;
1090
1091 dev_dbg(sfb->dev, "allocating memory for display\n");
1092
1093 real_size = windata->win_mode.xres * windata->win_mode.yres;
1094 virt_size = windata->virtual_x * windata->virtual_y;
1095
1096 dev_dbg(sfb->dev, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
1097 real_size, windata->win_mode.xres, windata->win_mode.yres,
1098 virt_size, windata->virtual_x, windata->virtual_y);
1099
1100 size = (real_size > virt_size) ? real_size : virt_size;
1101 size *= (windata->max_bpp > 16) ? 32 : windata->max_bpp;
1102 size /= 8;
1103
1104 fbi->fix.smem_len = size;
1105 size = PAGE_ALIGN(size);
1106
1107 dev_dbg(sfb->dev, "want %u bytes for window\n", size);
1108
1109 fbi->screen_base = dma_alloc_writecombine(sfb->dev, size,
1110 &map_dma, GFP_KERNEL);
1111 if (!fbi->screen_base)
1112 return -ENOMEM;
1113
1114 dev_dbg(sfb->dev, "mapped %x to %p\n",
1115 (unsigned int)map_dma, fbi->screen_base);
1116
1117 memset(fbi->screen_base, 0x0, size);
1118 fbi->fix.smem_start = map_dma;
1119
1120 return 0;
1121}
1122
1123/**
1124 * s3c_fb_free_memory() - free the display memory for the given window
1125 * @sfb: The base resources for the hardware.
1126 * @win: The window to free the display memory for.
1127 *
1128 * Free the display memory allocated by s3c_fb_alloc_memory().
1129 */
1130static void s3c_fb_free_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
1131{
1132 struct fb_info *fbi = win->fbinfo;
1133
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001134 if (fbi->screen_base)
1135 dma_free_writecombine(sfb->dev, PAGE_ALIGN(fbi->fix.smem_len),
Ben Dooksec549a02009-03-31 15:25:39 -07001136 fbi->screen_base, fbi->fix.smem_start);
1137}
1138
1139/**
1140 * s3c_fb_release_win() - release resources for a framebuffer window.
1141 * @win: The window to cleanup the resources for.
1142 *
1143 * Release the resources that where claimed for the hardware window,
1144 * such as the framebuffer instance and any memory claimed for it.
1145 */
1146static void s3c_fb_release_win(struct s3c_fb *sfb, struct s3c_fb_win *win)
1147{
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001148 u32 data;
1149
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001150 if (win->fbinfo) {
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001151 if (sfb->variant.has_shadowcon) {
1152 data = readl(sfb->regs + SHADOWCON);
1153 data &= ~SHADOWCON_CHx_ENABLE(win->index);
1154 data &= ~SHADOWCON_CHx_LOCAL_ENABLE(win->index);
1155 writel(data, sfb->regs + SHADOWCON);
1156 }
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001157 unregister_framebuffer(win->fbinfo);
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001158 if (win->fbinfo->cmap.len)
1159 fb_dealloc_cmap(&win->fbinfo->cmap);
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001160 s3c_fb_free_memory(sfb, win);
1161 framebuffer_release(win->fbinfo);
1162 }
Ben Dooksec549a02009-03-31 15:25:39 -07001163}
1164
1165/**
1166 * s3c_fb_probe_win() - register an hardware window
1167 * @sfb: The base resources for the hardware
Ben Dooks50a55032010-08-10 18:02:33 -07001168 * @variant: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -07001169 * @res: Pointer to where to place the resultant window.
1170 *
1171 * Allocate and do the basic initialisation for one of the hardware's graphics
1172 * windows.
1173 */
1174static int __devinit s3c_fb_probe_win(struct s3c_fb *sfb, unsigned int win_no,
Ben Dooks50a55032010-08-10 18:02:33 -07001175 struct s3c_fb_win_variant *variant,
Ben Dooksec549a02009-03-31 15:25:39 -07001176 struct s3c_fb_win **res)
1177{
1178 struct fb_var_screeninfo *var;
1179 struct fb_videomode *initmode;
1180 struct s3c_fb_pd_win *windata;
1181 struct s3c_fb_win *win;
1182 struct fb_info *fbinfo;
1183 int palette_size;
1184 int ret;
1185
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001186 dev_dbg(sfb->dev, "probing window %d, variant %p\n", win_no, variant);
Ben Dooksec549a02009-03-31 15:25:39 -07001187
Pawel Osciakefdc8462010-08-10 18:02:38 -07001188 init_waitqueue_head(&sfb->vsync_info.wait);
1189
Ben Dooks50a55032010-08-10 18:02:33 -07001190 palette_size = variant->palette_sz * 4;
Ben Dooksec549a02009-03-31 15:25:39 -07001191
1192 fbinfo = framebuffer_alloc(sizeof(struct s3c_fb_win) +
1193 palette_size * sizeof(u32), sfb->dev);
1194 if (!fbinfo) {
1195 dev_err(sfb->dev, "failed to allocate framebuffer\n");
1196 return -ENOENT;
1197 }
1198
1199 windata = sfb->pdata->win[win_no];
1200 initmode = &windata->win_mode;
1201
1202 WARN_ON(windata->max_bpp == 0);
1203 WARN_ON(windata->win_mode.xres == 0);
1204 WARN_ON(windata->win_mode.yres == 0);
1205
1206 win = fbinfo->par;
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001207 *res = win;
Ben Dooksec549a02009-03-31 15:25:39 -07001208 var = &fbinfo->var;
Ben Dooks50a55032010-08-10 18:02:33 -07001209 win->variant = *variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001210 win->fbinfo = fbinfo;
1211 win->parent = sfb;
1212 win->windata = windata;
1213 win->index = win_no;
1214 win->palette_buffer = (u32 *)(win + 1);
1215
1216 ret = s3c_fb_alloc_memory(sfb, win);
1217 if (ret) {
1218 dev_err(sfb->dev, "failed to allocate display memory\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001219 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001220 }
1221
1222 /* setup the r/b/g positions for the window's palette */
Ben Dooksbc2da1b2010-08-10 18:02:34 -07001223 if (win->variant.palette_16bpp) {
1224 /* Set RGB 5:6:5 as default */
1225 win->palette.r.offset = 11;
1226 win->palette.r.length = 5;
1227 win->palette.g.offset = 5;
1228 win->palette.g.length = 6;
1229 win->palette.b.offset = 0;
1230 win->palette.b.length = 5;
1231
1232 } else {
1233 /* Set 8bpp or 8bpp and 1bit alpha */
1234 win->palette.r.offset = 16;
1235 win->palette.r.length = 8;
1236 win->palette.g.offset = 8;
1237 win->palette.g.length = 8;
1238 win->palette.b.offset = 0;
1239 win->palette.b.length = 8;
1240 }
Ben Dooksec549a02009-03-31 15:25:39 -07001241
1242 /* setup the initial video mode from the window */
1243 fb_videomode_to_var(&fbinfo->var, initmode);
1244
1245 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
1246 fbinfo->fix.accel = FB_ACCEL_NONE;
1247 fbinfo->var.activate = FB_ACTIVATE_NOW;
1248 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
1249 fbinfo->var.bits_per_pixel = windata->default_bpp;
1250 fbinfo->fbops = &s3c_fb_ops;
1251 fbinfo->flags = FBINFO_FLAG_DEFAULT;
1252 fbinfo->pseudo_palette = &win->pseudo_palette;
1253
1254 /* prepare to actually start the framebuffer */
1255
1256 ret = s3c_fb_check_var(&fbinfo->var, fbinfo);
1257 if (ret < 0) {
1258 dev_err(sfb->dev, "check_var failed on initial video params\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001259 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001260 }
1261
1262 /* create initial colour map */
1263
Ben Dooks50a55032010-08-10 18:02:33 -07001264 ret = fb_alloc_cmap(&fbinfo->cmap, win->variant.palette_sz, 1);
Ben Dooksec549a02009-03-31 15:25:39 -07001265 if (ret == 0)
1266 fb_set_cmap(&fbinfo->cmap, fbinfo);
1267 else
1268 dev_err(sfb->dev, "failed to allocate fb cmap\n");
1269
1270 s3c_fb_set_par(fbinfo);
1271
1272 dev_dbg(sfb->dev, "about to register framebuffer\n");
1273
1274 /* run the check_var and set_par on our configuration. */
1275
1276 ret = register_framebuffer(fbinfo);
1277 if (ret < 0) {
1278 dev_err(sfb->dev, "failed to register framebuffer\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001279 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001280 }
1281
Ben Dooksec549a02009-03-31 15:25:39 -07001282 dev_info(sfb->dev, "window %d: fb %s\n", win_no, fbinfo->fix.id);
1283
1284 return 0;
Ben Dooksec549a02009-03-31 15:25:39 -07001285}
1286
1287/**
1288 * s3c_fb_clear_win() - clear hardware window registers.
1289 * @sfb: The base resources for the hardware.
1290 * @win: The window to process.
1291 *
1292 * Reset the specific window registers to a known state.
1293 */
1294static void s3c_fb_clear_win(struct s3c_fb *sfb, int win)
1295{
1296 void __iomem *regs = sfb->regs;
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001297 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001298
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001299 writel(0, regs + sfb->variant.wincon + (win * 4));
1300 writel(0, regs + VIDOSD_A(win, sfb->variant));
1301 writel(0, regs + VIDOSD_B(win, sfb->variant));
1302 writel(0, regs + VIDOSD_C(win, sfb->variant));
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001303 reg = readl(regs + SHADOWCON);
1304 writel(reg & ~SHADOWCON_WINx_PROTECT(win), regs + SHADOWCON);
Ben Dooksec549a02009-03-31 15:25:39 -07001305}
1306
1307static int __devinit s3c_fb_probe(struct platform_device *pdev)
1308{
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001309 const struct platform_device_id *platid;
Ben Dooks50a55032010-08-10 18:02:33 -07001310 struct s3c_fb_driverdata *fbdrv;
Ben Dooksec549a02009-03-31 15:25:39 -07001311 struct device *dev = &pdev->dev;
1312 struct s3c_fb_platdata *pd;
1313 struct s3c_fb *sfb;
1314 struct resource *res;
1315 int win;
1316 int ret = 0;
1317
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001318 platid = platform_get_device_id(pdev);
1319 fbdrv = (struct s3c_fb_driverdata *)platid->driver_data;
Ben Dooks50a55032010-08-10 18:02:33 -07001320
1321 if (fbdrv->variant.nr_windows > S3C_FB_MAX_WIN) {
1322 dev_err(dev, "too many windows, cannot attach\n");
1323 return -EINVAL;
1324 }
1325
Ben Dooksec549a02009-03-31 15:25:39 -07001326 pd = pdev->dev.platform_data;
1327 if (!pd) {
1328 dev_err(dev, "no platform data specified\n");
1329 return -EINVAL;
1330 }
1331
1332 sfb = kzalloc(sizeof(struct s3c_fb), GFP_KERNEL);
1333 if (!sfb) {
1334 dev_err(dev, "no memory for framebuffers\n");
1335 return -ENOMEM;
1336 }
1337
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001338 dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
1339
Ben Dooksec549a02009-03-31 15:25:39 -07001340 sfb->dev = dev;
1341 sfb->pdata = pd;
Ben Dooks50a55032010-08-10 18:02:33 -07001342 sfb->variant = fbdrv->variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001343
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001344 spin_lock_init(&sfb->slock);
1345
Ben Dooksec549a02009-03-31 15:25:39 -07001346 sfb->bus_clk = clk_get(dev, "lcd");
1347 if (IS_ERR(sfb->bus_clk)) {
1348 dev_err(dev, "failed to get bus clock\n");
axel lin942b8d02011-02-11 08:51:10 +00001349 ret = PTR_ERR(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001350 goto err_sfb;
1351 }
1352
1353 clk_enable(sfb->bus_clk);
1354
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001355 if (!sfb->variant.has_clksel) {
1356 sfb->lcd_clk = clk_get(dev, "sclk_fimd");
1357 if (IS_ERR(sfb->lcd_clk)) {
1358 dev_err(dev, "failed to get lcd clock\n");
1359 ret = PTR_ERR(sfb->lcd_clk);
1360 goto err_bus_clk;
1361 }
1362
1363 clk_enable(sfb->lcd_clk);
1364 }
1365
Jingoo Han49592122010-12-17 16:45:46 +09001366 pm_runtime_enable(sfb->dev);
1367
Ben Dooksec549a02009-03-31 15:25:39 -07001368 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1369 if (!res) {
1370 dev_err(dev, "failed to find registers\n");
1371 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001372 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001373 }
1374
1375 sfb->regs_res = request_mem_region(res->start, resource_size(res),
1376 dev_name(dev));
1377 if (!sfb->regs_res) {
1378 dev_err(dev, "failed to claim register region\n");
1379 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001380 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001381 }
1382
1383 sfb->regs = ioremap(res->start, resource_size(res));
1384 if (!sfb->regs) {
1385 dev_err(dev, "failed to map registers\n");
1386 ret = -ENXIO;
1387 goto err_req_region;
1388 }
1389
Pawel Osciakefdc8462010-08-10 18:02:38 -07001390 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1391 if (!res) {
1392 dev_err(dev, "failed to acquire irq resource\n");
1393 ret = -ENOENT;
1394 goto err_ioremap;
1395 }
1396 sfb->irq_no = res->start;
1397 ret = request_irq(sfb->irq_no, s3c_fb_irq,
1398 0, "s3c_fb", sfb);
1399 if (ret) {
1400 dev_err(dev, "irq request failed\n");
1401 goto err_ioremap;
1402 }
1403
Ben Dooksec549a02009-03-31 15:25:39 -07001404 dev_dbg(dev, "got resources (regs %p), probing windows\n", sfb->regs);
1405
Jingoo Han49592122010-12-17 16:45:46 +09001406 platform_set_drvdata(pdev, sfb);
1407 pm_runtime_get_sync(sfb->dev);
1408
Ben Dooksec549a02009-03-31 15:25:39 -07001409 /* setup gpio and output polarity controls */
1410
1411 pd->setup_gpio();
1412
1413 writel(pd->vidcon1, sfb->regs + VIDCON1);
1414
1415 /* zero all windows before we do anything */
1416
Ben Dooks50a55032010-08-10 18:02:33 -07001417 for (win = 0; win < fbdrv->variant.nr_windows; win++)
Ben Dooksec549a02009-03-31 15:25:39 -07001418 s3c_fb_clear_win(sfb, win);
1419
Ben Dooks94947032010-08-10 18:02:32 -07001420 /* initialise colour key controls */
Ben Dooks50a55032010-08-10 18:02:33 -07001421 for (win = 0; win < (fbdrv->variant.nr_windows - 1); win++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001422 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1423
1424 regs += (win * 8);
1425 writel(0xffffff, regs + WKEYCON0);
1426 writel(0xffffff, regs + WKEYCON1);
Ben Dooks94947032010-08-10 18:02:32 -07001427 }
1428
Ben Dooksec549a02009-03-31 15:25:39 -07001429 /* we have the register setup, start allocating framebuffers */
1430
Ben Dooks50a55032010-08-10 18:02:33 -07001431 for (win = 0; win < fbdrv->variant.nr_windows; win++) {
Ben Dooksec549a02009-03-31 15:25:39 -07001432 if (!pd->win[win])
1433 continue;
1434
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001435 if (!pd->win[win]->win_mode.pixclock)
1436 s3c_fb_missing_pixclock(&pd->win[win]->win_mode);
1437
Ben Dooks50a55032010-08-10 18:02:33 -07001438 ret = s3c_fb_probe_win(sfb, win, fbdrv->win[win],
1439 &sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001440 if (ret < 0) {
1441 dev_err(dev, "failed to create window %d\n", win);
1442 for (; win >= 0; win--)
1443 s3c_fb_release_win(sfb, sfb->windows[win]);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001444 goto err_irq;
Ben Dooksec549a02009-03-31 15:25:39 -07001445 }
1446 }
1447
1448 platform_set_drvdata(pdev, sfb);
1449
1450 return 0;
1451
Pawel Osciakefdc8462010-08-10 18:02:38 -07001452err_irq:
1453 free_irq(sfb->irq_no, sfb);
1454
Ben Dooksec549a02009-03-31 15:25:39 -07001455err_ioremap:
1456 iounmap(sfb->regs);
1457
1458err_req_region:
Julia Lawall683e7cd2011-04-22 20:11:21 +00001459 release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
Ben Dooksec549a02009-03-31 15:25:39 -07001460
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001461err_lcd_clk:
1462 if (!sfb->variant.has_clksel) {
1463 clk_disable(sfb->lcd_clk);
1464 clk_put(sfb->lcd_clk);
1465 }
1466
1467err_bus_clk:
Ben Dooksec549a02009-03-31 15:25:39 -07001468 clk_disable(sfb->bus_clk);
1469 clk_put(sfb->bus_clk);
1470
1471err_sfb:
1472 kfree(sfb);
1473 return ret;
1474}
1475
1476/**
1477 * s3c_fb_remove() - Cleanup on module finalisation
1478 * @pdev: The platform device we are bound to.
1479 *
1480 * Shutdown and then release all the resources that the driver allocated
1481 * on initialisation.
1482 */
1483static int __devexit s3c_fb_remove(struct platform_device *pdev)
1484{
1485 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1486 int win;
1487
Pawel Osciakc42b1102009-07-29 15:02:10 -07001488 for (win = 0; win < S3C_FB_MAX_WIN; win++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001489 if (sfb->windows[win])
1490 s3c_fb_release_win(sfb, sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001491
Pawel Osciakefdc8462010-08-10 18:02:38 -07001492 free_irq(sfb->irq_no, sfb);
1493
Ben Dooksec549a02009-03-31 15:25:39 -07001494 iounmap(sfb->regs);
1495
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001496 if (!sfb->variant.has_clksel) {
1497 clk_disable(sfb->lcd_clk);
1498 clk_put(sfb->lcd_clk);
1499 }
1500
Ben Dooksec549a02009-03-31 15:25:39 -07001501 clk_disable(sfb->bus_clk);
1502 clk_put(sfb->bus_clk);
1503
Julia Lawall683e7cd2011-04-22 20:11:21 +00001504 release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
Ben Dooksec549a02009-03-31 15:25:39 -07001505
Jingoo Han49592122010-12-17 16:45:46 +09001506 pm_runtime_put_sync(sfb->dev);
1507 pm_runtime_disable(sfb->dev);
1508
Jingoo Han72ba4cb2011-06-09 04:26:31 +00001509 kfree(sfb);
Ben Dooksec549a02009-03-31 15:25:39 -07001510 return 0;
1511}
1512
Jingoo Han35784b42011-12-05 11:42:46 +09001513#ifdef CONFIG_PM_SLEEP
Jingoo Han49592122010-12-17 16:45:46 +09001514static int s3c_fb_suspend(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001515{
Jingoo Han49592122010-12-17 16:45:46 +09001516 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001517 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1518 struct s3c_fb_win *win;
1519 int win_no;
1520
Pawel Osciakc42b1102009-07-29 15:02:10 -07001521 for (win_no = S3C_FB_MAX_WIN - 1; win_no >= 0; win_no--) {
Ben Dooksec549a02009-03-31 15:25:39 -07001522 win = sfb->windows[win_no];
1523 if (!win)
1524 continue;
1525
1526 /* use the blank function to push into power-down */
1527 s3c_fb_blank(FB_BLANK_POWERDOWN, win->fbinfo);
1528 }
1529
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001530 if (!sfb->variant.has_clksel)
1531 clk_disable(sfb->lcd_clk);
1532
Ben Dooksec549a02009-03-31 15:25:39 -07001533 clk_disable(sfb->bus_clk);
Jingoo Han35784b42011-12-05 11:42:46 +09001534 pm_runtime_put_sync(sfb->dev);
1535
Ben Dooksec549a02009-03-31 15:25:39 -07001536 return 0;
1537}
1538
Jingoo Han49592122010-12-17 16:45:46 +09001539static int s3c_fb_resume(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001540{
Jingoo Han49592122010-12-17 16:45:46 +09001541 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001542 struct s3c_fb *sfb = platform_get_drvdata(pdev);
Marek Szyprowski17663e52009-05-28 14:34:35 -07001543 struct s3c_fb_platdata *pd = sfb->pdata;
Ben Dooksec549a02009-03-31 15:25:39 -07001544 struct s3c_fb_win *win;
1545 int win_no;
1546
Jingoo Han35784b42011-12-05 11:42:46 +09001547 pm_runtime_get_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001548 clk_enable(sfb->bus_clk);
1549
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001550 if (!sfb->variant.has_clksel)
1551 clk_enable(sfb->lcd_clk);
1552
Jingoo Han6aa96812011-05-24 08:55:31 +00001553 /* setup gpio and output polarity controls */
1554 pd->setup_gpio();
Marek Szyprowski17663e52009-05-28 14:34:35 -07001555 writel(pd->vidcon1, sfb->regs + VIDCON1);
1556
1557 /* zero all windows before we do anything */
Ben Dooks50a55032010-08-10 18:02:33 -07001558 for (win_no = 0; win_no < sfb->variant.nr_windows; win_no++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001559 s3c_fb_clear_win(sfb, win_no);
1560
Ben Dooks50a55032010-08-10 18:02:33 -07001561 for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001562 void __iomem *regs = sfb->regs + sfb->variant.keycon;
Jingoo Hanff8c9102011-12-08 18:08:00 +09001563 win = sfb->windows[win_no];
1564 if (!win)
1565 continue;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001566
Jingoo Hanff8c9102011-12-08 18:08:00 +09001567 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001568 regs += (win_no * 8);
1569 writel(0xffffff, regs + WKEYCON0);
1570 writel(0xffffff, regs + WKEYCON1);
Jingoo Hanff8c9102011-12-08 18:08:00 +09001571 shadow_protect_win(win, 0);
Ben Dooks94947032010-08-10 18:02:32 -07001572 }
1573
Marek Szyprowski17663e52009-05-28 14:34:35 -07001574 /* restore framebuffers */
Ben Dooksec549a02009-03-31 15:25:39 -07001575 for (win_no = 0; win_no < S3C_FB_MAX_WIN; win_no++) {
1576 win = sfb->windows[win_no];
1577 if (!win)
1578 continue;
1579
1580 dev_dbg(&pdev->dev, "resuming window %d\n", win_no);
1581 s3c_fb_set_par(win->fbinfo);
1582 }
1583
1584 return 0;
1585}
Ben Dooksec549a02009-03-31 15:25:39 -07001586#endif
1587
Jingoo Han35784b42011-12-05 11:42:46 +09001588#ifdef CONFIG_PM_RUNTIME
1589static int s3c_fb_runtime_suspend(struct device *dev)
1590{
1591 return 0;
1592}
1593
1594static int s3c_fb_runtime_resume(struct device *dev)
1595{
1596 return 0;
1597}
1598#endif
Ben Dooks50a55032010-08-10 18:02:33 -07001599
1600#define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1601#define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1602
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001603static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
Ben Dooks50a55032010-08-10 18:02:33 -07001604 [0] = {
1605 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001606 .osd_size_off = 0x8,
Ben Dooks50a55032010-08-10 18:02:33 -07001607 .palette_sz = 256,
Jingoo Hancd74eba2011-04-22 07:09:40 +00001608 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1609 VALID_BPP(18) | VALID_BPP(24)),
Ben Dooks50a55032010-08-10 18:02:33 -07001610 },
1611 [1] = {
1612 .has_osd_c = 1,
1613 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001614 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001615 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001616 .palette_sz = 256,
1617 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1618 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001619 VALID_BPP(24) | VALID_BPP(25) |
1620 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001621 },
1622 [2] = {
1623 .has_osd_c = 1,
1624 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001625 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001626 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001627 .palette_sz = 16,
1628 .palette_16bpp = 1,
1629 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1630 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001631 VALID_BPP(24) | VALID_BPP(25) |
1632 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001633 },
1634 [3] = {
1635 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001636 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001637 .palette_sz = 16,
1638 .palette_16bpp = 1,
1639 .valid_bpp = (VALID_BPP124 | VALID_BPP(16) |
1640 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001641 VALID_BPP(24) | VALID_BPP(25) |
1642 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001643 },
1644 [4] = {
1645 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001646 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001647 .palette_sz = 4,
1648 .palette_16bpp = 1,
1649 .valid_bpp = (VALID_BPP(1) | VALID_BPP(2) |
1650 VALID_BPP(16) | VALID_BPP(18) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001651 VALID_BPP(19) | VALID_BPP(24) |
1652 VALID_BPP(25) | VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001653 },
1654};
1655
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001656static struct s3c_fb_win_variant s3c_fb_data_s5p_wins[] = {
1657 [0] = {
1658 .has_osd_c = 1,
1659 .osd_size_off = 0x8,
1660 .palette_sz = 256,
1661 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1662 VALID_BPP(15) | VALID_BPP(16) |
1663 VALID_BPP(18) | VALID_BPP(19) |
1664 VALID_BPP(24) | VALID_BPP(25) |
1665 VALID_BPP(32)),
1666 },
1667 [1] = {
1668 .has_osd_c = 1,
1669 .has_osd_d = 1,
1670 .osd_size_off = 0xc,
1671 .has_osd_alpha = 1,
1672 .palette_sz = 256,
1673 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1674 VALID_BPP(15) | VALID_BPP(16) |
1675 VALID_BPP(18) | VALID_BPP(19) |
1676 VALID_BPP(24) | VALID_BPP(25) |
1677 VALID_BPP(32)),
1678 },
1679 [2] = {
1680 .has_osd_c = 1,
1681 .has_osd_d = 1,
1682 .osd_size_off = 0xc,
1683 .has_osd_alpha = 1,
1684 .palette_sz = 256,
1685 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1686 VALID_BPP(15) | VALID_BPP(16) |
1687 VALID_BPP(18) | VALID_BPP(19) |
1688 VALID_BPP(24) | VALID_BPP(25) |
1689 VALID_BPP(32)),
1690 },
1691 [3] = {
1692 .has_osd_c = 1,
1693 .has_osd_alpha = 1,
1694 .palette_sz = 256,
1695 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1696 VALID_BPP(15) | VALID_BPP(16) |
1697 VALID_BPP(18) | VALID_BPP(19) |
1698 VALID_BPP(24) | VALID_BPP(25) |
1699 VALID_BPP(32)),
1700 },
1701 [4] = {
1702 .has_osd_c = 1,
1703 .has_osd_alpha = 1,
1704 .palette_sz = 256,
1705 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1706 VALID_BPP(15) | VALID_BPP(16) |
1707 VALID_BPP(18) | VALID_BPP(19) |
1708 VALID_BPP(24) | VALID_BPP(25) |
1709 VALID_BPP(32)),
1710 },
1711};
1712
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001713static struct s3c_fb_driverdata s3c_fb_data_64xx = {
Ben Dooks50a55032010-08-10 18:02:33 -07001714 .variant = {
1715 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001716 .vidtcon = VIDTCON0,
1717 .wincon = WINCON(0),
1718 .winmap = WINxMAP(0),
1719 .keycon = WKEYCON,
1720 .osd = VIDOSD_BASE,
1721 .osd_stride = 16,
1722 .buf_start = VIDW_BUF_START(0),
1723 .buf_size = VIDW_BUF_SIZE(0),
1724 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001725
1726 .palette = {
1727 [0] = 0x400,
1728 [1] = 0x800,
1729 [2] = 0x300,
1730 [3] = 0x320,
1731 [4] = 0x340,
1732 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001733
1734 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001735 .has_clksel = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001736 },
1737 .win[0] = &s3c_fb_data_64xx_wins[0],
1738 .win[1] = &s3c_fb_data_64xx_wins[1],
1739 .win[2] = &s3c_fb_data_64xx_wins[2],
1740 .win[3] = &s3c_fb_data_64xx_wins[3],
1741 .win[4] = &s3c_fb_data_64xx_wins[4],
1742};
1743
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001744static struct s3c_fb_driverdata s3c_fb_data_s5pc100 = {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001745 .variant = {
1746 .nr_windows = 5,
1747 .vidtcon = VIDTCON0,
1748 .wincon = WINCON(0),
1749 .winmap = WINxMAP(0),
1750 .keycon = WKEYCON,
1751 .osd = VIDOSD_BASE,
1752 .osd_stride = 16,
1753 .buf_start = VIDW_BUF_START(0),
1754 .buf_size = VIDW_BUF_SIZE(0),
1755 .buf_end = VIDW_BUF_END(0),
1756
1757 .palette = {
1758 [0] = 0x2400,
1759 [1] = 0x2800,
1760 [2] = 0x2c00,
1761 [3] = 0x3000,
1762 [4] = 0x3400,
1763 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001764
1765 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001766 .has_clksel = 1,
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001767 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001768 .win[0] = &s3c_fb_data_s5p_wins[0],
1769 .win[1] = &s3c_fb_data_s5p_wins[1],
1770 .win[2] = &s3c_fb_data_s5p_wins[2],
1771 .win[3] = &s3c_fb_data_s5p_wins[3],
1772 .win[4] = &s3c_fb_data_s5p_wins[4],
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001773};
1774
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001775static struct s3c_fb_driverdata s3c_fb_data_s5pv210 = {
Ben Dooks50a55032010-08-10 18:02:33 -07001776 .variant = {
1777 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001778 .vidtcon = VIDTCON0,
1779 .wincon = WINCON(0),
1780 .winmap = WINxMAP(0),
1781 .keycon = WKEYCON,
1782 .osd = VIDOSD_BASE,
1783 .osd_stride = 16,
1784 .buf_start = VIDW_BUF_START(0),
1785 .buf_size = VIDW_BUF_SIZE(0),
1786 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001787
1788 .palette = {
1789 [0] = 0x2400,
1790 [1] = 0x2800,
1791 [2] = 0x2c00,
1792 [3] = 0x3000,
1793 [4] = 0x3400,
1794 },
Pawel Osciakf5ec5462010-08-10 18:02:40 -07001795
1796 .has_shadowcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001797 .has_clksel = 1,
1798 },
1799 .win[0] = &s3c_fb_data_s5p_wins[0],
1800 .win[1] = &s3c_fb_data_s5p_wins[1],
1801 .win[2] = &s3c_fb_data_s5p_wins[2],
1802 .win[3] = &s3c_fb_data_s5p_wins[3],
1803 .win[4] = &s3c_fb_data_s5p_wins[4],
1804};
1805
1806static struct s3c_fb_driverdata s3c_fb_data_exynos4 = {
1807 .variant = {
1808 .nr_windows = 5,
1809 .vidtcon = VIDTCON0,
1810 .wincon = WINCON(0),
1811 .winmap = WINxMAP(0),
1812 .keycon = WKEYCON,
1813 .osd = VIDOSD_BASE,
1814 .osd_stride = 16,
1815 .buf_start = VIDW_BUF_START(0),
1816 .buf_size = VIDW_BUF_SIZE(0),
1817 .buf_end = VIDW_BUF_END(0),
1818
1819 .palette = {
1820 [0] = 0x2400,
1821 [1] = 0x2800,
1822 [2] = 0x2c00,
1823 [3] = 0x3000,
1824 [4] = 0x3400,
1825 },
1826
1827 .has_shadowcon = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001828 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001829 .win[0] = &s3c_fb_data_s5p_wins[0],
1830 .win[1] = &s3c_fb_data_s5p_wins[1],
1831 .win[2] = &s3c_fb_data_s5p_wins[2],
1832 .win[3] = &s3c_fb_data_s5p_wins[3],
1833 .win[4] = &s3c_fb_data_s5p_wins[4],
Ben Dooks50a55032010-08-10 18:02:33 -07001834};
1835
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001836/* S3C2443/S3C2416 style hardware */
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001837static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001838 .variant = {
1839 .nr_windows = 2,
1840 .is_2443 = 1,
1841
1842 .vidtcon = 0x08,
1843 .wincon = 0x14,
1844 .winmap = 0xd0,
1845 .keycon = 0xb0,
1846 .osd = 0x28,
1847 .osd_stride = 12,
1848 .buf_start = 0x64,
1849 .buf_size = 0x94,
1850 .buf_end = 0x7c,
1851
1852 .palette = {
1853 [0] = 0x400,
1854 [1] = 0x800,
1855 },
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001856 .has_clksel = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001857 },
1858 .win[0] = &(struct s3c_fb_win_variant) {
1859 .palette_sz = 256,
1860 .valid_bpp = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24),
1861 },
1862 .win[1] = &(struct s3c_fb_win_variant) {
1863 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001864 .has_osd_alpha = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001865 .palette_sz = 256,
1866 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1867 VALID_BPP(18) | VALID_BPP(19) |
1868 VALID_BPP(24) | VALID_BPP(25) |
1869 VALID_BPP(28)),
1870 },
1871};
1872
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001873static struct s3c_fb_driverdata s3c_fb_data_s5p64x0 = {
1874 .variant = {
1875 .nr_windows = 3,
1876 .vidtcon = VIDTCON0,
1877 .wincon = WINCON(0),
1878 .winmap = WINxMAP(0),
1879 .keycon = WKEYCON,
1880 .osd = VIDOSD_BASE,
1881 .osd_stride = 16,
1882 .buf_start = VIDW_BUF_START(0),
1883 .buf_size = VIDW_BUF_SIZE(0),
1884 .buf_end = VIDW_BUF_END(0),
1885
1886 .palette = {
1887 [0] = 0x2400,
1888 [1] = 0x2800,
1889 [2] = 0x2c00,
1890 },
1891 },
1892 .win[0] = &s3c_fb_data_s5p_wins[0],
1893 .win[1] = &s3c_fb_data_s5p_wins[1],
1894 .win[2] = &s3c_fb_data_s5p_wins[2],
1895};
1896
Ben Dooks50a55032010-08-10 18:02:33 -07001897static struct platform_device_id s3c_fb_driver_ids[] = {
1898 {
1899 .name = "s3c-fb",
1900 .driver_data = (unsigned long)&s3c_fb_data_64xx,
1901 }, {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001902 .name = "s5pc100-fb",
1903 .driver_data = (unsigned long)&s3c_fb_data_s5pc100,
1904 }, {
1905 .name = "s5pv210-fb",
1906 .driver_data = (unsigned long)&s3c_fb_data_s5pv210,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001907 }, {
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001908 .name = "exynos4-fb",
1909 .driver_data = (unsigned long)&s3c_fb_data_exynos4,
1910 }, {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001911 .name = "s3c2443-fb",
1912 .driver_data = (unsigned long)&s3c_fb_data_s3c2443,
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001913 }, {
1914 .name = "s5p64x0-fb",
1915 .driver_data = (unsigned long)&s3c_fb_data_s5p64x0,
Ben Dooks50a55032010-08-10 18:02:33 -07001916 },
1917 {},
1918};
1919MODULE_DEVICE_TABLE(platform, s3c_fb_driver_ids);
1920
Jingoo Han35784b42011-12-05 11:42:46 +09001921static const struct dev_pm_ops s3c_fb_pm_ops = {
1922 SET_SYSTEM_SLEEP_PM_OPS(s3c_fb_suspend, s3c_fb_resume)
1923 SET_RUNTIME_PM_OPS(s3c_fb_runtime_suspend, s3c_fb_runtime_resume, NULL)
1924};
Jingoo Han49592122010-12-17 16:45:46 +09001925
Ben Dooksec549a02009-03-31 15:25:39 -07001926static struct platform_driver s3c_fb_driver = {
1927 .probe = s3c_fb_probe,
Peter Korsgaard3163eaba2009-09-22 16:47:55 -07001928 .remove = __devexit_p(s3c_fb_remove),
Ben Dooks50a55032010-08-10 18:02:33 -07001929 .id_table = s3c_fb_driver_ids,
Ben Dooksec549a02009-03-31 15:25:39 -07001930 .driver = {
1931 .name = "s3c-fb",
1932 .owner = THIS_MODULE,
Jingoo Han35784b42011-12-05 11:42:46 +09001933 .pm = &s3c_fb_pm_ops,
Ben Dooksec549a02009-03-31 15:25:39 -07001934 },
1935};
1936
Axel Lin4277f2c2011-11-26 10:25:54 +08001937module_platform_driver(s3c_fb_driver);
Ben Dooksec549a02009-03-31 15:25:39 -07001938
1939MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
1940MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
1941MODULE_LICENSE("GPL");
1942MODULE_ALIAS("platform:s3c-fb");