blob: d8d461d6c90bac9a6527d6df59d8edeebb6a7f6c [file] [log] [blame]
York Sun9b53a9e2008-04-28 02:15:34 -07001/*
2 * Copyright 2008 Freescale Semiconductor, Inc. All Rights Reserved.
3 *
4 * Freescale DIU Frame Buffer device driver
5 *
6 * Authors: Hongjun Chen <hong-jun.chen@freescale.com>
7 * Paul Widmer <paul.widmer@freescale.com>
8 * Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
9 * York Sun <yorksun@freescale.com>
10 *
11 * Based on imxfb.c Copyright (C) 2004 S.Hauer, Pengutronix
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
17 *
18 */
19
20#include <linux/module.h>
21#include <linux/kernel.h>
22#include <linux/errno.h>
23#include <linux/string.h>
24#include <linux/slab.h>
25#include <linux/fb.h>
26#include <linux/init.h>
27#include <linux/dma-mapping.h>
28#include <linux/platform_device.h>
29#include <linux/interrupt.h>
30#include <linux/clk.h>
31#include <linux/uaccess.h>
32#include <linux/vmalloc.h>
Timur Tabib715f9f2011-09-28 16:19:48 -050033#include <linux/spinlock.h>
York Sun9b53a9e2008-04-28 02:15:34 -070034
York Sun9b53a9e2008-04-28 02:15:34 -070035#include <sysdev/fsl_soc.h>
Anatolij Gustschin0814a972010-07-23 04:00:36 +000036#include <linux/fsl-diu-fb.h>
Anatolij Gustschin8b856f02010-07-23 04:00:39 +000037#include "edid.h"
York Sun9b53a9e2008-04-28 02:15:34 -070038
Timur Tabiddd3d902011-12-02 17:03:27 -060039#define NUM_AOIS 5 /* 1 for plane 0, 2 for planes 1 & 2 each */
Timur Tabib715f9f2011-09-28 16:19:48 -050040
41/* HW cursor parameters */
42#define MAX_CURS 32
43
44/* INT_STATUS/INT_MASK field descriptions */
45#define INT_VSYNC 0x01 /* Vsync interrupt */
46#define INT_VSYNC_WB 0x02 /* Vsync interrupt for write back operation */
47#define INT_UNDRUN 0x04 /* Under run exception interrupt */
48#define INT_PARERR 0x08 /* Display parameters error interrupt */
49#define INT_LS_BF_VS 0x10 /* Lines before vsync. interrupt */
50
York Sun9b53a9e2008-04-28 02:15:34 -070051/*
Timur Tabi63cf8df2011-09-15 16:44:51 -050052 * List of supported video modes
53 *
Timur Tabi760af8f2011-09-28 16:19:50 -050054 * The first entry is the default video mode. The remain entries are in
55 * order if increasing resolution and frequency. The 320x240-60 mode is
56 * the initial AOI for the second and third planes.
York Sun9b53a9e2008-04-28 02:15:34 -070057 */
York Sun9b53a9e2008-04-28 02:15:34 -070058static struct fb_videomode __devinitdata fsl_diu_mode_db[] = {
59 {
York Sun9b53a9e2008-04-28 02:15:34 -070060 .refresh = 60,
61 .xres = 1024,
62 .yres = 768,
63 .pixclock = 15385,
64 .left_margin = 160,
65 .right_margin = 24,
66 .upper_margin = 29,
67 .lower_margin = 3,
68 .hsync_len = 136,
69 .vsync_len = 6,
70 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
71 .vmode = FB_VMODE_NONINTERLACED
72 },
73 {
Timur Tabi760af8f2011-09-28 16:19:50 -050074 .refresh = 60,
75 .xres = 320,
76 .yres = 240,
77 .pixclock = 79440,
78 .left_margin = 16,
79 .right_margin = 16,
80 .upper_margin = 16,
81 .lower_margin = 5,
82 .hsync_len = 48,
83 .vsync_len = 1,
84 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
85 .vmode = FB_VMODE_NONINTERLACED
86 },
87 {
88 .refresh = 60,
89 .xres = 640,
90 .yres = 480,
91 .pixclock = 39722,
92 .left_margin = 48,
93 .right_margin = 16,
94 .upper_margin = 33,
95 .lower_margin = 10,
96 .hsync_len = 96,
97 .vsync_len = 2,
98 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
99 .vmode = FB_VMODE_NONINTERLACED
100 },
101 {
102 .refresh = 72,
103 .xres = 640,
104 .yres = 480,
105 .pixclock = 32052,
106 .left_margin = 128,
107 .right_margin = 24,
108 .upper_margin = 28,
109 .lower_margin = 9,
110 .hsync_len = 40,
111 .vsync_len = 3,
112 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
113 .vmode = FB_VMODE_NONINTERLACED
114 },
115 {
116 .refresh = 75,
117 .xres = 640,
118 .yres = 480,
119 .pixclock = 31747,
120 .left_margin = 120,
121 .right_margin = 16,
122 .upper_margin = 16,
123 .lower_margin = 1,
124 .hsync_len = 64,
125 .vsync_len = 3,
126 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
127 .vmode = FB_VMODE_NONINTERLACED
128 },
129 {
130 .refresh = 90,
131 .xres = 640,
132 .yres = 480,
133 .pixclock = 25057,
134 .left_margin = 120,
135 .right_margin = 32,
136 .upper_margin = 14,
137 .lower_margin = 25,
138 .hsync_len = 40,
139 .vsync_len = 14,
140 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
141 .vmode = FB_VMODE_NONINTERLACED
142 },
143 {
144 .refresh = 100,
145 .xres = 640,
146 .yres = 480,
147 .pixclock = 22272,
148 .left_margin = 48,
149 .right_margin = 32,
150 .upper_margin = 17,
151 .lower_margin = 22,
152 .hsync_len = 128,
153 .vsync_len = 12,
154 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
155 .vmode = FB_VMODE_NONINTERLACED
156 },
157 {
158 .refresh = 60,
159 .xres = 800,
160 .yres = 480,
161 .pixclock = 33805,
162 .left_margin = 96,
163 .right_margin = 24,
164 .upper_margin = 10,
165 .lower_margin = 3,
166 .hsync_len = 72,
167 .vsync_len = 7,
168 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
169 .vmode = FB_VMODE_NONINTERLACED
170 },
171 {
172 .refresh = 60,
173 .xres = 800,
174 .yres = 600,
175 .pixclock = 25000,
176 .left_margin = 88,
177 .right_margin = 40,
178 .upper_margin = 23,
179 .lower_margin = 1,
180 .hsync_len = 128,
181 .vsync_len = 4,
182 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
183 .vmode = FB_VMODE_NONINTERLACED
184 },
185 {
186 .refresh = 60,
187 .xres = 854,
188 .yres = 480,
189 .pixclock = 31518,
190 .left_margin = 104,
191 .right_margin = 16,
192 .upper_margin = 13,
193 .lower_margin = 1,
194 .hsync_len = 88,
195 .vsync_len = 3,
196 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
197 .vmode = FB_VMODE_NONINTERLACED
198 },
199 {
York Sun9b53a9e2008-04-28 02:15:34 -0700200 .refresh = 70,
201 .xres = 1024,
202 .yres = 768,
203 .pixclock = 16886,
204 .left_margin = 3,
205 .right_margin = 3,
206 .upper_margin = 2,
207 .lower_margin = 2,
208 .hsync_len = 40,
209 .vsync_len = 18,
210 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
211 .vmode = FB_VMODE_NONINTERLACED
212 },
213 {
York Sun9b53a9e2008-04-28 02:15:34 -0700214 .refresh = 75,
215 .xres = 1024,
216 .yres = 768,
217 .pixclock = 15009,
218 .left_margin = 3,
219 .right_margin = 3,
220 .upper_margin = 2,
221 .lower_margin = 2,
222 .hsync_len = 80,
223 .vsync_len = 32,
224 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
225 .vmode = FB_VMODE_NONINTERLACED
226 },
227 {
Timur Tabi760af8f2011-09-28 16:19:50 -0500228 .refresh = 60,
229 .xres = 1280,
230 .yres = 480,
231 .pixclock = 18939,
232 .left_margin = 353,
233 .right_margin = 47,
234 .upper_margin = 39,
235 .lower_margin = 4,
236 .hsync_len = 8,
237 .vsync_len = 2,
238 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
239 .vmode = FB_VMODE_NONINTERLACED
240 },
241 {
242 .refresh = 60,
243 .xres = 1280,
244 .yres = 720,
245 .pixclock = 13426,
246 .left_margin = 192,
247 .right_margin = 64,
248 .upper_margin = 22,
249 .lower_margin = 1,
250 .hsync_len = 136,
251 .vsync_len = 3,
252 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
253 .vmode = FB_VMODE_NONINTERLACED
254 },
255 {
York Sun9b53a9e2008-04-28 02:15:34 -0700256 .refresh = 60,
257 .xres = 1280,
258 .yres = 1024,
259 .pixclock = 9375,
260 .left_margin = 38,
261 .right_margin = 128,
262 .upper_margin = 2,
263 .lower_margin = 7,
264 .hsync_len = 216,
265 .vsync_len = 37,
266 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
267 .vmode = FB_VMODE_NONINTERLACED
268 },
269 {
York Sun9b53a9e2008-04-28 02:15:34 -0700270 .refresh = 70,
271 .xres = 1280,
272 .yres = 1024,
273 .pixclock = 9380,
274 .left_margin = 6,
275 .right_margin = 6,
276 .upper_margin = 4,
277 .lower_margin = 4,
278 .hsync_len = 60,
279 .vsync_len = 94,
280 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
281 .vmode = FB_VMODE_NONINTERLACED
282 },
283 {
York Sun9b53a9e2008-04-28 02:15:34 -0700284 .refresh = 75,
285 .xres = 1280,
286 .yres = 1024,
287 .pixclock = 9380,
288 .left_margin = 6,
289 .right_margin = 6,
290 .upper_margin = 4,
291 .lower_margin = 4,
292 .hsync_len = 60,
293 .vsync_len = 15,
294 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
295 .vmode = FB_VMODE_NONINTERLACED
296 },
297 {
York Sun9b53a9e2008-04-28 02:15:34 -0700298 .refresh = 60,
Timur Tabi760af8f2011-09-28 16:19:50 -0500299 .xres = 1920,
300 .yres = 1080,
301 .pixclock = 5787,
302 .left_margin = 328,
303 .right_margin = 120,
304 .upper_margin = 34,
305 .lower_margin = 1,
306 .hsync_len = 208,
307 .vsync_len = 3,
York Sun9b53a9e2008-04-28 02:15:34 -0700308 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
309 .vmode = FB_VMODE_NONINTERLACED
310 },
311};
312
Timur Tabi760af8f2011-09-28 16:19:50 -0500313static char *fb_mode;
York Sun9b53a9e2008-04-28 02:15:34 -0700314static unsigned long default_bpp = 32;
Timur Tabi7653aaa2011-07-09 15:38:14 -0500315static enum fsl_diu_monitor_port monitor_port;
316static char *monitor_string;
York Sun9b53a9e2008-04-28 02:15:34 -0700317
318#if defined(CONFIG_NOT_COHERENT_CACHE)
319static u8 *coherence_data;
320static size_t coherence_data_size;
321static unsigned int d_cache_line_size;
322#endif
323
324static DEFINE_SPINLOCK(diu_lock);
325
Timur Tabi2572df92011-09-28 16:19:51 -0500326enum mfb_index {
327 PLANE0 = 0, /* Plane 0, only one AOI that fills the screen */
328 PLANE1_AOI0, /* Plane 1, first AOI */
329 PLANE1_AOI1, /* Plane 1, second AOI */
330 PLANE2_AOI0, /* Plane 2, first AOI */
331 PLANE2_AOI1, /* Plane 2, second AOI */
332};
333
York Sun9b53a9e2008-04-28 02:15:34 -0700334struct mfb_info {
Timur Tabi2572df92011-09-28 16:19:51 -0500335 enum mfb_index index;
York Sun9b53a9e2008-04-28 02:15:34 -0700336 char *id;
337 int registered;
York Sun9b53a9e2008-04-28 02:15:34 -0700338 unsigned long pseudo_palette[16];
339 struct diu_ad *ad;
340 int cursor_reset;
341 unsigned char g_alpha;
342 unsigned int count;
343 int x_aoi_d; /* aoi display x offset to physical screen */
344 int y_aoi_d; /* aoi display y offset to physical screen */
345 struct fsl_diu_data *parent;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +0000346 u8 *edid_data;
York Sun9b53a9e2008-04-28 02:15:34 -0700347};
348
Timur Tabiddd3d902011-12-02 17:03:27 -0600349/**
350 * struct fsl_diu_data - per-DIU data structure
351 * @dma_addr: DMA address of this structure
352 * @fsl_diu_info: fb_info objects, one per AOI
353 * @dev_attr: sysfs structure
354 * @irq: IRQ
Timur Tabiddd3d902011-12-02 17:03:27 -0600355 * @monitor_port: the monitor port this DIU is connected to
356 * @diu_reg: pointer to the DIU hardware registers
357 * @reg_lock: spinlock for register access
358 * @dummy_aoi: video buffer for the 4x4 32-bit dummy AOI
359 * dummy_ad: DIU Area Descriptor for the dummy AOI
360 * @ad[]: Area Descriptors for each real AOI
361 * @gamma: gamma color table
362 * @cursor: hardware cursor data
363 *
364 * This data structure must be allocated with 32-byte alignment, so that the
365 * internal fields can be aligned properly.
366 */
367struct fsl_diu_data {
368 dma_addr_t dma_addr;
369 struct fb_info fsl_diu_info[NUM_AOIS];
370 struct mfb_info mfb[NUM_AOIS];
371 struct device_attribute dev_attr;
372 unsigned int irq;
Timur Tabiddd3d902011-12-02 17:03:27 -0600373 enum fsl_diu_monitor_port monitor_port;
374 struct diu __iomem *diu_reg;
375 spinlock_t reg_lock;
376 u8 dummy_aoi[4 * 4 * 4];
377 struct diu_ad dummy_ad __aligned(8);
378 struct diu_ad ad[NUM_AOIS] __aligned(8);
379 u8 gamma[256 * 3] __aligned(32);
380 u8 cursor[MAX_CURS * MAX_CURS * 2] __aligned(32);
381} __aligned(32);
382
383/* Determine the DMA address of a member of the fsl_diu_data structure */
384#define DMA_ADDR(p, f) ((p)->dma_addr + offsetof(struct fsl_diu_data, f))
York Sun9b53a9e2008-04-28 02:15:34 -0700385
386static struct mfb_info mfb_template[] = {
Timur Tabi2572df92011-09-28 16:19:51 -0500387 {
388 .index = PLANE0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500389 .id = "Panel0",
390 .registered = 0,
391 .count = 0,
392 .x_aoi_d = 0,
393 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700394 },
Timur Tabi2572df92011-09-28 16:19:51 -0500395 {
396 .index = PLANE1_AOI0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500397 .id = "Panel1 AOI0",
398 .registered = 0,
399 .g_alpha = 0xff,
400 .count = 0,
401 .x_aoi_d = 0,
402 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700403 },
Timur Tabi2572df92011-09-28 16:19:51 -0500404 {
405 .index = PLANE1_AOI1,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500406 .id = "Panel1 AOI1",
407 .registered = 0,
408 .g_alpha = 0xff,
409 .count = 0,
410 .x_aoi_d = 0,
411 .y_aoi_d = 480,
York Sun9b53a9e2008-04-28 02:15:34 -0700412 },
Timur Tabi2572df92011-09-28 16:19:51 -0500413 {
414 .index = PLANE2_AOI0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500415 .id = "Panel2 AOI0",
416 .registered = 0,
417 .g_alpha = 0xff,
418 .count = 0,
419 .x_aoi_d = 640,
420 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700421 },
Timur Tabi2572df92011-09-28 16:19:51 -0500422 {
423 .index = PLANE2_AOI1,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500424 .id = "Panel2 AOI1",
425 .registered = 0,
426 .g_alpha = 0xff,
427 .count = 0,
428 .x_aoi_d = 640,
429 .y_aoi_d = 480,
York Sun9b53a9e2008-04-28 02:15:34 -0700430 },
431};
432
Timur Tabi6b51d512008-07-23 21:31:39 -0700433/**
Timur Tabi7653aaa2011-07-09 15:38:14 -0500434 * fsl_diu_name_to_port - convert a port name to a monitor port enum
435 *
436 * Takes the name of a monitor port ("dvi", "lvds", or "dlvds") and returns
437 * the enum fsl_diu_monitor_port that corresponds to that string.
438 *
439 * For compatibility with older versions, a number ("0", "1", or "2") is also
440 * supported.
441 *
442 * If the string is unknown, DVI is assumed.
443 *
444 * If the particular port is not supported by the platform, another port
445 * (platform-specific) is chosen instead.
446 */
447static enum fsl_diu_monitor_port fsl_diu_name_to_port(const char *s)
448{
449 enum fsl_diu_monitor_port port = FSL_DIU_PORT_DVI;
450 unsigned long val;
451
452 if (s) {
453 if (!strict_strtoul(s, 10, &val) && (val <= 2))
454 port = (enum fsl_diu_monitor_port) val;
455 else if (strncmp(s, "lvds", 4) == 0)
456 port = FSL_DIU_PORT_LVDS;
457 else if (strncmp(s, "dlvds", 5) == 0)
458 port = FSL_DIU_PORT_DLVDS;
459 }
460
461 return diu_ops.valid_monitor_port(port);
462}
463
464/**
Timur Tabi6b51d512008-07-23 21:31:39 -0700465 * fsl_diu_alloc - allocate memory for the DIU
466 * @size: number of bytes to allocate
467 * @param: returned physical address of memory
468 *
469 * This function allocates a physically-contiguous block of memory.
York Sun9b53a9e2008-04-28 02:15:34 -0700470 */
Timur Tabi6b51d512008-07-23 21:31:39 -0700471static void *fsl_diu_alloc(size_t size, phys_addr_t *phys)
York Sun9b53a9e2008-04-28 02:15:34 -0700472{
473 void *virt;
474
Timur Tabi6b51d512008-07-23 21:31:39 -0700475 virt = alloc_pages_exact(size, GFP_DMA | __GFP_ZERO);
Timur Tabi154152a2011-09-15 16:44:47 -0500476 if (virt)
York Sun9b53a9e2008-04-28 02:15:34 -0700477 *phys = virt_to_phys(virt);
York Sun9b53a9e2008-04-28 02:15:34 -0700478
479 return virt;
480}
481
Timur Tabi6b51d512008-07-23 21:31:39 -0700482/**
483 * fsl_diu_free - release DIU memory
484 * @virt: pointer returned by fsl_diu_alloc()
485 * @size: number of bytes allocated by fsl_diu_alloc()
486 *
487 * This function releases memory allocated by fsl_diu_alloc().
488 */
489static void fsl_diu_free(void *virt, size_t size)
York Sun9b53a9e2008-04-28 02:15:34 -0700490{
Timur Tabi6b51d512008-07-23 21:31:39 -0700491 if (virt && size)
492 free_pages_exact(virt, size);
York Sun9b53a9e2008-04-28 02:15:34 -0700493}
494
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000495/*
496 * Workaround for failed writing desc register of planes.
497 * Needed with MPC5121 DIU rev 2.0 silicon.
498 */
499void wr_reg_wa(u32 *reg, u32 val)
500{
501 do {
502 out_be32(reg, val);
503 } while (in_be32(reg) != val);
504}
505
Timur Tabi7e47c212011-09-28 16:19:52 -0500506static void fsl_diu_enable_panel(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700507{
508 struct mfb_info *pmfbi, *cmfbi, *mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -0700509 struct diu_ad *ad = mfbi->ad;
Timur Tabib7795052011-12-08 17:27:31 -0600510 struct fsl_diu_data *data = mfbi->parent;
511 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700512
Timur Tabi7e47c212011-09-28 16:19:52 -0500513 switch (mfbi->index) {
514 case PLANE0:
515 if (hw->desc[0] != ad->paddr)
516 wr_reg_wa(&hw->desc[0], ad->paddr);
517 break;
518 case PLANE1_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600519 cmfbi = &data->mfb[2];
Timur Tabi7e47c212011-09-28 16:19:52 -0500520 if (hw->desc[1] != ad->paddr) { /* AOI0 closed */
521 if (cmfbi->count > 0) /* AOI1 open */
522 ad->next_ad =
523 cpu_to_le32(cmfbi->ad->paddr);
524 else
525 ad->next_ad = 0;
526 wr_reg_wa(&hw->desc[1], ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700527 }
Timur Tabi7e47c212011-09-28 16:19:52 -0500528 break;
529 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600530 cmfbi = &data->mfb[4];
Timur Tabi7e47c212011-09-28 16:19:52 -0500531 if (hw->desc[2] != ad->paddr) { /* AOI0 closed */
532 if (cmfbi->count > 0) /* AOI1 open */
533 ad->next_ad =
534 cpu_to_le32(cmfbi->ad->paddr);
535 else
536 ad->next_ad = 0;
537 wr_reg_wa(&hw->desc[2], ad->paddr);
538 }
539 break;
540 case PLANE1_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600541 pmfbi = &data->mfb[1];
Timur Tabi7e47c212011-09-28 16:19:52 -0500542 ad->next_ad = 0;
Timur Tabib7795052011-12-08 17:27:31 -0600543 if (hw->desc[1] == data->dummy_ad.paddr)
Timur Tabi7e47c212011-09-28 16:19:52 -0500544 wr_reg_wa(&hw->desc[1], ad->paddr);
545 else /* AOI0 open */
546 pmfbi->ad->next_ad = cpu_to_le32(ad->paddr);
547 break;
548 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600549 pmfbi = &data->mfb[3];
Timur Tabi7e47c212011-09-28 16:19:52 -0500550 ad->next_ad = 0;
Timur Tabib7795052011-12-08 17:27:31 -0600551 if (hw->desc[2] == data->dummy_ad.paddr)
Timur Tabi7e47c212011-09-28 16:19:52 -0500552 wr_reg_wa(&hw->desc[2], ad->paddr);
553 else /* AOI0 was open */
554 pmfbi->ad->next_ad = cpu_to_le32(ad->paddr);
555 break;
556 }
York Sun9b53a9e2008-04-28 02:15:34 -0700557}
558
Timur Tabi2572df92011-09-28 16:19:51 -0500559static void fsl_diu_disable_panel(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700560{
561 struct mfb_info *pmfbi, *cmfbi, *mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -0700562 struct diu_ad *ad = mfbi->ad;
Timur Tabib7795052011-12-08 17:27:31 -0600563 struct fsl_diu_data *data = mfbi->parent;
564 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700565
566 switch (mfbi->index) {
Timur Tabi2572df92011-09-28 16:19:51 -0500567 case PLANE0:
Timur Tabib7795052011-12-08 17:27:31 -0600568 if (hw->desc[0] != data->dummy_ad.paddr)
569 wr_reg_wa(&hw->desc[0], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700570 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500571 case PLANE1_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600572 cmfbi = &data->mfb[2];
York Sun9b53a9e2008-04-28 02:15:34 -0700573 if (cmfbi->count > 0) /* AOI1 is open */
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000574 wr_reg_wa(&hw->desc[1], cmfbi->ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700575 /* move AOI1 to the first */
576 else /* AOI1 was closed */
Timur Tabib7795052011-12-08 17:27:31 -0600577 wr_reg_wa(&hw->desc[1], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700578 /* close AOI 0 */
579 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500580 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600581 cmfbi = &data->mfb[4];
York Sun9b53a9e2008-04-28 02:15:34 -0700582 if (cmfbi->count > 0) /* AOI1 is open */
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000583 wr_reg_wa(&hw->desc[2], cmfbi->ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700584 /* move AOI1 to the first */
585 else /* AOI1 was closed */
Timur Tabib7795052011-12-08 17:27:31 -0600586 wr_reg_wa(&hw->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700587 /* close AOI 0 */
588 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500589 case PLANE1_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600590 pmfbi = &data->mfb[1];
York Sun9b53a9e2008-04-28 02:15:34 -0700591 if (hw->desc[1] != ad->paddr) {
592 /* AOI1 is not the first in the chain */
593 if (pmfbi->count > 0)
594 /* AOI0 is open, must be the first */
595 pmfbi->ad->next_ad = 0;
596 } else /* AOI1 is the first in the chain */
Timur Tabib7795052011-12-08 17:27:31 -0600597 wr_reg_wa(&hw->desc[1], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700598 /* close AOI 1 */
599 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500600 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600601 pmfbi = &data->mfb[3];
York Sun9b53a9e2008-04-28 02:15:34 -0700602 if (hw->desc[2] != ad->paddr) {
603 /* AOI1 is not the first in the chain */
604 if (pmfbi->count > 0)
605 /* AOI0 is open, must be the first */
606 pmfbi->ad->next_ad = 0;
607 } else /* AOI1 is the first in the chain */
Timur Tabib7795052011-12-08 17:27:31 -0600608 wr_reg_wa(&hw->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700609 /* close AOI 1 */
610 break;
York Sun9b53a9e2008-04-28 02:15:34 -0700611 }
York Sun9b53a9e2008-04-28 02:15:34 -0700612}
613
614static void enable_lcdc(struct fb_info *info)
615{
York Sun9b53a9e2008-04-28 02:15:34 -0700616 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600617 struct fsl_diu_data *data = mfbi->parent;
618 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700619
Timur Tabid397e9162011-12-19 16:26:16 -0600620 out_be32(&hw->diu_mode, MFB_MODE1);
York Sun9b53a9e2008-04-28 02:15:34 -0700621}
622
623static void disable_lcdc(struct fb_info *info)
624{
York Sun9b53a9e2008-04-28 02:15:34 -0700625 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600626 struct fsl_diu_data *data = mfbi->parent;
627 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700628
Timur Tabid397e9162011-12-19 16:26:16 -0600629 out_be32(&hw->diu_mode, 0);
York Sun9b53a9e2008-04-28 02:15:34 -0700630}
631
632static void adjust_aoi_size_position(struct fb_var_screeninfo *var,
633 struct fb_info *info)
634{
635 struct mfb_info *lower_aoi_mfbi, *upper_aoi_mfbi, *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600636 struct fsl_diu_data *data = mfbi->parent;
Timur Tabi2572df92011-09-28 16:19:51 -0500637 int available_height, upper_aoi_bottom;
638 enum mfb_index index = mfbi->index;
York Sun9b53a9e2008-04-28 02:15:34 -0700639 int lower_aoi_is_open, upper_aoi_is_open;
640 __u32 base_plane_width, base_plane_height, upper_aoi_height;
641
Timur Tabib7795052011-12-08 17:27:31 -0600642 base_plane_width = data->fsl_diu_info[0].var.xres;
643 base_plane_height = data->fsl_diu_info[0].var.yres;
York Sun9b53a9e2008-04-28 02:15:34 -0700644
York Sunfdfaa48332008-08-15 00:40:29 -0700645 if (mfbi->x_aoi_d < 0)
646 mfbi->x_aoi_d = 0;
647 if (mfbi->y_aoi_d < 0)
648 mfbi->y_aoi_d = 0;
York Sun9b53a9e2008-04-28 02:15:34 -0700649 switch (index) {
Timur Tabi2572df92011-09-28 16:19:51 -0500650 case PLANE0:
York Sun9b53a9e2008-04-28 02:15:34 -0700651 if (mfbi->x_aoi_d != 0)
652 mfbi->x_aoi_d = 0;
653 if (mfbi->y_aoi_d != 0)
654 mfbi->y_aoi_d = 0;
655 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500656 case PLANE1_AOI0:
657 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600658 lower_aoi_mfbi = data->fsl_diu_info[index+1].par;
York Sun9b53a9e2008-04-28 02:15:34 -0700659 lower_aoi_is_open = lower_aoi_mfbi->count > 0 ? 1 : 0;
660 if (var->xres > base_plane_width)
661 var->xres = base_plane_width;
662 if ((mfbi->x_aoi_d + var->xres) > base_plane_width)
663 mfbi->x_aoi_d = base_plane_width - var->xres;
664
665 if (lower_aoi_is_open)
666 available_height = lower_aoi_mfbi->y_aoi_d;
667 else
668 available_height = base_plane_height;
669 if (var->yres > available_height)
670 var->yres = available_height;
671 if ((mfbi->y_aoi_d + var->yres) > available_height)
672 mfbi->y_aoi_d = available_height - var->yres;
673 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500674 case PLANE1_AOI1:
675 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600676 upper_aoi_mfbi = data->fsl_diu_info[index-1].par;
677 upper_aoi_height = data->fsl_diu_info[index-1].var.yres;
York Sun9b53a9e2008-04-28 02:15:34 -0700678 upper_aoi_bottom = upper_aoi_mfbi->y_aoi_d + upper_aoi_height;
679 upper_aoi_is_open = upper_aoi_mfbi->count > 0 ? 1 : 0;
680 if (var->xres > base_plane_width)
681 var->xres = base_plane_width;
682 if ((mfbi->x_aoi_d + var->xres) > base_plane_width)
683 mfbi->x_aoi_d = base_plane_width - var->xres;
684 if (mfbi->y_aoi_d < 0)
685 mfbi->y_aoi_d = 0;
686 if (upper_aoi_is_open) {
687 if (mfbi->y_aoi_d < upper_aoi_bottom)
688 mfbi->y_aoi_d = upper_aoi_bottom;
689 available_height = base_plane_height
690 - upper_aoi_bottom;
691 } else
692 available_height = base_plane_height;
693 if (var->yres > available_height)
694 var->yres = available_height;
695 if ((mfbi->y_aoi_d + var->yres) > base_plane_height)
696 mfbi->y_aoi_d = base_plane_height - var->yres;
697 break;
698 }
699}
700/*
701 * Checks to see if the hardware supports the state requested by var passed
702 * in. This function does not alter the hardware state! If the var passed in
703 * is slightly off by what the hardware can support then we alter the var
704 * PASSED in to what we can do. If the hardware doesn't support mode change
705 * a -EINVAL will be returned by the upper layers.
706 */
707static int fsl_diu_check_var(struct fb_var_screeninfo *var,
708 struct fb_info *info)
709{
York Sun9b53a9e2008-04-28 02:15:34 -0700710 if (var->xres_virtual < var->xres)
711 var->xres_virtual = var->xres;
712 if (var->yres_virtual < var->yres)
713 var->yres_virtual = var->yres;
714
715 if (var->xoffset < 0)
716 var->xoffset = 0;
717
718 if (var->yoffset < 0)
719 var->yoffset = 0;
720
721 if (var->xoffset + info->var.xres > info->var.xres_virtual)
722 var->xoffset = info->var.xres_virtual - info->var.xres;
723
724 if (var->yoffset + info->var.yres > info->var.yres_virtual)
725 var->yoffset = info->var.yres_virtual - info->var.yres;
726
727 if ((var->bits_per_pixel != 32) && (var->bits_per_pixel != 24) &&
728 (var->bits_per_pixel != 16))
729 var->bits_per_pixel = default_bpp;
730
731 switch (var->bits_per_pixel) {
732 case 16:
733 var->red.length = 5;
734 var->red.offset = 11;
735 var->red.msb_right = 0;
736
737 var->green.length = 6;
738 var->green.offset = 5;
739 var->green.msb_right = 0;
740
741 var->blue.length = 5;
742 var->blue.offset = 0;
743 var->blue.msb_right = 0;
744
745 var->transp.length = 0;
746 var->transp.offset = 0;
747 var->transp.msb_right = 0;
748 break;
749 case 24:
750 var->red.length = 8;
751 var->red.offset = 0;
752 var->red.msb_right = 0;
753
754 var->green.length = 8;
755 var->green.offset = 8;
756 var->green.msb_right = 0;
757
758 var->blue.length = 8;
759 var->blue.offset = 16;
760 var->blue.msb_right = 0;
761
762 var->transp.length = 0;
763 var->transp.offset = 0;
764 var->transp.msb_right = 0;
765 break;
766 case 32:
767 var->red.length = 8;
768 var->red.offset = 16;
769 var->red.msb_right = 0;
770
771 var->green.length = 8;
772 var->green.offset = 8;
773 var->green.msb_right = 0;
774
775 var->blue.length = 8;
776 var->blue.offset = 0;
777 var->blue.msb_right = 0;
778
779 var->transp.length = 8;
780 var->transp.offset = 24;
781 var->transp.msb_right = 0;
782
783 break;
784 }
York Sun9b53a9e2008-04-28 02:15:34 -0700785
786 var->height = -1;
787 var->width = -1;
788 var->grayscale = 0;
789
790 /* Copy nonstd field to/from sync for fbset usage */
791 var->sync |= var->nonstd;
792 var->nonstd |= var->sync;
793
794 adjust_aoi_size_position(var, info);
795 return 0;
796}
797
798static void set_fix(struct fb_info *info)
799{
800 struct fb_fix_screeninfo *fix = &info->fix;
801 struct fb_var_screeninfo *var = &info->var;
802 struct mfb_info *mfbi = info->par;
803
Timur Tabiec02dd22011-09-15 16:44:54 -0500804 strncpy(fix->id, mfbi->id, sizeof(fix->id));
York Sun9b53a9e2008-04-28 02:15:34 -0700805 fix->line_length = var->xres_virtual * var->bits_per_pixel / 8;
806 fix->type = FB_TYPE_PACKED_PIXELS;
807 fix->accel = FB_ACCEL_NONE;
808 fix->visual = FB_VISUAL_TRUECOLOR;
809 fix->xpanstep = 1;
810 fix->ypanstep = 1;
811}
812
813static void update_lcdc(struct fb_info *info)
814{
815 struct fb_var_screeninfo *var = &info->var;
816 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600817 struct fsl_diu_data *data = mfbi->parent;
Timur Tabi3c755b72011-10-04 19:36:51 -0500818 struct diu __iomem *hw;
York Sun9b53a9e2008-04-28 02:15:34 -0700819 int i, j;
Timur Tabiddd3d902011-12-02 17:03:27 -0600820 u8 *gamma_table_base;
York Sun9b53a9e2008-04-28 02:15:34 -0700821
822 u32 temp;
823
Timur Tabib7795052011-12-08 17:27:31 -0600824 hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700825
Timur Tabib7795052011-12-08 17:27:31 -0600826 diu_ops.set_monitor_port(data->monitor_port);
827 gamma_table_base = data->gamma;
Timur Tabiddd3d902011-12-02 17:03:27 -0600828
York Sun9b53a9e2008-04-28 02:15:34 -0700829 /* Prep for DIU init - gamma table, cursor table */
830
831 for (i = 0; i <= 2; i++)
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500832 for (j = 0; j <= 255; j++)
833 *gamma_table_base++ = j;
York Sun9b53a9e2008-04-28 02:15:34 -0700834
Timur Tabib7795052011-12-08 17:27:31 -0600835 diu_ops.set_gamma_table(data->monitor_port, data->gamma);
York Sun9b53a9e2008-04-28 02:15:34 -0700836
York Sun9b53a9e2008-04-28 02:15:34 -0700837 disable_lcdc(info);
838
839 /* Program DIU registers */
840
Timur Tabib7795052011-12-08 17:27:31 -0600841 out_be32(&hw->gamma, DMA_ADDR(data, gamma));
842 out_be32(&hw->cursor, DMA_ADDR(data, cursor));
York Sun9b53a9e2008-04-28 02:15:34 -0700843
844 out_be32(&hw->bgnd, 0x007F7F7F); /* BGND */
845 out_be32(&hw->bgnd_wb, 0); /* BGND_WB */
846 out_be32(&hw->disp_size, (var->yres << 16 | var->xres));
847 /* DISP SIZE */
York Sun9b53a9e2008-04-28 02:15:34 -0700848 out_be32(&hw->wb_size, 0); /* WB SIZE */
849 out_be32(&hw->wb_mem_addr, 0); /* WB MEM ADDR */
850
851 /* Horizontal and vertical configuration register */
852 temp = var->left_margin << 22 | /* BP_H */
853 var->hsync_len << 11 | /* PW_H */
854 var->right_margin; /* FP_H */
855
856 out_be32(&hw->hsyn_para, temp);
857
858 temp = var->upper_margin << 22 | /* BP_V */
859 var->vsync_len << 11 | /* PW_V */
860 var->lower_margin; /* FP_V */
861
862 out_be32(&hw->vsyn_para, temp);
863
York Sun9b53a9e2008-04-28 02:15:34 -0700864 diu_ops.set_pixel_clock(var->pixclock);
865
866 out_be32(&hw->syn_pol, 0); /* SYNC SIGNALS POLARITY */
867 out_be32(&hw->thresholds, 0x00037800); /* The Thresholds */
868 out_be32(&hw->int_status, 0); /* INTERRUPT STATUS */
869 out_be32(&hw->plut, 0x01F5F666);
870
871 /* Enable the DIU */
872 enable_lcdc(info);
873}
874
875static int map_video_memory(struct fb_info *info)
876{
877 phys_addr_t phys;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700878 u32 smem_len = info->fix.line_length * info->var.yres_virtual;
York Sun9b53a9e2008-04-28 02:15:34 -0700879
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700880 info->screen_base = fsl_diu_alloc(smem_len, &phys);
Anton Vorontsov05946bc2008-07-04 09:59:38 -0700881 if (info->screen_base == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -0500882 dev_err(info->dev, "unable to allocate fb memory\n");
York Sun9b53a9e2008-04-28 02:15:34 -0700883 return -ENOMEM;
884 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700885 mutex_lock(&info->mm_lock);
York Sun9b53a9e2008-04-28 02:15:34 -0700886 info->fix.smem_start = (unsigned long) phys;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700887 info->fix.smem_len = smem_len;
888 mutex_unlock(&info->mm_lock);
York Sun9b53a9e2008-04-28 02:15:34 -0700889 info->screen_size = info->fix.smem_len;
890
York Sun9b53a9e2008-04-28 02:15:34 -0700891 return 0;
892}
893
894static void unmap_video_memory(struct fb_info *info)
895{
896 fsl_diu_free(info->screen_base, info->fix.smem_len);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700897 mutex_lock(&info->mm_lock);
Anton Vorontsov05946bc2008-07-04 09:59:38 -0700898 info->screen_base = NULL;
York Sun9b53a9e2008-04-28 02:15:34 -0700899 info->fix.smem_start = 0;
900 info->fix.smem_len = 0;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700901 mutex_unlock(&info->mm_lock);
York Sun9b53a9e2008-04-28 02:15:34 -0700902}
903
904/*
York Sunae5591e2008-08-15 00:40:28 -0700905 * Using the fb_var_screeninfo in fb_info we set the aoi of this
906 * particular framebuffer. It is a light version of fsl_diu_set_par.
907 */
908static int fsl_diu_set_aoi(struct fb_info *info)
909{
910 struct fb_var_screeninfo *var = &info->var;
911 struct mfb_info *mfbi = info->par;
912 struct diu_ad *ad = mfbi->ad;
913
914 /* AOI should not be greater than display size */
915 ad->offset_xyi = cpu_to_le32((var->yoffset << 16) | var->xoffset);
916 ad->offset_xyd = cpu_to_le32((mfbi->y_aoi_d << 16) | mfbi->x_aoi_d);
917 return 0;
918}
919
920/*
York Sun9b53a9e2008-04-28 02:15:34 -0700921 * Using the fb_var_screeninfo in fb_info we set the resolution of this
922 * particular framebuffer. This function alters the fb_fix_screeninfo stored
923 * in fb_info. It does not alter var in fb_info since we are using that
924 * data. This means we depend on the data in var inside fb_info to be
925 * supported by the hardware. fsl_diu_check_var is always called before
926 * fsl_diu_set_par to ensure this.
927 */
928static int fsl_diu_set_par(struct fb_info *info)
929{
930 unsigned long len;
931 struct fb_var_screeninfo *var = &info->var;
932 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600933 struct fsl_diu_data *data = mfbi->parent;
York Sun9b53a9e2008-04-28 02:15:34 -0700934 struct diu_ad *ad = mfbi->ad;
Timur Tabi3c755b72011-10-04 19:36:51 -0500935 struct diu __iomem *hw;
York Sun9b53a9e2008-04-28 02:15:34 -0700936
Timur Tabib7795052011-12-08 17:27:31 -0600937 hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700938
939 set_fix(info);
940 mfbi->cursor_reset = 1;
941
942 len = info->var.yres_virtual * info->fix.line_length;
943 /* Alloc & dealloc each time resolution/bpp change */
944 if (len != info->fix.smem_len) {
945 if (info->fix.smem_start)
946 unmap_video_memory(info);
York Sun9b53a9e2008-04-28 02:15:34 -0700947
948 /* Memory allocation for framebuffer */
949 if (map_video_memory(info)) {
Timur Tabi154152a2011-09-15 16:44:47 -0500950 dev_err(info->dev, "unable to allocate fb memory 1\n");
York Sun9b53a9e2008-04-28 02:15:34 -0700951 return -ENOMEM;
952 }
953 }
954
Timur Tabib7795052011-12-08 17:27:31 -0600955 ad->pix_fmt = diu_ops.get_pixel_format(data->monitor_port,
Timur Tabi7653aaa2011-07-09 15:38:14 -0500956 var->bits_per_pixel);
York Sun9b53a9e2008-04-28 02:15:34 -0700957 ad->addr = cpu_to_le32(info->fix.smem_start);
York Sunae5591e2008-08-15 00:40:28 -0700958 ad->src_size_g_alpha = cpu_to_le32((var->yres_virtual << 12) |
959 var->xres_virtual) | mfbi->g_alpha;
960 /* AOI should not be greater than display size */
York Sun9b53a9e2008-04-28 02:15:34 -0700961 ad->aoi_size = cpu_to_le32((var->yres << 16) | var->xres);
York Sunae5591e2008-08-15 00:40:28 -0700962 ad->offset_xyi = cpu_to_le32((var->yoffset << 16) | var->xoffset);
York Sun9b53a9e2008-04-28 02:15:34 -0700963 ad->offset_xyd = cpu_to_le32((mfbi->y_aoi_d << 16) | mfbi->x_aoi_d);
964
965 /* Disable chroma keying function */
966 ad->ckmax_r = 0;
967 ad->ckmax_g = 0;
968 ad->ckmax_b = 0;
969
970 ad->ckmin_r = 255;
971 ad->ckmin_g = 255;
972 ad->ckmin_b = 255;
973
Timur Tabi2572df92011-09-28 16:19:51 -0500974 if (mfbi->index == PLANE0)
York Sun9b53a9e2008-04-28 02:15:34 -0700975 update_lcdc(info);
976 return 0;
977}
978
979static inline __u32 CNVT_TOHW(__u32 val, __u32 width)
980{
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500981 return ((val << width) + 0x7FFF - val) >> 16;
York Sun9b53a9e2008-04-28 02:15:34 -0700982}
983
984/*
985 * Set a single color register. The values supplied have a 16 bit magnitude
986 * which needs to be scaled in this function for the hardware. Things to take
987 * into consideration are how many color registers, if any, are supported with
988 * the current color visual. With truecolor mode no color palettes are
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300989 * supported. Here a pseudo palette is created which we store the value in
York Sun9b53a9e2008-04-28 02:15:34 -0700990 * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
991 * color palette.
992 */
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500993static int fsl_diu_setcolreg(unsigned int regno, unsigned int red,
994 unsigned int green, unsigned int blue,
995 unsigned int transp, struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700996{
997 int ret = 1;
998
999 /*
1000 * If greyscale is true, then we convert the RGB value
1001 * to greyscale no matter what visual we are using.
1002 */
1003 if (info->var.grayscale)
1004 red = green = blue = (19595 * red + 38470 * green +
1005 7471 * blue) >> 16;
1006 switch (info->fix.visual) {
1007 case FB_VISUAL_TRUECOLOR:
1008 /*
1009 * 16-bit True Colour. We encode the RGB value
1010 * according to the RGB bitfield information.
1011 */
1012 if (regno < 16) {
1013 u32 *pal = info->pseudo_palette;
1014 u32 v;
1015
1016 red = CNVT_TOHW(red, info->var.red.length);
1017 green = CNVT_TOHW(green, info->var.green.length);
1018 blue = CNVT_TOHW(blue, info->var.blue.length);
1019 transp = CNVT_TOHW(transp, info->var.transp.length);
1020
1021 v = (red << info->var.red.offset) |
1022 (green << info->var.green.offset) |
1023 (blue << info->var.blue.offset) |
1024 (transp << info->var.transp.offset);
1025
1026 pal[regno] = v;
1027 ret = 0;
1028 }
1029 break;
York Sun9b53a9e2008-04-28 02:15:34 -07001030 }
1031
1032 return ret;
1033}
1034
1035/*
1036 * Pan (or wrap, depending on the `vmode' field) the display using the
1037 * 'xoffset' and 'yoffset' fields of the 'var' structure. If the values
1038 * don't fit, return -EINVAL.
1039 */
1040static int fsl_diu_pan_display(struct fb_var_screeninfo *var,
1041 struct fb_info *info)
1042{
1043 if ((info->var.xoffset == var->xoffset) &&
1044 (info->var.yoffset == var->yoffset))
1045 return 0; /* No change, do nothing */
1046
1047 if (var->xoffset < 0 || var->yoffset < 0
1048 || var->xoffset + info->var.xres > info->var.xres_virtual
1049 || var->yoffset + info->var.yres > info->var.yres_virtual)
1050 return -EINVAL;
1051
1052 info->var.xoffset = var->xoffset;
1053 info->var.yoffset = var->yoffset;
1054
1055 if (var->vmode & FB_VMODE_YWRAP)
1056 info->var.vmode |= FB_VMODE_YWRAP;
1057 else
1058 info->var.vmode &= ~FB_VMODE_YWRAP;
1059
York Sunae5591e2008-08-15 00:40:28 -07001060 fsl_diu_set_aoi(info);
1061
York Sun9b53a9e2008-04-28 02:15:34 -07001062 return 0;
1063}
1064
York Sun9b53a9e2008-04-28 02:15:34 -07001065static int fsl_diu_ioctl(struct fb_info *info, unsigned int cmd,
1066 unsigned long arg)
1067{
1068 struct mfb_info *mfbi = info->par;
1069 struct diu_ad *ad = mfbi->ad;
1070 struct mfb_chroma_key ck;
1071 unsigned char global_alpha;
1072 struct aoi_display_offset aoi_d;
1073 __u32 pix_fmt;
1074 void __user *buf = (void __user *)arg;
1075
1076 if (!arg)
1077 return -EINVAL;
1078 switch (cmd) {
Timur Tabi36b0b1d2011-10-04 19:36:44 -05001079 case MFB_SET_PIXFMT_OLD:
1080 dev_warn(info->dev,
1081 "MFB_SET_PIXFMT value of 0x%08x is deprecated.\n",
1082 MFB_SET_PIXFMT_OLD);
York Sun9b53a9e2008-04-28 02:15:34 -07001083 case MFB_SET_PIXFMT:
1084 if (copy_from_user(&pix_fmt, buf, sizeof(pix_fmt)))
1085 return -EFAULT;
1086 ad->pix_fmt = pix_fmt;
York Sun9b53a9e2008-04-28 02:15:34 -07001087 break;
Timur Tabi36b0b1d2011-10-04 19:36:44 -05001088 case MFB_GET_PIXFMT_OLD:
1089 dev_warn(info->dev,
1090 "MFB_GET_PIXFMT value of 0x%08x is deprecated.\n",
1091 MFB_GET_PIXFMT_OLD);
York Sun9b53a9e2008-04-28 02:15:34 -07001092 case MFB_GET_PIXFMT:
1093 pix_fmt = ad->pix_fmt;
1094 if (copy_to_user(buf, &pix_fmt, sizeof(pix_fmt)))
1095 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001096 break;
1097 case MFB_SET_AOID:
1098 if (copy_from_user(&aoi_d, buf, sizeof(aoi_d)))
1099 return -EFAULT;
1100 mfbi->x_aoi_d = aoi_d.x_aoi_d;
1101 mfbi->y_aoi_d = aoi_d.y_aoi_d;
York Sun9b53a9e2008-04-28 02:15:34 -07001102 fsl_diu_check_var(&info->var, info);
York Sunae5591e2008-08-15 00:40:28 -07001103 fsl_diu_set_aoi(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001104 break;
1105 case MFB_GET_AOID:
1106 aoi_d.x_aoi_d = mfbi->x_aoi_d;
1107 aoi_d.y_aoi_d = mfbi->y_aoi_d;
1108 if (copy_to_user(buf, &aoi_d, sizeof(aoi_d)))
1109 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001110 break;
1111 case MFB_GET_ALPHA:
1112 global_alpha = mfbi->g_alpha;
1113 if (copy_to_user(buf, &global_alpha, sizeof(global_alpha)))
1114 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001115 break;
1116 case MFB_SET_ALPHA:
1117 /* set panel information */
1118 if (copy_from_user(&global_alpha, buf, sizeof(global_alpha)))
1119 return -EFAULT;
1120 ad->src_size_g_alpha = (ad->src_size_g_alpha & (~0xff)) |
1121 (global_alpha & 0xff);
1122 mfbi->g_alpha = global_alpha;
York Sun9b53a9e2008-04-28 02:15:34 -07001123 break;
1124 case MFB_SET_CHROMA_KEY:
1125 /* set panel winformation */
1126 if (copy_from_user(&ck, buf, sizeof(ck)))
1127 return -EFAULT;
1128
1129 if (ck.enable &&
1130 (ck.red_max < ck.red_min ||
1131 ck.green_max < ck.green_min ||
1132 ck.blue_max < ck.blue_min))
1133 return -EINVAL;
1134
1135 if (!ck.enable) {
1136 ad->ckmax_r = 0;
1137 ad->ckmax_g = 0;
1138 ad->ckmax_b = 0;
1139 ad->ckmin_r = 255;
1140 ad->ckmin_g = 255;
1141 ad->ckmin_b = 255;
1142 } else {
1143 ad->ckmax_r = ck.red_max;
1144 ad->ckmax_g = ck.green_max;
1145 ad->ckmax_b = ck.blue_max;
1146 ad->ckmin_r = ck.red_min;
1147 ad->ckmin_g = ck.green_min;
1148 ad->ckmin_b = ck.blue_min;
1149 }
York Sun9b53a9e2008-04-28 02:15:34 -07001150 break;
York Sun9b53a9e2008-04-28 02:15:34 -07001151 default:
Timur Tabi154152a2011-09-15 16:44:47 -05001152 dev_err(info->dev, "unknown ioctl command (0x%08X)\n", cmd);
York Sun9b53a9e2008-04-28 02:15:34 -07001153 return -ENOIOCTLCMD;
1154 }
1155
1156 return 0;
1157}
1158
1159/* turn on fb if count == 1
1160 */
1161static int fsl_diu_open(struct fb_info *info, int user)
1162{
1163 struct mfb_info *mfbi = info->par;
1164 int res = 0;
1165
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001166 /* free boot splash memory on first /dev/fb0 open */
Timur Tabi2572df92011-09-28 16:19:51 -05001167 if ((mfbi->index == PLANE0) && diu_ops.release_bootmem)
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001168 diu_ops.release_bootmem();
1169
York Sun9b53a9e2008-04-28 02:15:34 -07001170 spin_lock(&diu_lock);
1171 mfbi->count++;
1172 if (mfbi->count == 1) {
York Sun9b53a9e2008-04-28 02:15:34 -07001173 fsl_diu_check_var(&info->var, info);
1174 res = fsl_diu_set_par(info);
1175 if (res < 0)
1176 mfbi->count--;
Timur Tabi7e47c212011-09-28 16:19:52 -05001177 else
1178 fsl_diu_enable_panel(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001179 }
1180
1181 spin_unlock(&diu_lock);
1182 return res;
1183}
1184
1185/* turn off fb if count == 0
1186 */
1187static int fsl_diu_release(struct fb_info *info, int user)
1188{
1189 struct mfb_info *mfbi = info->par;
1190 int res = 0;
1191
1192 spin_lock(&diu_lock);
1193 mfbi->count--;
Timur Tabi2572df92011-09-28 16:19:51 -05001194 if (mfbi->count == 0)
1195 fsl_diu_disable_panel(info);
1196
York Sun9b53a9e2008-04-28 02:15:34 -07001197 spin_unlock(&diu_lock);
1198 return res;
1199}
1200
1201static struct fb_ops fsl_diu_ops = {
1202 .owner = THIS_MODULE,
1203 .fb_check_var = fsl_diu_check_var,
1204 .fb_set_par = fsl_diu_set_par,
1205 .fb_setcolreg = fsl_diu_setcolreg,
York Sun9b53a9e2008-04-28 02:15:34 -07001206 .fb_pan_display = fsl_diu_pan_display,
1207 .fb_fillrect = cfb_fillrect,
1208 .fb_copyarea = cfb_copyarea,
1209 .fb_imageblit = cfb_imageblit,
1210 .fb_ioctl = fsl_diu_ioctl,
1211 .fb_open = fsl_diu_open,
1212 .fb_release = fsl_diu_release,
1213};
1214
Anton Vorontsov05946bc2008-07-04 09:59:38 -07001215static int __devinit install_fb(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001216{
1217 int rc;
1218 struct mfb_info *mfbi = info->par;
1219 const char *aoi_mode, *init_aoi_mode = "320x240";
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001220 struct fb_videomode *db = fsl_diu_mode_db;
1221 unsigned int dbsize = ARRAY_SIZE(fsl_diu_mode_db);
1222 int has_default_mode = 1;
York Sun9b53a9e2008-04-28 02:15:34 -07001223
Timur Tabif934fbd2011-12-19 16:26:14 -06001224 info->var.activate = FB_ACTIVATE_NOW;
1225 info->fbops = &fsl_diu_ops;
Timur Tabi934dbee2011-12-19 16:26:15 -06001226 info->flags = FBINFO_DEFAULT | FBINFO_VIRTFB | FBINFO_PARTIAL_PAN_OK |
1227 FBINFO_READS_FAST;
Timur Tabif934fbd2011-12-19 16:26:14 -06001228 info->pseudo_palette = mfbi->pseudo_palette;
1229
1230 rc = fb_alloc_cmap(&info->cmap, 16, 0);
1231 if (rc)
1232 return rc;
York Sun9b53a9e2008-04-28 02:15:34 -07001233
Timur Tabi2572df92011-09-28 16:19:51 -05001234 if (mfbi->index == PLANE0) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001235 if (mfbi->edid_data) {
1236 /* Now build modedb from EDID */
1237 fb_edid_to_monspecs(mfbi->edid_data, &info->monspecs);
1238 fb_videomode_to_modelist(info->monspecs.modedb,
1239 info->monspecs.modedb_len,
1240 &info->modelist);
1241 db = info->monspecs.modedb;
1242 dbsize = info->monspecs.modedb_len;
1243 }
York Sun9b53a9e2008-04-28 02:15:34 -07001244 aoi_mode = fb_mode;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001245 } else {
York Sun9b53a9e2008-04-28 02:15:34 -07001246 aoi_mode = init_aoi_mode;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001247 }
Timur Tabi63cf8df2011-09-15 16:44:51 -05001248 rc = fb_find_mode(&info->var, info, aoi_mode, db, dbsize, NULL,
1249 default_bpp);
Timur Tabi154152a2011-09-15 16:44:47 -05001250 if (!rc) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001251 /*
1252 * For plane 0 we continue and look into
1253 * driver's internal modedb.
1254 */
Timur Tabi2572df92011-09-28 16:19:51 -05001255 if ((mfbi->index == PLANE0) && mfbi->edid_data)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001256 has_default_mode = 0;
1257 else
1258 return -EINVAL;
York Sun9b53a9e2008-04-28 02:15:34 -07001259 }
1260
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001261 if (!has_default_mode) {
1262 rc = fb_find_mode(&info->var, info, aoi_mode, fsl_diu_mode_db,
Timur Tabi63cf8df2011-09-15 16:44:51 -05001263 ARRAY_SIZE(fsl_diu_mode_db), NULL, default_bpp);
1264 if (rc)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001265 has_default_mode = 1;
1266 }
1267
1268 /* Still not found, use preferred mode from database if any */
1269 if (!has_default_mode && info->monspecs.modedb) {
1270 struct fb_monspecs *specs = &info->monspecs;
1271 struct fb_videomode *modedb = &specs->modedb[0];
1272
1273 /*
1274 * Get preferred timing. If not found,
1275 * first mode in database will be used.
1276 */
1277 if (specs->misc & FB_MISC_1ST_DETAIL) {
1278 int i;
1279
1280 for (i = 0; i < specs->modedb_len; i++) {
1281 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
1282 modedb = &specs->modedb[i];
1283 break;
1284 }
1285 }
1286 }
1287
1288 info->var.bits_per_pixel = default_bpp;
1289 fb_videomode_to_var(&info->var, modedb);
1290 }
1291
York Sun9b53a9e2008-04-28 02:15:34 -07001292 if (fsl_diu_check_var(&info->var, info)) {
Timur Tabi154152a2011-09-15 16:44:47 -05001293 dev_err(info->dev, "fsl_diu_check_var failed\n");
Timur Tabi589c7972011-09-15 16:44:55 -05001294 unmap_video_memory(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001295 fb_dealloc_cmap(&info->cmap);
1296 return -EINVAL;
1297 }
1298
York Sun9b53a9e2008-04-28 02:15:34 -07001299 if (register_framebuffer(info) < 0) {
Timur Tabi154152a2011-09-15 16:44:47 -05001300 dev_err(info->dev, "register_framebuffer failed\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001301 unmap_video_memory(info);
1302 fb_dealloc_cmap(&info->cmap);
1303 return -EINVAL;
1304 }
1305
1306 mfbi->registered = 1;
Timur Tabi154152a2011-09-15 16:44:47 -05001307 dev_info(info->dev, "%s registered successfully\n", mfbi->id);
York Sun9b53a9e2008-04-28 02:15:34 -07001308
1309 return 0;
1310}
1311
Anton Vorontsov05946bc2008-07-04 09:59:38 -07001312static void uninstall_fb(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001313{
1314 struct mfb_info *mfbi = info->par;
1315
1316 if (!mfbi->registered)
1317 return;
1318
Timur Tabi2572df92011-09-28 16:19:51 -05001319 if (mfbi->index == PLANE0)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001320 kfree(mfbi->edid_data);
1321
York Sun9b53a9e2008-04-28 02:15:34 -07001322 unregister_framebuffer(info);
1323 unmap_video_memory(info);
1324 if (&info->cmap)
1325 fb_dealloc_cmap(&info->cmap);
1326
1327 mfbi->registered = 0;
1328}
1329
1330static irqreturn_t fsl_diu_isr(int irq, void *dev_id)
1331{
Timur Tabi3c755b72011-10-04 19:36:51 -05001332 struct diu __iomem *hw = dev_id;
York Sun9b53a9e2008-04-28 02:15:34 -07001333 unsigned int status = in_be32(&hw->int_status);
1334
1335 if (status) {
1336 /* This is the workaround for underrun */
1337 if (status & INT_UNDRUN) {
1338 out_be32(&hw->diu_mode, 0);
York Sun9b53a9e2008-04-28 02:15:34 -07001339 udelay(1);
1340 out_be32(&hw->diu_mode, 1);
1341 }
1342#if defined(CONFIG_NOT_COHERENT_CACHE)
1343 else if (status & INT_VSYNC) {
1344 unsigned int i;
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001345
York Sun9b53a9e2008-04-28 02:15:34 -07001346 for (i = 0; i < coherence_data_size;
1347 i += d_cache_line_size)
1348 __asm__ __volatile__ (
1349 "dcbz 0, %[input]"
1350 ::[input]"r"(&coherence_data[i]));
1351 }
1352#endif
1353 return IRQ_HANDLED;
1354 }
1355 return IRQ_NONE;
1356}
1357
Timur Tabib7795052011-12-08 17:27:31 -06001358static int request_irq_local(struct fsl_diu_data *data)
York Sun9b53a9e2008-04-28 02:15:34 -07001359{
Timur Tabib7795052011-12-08 17:27:31 -06001360 struct diu __iomem *hw = data->diu_reg;
Timur Tabibada04f2011-09-15 16:44:52 -05001361 u32 ints;
York Sun9b53a9e2008-04-28 02:15:34 -07001362 int ret;
1363
York Sun9b53a9e2008-04-28 02:15:34 -07001364 /* Read to clear the status */
Timur Tabibada04f2011-09-15 16:44:52 -05001365 in_be32(&hw->int_status);
York Sun9b53a9e2008-04-28 02:15:34 -07001366
Timur Tabib7795052011-12-08 17:27:31 -06001367 ret = request_irq(data->irq, fsl_diu_isr, 0, "fsl-diu-fb", hw);
Timur Tabi154152a2011-09-15 16:44:47 -05001368 if (!ret) {
York Sun9b53a9e2008-04-28 02:15:34 -07001369 ints = INT_PARERR | INT_LS_BF_VS;
1370#if !defined(CONFIG_NOT_COHERENT_CACHE)
1371 ints |= INT_VSYNC;
1372#endif
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001373
York Sun9b53a9e2008-04-28 02:15:34 -07001374 /* Read to clear the status */
Timur Tabibada04f2011-09-15 16:44:52 -05001375 in_be32(&hw->int_status);
York Sun9b53a9e2008-04-28 02:15:34 -07001376 out_be32(&hw->int_mask, ints);
1377 }
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001378
York Sun9b53a9e2008-04-28 02:15:34 -07001379 return ret;
1380}
1381
Timur Tabib7795052011-12-08 17:27:31 -06001382static void free_irq_local(struct fsl_diu_data *data)
York Sun9b53a9e2008-04-28 02:15:34 -07001383{
Timur Tabib7795052011-12-08 17:27:31 -06001384 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -07001385
1386 /* Disable all LCDC interrupt */
1387 out_be32(&hw->int_mask, 0x1f);
1388
Timur Tabib7795052011-12-08 17:27:31 -06001389 free_irq(data->irq, NULL);
York Sun9b53a9e2008-04-28 02:15:34 -07001390}
1391
1392#ifdef CONFIG_PM
1393/*
1394 * Power management hooks. Note that we won't be called from IRQ context,
1395 * unlike the blank functions above, so we may sleep.
1396 */
Grant Likely2dc11582010-08-06 09:25:50 -06001397static int fsl_diu_suspend(struct platform_device *ofdev, pm_message_t state)
York Sun9b53a9e2008-04-28 02:15:34 -07001398{
Timur Tabib7795052011-12-08 17:27:31 -06001399 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001400
Timur Tabib7795052011-12-08 17:27:31 -06001401 data = dev_get_drvdata(&ofdev->dev);
1402 disable_lcdc(data->fsl_diu_info[0]);
York Sun9b53a9e2008-04-28 02:15:34 -07001403
1404 return 0;
1405}
1406
Grant Likely2dc11582010-08-06 09:25:50 -06001407static int fsl_diu_resume(struct platform_device *ofdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001408{
Timur Tabib7795052011-12-08 17:27:31 -06001409 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001410
Timur Tabib7795052011-12-08 17:27:31 -06001411 data = dev_get_drvdata(&ofdev->dev);
1412 enable_lcdc(data->fsl_diu_info[0]);
York Sun9b53a9e2008-04-28 02:15:34 -07001413
1414 return 0;
1415}
1416
1417#else
1418#define fsl_diu_suspend NULL
1419#define fsl_diu_resume NULL
1420#endif /* CONFIG_PM */
1421
York Sun9b53a9e2008-04-28 02:15:34 -07001422static ssize_t store_monitor(struct device *device,
1423 struct device_attribute *attr, const char *buf, size_t count)
1424{
Timur Tabi7653aaa2011-07-09 15:38:14 -05001425 enum fsl_diu_monitor_port old_monitor_port;
Timur Tabib7795052011-12-08 17:27:31 -06001426 struct fsl_diu_data *data =
York Sun9b53a9e2008-04-28 02:15:34 -07001427 container_of(attr, struct fsl_diu_data, dev_attr);
1428
Timur Tabib7795052011-12-08 17:27:31 -06001429 old_monitor_port = data->monitor_port;
1430 data->monitor_port = fsl_diu_name_to_port(buf);
York Sun9b53a9e2008-04-28 02:15:34 -07001431
Timur Tabib7795052011-12-08 17:27:31 -06001432 if (old_monitor_port != data->monitor_port) {
York Sun9b53a9e2008-04-28 02:15:34 -07001433 /* All AOIs need adjust pixel format
1434 * fsl_diu_set_par only change the pixsel format here
1435 * unlikely to fail. */
Timur Tabiddd3d902011-12-02 17:03:27 -06001436 unsigned int i;
1437
1438 for (i=0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001439 fsl_diu_set_par(&data->fsl_diu_info[i]);
York Sun9b53a9e2008-04-28 02:15:34 -07001440 }
1441 return count;
1442}
1443
1444static ssize_t show_monitor(struct device *device,
1445 struct device_attribute *attr, char *buf)
1446{
Timur Tabib7795052011-12-08 17:27:31 -06001447 struct fsl_diu_data *data =
York Sun9b53a9e2008-04-28 02:15:34 -07001448 container_of(attr, struct fsl_diu_data, dev_attr);
Timur Tabi7653aaa2011-07-09 15:38:14 -05001449
Timur Tabib7795052011-12-08 17:27:31 -06001450 switch (data->monitor_port) {
Timur Tabi7653aaa2011-07-09 15:38:14 -05001451 case FSL_DIU_PORT_DVI:
1452 return sprintf(buf, "DVI\n");
1453 case FSL_DIU_PORT_LVDS:
1454 return sprintf(buf, "Single-link LVDS\n");
1455 case FSL_DIU_PORT_DLVDS:
1456 return sprintf(buf, "Dual-link LVDS\n");
1457 }
1458
1459 return 0;
York Sun9b53a9e2008-04-28 02:15:34 -07001460}
1461
Timur Tabi9e52ba62011-09-15 16:44:50 -05001462static int __devinit fsl_diu_probe(struct platform_device *pdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001463{
Timur Tabi9e52ba62011-09-15 16:44:50 -05001464 struct device_node *np = pdev->dev.of_node;
York Sun9b53a9e2008-04-28 02:15:34 -07001465 struct mfb_info *mfbi;
Timur Tabib7795052011-12-08 17:27:31 -06001466 struct fsl_diu_data *data;
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001467 int diu_mode;
Timur Tabib7795052011-12-08 17:27:31 -06001468 dma_addr_t dma_addr; /* DMA addr of fsl_diu_data struct */
Timur Tabiddd3d902011-12-02 17:03:27 -06001469 unsigned int i;
1470 int ret;
York Sun9b53a9e2008-04-28 02:15:34 -07001471
Timur Tabib7795052011-12-08 17:27:31 -06001472 data = dma_alloc_coherent(&pdev->dev, sizeof(struct fsl_diu_data),
1473 &dma_addr, GFP_DMA | __GFP_ZERO);
1474 if (!data)
York Sun9b53a9e2008-04-28 02:15:34 -07001475 return -ENOMEM;
Timur Tabib7795052011-12-08 17:27:31 -06001476 data->dma_addr = dma_addr;
Timur Tabiddd3d902011-12-02 17:03:27 -06001477
1478 /*
1479 * dma_alloc_coherent() uses a page allocator, so the address is
1480 * always page-aligned. We need the memory to be 32-byte aligned,
1481 * so that's good. However, if one day the allocator changes, we
1482 * need to catch that. It's not worth the effort to handle unaligned
1483 * alloctions now because it's highly unlikely to ever be a problem.
1484 */
Timur Tabib7795052011-12-08 17:27:31 -06001485 if ((unsigned long)data & 31) {
Timur Tabiddd3d902011-12-02 17:03:27 -06001486 dev_err(&pdev->dev, "misaligned allocation");
1487 ret = -ENOMEM;
1488 goto error;
1489 }
York Sun9b53a9e2008-04-28 02:15:34 -07001490
Timur Tabib7795052011-12-08 17:27:31 -06001491 spin_lock_init(&data->reg_lock);
Timur Tabi3c755b72011-10-04 19:36:51 -05001492
Timur Tabiddd3d902011-12-02 17:03:27 -06001493 for (i = 0; i < NUM_AOIS; i++) {
Timur Tabib7795052011-12-08 17:27:31 -06001494 struct fb_info *info = &data->fsl_diu_info[i];
Timur Tabiddd3d902011-12-02 17:03:27 -06001495
1496 info->device = &pdev->dev;
Timur Tabib7795052011-12-08 17:27:31 -06001497 info->par = &data->mfb[i];
Timur Tabiddd3d902011-12-02 17:03:27 -06001498
1499 /*
1500 * We store the physical address of the AD in the reserved
1501 * 'paddr' field of the AD itself.
1502 */
Timur Tabib7795052011-12-08 17:27:31 -06001503 data->ad[i].paddr = DMA_ADDR(data, ad[i]);
Timur Tabiddd3d902011-12-02 17:03:27 -06001504
1505 info->fix.smem_start = 0;
1506
1507 /* Initialize the AOI data structure */
1508 mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -07001509 memcpy(mfbi, &mfb_template[i], sizeof(struct mfb_info));
Timur Tabib7795052011-12-08 17:27:31 -06001510 mfbi->parent = data;
1511 mfbi->ad = &data->ad[i];
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001512
Timur Tabi2572df92011-09-28 16:19:51 -05001513 if (mfbi->index == PLANE0) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001514 const u8 *prop;
1515 int len;
1516
1517 /* Get EDID */
1518 prop = of_get_property(np, "edid", &len);
1519 if (prop && len == EDID_LENGTH)
1520 mfbi->edid_data = kmemdup(prop, EDID_LENGTH,
1521 GFP_KERNEL);
1522 }
York Sun9b53a9e2008-04-28 02:15:34 -07001523 }
1524
Timur Tabib7795052011-12-08 17:27:31 -06001525 data->diu_reg = of_iomap(np, 0);
1526 if (!data->diu_reg) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001527 dev_err(&pdev->dev, "cannot map DIU registers\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001528 ret = -EFAULT;
Timur Tabiddd3d902011-12-02 17:03:27 -06001529 goto error;
York Sun9b53a9e2008-04-28 02:15:34 -07001530 }
1531
Timur Tabib7795052011-12-08 17:27:31 -06001532 diu_mode = in_be32(&data->diu_reg->diu_mode);
Timur Tabic4e5a022011-09-28 16:19:53 -05001533 if (diu_mode == MFB_MODE0)
Timur Tabib7795052011-12-08 17:27:31 -06001534 out_be32(&data->diu_reg->diu_mode, 0); /* disable DIU */
York Sun9b53a9e2008-04-28 02:15:34 -07001535
1536 /* Get the IRQ of the DIU */
Timur Tabib7795052011-12-08 17:27:31 -06001537 data->irq = irq_of_parse_and_map(np, 0);
York Sun9b53a9e2008-04-28 02:15:34 -07001538
Timur Tabib7795052011-12-08 17:27:31 -06001539 if (!data->irq) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001540 dev_err(&pdev->dev, "could not get DIU IRQ\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001541 ret = -EINVAL;
1542 goto error;
1543 }
Timur Tabib7795052011-12-08 17:27:31 -06001544 data->monitor_port = monitor_port;
York Sun9b53a9e2008-04-28 02:15:34 -07001545
Timur Tabiddd3d902011-12-02 17:03:27 -06001546 /* Initialize the dummy Area Descriptor */
Timur Tabib7795052011-12-08 17:27:31 -06001547 data->dummy_ad.addr = cpu_to_le32(DMA_ADDR(data, dummy_aoi));
1548 data->dummy_ad.pix_fmt = 0x88882317;
1549 data->dummy_ad.src_size_g_alpha = cpu_to_le32((4 << 12) | 4);
1550 data->dummy_ad.aoi_size = cpu_to_le32((4 << 16) | 2);
1551 data->dummy_ad.offset_xyi = 0;
1552 data->dummy_ad.offset_xyd = 0;
1553 data->dummy_ad.next_ad = 0;
1554 data->dummy_ad.paddr = DMA_ADDR(data, dummy_ad);
York Sun9b53a9e2008-04-28 02:15:34 -07001555
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001556 /*
1557 * Let DIU display splash screen if it was pre-initialized
1558 * by the bootloader, set dummy area descriptor otherwise.
1559 */
Timur Tabic4e5a022011-09-28 16:19:53 -05001560 if (diu_mode == MFB_MODE0)
Timur Tabib7795052011-12-08 17:27:31 -06001561 out_be32(&data->diu_reg->desc[0], data->dummy_ad.paddr);
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001562
Timur Tabib7795052011-12-08 17:27:31 -06001563 out_be32(&data->diu_reg->desc[1], data->dummy_ad.paddr);
1564 out_be32(&data->diu_reg->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -07001565
Timur Tabiddd3d902011-12-02 17:03:27 -06001566 for (i = 0; i < NUM_AOIS; i++) {
Timur Tabib7795052011-12-08 17:27:31 -06001567 ret = install_fb(&data->fsl_diu_info[i]);
York Sun9b53a9e2008-04-28 02:15:34 -07001568 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001569 dev_err(&pdev->dev, "could not register fb %d\n", i);
York Sun9b53a9e2008-04-28 02:15:34 -07001570 goto error;
1571 }
1572 }
1573
Timur Tabib7795052011-12-08 17:27:31 -06001574 if (request_irq_local(data)) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001575 dev_err(&pdev->dev, "could not claim irq\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001576 goto error;
1577 }
1578
Timur Tabib7795052011-12-08 17:27:31 -06001579 sysfs_attr_init(&data->dev_attr.attr);
1580 data->dev_attr.attr.name = "monitor";
1581 data->dev_attr.attr.mode = S_IRUGO|S_IWUSR;
1582 data->dev_attr.show = show_monitor;
1583 data->dev_attr.store = store_monitor;
1584 ret = device_create_file(&pdev->dev, &data->dev_attr);
Timur Tabiddd3d902011-12-02 17:03:27 -06001585 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001586 dev_err(&pdev->dev, "could not create sysfs file %s\n",
Timur Tabib7795052011-12-08 17:27:31 -06001587 data->dev_attr.attr.name);
York Sun9b53a9e2008-04-28 02:15:34 -07001588 }
1589
Timur Tabib7795052011-12-08 17:27:31 -06001590 dev_set_drvdata(&pdev->dev, data);
York Sun9b53a9e2008-04-28 02:15:34 -07001591 return 0;
1592
1593error:
Timur Tabiddd3d902011-12-02 17:03:27 -06001594 for (i = 0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001595 uninstall_fb(&data->fsl_diu_info[i]);
Timur Tabi3f78bbd2011-09-15 16:44:56 -05001596
Timur Tabib7795052011-12-08 17:27:31 -06001597 iounmap(data->diu_reg);
York Sun9b53a9e2008-04-28 02:15:34 -07001598
Timur Tabib7795052011-12-08 17:27:31 -06001599 dma_free_coherent(&pdev->dev, sizeof(struct fsl_diu_data), data,
1600 data->dma_addr);
York Sun9b53a9e2008-04-28 02:15:34 -07001601
1602 return ret;
1603}
1604
Timur Tabi9e52ba62011-09-15 16:44:50 -05001605static int fsl_diu_remove(struct platform_device *pdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001606{
Timur Tabib7795052011-12-08 17:27:31 -06001607 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001608 int i;
1609
Timur Tabib7795052011-12-08 17:27:31 -06001610 data = dev_get_drvdata(&pdev->dev);
1611 disable_lcdc(&data->fsl_diu_info[0]);
1612 free_irq_local(data);
Timur Tabiddd3d902011-12-02 17:03:27 -06001613
1614 for (i = 0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001615 uninstall_fb(&data->fsl_diu_info[i]);
Timur Tabiddd3d902011-12-02 17:03:27 -06001616
Timur Tabib7795052011-12-08 17:27:31 -06001617 iounmap(data->diu_reg);
Timur Tabiddd3d902011-12-02 17:03:27 -06001618
Timur Tabib7795052011-12-08 17:27:31 -06001619 dma_free_coherent(&pdev->dev, sizeof(struct fsl_diu_data), data,
1620 data->dma_addr);
York Sun9b53a9e2008-04-28 02:15:34 -07001621
1622 return 0;
1623}
1624
1625#ifndef MODULE
1626static int __init fsl_diu_setup(char *options)
1627{
1628 char *opt;
1629 unsigned long val;
1630
1631 if (!options || !*options)
1632 return 0;
1633
1634 while ((opt = strsep(&options, ",")) != NULL) {
1635 if (!*opt)
1636 continue;
1637 if (!strncmp(opt, "monitor=", 8)) {
Timur Tabi7653aaa2011-07-09 15:38:14 -05001638 monitor_port = fsl_diu_name_to_port(opt + 8);
York Sun9b53a9e2008-04-28 02:15:34 -07001639 } else if (!strncmp(opt, "bpp=", 4)) {
1640 if (!strict_strtoul(opt + 4, 10, &val))
1641 default_bpp = val;
1642 } else
1643 fb_mode = opt;
1644 }
1645
1646 return 0;
1647}
1648#endif
1649
1650static struct of_device_id fsl_diu_match[] = {
Anatolij Gustschind24720a2010-02-17 07:33:22 -07001651#ifdef CONFIG_PPC_MPC512x
1652 {
1653 .compatible = "fsl,mpc5121-diu",
1654 },
1655#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001656 {
1657 .compatible = "fsl,diu",
1658 },
1659 {}
1660};
1661MODULE_DEVICE_TABLE(of, fsl_diu_match);
1662
Grant Likely28541d02011-02-22 21:07:43 -07001663static struct platform_driver fsl_diu_driver = {
Grant Likely40182942010-04-13 16:13:02 -07001664 .driver = {
Timur Tabif8c6bf62011-09-15 16:44:53 -05001665 .name = "fsl-diu-fb",
Grant Likely40182942010-04-13 16:13:02 -07001666 .owner = THIS_MODULE,
1667 .of_match_table = fsl_diu_match,
1668 },
York Sun9b53a9e2008-04-28 02:15:34 -07001669 .probe = fsl_diu_probe,
1670 .remove = fsl_diu_remove,
1671 .suspend = fsl_diu_suspend,
1672 .resume = fsl_diu_resume,
1673};
1674
1675static int __init fsl_diu_init(void)
1676{
1677#ifdef CONFIG_NOT_COHERENT_CACHE
1678 struct device_node *np;
1679 const u32 *prop;
1680#endif
1681 int ret;
1682#ifndef MODULE
1683 char *option;
1684
1685 /*
1686 * For kernel boot options (in 'video=xxxfb:<options>' format)
1687 */
1688 if (fb_get_options("fslfb", &option))
1689 return -ENODEV;
1690 fsl_diu_setup(option);
Timur Tabi7653aaa2011-07-09 15:38:14 -05001691#else
1692 monitor_port = fsl_diu_name_to_port(monitor_string);
York Sun9b53a9e2008-04-28 02:15:34 -07001693#endif
Timur Tabi154152a2011-09-15 16:44:47 -05001694 pr_info("Freescale Display Interface Unit (DIU) framebuffer driver\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001695
1696#ifdef CONFIG_NOT_COHERENT_CACHE
1697 np = of_find_node_by_type(NULL, "cpu");
1698 if (!np) {
Timur Tabi154152a2011-09-15 16:44:47 -05001699 pr_err("fsl-diu-fb: can't find 'cpu' device node\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001700 return -ENODEV;
1701 }
1702
1703 prop = of_get_property(np, "d-cache-size", NULL);
Julia Lawall5394ba02008-08-05 13:01:28 -07001704 if (prop == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -05001705 pr_err("fsl-diu-fb: missing 'd-cache-size' property' "
1706 "in 'cpu' node\n");
Julia Lawall5394ba02008-08-05 13:01:28 -07001707 of_node_put(np);
York Sun9b53a9e2008-04-28 02:15:34 -07001708 return -ENODEV;
Julia Lawall5394ba02008-08-05 13:01:28 -07001709 }
York Sun9b53a9e2008-04-28 02:15:34 -07001710
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001711 /*
1712 * Freescale PLRU requires 13/8 times the cache size to do a proper
1713 * displacement flush
York Sun9b53a9e2008-04-28 02:15:34 -07001714 */
Timur Tabi9e52ba62011-09-15 16:44:50 -05001715 coherence_data_size = be32_to_cpup(prop) * 13;
York Sun9b53a9e2008-04-28 02:15:34 -07001716 coherence_data_size /= 8;
1717
1718 prop = of_get_property(np, "d-cache-line-size", NULL);
Julia Lawall5394ba02008-08-05 13:01:28 -07001719 if (prop == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -05001720 pr_err("fsl-diu-fb: missing 'd-cache-line-size' property' "
1721 "in 'cpu' node\n");
Julia Lawall5394ba02008-08-05 13:01:28 -07001722 of_node_put(np);
York Sun9b53a9e2008-04-28 02:15:34 -07001723 return -ENODEV;
Julia Lawall5394ba02008-08-05 13:01:28 -07001724 }
Timur Tabi9e52ba62011-09-15 16:44:50 -05001725 d_cache_line_size = be32_to_cpup(prop);
York Sun9b53a9e2008-04-28 02:15:34 -07001726
1727 of_node_put(np);
1728 coherence_data = vmalloc(coherence_data_size);
1729 if (!coherence_data)
1730 return -ENOMEM;
1731#endif
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001732
Grant Likely28541d02011-02-22 21:07:43 -07001733 ret = platform_driver_register(&fsl_diu_driver);
York Sun9b53a9e2008-04-28 02:15:34 -07001734 if (ret) {
Timur Tabi154152a2011-09-15 16:44:47 -05001735 pr_err("fsl-diu-fb: failed to register platform driver\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001736#if defined(CONFIG_NOT_COHERENT_CACHE)
1737 vfree(coherence_data);
1738#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001739 }
1740 return ret;
1741}
1742
1743static void __exit fsl_diu_exit(void)
1744{
Grant Likely28541d02011-02-22 21:07:43 -07001745 platform_driver_unregister(&fsl_diu_driver);
York Sun9b53a9e2008-04-28 02:15:34 -07001746#if defined(CONFIG_NOT_COHERENT_CACHE)
1747 vfree(coherence_data);
1748#endif
1749}
1750
1751module_init(fsl_diu_init);
1752module_exit(fsl_diu_exit);
1753
1754MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
1755MODULE_DESCRIPTION("Freescale DIU framebuffer driver");
1756MODULE_LICENSE("GPL");
1757
1758module_param_named(mode, fb_mode, charp, 0);
1759MODULE_PARM_DESC(mode,
1760 "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
1761module_param_named(bpp, default_bpp, ulong, 0);
Timur Tabi154152a2011-09-15 16:44:47 -05001762MODULE_PARM_DESC(bpp, "Specify bit-per-pixel if not specified in 'mode'");
Timur Tabi7653aaa2011-07-09 15:38:14 -05001763module_param_named(monitor, monitor_string, charp, 0);
1764MODULE_PARM_DESC(monitor, "Specify the monitor port "
1765 "(\"dvi\", \"lvds\", or \"dlvds\") if supported by the platform");
York Sun9b53a9e2008-04-28 02:15:34 -07001766