blob: 5f4f696c2ecfd5e677575675be2969b1ba09947d [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>
Arnd Bergmannbbfce372013-04-11 02:04:55 +020027#include <linux/platform_data/video_s3c.h>
Ben Dooksec549a02009-03-31 15:25:39 -070028
Leela Krishna Amudala5a213a52012-08-08 09:44:49 +090029#include <video/samsung_fimd.h>
Ben Dooksec549a02009-03-31 15:25:39 -070030
31/* This driver will export a number of framebuffer interfaces depending
32 * on the configuration passed in via the platform data. Each fb instance
33 * maps to a hardware window. Currently there is no support for runtime
34 * setting of the alpha-blending functions that each window has, so only
35 * window 0 is actually useful.
36 *
37 * Window 0 is treated specially, it is used for the basis of the LCD
38 * output timings and as the control for the output power-down state.
39*/
40
Ben Dooks50a55032010-08-10 18:02:33 -070041/* note, the previous use of <mach/regs-fb.h> to get platform specific data
42 * has been replaced by using the platform device name to pick the correct
43 * configuration data for the system.
Ben Dooksec549a02009-03-31 15:25:39 -070044*/
45
46#ifdef CONFIG_FB_S3C_DEBUG_REGWRITE
47#undef writel
48#define writel(v, r) do { \
Jingoo Han65302e42012-05-07 09:20:09 +090049 pr_debug("%s: %08x => %p\n", __func__, (unsigned int)v, r); \
Jingoo Han05e52b42012-01-26 19:38:45 +090050 __raw_writel(v, r); \
51} 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 Hanf7f31e52012-01-27 14:47:22 +090084 * @has_blendcon: Set if has BLENDCON register.
Jingoo Hanb5480ed2011-08-22 12:16:04 +090085 * @has_clksel: Set if VIDCON0 register has CLKSEL bit.
Jingoo Hand8b97db2012-01-27 14:47:55 +090086 * @has_fixvclk: Set if VIDCON1 register has FIXVCLK bits.
Ben Dooks50a55032010-08-10 18:02:33 -070087 */
88struct s3c_fb_variant {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070089 unsigned int is_2443:1;
Ben Dooks50a55032010-08-10 18:02:33 -070090 unsigned short nr_windows;
Jingoo Han5c447782012-03-06 15:53:41 +090091 unsigned int vidtcon;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -070092 unsigned short wincon;
93 unsigned short winmap;
94 unsigned short keycon;
95 unsigned short buf_start;
96 unsigned short buf_end;
97 unsigned short buf_size;
98 unsigned short osd;
99 unsigned short osd_stride;
Ben Dooks50a55032010-08-10 18:02:33 -0700100 unsigned short palette[S3C_FB_MAX_WIN];
Pawel Osciak067b2262010-08-10 18:02:38 -0700101
102 unsigned int has_prtcon:1;
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700103 unsigned int has_shadowcon:1;
Jingoo Hanf7f31e52012-01-27 14:47:22 +0900104 unsigned int has_blendcon:1;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900105 unsigned int has_clksel:1;
Jingoo Hand8b97db2012-01-27 14:47:55 +0900106 unsigned int has_fixvclk:1;
Ben Dooks50a55032010-08-10 18:02:33 -0700107};
108
109/**
110 * struct s3c_fb_win_variant
111 * @has_osd_c: Set if has OSD C register.
112 * @has_osd_d: Set if has OSD D register.
Pawel Osciakf676ec22010-08-10 18:02:40 -0700113 * @has_osd_alpha: Set if can change alpha transparency for a window.
Ben Dooks50a55032010-08-10 18:02:33 -0700114 * @palette_sz: Size of palette in entries.
115 * @palette_16bpp: Set if palette is 16bits wide.
Pawel Osciakf676ec22010-08-10 18:02:40 -0700116 * @osd_size_off: If != 0, supports setting up OSD for a window; the appropriate
117 * register is located at the given offset from OSD_BASE.
Ben Dooks50a55032010-08-10 18:02:33 -0700118 * @valid_bpp: 1 bit per BPP setting to show valid bits-per-pixel.
119 *
120 * valid_bpp bit x is set if (x+1)BPP is supported.
121 */
122struct s3c_fb_win_variant {
123 unsigned int has_osd_c:1;
124 unsigned int has_osd_d:1;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700125 unsigned int has_osd_alpha:1;
Ben Dooks50a55032010-08-10 18:02:33 -0700126 unsigned int palette_16bpp:1;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700127 unsigned short osd_size_off;
Ben Dooks50a55032010-08-10 18:02:33 -0700128 unsigned short palette_sz;
129 u32 valid_bpp;
130};
131
132/**
133 * struct s3c_fb_driverdata - per-device type driver data for init time.
134 * @variant: The variant information for this driver.
135 * @win: The window information for each window.
136 */
137struct s3c_fb_driverdata {
138 struct s3c_fb_variant variant;
139 struct s3c_fb_win_variant *win[S3C_FB_MAX_WIN];
140};
141
Ben Dooksec549a02009-03-31 15:25:39 -0700142/**
Ben Dooksbc2da1b2010-08-10 18:02:34 -0700143 * struct s3c_fb_palette - palette information
144 * @r: Red bitfield.
145 * @g: Green bitfield.
146 * @b: Blue bitfield.
147 * @a: Alpha bitfield.
148 */
149struct s3c_fb_palette {
150 struct fb_bitfield r;
151 struct fb_bitfield g;
152 struct fb_bitfield b;
153 struct fb_bitfield a;
154};
155
156/**
Ben Dooksec549a02009-03-31 15:25:39 -0700157 * struct s3c_fb_win - per window private data for each framebuffer.
158 * @windata: The platform data supplied for the window configuration.
159 * @parent: The hardware that this window is part of.
160 * @fbinfo: Pointer pack to the framebuffer info for this window.
Ben Dooks50a55032010-08-10 18:02:33 -0700161 * @varint: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -0700162 * @palette_buffer: Buffer/cache to hold palette entries.
163 * @pseudo_palette: For use in TRUECOLOUR modes for entries 0..15/
164 * @index: The window number of this window.
165 * @palette: The bitfields for changing r/g/b into a hardware palette entry.
166 */
167struct s3c_fb_win {
168 struct s3c_fb_pd_win *windata;
169 struct s3c_fb *parent;
170 struct fb_info *fbinfo;
171 struct s3c_fb_palette palette;
Ben Dooks50a55032010-08-10 18:02:33 -0700172 struct s3c_fb_win_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700173
174 u32 *palette_buffer;
175 u32 pseudo_palette[16];
176 unsigned int index;
177};
178
179/**
Pawel Osciakefdc8462010-08-10 18:02:38 -0700180 * struct s3c_fb_vsync - vsync information
181 * @wait: a queue for processes waiting for vsync
182 * @count: vsync interrupt count
183 */
184struct s3c_fb_vsync {
185 wait_queue_head_t wait;
186 unsigned int count;
187};
188
189/**
Ben Dooksec549a02009-03-31 15:25:39 -0700190 * struct s3c_fb - overall hardware state of the hardware
Jingoo Han0a109d32012-09-27 19:24:05 +0900191 * @slock: The spinlock protection for this data structure.
Ben Dooksec549a02009-03-31 15:25:39 -0700192 * @dev: The device that we bound to, for printing, etc.
Ben Dooksec549a02009-03-31 15:25:39 -0700193 * @bus_clk: The clk (hclk) feeding our interface and possibly pixclk.
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900194 * @lcd_clk: The clk (sclk) feeding pixclk.
Ben Dooksec549a02009-03-31 15:25:39 -0700195 * @regs: The mapped hardware registers.
Ben Dooks50a55032010-08-10 18:02:33 -0700196 * @variant: Variant information for this hardware.
Ben Dooksec549a02009-03-31 15:25:39 -0700197 * @enabled: A bitmask of enabled hardware windows.
Mark Brownf4f51472011-12-27 14:16:10 +0000198 * @output_on: Flag if the physical output is enabled.
Ben Dooksec549a02009-03-31 15:25:39 -0700199 * @pdata: The platform configuration data passed with the device.
200 * @windows: The hardware windows that have been claimed.
Pawel Osciakefdc8462010-08-10 18:02:38 -0700201 * @irq_no: IRQ line number
202 * @irq_flags: irq flags
203 * @vsync_info: VSYNC-related information (count, queues...)
Ben Dooksec549a02009-03-31 15:25:39 -0700204 */
205struct s3c_fb {
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000206 spinlock_t slock;
Ben Dooksec549a02009-03-31 15:25:39 -0700207 struct device *dev;
Ben Dooksec549a02009-03-31 15:25:39 -0700208 struct clk *bus_clk;
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900209 struct clk *lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -0700210 void __iomem *regs;
Ben Dooks50a55032010-08-10 18:02:33 -0700211 struct s3c_fb_variant variant;
Ben Dooksec549a02009-03-31 15:25:39 -0700212
213 unsigned char enabled;
Mark Brownf4f51472011-12-27 14:16:10 +0000214 bool output_on;
Ben Dooksec549a02009-03-31 15:25:39 -0700215
216 struct s3c_fb_platdata *pdata;
217 struct s3c_fb_win *windows[S3C_FB_MAX_WIN];
Pawel Osciakefdc8462010-08-10 18:02:38 -0700218
219 int irq_no;
220 unsigned long irq_flags;
221 struct s3c_fb_vsync vsync_info;
Ben Dooksec549a02009-03-31 15:25:39 -0700222};
223
224/**
Ben Dooks50a55032010-08-10 18:02:33 -0700225 * s3c_fb_validate_win_bpp - validate the bits-per-pixel for this mode.
226 * @win: The device window.
227 * @bpp: The bit depth.
Ben Dooksec549a02009-03-31 15:25:39 -0700228 */
Ben Dooks50a55032010-08-10 18:02:33 -0700229static bool s3c_fb_validate_win_bpp(struct s3c_fb_win *win, unsigned int bpp)
Ben Dooksec549a02009-03-31 15:25:39 -0700230{
Ben Dooks50a55032010-08-10 18:02:33 -0700231 return win->variant.valid_bpp & VALID_BPP(bpp);
Ben Dooksec549a02009-03-31 15:25:39 -0700232}
233
234/**
235 * s3c_fb_check_var() - framebuffer layer request to verify a given mode.
236 * @var: The screen information to verify.
237 * @info: The framebuffer device.
238 *
239 * Framebuffer layer call to verify the given information and allow us to
240 * update various information depending on the hardware capabilities.
241 */
242static int s3c_fb_check_var(struct fb_var_screeninfo *var,
243 struct fb_info *info)
244{
245 struct s3c_fb_win *win = info->par;
Ben Dooksec549a02009-03-31 15:25:39 -0700246 struct s3c_fb *sfb = win->parent;
247
248 dev_dbg(sfb->dev, "checking parameters\n");
249
Jingoo Han13e6af82011-06-09 04:26:38 +0000250 var->xres_virtual = max(var->xres_virtual, var->xres);
251 var->yres_virtual = max(var->yres_virtual, var->yres);
Ben Dooksec549a02009-03-31 15:25:39 -0700252
Ben Dooks50a55032010-08-10 18:02:33 -0700253 if (!s3c_fb_validate_win_bpp(win, var->bits_per_pixel)) {
Ben Dooksec549a02009-03-31 15:25:39 -0700254 dev_dbg(sfb->dev, "win %d: unsupported bpp %d\n",
255 win->index, var->bits_per_pixel);
256 return -EINVAL;
257 }
258
259 /* always ensure these are zero, for drop through cases below */
260 var->transp.offset = 0;
261 var->transp.length = 0;
262
263 switch (var->bits_per_pixel) {
264 case 1:
265 case 2:
266 case 4:
267 case 8:
Ben Dooks50a55032010-08-10 18:02:33 -0700268 if (sfb->variant.palette[win->index] != 0) {
Ben Dooksec549a02009-03-31 15:25:39 -0700269 /* non palletised, A:1,R:2,G:3,B:2 mode */
Jingoo Han5a9c30a2012-10-26 15:41:49 +0900270 var->red.offset = 5;
Ben Dooksec549a02009-03-31 15:25:39 -0700271 var->green.offset = 2;
272 var->blue.offset = 0;
Jingoo Han5a9c30a2012-10-26 15:41:49 +0900273 var->red.length = 2;
Ben Dooksec549a02009-03-31 15:25:39 -0700274 var->green.length = 3;
275 var->blue.length = 2;
276 var->transp.offset = 7;
277 var->transp.length = 1;
278 } else {
279 var->red.offset = 0;
280 var->red.length = var->bits_per_pixel;
281 var->green = var->red;
282 var->blue = var->red;
283 }
284 break;
285
286 case 19:
287 /* 666 with one bit alpha/transparency */
288 var->transp.offset = 18;
289 var->transp.length = 1;
Jingoo Hand65c6a92012-10-26 14:34:24 +0900290 /* drop through */
Ben Dooksec549a02009-03-31 15:25:39 -0700291 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");
Jingoo Han418d6202012-10-26 14:54:01 +0900332 return -EINVAL;
Ben Dooksec549a02009-03-31 15:25:39 -0700333 }
334
335 dev_dbg(sfb->dev, "%s: verified parameters\n", __func__);
336 return 0;
337}
338
339/**
340 * s3c_fb_calc_pixclk() - calculate the divider to create the pixel clock.
341 * @sfb: The hardware state.
342 * @pixclock: The pixel clock wanted, in picoseconds.
343 *
344 * Given the specified pixel clock, work out the necessary divider to get
345 * close to the output frequency.
346 */
Mark Browneb29a5c2010-01-15 17:01:40 -0800347static int s3c_fb_calc_pixclk(struct s3c_fb *sfb, unsigned int pixclk)
Ben Dooksec549a02009-03-31 15:25:39 -0700348{
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900349 unsigned long clk;
Mark Browneb29a5c2010-01-15 17:01:40 -0800350 unsigned long long tmp;
Ben Dooksec549a02009-03-31 15:25:39 -0700351 unsigned int result;
352
Jingoo Hanb5480ed2011-08-22 12:16:04 +0900353 if (sfb->variant.has_clksel)
354 clk = clk_get_rate(sfb->bus_clk);
355 else
356 clk = clk_get_rate(sfb->lcd_clk);
357
Mark Browneb29a5c2010-01-15 17:01:40 -0800358 tmp = (unsigned long long)clk;
359 tmp *= pixclk;
360
361 do_div(tmp, 1000000000UL);
362 result = (unsigned int)tmp / 1000;
Ben Dooksec549a02009-03-31 15:25:39 -0700363
364 dev_dbg(sfb->dev, "pixclk=%u, clk=%lu, div=%d (%lu)\n",
Jingoo Hanb6798952012-06-11 11:27:27 +0900365 pixclk, clk, result, result ? clk / result : clk);
Ben Dooksec549a02009-03-31 15:25:39 -0700366
367 return result;
368}
369
370/**
371 * s3c_fb_align_word() - align pixel count to word boundary
372 * @bpp: The number of bits per pixel
373 * @pix: The value to be aligned.
374 *
375 * Align the given pixel count so that it will start on an 32bit word
376 * boundary.
377 */
378static int s3c_fb_align_word(unsigned int bpp, unsigned int pix)
379{
380 int pix_per_word;
381
382 if (bpp > 16)
383 return pix;
384
385 pix_per_word = (8 * 32) / bpp;
386 return ALIGN(pix, pix_per_word);
387}
388
389/**
Pawel Osciakf676ec22010-08-10 18:02:40 -0700390 * vidosd_set_size() - set OSD size for a window
391 *
392 * @win: the window to set OSD size for
393 * @size: OSD size register value
394 */
395static void vidosd_set_size(struct s3c_fb_win *win, u32 size)
396{
397 struct s3c_fb *sfb = win->parent;
398
399 /* OSD can be set up if osd_size_off != 0 for this window */
400 if (win->variant.osd_size_off)
401 writel(size, sfb->regs + OSD_BASE(win->index, sfb->variant)
402 + win->variant.osd_size_off);
403}
404
405/**
406 * vidosd_set_alpha() - set alpha transparency for a window
407 *
408 * @win: the window to set OSD size for
409 * @alpha: alpha register value
410 */
411static void vidosd_set_alpha(struct s3c_fb_win *win, u32 alpha)
412{
413 struct s3c_fb *sfb = win->parent;
414
415 if (win->variant.has_osd_alpha)
416 writel(alpha, sfb->regs + VIDOSD_C(win->index, sfb->variant));
417}
418
419/**
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700420 * shadow_protect_win() - disable updating values from shadow registers at vsync
421 *
422 * @win: window to protect registers for
423 * @protect: 1 to protect (disable updates)
424 */
425static void shadow_protect_win(struct s3c_fb_win *win, bool protect)
426{
427 struct s3c_fb *sfb = win->parent;
428 u32 reg;
429
430 if (protect) {
431 if (sfb->variant.has_prtcon) {
432 writel(PRTCON_PROTECT, sfb->regs + PRTCON);
433 } else if (sfb->variant.has_shadowcon) {
434 reg = readl(sfb->regs + SHADOWCON);
435 writel(reg | SHADOWCON_WINx_PROTECT(win->index),
436 sfb->regs + SHADOWCON);
437 }
438 } else {
439 if (sfb->variant.has_prtcon) {
440 writel(0, sfb->regs + PRTCON);
441 } else if (sfb->variant.has_shadowcon) {
442 reg = readl(sfb->regs + SHADOWCON);
443 writel(reg & ~SHADOWCON_WINx_PROTECT(win->index),
444 sfb->regs + SHADOWCON);
445 }
446 }
447}
448
449/**
Mark Browna2b77dc2011-12-27 14:16:08 +0000450 * s3c_fb_enable() - Set the state of the main LCD output
451 * @sfb: The main framebuffer state.
452 * @enable: The state to set.
453 */
454static void s3c_fb_enable(struct s3c_fb *sfb, int enable)
455{
456 u32 vidcon0 = readl(sfb->regs + VIDCON0);
457
Mark Brownf4f51472011-12-27 14:16:10 +0000458 if (enable && !sfb->output_on)
459 pm_runtime_get_sync(sfb->dev);
460
461 if (enable) {
Mark Browna2b77dc2011-12-27 14:16:08 +0000462 vidcon0 |= VIDCON0_ENVID | VIDCON0_ENVID_F;
Mark Brownf4f51472011-12-27 14:16:10 +0000463 } else {
Mark Browna2b77dc2011-12-27 14:16:08 +0000464 /* see the note in the framebuffer datasheet about
465 * why you cannot take both of these bits down at the
466 * same time. */
467
Mark Brownf4f51472011-12-27 14:16:10 +0000468 if (vidcon0 & VIDCON0_ENVID) {
469 vidcon0 |= VIDCON0_ENVID;
470 vidcon0 &= ~VIDCON0_ENVID_F;
471 }
Mark Browna2b77dc2011-12-27 14:16:08 +0000472 }
473
474 writel(vidcon0, sfb->regs + VIDCON0);
Mark Brownf4f51472011-12-27 14:16:10 +0000475
476 if (!enable && sfb->output_on)
477 pm_runtime_put_sync(sfb->dev);
478
479 sfb->output_on = enable;
Mark Browna2b77dc2011-12-27 14:16:08 +0000480}
481
482/**
Ben Dooksec549a02009-03-31 15:25:39 -0700483 * s3c_fb_set_par() - framebuffer request to set new framebuffer state.
484 * @info: The framebuffer to change.
485 *
486 * Framebuffer layer request to set a new mode for the specified framebuffer
487 */
488static int s3c_fb_set_par(struct fb_info *info)
489{
490 struct fb_var_screeninfo *var = &info->var;
491 struct s3c_fb_win *win = info->par;
492 struct s3c_fb *sfb = win->parent;
493 void __iomem *regs = sfb->regs;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700494 void __iomem *buf = regs;
Ben Dooksec549a02009-03-31 15:25:39 -0700495 int win_no = win->index;
Pawel Osciakf676ec22010-08-10 18:02:40 -0700496 u32 alpha = 0;
Ben Dooksec549a02009-03-31 15:25:39 -0700497 u32 data;
498 u32 pagewidth;
Ben Dooksec549a02009-03-31 15:25:39 -0700499
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
Thomas Abraham3c582642012-03-24 21:58:46 +0530535 if (!sfb->output_on)
Mark Browna2b77dc2011-12-27 14:16:08 +0000536 s3c_fb_enable(sfb, 1);
537
Ben Dooksec549a02009-03-31 15:25:39 -0700538 /* write the buffer address */
539
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700540 /* start and end registers stride is 8 */
541 buf = regs + win_no * 8;
542
543 writel(info->fix.smem_start, buf + sfb->variant.buf_start);
Ben Dooksec549a02009-03-31 15:25:39 -0700544
545 data = info->fix.smem_start + info->fix.line_length * var->yres;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700546 writel(data, buf + sfb->variant.buf_end);
Ben Dooksec549a02009-03-31 15:25:39 -0700547
548 pagewidth = (var->xres * var->bits_per_pixel) >> 3;
549 data = VIDW_BUF_SIZE_OFFSET(info->fix.line_length - pagewidth) |
Jingoo Han5c447782012-03-06 15:53:41 +0900550 VIDW_BUF_SIZE_PAGEWIDTH(pagewidth) |
551 VIDW_BUF_SIZE_OFFSET_E(info->fix.line_length - pagewidth) |
552 VIDW_BUF_SIZE_PAGEWIDTH_E(pagewidth);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700553 writel(data, regs + sfb->variant.buf_size + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700554
555 /* write 'OSD' registers to control position of framebuffer */
556
Jingoo Han5c447782012-03-06 15:53:41 +0900557 data = VIDOSDxA_TOPLEFT_X(0) | VIDOSDxA_TOPLEFT_Y(0) |
558 VIDOSDxA_TOPLEFT_X_E(0) | VIDOSDxA_TOPLEFT_Y_E(0);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700559 writel(data, regs + VIDOSD_A(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700560
561 data = VIDOSDxB_BOTRIGHT_X(s3c_fb_align_word(var->bits_per_pixel,
562 var->xres - 1)) |
Jingoo Han5c447782012-03-06 15:53:41 +0900563 VIDOSDxB_BOTRIGHT_Y(var->yres - 1) |
564 VIDOSDxB_BOTRIGHT_X_E(s3c_fb_align_word(var->bits_per_pixel,
565 var->xres - 1)) |
566 VIDOSDxB_BOTRIGHT_Y_E(var->yres - 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700567
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700568 writel(data, regs + VIDOSD_B(win_no, sfb->variant));
Ben Dooksec549a02009-03-31 15:25:39 -0700569
570 data = var->xres * var->yres;
InKi Dae39000d62009-06-16 15:34:27 -0700571
Pawel Osciakf676ec22010-08-10 18:02:40 -0700572 alpha = VIDISD14C_ALPHA1_R(0xf) |
InKi Dae39000d62009-06-16 15:34:27 -0700573 VIDISD14C_ALPHA1_G(0xf) |
574 VIDISD14C_ALPHA1_B(0xf);
575
Pawel Osciakf676ec22010-08-10 18:02:40 -0700576 vidosd_set_alpha(win, alpha);
577 vidosd_set_size(win, data);
Ben Dooksec549a02009-03-31 15:25:39 -0700578
Jingoo Hanfab7c5b2011-06-09 04:26:45 +0000579 /* Enable DMA channel for this window */
580 if (sfb->variant.has_shadowcon) {
581 data = readl(sfb->regs + SHADOWCON);
582 data |= SHADOWCON_CHx_ENABLE(win_no);
583 writel(data, sfb->regs + SHADOWCON);
584 }
585
Ben Dooksec549a02009-03-31 15:25:39 -0700586 data = WINCONx_ENWIN;
Jingoo Han2d9ae7a2011-12-02 19:07:17 +0900587 sfb->enabled |= (1 << win->index);
Ben Dooksec549a02009-03-31 15:25:39 -0700588
589 /* note, since we have to round up the bits-per-pixel, we end up
590 * relying on the bitfield information for r/g/b/a to work out
591 * exactly which mode of operation is intended. */
592
593 switch (var->bits_per_pixel) {
594 case 1:
595 data |= WINCON0_BPPMODE_1BPP;
596 data |= WINCONx_BITSWP;
597 data |= WINCONx_BURSTLEN_4WORD;
598 break;
599 case 2:
600 data |= WINCON0_BPPMODE_2BPP;
601 data |= WINCONx_BITSWP;
602 data |= WINCONx_BURSTLEN_8WORD;
603 break;
604 case 4:
605 data |= WINCON0_BPPMODE_4BPP;
606 data |= WINCONx_BITSWP;
607 data |= WINCONx_BURSTLEN_8WORD;
608 break;
609 case 8:
610 if (var->transp.length != 0)
611 data |= WINCON1_BPPMODE_8BPP_1232;
612 else
613 data |= WINCON0_BPPMODE_8BPP_PALETTE;
614 data |= WINCONx_BURSTLEN_8WORD;
615 data |= WINCONx_BYTSWP;
616 break;
617 case 16:
618 if (var->transp.length != 0)
619 data |= WINCON1_BPPMODE_16BPP_A1555;
620 else
621 data |= WINCON0_BPPMODE_16BPP_565;
622 data |= WINCONx_HAWSWP;
623 data |= WINCONx_BURSTLEN_16WORD;
624 break;
625 case 24:
626 case 32:
627 if (var->red.length == 6) {
628 if (var->transp.length != 0)
629 data |= WINCON1_BPPMODE_19BPP_A1666;
630 else
631 data |= WINCON1_BPPMODE_18BPP_666;
InKi Dae39000d62009-06-16 15:34:27 -0700632 } else if (var->transp.length == 1)
633 data |= WINCON1_BPPMODE_25BPP_A1888
634 | WINCON1_BLD_PIX;
Jingoo Han4420dd22011-11-07 15:03:01 +0900635 else if ((var->transp.length == 4) ||
636 (var->transp.length == 8))
InKi Dae39000d62009-06-16 15:34:27 -0700637 data |= WINCON1_BPPMODE_28BPP_A4888
638 | WINCON1_BLD_PIX | WINCON1_ALPHA_SEL;
Ben Dooksec549a02009-03-31 15:25:39 -0700639 else
640 data |= WINCON0_BPPMODE_24BPP_888;
641
InKi Daedc8498c2010-08-10 18:02:32 -0700642 data |= WINCONx_WSWP;
Ben Dooksec549a02009-03-31 15:25:39 -0700643 data |= WINCONx_BURSTLEN_16WORD;
644 break;
645 }
646
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700647 /* Enable the colour keying for the window below this one */
InKi Dae39000d62009-06-16 15:34:27 -0700648 if (win_no > 0) {
649 u32 keycon0_data = 0, keycon1_data = 0;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700650 void __iomem *keycon = regs + sfb->variant.keycon;
InKi Dae39000d62009-06-16 15:34:27 -0700651
652 keycon0_data = ~(WxKEYCON0_KEYBL_EN |
653 WxKEYCON0_KEYEN_F |
654 WxKEYCON0_DIRCON) | WxKEYCON0_COMPKEY(0);
655
656 keycon1_data = WxKEYCON1_COLVAL(0xffffff);
657
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700658 keycon += (win_no - 1) * 8;
659
660 writel(keycon0_data, keycon + WKEYCON0);
661 writel(keycon1_data, keycon + WKEYCON1);
InKi Dae39000d62009-06-16 15:34:27 -0700662 }
663
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700664 writel(data, regs + sfb->variant.wincon + (win_no * 4));
665 writel(0x0, regs + sfb->variant.winmap + (win_no * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700666
Jingoo Hanf7f31e52012-01-27 14:47:22 +0900667 /* Set alpha value width */
668 if (sfb->variant.has_blendcon) {
669 data = readl(sfb->regs + BLENDCON);
670 data &= ~BLENDCON_NEW_MASK;
671 if (var->transp.length > 4)
672 data |= BLENDCON_NEW_8BIT_ALPHA_VALUE;
673 else
674 data |= BLENDCON_NEW_4BIT_ALPHA_VALUE;
675 writel(data, sfb->regs + BLENDCON);
676 }
677
Pawel Osciaka8bdabc2010-08-10 18:02:41 -0700678 shadow_protect_win(win, 0);
679
Mark Brown5751b232011-12-27 14:16:11 +0000680 pm_runtime_put_sync(sfb->dev);
681
Ben Dooksec549a02009-03-31 15:25:39 -0700682 return 0;
683}
684
685/**
686 * s3c_fb_update_palette() - set or schedule a palette update.
687 * @sfb: The hardware information.
688 * @win: The window being updated.
689 * @reg: The palette index being changed.
690 * @value: The computed palette value.
691 *
692 * Change the value of a palette register, either by directly writing to
693 * the palette (this requires the palette RAM to be disconnected from the
694 * hardware whilst this is in progress) or schedule the update for later.
695 *
696 * At the moment, since we have no VSYNC interrupt support, we simply set
697 * the palette entry directly.
698 */
699static void s3c_fb_update_palette(struct s3c_fb *sfb,
700 struct s3c_fb_win *win,
701 unsigned int reg,
702 u32 value)
703{
704 void __iomem *palreg;
705 u32 palcon;
706
Ben Dooks50a55032010-08-10 18:02:33 -0700707 palreg = sfb->regs + sfb->variant.palette[win->index];
Ben Dooksec549a02009-03-31 15:25:39 -0700708
709 dev_dbg(sfb->dev, "%s: win %d, reg %d (%p): %08x\n",
710 __func__, win->index, reg, palreg, value);
711
712 win->palette_buffer[reg] = value;
713
714 palcon = readl(sfb->regs + WPALCON);
715 writel(palcon | WPALCON_PAL_UPDATE, sfb->regs + WPALCON);
716
Ben Dooks50a55032010-08-10 18:02:33 -0700717 if (win->variant.palette_16bpp)
718 writew(value, palreg + (reg * 2));
Ben Dooksec549a02009-03-31 15:25:39 -0700719 else
Ben Dooks50a55032010-08-10 18:02:33 -0700720 writel(value, palreg + (reg * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700721
722 writel(palcon, sfb->regs + WPALCON);
723}
724
725static inline unsigned int chan_to_field(unsigned int chan,
726 struct fb_bitfield *bf)
727{
728 chan &= 0xffff;
729 chan >>= 16 - bf->length;
730 return chan << bf->offset;
731}
732
733/**
734 * s3c_fb_setcolreg() - framebuffer layer request to change palette.
735 * @regno: The palette index to change.
736 * @red: The red field for the palette data.
737 * @green: The green field for the palette data.
738 * @blue: The blue field for the palette data.
739 * @trans: The transparency (alpha) field for the palette data.
740 * @info: The framebuffer being changed.
741 */
742static int s3c_fb_setcolreg(unsigned regno,
743 unsigned red, unsigned green, unsigned blue,
744 unsigned transp, struct fb_info *info)
745{
746 struct s3c_fb_win *win = info->par;
747 struct s3c_fb *sfb = win->parent;
748 unsigned int val;
749
750 dev_dbg(sfb->dev, "%s: win %d: %d => rgb=%d/%d/%d\n",
751 __func__, win->index, regno, red, green, blue);
752
Mark Brown5751b232011-12-27 14:16:11 +0000753 pm_runtime_get_sync(sfb->dev);
754
Ben Dooksec549a02009-03-31 15:25:39 -0700755 switch (info->fix.visual) {
756 case FB_VISUAL_TRUECOLOR:
757 /* true-colour, use pseudo-palette */
758
759 if (regno < 16) {
760 u32 *pal = info->pseudo_palette;
761
762 val = chan_to_field(red, &info->var.red);
763 val |= chan_to_field(green, &info->var.green);
764 val |= chan_to_field(blue, &info->var.blue);
765
766 pal[regno] = val;
767 }
768 break;
769
770 case FB_VISUAL_PSEUDOCOLOR:
Ben Dooks50a55032010-08-10 18:02:33 -0700771 if (regno < win->variant.palette_sz) {
Ben Dooksec549a02009-03-31 15:25:39 -0700772 val = chan_to_field(red, &win->palette.r);
773 val |= chan_to_field(green, &win->palette.g);
774 val |= chan_to_field(blue, &win->palette.b);
775
776 s3c_fb_update_palette(sfb, win, regno, val);
777 }
778
779 break;
780
781 default:
Mark Brown5751b232011-12-27 14:16:11 +0000782 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700783 return 1; /* unknown type */
784 }
785
Mark Brown5751b232011-12-27 14:16:11 +0000786 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700787 return 0;
788}
789
790/**
Ben Dooksec549a02009-03-31 15:25:39 -0700791 * s3c_fb_blank() - blank or unblank the given window
792 * @blank_mode: The blank state from FB_BLANK_*
793 * @info: The framebuffer to blank.
794 *
795 * Framebuffer layer request to change the power state.
796 */
797static int s3c_fb_blank(int blank_mode, struct fb_info *info)
798{
799 struct s3c_fb_win *win = info->par;
800 struct s3c_fb *sfb = win->parent;
801 unsigned int index = win->index;
802 u32 wincon;
Thomas Abraham3c582642012-03-24 21:58:46 +0530803 u32 output_on = sfb->output_on;
Ben Dooksec549a02009-03-31 15:25:39 -0700804
805 dev_dbg(sfb->dev, "blank mode %d\n", blank_mode);
806
Mark Brown5751b232011-12-27 14:16:11 +0000807 pm_runtime_get_sync(sfb->dev);
808
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700809 wincon = readl(sfb->regs + sfb->variant.wincon + (index * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700810
811 switch (blank_mode) {
812 case FB_BLANK_POWERDOWN:
813 wincon &= ~WINCONx_ENWIN;
814 sfb->enabled &= ~(1 << index);
815 /* fall through to FB_BLANK_NORMAL */
816
817 case FB_BLANK_NORMAL:
818 /* disable the DMA and display 0x0 (black) */
Jingoo Hanff8c9102011-12-08 18:08:00 +0900819 shadow_protect_win(win, 1);
Ben Dooksec549a02009-03-31 15:25:39 -0700820 writel(WINxMAP_MAP | WINxMAP_MAP_COLOUR(0x0),
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700821 sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900822 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700823 break;
824
825 case FB_BLANK_UNBLANK:
Jingoo Hanff8c9102011-12-08 18:08:00 +0900826 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700827 writel(0x0, sfb->regs + sfb->variant.winmap + (index * 4));
Jingoo Hanff8c9102011-12-08 18:08:00 +0900828 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700829 wincon |= WINCONx_ENWIN;
830 sfb->enabled |= (1 << index);
831 break;
832
833 case FB_BLANK_VSYNC_SUSPEND:
834 case FB_BLANK_HSYNC_SUSPEND:
835 default:
Mark Brown5751b232011-12-27 14:16:11 +0000836 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -0700837 return 1;
838 }
839
Jingoo Hanff8c9102011-12-08 18:08:00 +0900840 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -0700841 writel(wincon, sfb->regs + sfb->variant.wincon + (index * 4));
Ben Dooksec549a02009-03-31 15:25:39 -0700842
843 /* Check the enabled state to see if we need to be running the
844 * main LCD interface, as if there are no active windows then
845 * it is highly likely that we also do not need to output
846 * anything.
847 */
Thomas Abraham3c582642012-03-24 21:58:46 +0530848 s3c_fb_enable(sfb, sfb->enabled ? 1 : 0);
849 shadow_protect_win(win, 0);
Ben Dooksec549a02009-03-31 15:25:39 -0700850
Mark Brown5751b232011-12-27 14:16:11 +0000851 pm_runtime_put_sync(sfb->dev);
852
Thomas Abraham3c582642012-03-24 21:58:46 +0530853 return output_on == sfb->output_on;
Ben Dooksec549a02009-03-31 15:25:39 -0700854}
855
Pawel Osciak067b2262010-08-10 18:02:38 -0700856/**
857 * s3c_fb_pan_display() - Pan the display.
858 *
859 * Note that the offsets can be written to the device at any time, as their
860 * values are latched at each vsync automatically. This also means that only
861 * the last call to this function will have any effect on next vsync, but
862 * there is no need to sleep waiting for it to prevent tearing.
863 *
864 * @var: The screen information to verify.
865 * @info: The framebuffer device.
866 */
867static int s3c_fb_pan_display(struct fb_var_screeninfo *var,
868 struct fb_info *info)
869{
870 struct s3c_fb_win *win = info->par;
871 struct s3c_fb *sfb = win->parent;
872 void __iomem *buf = sfb->regs + win->index * 8;
873 unsigned int start_boff, end_boff;
874
Mark Brown5751b232011-12-27 14:16:11 +0000875 pm_runtime_get_sync(sfb->dev);
876
Pawel Osciak067b2262010-08-10 18:02:38 -0700877 /* Offset in bytes to the start of the displayed area */
878 start_boff = var->yoffset * info->fix.line_length;
879 /* X offset depends on the current bpp */
880 if (info->var.bits_per_pixel >= 8) {
881 start_boff += var->xoffset * (info->var.bits_per_pixel >> 3);
882 } else {
883 switch (info->var.bits_per_pixel) {
884 case 4:
885 start_boff += var->xoffset >> 1;
886 break;
887 case 2:
888 start_boff += var->xoffset >> 2;
889 break;
890 case 1:
891 start_boff += var->xoffset >> 3;
892 break;
893 default:
894 dev_err(sfb->dev, "invalid bpp\n");
Mark Brown5751b232011-12-27 14:16:11 +0000895 pm_runtime_put_sync(sfb->dev);
Pawel Osciak067b2262010-08-10 18:02:38 -0700896 return -EINVAL;
897 }
898 }
899 /* Offset in bytes to the end of the displayed area */
Laurent Pinchartd8e7a742011-05-25 11:34:52 +0200900 end_boff = start_boff + info->var.yres * info->fix.line_length;
Pawel Osciak067b2262010-08-10 18:02:38 -0700901
902 /* Temporarily turn off per-vsync update from shadow registers until
903 * both start and end addresses are updated to prevent corruption */
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700904 shadow_protect_win(win, 1);
Pawel Osciak067b2262010-08-10 18:02:38 -0700905
906 writel(info->fix.smem_start + start_boff, buf + sfb->variant.buf_start);
907 writel(info->fix.smem_start + end_boff, buf + sfb->variant.buf_end);
908
Pawel Osciakf5ec5462010-08-10 18:02:40 -0700909 shadow_protect_win(win, 0);
Pawel Osciak067b2262010-08-10 18:02:38 -0700910
Mark Brown5751b232011-12-27 14:16:11 +0000911 pm_runtime_put_sync(sfb->dev);
Pawel Osciak067b2262010-08-10 18:02:38 -0700912 return 0;
913}
914
Pawel Osciakefdc8462010-08-10 18:02:38 -0700915/**
916 * s3c_fb_enable_irq() - enable framebuffer interrupts
917 * @sfb: main hardware state
918 */
919static void s3c_fb_enable_irq(struct s3c_fb *sfb)
920{
921 void __iomem *regs = sfb->regs;
922 u32 irq_ctrl_reg;
923
924 if (!test_and_set_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
925 /* IRQ disabled, enable it */
926 irq_ctrl_reg = readl(regs + VIDINTCON0);
927
928 irq_ctrl_reg |= VIDINTCON0_INT_ENABLE;
929 irq_ctrl_reg |= VIDINTCON0_INT_FRAME;
930
931 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL0_MASK;
932 irq_ctrl_reg |= VIDINTCON0_FRAMESEL0_VSYNC;
933 irq_ctrl_reg &= ~VIDINTCON0_FRAMESEL1_MASK;
934 irq_ctrl_reg |= VIDINTCON0_FRAMESEL1_NONE;
935
936 writel(irq_ctrl_reg, regs + VIDINTCON0);
937 }
938}
939
940/**
941 * s3c_fb_disable_irq() - disable framebuffer interrupts
942 * @sfb: main hardware state
943 */
944static void s3c_fb_disable_irq(struct s3c_fb *sfb)
945{
946 void __iomem *regs = sfb->regs;
947 u32 irq_ctrl_reg;
948
949 if (test_and_clear_bit(S3C_FB_VSYNC_IRQ_EN, &sfb->irq_flags)) {
950 /* IRQ enabled, disable it */
951 irq_ctrl_reg = readl(regs + VIDINTCON0);
952
953 irq_ctrl_reg &= ~VIDINTCON0_INT_FRAME;
954 irq_ctrl_reg &= ~VIDINTCON0_INT_ENABLE;
955
956 writel(irq_ctrl_reg, regs + VIDINTCON0);
957 }
958}
959
960static irqreturn_t s3c_fb_irq(int irq, void *dev_id)
961{
962 struct s3c_fb *sfb = dev_id;
963 void __iomem *regs = sfb->regs;
964 u32 irq_sts_reg;
965
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000966 spin_lock(&sfb->slock);
967
Pawel Osciakefdc8462010-08-10 18:02:38 -0700968 irq_sts_reg = readl(regs + VIDINTCON1);
969
970 if (irq_sts_reg & VIDINTCON1_INT_FRAME) {
971
972 /* VSYNC interrupt, accept it */
973 writel(VIDINTCON1_INT_FRAME, regs + VIDINTCON1);
974
975 sfb->vsync_info.count++;
976 wake_up_interruptible(&sfb->vsync_info.wait);
977 }
978
979 /* We only support waiting for VSYNC for now, so it's safe
980 * to always disable irqs here.
981 */
982 s3c_fb_disable_irq(sfb);
983
Jingoo Hanb07f3bbe2011-04-11 07:25:37 +0000984 spin_unlock(&sfb->slock);
Pawel Osciakefdc8462010-08-10 18:02:38 -0700985 return IRQ_HANDLED;
986}
987
988/**
989 * s3c_fb_wait_for_vsync() - sleep until next VSYNC interrupt or timeout
990 * @sfb: main hardware state
991 * @crtc: head index.
992 */
993static int s3c_fb_wait_for_vsync(struct s3c_fb *sfb, u32 crtc)
994{
995 unsigned long count;
996 int ret;
997
998 if (crtc != 0)
999 return -ENODEV;
1000
Mark Brown5751b232011-12-27 14:16:11 +00001001 pm_runtime_get_sync(sfb->dev);
1002
Pawel Osciakefdc8462010-08-10 18:02:38 -07001003 count = sfb->vsync_info.count;
1004 s3c_fb_enable_irq(sfb);
1005 ret = wait_event_interruptible_timeout(sfb->vsync_info.wait,
1006 count != sfb->vsync_info.count,
1007 msecs_to_jiffies(VSYNC_TIMEOUT_MSEC));
Mark Brown5751b232011-12-27 14:16:11 +00001008
1009 pm_runtime_put_sync(sfb->dev);
1010
Pawel Osciakefdc8462010-08-10 18:02:38 -07001011 if (ret == 0)
1012 return -ETIMEDOUT;
1013
1014 return 0;
1015}
1016
1017static int s3c_fb_ioctl(struct fb_info *info, unsigned int cmd,
1018 unsigned long arg)
1019{
1020 struct s3c_fb_win *win = info->par;
1021 struct s3c_fb *sfb = win->parent;
1022 int ret;
1023 u32 crtc;
1024
1025 switch (cmd) {
1026 case FBIO_WAITFORVSYNC:
1027 if (get_user(crtc, (u32 __user *)arg)) {
1028 ret = -EFAULT;
1029 break;
1030 }
1031
1032 ret = s3c_fb_wait_for_vsync(sfb, crtc);
1033 break;
1034 default:
1035 ret = -ENOTTY;
1036 }
1037
1038 return ret;
1039}
1040
Ben Dooksec549a02009-03-31 15:25:39 -07001041static struct fb_ops s3c_fb_ops = {
1042 .owner = THIS_MODULE,
1043 .fb_check_var = s3c_fb_check_var,
1044 .fb_set_par = s3c_fb_set_par,
1045 .fb_blank = s3c_fb_blank,
1046 .fb_setcolreg = s3c_fb_setcolreg,
1047 .fb_fillrect = cfb_fillrect,
1048 .fb_copyarea = cfb_copyarea,
1049 .fb_imageblit = cfb_imageblit,
Pawel Osciak067b2262010-08-10 18:02:38 -07001050 .fb_pan_display = s3c_fb_pan_display,
Pawel Osciakefdc8462010-08-10 18:02:38 -07001051 .fb_ioctl = s3c_fb_ioctl,
Ben Dooksec549a02009-03-31 15:25:39 -07001052};
1053
1054/**
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001055 * s3c_fb_missing_pixclock() - calculates pixel clock
1056 * @mode: The video mode to change.
1057 *
1058 * Calculate the pixel clock when none has been given through platform data.
1059 */
Mark Brown2293d622012-04-15 11:39:04 +01001060static void s3c_fb_missing_pixclock(struct fb_videomode *mode)
Maurus Cuelenaere2bb567a2010-08-10 18:02:44 -07001061{
1062 u64 pixclk = 1000000000000ULL;
1063 u32 div;
1064
1065 div = mode->left_margin + mode->hsync_len + mode->right_margin +
1066 mode->xres;
1067 div *= mode->upper_margin + mode->vsync_len + mode->lower_margin +
1068 mode->yres;
1069 div *= mode->refresh ? : 60;
1070
1071 do_div(pixclk, div);
1072
1073 mode->pixclock = pixclk;
1074}
1075
1076/**
Ben Dooksec549a02009-03-31 15:25:39 -07001077 * s3c_fb_alloc_memory() - allocate display memory for framebuffer window
1078 * @sfb: The base resources for the hardware.
1079 * @win: The window to initialise memory for.
1080 *
1081 * Allocate memory for the given framebuffer.
1082 */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001083static int s3c_fb_alloc_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
Ben Dooksec549a02009-03-31 15:25:39 -07001084{
1085 struct s3c_fb_pd_win *windata = win->windata;
1086 unsigned int real_size, virt_size, size;
1087 struct fb_info *fbi = win->fbinfo;
1088 dma_addr_t map_dma;
1089
1090 dev_dbg(sfb->dev, "allocating memory for display\n");
1091
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301092 real_size = windata->xres * windata->yres;
Ben Dooksec549a02009-03-31 15:25:39 -07001093 virt_size = windata->virtual_x * windata->virtual_y;
1094
1095 dev_dbg(sfb->dev, "real_size=%u (%u.%u), virt_size=%u (%u.%u)\n",
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301096 real_size, windata->xres, windata->yres,
Ben Dooksec549a02009-03-31 15:25:39 -07001097 virt_size, windata->virtual_x, windata->virtual_y);
1098
1099 size = (real_size > virt_size) ? real_size : virt_size;
1100 size *= (windata->max_bpp > 16) ? 32 : windata->max_bpp;
1101 size /= 8;
1102
1103 fbi->fix.smem_len = size;
1104 size = PAGE_ALIGN(size);
1105
1106 dev_dbg(sfb->dev, "want %u bytes for window\n", size);
1107
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -08001108 fbi->screen_base = dma_alloc_wc(sfb->dev, size, &map_dma, GFP_KERNEL);
Ben Dooksec549a02009-03-31 15:25:39 -07001109 if (!fbi->screen_base)
1110 return -ENOMEM;
1111
1112 dev_dbg(sfb->dev, "mapped %x to %p\n",
1113 (unsigned int)map_dma, fbi->screen_base);
1114
1115 memset(fbi->screen_base, 0x0, size);
1116 fbi->fix.smem_start = map_dma;
1117
1118 return 0;
1119}
1120
1121/**
1122 * s3c_fb_free_memory() - free the display memory for the given window
1123 * @sfb: The base resources for the hardware.
1124 * @win: The window to free the display memory for.
1125 *
1126 * Free the display memory allocated by s3c_fb_alloc_memory().
1127 */
1128static void s3c_fb_free_memory(struct s3c_fb *sfb, struct s3c_fb_win *win)
1129{
1130 struct fb_info *fbi = win->fbinfo;
1131
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001132 if (fbi->screen_base)
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -08001133 dma_free_wc(sfb->dev, PAGE_ALIGN(fbi->fix.smem_len),
1134 fbi->screen_base, fbi->fix.smem_start);
Ben Dooksec549a02009-03-31 15:25:39 -07001135}
1136
1137/**
1138 * s3c_fb_release_win() - release resources for a framebuffer window.
1139 * @win: The window to cleanup the resources for.
1140 *
1141 * Release the resources that where claimed for the hardware window,
1142 * such as the framebuffer instance and any memory claimed for it.
1143 */
1144static void s3c_fb_release_win(struct s3c_fb *sfb, struct s3c_fb_win *win)
1145{
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001146 u32 data;
1147
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001148 if (win->fbinfo) {
Pawel Osciak04ab9ef2010-08-10 18:02:43 -07001149 if (sfb->variant.has_shadowcon) {
1150 data = readl(sfb->regs + SHADOWCON);
1151 data &= ~SHADOWCON_CHx_ENABLE(win->index);
1152 data &= ~SHADOWCON_CHx_LOCAL_ENABLE(win->index);
1153 writel(data, sfb->regs + SHADOWCON);
1154 }
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001155 unregister_framebuffer(win->fbinfo);
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001156 if (win->fbinfo->cmap.len)
1157 fb_dealloc_cmap(&win->fbinfo->cmap);
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001158 s3c_fb_free_memory(sfb, win);
1159 framebuffer_release(win->fbinfo);
1160 }
Ben Dooksec549a02009-03-31 15:25:39 -07001161}
1162
1163/**
1164 * s3c_fb_probe_win() - register an hardware window
1165 * @sfb: The base resources for the hardware
Ben Dooks50a55032010-08-10 18:02:33 -07001166 * @variant: The variant information for this window.
Ben Dooksec549a02009-03-31 15:25:39 -07001167 * @res: Pointer to where to place the resultant window.
1168 *
1169 * Allocate and do the basic initialisation for one of the hardware's graphics
1170 * windows.
1171 */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001172static int s3c_fb_probe_win(struct s3c_fb *sfb, unsigned int win_no,
1173 struct s3c_fb_win_variant *variant,
1174 struct s3c_fb_win **res)
Ben Dooksec549a02009-03-31 15:25:39 -07001175{
1176 struct fb_var_screeninfo *var;
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301177 struct fb_videomode initmode;
Ben Dooksec549a02009-03-31 15:25:39 -07001178 struct s3c_fb_pd_win *windata;
1179 struct s3c_fb_win *win;
1180 struct fb_info *fbinfo;
1181 int palette_size;
1182 int ret;
1183
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001184 dev_dbg(sfb->dev, "probing window %d, variant %p\n", win_no, variant);
Ben Dooksec549a02009-03-31 15:25:39 -07001185
Pawel Osciakefdc8462010-08-10 18:02:38 -07001186 init_waitqueue_head(&sfb->vsync_info.wait);
1187
Ben Dooks50a55032010-08-10 18:02:33 -07001188 palette_size = variant->palette_sz * 4;
Ben Dooksec549a02009-03-31 15:25:39 -07001189
1190 fbinfo = framebuffer_alloc(sizeof(struct s3c_fb_win) +
1191 palette_size * sizeof(u32), sfb->dev);
1192 if (!fbinfo) {
1193 dev_err(sfb->dev, "failed to allocate framebuffer\n");
1194 return -ENOENT;
1195 }
1196
1197 windata = sfb->pdata->win[win_no];
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301198 initmode = *sfb->pdata->vtiming;
Ben Dooksec549a02009-03-31 15:25:39 -07001199
1200 WARN_ON(windata->max_bpp == 0);
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301201 WARN_ON(windata->xres == 0);
1202 WARN_ON(windata->yres == 0);
Ben Dooksec549a02009-03-31 15:25:39 -07001203
1204 win = fbinfo->par;
Pawel Osciakcd7d7e02010-08-10 18:02:35 -07001205 *res = win;
Ben Dooksec549a02009-03-31 15:25:39 -07001206 var = &fbinfo->var;
Ben Dooks50a55032010-08-10 18:02:33 -07001207 win->variant = *variant;
Ben Dooksec549a02009-03-31 15:25:39 -07001208 win->fbinfo = fbinfo;
1209 win->parent = sfb;
1210 win->windata = windata;
1211 win->index = win_no;
1212 win->palette_buffer = (u32 *)(win + 1);
1213
1214 ret = s3c_fb_alloc_memory(sfb, win);
1215 if (ret) {
1216 dev_err(sfb->dev, "failed to allocate display memory\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001217 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001218 }
1219
1220 /* setup the r/b/g positions for the window's palette */
Ben Dooksbc2da1b2010-08-10 18:02:34 -07001221 if (win->variant.palette_16bpp) {
1222 /* Set RGB 5:6:5 as default */
1223 win->palette.r.offset = 11;
1224 win->palette.r.length = 5;
1225 win->palette.g.offset = 5;
1226 win->palette.g.length = 6;
1227 win->palette.b.offset = 0;
1228 win->palette.b.length = 5;
1229
1230 } else {
1231 /* Set 8bpp or 8bpp and 1bit alpha */
1232 win->palette.r.offset = 16;
1233 win->palette.r.length = 8;
1234 win->palette.g.offset = 8;
1235 win->palette.g.length = 8;
1236 win->palette.b.offset = 0;
1237 win->palette.b.length = 8;
1238 }
Ben Dooksec549a02009-03-31 15:25:39 -07001239
1240 /* setup the initial video mode from the window */
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301241 initmode.xres = windata->xres;
1242 initmode.yres = windata->yres;
1243 fb_videomode_to_var(&fbinfo->var, &initmode);
Ben Dooksec549a02009-03-31 15:25:39 -07001244
1245 fbinfo->fix.type = FB_TYPE_PACKED_PIXELS;
1246 fbinfo->fix.accel = FB_ACCEL_NONE;
1247 fbinfo->var.activate = FB_ACTIVATE_NOW;
1248 fbinfo->var.vmode = FB_VMODE_NONINTERLACED;
1249 fbinfo->var.bits_per_pixel = windata->default_bpp;
1250 fbinfo->fbops = &s3c_fb_ops;
1251 fbinfo->flags = FBINFO_FLAG_DEFAULT;
1252 fbinfo->pseudo_palette = &win->pseudo_palette;
1253
1254 /* prepare to actually start the framebuffer */
1255
1256 ret = s3c_fb_check_var(&fbinfo->var, fbinfo);
1257 if (ret < 0) {
1258 dev_err(sfb->dev, "check_var failed on initial video params\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001259 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001260 }
1261
1262 /* create initial colour map */
1263
Ben Dooks50a55032010-08-10 18:02:33 -07001264 ret = fb_alloc_cmap(&fbinfo->cmap, win->variant.palette_sz, 1);
Ben Dooksec549a02009-03-31 15:25:39 -07001265 if (ret == 0)
1266 fb_set_cmap(&fbinfo->cmap, fbinfo);
1267 else
1268 dev_err(sfb->dev, "failed to allocate fb cmap\n");
1269
1270 s3c_fb_set_par(fbinfo);
1271
1272 dev_dbg(sfb->dev, "about to register framebuffer\n");
1273
1274 /* run the check_var and set_par on our configuration. */
1275
1276 ret = register_framebuffer(fbinfo);
1277 if (ret < 0) {
1278 dev_err(sfb->dev, "failed to register framebuffer\n");
Krzysztof Heltddc518d2009-06-16 15:34:33 -07001279 return ret;
Ben Dooksec549a02009-03-31 15:25:39 -07001280 }
1281
Ben Dooksec549a02009-03-31 15:25:39 -07001282 dev_info(sfb->dev, "window %d: fb %s\n", win_no, fbinfo->fix.id);
1283
1284 return 0;
Ben Dooksec549a02009-03-31 15:25:39 -07001285}
1286
1287/**
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301288 * s3c_fb_set_rgb_timing() - set video timing for rgb interface.
1289 * @sfb: The base resources for the hardware.
1290 *
1291 * Set horizontal and vertical lcd rgb interface timing.
1292 */
1293static void s3c_fb_set_rgb_timing(struct s3c_fb *sfb)
1294{
1295 struct fb_videomode *vmode = sfb->pdata->vtiming;
1296 void __iomem *regs = sfb->regs;
1297 int clkdiv;
1298 u32 data;
1299
1300 if (!vmode->pixclock)
1301 s3c_fb_missing_pixclock(vmode);
1302
1303 clkdiv = s3c_fb_calc_pixclk(sfb, vmode->pixclock);
1304
1305 data = sfb->pdata->vidcon0;
1306 data &= ~(VIDCON0_CLKVAL_F_MASK | VIDCON0_CLKDIR);
1307
1308 if (clkdiv > 1)
1309 data |= VIDCON0_CLKVAL_F(clkdiv-1) | VIDCON0_CLKDIR;
1310 else
1311 data &= ~VIDCON0_CLKDIR; /* 1:1 clock */
1312
1313 if (sfb->variant.is_2443)
1314 data |= (1 << 5);
1315 writel(data, regs + VIDCON0);
1316
1317 data = VIDTCON0_VBPD(vmode->upper_margin - 1) |
1318 VIDTCON0_VFPD(vmode->lower_margin - 1) |
1319 VIDTCON0_VSPW(vmode->vsync_len - 1);
1320 writel(data, regs + sfb->variant.vidtcon);
1321
1322 data = VIDTCON1_HBPD(vmode->left_margin - 1) |
1323 VIDTCON1_HFPD(vmode->right_margin - 1) |
1324 VIDTCON1_HSPW(vmode->hsync_len - 1);
1325 writel(data, regs + sfb->variant.vidtcon + 4);
1326
1327 data = VIDTCON2_LINEVAL(vmode->yres - 1) |
1328 VIDTCON2_HOZVAL(vmode->xres - 1) |
1329 VIDTCON2_LINEVAL_E(vmode->yres - 1) |
1330 VIDTCON2_HOZVAL_E(vmode->xres - 1);
1331 writel(data, regs + sfb->variant.vidtcon + 8);
1332}
1333
1334/**
Ben Dooksec549a02009-03-31 15:25:39 -07001335 * s3c_fb_clear_win() - clear hardware window registers.
1336 * @sfb: The base resources for the hardware.
1337 * @win: The window to process.
1338 *
1339 * Reset the specific window registers to a known state.
1340 */
1341static void s3c_fb_clear_win(struct s3c_fb *sfb, int win)
1342{
1343 void __iomem *regs = sfb->regs;
Pawel Osciaka8bdabc2010-08-10 18:02:41 -07001344 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001345
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001346 writel(0, regs + sfb->variant.wincon + (win * 4));
1347 writel(0, regs + VIDOSD_A(win, sfb->variant));
1348 writel(0, regs + VIDOSD_B(win, sfb->variant));
1349 writel(0, regs + VIDOSD_C(win, sfb->variant));
Jingoo Hanecd57ae2012-06-11 11:26:41 +09001350
1351 if (sfb->variant.has_shadowcon) {
1352 reg = readl(sfb->regs + SHADOWCON);
1353 reg &= ~(SHADOWCON_WINx_PROTECT(win) |
1354 SHADOWCON_CHx_ENABLE(win) |
1355 SHADOWCON_CHx_LOCAL_ENABLE(win));
1356 writel(reg, sfb->regs + SHADOWCON);
1357 }
Ben Dooksec549a02009-03-31 15:25:39 -07001358}
1359
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001360static int s3c_fb_probe(struct platform_device *pdev)
Ben Dooksec549a02009-03-31 15:25:39 -07001361{
Jingoo Hanb73a21fc2011-04-01 07:17:27 +00001362 const struct platform_device_id *platid;
Ben Dooks50a55032010-08-10 18:02:33 -07001363 struct s3c_fb_driverdata *fbdrv;
Ben Dooksec549a02009-03-31 15:25:39 -07001364 struct device *dev = &pdev->dev;
1365 struct s3c_fb_platdata *pd;
1366 struct s3c_fb *sfb;
1367 struct resource *res;
1368 int win;
1369 int ret = 0;
Jingoo Hand8b97db2012-01-27 14:47:55 +09001370 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001371
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
Jingoo Han8b4c7e52013-09-17 14:10:37 +09001380 pd = dev_get_platdata(&pdev->dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001381 if (!pd) {
1382 dev_err(dev, "no platform data specified\n");
1383 return -EINVAL;
1384 }
1385
Mark Brown857a8df2012-01-21 13:11:49 +00001386 sfb = devm_kzalloc(dev, sizeof(struct s3c_fb), GFP_KERNEL);
Ben Dooksec549a02009-03-31 15:25:39 -07001387 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
Jingoo Han77621342012-08-02 15:59:05 +09001400 sfb->bus_clk = devm_clk_get(dev, "lcd");
Ben Dooksec549a02009-03-31 15:25:39 -07001401 if (IS_ERR(sfb->bus_clk)) {
1402 dev_err(dev, "failed to get bus clock\n");
Jingoo Han77621342012-08-02 15:59:05 +09001403 return PTR_ERR(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001404 }
1405
Thomas Abraham5ce24972012-10-03 08:57:40 +09001406 clk_prepare_enable(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001407
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001408 if (!sfb->variant.has_clksel) {
Jingoo Han77621342012-08-02 15:59:05 +09001409 sfb->lcd_clk = devm_clk_get(dev, "sclk_fimd");
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001410 if (IS_ERR(sfb->lcd_clk)) {
1411 dev_err(dev, "failed to get lcd clock\n");
1412 ret = PTR_ERR(sfb->lcd_clk);
1413 goto err_bus_clk;
1414 }
1415
Thomas Abraham5ce24972012-10-03 08:57:40 +09001416 clk_prepare_enable(sfb->lcd_clk);
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001417 }
1418
Jingoo Han49592122010-12-17 16:45:46 +09001419 pm_runtime_enable(sfb->dev);
1420
Ben Dooksec549a02009-03-31 15:25:39 -07001421 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Redingbc3bad12013-01-21 11:09:23 +01001422 sfb->regs = devm_ioremap_resource(dev, res);
1423 if (IS_ERR(sfb->regs)) {
1424 ret = PTR_ERR(sfb->regs);
Mark Brown857a8df2012-01-21 13:11:49 +00001425 goto err_lcd_clk;
Ben Dooksec549a02009-03-31 15:25:39 -07001426 }
1427
Pawel Osciakefdc8462010-08-10 18:02:38 -07001428 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1429 if (!res) {
1430 dev_err(dev, "failed to acquire irq resource\n");
1431 ret = -ENOENT;
Mark Brown857a8df2012-01-21 13:11:49 +00001432 goto err_lcd_clk;
Pawel Osciakefdc8462010-08-10 18:02:38 -07001433 }
1434 sfb->irq_no = res->start;
Jingoo Han327e2762012-02-20 19:40:19 +09001435 ret = devm_request_irq(dev, sfb->irq_no, s3c_fb_irq,
Pawel Osciakefdc8462010-08-10 18:02:38 -07001436 0, "s3c_fb", sfb);
1437 if (ret) {
1438 dev_err(dev, "irq request failed\n");
Mark Brown857a8df2012-01-21 13:11:49 +00001439 goto err_lcd_clk;
Pawel Osciakefdc8462010-08-10 18:02:38 -07001440 }
1441
Ben Dooksec549a02009-03-31 15:25:39 -07001442 dev_dbg(dev, "got resources (regs %p), probing windows\n", sfb->regs);
1443
Jingoo Han49592122010-12-17 16:45:46 +09001444 platform_set_drvdata(pdev, sfb);
1445 pm_runtime_get_sync(sfb->dev);
1446
Ben Dooksec549a02009-03-31 15:25:39 -07001447 /* setup gpio and output polarity controls */
1448
1449 pd->setup_gpio();
1450
1451 writel(pd->vidcon1, sfb->regs + VIDCON1);
1452
Jingoo Hand8b97db2012-01-27 14:47:55 +09001453 /* set video clock running at under-run */
1454 if (sfb->variant.has_fixvclk) {
1455 reg = readl(sfb->regs + VIDCON1);
1456 reg &= ~VIDCON1_VCLK_MASK;
1457 reg |= VIDCON1_VCLK_RUN;
1458 writel(reg, sfb->regs + VIDCON1);
1459 }
1460
Ben Dooksec549a02009-03-31 15:25:39 -07001461 /* zero all windows before we do anything */
1462
Ben Dooks50a55032010-08-10 18:02:33 -07001463 for (win = 0; win < fbdrv->variant.nr_windows; win++)
Ben Dooksec549a02009-03-31 15:25:39 -07001464 s3c_fb_clear_win(sfb, win);
1465
Ben Dooks94947032010-08-10 18:02:32 -07001466 /* initialise colour key controls */
Ben Dooks50a55032010-08-10 18:02:33 -07001467 for (win = 0; win < (fbdrv->variant.nr_windows - 1); win++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001468 void __iomem *regs = sfb->regs + sfb->variant.keycon;
1469
1470 regs += (win * 8);
1471 writel(0xffffff, regs + WKEYCON0);
1472 writel(0xffffff, regs + WKEYCON1);
Ben Dooks94947032010-08-10 18:02:32 -07001473 }
1474
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301475 s3c_fb_set_rgb_timing(sfb);
1476
Ben Dooksec549a02009-03-31 15:25:39 -07001477 /* we have the register setup, start allocating framebuffers */
1478
Ben Dooks50a55032010-08-10 18:02:33 -07001479 for (win = 0; win < fbdrv->variant.nr_windows; win++) {
Ben Dooksec549a02009-03-31 15:25:39 -07001480 if (!pd->win[win])
1481 continue;
1482
Ben Dooks50a55032010-08-10 18:02:33 -07001483 ret = s3c_fb_probe_win(sfb, win, fbdrv->win[win],
1484 &sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001485 if (ret < 0) {
1486 dev_err(dev, "failed to create window %d\n", win);
1487 for (; win >= 0; win--)
1488 s3c_fb_release_win(sfb, sfb->windows[win]);
Mark Brown3500b0b2011-12-27 14:16:09 +00001489 goto err_pm_runtime;
Ben Dooksec549a02009-03-31 15:25:39 -07001490 }
1491 }
1492
1493 platform_set_drvdata(pdev, sfb);
Mark Brownfe05f8b2011-12-27 14:16:07 +00001494 pm_runtime_put_sync(sfb->dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001495
1496 return 0;
1497
Mark Brown3500b0b2011-12-27 14:16:09 +00001498err_pm_runtime:
1499 pm_runtime_put_sync(sfb->dev);
Pawel Osciakefdc8462010-08-10 18:02:38 -07001500
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001501err_lcd_clk:
Mark Brown3500b0b2011-12-27 14:16:09 +00001502 pm_runtime_disable(sfb->dev);
1503
Jingoo Han77621342012-08-02 15:59:05 +09001504 if (!sfb->variant.has_clksel)
Thomas Abraham5ce24972012-10-03 08:57:40 +09001505 clk_disable_unprepare(sfb->lcd_clk);
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001506
1507err_bus_clk:
Thomas Abraham5ce24972012-10-03 08:57:40 +09001508 clk_disable_unprepare(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001509
Ben Dooksec549a02009-03-31 15:25:39 -07001510 return ret;
1511}
1512
1513/**
1514 * s3c_fb_remove() - Cleanup on module finalisation
1515 * @pdev: The platform device we are bound to.
1516 *
1517 * Shutdown and then release all the resources that the driver allocated
1518 * on initialisation.
1519 */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001520static int s3c_fb_remove(struct platform_device *pdev)
Ben Dooksec549a02009-03-31 15:25:39 -07001521{
1522 struct s3c_fb *sfb = platform_get_drvdata(pdev);
1523 int win;
1524
Mark Brownfe05f8b2011-12-27 14:16:07 +00001525 pm_runtime_get_sync(sfb->dev);
1526
Pawel Osciakc42b1102009-07-29 15:02:10 -07001527 for (win = 0; win < S3C_FB_MAX_WIN; win++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001528 if (sfb->windows[win])
1529 s3c_fb_release_win(sfb, sfb->windows[win]);
Ben Dooksec549a02009-03-31 15:25:39 -07001530
Jingoo Han77621342012-08-02 15:59:05 +09001531 if (!sfb->variant.has_clksel)
Thomas Abraham5ce24972012-10-03 08:57:40 +09001532 clk_disable_unprepare(sfb->lcd_clk);
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001533
Thomas Abraham5ce24972012-10-03 08:57:40 +09001534 clk_disable_unprepare(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001535
Jingoo Han49592122010-12-17 16:45:46 +09001536 pm_runtime_put_sync(sfb->dev);
1537 pm_runtime_disable(sfb->dev);
1538
Ben Dooksec549a02009-03-31 15:25:39 -07001539 return 0;
1540}
1541
Mark Brownf4f51472011-12-27 14:16:10 +00001542#ifdef CONFIG_PM_SLEEP
Jingoo Han49592122010-12-17 16:45:46 +09001543static int s3c_fb_suspend(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001544{
Jingoo Hanbab8b562012-10-16 13:21:44 +09001545 struct s3c_fb *sfb = dev_get_drvdata(dev);
Ben Dooksec549a02009-03-31 15:25:39 -07001546 struct s3c_fb_win *win;
1547 int win_no;
1548
Jingoo Han4e0dd492012-04-04 15:57:44 +09001549 pm_runtime_get_sync(sfb->dev);
1550
Pawel Osciakc42b1102009-07-29 15:02:10 -07001551 for (win_no = S3C_FB_MAX_WIN - 1; win_no >= 0; win_no--) {
Ben Dooksec549a02009-03-31 15:25:39 -07001552 win = sfb->windows[win_no];
1553 if (!win)
1554 continue;
1555
1556 /* use the blank function to push into power-down */
1557 s3c_fb_blank(FB_BLANK_POWERDOWN, win->fbinfo);
1558 }
1559
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001560 if (!sfb->variant.has_clksel)
Thomas Abraham5ce24972012-10-03 08:57:40 +09001561 clk_disable_unprepare(sfb->lcd_clk);
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001562
Thomas Abraham5ce24972012-10-03 08:57:40 +09001563 clk_disable_unprepare(sfb->bus_clk);
Jingoo Han4e0dd492012-04-04 15:57:44 +09001564
1565 pm_runtime_put_sync(sfb->dev);
1566
Ben Dooksec549a02009-03-31 15:25:39 -07001567 return 0;
1568}
1569
Jingoo Han49592122010-12-17 16:45:46 +09001570static int s3c_fb_resume(struct device *dev)
Ben Dooksec549a02009-03-31 15:25:39 -07001571{
Jingoo Hanbab8b562012-10-16 13:21:44 +09001572 struct s3c_fb *sfb = dev_get_drvdata(dev);
Marek Szyprowski17663e52009-05-28 14:34:35 -07001573 struct s3c_fb_platdata *pd = sfb->pdata;
Ben Dooksec549a02009-03-31 15:25:39 -07001574 struct s3c_fb_win *win;
1575 int win_no;
Jingoo Hand8b97db2012-01-27 14:47:55 +09001576 u32 reg;
Ben Dooksec549a02009-03-31 15:25:39 -07001577
Jingoo Han4e0dd492012-04-04 15:57:44 +09001578 pm_runtime_get_sync(sfb->dev);
1579
Thomas Abraham5ce24972012-10-03 08:57:40 +09001580 clk_prepare_enable(sfb->bus_clk);
Ben Dooksec549a02009-03-31 15:25:39 -07001581
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001582 if (!sfb->variant.has_clksel)
Thomas Abraham5ce24972012-10-03 08:57:40 +09001583 clk_prepare_enable(sfb->lcd_clk);
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001584
Jingoo Han6aa96812011-05-24 08:55:31 +00001585 /* setup gpio and output polarity controls */
1586 pd->setup_gpio();
Marek Szyprowski17663e52009-05-28 14:34:35 -07001587 writel(pd->vidcon1, sfb->regs + VIDCON1);
1588
Jingoo Hand8b97db2012-01-27 14:47:55 +09001589 /* set video clock running at under-run */
1590 if (sfb->variant.has_fixvclk) {
1591 reg = readl(sfb->regs + VIDCON1);
1592 reg &= ~VIDCON1_VCLK_MASK;
1593 reg |= VIDCON1_VCLK_RUN;
1594 writel(reg, sfb->regs + VIDCON1);
1595 }
1596
Marek Szyprowski17663e52009-05-28 14:34:35 -07001597 /* zero all windows before we do anything */
Ben Dooks50a55032010-08-10 18:02:33 -07001598 for (win_no = 0; win_no < sfb->variant.nr_windows; win_no++)
Marek Szyprowski17663e52009-05-28 14:34:35 -07001599 s3c_fb_clear_win(sfb, win_no);
1600
Ben Dooks50a55032010-08-10 18:02:33 -07001601 for (win_no = 0; win_no < sfb->variant.nr_windows - 1; win_no++) {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001602 void __iomem *regs = sfb->regs + sfb->variant.keycon;
Jingoo Hanff8c9102011-12-08 18:08:00 +09001603 win = sfb->windows[win_no];
1604 if (!win)
1605 continue;
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001606
Jingoo Hanff8c9102011-12-08 18:08:00 +09001607 shadow_protect_win(win, 1);
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001608 regs += (win_no * 8);
1609 writel(0xffffff, regs + WKEYCON0);
1610 writel(0xffffff, regs + WKEYCON1);
Jingoo Hanff8c9102011-12-08 18:08:00 +09001611 shadow_protect_win(win, 0);
Ben Dooks94947032010-08-10 18:02:32 -07001612 }
1613
Thomas Abrahama4196fe2012-03-24 21:58:45 +05301614 s3c_fb_set_rgb_timing(sfb);
1615
Marek Szyprowski17663e52009-05-28 14:34:35 -07001616 /* restore framebuffers */
Ben Dooksec549a02009-03-31 15:25:39 -07001617 for (win_no = 0; win_no < S3C_FB_MAX_WIN; win_no++) {
1618 win = sfb->windows[win_no];
1619 if (!win)
1620 continue;
1621
Jingoo Hanbab8b562012-10-16 13:21:44 +09001622 dev_dbg(dev, "resuming window %d\n", win_no);
Ben Dooksec549a02009-03-31 15:25:39 -07001623 s3c_fb_set_par(win->fbinfo);
1624 }
1625
Jingoo Han4e0dd492012-04-04 15:57:44 +09001626 pm_runtime_put_sync(sfb->dev);
1627
Ben Dooksec549a02009-03-31 15:25:39 -07001628 return 0;
1629}
Ben Dooksec549a02009-03-31 15:25:39 -07001630#endif
1631
Rafael J. Wysocki739808c2014-12-13 00:42:04 +01001632#ifdef CONFIG_PM
Mark Brownf4f51472011-12-27 14:16:10 +00001633static int s3c_fb_runtime_suspend(struct device *dev)
1634{
Jingoo Hanbab8b562012-10-16 13:21:44 +09001635 struct s3c_fb *sfb = dev_get_drvdata(dev);
Mark Brownf4f51472011-12-27 14:16:10 +00001636
1637 if (!sfb->variant.has_clksel)
Thomas Abraham5ce24972012-10-03 08:57:40 +09001638 clk_disable_unprepare(sfb->lcd_clk);
Mark Brownf4f51472011-12-27 14:16:10 +00001639
Thomas Abraham5ce24972012-10-03 08:57:40 +09001640 clk_disable_unprepare(sfb->bus_clk);
Mark Brownf4f51472011-12-27 14:16:10 +00001641
1642 return 0;
1643}
1644
1645static int s3c_fb_runtime_resume(struct device *dev)
1646{
Jingoo Hanbab8b562012-10-16 13:21:44 +09001647 struct s3c_fb *sfb = dev_get_drvdata(dev);
Mark Brownf4f51472011-12-27 14:16:10 +00001648 struct s3c_fb_platdata *pd = sfb->pdata;
1649
Thomas Abraham5ce24972012-10-03 08:57:40 +09001650 clk_prepare_enable(sfb->bus_clk);
Mark Brownf4f51472011-12-27 14:16:10 +00001651
1652 if (!sfb->variant.has_clksel)
Thomas Abraham5ce24972012-10-03 08:57:40 +09001653 clk_prepare_enable(sfb->lcd_clk);
Mark Brownf4f51472011-12-27 14:16:10 +00001654
1655 /* setup gpio and output polarity controls */
1656 pd->setup_gpio();
1657 writel(pd->vidcon1, sfb->regs + VIDCON1);
1658
1659 return 0;
1660}
1661#endif
Ben Dooks50a55032010-08-10 18:02:33 -07001662
1663#define VALID_BPP124 (VALID_BPP(1) | VALID_BPP(2) | VALID_BPP(4))
1664#define VALID_BPP1248 (VALID_BPP124 | VALID_BPP(8))
1665
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001666static struct s3c_fb_win_variant s3c_fb_data_64xx_wins[] = {
Ben Dooks50a55032010-08-10 18:02:33 -07001667 [0] = {
1668 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001669 .osd_size_off = 0x8,
Ben Dooks50a55032010-08-10 18:02:33 -07001670 .palette_sz = 256,
Jingoo Hancd74eba2011-04-22 07:09:40 +00001671 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1672 VALID_BPP(18) | VALID_BPP(24)),
Ben Dooks50a55032010-08-10 18:02:33 -07001673 },
1674 [1] = {
1675 .has_osd_c = 1,
1676 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001677 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001678 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001679 .palette_sz = 256,
1680 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1681 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001682 VALID_BPP(24) | VALID_BPP(25) |
1683 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001684 },
1685 [2] = {
1686 .has_osd_c = 1,
1687 .has_osd_d = 1,
Jingoo Hanc9d503e2011-04-22 07:09:31 +00001688 .osd_size_off = 0xc,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001689 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001690 .palette_sz = 16,
1691 .palette_16bpp = 1,
1692 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1693 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001694 VALID_BPP(24) | VALID_BPP(25) |
1695 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001696 },
1697 [3] = {
1698 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001699 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001700 .palette_sz = 16,
1701 .palette_16bpp = 1,
1702 .valid_bpp = (VALID_BPP124 | VALID_BPP(16) |
1703 VALID_BPP(18) | VALID_BPP(19) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001704 VALID_BPP(24) | VALID_BPP(25) |
1705 VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001706 },
1707 [4] = {
1708 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001709 .has_osd_alpha = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001710 .palette_sz = 4,
1711 .palette_16bpp = 1,
1712 .valid_bpp = (VALID_BPP(1) | VALID_BPP(2) |
1713 VALID_BPP(16) | VALID_BPP(18) |
Jingoo Hancd74eba2011-04-22 07:09:40 +00001714 VALID_BPP(19) | VALID_BPP(24) |
1715 VALID_BPP(25) | VALID_BPP(28)),
Ben Dooks50a55032010-08-10 18:02:33 -07001716 },
1717};
1718
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001719static struct s3c_fb_win_variant s3c_fb_data_s5p_wins[] = {
1720 [0] = {
1721 .has_osd_c = 1,
1722 .osd_size_off = 0x8,
1723 .palette_sz = 256,
1724 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1725 VALID_BPP(15) | VALID_BPP(16) |
1726 VALID_BPP(18) | VALID_BPP(19) |
1727 VALID_BPP(24) | VALID_BPP(25) |
1728 VALID_BPP(32)),
1729 },
1730 [1] = {
1731 .has_osd_c = 1,
1732 .has_osd_d = 1,
1733 .osd_size_off = 0xc,
1734 .has_osd_alpha = 1,
1735 .palette_sz = 256,
1736 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1737 VALID_BPP(15) | VALID_BPP(16) |
1738 VALID_BPP(18) | VALID_BPP(19) |
1739 VALID_BPP(24) | VALID_BPP(25) |
1740 VALID_BPP(32)),
1741 },
1742 [2] = {
1743 .has_osd_c = 1,
1744 .has_osd_d = 1,
1745 .osd_size_off = 0xc,
1746 .has_osd_alpha = 1,
1747 .palette_sz = 256,
1748 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1749 VALID_BPP(15) | VALID_BPP(16) |
1750 VALID_BPP(18) | VALID_BPP(19) |
1751 VALID_BPP(24) | VALID_BPP(25) |
1752 VALID_BPP(32)),
1753 },
1754 [3] = {
1755 .has_osd_c = 1,
1756 .has_osd_alpha = 1,
1757 .palette_sz = 256,
1758 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1759 VALID_BPP(15) | VALID_BPP(16) |
1760 VALID_BPP(18) | VALID_BPP(19) |
1761 VALID_BPP(24) | VALID_BPP(25) |
1762 VALID_BPP(32)),
1763 },
1764 [4] = {
1765 .has_osd_c = 1,
1766 .has_osd_alpha = 1,
1767 .palette_sz = 256,
1768 .valid_bpp = (VALID_BPP1248 | VALID_BPP(13) |
1769 VALID_BPP(15) | VALID_BPP(16) |
1770 VALID_BPP(18) | VALID_BPP(19) |
1771 VALID_BPP(24) | VALID_BPP(25) |
1772 VALID_BPP(32)),
1773 },
1774};
1775
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001776static struct s3c_fb_driverdata s3c_fb_data_64xx = {
Ben Dooks50a55032010-08-10 18:02:33 -07001777 .variant = {
1778 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001779 .vidtcon = VIDTCON0,
1780 .wincon = WINCON(0),
1781 .winmap = WINxMAP(0),
1782 .keycon = WKEYCON,
1783 .osd = VIDOSD_BASE,
1784 .osd_stride = 16,
1785 .buf_start = VIDW_BUF_START(0),
1786 .buf_size = VIDW_BUF_SIZE(0),
1787 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001788
1789 .palette = {
1790 [0] = 0x400,
1791 [1] = 0x800,
1792 [2] = 0x300,
1793 [3] = 0x320,
1794 [4] = 0x340,
1795 },
Pawel Osciak067b2262010-08-10 18:02:38 -07001796
1797 .has_prtcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001798 .has_clksel = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001799 },
1800 .win[0] = &s3c_fb_data_64xx_wins[0],
1801 .win[1] = &s3c_fb_data_64xx_wins[1],
1802 .win[2] = &s3c_fb_data_64xx_wins[2],
1803 .win[3] = &s3c_fb_data_64xx_wins[3],
1804 .win[4] = &s3c_fb_data_64xx_wins[4],
1805};
1806
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001807static struct s3c_fb_driverdata s3c_fb_data_s5pv210 = {
Ben Dooks50a55032010-08-10 18:02:33 -07001808 .variant = {
1809 .nr_windows = 5,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001810 .vidtcon = VIDTCON0,
1811 .wincon = WINCON(0),
1812 .winmap = WINxMAP(0),
1813 .keycon = WKEYCON,
1814 .osd = VIDOSD_BASE,
1815 .osd_stride = 16,
1816 .buf_start = VIDW_BUF_START(0),
1817 .buf_size = VIDW_BUF_SIZE(0),
1818 .buf_end = VIDW_BUF_END(0),
Ben Dooks50a55032010-08-10 18:02:33 -07001819
1820 .palette = {
1821 [0] = 0x2400,
1822 [1] = 0x2800,
1823 [2] = 0x2c00,
1824 [3] = 0x3000,
1825 [4] = 0x3400,
1826 },
Pawel Osciakf5ec5462010-08-10 18:02:40 -07001827
1828 .has_shadowcon = 1,
Jingoo Hanf7f31e52012-01-27 14:47:22 +09001829 .has_blendcon = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001830 .has_clksel = 1,
Jingoo Hand8b97db2012-01-27 14:47:55 +09001831 .has_fixvclk = 1,
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001832 },
1833 .win[0] = &s3c_fb_data_s5p_wins[0],
1834 .win[1] = &s3c_fb_data_s5p_wins[1],
1835 .win[2] = &s3c_fb_data_s5p_wins[2],
1836 .win[3] = &s3c_fb_data_s5p_wins[3],
1837 .win[4] = &s3c_fb_data_s5p_wins[4],
1838};
1839
1840static struct s3c_fb_driverdata s3c_fb_data_exynos4 = {
1841 .variant = {
1842 .nr_windows = 5,
1843 .vidtcon = VIDTCON0,
1844 .wincon = WINCON(0),
1845 .winmap = WINxMAP(0),
1846 .keycon = WKEYCON,
1847 .osd = VIDOSD_BASE,
1848 .osd_stride = 16,
1849 .buf_start = VIDW_BUF_START(0),
1850 .buf_size = VIDW_BUF_SIZE(0),
1851 .buf_end = VIDW_BUF_END(0),
1852
1853 .palette = {
1854 [0] = 0x2400,
1855 [1] = 0x2800,
1856 [2] = 0x2c00,
1857 [3] = 0x3000,
1858 [4] = 0x3400,
1859 },
1860
1861 .has_shadowcon = 1,
Jingoo Hanf7f31e52012-01-27 14:47:22 +09001862 .has_blendcon = 1,
Jingoo Hand8b97db2012-01-27 14:47:55 +09001863 .has_fixvclk = 1,
Ben Dooks50a55032010-08-10 18:02:33 -07001864 },
Jingoo Hanaf4a8352011-04-22 07:09:48 +00001865 .win[0] = &s3c_fb_data_s5p_wins[0],
1866 .win[1] = &s3c_fb_data_s5p_wins[1],
1867 .win[2] = &s3c_fb_data_s5p_wins[2],
1868 .win[3] = &s3c_fb_data_s5p_wins[3],
1869 .win[4] = &s3c_fb_data_s5p_wins[4],
Ben Dooks50a55032010-08-10 18:02:33 -07001870};
1871
Jingoo Han5c447782012-03-06 15:53:41 +09001872static struct s3c_fb_driverdata s3c_fb_data_exynos5 = {
1873 .variant = {
1874 .nr_windows = 5,
Jingoo Han0b466562012-09-27 16:23:59 +09001875 .vidtcon = FIMD_V8_VIDTCON0,
Jingoo Han5c447782012-03-06 15:53:41 +09001876 .wincon = WINCON(0),
1877 .winmap = WINxMAP(0),
1878 .keycon = WKEYCON,
1879 .osd = VIDOSD_BASE,
1880 .osd_stride = 16,
1881 .buf_start = VIDW_BUF_START(0),
1882 .buf_size = VIDW_BUF_SIZE(0),
1883 .buf_end = VIDW_BUF_END(0),
1884
1885 .palette = {
1886 [0] = 0x2400,
1887 [1] = 0x2800,
1888 [2] = 0x2c00,
1889 [3] = 0x3000,
1890 [4] = 0x3400,
1891 },
1892 .has_shadowcon = 1,
1893 .has_blendcon = 1,
1894 .has_fixvclk = 1,
1895 },
1896 .win[0] = &s3c_fb_data_s5p_wins[0],
1897 .win[1] = &s3c_fb_data_s5p_wins[1],
1898 .win[2] = &s3c_fb_data_s5p_wins[2],
1899 .win[3] = &s3c_fb_data_s5p_wins[3],
1900 .win[4] = &s3c_fb_data_s5p_wins[4],
1901};
1902
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001903/* S3C2443/S3C2416 style hardware */
Marek Szyprowski8cfdcb22010-08-10 18:02:42 -07001904static struct s3c_fb_driverdata s3c_fb_data_s3c2443 = {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001905 .variant = {
1906 .nr_windows = 2,
1907 .is_2443 = 1,
1908
1909 .vidtcon = 0x08,
1910 .wincon = 0x14,
1911 .winmap = 0xd0,
1912 .keycon = 0xb0,
1913 .osd = 0x28,
1914 .osd_stride = 12,
1915 .buf_start = 0x64,
1916 .buf_size = 0x94,
1917 .buf_end = 0x7c,
1918
1919 .palette = {
1920 [0] = 0x400,
1921 [1] = 0x800,
1922 },
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001923 .has_clksel = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001924 },
1925 .win[0] = &(struct s3c_fb_win_variant) {
1926 .palette_sz = 256,
1927 .valid_bpp = VALID_BPP1248 | VALID_BPP(16) | VALID_BPP(24),
1928 },
1929 .win[1] = &(struct s3c_fb_win_variant) {
1930 .has_osd_c = 1,
Pawel Osciakf676ec22010-08-10 18:02:40 -07001931 .has_osd_alpha = 1,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001932 .palette_sz = 256,
1933 .valid_bpp = (VALID_BPP1248 | VALID_BPP(16) |
1934 VALID_BPP(18) | VALID_BPP(19) |
1935 VALID_BPP(24) | VALID_BPP(25) |
1936 VALID_BPP(28)),
1937 },
1938};
1939
Krzysztof Kozlowskib06ece92015-07-07 22:00:47 +09001940static const struct platform_device_id s3c_fb_driver_ids[] = {
Ben Dooks50a55032010-08-10 18:02:33 -07001941 {
1942 .name = "s3c-fb",
1943 .driver_data = (unsigned long)&s3c_fb_data_64xx,
1944 }, {
Pawel Osciak4e591ac2010-08-10 18:02:36 -07001945 .name = "s5pv210-fb",
1946 .driver_data = (unsigned long)&s3c_fb_data_s5pv210,
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001947 }, {
Jingoo Hanb5480ed2011-08-22 12:16:04 +09001948 .name = "exynos4-fb",
1949 .driver_data = (unsigned long)&s3c_fb_data_exynos4,
1950 }, {
Jingoo Han5c447782012-03-06 15:53:41 +09001951 .name = "exynos5-fb",
1952 .driver_data = (unsigned long)&s3c_fb_data_exynos5,
1953 }, {
Ben Dooksc4bb6ff2010-08-10 18:02:34 -07001954 .name = "s3c2443-fb",
1955 .driver_data = (unsigned long)&s3c_fb_data_s3c2443,
Ben Dooks50a55032010-08-10 18:02:33 -07001956 },
1957 {},
1958};
1959MODULE_DEVICE_TABLE(platform, s3c_fb_driver_ids);
1960
Mark Brownf4f51472011-12-27 14:16:10 +00001961static const struct dev_pm_ops s3cfb_pm_ops = {
1962 SET_SYSTEM_SLEEP_PM_OPS(s3c_fb_suspend, s3c_fb_resume)
1963 SET_RUNTIME_PM_OPS(s3c_fb_runtime_suspend, s3c_fb_runtime_resume,
1964 NULL)
1965};
Jingoo Han49592122010-12-17 16:45:46 +09001966
Ben Dooksec549a02009-03-31 15:25:39 -07001967static struct platform_driver s3c_fb_driver = {
1968 .probe = s3c_fb_probe,
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001969 .remove = s3c_fb_remove,
Ben Dooks50a55032010-08-10 18:02:33 -07001970 .id_table = s3c_fb_driver_ids,
Ben Dooksec549a02009-03-31 15:25:39 -07001971 .driver = {
1972 .name = "s3c-fb",
Mark Brownfe05f8b2011-12-27 14:16:07 +00001973 .pm = &s3cfb_pm_ops,
Ben Dooksec549a02009-03-31 15:25:39 -07001974 },
1975};
1976
Axel Lin4277f2c2011-11-26 10:25:54 +08001977module_platform_driver(s3c_fb_driver);
Ben Dooksec549a02009-03-31 15:25:39 -07001978
1979MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
1980MODULE_DESCRIPTION("Samsung S3C SoC Framebuffer driver");
1981MODULE_LICENSE("GPL");
1982MODULE_ALIAS("platform:s3c-fb");