blob: e22bf9ddf287f8124c89936bbd5bedfbcc10f481 [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 Han05e52b42012-01-26 19:38:45 +090051 __raw_writel(v, r); \
52} while (0)
Ben Dooksec549a02009-03-31 15:25:39 -070053#endif /* FB_S3C_DEBUG_REGWRITE */
54
Pawel Osciakefdc8462010-08-10 18:02:38 -070055/* irq_flags bits */
56#define S3C_FB_VSYNC_IRQ_EN 0
57
58#define VSYNC_TIMEOUT_MSEC 50
59
Ben Dooksec549a02009-03-31 15:25:39 -070060struct s3c_fb;
61
Ben Dooks50a55032010-08-10 18:02:33 -070062#define VALID_BPP(x) (1 << ((x) - 1))
63
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070064#define OSD_BASE(win, variant) ((variant).osd + ((win) * (variant).osd_stride))
65#define VIDOSD_A(win, variant) (OSD_BASE(win, variant) + 0x00)
66#define VIDOSD_B(win, variant) (OSD_BASE(win, variant) + 0x04)
67#define VIDOSD_C(win, variant) (OSD_BASE(win, variant) + 0x08)
68#define VIDOSD_D(win, variant) (OSD_BASE(win, variant) + 0x0C)
69
Ben Dooks50a55032010-08-10 18:02:33 -070070/**
71 * struct s3c_fb_variant - fb variant information
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070072 * @is_2443: Set if S3C2443/S3C2416 style hardware.
Ben Dooks50a55032010-08-10 18:02:33 -070073 * @nr_windows: The number of windows.
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070074 * @vidtcon: The base for the VIDTCONx registers
75 * @wincon: The base for the WINxCON registers.
76 * @winmap: The base for the WINxMAP registers.
77 * @keycon: The abse for the WxKEYCON registers.
78 * @buf_start: Offset of buffer start registers.
79 * @buf_size: Offset of buffer size registers.
80 * @buf_end: Offset of buffer end registers.
81 * @osd: The base for the OSD registers.
Ben Dooks50a55032010-08-10 18:02:33 -070082 * @palette: Address of palette memory, or 0 if none.
Pawel Osciak067b2262010-08-10 18:02:38 -070083 * @has_prtcon: Set if has PRTCON register.
Pawel Osciakf5ec5462010-08-10 18:02:40 -070084 * @has_shadowcon: Set if has SHADOWCON register.
Jingoo Hanf7f31e52012-01-27 14:47:22 +090085 * @has_blendcon: Set if has BLENDCON register.
Jingoo Hanb5480ed2011-08-22 12:16:04 +090086 * @has_clksel: Set if VIDCON0 register has CLKSEL bit.
Jingoo Hand8b97db2012-01-27 14:47:55 +090087 * @has_fixvclk: Set if VIDCON1 register has FIXVCLK bits.
Ben Dooks50a55032010-08-10 18:02:33 -070088 */
89struct s3c_fb_variant {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070090 unsigned int is_2443:1;
Ben Dooks50a55032010-08-10 18:02:33 -070091 unsigned short nr_windows;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070092 unsigned short vidtcon;
93 unsigned short wincon;
94 unsigned short winmap;
95 unsigned short keycon;
96 unsigned short buf_start;
97 unsigned short buf_end;
98 unsigned short buf_size;
99 unsigned short osd;
100 unsigned short osd_stride;
Ben Dooks50a55032010-08-10 18:02:33 -0700101 unsigned short palette[S3C_FB_MAX_WIN];
Pawel Osciak067b2262010-08-10 18:02:38 -0700102
103 unsigned int has_prtcon:1;
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700104 unsigned int has_shadowcon:1;
Jingoo Hanf7f31e52012-01-27 14:47:22 +0900105 unsigned int has_blendcon:1;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900106 unsigned int has_clksel:1;
Jingoo Hand8b97db2012-01-27 14:47:55 +0900107 unsigned int has_fixvclk:1;
Ben Dooks50a55032010-08-10 18:02:33 -0700108};
109
110/**
111 * struct s3c_fb_win_variant
112 * @has_osd_c: Set if has OSD C register.
113 * @has_osd_d: Set if has OSD D register.
Pawel Osciakf676ec22010-08-10 18:02:40 -0700114 * @has_osd_alpha: Set if can change alpha transparency for a window.
Ben Dooks50a55032010-08-10 18:02:33 -0700115 * @palette_sz: Size of palette in entries.
116 * @palette_16bpp: Set if palette is 16bits wide.
Pawel Osciakf676ec22010-08-10 18:02:40 -0700117 * @osd_size_off: If != 0, supports setting up OSD for a window; the appropriate
118 * register is located at the given offset from OSD_BASE.
Ben Dooks50a55032010-08-10 18:02:33 -0700119 * @valid_bpp: 1 bit per BPP setting to show valid bits-per-pixel.
120 *
121 * valid_bpp bit x is set if (x+1)BPP is supported.
122 */
123struct s3c_fb_win_variant {
124 unsigned int has_osd_c:1;
125 unsigned int has_osd_d:1;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700126 unsigned int has_osd_alpha:1;
Ben Dooks50a55032010-08-10 18:02:33 -0700127 unsigned int palette_16bpp:1;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700128 unsigned short osd_size_off;
Ben Dooks50a55032010-08-10 18:02:33 -0700129 unsigned short palette_sz;
130 u32 valid_bpp;
131};
132
133/**
134 * struct s3c_fb_driverdata - per-device type driver data for init time.
135 * @variant: The variant information for this driver.
136 * @win: The window information for each window.
137 */
138struct s3c_fb_driverdata {
139 struct s3c_fb_variant variant;
140 struct s3c_fb_win_variant *win[S3C_FB_MAX_WIN];
141};
142
Ben Dooksec549a02009-03-31 15:25:39 -0700143/**
Ben Dooksbc2da1b2010-08-10 18:02:34 -0700144 * struct s3c_fb_palette - palette information
145 * @r: Red bitfield.
146 * @g: Green bitfield.
147 * @b: Blue bitfield.
148 * @a: Alpha bitfield.
149 */
150struct s3c_fb_palette {
151 struct fb_bitfield r;
152 struct fb_bitfield g;
153 struct fb_bitfield b;
154 struct fb_bitfield a;
155};
156
157/**
Ben Dooksec549a02009-03-31 15:25:39 -0700158 * struct s3c_fb_win - per window private data for each framebuffer.
159 * @windata: The platform data supplied for the window configuration.
160 * @parent: The hardware that this window is part of.
161 * @fbinfo: Pointer pack to the framebuffer info for this window.
Ben Dooks50a55032010-08-10 18:02:33 -0700162 * @varint: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -0700163 * @palette_buffer: Buffer/cache to hold palette entries.
164 * @pseudo_palette: For use in TRUECOLOUR modes for entries 0..15/
165 * @index: The window number of this window.
166 * @palette: The bitfields for changing r/g/b into a hardware palette entry.
167 */
168struct s3c_fb_win {
169 struct s3c_fb_pd_win *windata;
170 struct s3c_fb *parent;
171 struct fb_info *fbinfo;
172 struct s3c_fb_palette palette;
Ben Dooks50a55032010-08-10 18:02:33 -0700173 struct s3c_fb_win_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700174
175 u32 *palette_buffer;
176 u32 pseudo_palette[16];
177 unsigned int index;
178};
179
180/**
Pawel Osciakefdc8462010-08-10 18:02:38 -0700181 * struct s3c_fb_vsync - vsync information
182 * @wait: a queue for processes waiting for vsync
183 * @count: vsync interrupt count
184 */
185struct s3c_fb_vsync {
186 wait_queue_head_t wait;
187 unsigned int count;
188};
189
190/**
Ben Dooksec549a02009-03-31 15:25:39 -0700191 * struct s3c_fb - overall hardware state of the hardware
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000192 * @slock: The spinlock protection for this data sturcture.
Ben Dooksec549a02009-03-31 15:25:39 -0700193 * @dev: The device that we bound to, for printing, etc.
Ben Dooksec549a02009-03-31 15:25:39 -0700194 * @bus_clk: The clk (hclk) feeding our interface and possibly pixclk.
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900195 * @lcd_clk: The clk (sclk) feeding pixclk.
Ben Dooksec549a02009-03-31 15:25:39 -0700196 * @regs: The mapped hardware registers.
Ben Dooks50a55032010-08-10 18:02:33 -0700197 * @variant: Variant information for this hardware.
Ben Dooksec549a02009-03-31 15:25:39 -0700198 * @enabled: A bitmask of enabled hardware windows.
Mark Brownf4f51472011-12-27 14:16:10 +0000199 * @output_on: Flag if the physical output is enabled.
Ben Dooksec549a02009-03-31 15:25:39 -0700200 * @pdata: The platform configuration data passed with the device.
201 * @windows: The hardware windows that have been claimed.
Pawel Osciakefdc8462010-08-10 18:02:38 -0700202 * @irq_no: IRQ line number
203 * @irq_flags: irq flags
204 * @vsync_info: VSYNC-related information (count, queues...)
Ben Dooksec549a02009-03-31 15:25:39 -0700205 */
206struct s3c_fb {
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000207 spinlock_t slock;
Ben Dooksec549a02009-03-31 15:25:39 -0700208 struct device *dev;
Ben Dooksec549a02009-03-31 15:25:39 -0700209 struct clk *bus_clk;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900210 struct clk *lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -0700211 void __iomem *regs;
Ben Dooks50a55032010-08-10 18:02:33 -0700212 struct s3c_fb_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700213
214 unsigned char enabled;
Mark Brownf4f51472011-12-27 14:16:10 +0000215 bool output_on;
Ben Dooksec549a02009-03-31 15:25:39 -0700216
217 struct s3c_fb_platdata *pdata;
218 struct s3c_fb_win *windows[S3C_FB_MAX_WIN];
Pawel Osciakefdc8462010-08-10 18:02:38 -0700219
220 int irq_no;
221 unsigned long irq_flags;
222 struct s3c_fb_vsync vsync_info;
Ben Dooksec549a02009-03-31 15:25:39 -0700223};
224
225/**
Ben Dooks50a55032010-08-10 18:02:33 -0700226 * s3c_fb_validate_win_bpp - validate the bits-per-pixel for this mode.
227 * @win: The device window.
228 * @bpp: The bit depth.
Ben Dooksec549a02009-03-31 15:25:39 -0700229 */
Ben Dooks50a55032010-08-10 18:02:33 -0700230static bool s3c_fb_validate_win_bpp(struct s3c_fb_win *win, unsigned int bpp)
Ben Dooksec549a02009-03-31 15:25:39 -0700231{
Ben Dooks50a55032010-08-10 18:02:33 -0700232 return win->variant.valid_bpp & VALID_BPP(bpp);
Ben Dooksec549a02009-03-31 15:25:39 -0700233}
234
235/**
236 * s3c_fb_check_var() - framebuffer layer request to verify a given mode.
237 * @var: The screen information to verify.
238 * @info: The framebuffer device.
239 *
240 * Framebuffer layer call to verify the given information and allow us to
241 * update various information depending on the hardware capabilities.
242 */
243static int s3c_fb_check_var(struct fb_var_screeninfo *var,
244 struct fb_info *info)
245{
246 struct s3c_fb_win *win = info->par;
Ben Dooksec549a02009-03-31 15:25:39 -0700247 struct s3c_fb *sfb = win->parent;
248
249 dev_dbg(sfb->dev, "checking parameters\n");
250
Jingoo Han13e6af82011-06-09 04:26:38 +0000251 var->xres_virtual = max(var->xres_virtual, var->xres);
252 var->yres_virtual = max(var->yres_virtual, var->yres);
Ben Dooksec549a02009-03-31 15:25:39 -0700253
Ben Dooks50a55032010-08-10 18:02:33 -0700254 if (!s3c_fb_validate_win_bpp(win, var->bits_per_pixel)) {
Ben Dooksec549a02009-03-31 15:25:39 -0700255 dev_dbg(sfb->dev, "win %d: unsupported bpp %d\n",
256 win->index, var->bits_per_pixel);
257 return -EINVAL;
258 }
259
260 /* always ensure these are zero, for drop through cases below */
261 var->transp.offset = 0;
262 var->transp.length = 0;
263
264 switch (var->bits_per_pixel) {
265 case 1:
266 case 2:
267 case 4:
268 case 8:
Ben Dooks50a55032010-08-10 18:02:33 -0700269 if (sfb->variant.palette[win->index] != 0) {
Ben Dooksec549a02009-03-31 15:25:39 -0700270 /* non palletised, A:1,R:2,G:3,B:2 mode */
271 var->red.offset = 4;
272 var->green.offset = 2;
273 var->blue.offset = 0;
274 var->red.length = 5;
275 var->green.length = 3;
276 var->blue.length = 2;
277 var->transp.offset = 7;
278 var->transp.length = 1;
279 } else {
280 var->red.offset = 0;
281 var->red.length = var->bits_per_pixel;
282 var->green = var->red;
283 var->blue = var->red;
284 }
285 break;
286
287 case 19:
288 /* 666 with one bit alpha/transparency */
289 var->transp.offset = 18;
290 var->transp.length = 1;
291 case 18:
292 var->bits_per_pixel = 32;
293
294 /* 666 format */
295 var->red.offset = 12;
296 var->green.offset = 6;
297 var->blue.offset = 0;
298 var->red.length = 6;
299 var->green.length = 6;
300 var->blue.length = 6;
301 break;
302
303 case 16:
304 /* 16 bpp, 565 format */
305 var->red.offset = 11;
306 var->green.offset = 5;
307 var->blue.offset = 0;
308 var->red.length = 5;
309 var->green.length = 6;
310 var->blue.length = 5;
311 break;
312
Jingoo Hanaf1ce6b2011-05-24 08:55:23 +0000313 case 32:
Ben Dooksec549a02009-03-31 15:25:39 -0700314 case 28:
315 case 25:
316 var->transp.length = var->bits_per_pixel - 24;
317 var->transp.offset = 24;
318 /* drop through */
319 case 24:
320 /* our 24bpp is unpacked, so 32bpp */
321 var->bits_per_pixel = 32;
Ben Dooksec549a02009-03-31 15:25:39 -0700322 var->red.offset = 16;
323 var->red.length = 8;
324 var->green.offset = 8;
325 var->green.length = 8;
326 var->blue.offset = 0;
327 var->blue.length = 8;
328 break;
329
330 default:
331 dev_err(sfb->dev, "invalid bpp\n");
332 }
333
334 dev_dbg(sfb->dev, "%s: verified parameters\n", __func__);
335 return 0;
336}
337
338/**
339 * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock.
340 * @sfb: The hardware state.
341 * @pixclock: The pixel clock wanted, in picoseconds.
342 *
343 * Given the specified pixel clock, work out the necessary divider to get
344 * close to the output frequency.
345 */
Mark Browneb29a5c2010-01-15 17:01:40 -0800346static int s3c_fb_calc_pixclk(struct s3c_fb *sfb, unsigned int pixclk)
Ben Dooksec549a02009-03-31 15:25:39 -0700347{
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900348 unsigned long clk;
Mark Browneb29a5c2010-01-15 17:01:40 -0800349 unsigned long long tmp;
Ben Dooksec549a02009-03-31 15:25:39 -0700350 unsigned int result;
351
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900352 if (sfb->variant.has_clksel)
353 clk = clk_get_rate(sfb->bus_clk);
354 else
355 clk = clk_get_rate(sfb->lcd_clk);
356
Mark Browneb29a5c2010-01-15 17:01:40 -0800357 tmp = (unsigned long long)clk;
358 tmp *= pixclk;
359
360 do_div(tmp, 1000000000UL);
361 result = (unsigned int)tmp / 1000;
Ben Dooksec549a02009-03-31 15:25:39 -0700362
363 dev_dbg(sfb->dev, "pixclk=%u, clk=%lu, div=%d (%lu)\n",
364 pixclk, clk, result, clk / result);
365
366 return result;
367}
368
369/**
370 * s3c_fb_align_word() - align pixel count to word boundary
371 * @bpp: The number of bits per pixel
372 * @pix: The value to be aligned.
373 *
374 * Align the given pixel count so that it will start on an 32bit word
375 * boundary.
376 */
377static int s3c_fb_align_word(unsigned int bpp, unsigned int pix)
378{
379 int pix_per_word;
380
381 if (bpp > 16)
382 return pix;
383
384 pix_per_word = (8 * 32) / bpp;
385 return ALIGN(pix, pix_per_word);
386}
387
388/**
Pawel Osciakf676ec22010-08-10 18:02:40 -0700389 * vidosd_set_size() - set OSD size for a window
390 *
391 * @win: the window to set OSD size for
392 * @size: OSD size register value
393 */
394static void vidosd_set_size(struct s3c_fb_win *win, u32 size)
395{
396 struct s3c_fb *sfb = win->parent;
397
398 /* OSD can be set up if osd_size_off != 0 for this window */
399 if (win->variant.osd_size_off)
400 writel(size, sfb->regs + OSD_BASE(win->index, sfb->variant)
401 + win->variant.osd_size_off);
402}
403
404/**
405 * vidosd_set_alpha() - set alpha transparency for a window
406 *
407 * @win: the window to set OSD size for
408 * @alpha: alpha register value
409 */
410static void vidosd_set_alpha(struct s3c_fb_win *win, u32 alpha)
411{
412 struct s3c_fb *sfb = win->parent;
413
414 if (win->variant.has_osd_alpha)
415 writel(alpha, sfb->regs + VIDOSD_C(win->index, sfb->variant));
416}
417
418/**
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700419 * shadow_protect_win() - disable updating values from shadow registers at vsync
420 *
421 * @win: window to protect registers for
422 * @protect: 1 to protect (disable updates)
423 */
424static void shadow_protect_win(struct s3c_fb_win *win, bool protect)
425{
426 struct s3c_fb *sfb = win->parent;
427 u32 reg;
428
429 if (protect) {
430 if (sfb->variant.has_prtcon) {
431 writel(PRTCON_PROTECT, sfb->regs + PRTCON);
432 } else if (sfb->variant.has_shadowcon) {
433 reg = readl(sfb->regs + SHADOWCON);
434 writel(reg | SHADOWCON_WINx_PROTECT(win->index),
435 sfb->regs + SHADOWCON);
436 }
437 } else {
438 if (sfb->variant.has_prtcon) {
439 writel(0, sfb->regs + PRTCON);
440 } else if (sfb->variant.has_shadowcon) {
441 reg = readl(sfb->regs + SHADOWCON);
442 writel(reg & ~SHADOWCON_WINx_PROTECT(win->index),
443 sfb->regs + SHADOWCON);
444 }
445 }
446}
447
448/**
Mark Browna2b77dc2011-12-27 14:16:08 +0000449 * s3c_fb_enable() - Set the state of the main LCD output
450 * @sfb: The main framebuffer state.
451 * @enable: The state to set.
452 */
453static void s3c_fb_enable(struct s3c_fb *sfb, int enable)
454{
455 u32 vidcon0 = readl(sfb->regs + VIDCON0);
456
Mark Brownf4f51472011-12-27 14:16:10 +0000457 if (enable && !sfb->output_on)
458 pm_runtime_get_sync(sfb->dev);
459
460 if (enable) {
Mark Browna2b77dc2011-12-27 14:16:08 +0000461 vidcon0 |= VIDCON0_ENVID | VIDCON0_ENVID_F;
Mark Brownf4f51472011-12-27 14:16:10 +0000462 } else {
Mark Browna2b77dc2011-12-27 14:16:08 +0000463 /* see the note in the framebuffer datasheet about
464 * why you cannot take both of these bits down at the
465 * same time. */
466
Mark Brownf4f51472011-12-27 14:16:10 +0000467 if (vidcon0 & VIDCON0_ENVID) {
468 vidcon0 |= VIDCON0_ENVID;
469 vidcon0 &= ~VIDCON0_ENVID_F;
470 }
Mark Browna2b77dc2011-12-27 14:16:08 +0000471 }
472
473 writel(vidcon0, sfb->regs + VIDCON0);
Mark Brownf4f51472011-12-27 14:16:10 +0000474
475 if (!enable && sfb->output_on)
476 pm_runtime_put_sync(sfb->dev);
477
478 sfb->output_on = enable;
Mark Browna2b77dc2011-12-27 14:16:08 +0000479}
480
481/**
Ben Dooksec549a02009-03-31 15:25:39 -0700482 * s3c_fb_set_par() - framebuffer request to set new framebuffer state.
483 * @info: The framebuffer to change.
484 *
485 * Framebuffer layer request to set a new mode for the specified framebuffer
486 */
487static int s3c_fb_set_par(struct fb_info *info)
488{
489 struct fb_var_screeninfo *var = &info->var;
490 struct s3c_fb_win *win = info->par;
491 struct s3c_fb *sfb = win->parent;
492 void __iomem *regs = sfb->regs;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700493 void __iomem *buf = regs;
Ben Dooksec549a02009-03-31 15:25:39 -0700494 int win_no = win->index;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700495 u32 alpha = 0;
Ben Dooksec549a02009-03-31 15:25:39 -0700496 u32 data;
497 u32 pagewidth;
498 int clkdiv;
499
500 dev_dbg(sfb->dev, "setting framebuffer parameters\n");
501
Mark Brown5751b232011-12-27 14:16:11 +0000502 pm_runtime_get_sync(sfb->dev);
503
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700504 shadow_protect_win(win, 1);
505
Ben Dooksec549a02009-03-31 15:25:39 -0700506 switch (var->bits_per_pixel) {
507 case 32:
508 case 24:
509 case 16:
510 case 12:
511 info->fix.visual = FB_VISUAL_TRUECOLOR;
512 break;
513 case 8:
Ben Dooks50a55032010-08-10 18:02:33 -0700514 if (win->variant.palette_sz >= 256)
Ben Dooksec549a02009-03-31 15:25:39 -0700515 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
516 else
517 info->fix.visual = FB_VISUAL_TRUECOLOR;
518 break;
519 case 1:
520 info->fix.visual = FB_VISUAL_MONO01;
521 break;
522 default:
523 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
524 break;
525 }
526
527 info->fix.line_length = (var->xres_virtual * var->bits_per_pixel) / 8;
528
Pawel Osciak067b2262010-08-10 18:02:38 -0700529 info->fix.xpanstep = info->var.xres_virtual > info->var.xres ? 1 : 0;
530 info->fix.ypanstep = info->var.yres_virtual > info->var.yres ? 1 : 0;
531
Ben Dooksec549a02009-03-31 15:25:39 -0700532 /* disable the window whilst we update it */
533 writel(0, regs + WINCON(win_no));
534
InKi Daead044902010-08-10 18:02:31 -0700535 /* use platform specified window as the basis for the lcd timings */
Ben Dooksec549a02009-03-31 15:25:39 -0700536
InKi Daead044902010-08-10 18:02:31 -0700537 if (win_no == sfb->pdata->default_win) {
Mark Browneb29a5c2010-01-15 17:01:40 -0800538 clkdiv = s3c_fb_calc_pixclk(sfb, var->pixclock);
Ben Dooksec549a02009-03-31 15:25:39 -0700539
540 data = sfb->pdata->vidcon0;
541 data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR);
542
543 if (clkdiv > 1)
544 data |= VIDCON0_CLKVAL_F(clkdiv-1) | VIDCON0_CLKDIR;
545 else
546 data &= ~VIDCON0_CLKDIR; /* 1:1 clock */
547
548 /* write the timing data to the panel */
549
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700550 if (sfb->variant.is_2443)
551 data |= (1 << 5);
552
Ben Dooksec549a02009-03-31 15:25:39 -0700553 writel(data, regs + VIDCON0);
554
Mark Browna2b77dc2011-12-27 14:16:08 +0000555 s3c_fb_enable(sfb, 1);
556
Ben Dooksec549a02009-03-31 15:25:39 -0700557 data = VIDTCON0_VBPD(var->upper_margin - 1) |
558 VIDTCON0_VFPD(var->lower_margin - 1) |
559 VIDTCON0_VSPW(var->vsync_len - 1);
560
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700561 writel(data, regs + sfb->variant.vidtcon);
Ben Dooksec549a02009-03-31 15:25:39 -0700562
563 data = VIDTCON1_HBPD(var->left_margin - 1) |
564 VIDTCON1_HFPD(var->right_margin - 1) |
565 VIDTCON1_HSPW(var->hsync_len - 1);
566
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700567 /* VIDTCON1 */
568 writel(data, regs + sfb->variant.vidtcon + 4);
Ben Dooksec549a02009-03-31 15:25:39 -0700569
570 data = VIDTCON2_LINEVAL(var->yres - 1) |
571 VIDTCON2_HOZVAL(var->xres - 1);
Jingoo Hanb73a21fc2011-04-01 07:17:27 +0000572 writel(data, regs + sfb->variant.vidtcon + 8);
Ben Dooksec549a02009-03-31 15:25:39 -0700573 }
574
575 /* write the buffer address */
576
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700577 /* start and end registers stride is 8 */
578 buf = regs + win_no * 8;
579
580 writel(info->fix.smem_start, buf + sfb->variant.buf_start);
Ben Dooksec549a02009-03-31 15:25:39 -0700581
582 data = info->fix.smem_start + info->fix.line_length * var->yres;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700583 writel(data, buf + sfb->variant.buf_end);
Ben Dooksec549a02009-03-31 15:25:39 -0700584
585 pagewidth = (var->xres * var->bits_per_pixel) >> 3;
586 data = VIDW_BUF_SIZE_OFFSET(info->fix.line_length - pagewidth) |
587 VIDW_BUF_SIZE_PAGEWIDTH(pagewidth);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700588 writel(data, regs + sfb->variant.buf_size + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700589
590 /* write 'OSD' registers to control position of framebuffer */
591
592 data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700593 writel(data, regs + VIDOSD_A(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700594
595 data = VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var->bits_per_pixel,
596 var->xres - 1)) |
597 VIDOSDxB_BOTRIGHT_Y(var->yres - 1);
598
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700599 writel(data, regs + VIDOSD_B(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700600
601 data = var->xres * var->yres;
InKi Dae39000d62009-06-16 15:34:27 -0700602
Pawel Osciakf676ec22010-08-10 18:02:40 -0700603 alpha = VIDISD14C_ALPHA1_R(0xf) |
InKi Dae39000d62009-06-16 15:34:27 -0700604 VIDISD14C_ALPHA1_G(0xf) |
605 VIDISD14C_ALPHA1_B(0xf);
606
Pawel Osciakf676ec22010-08-10 18:02:40 -0700607 vidosd_set_alpha(win, alpha);
608 vidosd_set_size(win, data);
Ben Dooksec549a02009-03-31 15:25:39 -0700609
Jingoo Hanfab7c5b2011-06-09 04:26:45 +0000610 /* Enable DMA channel for this window */
611 if (sfb->variant.has_shadowcon) {
612 data = readl(sfb->regs + SHADOWCON);
613 data |= SHADOWCON_CHx_ENABLE(win_no);
614 writel(data, sfb->regs + SHADOWCON);
615 }
616
Ben Dooksec549a02009-03-31 15:25:39 -0700617 data = WINCONx_ENWIN;
Jingoo Han2d9ae7a2011-12-02 19:07:17 +0900618 sfb->enabled |= (1 << win->index);
Ben Dooksec549a02009-03-31 15:25:39 -0700619
620 /* note, since we have to round up the bits-per-pixel, we end up
621 * relying on the bitfield information for r/g/b/a to work out
622 * exactly which mode of operation is intended. */
623
624 switch (var->bits_per_pixel) {
625 case 1:
626 data |= WINCON0_BPPMODE_1BPP;
627 data |= WINCONx_BITSWP;
628 data |= WINCONx_BURSTLEN_4WORD;
629 break;
630 case 2:
631 data |= WINCON0_BPPMODE_2BPP;
632 data |= WINCONx_BITSWP;
633 data |= WINCONx_BURSTLEN_8WORD;
634 break;
635 case 4:
636 data |= WINCON0_BPPMODE_4BPP;
637 data |= WINCONx_BITSWP;
638 data |= WINCONx_BURSTLEN_8WORD;
639 break;
640 case 8:
641 if (var->transp.length != 0)
642 data |= WINCON1_BPPMODE_8BPP_1232;
643 else
644 data |= WINCON0_BPPMODE_8BPP_PALETTE;
645 data |= WINCONx_BURSTLEN_8WORD;
646 data |= WINCONx_BYTSWP;
647 break;
648 case 16:
649 if (var->transp.length != 0)
650 data |= WINCON1_BPPMODE_16BPP_A1555;
651 else
652 data |= WINCON0_BPPMODE_16BPP_565;
653 data |= WINCONx_HAWSWP;
654 data |= WINCONx_BURSTLEN_16WORD;
655 break;
656 case 24:
657 case 32:
658 if (var->red.length == 6) {
659 if (var->transp.length != 0)
660 data |= WINCON1_BPPMODE_19BPP_A1666;
661 else
662 data |= WINCON1_BPPMODE_18BPP_666;
InKi Dae39000d62009-06-16 15:34:27 -0700663 } else if (var->transp.length == 1)
664 data |= WINCON1_BPPMODE_25BPP_A1888
665 | WINCON1_BLD_PIX;
Jingoo Han4420dd22011-11-07 15:03:01 +0900666 else if ((var->transp.length == 4) ||
667 (var->transp.length == 8))
InKi Dae39000d62009-06-16 15:34:27 -0700668 data |= WINCON1_BPPMODE_28BPP_A4888
669 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
Ben Dooksec549a02009-03-31 15:25:39 -0700670 else
671 data |= WINCON0_BPPMODE_24BPP_888;
672
InKi Daedc8498c2010-08-10 18:02:32 -0700673 data |= WINCONx_WSWP;
Ben Dooksec549a02009-03-31 15:25:39 -0700674 data |= WINCONx_BURSTLEN_16WORD;
675 break;
676 }
677
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700678 /* Enable the colour keying for the window below this one */
InKi Dae39000d62009-06-16 15:34:27 -0700679 if (win_no > 0) {
680 u32 keycon0_data = 0, keycon1_data = 0;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700681 void __iomem *keycon = regs + sfb->variant.keycon;
InKi Dae39000d62009-06-16 15:34:27 -0700682
683 keycon0_data = ~(WxKEYCON0_KEYBL_EN |
684 WxKEYCON0_KEYEN_F |
685 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
686
687 keycon1_data = WxKEYCON1_COLVAL(0xffffff);
688
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700689 keycon += (win_no - 1) * 8;
690
691 writel(keycon0_data, keycon + WKEYCON0);
692 writel(keycon1_data, keycon + WKEYCON1);
InKi Dae39000d62009-06-16 15:34:27 -0700693 }
694
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700695 writel(data, regs + sfb->variant.wincon + (win_no * 4));
696 writel(0x0, regs + sfb->variant.winmap + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700697
Jingoo Hanf7f31e52012-01-27 14:47:22 +0900698 /* Set alpha value width */
699 if (sfb->variant.has_blendcon) {
700 data = readl(sfb->regs + BLENDCON);
701 data &= ~BLENDCON_NEW_MASK;
702 if (var->transp.length > 4)
703 data |= BLENDCON_NEW_8BIT_ALPHA_VALUE;
704 else
705 data |= BLENDCON_NEW_4BIT_ALPHA_VALUE;
706 writel(data, sfb->regs + BLENDCON);
707 }
708
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700709 shadow_protect_win(win, 0);
710
Mark Brown5751b232011-12-27 14:16:11 +0000711 pm_runtime_put_sync(sfb->dev);
712
Ben Dooksec549a02009-03-31 15:25:39 -0700713 return 0;
714}
715
716/**
717 * s3c_fb_update_palette() - set or schedule a palette update.
718 * @sfb: The hardware information.
719 * @win: The window being updated.
720 * @reg: The palette index being changed.
721 * @value: The computed palette value.
722 *
723 * Change the value of a palette register, either by directly writing to
724 * the palette (this requires the palette RAM to be disconnected from the
725 * hardware whilst this is in progress) or schedule the update for later.
726 *
727 * At the moment, since we have no VSYNC interrupt support, we simply set
728 * the palette entry directly.
729 */
730static void s3c_fb_update_palette(struct s3c_fb *sfb,
731 struct s3c_fb_win *win,
732 unsigned int reg,
733 u32 value)
734{
735 void __iomem *palreg;
736 u32 palcon;
737
Ben Dooks50a55032010-08-10 18:02:33 -0700738 palreg = sfb->regs + sfb->variant.palette[win->index];
Ben Dooksec549a02009-03-31 15:25:39 -0700739
740 dev_dbg(sfb->dev, "%s: win %d, reg %d (%p): %08x\n",
741 __func__, win->index, reg, palreg, value);
742
743 win->palette_buffer[reg] = value;
744
745 palcon = readl(sfb->regs + WPALCON);
746 writel(palcon | WPALCON_PAL_UPDATE, sfb->regs + WPALCON);
747
Ben Dooks50a55032010-08-10 18:02:33 -0700748 if (win->variant.palette_16bpp)
749 writew(value, palreg + (reg * 2));
Ben Dooksec549a02009-03-31 15:25:39 -0700750 else
Ben Dooks50a55032010-08-10 18:02:33 -0700751 writel(value, palreg + (reg * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700752
753 writel(palcon, sfb->regs + WPALCON);
754}
755
756static inline unsigned int chan_to_field(unsigned int chan,
757 struct fb_bitfield *bf)
758{
759 chan &= 0xffff;
760 chan >>= 16 - bf->length;
761 return chan << bf->offset;
762}
763
764/**
765 * s3c_fb_setcolreg() - framebuffer layer request to change palette.
766 * @regno: The palette index to change.
767 * @red: The red field for the palette data.
768 * @green: The green field for the palette data.
769 * @blue: The blue field for the palette data.
770 * @trans: The transparency (alpha) field for the palette data.
771 * @info: The framebuffer being changed.
772 */
773static int s3c_fb_setcolreg(unsigned regno,
774 unsigned red, unsigned green, unsigned blue,
775 unsigned transp, struct fb_info *info)
776{
777 struct s3c_fb_win *win = info->par;
778 struct s3c_fb *sfb = win->parent;
779 unsigned int val;
780
781 dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
782 __func__, win->index, regno, red, green, blue);
783
Mark Brown5751b232011-12-27 14:16:11 +0000784 pm_runtime_get_sync(sfb->dev);
785
Ben Dooksec549a02009-03-31 15:25:39 -0700786 switch (info->fix.visual) {
787 case FB_VISUAL_TRUECOLOR:
788 /* true-colour, use pseudo-palette */
789
790 if (regno < 16) {
791 u32 *pal = info->pseudo_palette;
792
793 val = chan_to_field(red, &info->var.red);
794 val |= chan_to_field(green, &info->var.green);
795 val |= chan_to_field(blue, &info->var.blue);
796
797 pal[regno] = val;
798 }
799 break;
800
801 case FB_VISUAL_PSEUDOCOLOR:
Ben Dooks50a55032010-08-10 18:02:33 -0700802 if (regno < win->variant.palette_sz) {
Ben Dooksec549a02009-03-31 15:25:39 -0700803 val = chan_to_field(red, &win->palette.r);
804 val |= chan_to_field(green, &win->palette.g);
805 val |= chan_to_field(blue, &win->palette.b);
806
807 s3c_fb_update_palette(sfb, win, regno, val);
808 }
809
810 break;
811
812 default:
Mark Brown5751b232011-12-27 14:16:11 +0000813 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700814 return 1; /* unknown type */
815 }
816
Mark Brown5751b232011-12-27 14:16:11 +0000817 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700818 return 0;
819}
820
821/**
Ben Dooksec549a02009-03-31 15:25:39 -0700822 * s3c_fb_blank() - blank or unblank the given window
823 * @blank_mode: The blank state from FB_BLANK_*
824 * @info: The framebuffer to blank.
825 *
826 * Framebuffer layer request to change the power state.
827 */
828static int s3c_fb_blank(int blank_mode, struct fb_info *info)
829{
830 struct s3c_fb_win *win = info->par;
831 struct s3c_fb *sfb = win->parent;
832 unsigned int index = win->index;
833 u32 wincon;
834
835 dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
836
Mark Brown5751b232011-12-27 14:16:11 +0000837 pm_runtime_get_sync(sfb->dev);
838
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700839 wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700840
841 switch (blank_mode) {
842 case FB_BLANK_POWERDOWN:
843 wincon &= ~WINCONx_ENWIN;
844 sfb->enabled &= ~(1 << index);
845 /* fall through to FB_BLANK_NORMAL */
846
847 case FB_BLANK_NORMAL:
848 /* disable the DMA and display 0x0 (black) */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900849 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700850 writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700851 sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900852 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700853 break;
854
855 case FB_BLANK_UNBLANK:
Jingoo Hanff8c9102011-12-08 18:08:00 +0900856 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700857 writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900858 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700859 wincon |= WINCONx_ENWIN;
860 sfb->enabled |= (1 << index);
861 break;
862
863 case FB_BLANK_VSYNC_SUSPEND:
864 case FB_BLANK_HSYNC_SUSPEND:
865 default:
Mark Brown5751b232011-12-27 14:16:11 +0000866 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700867 return 1;
868 }
869
Jingoo Hanff8c9102011-12-08 18:08:00 +0900870 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700871 writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900872 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700873
874 /* Check the enabled state to see if we need to be running the
875 * main LCD interface, as if there are no active windows then
876 * it is highly likely that we also do not need to output
877 * anything.
878 */
879
880 /* We could do something like the following code, but the current
881 * system of using framebuffer events means that we cannot make
882 * the distinction between just window 0 being inactive and all
883 * the windows being down.
884 *
885 * s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
886 */
887
888 /* we're stuck with this until we can do something about overriding
889 * the power control using the blanking event for a single fb.
890 */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900891 if (index == sfb->pdata->default_win) {
892 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700893 s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
Jingoo Hanff8c9102011-12-08 18:08:00 +0900894 shadow_protect_win(win, 0);
895 }
Ben Dooksec549a02009-03-31 15:25:39 -0700896
Mark Brown5751b232011-12-27 14:16:11 +0000897 pm_runtime_put_sync(sfb->dev);
898
Ben Dooksec549a02009-03-31 15:25:39 -0700899 return 0;
900}
901
Pawel Osciak067b2262010-08-10 18:02:38 -0700902/**
903 * s3c_fb_pan_display() - Pan the display.
904 *
905 * Note that the offsets can be written to the device at any time, as their
906 * values are latched at each vsync automatically. This also means that only
907 * the last call to this function will have any effect on next vsync, but
908 * there is no need to sleep waiting for it to prevent tearing.
909 *
910 * @var: The screen information to verify.
911 * @info: The framebuffer device.
912 */
913static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
914 struct fb_info *info)
915{
916 struct s3c_fb_win *win = info->par;
917 struct s3c_fb *sfb = win->parent;
918 void __iomem *buf = sfb->regs + win->index * 8;
919 unsigned int start_boff, end_boff;
920
Mark Brown5751b232011-12-27 14:16:11 +0000921 pm_runtime_get_sync(sfb->dev);
922
Pawel Osciak067b2262010-08-10 18:02:38 -0700923 /* Offset in bytes to the start of the displayed area */
924 start_boff = var->yoffset * info->fix.line_length;
925 /* X offset depends on the current bpp */
926 if (info->var.bits_per_pixel >= 8) {
927 start_boff += var->xoffset * (info->var.bits_per_pixel >> 3);
928 } else {
929 switch (info->var.bits_per_pixel) {
930 case 4:
931 start_boff += var->xoffset >> 1;
932 break;
933 case 2:
934 start_boff += var->xoffset >> 2;
935 break;
936 case 1:
937 start_boff += var->xoffset >> 3;
938 break;
939 default:
940 dev_err(sfb->dev, "invalid bpp\n");
Mark Brown5751b232011-12-27 14:16:11 +0000941 pm_runtime_put_sync(sfb->dev);
Pawel Osciak067b2262010-08-10 18:02:38 -0700942 return -EINVAL;
943 }
944 }
945 /* Offset in bytes to the end of the displayed area */
Laurent Pinchartd8e7a742011-05-25 11:34:52 +0200946 end_boff = start_boff + info->var.yres * info->fix.line_length;
Pawel Osciak067b2262010-08-10 18:02:38 -0700947
948 /* Temporarily turn off per-vsync update from shadow registers until
949 * both start and end addresses are updated to prevent corruption */
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700950 shadow_protect_win(win, 1);
Pawel Osciak067b2262010-08-10 18:02:38 -0700951
952 writel(info->fix.smem_start + start_boff, buf + sfb->variant.buf_start);
953 writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
954
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700955 shadow_protect_win(win, 0);
Pawel Osciak067b2262010-08-10 18:02:38 -0700956
Mark Brown5751b232011-12-27 14:16:11 +0000957 pm_runtime_put_sync(sfb->dev);
Pawel Osciak067b2262010-08-10 18:02:38 -0700958 return 0;
959}
960
Pawel Osciakefdc8462010-08-10 18:02:38 -0700961/**
962 * s3c_fb_enable_irq() - enable framebuffer interrupts
963 * @sfb: main hardware state
964 */
965static void s3c_fb_enable_irq(struct s3c_fb *sfb)
966{
967 void __iomem *regs = sfb->regs;
968 u32 irq_ctrl_reg;
969
970 if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
971 /* IRQ disabled, enable it */
972 irq_ctrl_reg = readl(regs + VIDINTCON0);
973
974 irq_ctrl_reg |= VIDINTCON0_INT_ENABLE;
975 irq_ctrl_reg |= VIDINTCON0_INT_FRAME;
976
977 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL0_MASK;
978 irq_ctrl_reg |= VIDINTCON0_FRAMESEL0_VSYNC;
979 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL1_MASK;
980 irq_ctrl_reg |= VIDINTCON0_FRAMESEL1_NONE;
981
982 writel(irq_ctrl_reg, regs + VIDINTCON0);
983 }
984}
985
986/**
987 * s3c_fb_disable_irq() - disable framebuffer interrupts
988 * @sfb: main hardware state
989 */
990static void s3c_fb_disable_irq(struct s3c_fb *sfb)
991{
992 void __iomem *regs = sfb->regs;
993 u32 irq_ctrl_reg;
994
995 if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
996 /* IRQ enabled, disable it */
997 irq_ctrl_reg = readl(regs + VIDINTCON0);
998
999 irq_ctrl_reg &= ~VIDINTCON0_INT_FRAME;
1000 irq_ctrl_reg &= ~VIDINTCON0_INT_ENABLE;
1001
1002 writel(irq_ctrl_reg, regs + VIDINTCON0);
1003 }
1004}
1005
1006static irqreturn_t s3c_fb_irq(int irq, void *dev_id)
1007{
1008 struct s3c_fb *sfb = dev_id;
1009 void __iomem *regs = sfb->regs;
1010 u32 irq_sts_reg;
1011
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001012 spin_lock(&sfb->slock);
1013
Pawel Osciakefdc8462010-08-10 18:02:38 -07001014 irq_sts_reg = readl(regs + VIDINTCON1);
1015
1016 if (irq_sts_reg & VIDINTCON1_INT_FRAME) {
1017
1018 /* VSYNC interrupt, accept it */
1019 writel(VIDINTCON1_INT_FRAME, regs + VIDINTCON1);
1020
1021 sfb->vsync_info.count++;
1022 wake_up_interruptible(&sfb->vsync_info.wait);
1023 }
1024
1025 /* We only support waiting for VSYNC for now, so it's safe
1026 * to always disable irqs here.
1027 */
1028 s3c_fb_disable_irq(sfb);
1029
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001030 spin_unlock(&sfb->slock);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001031 return IRQ_HANDLED;
1032}
1033
1034/**
1035 * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
1036 * @sfb: main hardware state
1037 * @crtc: head index.
1038 */
1039static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
1040{
1041 unsigned long count;
1042 int ret;
1043
1044 if (crtc != 0)
1045 return -ENODEV;
1046
Mark Brown5751b232011-12-27 14:16:11 +00001047 pm_runtime_get_sync(sfb->dev);
1048
Pawel Osciakefdc8462010-08-10 18:02:38 -07001049 count = sfb->vsync_info.count;
1050 s3c_fb_enable_irq(sfb);
1051 ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
1052 count != sfb->vsync_info.count,
1053 msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
Mark Brown5751b232011-12-27 14:16:11 +00001054
1055 pm_runtime_put_sync(sfb->dev);
1056
Pawel Osciakefdc8462010-08-10 18:02:38 -07001057 if (ret == 0)
1058 return -ETIMEDOUT;
1059
1060 return 0;
1061}
1062
1063static int s3c_fb_ioctl(struct fb_info *info, unsigned int cmd,
1064 unsigned long arg)
1065{
1066 struct s3c_fb_win *win = info->par;
1067 struct s3c_fb *sfb = win->parent;
1068 int ret;
1069 u32 crtc;
1070
1071 switch (cmd) {
1072 case FBIO_WAITFORVSYNC:
1073 if (get_user(crtc, (u32 __user *)arg)) {
1074 ret = -EFAULT;
1075 break;
1076 }
1077
1078 ret = s3c_fb_wait_for_vsync(sfb, crtc);
1079 break;
1080 default:
1081 ret = -ENOTTY;
1082 }
1083
1084 return ret;
1085}
1086
Ben Dooksec549a02009-03-31 15:25:39 -07001087static struct fb_ops s3c_fb_ops = {
1088 .owner = THIS_MODULE,
1089 .fb_check_var = s3c_fb_check_var,
1090 .fb_set_par = s3c_fb_set_par,
1091 .fb_blank = s3c_fb_blank,
1092 .fb_setcolreg = s3c_fb_setcolreg,
1093 .fb_fillrect = cfb_fillrect,
1094 .fb_copyarea = cfb_copyarea,
1095 .fb_imageblit = cfb_imageblit,
Pawel Osciak067b2262010-08-10 18:02:38 -07001096 .fb_pan_display = s3c_fb_pan_display,
Pawel Osciakefdc8462010-08-10 18:02:38 -07001097 .fb_ioctl = s3c_fb_ioctl,
Ben Dooksec549a02009-03-31 15:25:39 -07001098};
1099
1100/**
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001101 * s3c_fb_missing_pixclock() - calculates pixel clock
1102 * @mode: The video mode to change.
1103 *
1104 * Calculate the pixel clock when none has been given through platform data.
1105 */
1106static void __devinit s3c_fb_missing_pixclock(struct fb_videomode *mode)
1107{
1108 u64 pixclk = 1000000000000ULL;
1109 u32 div;
1110
1111 div = mode->left_margin + mode->hsync_len + mode->right_margin +
1112 mode->xres;
1113 div *= mode->upper_margin + mode->vsync_len + mode->lower_margin +
1114 mode->yres;
1115 div *= mode->refresh ? : 60;
1116
1117 do_div(pixclk, div);
1118
1119 mode->pixclock = pixclk;
1120}
1121
1122/**
Ben Dooksec549a02009-03-31 15:25:39 -07001123 * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1124 * @sfb: The base resources for the hardware.
1125 * @win: The window to initialise memory for.
1126 *
1127 * Allocate memory for the given framebuffer.
1128 */
1129static int __devinit s3c_fb_alloc_memory(struct s3c_fb *sfb,
1130 struct s3c_fb_win *win)
1131{
1132 struct s3c_fb_pd_win *windata = win->windata;
1133 unsigned int real_size, virt_size, size;
1134 struct fb_info *fbi = win->fbinfo;
1135 dma_addr_t map_dma;
1136
1137 dev_dbg(sfb->dev, "allocating memory for display\n");
1138
1139 real_size = windata->win_mode.xres * windata->win_mode.yres;
1140 virt_size = windata->virtual_x * windata->virtual_y;
1141
1142 dev_dbg(sfb->dev, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
1143 real_size, windata->win_mode.xres, windata->win_mode.yres,
1144 virt_size, windata->virtual_x, windata->virtual_y);
1145
1146 size = (real_size > virt_size) ? real_size : virt_size;
1147 size *= (windata->max_bpp > 16) ? 32 : windata->max_bpp;
1148 size /= 8;
1149
1150 fbi->fix.smem_len = size;
1151 size = PAGE_ALIGN(size);
1152
1153 dev_dbg(sfb->dev, "want %u bytes for window\n", size);
1154
1155 fbi->screen_base = dma_alloc_writecombine(sfb->dev, size,
1156 &map_dma, GFP_KERNEL);
1157 if (!fbi->screen_base)
1158 return -ENOMEM;
1159
1160 dev_dbg(sfb->dev, "mapped %x to %p\n",
1161 (unsigned int)map_dma, fbi->screen_base);
1162
1163 memset(fbi->screen_base, 0x0, size);
1164 fbi->fix.smem_start = map_dma;
1165
1166 return 0;
1167}
1168
1169/**
1170 * s3c_fb_free_memory() - free the display memory for the given window
1171 * @sfb: The base resources for the hardware.
1172 * @win: The window to free the display memory for.
1173 *
1174 * Free the display memory allocated by s3c_fb_alloc_memory().
1175 */
1176static void s3c_fb_free_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
1177{
1178 struct fb_info *fbi = win->fbinfo;
1179
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001180 if (fbi->screen_base)
1181 dma_free_writecombine(sfb->dev, PAGE_ALIGN(fbi->fix.smem_len),
Ben Dooksec549a02009-03-31 15:25:39 -07001182 fbi->screen_base, fbi->fix.smem_start);
1183}
1184
1185/**
1186 * s3c_fb_release_win() - release resources for a framebuffer window.
1187 * @win: The window to cleanup the resources for.
1188 *
1189 * Release the resources that where claimed for the hardware window,
1190 * such as the framebuffer instance and any memory claimed for it.
1191 */
1192static void s3c_fb_release_win(struct s3c_fb *sfb, struct s3c_fb_win *win)
1193{
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001194 u32 data;
1195
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001196 if (win->fbinfo) {
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001197 if (sfb->variant.has_shadowcon) {
1198 data = readl(sfb->regs + SHADOWCON);
1199 data &= ~SHADOWCON_CHx_ENABLE(win->index);
1200 data &= ~SHADOWCON_CHx_LOCAL_ENABLE(win->index);
1201 writel(data, sfb->regs + SHADOWCON);
1202 }
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001203 unregister_framebuffer(win->fbinfo);
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001204 if (win->fbinfo->cmap.len)
1205 fb_dealloc_cmap(&win->fbinfo->cmap);
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001206 s3c_fb_free_memory(sfb, win);
1207 framebuffer_release(win->fbinfo);
1208 }
Ben Dooksec549a02009-03-31 15:25:39 -07001209}
1210
1211/**
1212 * s3c_fb_probe_win() - register an hardware window
1213 * @sfb: The base resources for the hardware
Ben Dooks50a55032010-08-10 18:02:33 -07001214 * @variant: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -07001215 * @res: Pointer to where to place the resultant window.
1216 *
1217 * Allocate and do the basic initialisation for one of the hardware's graphics
1218 * windows.
1219 */
1220static int __devinit s3c_fb_probe_win(struct s3c_fb *sfb, unsigned int win_no,
Ben Dooks50a55032010-08-10 18:02:33 -07001221 struct s3c_fb_win_variant *variant,
Ben Dooksec549a02009-03-31 15:25:39 -07001222 struct s3c_fb_win **res)
1223{
1224 struct fb_var_screeninfo *var;
1225 struct fb_videomode *initmode;
1226 struct s3c_fb_pd_win *windata;
1227 struct s3c_fb_win *win;
1228 struct fb_info *fbinfo;
1229 int palette_size;
1230 int ret;
1231
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001232 dev_dbg(sfb->dev, "probing window %d, variant %p\n", win_no, variant);
Ben Dooksec549a02009-03-31 15:25:39 -07001233
Pawel Osciakefdc8462010-08-10 18:02:38 -07001234 init_waitqueue_head(&sfb->vsync_info.wait);
1235
Ben Dooks50a55032010-08-10 18:02:33 -07001236 palette_size = variant->palette_sz * 4;
Ben Dooksec549a02009-03-31 15:25:39 -07001237
1238 fbinfo = framebuffer_alloc(sizeof(struct s3c_fb_win) +
1239 palette_size * sizeof(u32), sfb->dev);
1240 if (!fbinfo) {
1241 dev_err(sfb->dev, "failed to allocate framebuffer\n");
1242 return -ENOENT;
1243 }
1244
1245 windata = sfb->pdata->win[win_no];
1246 initmode = &windata->win_mode;
1247
1248 WARN_ON(windata->max_bpp == 0);
1249 WARN_ON(windata->win_mode.xres == 0);
1250 WARN_ON(windata->win_mode.yres == 0);
1251
1252 win = fbinfo->par;
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001253 *res = win;
Ben Dooksec549a02009-03-31 15:25:39 -07001254 var = &fbinfo->var;
Ben Dooks50a55032010-08-10 18:02:33 -07001255 win->variant = *variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001256 win->fbinfo = fbinfo;
1257 win->parent = sfb;
1258 win->windata = windata;
1259 win->index = win_no;
1260 win->palette_buffer = (u32 *)(win + 1);
1261
1262 ret = s3c_fb_alloc_memory(sfb, win);
1263 if (ret) {
1264 dev_err(sfb->dev, "failed to allocate display memory\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001265 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001266 }
1267
1268 /* setup the r/b/g positions for the window's palette */
Ben Dooksbc2da1b2010-08-10 18:02:34 -07001269 if (win->variant.palette_16bpp) {
1270 /* Set RGB 5:6:5 as default */
1271 win->palette.r.offset = 11;
1272 win->palette.r.length = 5;
1273 win->palette.g.offset = 5;
1274 win->palette.g.length = 6;
1275 win->palette.b.offset = 0;
1276 win->palette.b.length = 5;
1277
1278 } else {
1279 /* Set 8bpp or 8bpp and 1bit alpha */
1280 win->palette.r.offset = 16;
1281 win->palette.r.length = 8;
1282 win->palette.g.offset = 8;
1283 win->palette.g.length = 8;
1284 win->palette.b.offset = 0;
1285 win->palette.b.length = 8;
1286 }
Ben Dooksec549a02009-03-31 15:25:39 -07001287
1288 /* setup the initial video mode from the window */
1289 fb_videomode_to_var(&fbinfo->var, initmode);
1290
1291 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
1292 fbinfo->fix.accel = FB_ACCEL_NONE;
1293 fbinfo->var.activate = FB_ACTIVATE_NOW;
1294 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
1295 fbinfo->var.bits_per_pixel = windata->default_bpp;
1296 fbinfo->fbops = &s3c_fb_ops;
1297 fbinfo->flags = FBINFO_FLAG_DEFAULT;
1298 fbinfo->pseudo_palette = &win->pseudo_palette;
1299
1300 /* prepare to actually start the framebuffer */
1301
1302 ret = s3c_fb_check_var(&fbinfo->var, fbinfo);
1303 if (ret < 0) {
1304 dev_err(sfb->dev, "check_var failed on initial video params\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001305 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001306 }
1307
1308 /* create initial colour map */
1309
Ben Dooks50a55032010-08-10 18:02:33 -07001310 ret = fb_alloc_cmap(&fbinfo->cmap, win->variant.palette_sz, 1);
Ben Dooksec549a02009-03-31 15:25:39 -07001311 if (ret == 0)
1312 fb_set_cmap(&fbinfo->cmap, fbinfo);
1313 else
1314 dev_err(sfb->dev, "failed to allocate fb cmap\n");
1315
1316 s3c_fb_set_par(fbinfo);
1317
1318 dev_dbg(sfb->dev, "about to register framebuffer\n");
1319
1320 /* run the check_var and set_par on our configuration. */
1321
1322 ret = register_framebuffer(fbinfo);
1323 if (ret < 0) {
1324 dev_err(sfb->dev, "failed to register framebuffer\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001325 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001326 }
1327
Ben Dooksec549a02009-03-31 15:25:39 -07001328 dev_info(sfb->dev, "window %d: fb %s\n", win_no, fbinfo->fix.id);
1329
1330 return 0;
Ben Dooksec549a02009-03-31 15:25:39 -07001331}
1332
1333/**
1334 * s3c_fb_clear_win() - clear hardware window registers.
1335 * @sfb: The base resources for the hardware.
1336 * @win: The window to process.
1337 *
1338 * Reset the specific window registers to a known state.
1339 */
1340static void s3c_fb_clear_win(struct s3c_fb *sfb, int win)
1341{
1342 void __iomem *regs = sfb->regs;
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001343 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001344
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001345 writel(0, regs + sfb->variant.wincon + (win * 4));
1346 writel(0, regs + VIDOSD_A(win, sfb->variant));
1347 writel(0, regs + VIDOSD_B(win, sfb->variant));
1348 writel(0, regs + VIDOSD_C(win, sfb->variant));
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001349 reg = readl(regs + SHADOWCON);
1350 writel(reg & ~SHADOWCON_WINx_PROTECT(win), regs + SHADOWCON);
Ben Dooksec549a02009-03-31 15:25:39 -07001351}
1352
1353static int __devinit s3c_fb_probe(struct platform_device *pdev)
1354{
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001355 const struct platform_device_id *platid;
Ben Dooks50a55032010-08-10 18:02:33 -07001356 struct s3c_fb_driverdata *fbdrv;
Ben Dooksec549a02009-03-31 15:25:39 -07001357 struct device *dev = &pdev->dev;
1358 struct s3c_fb_platdata *pd;
1359 struct s3c_fb *sfb;
1360 struct resource *res;
1361 int win;
1362 int ret = 0;
Jingoo Hand8b97db2012-01-27 14:47:55 +09001363 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001364
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001365 platid = platform_get_device_id(pdev);
1366 fbdrv = (struct s3c_fb_driverdata *)platid->driver_data;
Ben Dooks50a55032010-08-10 18:02:33 -07001367
1368 if (fbdrv->variant.nr_windows > S3C_FB_MAX_WIN) {
1369 dev_err(dev, "too many windows, cannot attach\n");
1370 return -EINVAL;
1371 }
1372
Ben Dooksec549a02009-03-31 15:25:39 -07001373 pd = pdev->dev.platform_data;
1374 if (!pd) {
1375 dev_err(dev, "no platform data specified\n");
1376 return -EINVAL;
1377 }
1378
Mark Brown857a8df2012-01-21 13:11:49 +00001379 sfb = devm_kzalloc(dev, sizeof(struct s3c_fb), GFP_KERNEL);
Ben Dooksec549a02009-03-31 15:25:39 -07001380 if (!sfb) {
1381 dev_err(dev, "no memory for framebuffers\n");
1382 return -ENOMEM;
1383 }
1384
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001385 dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
1386
Ben Dooksec549a02009-03-31 15:25:39 -07001387 sfb->dev = dev;
1388 sfb->pdata = pd;
Ben Dooks50a55032010-08-10 18:02:33 -07001389 sfb->variant = fbdrv->variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001390
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001391 spin_lock_init(&sfb->slock);
1392
Ben Dooksec549a02009-03-31 15:25:39 -07001393 sfb->bus_clk = clk_get(dev, "lcd");
1394 if (IS_ERR(sfb->bus_clk)) {
1395 dev_err(dev, "failed to get bus clock\n");
axel lin942b8d02011-02-11 08:51:10 +00001396 ret = PTR_ERR(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001397 goto err_sfb;
1398 }
1399
1400 clk_enable(sfb->bus_clk);
1401
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001402 if (!sfb->variant.has_clksel) {
1403 sfb->lcd_clk = clk_get(dev, "sclk_fimd");
1404 if (IS_ERR(sfb->lcd_clk)) {
1405 dev_err(dev, "failed to get lcd clock\n");
1406 ret = PTR_ERR(sfb->lcd_clk);
1407 goto err_bus_clk;
1408 }
1409
1410 clk_enable(sfb->lcd_clk);
1411 }
1412
Jingoo Han49592122010-12-17 16:45:46 +09001413 pm_runtime_enable(sfb->dev);
1414
Ben Dooksec549a02009-03-31 15:25:39 -07001415 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1416 if (!res) {
1417 dev_err(dev, "failed to find registers\n");
1418 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001419 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001420 }
1421
Mark Brown857a8df2012-01-21 13:11:49 +00001422 sfb->regs = devm_request_and_ioremap(dev, res);
Ben Dooksec549a02009-03-31 15:25:39 -07001423 if (!sfb->regs) {
1424 dev_err(dev, "failed to map registers\n");
1425 ret = -ENXIO;
Mark Brown857a8df2012-01-21 13:11:49 +00001426 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001427 }
1428
Pawel Osciakefdc8462010-08-10 18:02:38 -07001429 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1430 if (!res) {
1431 dev_err(dev, "failed to acquire irq resource\n");
1432 ret = -ENOENT;
Mark Brown857a8df2012-01-21 13:11:49 +00001433 goto err_lcd_clk;
Pawel Osciakefdc8462010-08-10 18:02:38 -07001434 }
1435 sfb->irq_no = res->start;
1436 ret = request_irq(sfb->irq_no, s3c_fb_irq,
1437 0, "s3c_fb", sfb);
1438 if (ret) {
1439 dev_err(dev, "irq request failed\n");
Mark Brown857a8df2012-01-21 13:11:49 +00001440 goto err_lcd_clk;
Pawel Osciakefdc8462010-08-10 18:02:38 -07001441 }
1442
Ben Dooksec549a02009-03-31 15:25:39 -07001443 dev_dbg(dev, "got resources (regs %p), probing windows\n", sfb->regs);
1444
Jingoo Han49592122010-12-17 16:45:46 +09001445 platform_set_drvdata(pdev, sfb);
1446 pm_runtime_get_sync(sfb->dev);
1447
Ben Dooksec549a02009-03-31 15:25:39 -07001448 /* setup gpio and output polarity controls */
1449
1450 pd->setup_gpio();
1451
1452 writel(pd->vidcon1, sfb->regs + VIDCON1);
1453
Jingoo Hand8b97db2012-01-27 14:47:55 +09001454 /* set video clock running at under-run */
1455 if (sfb->variant.has_fixvclk) {
1456 reg = readl(sfb->regs + VIDCON1);
1457 reg &= ~VIDCON1_VCLK_MASK;
1458 reg |= VIDCON1_VCLK_RUN;
1459 writel(reg, sfb->regs + VIDCON1);
1460 }
1461
Ben Dooksec549a02009-03-31 15:25:39 -07001462 /* zero all windows before we do anything */
1463
Ben Dooks50a55032010-08-10 18:02:33 -07001464 for (win = 0; win < fbdrv->variant.nr_windows; win++)
Ben Dooksec549a02009-03-31 15:25:39 -07001465 s3c_fb_clear_win(sfb, win);
1466
Ben Dooks94947032010-08-10 18:02:32 -07001467 /* initialise colour key controls */
Ben Dooks50a55032010-08-10 18:02:33 -07001468 for (win = 0; win < (fbdrv->variant.nr_windows - 1); win++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001469 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1470
1471 regs += (win * 8);
1472 writel(0xffffff, regs + WKEYCON0);
1473 writel(0xffffff, regs + WKEYCON1);
Ben Dooks94947032010-08-10 18:02:32 -07001474 }
1475
Ben Dooksec549a02009-03-31 15:25:39 -07001476 /* we have the register setup, start allocating framebuffers */
1477
Ben Dooks50a55032010-08-10 18:02:33 -07001478 for (win = 0; win < fbdrv->variant.nr_windows; win++) {
Ben Dooksec549a02009-03-31 15:25:39 -07001479 if (!pd->win[win])
1480 continue;
1481
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001482 if (!pd->win[win]->win_mode.pixclock)
1483 s3c_fb_missing_pixclock(&pd->win[win]->win_mode);
1484
Ben Dooks50a55032010-08-10 18:02:33 -07001485 ret = s3c_fb_probe_win(sfb, win, fbdrv->win[win],
1486 &sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001487 if (ret < 0) {
1488 dev_err(dev, "failed to create window %d\n", win);
1489 for (; win >= 0; win--)
1490 s3c_fb_release_win(sfb, sfb->windows[win]);
Mark Brown3500b0b2011-12-27 14:16:09 +00001491 goto err_pm_runtime;
Ben Dooksec549a02009-03-31 15:25:39 -07001492 }
1493 }
1494
1495 platform_set_drvdata(pdev, sfb);
Mark Brownfe05f8b2011-12-27 14:16:07 +00001496 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001497
1498 return 0;
1499
Mark Brown3500b0b2011-12-27 14:16:09 +00001500err_pm_runtime:
1501 pm_runtime_put_sync(sfb->dev);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001502 free_irq(sfb->irq_no, sfb);
1503
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001504err_lcd_clk:
Mark Brown3500b0b2011-12-27 14:16:09 +00001505 pm_runtime_disable(sfb->dev);
1506
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001507 if (!sfb->variant.has_clksel) {
1508 clk_disable(sfb->lcd_clk);
1509 clk_put(sfb->lcd_clk);
1510 }
1511
1512err_bus_clk:
Ben Dooksec549a02009-03-31 15:25:39 -07001513 clk_disable(sfb->bus_clk);
1514 clk_put(sfb->bus_clk);
1515
1516err_sfb:
Ben Dooksec549a02009-03-31 15:25:39 -07001517 return ret;
1518}
1519
1520/**
1521 * s3c_fb_remove() - Cleanup on module finalisation
1522 * @pdev: The platform device we are bound to.
1523 *
1524 * Shutdown and then release all the resources that the driver allocated
1525 * on initialisation.
1526 */
1527static int __devexit s3c_fb_remove(struct platform_device *pdev)
1528{
1529 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1530 int win;
1531
Mark Brownfe05f8b2011-12-27 14:16:07 +00001532 pm_runtime_get_sync(sfb->dev);
1533
Pawel Osciakc42b1102009-07-29 15:02:10 -07001534 for (win = 0; win < S3C_FB_MAX_WIN; win++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001535 if (sfb->windows[win])
1536 s3c_fb_release_win(sfb, sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001537
Pawel Osciakefdc8462010-08-10 18:02:38 -07001538 free_irq(sfb->irq_no, sfb);
1539
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001540 if (!sfb->variant.has_clksel) {
1541 clk_disable(sfb->lcd_clk);
1542 clk_put(sfb->lcd_clk);
1543 }
1544
Ben Dooksec549a02009-03-31 15:25:39 -07001545 clk_disable(sfb->bus_clk);
1546 clk_put(sfb->bus_clk);
1547
Jingoo Han49592122010-12-17 16:45:46 +09001548 pm_runtime_put_sync(sfb->dev);
1549 pm_runtime_disable(sfb->dev);
1550
Ben Dooksec549a02009-03-31 15:25:39 -07001551 return 0;
1552}
1553
Mark Brownf4f51472011-12-27 14:16:10 +00001554#ifdef CONFIG_PM_SLEEP
Jingoo Han49592122010-12-17 16:45:46 +09001555static int s3c_fb_suspend(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001556{
Jingoo Han49592122010-12-17 16:45:46 +09001557 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001558 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1559 struct s3c_fb_win *win;
1560 int win_no;
1561
Pawel Osciakc42b1102009-07-29 15:02:10 -07001562 for (win_no = S3C_FB_MAX_WIN - 1; win_no >= 0; win_no--) {
Ben Dooksec549a02009-03-31 15:25:39 -07001563 win = sfb->windows[win_no];
1564 if (!win)
1565 continue;
1566
1567 /* use the blank function to push into power-down */
1568 s3c_fb_blank(FB_BLANK_POWERDOWN, win->fbinfo);
1569 }
1570
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001571 if (!sfb->variant.has_clksel)
1572 clk_disable(sfb->lcd_clk);
1573
Ben Dooksec549a02009-03-31 15:25:39 -07001574 clk_disable(sfb->bus_clk);
1575 return 0;
1576}
1577
Jingoo Han49592122010-12-17 16:45:46 +09001578static int s3c_fb_resume(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001579{
Jingoo Han49592122010-12-17 16:45:46 +09001580 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001581 struct s3c_fb *sfb = platform_get_drvdata(pdev);
Marek Szyprowski17663e52009-05-28 14:34:35 -07001582 struct s3c_fb_platdata *pd = sfb->pdata;
Ben Dooksec549a02009-03-31 15:25:39 -07001583 struct s3c_fb_win *win;
1584 int win_no;
Jingoo Hand8b97db2012-01-27 14:47:55 +09001585 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001586
1587 clk_enable(sfb->bus_clk);
1588
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001589 if (!sfb->variant.has_clksel)
1590 clk_enable(sfb->lcd_clk);
1591
Jingoo Han6aa96812011-05-24 08:55:31 +00001592 /* setup gpio and output polarity controls */
1593 pd->setup_gpio();
Marek Szyprowski17663e52009-05-28 14:34:35 -07001594 writel(pd->vidcon1, sfb->regs + VIDCON1);
1595
Jingoo Hand8b97db2012-01-27 14:47:55 +09001596 /* set video clock running at under-run */
1597 if (sfb->variant.has_fixvclk) {
1598 reg = readl(sfb->regs + VIDCON1);
1599 reg &= ~VIDCON1_VCLK_MASK;
1600 reg |= VIDCON1_VCLK_RUN;
1601 writel(reg, sfb->regs + VIDCON1);
1602 }
1603
Marek Szyprowski17663e52009-05-28 14:34:35 -07001604 /* zero all windows before we do anything */
Ben Dooks50a55032010-08-10 18:02:33 -07001605 for (win_no = 0; win_no < sfb->variant.nr_windows; win_no++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001606 s3c_fb_clear_win(sfb, win_no);
1607
Ben Dooks50a55032010-08-10 18:02:33 -07001608 for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001609 void __iomem *regs = sfb->regs + sfb->variant.keycon;
Jingoo Hanff8c9102011-12-08 18:08:00 +09001610 win = sfb->windows[win_no];
1611 if (!win)
1612 continue;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001613
Jingoo Hanff8c9102011-12-08 18:08:00 +09001614 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001615 regs += (win_no * 8);
1616 writel(0xffffff, regs + WKEYCON0);
1617 writel(0xffffff, regs + WKEYCON1);
Jingoo Hanff8c9102011-12-08 18:08:00 +09001618 shadow_protect_win(win, 0);
Ben Dooks94947032010-08-10 18:02:32 -07001619 }
1620
Marek Szyprowski17663e52009-05-28 14:34:35 -07001621 /* restore framebuffers */
Ben Dooksec549a02009-03-31 15:25:39 -07001622 for (win_no = 0; win_no < S3C_FB_MAX_WIN; win_no++) {
1623 win = sfb->windows[win_no];
1624 if (!win)
1625 continue;
1626
1627 dev_dbg(&pdev->dev, "resuming window %d\n", win_no);
1628 s3c_fb_set_par(win->fbinfo);
1629 }
1630
1631 return 0;
1632}
Ben Dooksec549a02009-03-31 15:25:39 -07001633#endif
1634
Mark Brownf4f51472011-12-27 14:16:10 +00001635#ifdef CONFIG_PM_RUNTIME
1636static int s3c_fb_runtime_suspend(struct device *dev)
1637{
1638 struct platform_device *pdev = to_platform_device(dev);
1639 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1640
1641 if (!sfb->variant.has_clksel)
1642 clk_disable(sfb->lcd_clk);
1643
1644 clk_disable(sfb->bus_clk);
1645
1646 return 0;
1647}
1648
1649static int s3c_fb_runtime_resume(struct device *dev)
1650{
1651 struct platform_device *pdev = to_platform_device(dev);
1652 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1653 struct s3c_fb_platdata *pd = sfb->pdata;
1654
1655 clk_enable(sfb->bus_clk);
1656
1657 if (!sfb->variant.has_clksel)
1658 clk_enable(sfb->lcd_clk);
1659
1660 /* setup gpio and output polarity controls */
1661 pd->setup_gpio();
1662 writel(pd->vidcon1, sfb->regs + VIDCON1);
1663
1664 return 0;
1665}
1666#endif
Ben Dooks50a55032010-08-10 18:02:33 -07001667
1668#define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1669#define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1670
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001671static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
Ben Dooks50a55032010-08-10 18:02:33 -07001672 [0] = {
1673 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001674 .osd_size_off = 0x8,
Ben Dooks50a55032010-08-10 18:02:33 -07001675 .palette_sz = 256,
Jingoo Hancd74eba2011-04-22 07:09:40 +00001676 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1677 VALID_BPP(18) | VALID_BPP(24)),
Ben Dooks50a55032010-08-10 18:02:33 -07001678 },
1679 [1] = {
1680 .has_osd_c = 1,
1681 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001682 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001683 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001684 .palette_sz = 256,
1685 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1686 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001687 VALID_BPP(24) | VALID_BPP(25) |
1688 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001689 },
1690 [2] = {
1691 .has_osd_c = 1,
1692 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001693 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001694 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001695 .palette_sz = 16,
1696 .palette_16bpp = 1,
1697 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1698 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001699 VALID_BPP(24) | VALID_BPP(25) |
1700 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001701 },
1702 [3] = {
1703 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001704 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001705 .palette_sz = 16,
1706 .palette_16bpp = 1,
1707 .valid_bpp = (VALID_BPP124 | VALID_BPP(16) |
1708 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001709 VALID_BPP(24) | VALID_BPP(25) |
1710 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001711 },
1712 [4] = {
1713 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001714 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001715 .palette_sz = 4,
1716 .palette_16bpp = 1,
1717 .valid_bpp = (VALID_BPP(1) | VALID_BPP(2) |
1718 VALID_BPP(16) | VALID_BPP(18) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001719 VALID_BPP(19) | VALID_BPP(24) |
1720 VALID_BPP(25) | VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001721 },
1722};
1723
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001724static struct s3c_fb_win_variant s3c_fb_data_s5p_wins[] = {
1725 [0] = {
1726 .has_osd_c = 1,
1727 .osd_size_off = 0x8,
1728 .palette_sz = 256,
1729 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1730 VALID_BPP(15) | VALID_BPP(16) |
1731 VALID_BPP(18) | VALID_BPP(19) |
1732 VALID_BPP(24) | VALID_BPP(25) |
1733 VALID_BPP(32)),
1734 },
1735 [1] = {
1736 .has_osd_c = 1,
1737 .has_osd_d = 1,
1738 .osd_size_off = 0xc,
1739 .has_osd_alpha = 1,
1740 .palette_sz = 256,
1741 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1742 VALID_BPP(15) | VALID_BPP(16) |
1743 VALID_BPP(18) | VALID_BPP(19) |
1744 VALID_BPP(24) | VALID_BPP(25) |
1745 VALID_BPP(32)),
1746 },
1747 [2] = {
1748 .has_osd_c = 1,
1749 .has_osd_d = 1,
1750 .osd_size_off = 0xc,
1751 .has_osd_alpha = 1,
1752 .palette_sz = 256,
1753 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1754 VALID_BPP(15) | VALID_BPP(16) |
1755 VALID_BPP(18) | VALID_BPP(19) |
1756 VALID_BPP(24) | VALID_BPP(25) |
1757 VALID_BPP(32)),
1758 },
1759 [3] = {
1760 .has_osd_c = 1,
1761 .has_osd_alpha = 1,
1762 .palette_sz = 256,
1763 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1764 VALID_BPP(15) | VALID_BPP(16) |
1765 VALID_BPP(18) | VALID_BPP(19) |
1766 VALID_BPP(24) | VALID_BPP(25) |
1767 VALID_BPP(32)),
1768 },
1769 [4] = {
1770 .has_osd_c = 1,
1771 .has_osd_alpha = 1,
1772 .palette_sz = 256,
1773 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1774 VALID_BPP(15) | VALID_BPP(16) |
1775 VALID_BPP(18) | VALID_BPP(19) |
1776 VALID_BPP(24) | VALID_BPP(25) |
1777 VALID_BPP(32)),
1778 },
1779};
1780
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001781static struct s3c_fb_driverdata s3c_fb_data_64xx = {
Ben Dooks50a55032010-08-10 18:02:33 -07001782 .variant = {
1783 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001784 .vidtcon = VIDTCON0,
1785 .wincon = WINCON(0),
1786 .winmap = WINxMAP(0),
1787 .keycon = WKEYCON,
1788 .osd = VIDOSD_BASE,
1789 .osd_stride = 16,
1790 .buf_start = VIDW_BUF_START(0),
1791 .buf_size = VIDW_BUF_SIZE(0),
1792 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001793
1794 .palette = {
1795 [0] = 0x400,
1796 [1] = 0x800,
1797 [2] = 0x300,
1798 [3] = 0x320,
1799 [4] = 0x340,
1800 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001801
1802 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001803 .has_clksel = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001804 },
1805 .win[0] = &s3c_fb_data_64xx_wins[0],
1806 .win[1] = &s3c_fb_data_64xx_wins[1],
1807 .win[2] = &s3c_fb_data_64xx_wins[2],
1808 .win[3] = &s3c_fb_data_64xx_wins[3],
1809 .win[4] = &s3c_fb_data_64xx_wins[4],
1810};
1811
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001812static struct s3c_fb_driverdata s3c_fb_data_s5pc100 = {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001813 .variant = {
1814 .nr_windows = 5,
1815 .vidtcon = VIDTCON0,
1816 .wincon = WINCON(0),
1817 .winmap = WINxMAP(0),
1818 .keycon = WKEYCON,
1819 .osd = VIDOSD_BASE,
1820 .osd_stride = 16,
1821 .buf_start = VIDW_BUF_START(0),
1822 .buf_size = VIDW_BUF_SIZE(0),
1823 .buf_end = VIDW_BUF_END(0),
1824
1825 .palette = {
1826 [0] = 0x2400,
1827 [1] = 0x2800,
1828 [2] = 0x2c00,
1829 [3] = 0x3000,
1830 [4] = 0x3400,
1831 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001832
1833 .has_prtcon = 1,
Jingoo Hanf7f31e52012-01-27 14:47:22 +09001834 .has_blendcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001835 .has_clksel = 1,
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001836 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001837 .win[0] = &s3c_fb_data_s5p_wins[0],
1838 .win[1] = &s3c_fb_data_s5p_wins[1],
1839 .win[2] = &s3c_fb_data_s5p_wins[2],
1840 .win[3] = &s3c_fb_data_s5p_wins[3],
1841 .win[4] = &s3c_fb_data_s5p_wins[4],
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001842};
1843
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001844static struct s3c_fb_driverdata s3c_fb_data_s5pv210 = {
Ben Dooks50a55032010-08-10 18:02:33 -07001845 .variant = {
1846 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001847 .vidtcon = VIDTCON0,
1848 .wincon = WINCON(0),
1849 .winmap = WINxMAP(0),
1850 .keycon = WKEYCON,
1851 .osd = VIDOSD_BASE,
1852 .osd_stride = 16,
1853 .buf_start = VIDW_BUF_START(0),
1854 .buf_size = VIDW_BUF_SIZE(0),
1855 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001856
1857 .palette = {
1858 [0] = 0x2400,
1859 [1] = 0x2800,
1860 [2] = 0x2c00,
1861 [3] = 0x3000,
1862 [4] = 0x3400,
1863 },
Pawel Osciakf5ec5462010-08-10 18:02:40 -07001864
1865 .has_shadowcon = 1,
Jingoo Hanf7f31e52012-01-27 14:47:22 +09001866 .has_blendcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001867 .has_clksel = 1,
Jingoo Hand8b97db2012-01-27 14:47:55 +09001868 .has_fixvclk = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001869 },
1870 .win[0] = &s3c_fb_data_s5p_wins[0],
1871 .win[1] = &s3c_fb_data_s5p_wins[1],
1872 .win[2] = &s3c_fb_data_s5p_wins[2],
1873 .win[3] = &s3c_fb_data_s5p_wins[3],
1874 .win[4] = &s3c_fb_data_s5p_wins[4],
1875};
1876
1877static struct s3c_fb_driverdata s3c_fb_data_exynos4 = {
1878 .variant = {
1879 .nr_windows = 5,
1880 .vidtcon = VIDTCON0,
1881 .wincon = WINCON(0),
1882 .winmap = WINxMAP(0),
1883 .keycon = WKEYCON,
1884 .osd = VIDOSD_BASE,
1885 .osd_stride = 16,
1886 .buf_start = VIDW_BUF_START(0),
1887 .buf_size = VIDW_BUF_SIZE(0),
1888 .buf_end = VIDW_BUF_END(0),
1889
1890 .palette = {
1891 [0] = 0x2400,
1892 [1] = 0x2800,
1893 [2] = 0x2c00,
1894 [3] = 0x3000,
1895 [4] = 0x3400,
1896 },
1897
1898 .has_shadowcon = 1,
Jingoo Hanf7f31e52012-01-27 14:47:22 +09001899 .has_blendcon = 1,
Jingoo Hand8b97db2012-01-27 14:47:55 +09001900 .has_fixvclk = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001901 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001902 .win[0] = &s3c_fb_data_s5p_wins[0],
1903 .win[1] = &s3c_fb_data_s5p_wins[1],
1904 .win[2] = &s3c_fb_data_s5p_wins[2],
1905 .win[3] = &s3c_fb_data_s5p_wins[3],
1906 .win[4] = &s3c_fb_data_s5p_wins[4],
Ben Dooks50a55032010-08-10 18:02:33 -07001907};
1908
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001909/* S3C2443/S3C2416 style hardware */
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001910static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001911 .variant = {
1912 .nr_windows = 2,
1913 .is_2443 = 1,
1914
1915 .vidtcon = 0x08,
1916 .wincon = 0x14,
1917 .winmap = 0xd0,
1918 .keycon = 0xb0,
1919 .osd = 0x28,
1920 .osd_stride = 12,
1921 .buf_start = 0x64,
1922 .buf_size = 0x94,
1923 .buf_end = 0x7c,
1924
1925 .palette = {
1926 [0] = 0x400,
1927 [1] = 0x800,
1928 },
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001929 .has_clksel = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001930 },
1931 .win[0] = &(struct s3c_fb_win_variant) {
1932 .palette_sz = 256,
1933 .valid_bpp = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24),
1934 },
1935 .win[1] = &(struct s3c_fb_win_variant) {
1936 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001937 .has_osd_alpha = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001938 .palette_sz = 256,
1939 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1940 VALID_BPP(18) | VALID_BPP(19) |
1941 VALID_BPP(24) | VALID_BPP(25) |
1942 VALID_BPP(28)),
1943 },
1944};
1945
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001946static struct s3c_fb_driverdata s3c_fb_data_s5p64x0 = {
1947 .variant = {
1948 .nr_windows = 3,
1949 .vidtcon = VIDTCON0,
1950 .wincon = WINCON(0),
1951 .winmap = WINxMAP(0),
1952 .keycon = WKEYCON,
1953 .osd = VIDOSD_BASE,
1954 .osd_stride = 16,
1955 .buf_start = VIDW_BUF_START(0),
1956 .buf_size = VIDW_BUF_SIZE(0),
1957 .buf_end = VIDW_BUF_END(0),
1958
1959 .palette = {
1960 [0] = 0x2400,
1961 [1] = 0x2800,
1962 [2] = 0x2c00,
1963 },
Jingoo Hanf7f31e52012-01-27 14:47:22 +09001964
1965 .has_blendcon = 1,
Jingoo Hand8b97db2012-01-27 14:47:55 +09001966 .has_fixvclk = 1,
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001967 },
1968 .win[0] = &s3c_fb_data_s5p_wins[0],
1969 .win[1] = &s3c_fb_data_s5p_wins[1],
1970 .win[2] = &s3c_fb_data_s5p_wins[2],
1971};
1972
Ben Dooks50a55032010-08-10 18:02:33 -07001973static struct platform_device_id s3c_fb_driver_ids[] = {
1974 {
1975 .name = "s3c-fb",
1976 .driver_data = (unsigned long)&s3c_fb_data_64xx,
1977 }, {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001978 .name = "s5pc100-fb",
1979 .driver_data = (unsigned long)&s3c_fb_data_s5pc100,
1980 }, {
1981 .name = "s5pv210-fb",
1982 .driver_data = (unsigned long)&s3c_fb_data_s5pv210,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001983 }, {
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001984 .name = "exynos4-fb",
1985 .driver_data = (unsigned long)&s3c_fb_data_exynos4,
1986 }, {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001987 .name = "s3c2443-fb",
1988 .driver_data = (unsigned long)&s3c_fb_data_s3c2443,
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001989 }, {
1990 .name = "s5p64x0-fb",
1991 .driver_data = (unsigned long)&s3c_fb_data_s5p64x0,
Ben Dooks50a55032010-08-10 18:02:33 -07001992 },
1993 {},
1994};
1995MODULE_DEVICE_TABLE(platform, s3c_fb_driver_ids);
1996
Mark Brownf4f51472011-12-27 14:16:10 +00001997static const struct dev_pm_ops s3cfb_pm_ops = {
1998 SET_SYSTEM_SLEEP_PM_OPS(s3c_fb_suspend, s3c_fb_resume)
1999 SET_RUNTIME_PM_OPS(s3c_fb_runtime_suspend, s3c_fb_runtime_resume,
2000 NULL)
2001};
Jingoo Han49592122010-12-17 16:45:46 +09002002
Ben Dooksec549a02009-03-31 15:25:39 -07002003static struct platform_driver s3c_fb_driver = {
2004 .probe = s3c_fb_probe,
Peter Korsgaard3163eaba2009-09-22 16:47:55 -07002005 .remove = __devexit_p(s3c_fb_remove),
Ben Dooks50a55032010-08-10 18:02:33 -07002006 .id_table = s3c_fb_driver_ids,
Ben Dooksec549a02009-03-31 15:25:39 -07002007 .driver = {
2008 .name = "s3c-fb",
2009 .owner = THIS_MODULE,
Mark Brownfe05f8b2011-12-27 14:16:07 +00002010 .pm = &s3cfb_pm_ops,
Ben Dooksec549a02009-03-31 15:25:39 -07002011 },
2012};
2013
Axel Lin4277f2c2011-11-26 10:25:54 +08002014module_platform_driver(s3c_fb_driver);
Ben Dooksec549a02009-03-31 15:25:39 -07002015
2016MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
2017MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
2018MODULE_LICENSE("GPL");
2019MODULE_ALIAS("platform:s3c-fb");