blob: 84cf6319aac23ebd4d79460f315db34e13bc6b52 [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.
Mark Brownf4f51472011-12-27 14:16:10 +0000195 * @output_on: Flag if the physical output is enabled.
Ben Dooksec549a02009-03-31 15:25:39 -0700196 * @pdata: The platform configuration data passed with the device.
197 * @windows: The hardware windows that have been claimed.
Pawel Osciakefdc8462010-08-10 18:02:38 -0700198 * @irq_no: IRQ line number
199 * @irq_flags: irq flags
200 * @vsync_info: VSYNC-related information (count, queues...)
Ben Dooksec549a02009-03-31 15:25:39 -0700201 */
202struct s3c_fb {
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000203 spinlock_t slock;
Ben Dooksec549a02009-03-31 15:25:39 -0700204 struct device *dev;
205 struct resource *regs_res;
206 struct clk *bus_clk;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900207 struct clk *lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -0700208 void __iomem *regs;
Ben Dooks50a55032010-08-10 18:02:33 -0700209 struct s3c_fb_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700210
211 unsigned char enabled;
Mark Brownf4f51472011-12-27 14:16:10 +0000212 bool output_on;
Ben Dooksec549a02009-03-31 15:25:39 -0700213
214 struct s3c_fb_platdata *pdata;
215 struct s3c_fb_win *windows[S3C_FB_MAX_WIN];
Pawel Osciakefdc8462010-08-10 18:02:38 -0700216
217 int irq_no;
218 unsigned long irq_flags;
219 struct s3c_fb_vsync vsync_info;
Ben Dooksec549a02009-03-31 15:25:39 -0700220};
221
222/**
Ben Dooks50a55032010-08-10 18:02:33 -0700223 * s3c_fb_validate_win_bpp - validate the bits-per-pixel for this mode.
224 * @win: The device window.
225 * @bpp: The bit depth.
Ben Dooksec549a02009-03-31 15:25:39 -0700226 */
Ben Dooks50a55032010-08-10 18:02:33 -0700227static bool s3c_fb_validate_win_bpp(struct s3c_fb_win *win, unsigned int bpp)
Ben Dooksec549a02009-03-31 15:25:39 -0700228{
Ben Dooks50a55032010-08-10 18:02:33 -0700229 return win->variant.valid_bpp & VALID_BPP(bpp);
Ben Dooksec549a02009-03-31 15:25:39 -0700230}
231
232/**
233 * s3c_fb_check_var() - framebuffer layer request to verify a given mode.
234 * @var: The screen information to verify.
235 * @info: The framebuffer device.
236 *
237 * Framebuffer layer call to verify the given information and allow us to
238 * update various information depending on the hardware capabilities.
239 */
240static int s3c_fb_check_var(struct fb_var_screeninfo *var,
241 struct fb_info *info)
242{
243 struct s3c_fb_win *win = info->par;
Ben Dooksec549a02009-03-31 15:25:39 -0700244 struct s3c_fb *sfb = win->parent;
245
246 dev_dbg(sfb->dev, "checking parameters\n");
247
Jingoo Han13e6af82011-06-09 04:26:38 +0000248 var->xres_virtual = max(var->xres_virtual, var->xres);
249 var->yres_virtual = max(var->yres_virtual, var->yres);
Ben Dooksec549a02009-03-31 15:25:39 -0700250
Ben Dooks50a55032010-08-10 18:02:33 -0700251 if (!s3c_fb_validate_win_bpp(win, var->bits_per_pixel)) {
Ben Dooksec549a02009-03-31 15:25:39 -0700252 dev_dbg(sfb->dev, "win %d: unsupported bpp %d\n",
253 win->index, var->bits_per_pixel);
254 return -EINVAL;
255 }
256
257 /* always ensure these are zero, for drop through cases below */
258 var->transp.offset = 0;
259 var->transp.length = 0;
260
261 switch (var->bits_per_pixel) {
262 case 1:
263 case 2:
264 case 4:
265 case 8:
Ben Dooks50a55032010-08-10 18:02:33 -0700266 if (sfb->variant.palette[win->index] != 0) {
Ben Dooksec549a02009-03-31 15:25:39 -0700267 /* non palletised, A:1,R:2,G:3,B:2 mode */
268 var->red.offset = 4;
269 var->green.offset = 2;
270 var->blue.offset = 0;
271 var->red.length = 5;
272 var->green.length = 3;
273 var->blue.length = 2;
274 var->transp.offset = 7;
275 var->transp.length = 1;
276 } else {
277 var->red.offset = 0;
278 var->red.length = var->bits_per_pixel;
279 var->green = var->red;
280 var->blue = var->red;
281 }
282 break;
283
284 case 19:
285 /* 666 with one bit alpha/transparency */
286 var->transp.offset = 18;
287 var->transp.length = 1;
288 case 18:
289 var->bits_per_pixel = 32;
290
291 /* 666 format */
292 var->red.offset = 12;
293 var->green.offset = 6;
294 var->blue.offset = 0;
295 var->red.length = 6;
296 var->green.length = 6;
297 var->blue.length = 6;
298 break;
299
300 case 16:
301 /* 16 bpp, 565 format */
302 var->red.offset = 11;
303 var->green.offset = 5;
304 var->blue.offset = 0;
305 var->red.length = 5;
306 var->green.length = 6;
307 var->blue.length = 5;
308 break;
309
Jingoo Hanaf1ce6b2011-05-24 08:55:23 +0000310 case 32:
Ben Dooksec549a02009-03-31 15:25:39 -0700311 case 28:
312 case 25:
313 var->transp.length = var->bits_per_pixel - 24;
314 var->transp.offset = 24;
315 /* drop through */
316 case 24:
317 /* our 24bpp is unpacked, so 32bpp */
318 var->bits_per_pixel = 32;
Ben Dooksec549a02009-03-31 15:25:39 -0700319 var->red.offset = 16;
320 var->red.length = 8;
321 var->green.offset = 8;
322 var->green.length = 8;
323 var->blue.offset = 0;
324 var->blue.length = 8;
325 break;
326
327 default:
328 dev_err(sfb->dev, "invalid bpp\n");
329 }
330
331 dev_dbg(sfb->dev, "%s: verified parameters\n", __func__);
332 return 0;
333}
334
335/**
336 * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock.
337 * @sfb: The hardware state.
338 * @pixclock: The pixel clock wanted, in picoseconds.
339 *
340 * Given the specified pixel clock, work out the necessary divider to get
341 * close to the output frequency.
342 */
Mark Browneb29a5c2010-01-15 17:01:40 -0800343static int s3c_fb_calc_pixclk(struct s3c_fb *sfb, unsigned int pixclk)
Ben Dooksec549a02009-03-31 15:25:39 -0700344{
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900345 unsigned long clk;
Mark Browneb29a5c2010-01-15 17:01:40 -0800346 unsigned long long tmp;
Ben Dooksec549a02009-03-31 15:25:39 -0700347 unsigned int result;
348
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900349 if (sfb->variant.has_clksel)
350 clk = clk_get_rate(sfb->bus_clk);
351 else
352 clk = clk_get_rate(sfb->lcd_clk);
353
Mark Browneb29a5c2010-01-15 17:01:40 -0800354 tmp = (unsigned long long)clk;
355 tmp *= pixclk;
356
357 do_div(tmp, 1000000000UL);
358 result = (unsigned int)tmp / 1000;
Ben Dooksec549a02009-03-31 15:25:39 -0700359
360 dev_dbg(sfb->dev, "pixclk=%u, clk=%lu, div=%d (%lu)\n",
361 pixclk, clk, result, clk / result);
362
363 return result;
364}
365
366/**
367 * s3c_fb_align_word() - align pixel count to word boundary
368 * @bpp: The number of bits per pixel
369 * @pix: The value to be aligned.
370 *
371 * Align the given pixel count so that it will start on an 32bit word
372 * boundary.
373 */
374static int s3c_fb_align_word(unsigned int bpp, unsigned int pix)
375{
376 int pix_per_word;
377
378 if (bpp > 16)
379 return pix;
380
381 pix_per_word = (8 * 32) / bpp;
382 return ALIGN(pix, pix_per_word);
383}
384
385/**
Pawel Osciakf676ec22010-08-10 18:02:40 -0700386 * vidosd_set_size() - set OSD size for a window
387 *
388 * @win: the window to set OSD size for
389 * @size: OSD size register value
390 */
391static void vidosd_set_size(struct s3c_fb_win *win, u32 size)
392{
393 struct s3c_fb *sfb = win->parent;
394
395 /* OSD can be set up if osd_size_off != 0 for this window */
396 if (win->variant.osd_size_off)
397 writel(size, sfb->regs + OSD_BASE(win->index, sfb->variant)
398 + win->variant.osd_size_off);
399}
400
401/**
402 * vidosd_set_alpha() - set alpha transparency for a window
403 *
404 * @win: the window to set OSD size for
405 * @alpha: alpha register value
406 */
407static void vidosd_set_alpha(struct s3c_fb_win *win, u32 alpha)
408{
409 struct s3c_fb *sfb = win->parent;
410
411 if (win->variant.has_osd_alpha)
412 writel(alpha, sfb->regs + VIDOSD_C(win->index, sfb->variant));
413}
414
415/**
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700416 * shadow_protect_win() - disable updating values from shadow registers at vsync
417 *
418 * @win: window to protect registers for
419 * @protect: 1 to protect (disable updates)
420 */
421static void shadow_protect_win(struct s3c_fb_win *win, bool protect)
422{
423 struct s3c_fb *sfb = win->parent;
424 u32 reg;
425
426 if (protect) {
427 if (sfb->variant.has_prtcon) {
428 writel(PRTCON_PROTECT, sfb->regs + PRTCON);
429 } else if (sfb->variant.has_shadowcon) {
430 reg = readl(sfb->regs + SHADOWCON);
431 writel(reg | SHADOWCON_WINx_PROTECT(win->index),
432 sfb->regs + SHADOWCON);
433 }
434 } else {
435 if (sfb->variant.has_prtcon) {
436 writel(0, sfb->regs + PRTCON);
437 } else if (sfb->variant.has_shadowcon) {
438 reg = readl(sfb->regs + SHADOWCON);
439 writel(reg & ~SHADOWCON_WINx_PROTECT(win->index),
440 sfb->regs + SHADOWCON);
441 }
442 }
443}
444
445/**
Mark Browna2b77dc2011-12-27 14:16:08 +0000446 * s3c_fb_enable() - Set the state of the main LCD output
447 * @sfb: The main framebuffer state.
448 * @enable: The state to set.
449 */
450static void s3c_fb_enable(struct s3c_fb *sfb, int enable)
451{
452 u32 vidcon0 = readl(sfb->regs + VIDCON0);
453
Mark Brownf4f51472011-12-27 14:16:10 +0000454 if (enable && !sfb->output_on)
455 pm_runtime_get_sync(sfb->dev);
456
457 if (enable) {
Mark Browna2b77dc2011-12-27 14:16:08 +0000458 vidcon0 |= VIDCON0_ENVID | VIDCON0_ENVID_F;
Mark Brownf4f51472011-12-27 14:16:10 +0000459 } else {
Mark Browna2b77dc2011-12-27 14:16:08 +0000460 /* see the note in the framebuffer datasheet about
461 * why you cannot take both of these bits down at the
462 * same time. */
463
Mark Brownf4f51472011-12-27 14:16:10 +0000464 if (vidcon0 & VIDCON0_ENVID) {
465 vidcon0 |= VIDCON0_ENVID;
466 vidcon0 &= ~VIDCON0_ENVID_F;
467 }
Mark Browna2b77dc2011-12-27 14:16:08 +0000468 }
469
470 writel(vidcon0, sfb->regs + VIDCON0);
Mark Brownf4f51472011-12-27 14:16:10 +0000471
472 if (!enable && sfb->output_on)
473 pm_runtime_put_sync(sfb->dev);
474
475 sfb->output_on = enable;
Mark Browna2b77dc2011-12-27 14:16:08 +0000476}
477
478/**
Ben Dooksec549a02009-03-31 15:25:39 -0700479 * s3c_fb_set_par() - framebuffer request to set new framebuffer state.
480 * @info: The framebuffer to change.
481 *
482 * Framebuffer layer request to set a new mode for the specified framebuffer
483 */
484static int s3c_fb_set_par(struct fb_info *info)
485{
486 struct fb_var_screeninfo *var = &info->var;
487 struct s3c_fb_win *win = info->par;
488 struct s3c_fb *sfb = win->parent;
489 void __iomem *regs = sfb->regs;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700490 void __iomem *buf = regs;
Ben Dooksec549a02009-03-31 15:25:39 -0700491 int win_no = win->index;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700492 u32 alpha = 0;
Ben Dooksec549a02009-03-31 15:25:39 -0700493 u32 data;
494 u32 pagewidth;
495 int clkdiv;
496
497 dev_dbg(sfb->dev, "setting framebuffer parameters\n");
498
Mark Brown5751b232011-12-27 14:16:11 +0000499 pm_runtime_get_sync(sfb->dev);
500
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700501 shadow_protect_win(win, 1);
502
Ben Dooksec549a02009-03-31 15:25:39 -0700503 switch (var->bits_per_pixel) {
504 case 32:
505 case 24:
506 case 16:
507 case 12:
508 info->fix.visual = FB_VISUAL_TRUECOLOR;
509 break;
510 case 8:
Ben Dooks50a55032010-08-10 18:02:33 -0700511 if (win->variant.palette_sz >= 256)
Ben Dooksec549a02009-03-31 15:25:39 -0700512 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
513 else
514 info->fix.visual = FB_VISUAL_TRUECOLOR;
515 break;
516 case 1:
517 info->fix.visual = FB_VISUAL_MONO01;
518 break;
519 default:
520 info->fix.visual = FB_VISUAL_PSEUDOCOLOR;
521 break;
522 }
523
524 info->fix.line_length = (var->xres_virtual * var->bits_per_pixel) / 8;
525
Pawel Osciak067b2262010-08-10 18:02:38 -0700526 info->fix.xpanstep = info->var.xres_virtual > info->var.xres ? 1 : 0;
527 info->fix.ypanstep = info->var.yres_virtual > info->var.yres ? 1 : 0;
528
Ben Dooksec549a02009-03-31 15:25:39 -0700529 /* disable the window whilst we update it */
530 writel(0, regs + WINCON(win_no));
531
InKi Daead044902010-08-10 18:02:31 -0700532 /* use platform specified window as the basis for the lcd timings */
Ben Dooksec549a02009-03-31 15:25:39 -0700533
InKi Daead044902010-08-10 18:02:31 -0700534 if (win_no == sfb->pdata->default_win) {
Mark Browneb29a5c2010-01-15 17:01:40 -0800535 clkdiv = s3c_fb_calc_pixclk(sfb, var->pixclock);
Ben Dooksec549a02009-03-31 15:25:39 -0700536
537 data = sfb->pdata->vidcon0;
538 data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR);
539
540 if (clkdiv > 1)
541 data |= VIDCON0_CLKVAL_F(clkdiv-1) | VIDCON0_CLKDIR;
542 else
543 data &= ~VIDCON0_CLKDIR; /* 1:1 clock */
544
545 /* write the timing data to the panel */
546
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700547 if (sfb->variant.is_2443)
548 data |= (1 << 5);
549
Ben Dooksec549a02009-03-31 15:25:39 -0700550 writel(data, regs + VIDCON0);
551
Mark Browna2b77dc2011-12-27 14:16:08 +0000552 s3c_fb_enable(sfb, 1);
553
Ben Dooksec549a02009-03-31 15:25:39 -0700554 data = VIDTCON0_VBPD(var->upper_margin - 1) |
555 VIDTCON0_VFPD(var->lower_margin - 1) |
556 VIDTCON0_VSPW(var->vsync_len - 1);
557
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700558 writel(data, regs + sfb->variant.vidtcon);
Ben Dooksec549a02009-03-31 15:25:39 -0700559
560 data = VIDTCON1_HBPD(var->left_margin - 1) |
561 VIDTCON1_HFPD(var->right_margin - 1) |
562 VIDTCON1_HSPW(var->hsync_len - 1);
563
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700564 /* VIDTCON1 */
565 writel(data, regs + sfb->variant.vidtcon + 4);
Ben Dooksec549a02009-03-31 15:25:39 -0700566
567 data = VIDTCON2_LINEVAL(var->yres - 1) |
568 VIDTCON2_HOZVAL(var->xres - 1);
Jingoo Hanb73a21fc2011-04-01 07:17:27 +0000569 writel(data, regs + sfb->variant.vidtcon + 8);
Ben Dooksec549a02009-03-31 15:25:39 -0700570 }
571
572 /* write the buffer address */
573
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700574 /* start and end registers stride is 8 */
575 buf = regs + win_no * 8;
576
577 writel(info->fix.smem_start, buf + sfb->variant.buf_start);
Ben Dooksec549a02009-03-31 15:25:39 -0700578
579 data = info->fix.smem_start + info->fix.line_length * var->yres;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700580 writel(data, buf + sfb->variant.buf_end);
Ben Dooksec549a02009-03-31 15:25:39 -0700581
582 pagewidth = (var->xres * var->bits_per_pixel) >> 3;
583 data = VIDW_BUF_SIZE_OFFSET(info->fix.line_length - pagewidth) |
584 VIDW_BUF_SIZE_PAGEWIDTH(pagewidth);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700585 writel(data, regs + sfb->variant.buf_size + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700586
587 /* write 'OSD' registers to control position of framebuffer */
588
589 data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700590 writel(data, regs + VIDOSD_A(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700591
592 data = VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var->bits_per_pixel,
593 var->xres - 1)) |
594 VIDOSDxB_BOTRIGHT_Y(var->yres - 1);
595
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700596 writel(data, regs + VIDOSD_B(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700597
598 data = var->xres * var->yres;
InKi Dae39000d62009-06-16 15:34:27 -0700599
Pawel Osciakf676ec22010-08-10 18:02:40 -0700600 alpha = VIDISD14C_ALPHA1_R(0xf) |
InKi Dae39000d62009-06-16 15:34:27 -0700601 VIDISD14C_ALPHA1_G(0xf) |
602 VIDISD14C_ALPHA1_B(0xf);
603
Pawel Osciakf676ec22010-08-10 18:02:40 -0700604 vidosd_set_alpha(win, alpha);
605 vidosd_set_size(win, data);
Ben Dooksec549a02009-03-31 15:25:39 -0700606
Jingoo Hanfab7c5b2011-06-09 04:26:45 +0000607 /* Enable DMA channel for this window */
608 if (sfb->variant.has_shadowcon) {
609 data = readl(sfb->regs + SHADOWCON);
610 data |= SHADOWCON_CHx_ENABLE(win_no);
611 writel(data, sfb->regs + SHADOWCON);
612 }
613
Ben Dooksec549a02009-03-31 15:25:39 -0700614 data = WINCONx_ENWIN;
Jingoo Han2d9ae7a2011-12-02 19:07:17 +0900615 sfb->enabled |= (1 << win->index);
Ben Dooksec549a02009-03-31 15:25:39 -0700616
617 /* note, since we have to round up the bits-per-pixel, we end up
618 * relying on the bitfield information for r/g/b/a to work out
619 * exactly which mode of operation is intended. */
620
621 switch (var->bits_per_pixel) {
622 case 1:
623 data |= WINCON0_BPPMODE_1BPP;
624 data |= WINCONx_BITSWP;
625 data |= WINCONx_BURSTLEN_4WORD;
626 break;
627 case 2:
628 data |= WINCON0_BPPMODE_2BPP;
629 data |= WINCONx_BITSWP;
630 data |= WINCONx_BURSTLEN_8WORD;
631 break;
632 case 4:
633 data |= WINCON0_BPPMODE_4BPP;
634 data |= WINCONx_BITSWP;
635 data |= WINCONx_BURSTLEN_8WORD;
636 break;
637 case 8:
638 if (var->transp.length != 0)
639 data |= WINCON1_BPPMODE_8BPP_1232;
640 else
641 data |= WINCON0_BPPMODE_8BPP_PALETTE;
642 data |= WINCONx_BURSTLEN_8WORD;
643 data |= WINCONx_BYTSWP;
644 break;
645 case 16:
646 if (var->transp.length != 0)
647 data |= WINCON1_BPPMODE_16BPP_A1555;
648 else
649 data |= WINCON0_BPPMODE_16BPP_565;
650 data |= WINCONx_HAWSWP;
651 data |= WINCONx_BURSTLEN_16WORD;
652 break;
653 case 24:
654 case 32:
655 if (var->red.length == 6) {
656 if (var->transp.length != 0)
657 data |= WINCON1_BPPMODE_19BPP_A1666;
658 else
659 data |= WINCON1_BPPMODE_18BPP_666;
InKi Dae39000d62009-06-16 15:34:27 -0700660 } else if (var->transp.length == 1)
661 data |= WINCON1_BPPMODE_25BPP_A1888
662 | WINCON1_BLD_PIX;
Jingoo Han4420dd22011-11-07 15:03:01 +0900663 else if ((var->transp.length == 4) ||
664 (var->transp.length == 8))
InKi Dae39000d62009-06-16 15:34:27 -0700665 data |= WINCON1_BPPMODE_28BPP_A4888
666 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
Ben Dooksec549a02009-03-31 15:25:39 -0700667 else
668 data |= WINCON0_BPPMODE_24BPP_888;
669
InKi Daedc8498c2010-08-10 18:02:32 -0700670 data |= WINCONx_WSWP;
Ben Dooksec549a02009-03-31 15:25:39 -0700671 data |= WINCONx_BURSTLEN_16WORD;
672 break;
673 }
674
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700675 /* Enable the colour keying for the window below this one */
InKi Dae39000d62009-06-16 15:34:27 -0700676 if (win_no > 0) {
677 u32 keycon0_data = 0, keycon1_data = 0;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700678 void __iomem *keycon = regs + sfb->variant.keycon;
InKi Dae39000d62009-06-16 15:34:27 -0700679
680 keycon0_data = ~(WxKEYCON0_KEYBL_EN |
681 WxKEYCON0_KEYEN_F |
682 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
683
684 keycon1_data = WxKEYCON1_COLVAL(0xffffff);
685
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700686 keycon += (win_no - 1) * 8;
687
688 writel(keycon0_data, keycon + WKEYCON0);
689 writel(keycon1_data, keycon + WKEYCON1);
InKi Dae39000d62009-06-16 15:34:27 -0700690 }
691
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700692 writel(data, regs + sfb->variant.wincon + (win_no * 4));
693 writel(0x0, regs + sfb->variant.winmap + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700694
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700695 shadow_protect_win(win, 0);
696
Mark Brown5751b232011-12-27 14:16:11 +0000697 pm_runtime_put_sync(sfb->dev);
698
Ben Dooksec549a02009-03-31 15:25:39 -0700699 return 0;
700}
701
702/**
703 * s3c_fb_update_palette() - set or schedule a palette update.
704 * @sfb: The hardware information.
705 * @win: The window being updated.
706 * @reg: The palette index being changed.
707 * @value: The computed palette value.
708 *
709 * Change the value of a palette register, either by directly writing to
710 * the palette (this requires the palette RAM to be disconnected from the
711 * hardware whilst this is in progress) or schedule the update for later.
712 *
713 * At the moment, since we have no VSYNC interrupt support, we simply set
714 * the palette entry directly.
715 */
716static void s3c_fb_update_palette(struct s3c_fb *sfb,
717 struct s3c_fb_win *win,
718 unsigned int reg,
719 u32 value)
720{
721 void __iomem *palreg;
722 u32 palcon;
723
Ben Dooks50a55032010-08-10 18:02:33 -0700724 palreg = sfb->regs + sfb->variant.palette[win->index];
Ben Dooksec549a02009-03-31 15:25:39 -0700725
726 dev_dbg(sfb->dev, "%s: win %d, reg %d (%p): %08x\n",
727 __func__, win->index, reg, palreg, value);
728
729 win->palette_buffer[reg] = value;
730
731 palcon = readl(sfb->regs + WPALCON);
732 writel(palcon | WPALCON_PAL_UPDATE, sfb->regs + WPALCON);
733
Ben Dooks50a55032010-08-10 18:02:33 -0700734 if (win->variant.palette_16bpp)
735 writew(value, palreg + (reg * 2));
Ben Dooksec549a02009-03-31 15:25:39 -0700736 else
Ben Dooks50a55032010-08-10 18:02:33 -0700737 writel(value, palreg + (reg * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700738
739 writel(palcon, sfb->regs + WPALCON);
740}
741
742static inline unsigned int chan_to_field(unsigned int chan,
743 struct fb_bitfield *bf)
744{
745 chan &= 0xffff;
746 chan >>= 16 - bf->length;
747 return chan << bf->offset;
748}
749
750/**
751 * s3c_fb_setcolreg() - framebuffer layer request to change palette.
752 * @regno: The palette index to change.
753 * @red: The red field for the palette data.
754 * @green: The green field for the palette data.
755 * @blue: The blue field for the palette data.
756 * @trans: The transparency (alpha) field for the palette data.
757 * @info: The framebuffer being changed.
758 */
759static int s3c_fb_setcolreg(unsigned regno,
760 unsigned red, unsigned green, unsigned blue,
761 unsigned transp, struct fb_info *info)
762{
763 struct s3c_fb_win *win = info->par;
764 struct s3c_fb *sfb = win->parent;
765 unsigned int val;
766
767 dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
768 __func__, win->index, regno, red, green, blue);
769
Mark Brown5751b232011-12-27 14:16:11 +0000770 pm_runtime_get_sync(sfb->dev);
771
Ben Dooksec549a02009-03-31 15:25:39 -0700772 switch (info->fix.visual) {
773 case FB_VISUAL_TRUECOLOR:
774 /* true-colour, use pseudo-palette */
775
776 if (regno < 16) {
777 u32 *pal = info->pseudo_palette;
778
779 val = chan_to_field(red, &info->var.red);
780 val |= chan_to_field(green, &info->var.green);
781 val |= chan_to_field(blue, &info->var.blue);
782
783 pal[regno] = val;
784 }
785 break;
786
787 case FB_VISUAL_PSEUDOCOLOR:
Ben Dooks50a55032010-08-10 18:02:33 -0700788 if (regno < win->variant.palette_sz) {
Ben Dooksec549a02009-03-31 15:25:39 -0700789 val = chan_to_field(red, &win->palette.r);
790 val |= chan_to_field(green, &win->palette.g);
791 val |= chan_to_field(blue, &win->palette.b);
792
793 s3c_fb_update_palette(sfb, win, regno, val);
794 }
795
796 break;
797
798 default:
Mark Brown5751b232011-12-27 14:16:11 +0000799 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700800 return 1; /* unknown type */
801 }
802
Mark Brown5751b232011-12-27 14:16:11 +0000803 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700804 return 0;
805}
806
807/**
Ben Dooksec549a02009-03-31 15:25:39 -0700808 * s3c_fb_blank() - blank or unblank the given window
809 * @blank_mode: The blank state from FB_BLANK_*
810 * @info: The framebuffer to blank.
811 *
812 * Framebuffer layer request to change the power state.
813 */
814static int s3c_fb_blank(int blank_mode, struct fb_info *info)
815{
816 struct s3c_fb_win *win = info->par;
817 struct s3c_fb *sfb = win->parent;
818 unsigned int index = win->index;
819 u32 wincon;
820
821 dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
822
Mark Brown5751b232011-12-27 14:16:11 +0000823 pm_runtime_get_sync(sfb->dev);
824
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700825 wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700826
827 switch (blank_mode) {
828 case FB_BLANK_POWERDOWN:
829 wincon &= ~WINCONx_ENWIN;
830 sfb->enabled &= ~(1 << index);
831 /* fall through to FB_BLANK_NORMAL */
832
833 case FB_BLANK_NORMAL:
834 /* disable the DMA and display 0x0 (black) */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900835 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700836 writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700837 sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900838 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700839 break;
840
841 case FB_BLANK_UNBLANK:
Jingoo Hanff8c9102011-12-08 18:08:00 +0900842 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700843 writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900844 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700845 wincon |= WINCONx_ENWIN;
846 sfb->enabled |= (1 << index);
847 break;
848
849 case FB_BLANK_VSYNC_SUSPEND:
850 case FB_BLANK_HSYNC_SUSPEND:
851 default:
Mark Brown5751b232011-12-27 14:16:11 +0000852 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700853 return 1;
854 }
855
Jingoo Hanff8c9102011-12-08 18:08:00 +0900856 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700857 writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900858 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700859
860 /* Check the enabled state to see if we need to be running the
861 * main LCD interface, as if there are no active windows then
862 * it is highly likely that we also do not need to output
863 * anything.
864 */
865
866 /* We could do something like the following code, but the current
867 * system of using framebuffer events means that we cannot make
868 * the distinction between just window 0 being inactive and all
869 * the windows being down.
870 *
871 * s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
872 */
873
874 /* we're stuck with this until we can do something about overriding
875 * the power control using the blanking event for a single fb.
876 */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900877 if (index == sfb->pdata->default_win) {
878 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700879 s3c_fb_enable(sfb, blank_mode != FB_BLANK_POWERDOWN ? 1 : 0);
Jingoo Hanff8c9102011-12-08 18:08:00 +0900880 shadow_protect_win(win, 0);
881 }
Ben Dooksec549a02009-03-31 15:25:39 -0700882
Mark Brown5751b232011-12-27 14:16:11 +0000883 pm_runtime_put_sync(sfb->dev);
884
Ben Dooksec549a02009-03-31 15:25:39 -0700885 return 0;
886}
887
Pawel Osciak067b2262010-08-10 18:02:38 -0700888/**
889 * s3c_fb_pan_display() - Pan the display.
890 *
891 * Note that the offsets can be written to the device at any time, as their
892 * values are latched at each vsync automatically. This also means that only
893 * the last call to this function will have any effect on next vsync, but
894 * there is no need to sleep waiting for it to prevent tearing.
895 *
896 * @var: The screen information to verify.
897 * @info: The framebuffer device.
898 */
899static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
900 struct fb_info *info)
901{
902 struct s3c_fb_win *win = info->par;
903 struct s3c_fb *sfb = win->parent;
904 void __iomem *buf = sfb->regs + win->index * 8;
905 unsigned int start_boff, end_boff;
906
Mark Brown5751b232011-12-27 14:16:11 +0000907 pm_runtime_get_sync(sfb->dev);
908
Pawel Osciak067b2262010-08-10 18:02:38 -0700909 /* Offset in bytes to the start of the displayed area */
910 start_boff = var->yoffset * info->fix.line_length;
911 /* X offset depends on the current bpp */
912 if (info->var.bits_per_pixel >= 8) {
913 start_boff += var->xoffset * (info->var.bits_per_pixel >> 3);
914 } else {
915 switch (info->var.bits_per_pixel) {
916 case 4:
917 start_boff += var->xoffset >> 1;
918 break;
919 case 2:
920 start_boff += var->xoffset >> 2;
921 break;
922 case 1:
923 start_boff += var->xoffset >> 3;
924 break;
925 default:
926 dev_err(sfb->dev, "invalid bpp\n");
Mark Brown5751b232011-12-27 14:16:11 +0000927 pm_runtime_put_sync(sfb->dev);
Pawel Osciak067b2262010-08-10 18:02:38 -0700928 return -EINVAL;
929 }
930 }
931 /* Offset in bytes to the end of the displayed area */
Laurent Pinchartd8e7a742011-05-25 11:34:52 +0200932 end_boff = start_boff + info->var.yres * info->fix.line_length;
Pawel Osciak067b2262010-08-10 18:02:38 -0700933
934 /* Temporarily turn off per-vsync update from shadow registers until
935 * both start and end addresses are updated to prevent corruption */
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700936 shadow_protect_win(win, 1);
Pawel Osciak067b2262010-08-10 18:02:38 -0700937
938 writel(info->fix.smem_start + start_boff, buf + sfb->variant.buf_start);
939 writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
940
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700941 shadow_protect_win(win, 0);
Pawel Osciak067b2262010-08-10 18:02:38 -0700942
Mark Brown5751b232011-12-27 14:16:11 +0000943 pm_runtime_put_sync(sfb->dev);
Pawel Osciak067b2262010-08-10 18:02:38 -0700944 return 0;
945}
946
Pawel Osciakefdc8462010-08-10 18:02:38 -0700947/**
948 * s3c_fb_enable_irq() - enable framebuffer interrupts
949 * @sfb: main hardware state
950 */
951static void s3c_fb_enable_irq(struct s3c_fb *sfb)
952{
953 void __iomem *regs = sfb->regs;
954 u32 irq_ctrl_reg;
955
956 if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
957 /* IRQ disabled, enable it */
958 irq_ctrl_reg = readl(regs + VIDINTCON0);
959
960 irq_ctrl_reg |= VIDINTCON0_INT_ENABLE;
961 irq_ctrl_reg |= VIDINTCON0_INT_FRAME;
962
963 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL0_MASK;
964 irq_ctrl_reg |= VIDINTCON0_FRAMESEL0_VSYNC;
965 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL1_MASK;
966 irq_ctrl_reg |= VIDINTCON0_FRAMESEL1_NONE;
967
968 writel(irq_ctrl_reg, regs + VIDINTCON0);
969 }
970}
971
972/**
973 * s3c_fb_disable_irq() - disable framebuffer interrupts
974 * @sfb: main hardware state
975 */
976static void s3c_fb_disable_irq(struct s3c_fb *sfb)
977{
978 void __iomem *regs = sfb->regs;
979 u32 irq_ctrl_reg;
980
981 if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
982 /* IRQ enabled, disable it */
983 irq_ctrl_reg = readl(regs + VIDINTCON0);
984
985 irq_ctrl_reg &= ~VIDINTCON0_INT_FRAME;
986 irq_ctrl_reg &= ~VIDINTCON0_INT_ENABLE;
987
988 writel(irq_ctrl_reg, regs + VIDINTCON0);
989 }
990}
991
992static irqreturn_t s3c_fb_irq(int irq, void *dev_id)
993{
994 struct s3c_fb *sfb = dev_id;
995 void __iomem *regs = sfb->regs;
996 u32 irq_sts_reg;
997
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000998 spin_lock(&sfb->slock);
999
Pawel Osciakefdc8462010-08-10 18:02:38 -07001000 irq_sts_reg = readl(regs + VIDINTCON1);
1001
1002 if (irq_sts_reg & VIDINTCON1_INT_FRAME) {
1003
1004 /* VSYNC interrupt, accept it */
1005 writel(VIDINTCON1_INT_FRAME, regs + VIDINTCON1);
1006
1007 sfb->vsync_info.count++;
1008 wake_up_interruptible(&sfb->vsync_info.wait);
1009 }
1010
1011 /* We only support waiting for VSYNC for now, so it's safe
1012 * to always disable irqs here.
1013 */
1014 s3c_fb_disable_irq(sfb);
1015
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001016 spin_unlock(&sfb->slock);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001017 return IRQ_HANDLED;
1018}
1019
1020/**
1021 * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
1022 * @sfb: main hardware state
1023 * @crtc: head index.
1024 */
1025static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
1026{
1027 unsigned long count;
1028 int ret;
1029
1030 if (crtc != 0)
1031 return -ENODEV;
1032
Mark Brown5751b232011-12-27 14:16:11 +00001033 pm_runtime_get_sync(sfb->dev);
1034
Pawel Osciakefdc8462010-08-10 18:02:38 -07001035 count = sfb->vsync_info.count;
1036 s3c_fb_enable_irq(sfb);
1037 ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
1038 count != sfb->vsync_info.count,
1039 msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
Mark Brown5751b232011-12-27 14:16:11 +00001040
1041 pm_runtime_put_sync(sfb->dev);
1042
Pawel Osciakefdc8462010-08-10 18:02:38 -07001043 if (ret == 0)
1044 return -ETIMEDOUT;
1045
1046 return 0;
1047}
1048
1049static int s3c_fb_ioctl(struct fb_info *info, unsigned int cmd,
1050 unsigned long arg)
1051{
1052 struct s3c_fb_win *win = info->par;
1053 struct s3c_fb *sfb = win->parent;
1054 int ret;
1055 u32 crtc;
1056
1057 switch (cmd) {
1058 case FBIO_WAITFORVSYNC:
1059 if (get_user(crtc, (u32 __user *)arg)) {
1060 ret = -EFAULT;
1061 break;
1062 }
1063
1064 ret = s3c_fb_wait_for_vsync(sfb, crtc);
1065 break;
1066 default:
1067 ret = -ENOTTY;
1068 }
1069
1070 return ret;
1071}
1072
Mark Brownfe05f8b2011-12-27 14:16:07 +00001073static int s3c_fb_open(struct fb_info *info, int user)
1074{
1075 struct s3c_fb_win *win = info->par;
1076 struct s3c_fb *sfb = win->parent;
1077
1078 pm_runtime_get_sync(sfb->dev);
1079
1080 return 0;
1081}
1082
1083static int s3c_fb_release(struct fb_info *info, int user)
1084{
1085 struct s3c_fb_win *win = info->par;
1086 struct s3c_fb *sfb = win->parent;
1087
1088 pm_runtime_put_sync(sfb->dev);
1089
1090 return 0;
1091}
1092
Ben Dooksec549a02009-03-31 15:25:39 -07001093static struct fb_ops s3c_fb_ops = {
1094 .owner = THIS_MODULE,
Mark Brownfe05f8b2011-12-27 14:16:07 +00001095 .fb_open = s3c_fb_open,
1096 .fb_release = s3c_fb_release,
Ben Dooksec549a02009-03-31 15:25:39 -07001097 .fb_check_var = s3c_fb_check_var,
1098 .fb_set_par = s3c_fb_set_par,
1099 .fb_blank = s3c_fb_blank,
1100 .fb_setcolreg = s3c_fb_setcolreg,
1101 .fb_fillrect = cfb_fillrect,
1102 .fb_copyarea = cfb_copyarea,
1103 .fb_imageblit = cfb_imageblit,
Pawel Osciak067b2262010-08-10 18:02:38 -07001104 .fb_pan_display = s3c_fb_pan_display,
Pawel Osciakefdc8462010-08-10 18:02:38 -07001105 .fb_ioctl = s3c_fb_ioctl,
Ben Dooksec549a02009-03-31 15:25:39 -07001106};
1107
1108/**
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001109 * s3c_fb_missing_pixclock() - calculates pixel clock
1110 * @mode: The video mode to change.
1111 *
1112 * Calculate the pixel clock when none has been given through platform data.
1113 */
1114static void __devinit s3c_fb_missing_pixclock(struct fb_videomode *mode)
1115{
1116 u64 pixclk = 1000000000000ULL;
1117 u32 div;
1118
1119 div = mode->left_margin + mode->hsync_len + mode->right_margin +
1120 mode->xres;
1121 div *= mode->upper_margin + mode->vsync_len + mode->lower_margin +
1122 mode->yres;
1123 div *= mode->refresh ? : 60;
1124
1125 do_div(pixclk, div);
1126
1127 mode->pixclock = pixclk;
1128}
1129
1130/**
Ben Dooksec549a02009-03-31 15:25:39 -07001131 * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1132 * @sfb: The base resources for the hardware.
1133 * @win: The window to initialise memory for.
1134 *
1135 * Allocate memory for the given framebuffer.
1136 */
1137static int __devinit s3c_fb_alloc_memory(struct s3c_fb *sfb,
1138 struct s3c_fb_win *win)
1139{
1140 struct s3c_fb_pd_win *windata = win->windata;
1141 unsigned int real_size, virt_size, size;
1142 struct fb_info *fbi = win->fbinfo;
1143 dma_addr_t map_dma;
1144
1145 dev_dbg(sfb->dev, "allocating memory for display\n");
1146
1147 real_size = windata->win_mode.xres * windata->win_mode.yres;
1148 virt_size = windata->virtual_x * windata->virtual_y;
1149
1150 dev_dbg(sfb->dev, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
1151 real_size, windata->win_mode.xres, windata->win_mode.yres,
1152 virt_size, windata->virtual_x, windata->virtual_y);
1153
1154 size = (real_size > virt_size) ? real_size : virt_size;
1155 size *= (windata->max_bpp > 16) ? 32 : windata->max_bpp;
1156 size /= 8;
1157
1158 fbi->fix.smem_len = size;
1159 size = PAGE_ALIGN(size);
1160
1161 dev_dbg(sfb->dev, "want %u bytes for window\n", size);
1162
1163 fbi->screen_base = dma_alloc_writecombine(sfb->dev, size,
1164 &map_dma, GFP_KERNEL);
1165 if (!fbi->screen_base)
1166 return -ENOMEM;
1167
1168 dev_dbg(sfb->dev, "mapped %x to %p\n",
1169 (unsigned int)map_dma, fbi->screen_base);
1170
1171 memset(fbi->screen_base, 0x0, size);
1172 fbi->fix.smem_start = map_dma;
1173
1174 return 0;
1175}
1176
1177/**
1178 * s3c_fb_free_memory() - free the display memory for the given window
1179 * @sfb: The base resources for the hardware.
1180 * @win: The window to free the display memory for.
1181 *
1182 * Free the display memory allocated by s3c_fb_alloc_memory().
1183 */
1184static void s3c_fb_free_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
1185{
1186 struct fb_info *fbi = win->fbinfo;
1187
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001188 if (fbi->screen_base)
1189 dma_free_writecombine(sfb->dev, PAGE_ALIGN(fbi->fix.smem_len),
Ben Dooksec549a02009-03-31 15:25:39 -07001190 fbi->screen_base, fbi->fix.smem_start);
1191}
1192
1193/**
1194 * s3c_fb_release_win() - release resources for a framebuffer window.
1195 * @win: The window to cleanup the resources for.
1196 *
1197 * Release the resources that where claimed for the hardware window,
1198 * such as the framebuffer instance and any memory claimed for it.
1199 */
1200static void s3c_fb_release_win(struct s3c_fb *sfb, struct s3c_fb_win *win)
1201{
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001202 u32 data;
1203
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001204 if (win->fbinfo) {
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001205 if (sfb->variant.has_shadowcon) {
1206 data = readl(sfb->regs + SHADOWCON);
1207 data &= ~SHADOWCON_CHx_ENABLE(win->index);
1208 data &= ~SHADOWCON_CHx_LOCAL_ENABLE(win->index);
1209 writel(data, sfb->regs + SHADOWCON);
1210 }
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001211 unregister_framebuffer(win->fbinfo);
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001212 if (win->fbinfo->cmap.len)
1213 fb_dealloc_cmap(&win->fbinfo->cmap);
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001214 s3c_fb_free_memory(sfb, win);
1215 framebuffer_release(win->fbinfo);
1216 }
Ben Dooksec549a02009-03-31 15:25:39 -07001217}
1218
1219/**
1220 * s3c_fb_probe_win() - register an hardware window
1221 * @sfb: The base resources for the hardware
Ben Dooks50a55032010-08-10 18:02:33 -07001222 * @variant: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -07001223 * @res: Pointer to where to place the resultant window.
1224 *
1225 * Allocate and do the basic initialisation for one of the hardware's graphics
1226 * windows.
1227 */
1228static int __devinit s3c_fb_probe_win(struct s3c_fb *sfb, unsigned int win_no,
Ben Dooks50a55032010-08-10 18:02:33 -07001229 struct s3c_fb_win_variant *variant,
Ben Dooksec549a02009-03-31 15:25:39 -07001230 struct s3c_fb_win **res)
1231{
1232 struct fb_var_screeninfo *var;
1233 struct fb_videomode *initmode;
1234 struct s3c_fb_pd_win *windata;
1235 struct s3c_fb_win *win;
1236 struct fb_info *fbinfo;
1237 int palette_size;
1238 int ret;
1239
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001240 dev_dbg(sfb->dev, "probing window %d, variant %p\n", win_no, variant);
Ben Dooksec549a02009-03-31 15:25:39 -07001241
Pawel Osciakefdc8462010-08-10 18:02:38 -07001242 init_waitqueue_head(&sfb->vsync_info.wait);
1243
Ben Dooks50a55032010-08-10 18:02:33 -07001244 palette_size = variant->palette_sz * 4;
Ben Dooksec549a02009-03-31 15:25:39 -07001245
1246 fbinfo = framebuffer_alloc(sizeof(struct s3c_fb_win) +
1247 palette_size * sizeof(u32), sfb->dev);
1248 if (!fbinfo) {
1249 dev_err(sfb->dev, "failed to allocate framebuffer\n");
1250 return -ENOENT;
1251 }
1252
1253 windata = sfb->pdata->win[win_no];
1254 initmode = &windata->win_mode;
1255
1256 WARN_ON(windata->max_bpp == 0);
1257 WARN_ON(windata->win_mode.xres == 0);
1258 WARN_ON(windata->win_mode.yres == 0);
1259
1260 win = fbinfo->par;
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001261 *res = win;
Ben Dooksec549a02009-03-31 15:25:39 -07001262 var = &fbinfo->var;
Ben Dooks50a55032010-08-10 18:02:33 -07001263 win->variant = *variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001264 win->fbinfo = fbinfo;
1265 win->parent = sfb;
1266 win->windata = windata;
1267 win->index = win_no;
1268 win->palette_buffer = (u32 *)(win + 1);
1269
1270 ret = s3c_fb_alloc_memory(sfb, win);
1271 if (ret) {
1272 dev_err(sfb->dev, "failed to allocate display memory\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001273 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001274 }
1275
1276 /* setup the r/b/g positions for the window's palette */
Ben Dooksbc2da1b2010-08-10 18:02:34 -07001277 if (win->variant.palette_16bpp) {
1278 /* Set RGB 5:6:5 as default */
1279 win->palette.r.offset = 11;
1280 win->palette.r.length = 5;
1281 win->palette.g.offset = 5;
1282 win->palette.g.length = 6;
1283 win->palette.b.offset = 0;
1284 win->palette.b.length = 5;
1285
1286 } else {
1287 /* Set 8bpp or 8bpp and 1bit alpha */
1288 win->palette.r.offset = 16;
1289 win->palette.r.length = 8;
1290 win->palette.g.offset = 8;
1291 win->palette.g.length = 8;
1292 win->palette.b.offset = 0;
1293 win->palette.b.length = 8;
1294 }
Ben Dooksec549a02009-03-31 15:25:39 -07001295
1296 /* setup the initial video mode from the window */
1297 fb_videomode_to_var(&fbinfo->var, initmode);
1298
1299 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
1300 fbinfo->fix.accel = FB_ACCEL_NONE;
1301 fbinfo->var.activate = FB_ACTIVATE_NOW;
1302 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
1303 fbinfo->var.bits_per_pixel = windata->default_bpp;
1304 fbinfo->fbops = &s3c_fb_ops;
1305 fbinfo->flags = FBINFO_FLAG_DEFAULT;
1306 fbinfo->pseudo_palette = &win->pseudo_palette;
1307
1308 /* prepare to actually start the framebuffer */
1309
1310 ret = s3c_fb_check_var(&fbinfo->var, fbinfo);
1311 if (ret < 0) {
1312 dev_err(sfb->dev, "check_var failed on initial video params\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001313 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001314 }
1315
1316 /* create initial colour map */
1317
Ben Dooks50a55032010-08-10 18:02:33 -07001318 ret = fb_alloc_cmap(&fbinfo->cmap, win->variant.palette_sz, 1);
Ben Dooksec549a02009-03-31 15:25:39 -07001319 if (ret == 0)
1320 fb_set_cmap(&fbinfo->cmap, fbinfo);
1321 else
1322 dev_err(sfb->dev, "failed to allocate fb cmap\n");
1323
1324 s3c_fb_set_par(fbinfo);
1325
1326 dev_dbg(sfb->dev, "about to register framebuffer\n");
1327
1328 /* run the check_var and set_par on our configuration. */
1329
1330 ret = register_framebuffer(fbinfo);
1331 if (ret < 0) {
1332 dev_err(sfb->dev, "failed to register framebuffer\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001333 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001334 }
1335
Ben Dooksec549a02009-03-31 15:25:39 -07001336 dev_info(sfb->dev, "window %d: fb %s\n", win_no, fbinfo->fix.id);
1337
1338 return 0;
Ben Dooksec549a02009-03-31 15:25:39 -07001339}
1340
1341/**
1342 * s3c_fb_clear_win() - clear hardware window registers.
1343 * @sfb: The base resources for the hardware.
1344 * @win: The window to process.
1345 *
1346 * Reset the specific window registers to a known state.
1347 */
1348static void s3c_fb_clear_win(struct s3c_fb *sfb, int win)
1349{
1350 void __iomem *regs = sfb->regs;
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001351 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001352
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001353 writel(0, regs + sfb->variant.wincon + (win * 4));
1354 writel(0, regs + VIDOSD_A(win, sfb->variant));
1355 writel(0, regs + VIDOSD_B(win, sfb->variant));
1356 writel(0, regs + VIDOSD_C(win, sfb->variant));
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001357 reg = readl(regs + SHADOWCON);
1358 writel(reg & ~SHADOWCON_WINx_PROTECT(win), regs + SHADOWCON);
Ben Dooksec549a02009-03-31 15:25:39 -07001359}
1360
1361static int __devinit s3c_fb_probe(struct platform_device *pdev)
1362{
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001363 const struct platform_device_id *platid;
Ben Dooks50a55032010-08-10 18:02:33 -07001364 struct s3c_fb_driverdata *fbdrv;
Ben Dooksec549a02009-03-31 15:25:39 -07001365 struct device *dev = &pdev->dev;
1366 struct s3c_fb_platdata *pd;
1367 struct s3c_fb *sfb;
1368 struct resource *res;
1369 int win;
1370 int ret = 0;
1371
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001372 platid = platform_get_device_id(pdev);
1373 fbdrv = (struct s3c_fb_driverdata *)platid->driver_data;
Ben Dooks50a55032010-08-10 18:02:33 -07001374
1375 if (fbdrv->variant.nr_windows > S3C_FB_MAX_WIN) {
1376 dev_err(dev, "too many windows, cannot attach\n");
1377 return -EINVAL;
1378 }
1379
Ben Dooksec549a02009-03-31 15:25:39 -07001380 pd = pdev->dev.platform_data;
1381 if (!pd) {
1382 dev_err(dev, "no platform data specified\n");
1383 return -EINVAL;
1384 }
1385
1386 sfb = kzalloc(sizeof(struct s3c_fb), GFP_KERNEL);
1387 if (!sfb) {
1388 dev_err(dev, "no memory for framebuffers\n");
1389 return -ENOMEM;
1390 }
1391
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001392 dev_dbg(dev, "allocate new framebuffer %p\n", sfb);
1393
Ben Dooksec549a02009-03-31 15:25:39 -07001394 sfb->dev = dev;
1395 sfb->pdata = pd;
Ben Dooks50a55032010-08-10 18:02:33 -07001396 sfb->variant = fbdrv->variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001397
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +00001398 spin_lock_init(&sfb->slock);
1399
Ben Dooksec549a02009-03-31 15:25:39 -07001400 sfb->bus_clk = clk_get(dev, "lcd");
1401 if (IS_ERR(sfb->bus_clk)) {
1402 dev_err(dev, "failed to get bus clock\n");
axel lin942b8d02011-02-11 08:51:10 +00001403 ret = PTR_ERR(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001404 goto err_sfb;
1405 }
1406
1407 clk_enable(sfb->bus_clk);
1408
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001409 if (!sfb->variant.has_clksel) {
1410 sfb->lcd_clk = clk_get(dev, "sclk_fimd");
1411 if (IS_ERR(sfb->lcd_clk)) {
1412 dev_err(dev, "failed to get lcd clock\n");
1413 ret = PTR_ERR(sfb->lcd_clk);
1414 goto err_bus_clk;
1415 }
1416
1417 clk_enable(sfb->lcd_clk);
1418 }
1419
Jingoo Han49592122010-12-17 16:45:46 +09001420 pm_runtime_enable(sfb->dev);
1421
Ben Dooksec549a02009-03-31 15:25:39 -07001422 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1423 if (!res) {
1424 dev_err(dev, "failed to find registers\n");
1425 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001426 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001427 }
1428
1429 sfb->regs_res = request_mem_region(res->start, resource_size(res),
1430 dev_name(dev));
1431 if (!sfb->regs_res) {
1432 dev_err(dev, "failed to claim register region\n");
1433 ret = -ENOENT;
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001434 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001435 }
1436
1437 sfb->regs = ioremap(res->start, resource_size(res));
1438 if (!sfb->regs) {
1439 dev_err(dev, "failed to map registers\n");
1440 ret = -ENXIO;
1441 goto err_req_region;
1442 }
1443
Pawel Osciakefdc8462010-08-10 18:02:38 -07001444 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1445 if (!res) {
1446 dev_err(dev, "failed to acquire irq resource\n");
1447 ret = -ENOENT;
1448 goto err_ioremap;
1449 }
1450 sfb->irq_no = res->start;
1451 ret = request_irq(sfb->irq_no, s3c_fb_irq,
1452 0, "s3c_fb", sfb);
1453 if (ret) {
1454 dev_err(dev, "irq request failed\n");
1455 goto err_ioremap;
1456 }
1457
Ben Dooksec549a02009-03-31 15:25:39 -07001458 dev_dbg(dev, "got resources (regs %p), probing windows\n", sfb->regs);
1459
Jingoo Han49592122010-12-17 16:45:46 +09001460 platform_set_drvdata(pdev, sfb);
1461 pm_runtime_get_sync(sfb->dev);
1462
Ben Dooksec549a02009-03-31 15:25:39 -07001463 /* setup gpio and output polarity controls */
1464
1465 pd->setup_gpio();
1466
1467 writel(pd->vidcon1, sfb->regs + VIDCON1);
1468
1469 /* zero all windows before we do anything */
1470
Ben Dooks50a55032010-08-10 18:02:33 -07001471 for (win = 0; win < fbdrv->variant.nr_windows; win++)
Ben Dooksec549a02009-03-31 15:25:39 -07001472 s3c_fb_clear_win(sfb, win);
1473
Ben Dooks94947032010-08-10 18:02:32 -07001474 /* initialise colour key controls */
Ben Dooks50a55032010-08-10 18:02:33 -07001475 for (win = 0; win < (fbdrv->variant.nr_windows - 1); win++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001476 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1477
1478 regs += (win * 8);
1479 writel(0xffffff, regs + WKEYCON0);
1480 writel(0xffffff, regs + WKEYCON1);
Ben Dooks94947032010-08-10 18:02:32 -07001481 }
1482
Ben Dooksec549a02009-03-31 15:25:39 -07001483 /* we have the register setup, start allocating framebuffers */
1484
Ben Dooks50a55032010-08-10 18:02:33 -07001485 for (win = 0; win < fbdrv->variant.nr_windows; win++) {
Ben Dooksec549a02009-03-31 15:25:39 -07001486 if (!pd->win[win])
1487 continue;
1488
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001489 if (!pd->win[win]->win_mode.pixclock)
1490 s3c_fb_missing_pixclock(&pd->win[win]->win_mode);
1491
Ben Dooks50a55032010-08-10 18:02:33 -07001492 ret = s3c_fb_probe_win(sfb, win, fbdrv->win[win],
1493 &sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001494 if (ret < 0) {
1495 dev_err(dev, "failed to create window %d\n", win);
1496 for (; win >= 0; win--)
1497 s3c_fb_release_win(sfb, sfb->windows[win]);
Mark Brown3500b0b2011-12-27 14:16:09 +00001498 goto err_pm_runtime;
Ben Dooksec549a02009-03-31 15:25:39 -07001499 }
1500 }
1501
1502 platform_set_drvdata(pdev, sfb);
Mark Brownfe05f8b2011-12-27 14:16:07 +00001503 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001504
1505 return 0;
1506
Mark Brown3500b0b2011-12-27 14:16:09 +00001507err_pm_runtime:
1508 pm_runtime_put_sync(sfb->dev);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001509 free_irq(sfb->irq_no, sfb);
1510
Ben Dooksec549a02009-03-31 15:25:39 -07001511err_ioremap:
1512 iounmap(sfb->regs);
1513
1514err_req_region:
Julia Lawall683e7cd2011-04-22 20:11:21 +00001515 release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
Ben Dooksec549a02009-03-31 15:25:39 -07001516
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001517err_lcd_clk:
Mark Brown3500b0b2011-12-27 14:16:09 +00001518 pm_runtime_disable(sfb->dev);
1519
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001520 if (!sfb->variant.has_clksel) {
1521 clk_disable(sfb->lcd_clk);
1522 clk_put(sfb->lcd_clk);
1523 }
1524
1525err_bus_clk:
Ben Dooksec549a02009-03-31 15:25:39 -07001526 clk_disable(sfb->bus_clk);
1527 clk_put(sfb->bus_clk);
1528
1529err_sfb:
1530 kfree(sfb);
1531 return ret;
1532}
1533
1534/**
1535 * s3c_fb_remove() - Cleanup on module finalisation
1536 * @pdev: The platform device we are bound to.
1537 *
1538 * Shutdown and then release all the resources that the driver allocated
1539 * on initialisation.
1540 */
1541static int __devexit s3c_fb_remove(struct platform_device *pdev)
1542{
1543 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1544 int win;
1545
Mark Brownfe05f8b2011-12-27 14:16:07 +00001546 pm_runtime_get_sync(sfb->dev);
1547
Pawel Osciakc42b1102009-07-29 15:02:10 -07001548 for (win = 0; win < S3C_FB_MAX_WIN; win++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001549 if (sfb->windows[win])
1550 s3c_fb_release_win(sfb, sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001551
Pawel Osciakefdc8462010-08-10 18:02:38 -07001552 free_irq(sfb->irq_no, sfb);
1553
Ben Dooksec549a02009-03-31 15:25:39 -07001554 iounmap(sfb->regs);
1555
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001556 if (!sfb->variant.has_clksel) {
1557 clk_disable(sfb->lcd_clk);
1558 clk_put(sfb->lcd_clk);
1559 }
1560
Ben Dooksec549a02009-03-31 15:25:39 -07001561 clk_disable(sfb->bus_clk);
1562 clk_put(sfb->bus_clk);
1563
Julia Lawall683e7cd2011-04-22 20:11:21 +00001564 release_mem_region(sfb->regs_res->start, resource_size(sfb->regs_res));
Ben Dooksec549a02009-03-31 15:25:39 -07001565
Jingoo Han49592122010-12-17 16:45:46 +09001566 pm_runtime_put_sync(sfb->dev);
1567 pm_runtime_disable(sfb->dev);
1568
Jingoo Han72ba4cb2011-06-09 04:26:31 +00001569 kfree(sfb);
Ben Dooksec549a02009-03-31 15:25:39 -07001570 return 0;
1571}
1572
Mark Brownf4f51472011-12-27 14:16:10 +00001573#ifdef CONFIG_PM_SLEEP
Jingoo Han49592122010-12-17 16:45:46 +09001574static int s3c_fb_suspend(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001575{
Jingoo Han49592122010-12-17 16:45:46 +09001576 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001577 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1578 struct s3c_fb_win *win;
1579 int win_no;
1580
Pawel Osciakc42b1102009-07-29 15:02:10 -07001581 for (win_no = S3C_FB_MAX_WIN - 1; win_no >= 0; win_no--) {
Ben Dooksec549a02009-03-31 15:25:39 -07001582 win = sfb->windows[win_no];
1583 if (!win)
1584 continue;
1585
1586 /* use the blank function to push into power-down */
1587 s3c_fb_blank(FB_BLANK_POWERDOWN, win->fbinfo);
1588 }
1589
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001590 if (!sfb->variant.has_clksel)
1591 clk_disable(sfb->lcd_clk);
1592
Ben Dooksec549a02009-03-31 15:25:39 -07001593 clk_disable(sfb->bus_clk);
1594 return 0;
1595}
1596
Jingoo Han49592122010-12-17 16:45:46 +09001597static int s3c_fb_resume(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001598{
Jingoo Han49592122010-12-17 16:45:46 +09001599 struct platform_device *pdev = to_platform_device(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001600 struct s3c_fb *sfb = platform_get_drvdata(pdev);
Marek Szyprowski17663e52009-05-28 14:34:35 -07001601 struct s3c_fb_platdata *pd = sfb->pdata;
Ben Dooksec549a02009-03-31 15:25:39 -07001602 struct s3c_fb_win *win;
1603 int win_no;
1604
1605 clk_enable(sfb->bus_clk);
1606
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001607 if (!sfb->variant.has_clksel)
1608 clk_enable(sfb->lcd_clk);
1609
Jingoo Han6aa96812011-05-24 08:55:31 +00001610 /* setup gpio and output polarity controls */
1611 pd->setup_gpio();
Marek Szyprowski17663e52009-05-28 14:34:35 -07001612 writel(pd->vidcon1, sfb->regs + VIDCON1);
1613
1614 /* zero all windows before we do anything */
Ben Dooks50a55032010-08-10 18:02:33 -07001615 for (win_no = 0; win_no < sfb->variant.nr_windows; win_no++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001616 s3c_fb_clear_win(sfb, win_no);
1617
Ben Dooks50a55032010-08-10 18:02:33 -07001618 for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001619 void __iomem *regs = sfb->regs + sfb->variant.keycon;
Jingoo Hanff8c9102011-12-08 18:08:00 +09001620 win = sfb->windows[win_no];
1621 if (!win)
1622 continue;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001623
Jingoo Hanff8c9102011-12-08 18:08:00 +09001624 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001625 regs += (win_no * 8);
1626 writel(0xffffff, regs + WKEYCON0);
1627 writel(0xffffff, regs + WKEYCON1);
Jingoo Hanff8c9102011-12-08 18:08:00 +09001628 shadow_protect_win(win, 0);
Ben Dooks94947032010-08-10 18:02:32 -07001629 }
1630
Marek Szyprowski17663e52009-05-28 14:34:35 -07001631 /* restore framebuffers */
Ben Dooksec549a02009-03-31 15:25:39 -07001632 for (win_no = 0; win_no < S3C_FB_MAX_WIN; win_no++) {
1633 win = sfb->windows[win_no];
1634 if (!win)
1635 continue;
1636
1637 dev_dbg(&pdev->dev, "resuming window %d\n", win_no);
1638 s3c_fb_set_par(win->fbinfo);
1639 }
1640
1641 return 0;
1642}
Ben Dooksec549a02009-03-31 15:25:39 -07001643#endif
1644
Mark Brownf4f51472011-12-27 14:16:10 +00001645#ifdef CONFIG_PM_RUNTIME
1646static int s3c_fb_runtime_suspend(struct device *dev)
1647{
1648 struct platform_device *pdev = to_platform_device(dev);
1649 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1650
1651 if (!sfb->variant.has_clksel)
1652 clk_disable(sfb->lcd_clk);
1653
1654 clk_disable(sfb->bus_clk);
1655
1656 return 0;
1657}
1658
1659static int s3c_fb_runtime_resume(struct device *dev)
1660{
1661 struct platform_device *pdev = to_platform_device(dev);
1662 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1663 struct s3c_fb_platdata *pd = sfb->pdata;
1664
1665 clk_enable(sfb->bus_clk);
1666
1667 if (!sfb->variant.has_clksel)
1668 clk_enable(sfb->lcd_clk);
1669
1670 /* setup gpio and output polarity controls */
1671 pd->setup_gpio();
1672 writel(pd->vidcon1, sfb->regs + VIDCON1);
1673
1674 return 0;
1675}
1676#endif
Ben Dooks50a55032010-08-10 18:02:33 -07001677
1678#define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1679#define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1680
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001681static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
Ben Dooks50a55032010-08-10 18:02:33 -07001682 [0] = {
1683 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001684 .osd_size_off = 0x8,
Ben Dooks50a55032010-08-10 18:02:33 -07001685 .palette_sz = 256,
Jingoo Hancd74eba2011-04-22 07:09:40 +00001686 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1687 VALID_BPP(18) | VALID_BPP(24)),
Ben Dooks50a55032010-08-10 18:02:33 -07001688 },
1689 [1] = {
1690 .has_osd_c = 1,
1691 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001692 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001693 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001694 .palette_sz = 256,
1695 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1696 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001697 VALID_BPP(24) | VALID_BPP(25) |
1698 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001699 },
1700 [2] = {
1701 .has_osd_c = 1,
1702 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001703 .osd_size_off = 0xc,
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_BPP1248 | 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 [3] = {
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 = 16,
1716 .palette_16bpp = 1,
1717 .valid_bpp = (VALID_BPP124 | VALID_BPP(16) |
1718 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001719 VALID_BPP(24) | VALID_BPP(25) |
1720 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001721 },
1722 [4] = {
1723 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001724 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001725 .palette_sz = 4,
1726 .palette_16bpp = 1,
1727 .valid_bpp = (VALID_BPP(1) | VALID_BPP(2) |
1728 VALID_BPP(16) | VALID_BPP(18) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001729 VALID_BPP(19) | VALID_BPP(24) |
1730 VALID_BPP(25) | VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001731 },
1732};
1733
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001734static struct s3c_fb_win_variant s3c_fb_data_s5p_wins[] = {
1735 [0] = {
1736 .has_osd_c = 1,
1737 .osd_size_off = 0x8,
1738 .palette_sz = 256,
1739 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1740 VALID_BPP(15) | VALID_BPP(16) |
1741 VALID_BPP(18) | VALID_BPP(19) |
1742 VALID_BPP(24) | VALID_BPP(25) |
1743 VALID_BPP(32)),
1744 },
1745 [1] = {
1746 .has_osd_c = 1,
1747 .has_osd_d = 1,
1748 .osd_size_off = 0xc,
1749 .has_osd_alpha = 1,
1750 .palette_sz = 256,
1751 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1752 VALID_BPP(15) | VALID_BPP(16) |
1753 VALID_BPP(18) | VALID_BPP(19) |
1754 VALID_BPP(24) | VALID_BPP(25) |
1755 VALID_BPP(32)),
1756 },
1757 [2] = {
1758 .has_osd_c = 1,
1759 .has_osd_d = 1,
1760 .osd_size_off = 0xc,
1761 .has_osd_alpha = 1,
1762 .palette_sz = 256,
1763 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1764 VALID_BPP(15) | VALID_BPP(16) |
1765 VALID_BPP(18) | VALID_BPP(19) |
1766 VALID_BPP(24) | VALID_BPP(25) |
1767 VALID_BPP(32)),
1768 },
1769 [3] = {
1770 .has_osd_c = 1,
1771 .has_osd_alpha = 1,
1772 .palette_sz = 256,
1773 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1774 VALID_BPP(15) | VALID_BPP(16) |
1775 VALID_BPP(18) | VALID_BPP(19) |
1776 VALID_BPP(24) | VALID_BPP(25) |
1777 VALID_BPP(32)),
1778 },
1779 [4] = {
1780 .has_osd_c = 1,
1781 .has_osd_alpha = 1,
1782 .palette_sz = 256,
1783 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1784 VALID_BPP(15) | VALID_BPP(16) |
1785 VALID_BPP(18) | VALID_BPP(19) |
1786 VALID_BPP(24) | VALID_BPP(25) |
1787 VALID_BPP(32)),
1788 },
1789};
1790
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001791static struct s3c_fb_driverdata s3c_fb_data_64xx = {
Ben Dooks50a55032010-08-10 18:02:33 -07001792 .variant = {
1793 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001794 .vidtcon = VIDTCON0,
1795 .wincon = WINCON(0),
1796 .winmap = WINxMAP(0),
1797 .keycon = WKEYCON,
1798 .osd = VIDOSD_BASE,
1799 .osd_stride = 16,
1800 .buf_start = VIDW_BUF_START(0),
1801 .buf_size = VIDW_BUF_SIZE(0),
1802 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001803
1804 .palette = {
1805 [0] = 0x400,
1806 [1] = 0x800,
1807 [2] = 0x300,
1808 [3] = 0x320,
1809 [4] = 0x340,
1810 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001811
1812 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001813 .has_clksel = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001814 },
1815 .win[0] = &s3c_fb_data_64xx_wins[0],
1816 .win[1] = &s3c_fb_data_64xx_wins[1],
1817 .win[2] = &s3c_fb_data_64xx_wins[2],
1818 .win[3] = &s3c_fb_data_64xx_wins[3],
1819 .win[4] = &s3c_fb_data_64xx_wins[4],
1820};
1821
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001822static struct s3c_fb_driverdata s3c_fb_data_s5pc100 = {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001823 .variant = {
1824 .nr_windows = 5,
1825 .vidtcon = VIDTCON0,
1826 .wincon = WINCON(0),
1827 .winmap = WINxMAP(0),
1828 .keycon = WKEYCON,
1829 .osd = VIDOSD_BASE,
1830 .osd_stride = 16,
1831 .buf_start = VIDW_BUF_START(0),
1832 .buf_size = VIDW_BUF_SIZE(0),
1833 .buf_end = VIDW_BUF_END(0),
1834
1835 .palette = {
1836 [0] = 0x2400,
1837 [1] = 0x2800,
1838 [2] = 0x2c00,
1839 [3] = 0x3000,
1840 [4] = 0x3400,
1841 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001842
1843 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001844 .has_clksel = 1,
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001845 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001846 .win[0] = &s3c_fb_data_s5p_wins[0],
1847 .win[1] = &s3c_fb_data_s5p_wins[1],
1848 .win[2] = &s3c_fb_data_s5p_wins[2],
1849 .win[3] = &s3c_fb_data_s5p_wins[3],
1850 .win[4] = &s3c_fb_data_s5p_wins[4],
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001851};
1852
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001853static struct s3c_fb_driverdata s3c_fb_data_s5pv210 = {
Ben Dooks50a55032010-08-10 18:02:33 -07001854 .variant = {
1855 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001856 .vidtcon = VIDTCON0,
1857 .wincon = WINCON(0),
1858 .winmap = WINxMAP(0),
1859 .keycon = WKEYCON,
1860 .osd = VIDOSD_BASE,
1861 .osd_stride = 16,
1862 .buf_start = VIDW_BUF_START(0),
1863 .buf_size = VIDW_BUF_SIZE(0),
1864 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001865
1866 .palette = {
1867 [0] = 0x2400,
1868 [1] = 0x2800,
1869 [2] = 0x2c00,
1870 [3] = 0x3000,
1871 [4] = 0x3400,
1872 },
Pawel Osciakf5ec5462010-08-10 18:02:40 -07001873
1874 .has_shadowcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001875 .has_clksel = 1,
1876 },
1877 .win[0] = &s3c_fb_data_s5p_wins[0],
1878 .win[1] = &s3c_fb_data_s5p_wins[1],
1879 .win[2] = &s3c_fb_data_s5p_wins[2],
1880 .win[3] = &s3c_fb_data_s5p_wins[3],
1881 .win[4] = &s3c_fb_data_s5p_wins[4],
1882};
1883
1884static struct s3c_fb_driverdata s3c_fb_data_exynos4 = {
1885 .variant = {
1886 .nr_windows = 5,
1887 .vidtcon = VIDTCON0,
1888 .wincon = WINCON(0),
1889 .winmap = WINxMAP(0),
1890 .keycon = WKEYCON,
1891 .osd = VIDOSD_BASE,
1892 .osd_stride = 16,
1893 .buf_start = VIDW_BUF_START(0),
1894 .buf_size = VIDW_BUF_SIZE(0),
1895 .buf_end = VIDW_BUF_END(0),
1896
1897 .palette = {
1898 [0] = 0x2400,
1899 [1] = 0x2800,
1900 [2] = 0x2c00,
1901 [3] = 0x3000,
1902 [4] = 0x3400,
1903 },
1904
1905 .has_shadowcon = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001906 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001907 .win[0] = &s3c_fb_data_s5p_wins[0],
1908 .win[1] = &s3c_fb_data_s5p_wins[1],
1909 .win[2] = &s3c_fb_data_s5p_wins[2],
1910 .win[3] = &s3c_fb_data_s5p_wins[3],
1911 .win[4] = &s3c_fb_data_s5p_wins[4],
Ben Dooks50a55032010-08-10 18:02:33 -07001912};
1913
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001914/* S3C2443/S3C2416 style hardware */
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001915static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001916 .variant = {
1917 .nr_windows = 2,
1918 .is_2443 = 1,
1919
1920 .vidtcon = 0x08,
1921 .wincon = 0x14,
1922 .winmap = 0xd0,
1923 .keycon = 0xb0,
1924 .osd = 0x28,
1925 .osd_stride = 12,
1926 .buf_start = 0x64,
1927 .buf_size = 0x94,
1928 .buf_end = 0x7c,
1929
1930 .palette = {
1931 [0] = 0x400,
1932 [1] = 0x800,
1933 },
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001934 .has_clksel = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001935 },
1936 .win[0] = &(struct s3c_fb_win_variant) {
1937 .palette_sz = 256,
1938 .valid_bpp = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24),
1939 },
1940 .win[1] = &(struct s3c_fb_win_variant) {
1941 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001942 .has_osd_alpha = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001943 .palette_sz = 256,
1944 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1945 VALID_BPP(18) | VALID_BPP(19) |
1946 VALID_BPP(24) | VALID_BPP(25) |
1947 VALID_BPP(28)),
1948 },
1949};
1950
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001951static struct s3c_fb_driverdata s3c_fb_data_s5p64x0 = {
1952 .variant = {
1953 .nr_windows = 3,
1954 .vidtcon = VIDTCON0,
1955 .wincon = WINCON(0),
1956 .winmap = WINxMAP(0),
1957 .keycon = WKEYCON,
1958 .osd = VIDOSD_BASE,
1959 .osd_stride = 16,
1960 .buf_start = VIDW_BUF_START(0),
1961 .buf_size = VIDW_BUF_SIZE(0),
1962 .buf_end = VIDW_BUF_END(0),
1963
1964 .palette = {
1965 [0] = 0x2400,
1966 [1] = 0x2800,
1967 [2] = 0x2c00,
1968 },
1969 },
1970 .win[0] = &s3c_fb_data_s5p_wins[0],
1971 .win[1] = &s3c_fb_data_s5p_wins[1],
1972 .win[2] = &s3c_fb_data_s5p_wins[2],
1973};
1974
Ben Dooks50a55032010-08-10 18:02:33 -07001975static struct platform_device_id s3c_fb_driver_ids[] = {
1976 {
1977 .name = "s3c-fb",
1978 .driver_data = (unsigned long)&s3c_fb_data_64xx,
1979 }, {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001980 .name = "s5pc100-fb",
1981 .driver_data = (unsigned long)&s3c_fb_data_s5pc100,
1982 }, {
1983 .name = "s5pv210-fb",
1984 .driver_data = (unsigned long)&s3c_fb_data_s5pv210,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001985 }, {
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001986 .name = "exynos4-fb",
1987 .driver_data = (unsigned long)&s3c_fb_data_exynos4,
1988 }, {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001989 .name = "s3c2443-fb",
1990 .driver_data = (unsigned long)&s3c_fb_data_s3c2443,
Ajay Kumar21b5a3a2011-09-09 14:00:51 -04001991 }, {
1992 .name = "s5p64x0-fb",
1993 .driver_data = (unsigned long)&s3c_fb_data_s5p64x0,
Ben Dooks50a55032010-08-10 18:02:33 -07001994 },
1995 {},
1996};
1997MODULE_DEVICE_TABLE(platform, s3c_fb_driver_ids);
1998
Mark Brownf4f51472011-12-27 14:16:10 +00001999static const struct dev_pm_ops s3cfb_pm_ops = {
2000 SET_SYSTEM_SLEEP_PM_OPS(s3c_fb_suspend, s3c_fb_resume)
2001 SET_RUNTIME_PM_OPS(s3c_fb_runtime_suspend, s3c_fb_runtime_resume,
2002 NULL)
2003};
Jingoo Han49592122010-12-17 16:45:46 +09002004
Ben Dooksec549a02009-03-31 15:25:39 -07002005static struct platform_driver s3c_fb_driver = {
2006 .probe = s3c_fb_probe,
Peter Korsgaard3163eaba2009-09-22 16:47:55 -07002007 .remove = __devexit_p(s3c_fb_remove),
Ben Dooks50a55032010-08-10 18:02:33 -07002008 .id_table = s3c_fb_driver_ids,
Ben Dooksec549a02009-03-31 15:25:39 -07002009 .driver = {
2010 .name = "s3c-fb",
2011 .owner = THIS_MODULE,
Mark Brownfe05f8b2011-12-27 14:16:07 +00002012 .pm = &s3cfb_pm_ops,
Ben Dooksec549a02009-03-31 15:25:39 -07002013 },
2014};
2015
Axel Lin4277f2c2011-11-26 10:25:54 +08002016module_platform_driver(s3c_fb_driver);
Ben Dooksec549a02009-03-31 15:25:39 -07002017
2018MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
2019MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
2020MODULE_LICENSE("GPL");
2021MODULE_ALIAS("platform:s3c-fb");