blob: 0883bc42cd5a5a8e9394370eb775c8b148296684 [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;
York Sun9b53a9e2008-04-28 02:15:34 -0700340 unsigned char g_alpha;
341 unsigned int count;
342 int x_aoi_d; /* aoi display x offset to physical screen */
343 int y_aoi_d; /* aoi display y offset to physical screen */
344 struct fsl_diu_data *parent;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +0000345 u8 *edid_data;
York Sun9b53a9e2008-04-28 02:15:34 -0700346};
347
Timur Tabiddd3d902011-12-02 17:03:27 -0600348/**
349 * struct fsl_diu_data - per-DIU data structure
350 * @dma_addr: DMA address of this structure
351 * @fsl_diu_info: fb_info objects, one per AOI
352 * @dev_attr: sysfs structure
353 * @irq: IRQ
Timur Tabiddd3d902011-12-02 17:03:27 -0600354 * @monitor_port: the monitor port this DIU is connected to
355 * @diu_reg: pointer to the DIU hardware registers
356 * @reg_lock: spinlock for register access
357 * @dummy_aoi: video buffer for the 4x4 32-bit dummy AOI
358 * dummy_ad: DIU Area Descriptor for the dummy AOI
359 * @ad[]: Area Descriptors for each real AOI
360 * @gamma: gamma color table
361 * @cursor: hardware cursor data
362 *
363 * This data structure must be allocated with 32-byte alignment, so that the
364 * internal fields can be aligned properly.
365 */
366struct fsl_diu_data {
367 dma_addr_t dma_addr;
368 struct fb_info fsl_diu_info[NUM_AOIS];
369 struct mfb_info mfb[NUM_AOIS];
370 struct device_attribute dev_attr;
371 unsigned int irq;
Timur Tabiddd3d902011-12-02 17:03:27 -0600372 enum fsl_diu_monitor_port monitor_port;
373 struct diu __iomem *diu_reg;
374 spinlock_t reg_lock;
375 u8 dummy_aoi[4 * 4 * 4];
376 struct diu_ad dummy_ad __aligned(8);
377 struct diu_ad ad[NUM_AOIS] __aligned(8);
378 u8 gamma[256 * 3] __aligned(32);
379 u8 cursor[MAX_CURS * MAX_CURS * 2] __aligned(32);
380} __aligned(32);
381
382/* Determine the DMA address of a member of the fsl_diu_data structure */
383#define DMA_ADDR(p, f) ((p)->dma_addr + offsetof(struct fsl_diu_data, f))
York Sun9b53a9e2008-04-28 02:15:34 -0700384
385static struct mfb_info mfb_template[] = {
Timur Tabi2572df92011-09-28 16:19:51 -0500386 {
387 .index = PLANE0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500388 .id = "Panel0",
389 .registered = 0,
390 .count = 0,
391 .x_aoi_d = 0,
392 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700393 },
Timur Tabi2572df92011-09-28 16:19:51 -0500394 {
395 .index = PLANE1_AOI0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500396 .id = "Panel1 AOI0",
397 .registered = 0,
398 .g_alpha = 0xff,
399 .count = 0,
400 .x_aoi_d = 0,
401 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700402 },
Timur Tabi2572df92011-09-28 16:19:51 -0500403 {
404 .index = PLANE1_AOI1,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500405 .id = "Panel1 AOI1",
406 .registered = 0,
407 .g_alpha = 0xff,
408 .count = 0,
409 .x_aoi_d = 0,
410 .y_aoi_d = 480,
York Sun9b53a9e2008-04-28 02:15:34 -0700411 },
Timur Tabi2572df92011-09-28 16:19:51 -0500412 {
413 .index = PLANE2_AOI0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500414 .id = "Panel2 AOI0",
415 .registered = 0,
416 .g_alpha = 0xff,
417 .count = 0,
418 .x_aoi_d = 640,
419 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700420 },
Timur Tabi2572df92011-09-28 16:19:51 -0500421 {
422 .index = PLANE2_AOI1,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500423 .id = "Panel2 AOI1",
424 .registered = 0,
425 .g_alpha = 0xff,
426 .count = 0,
427 .x_aoi_d = 640,
428 .y_aoi_d = 480,
York Sun9b53a9e2008-04-28 02:15:34 -0700429 },
430};
431
Timur Tabi5cc2a362012-10-16 17:33:46 -0500432#ifdef DEBUG
433static void __attribute__ ((unused)) fsl_diu_dump(struct diu __iomem *hw)
434{
435 mb();
436 pr_debug("DIU: desc=%08x,%08x,%08x, gamma=%08x pallete=%08x "
437 "cursor=%08x curs_pos=%08x diu_mode=%08x bgnd=%08x "
438 "disp_size=%08x hsyn_para=%08x vsyn_para=%08x syn_pol=%08x "
439 "thresholds=%08x int_mask=%08x plut=%08x\n",
440 hw->desc[0], hw->desc[1], hw->desc[2], hw->gamma,
441 hw->pallete, hw->cursor, hw->curs_pos, hw->diu_mode,
442 hw->bgnd, hw->disp_size, hw->hsyn_para, hw->vsyn_para,
443 hw->syn_pol, hw->thresholds, hw->int_mask, hw->plut);
444 rmb();
445}
446#endif
447
Timur Tabi6b51d512008-07-23 21:31:39 -0700448/**
Timur Tabi7653aaa2011-07-09 15:38:14 -0500449 * fsl_diu_name_to_port - convert a port name to a monitor port enum
450 *
451 * Takes the name of a monitor port ("dvi", "lvds", or "dlvds") and returns
452 * the enum fsl_diu_monitor_port that corresponds to that string.
453 *
454 * For compatibility with older versions, a number ("0", "1", or "2") is also
455 * supported.
456 *
457 * If the string is unknown, DVI is assumed.
458 *
459 * If the particular port is not supported by the platform, another port
460 * (platform-specific) is chosen instead.
461 */
462static enum fsl_diu_monitor_port fsl_diu_name_to_port(const char *s)
463{
464 enum fsl_diu_monitor_port port = FSL_DIU_PORT_DVI;
465 unsigned long val;
466
467 if (s) {
468 if (!strict_strtoul(s, 10, &val) && (val <= 2))
469 port = (enum fsl_diu_monitor_port) val;
470 else if (strncmp(s, "lvds", 4) == 0)
471 port = FSL_DIU_PORT_LVDS;
472 else if (strncmp(s, "dlvds", 5) == 0)
473 port = FSL_DIU_PORT_DLVDS;
474 }
475
476 return diu_ops.valid_monitor_port(port);
477}
478
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000479/*
480 * Workaround for failed writing desc register of planes.
481 * Needed with MPC5121 DIU rev 2.0 silicon.
482 */
483void wr_reg_wa(u32 *reg, u32 val)
484{
485 do {
486 out_be32(reg, val);
487 } while (in_be32(reg) != val);
488}
489
Timur Tabi7e47c212011-09-28 16:19:52 -0500490static void fsl_diu_enable_panel(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700491{
492 struct mfb_info *pmfbi, *cmfbi, *mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -0700493 struct diu_ad *ad = mfbi->ad;
Timur Tabib7795052011-12-08 17:27:31 -0600494 struct fsl_diu_data *data = mfbi->parent;
495 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700496
Timur Tabi7e47c212011-09-28 16:19:52 -0500497 switch (mfbi->index) {
498 case PLANE0:
Timur Tabi7af3b132012-10-16 17:33:48 -0500499 wr_reg_wa(&hw->desc[0], ad->paddr);
Timur Tabi7e47c212011-09-28 16:19:52 -0500500 break;
501 case PLANE1_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600502 cmfbi = &data->mfb[2];
Timur Tabi7e47c212011-09-28 16:19:52 -0500503 if (hw->desc[1] != ad->paddr) { /* AOI0 closed */
504 if (cmfbi->count > 0) /* AOI1 open */
505 ad->next_ad =
506 cpu_to_le32(cmfbi->ad->paddr);
507 else
508 ad->next_ad = 0;
509 wr_reg_wa(&hw->desc[1], ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700510 }
Timur Tabi7e47c212011-09-28 16:19:52 -0500511 break;
512 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600513 cmfbi = &data->mfb[4];
Timur Tabi7e47c212011-09-28 16:19:52 -0500514 if (hw->desc[2] != ad->paddr) { /* AOI0 closed */
515 if (cmfbi->count > 0) /* AOI1 open */
516 ad->next_ad =
517 cpu_to_le32(cmfbi->ad->paddr);
518 else
519 ad->next_ad = 0;
520 wr_reg_wa(&hw->desc[2], ad->paddr);
521 }
522 break;
523 case PLANE1_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600524 pmfbi = &data->mfb[1];
Timur Tabi7e47c212011-09-28 16:19:52 -0500525 ad->next_ad = 0;
Timur Tabib7795052011-12-08 17:27:31 -0600526 if (hw->desc[1] == data->dummy_ad.paddr)
Timur Tabi7e47c212011-09-28 16:19:52 -0500527 wr_reg_wa(&hw->desc[1], ad->paddr);
528 else /* AOI0 open */
529 pmfbi->ad->next_ad = cpu_to_le32(ad->paddr);
530 break;
531 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600532 pmfbi = &data->mfb[3];
Timur Tabi7e47c212011-09-28 16:19:52 -0500533 ad->next_ad = 0;
Timur Tabib7795052011-12-08 17:27:31 -0600534 if (hw->desc[2] == data->dummy_ad.paddr)
Timur Tabi7e47c212011-09-28 16:19:52 -0500535 wr_reg_wa(&hw->desc[2], ad->paddr);
536 else /* AOI0 was open */
537 pmfbi->ad->next_ad = cpu_to_le32(ad->paddr);
538 break;
539 }
York Sun9b53a9e2008-04-28 02:15:34 -0700540}
541
Timur Tabi2572df92011-09-28 16:19:51 -0500542static void fsl_diu_disable_panel(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700543{
544 struct mfb_info *pmfbi, *cmfbi, *mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -0700545 struct diu_ad *ad = mfbi->ad;
Timur Tabib7795052011-12-08 17:27:31 -0600546 struct fsl_diu_data *data = mfbi->parent;
547 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700548
549 switch (mfbi->index) {
Timur Tabi2572df92011-09-28 16:19:51 -0500550 case PLANE0:
Timur Tabi7af3b132012-10-16 17:33:48 -0500551 wr_reg_wa(&hw->desc[0], 0);
York Sun9b53a9e2008-04-28 02:15:34 -0700552 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500553 case PLANE1_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600554 cmfbi = &data->mfb[2];
York Sun9b53a9e2008-04-28 02:15:34 -0700555 if (cmfbi->count > 0) /* AOI1 is open */
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000556 wr_reg_wa(&hw->desc[1], cmfbi->ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700557 /* move AOI1 to the first */
558 else /* AOI1 was closed */
Timur Tabib7795052011-12-08 17:27:31 -0600559 wr_reg_wa(&hw->desc[1], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700560 /* close AOI 0 */
561 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500562 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600563 cmfbi = &data->mfb[4];
York Sun9b53a9e2008-04-28 02:15:34 -0700564 if (cmfbi->count > 0) /* AOI1 is open */
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000565 wr_reg_wa(&hw->desc[2], cmfbi->ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700566 /* move AOI1 to the first */
567 else /* AOI1 was closed */
Timur Tabib7795052011-12-08 17:27:31 -0600568 wr_reg_wa(&hw->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700569 /* close AOI 0 */
570 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500571 case PLANE1_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600572 pmfbi = &data->mfb[1];
York Sun9b53a9e2008-04-28 02:15:34 -0700573 if (hw->desc[1] != ad->paddr) {
574 /* AOI1 is not the first in the chain */
575 if (pmfbi->count > 0)
576 /* AOI0 is open, must be the first */
577 pmfbi->ad->next_ad = 0;
578 } else /* AOI1 is the first in the chain */
Timur Tabib7795052011-12-08 17:27:31 -0600579 wr_reg_wa(&hw->desc[1], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700580 /* close AOI 1 */
581 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500582 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600583 pmfbi = &data->mfb[3];
York Sun9b53a9e2008-04-28 02:15:34 -0700584 if (hw->desc[2] != ad->paddr) {
585 /* AOI1 is not the first in the chain */
586 if (pmfbi->count > 0)
587 /* AOI0 is open, must be the first */
588 pmfbi->ad->next_ad = 0;
589 } else /* AOI1 is the first in the chain */
Timur Tabib7795052011-12-08 17:27:31 -0600590 wr_reg_wa(&hw->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700591 /* close AOI 1 */
592 break;
York Sun9b53a9e2008-04-28 02:15:34 -0700593 }
York Sun9b53a9e2008-04-28 02:15:34 -0700594}
595
596static void enable_lcdc(struct fb_info *info)
597{
York Sun9b53a9e2008-04-28 02:15:34 -0700598 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600599 struct fsl_diu_data *data = mfbi->parent;
600 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700601
Timur Tabid397e9162011-12-19 16:26:16 -0600602 out_be32(&hw->diu_mode, MFB_MODE1);
York Sun9b53a9e2008-04-28 02:15:34 -0700603}
604
605static void disable_lcdc(struct fb_info *info)
606{
York Sun9b53a9e2008-04-28 02:15:34 -0700607 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600608 struct fsl_diu_data *data = mfbi->parent;
609 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700610
Timur Tabid397e9162011-12-19 16:26:16 -0600611 out_be32(&hw->diu_mode, 0);
York Sun9b53a9e2008-04-28 02:15:34 -0700612}
613
614static void adjust_aoi_size_position(struct fb_var_screeninfo *var,
615 struct fb_info *info)
616{
617 struct mfb_info *lower_aoi_mfbi, *upper_aoi_mfbi, *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600618 struct fsl_diu_data *data = mfbi->parent;
Timur Tabi2572df92011-09-28 16:19:51 -0500619 int available_height, upper_aoi_bottom;
620 enum mfb_index index = mfbi->index;
York Sun9b53a9e2008-04-28 02:15:34 -0700621 int lower_aoi_is_open, upper_aoi_is_open;
622 __u32 base_plane_width, base_plane_height, upper_aoi_height;
623
Timur Tabib7795052011-12-08 17:27:31 -0600624 base_plane_width = data->fsl_diu_info[0].var.xres;
625 base_plane_height = data->fsl_diu_info[0].var.yres;
York Sun9b53a9e2008-04-28 02:15:34 -0700626
York Sunfdfaa48332008-08-15 00:40:29 -0700627 if (mfbi->x_aoi_d < 0)
628 mfbi->x_aoi_d = 0;
629 if (mfbi->y_aoi_d < 0)
630 mfbi->y_aoi_d = 0;
York Sun9b53a9e2008-04-28 02:15:34 -0700631 switch (index) {
Timur Tabi2572df92011-09-28 16:19:51 -0500632 case PLANE0:
York Sun9b53a9e2008-04-28 02:15:34 -0700633 if (mfbi->x_aoi_d != 0)
634 mfbi->x_aoi_d = 0;
635 if (mfbi->y_aoi_d != 0)
636 mfbi->y_aoi_d = 0;
637 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500638 case PLANE1_AOI0:
639 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600640 lower_aoi_mfbi = data->fsl_diu_info[index+1].par;
York Sun9b53a9e2008-04-28 02:15:34 -0700641 lower_aoi_is_open = lower_aoi_mfbi->count > 0 ? 1 : 0;
642 if (var->xres > base_plane_width)
643 var->xres = base_plane_width;
644 if ((mfbi->x_aoi_d + var->xres) > base_plane_width)
645 mfbi->x_aoi_d = base_plane_width - var->xres;
646
647 if (lower_aoi_is_open)
648 available_height = lower_aoi_mfbi->y_aoi_d;
649 else
650 available_height = base_plane_height;
651 if (var->yres > available_height)
652 var->yres = available_height;
653 if ((mfbi->y_aoi_d + var->yres) > available_height)
654 mfbi->y_aoi_d = available_height - var->yres;
655 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500656 case PLANE1_AOI1:
657 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600658 upper_aoi_mfbi = data->fsl_diu_info[index-1].par;
659 upper_aoi_height = data->fsl_diu_info[index-1].var.yres;
York Sun9b53a9e2008-04-28 02:15:34 -0700660 upper_aoi_bottom = upper_aoi_mfbi->y_aoi_d + upper_aoi_height;
661 upper_aoi_is_open = upper_aoi_mfbi->count > 0 ? 1 : 0;
662 if (var->xres > base_plane_width)
663 var->xres = base_plane_width;
664 if ((mfbi->x_aoi_d + var->xres) > base_plane_width)
665 mfbi->x_aoi_d = base_plane_width - var->xres;
666 if (mfbi->y_aoi_d < 0)
667 mfbi->y_aoi_d = 0;
668 if (upper_aoi_is_open) {
669 if (mfbi->y_aoi_d < upper_aoi_bottom)
670 mfbi->y_aoi_d = upper_aoi_bottom;
671 available_height = base_plane_height
672 - upper_aoi_bottom;
673 } else
674 available_height = base_plane_height;
675 if (var->yres > available_height)
676 var->yres = available_height;
677 if ((mfbi->y_aoi_d + var->yres) > base_plane_height)
678 mfbi->y_aoi_d = base_plane_height - var->yres;
679 break;
680 }
681}
682/*
683 * Checks to see if the hardware supports the state requested by var passed
684 * in. This function does not alter the hardware state! If the var passed in
685 * is slightly off by what the hardware can support then we alter the var
686 * PASSED in to what we can do. If the hardware doesn't support mode change
687 * a -EINVAL will be returned by the upper layers.
688 */
689static int fsl_diu_check_var(struct fb_var_screeninfo *var,
690 struct fb_info *info)
691{
York Sun9b53a9e2008-04-28 02:15:34 -0700692 if (var->xres_virtual < var->xres)
693 var->xres_virtual = var->xres;
694 if (var->yres_virtual < var->yres)
695 var->yres_virtual = var->yres;
696
697 if (var->xoffset < 0)
698 var->xoffset = 0;
699
700 if (var->yoffset < 0)
701 var->yoffset = 0;
702
703 if (var->xoffset + info->var.xres > info->var.xres_virtual)
704 var->xoffset = info->var.xres_virtual - info->var.xres;
705
706 if (var->yoffset + info->var.yres > info->var.yres_virtual)
707 var->yoffset = info->var.yres_virtual - info->var.yres;
708
709 if ((var->bits_per_pixel != 32) && (var->bits_per_pixel != 24) &&
710 (var->bits_per_pixel != 16))
711 var->bits_per_pixel = default_bpp;
712
713 switch (var->bits_per_pixel) {
714 case 16:
715 var->red.length = 5;
716 var->red.offset = 11;
717 var->red.msb_right = 0;
718
719 var->green.length = 6;
720 var->green.offset = 5;
721 var->green.msb_right = 0;
722
723 var->blue.length = 5;
724 var->blue.offset = 0;
725 var->blue.msb_right = 0;
726
727 var->transp.length = 0;
728 var->transp.offset = 0;
729 var->transp.msb_right = 0;
730 break;
731 case 24:
732 var->red.length = 8;
733 var->red.offset = 0;
734 var->red.msb_right = 0;
735
736 var->green.length = 8;
737 var->green.offset = 8;
738 var->green.msb_right = 0;
739
740 var->blue.length = 8;
741 var->blue.offset = 16;
742 var->blue.msb_right = 0;
743
744 var->transp.length = 0;
745 var->transp.offset = 0;
746 var->transp.msb_right = 0;
747 break;
748 case 32:
749 var->red.length = 8;
750 var->red.offset = 16;
751 var->red.msb_right = 0;
752
753 var->green.length = 8;
754 var->green.offset = 8;
755 var->green.msb_right = 0;
756
757 var->blue.length = 8;
758 var->blue.offset = 0;
759 var->blue.msb_right = 0;
760
761 var->transp.length = 8;
762 var->transp.offset = 24;
763 var->transp.msb_right = 0;
764
765 break;
766 }
York Sun9b53a9e2008-04-28 02:15:34 -0700767
768 var->height = -1;
769 var->width = -1;
770 var->grayscale = 0;
771
772 /* Copy nonstd field to/from sync for fbset usage */
773 var->sync |= var->nonstd;
774 var->nonstd |= var->sync;
775
776 adjust_aoi_size_position(var, info);
777 return 0;
778}
779
780static void set_fix(struct fb_info *info)
781{
782 struct fb_fix_screeninfo *fix = &info->fix;
783 struct fb_var_screeninfo *var = &info->var;
784 struct mfb_info *mfbi = info->par;
785
Timur Tabiec02dd22011-09-15 16:44:54 -0500786 strncpy(fix->id, mfbi->id, sizeof(fix->id));
York Sun9b53a9e2008-04-28 02:15:34 -0700787 fix->line_length = var->xres_virtual * var->bits_per_pixel / 8;
788 fix->type = FB_TYPE_PACKED_PIXELS;
789 fix->accel = FB_ACCEL_NONE;
790 fix->visual = FB_VISUAL_TRUECOLOR;
791 fix->xpanstep = 1;
792 fix->ypanstep = 1;
793}
794
795static void update_lcdc(struct fb_info *info)
796{
797 struct fb_var_screeninfo *var = &info->var;
798 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600799 struct fsl_diu_data *data = mfbi->parent;
Timur Tabi3c755b72011-10-04 19:36:51 -0500800 struct diu __iomem *hw;
York Sun9b53a9e2008-04-28 02:15:34 -0700801 int i, j;
Timur Tabiddd3d902011-12-02 17:03:27 -0600802 u8 *gamma_table_base;
York Sun9b53a9e2008-04-28 02:15:34 -0700803
804 u32 temp;
805
Timur Tabib7795052011-12-08 17:27:31 -0600806 hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700807
Timur Tabi28671732012-10-16 17:33:43 -0500808 if (diu_ops.set_monitor_port)
809 diu_ops.set_monitor_port(data->monitor_port);
Timur Tabib7795052011-12-08 17:27:31 -0600810 gamma_table_base = data->gamma;
Timur Tabiddd3d902011-12-02 17:03:27 -0600811
York Sun9b53a9e2008-04-28 02:15:34 -0700812 /* Prep for DIU init - gamma table, cursor table */
813
814 for (i = 0; i <= 2; i++)
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500815 for (j = 0; j <= 255; j++)
816 *gamma_table_base++ = j;
York Sun9b53a9e2008-04-28 02:15:34 -0700817
Timur Tabie09a8c32011-12-19 16:26:17 -0600818 if (diu_ops.set_gamma_table)
819 diu_ops.set_gamma_table(data->monitor_port, data->gamma);
York Sun9b53a9e2008-04-28 02:15:34 -0700820
York Sun9b53a9e2008-04-28 02:15:34 -0700821 disable_lcdc(info);
822
823 /* Program DIU registers */
824
Timur Tabib7795052011-12-08 17:27:31 -0600825 out_be32(&hw->gamma, DMA_ADDR(data, gamma));
826 out_be32(&hw->cursor, DMA_ADDR(data, cursor));
York Sun9b53a9e2008-04-28 02:15:34 -0700827
Timur Tabiceb001b2012-10-16 17:33:49 -0500828 out_be32(&hw->bgnd, 0x007F7F7F); /* Set background to grey */
829 out_be32(&hw->disp_size, (var->yres << 16) | var->xres);
York Sun9b53a9e2008-04-28 02:15:34 -0700830
831 /* Horizontal and vertical configuration register */
832 temp = var->left_margin << 22 | /* BP_H */
833 var->hsync_len << 11 | /* PW_H */
834 var->right_margin; /* FP_H */
835
836 out_be32(&hw->hsyn_para, temp);
837
838 temp = var->upper_margin << 22 | /* BP_V */
839 var->vsync_len << 11 | /* PW_V */
840 var->lower_margin; /* FP_V */
841
842 out_be32(&hw->vsyn_para, temp);
843
York Sun9b53a9e2008-04-28 02:15:34 -0700844 diu_ops.set_pixel_clock(var->pixclock);
845
Timur Tabiceb001b2012-10-16 17:33:49 -0500846#ifndef CONFIG_PPC_MPC512x
847 /*
848 * The PLUT register is defined differently on the MPC5121 than it
849 * is on other SOCs. Unfortunately, there's no documentation that
850 * explains how it's supposed to be programmed, so for now, we leave
851 * it at the default value on the MPC5121.
852 *
853 * For other SOCs, program it for the highest priority, which will
854 * reduce the chance of underrun. Technically, we should scale the
855 * priority to match the screen resolution, but doing that properly
856 * requires delicate fine-tuning for each use-case.
857 */
York Sun9b53a9e2008-04-28 02:15:34 -0700858 out_be32(&hw->plut, 0x01F5F666);
Timur Tabiceb001b2012-10-16 17:33:49 -0500859#endif
York Sun9b53a9e2008-04-28 02:15:34 -0700860
861 /* Enable the DIU */
862 enable_lcdc(info);
863}
864
865static int map_video_memory(struct fb_info *info)
866{
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700867 u32 smem_len = info->fix.line_length * info->var.yres_virtual;
Timur Tabi05342c02011-12-19 16:26:18 -0600868 void *p;
York Sun9b53a9e2008-04-28 02:15:34 -0700869
Timur Tabi05342c02011-12-19 16:26:18 -0600870 p = alloc_pages_exact(smem_len, GFP_DMA | __GFP_ZERO);
871 if (!p) {
Timur Tabi154152a2011-09-15 16:44:47 -0500872 dev_err(info->dev, "unable to allocate fb memory\n");
York Sun9b53a9e2008-04-28 02:15:34 -0700873 return -ENOMEM;
874 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700875 mutex_lock(&info->mm_lock);
Timur Tabi05342c02011-12-19 16:26:18 -0600876 info->screen_base = p;
877 info->fix.smem_start = virt_to_phys(info->screen_base);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700878 info->fix.smem_len = smem_len;
879 mutex_unlock(&info->mm_lock);
York Sun9b53a9e2008-04-28 02:15:34 -0700880 info->screen_size = info->fix.smem_len;
881
York Sun9b53a9e2008-04-28 02:15:34 -0700882 return 0;
883}
884
885static void unmap_video_memory(struct fb_info *info)
886{
Timur Tabi05342c02011-12-19 16:26:18 -0600887 void *p = info->screen_base;
888 size_t l = info->fix.smem_len;
889
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700890 mutex_lock(&info->mm_lock);
Anton Vorontsov05946bc2008-07-04 09:59:38 -0700891 info->screen_base = NULL;
York Sun9b53a9e2008-04-28 02:15:34 -0700892 info->fix.smem_start = 0;
893 info->fix.smem_len = 0;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700894 mutex_unlock(&info->mm_lock);
Timur Tabi05342c02011-12-19 16:26:18 -0600895
896 if (p)
897 free_pages_exact(p, l);
York Sun9b53a9e2008-04-28 02:15:34 -0700898}
899
900/*
York Sunae5591e2008-08-15 00:40:28 -0700901 * Using the fb_var_screeninfo in fb_info we set the aoi of this
902 * particular framebuffer. It is a light version of fsl_diu_set_par.
903 */
904static int fsl_diu_set_aoi(struct fb_info *info)
905{
906 struct fb_var_screeninfo *var = &info->var;
907 struct mfb_info *mfbi = info->par;
908 struct diu_ad *ad = mfbi->ad;
909
910 /* AOI should not be greater than display size */
911 ad->offset_xyi = cpu_to_le32((var->yoffset << 16) | var->xoffset);
912 ad->offset_xyd = cpu_to_le32((mfbi->y_aoi_d << 16) | mfbi->x_aoi_d);
913 return 0;
914}
915
Timur Tabie09a8c32011-12-19 16:26:17 -0600916/**
917 * fsl_diu_get_pixel_format: return the pixel format for a given color depth
918 *
919 * The pixel format is a 32-bit value that determine which bits in each
920 * pixel are to be used for each color. This is the default function used
921 * if the platform does not define its own version.
922 */
923static u32 fsl_diu_get_pixel_format(unsigned int bits_per_pixel)
924{
925#define PF_BYTE_F 0x10000000
926#define PF_ALPHA_C_MASK 0x0E000000
927#define PF_ALPHA_C_SHIFT 25
928#define PF_BLUE_C_MASK 0x01800000
929#define PF_BLUE_C_SHIFT 23
930#define PF_GREEN_C_MASK 0x00600000
931#define PF_GREEN_C_SHIFT 21
932#define PF_RED_C_MASK 0x00180000
933#define PF_RED_C_SHIFT 19
934#define PF_PALETTE 0x00040000
935#define PF_PIXEL_S_MASK 0x00030000
936#define PF_PIXEL_S_SHIFT 16
937#define PF_COMP_3_MASK 0x0000F000
938#define PF_COMP_3_SHIFT 12
939#define PF_COMP_2_MASK 0x00000F00
940#define PF_COMP_2_SHIFT 8
941#define PF_COMP_1_MASK 0x000000F0
942#define PF_COMP_1_SHIFT 4
943#define PF_COMP_0_MASK 0x0000000F
944#define PF_COMP_0_SHIFT 0
945
946#define MAKE_PF(alpha, red, blue, green, size, c0, c1, c2, c3) \
947 cpu_to_le32(PF_BYTE_F | (alpha << PF_ALPHA_C_SHIFT) | \
948 (blue << PF_BLUE_C_SHIFT) | (green << PF_GREEN_C_SHIFT) | \
949 (red << PF_RED_C_SHIFT) | (c3 << PF_COMP_3_SHIFT) | \
950 (c2 << PF_COMP_2_SHIFT) | (c1 << PF_COMP_1_SHIFT) | \
951 (c0 << PF_COMP_0_SHIFT) | (size << PF_PIXEL_S_SHIFT))
952
953 switch (bits_per_pixel) {
954 case 32:
955 /* 0x88883316 */
956 return MAKE_PF(3, 2, 0, 1, 3, 8, 8, 8, 8);
957 case 24:
958 /* 0x88082219 */
959 return MAKE_PF(4, 0, 1, 2, 2, 0, 8, 8, 8);
960 case 16:
961 /* 0x65053118 */
962 return MAKE_PF(4, 2, 1, 0, 1, 5, 6, 5, 0);
963 default:
964 pr_err("fsl-diu: unsupported color depth %u\n", bits_per_pixel);
965 return 0;
966 }
967}
968
York Sunae5591e2008-08-15 00:40:28 -0700969/*
York Sun9b53a9e2008-04-28 02:15:34 -0700970 * Using the fb_var_screeninfo in fb_info we set the resolution of this
971 * particular framebuffer. This function alters the fb_fix_screeninfo stored
972 * in fb_info. It does not alter var in fb_info since we are using that
973 * data. This means we depend on the data in var inside fb_info to be
974 * supported by the hardware. fsl_diu_check_var is always called before
975 * fsl_diu_set_par to ensure this.
976 */
977static int fsl_diu_set_par(struct fb_info *info)
978{
979 unsigned long len;
980 struct fb_var_screeninfo *var = &info->var;
981 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600982 struct fsl_diu_data *data = mfbi->parent;
York Sun9b53a9e2008-04-28 02:15:34 -0700983 struct diu_ad *ad = mfbi->ad;
Timur Tabi3c755b72011-10-04 19:36:51 -0500984 struct diu __iomem *hw;
York Sun9b53a9e2008-04-28 02:15:34 -0700985
Timur Tabib7795052011-12-08 17:27:31 -0600986 hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700987
988 set_fix(info);
York Sun9b53a9e2008-04-28 02:15:34 -0700989
990 len = info->var.yres_virtual * info->fix.line_length;
991 /* Alloc & dealloc each time resolution/bpp change */
992 if (len != info->fix.smem_len) {
993 if (info->fix.smem_start)
994 unmap_video_memory(info);
York Sun9b53a9e2008-04-28 02:15:34 -0700995
996 /* Memory allocation for framebuffer */
997 if (map_video_memory(info)) {
Timur Tabi154152a2011-09-15 16:44:47 -0500998 dev_err(info->dev, "unable to allocate fb memory 1\n");
York Sun9b53a9e2008-04-28 02:15:34 -0700999 return -ENOMEM;
1000 }
1001 }
1002
Timur Tabie09a8c32011-12-19 16:26:17 -06001003 if (diu_ops.get_pixel_format)
1004 ad->pix_fmt = diu_ops.get_pixel_format(data->monitor_port,
1005 var->bits_per_pixel);
1006 else
1007 ad->pix_fmt = fsl_diu_get_pixel_format(var->bits_per_pixel);
1008
York Sun9b53a9e2008-04-28 02:15:34 -07001009 ad->addr = cpu_to_le32(info->fix.smem_start);
York Sunae5591e2008-08-15 00:40:28 -07001010 ad->src_size_g_alpha = cpu_to_le32((var->yres_virtual << 12) |
1011 var->xres_virtual) | mfbi->g_alpha;
1012 /* AOI should not be greater than display size */
York Sun9b53a9e2008-04-28 02:15:34 -07001013 ad->aoi_size = cpu_to_le32((var->yres << 16) | var->xres);
York Sunae5591e2008-08-15 00:40:28 -07001014 ad->offset_xyi = cpu_to_le32((var->yoffset << 16) | var->xoffset);
York Sun9b53a9e2008-04-28 02:15:34 -07001015 ad->offset_xyd = cpu_to_le32((mfbi->y_aoi_d << 16) | mfbi->x_aoi_d);
1016
1017 /* Disable chroma keying function */
1018 ad->ckmax_r = 0;
1019 ad->ckmax_g = 0;
1020 ad->ckmax_b = 0;
1021
1022 ad->ckmin_r = 255;
1023 ad->ckmin_g = 255;
1024 ad->ckmin_b = 255;
1025
Timur Tabi2572df92011-09-28 16:19:51 -05001026 if (mfbi->index == PLANE0)
York Sun9b53a9e2008-04-28 02:15:34 -07001027 update_lcdc(info);
1028 return 0;
1029}
1030
1031static inline __u32 CNVT_TOHW(__u32 val, __u32 width)
1032{
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001033 return ((val << width) + 0x7FFF - val) >> 16;
York Sun9b53a9e2008-04-28 02:15:34 -07001034}
1035
1036/*
1037 * Set a single color register. The values supplied have a 16 bit magnitude
1038 * which needs to be scaled in this function for the hardware. Things to take
1039 * into consideration are how many color registers, if any, are supported with
1040 * the current color visual. With truecolor mode no color palettes are
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001041 * supported. Here a pseudo palette is created which we store the value in
York Sun9b53a9e2008-04-28 02:15:34 -07001042 * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
1043 * color palette.
1044 */
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001045static int fsl_diu_setcolreg(unsigned int regno, unsigned int red,
1046 unsigned int green, unsigned int blue,
1047 unsigned int transp, struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001048{
1049 int ret = 1;
1050
1051 /*
1052 * If greyscale is true, then we convert the RGB value
1053 * to greyscale no matter what visual we are using.
1054 */
1055 if (info->var.grayscale)
1056 red = green = blue = (19595 * red + 38470 * green +
1057 7471 * blue) >> 16;
1058 switch (info->fix.visual) {
1059 case FB_VISUAL_TRUECOLOR:
1060 /*
1061 * 16-bit True Colour. We encode the RGB value
1062 * according to the RGB bitfield information.
1063 */
1064 if (regno < 16) {
1065 u32 *pal = info->pseudo_palette;
1066 u32 v;
1067
1068 red = CNVT_TOHW(red, info->var.red.length);
1069 green = CNVT_TOHW(green, info->var.green.length);
1070 blue = CNVT_TOHW(blue, info->var.blue.length);
1071 transp = CNVT_TOHW(transp, info->var.transp.length);
1072
1073 v = (red << info->var.red.offset) |
1074 (green << info->var.green.offset) |
1075 (blue << info->var.blue.offset) |
1076 (transp << info->var.transp.offset);
1077
1078 pal[regno] = v;
1079 ret = 0;
1080 }
1081 break;
York Sun9b53a9e2008-04-28 02:15:34 -07001082 }
1083
1084 return ret;
1085}
1086
1087/*
1088 * Pan (or wrap, depending on the `vmode' field) the display using the
1089 * 'xoffset' and 'yoffset' fields of the 'var' structure. If the values
1090 * don't fit, return -EINVAL.
1091 */
1092static int fsl_diu_pan_display(struct fb_var_screeninfo *var,
1093 struct fb_info *info)
1094{
1095 if ((info->var.xoffset == var->xoffset) &&
1096 (info->var.yoffset == var->yoffset))
1097 return 0; /* No change, do nothing */
1098
1099 if (var->xoffset < 0 || var->yoffset < 0
1100 || var->xoffset + info->var.xres > info->var.xres_virtual
1101 || var->yoffset + info->var.yres > info->var.yres_virtual)
1102 return -EINVAL;
1103
1104 info->var.xoffset = var->xoffset;
1105 info->var.yoffset = var->yoffset;
1106
1107 if (var->vmode & FB_VMODE_YWRAP)
1108 info->var.vmode |= FB_VMODE_YWRAP;
1109 else
1110 info->var.vmode &= ~FB_VMODE_YWRAP;
1111
York Sunae5591e2008-08-15 00:40:28 -07001112 fsl_diu_set_aoi(info);
1113
York Sun9b53a9e2008-04-28 02:15:34 -07001114 return 0;
1115}
1116
York Sun9b53a9e2008-04-28 02:15:34 -07001117static int fsl_diu_ioctl(struct fb_info *info, unsigned int cmd,
1118 unsigned long arg)
1119{
1120 struct mfb_info *mfbi = info->par;
1121 struct diu_ad *ad = mfbi->ad;
1122 struct mfb_chroma_key ck;
1123 unsigned char global_alpha;
1124 struct aoi_display_offset aoi_d;
1125 __u32 pix_fmt;
1126 void __user *buf = (void __user *)arg;
1127
1128 if (!arg)
1129 return -EINVAL;
Timur Tabi5cc2a362012-10-16 17:33:46 -05001130
1131 dev_dbg(info->dev, "ioctl %08x (dir=%s%s type=%u nr=%u size=%u)\n", cmd,
1132 _IOC_DIR(cmd) & _IOC_READ ? "R" : "",
1133 _IOC_DIR(cmd) & _IOC_WRITE ? "W" : "",
1134 _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
1135
York Sun9b53a9e2008-04-28 02:15:34 -07001136 switch (cmd) {
Timur Tabi36b0b1d2011-10-04 19:36:44 -05001137 case MFB_SET_PIXFMT_OLD:
1138 dev_warn(info->dev,
1139 "MFB_SET_PIXFMT value of 0x%08x is deprecated.\n",
1140 MFB_SET_PIXFMT_OLD);
York Sun9b53a9e2008-04-28 02:15:34 -07001141 case MFB_SET_PIXFMT:
1142 if (copy_from_user(&pix_fmt, buf, sizeof(pix_fmt)))
1143 return -EFAULT;
1144 ad->pix_fmt = pix_fmt;
York Sun9b53a9e2008-04-28 02:15:34 -07001145 break;
Timur Tabi36b0b1d2011-10-04 19:36:44 -05001146 case MFB_GET_PIXFMT_OLD:
1147 dev_warn(info->dev,
1148 "MFB_GET_PIXFMT value of 0x%08x is deprecated.\n",
1149 MFB_GET_PIXFMT_OLD);
York Sun9b53a9e2008-04-28 02:15:34 -07001150 case MFB_GET_PIXFMT:
1151 pix_fmt = ad->pix_fmt;
1152 if (copy_to_user(buf, &pix_fmt, sizeof(pix_fmt)))
1153 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001154 break;
1155 case MFB_SET_AOID:
1156 if (copy_from_user(&aoi_d, buf, sizeof(aoi_d)))
1157 return -EFAULT;
1158 mfbi->x_aoi_d = aoi_d.x_aoi_d;
1159 mfbi->y_aoi_d = aoi_d.y_aoi_d;
York Sun9b53a9e2008-04-28 02:15:34 -07001160 fsl_diu_check_var(&info->var, info);
York Sunae5591e2008-08-15 00:40:28 -07001161 fsl_diu_set_aoi(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001162 break;
1163 case MFB_GET_AOID:
1164 aoi_d.x_aoi_d = mfbi->x_aoi_d;
1165 aoi_d.y_aoi_d = mfbi->y_aoi_d;
1166 if (copy_to_user(buf, &aoi_d, sizeof(aoi_d)))
1167 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001168 break;
1169 case MFB_GET_ALPHA:
1170 global_alpha = mfbi->g_alpha;
1171 if (copy_to_user(buf, &global_alpha, sizeof(global_alpha)))
1172 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001173 break;
1174 case MFB_SET_ALPHA:
1175 /* set panel information */
1176 if (copy_from_user(&global_alpha, buf, sizeof(global_alpha)))
1177 return -EFAULT;
1178 ad->src_size_g_alpha = (ad->src_size_g_alpha & (~0xff)) |
1179 (global_alpha & 0xff);
1180 mfbi->g_alpha = global_alpha;
York Sun9b53a9e2008-04-28 02:15:34 -07001181 break;
1182 case MFB_SET_CHROMA_KEY:
1183 /* set panel winformation */
1184 if (copy_from_user(&ck, buf, sizeof(ck)))
1185 return -EFAULT;
1186
1187 if (ck.enable &&
1188 (ck.red_max < ck.red_min ||
1189 ck.green_max < ck.green_min ||
1190 ck.blue_max < ck.blue_min))
1191 return -EINVAL;
1192
1193 if (!ck.enable) {
1194 ad->ckmax_r = 0;
1195 ad->ckmax_g = 0;
1196 ad->ckmax_b = 0;
1197 ad->ckmin_r = 255;
1198 ad->ckmin_g = 255;
1199 ad->ckmin_b = 255;
1200 } else {
1201 ad->ckmax_r = ck.red_max;
1202 ad->ckmax_g = ck.green_max;
1203 ad->ckmax_b = ck.blue_max;
1204 ad->ckmin_r = ck.red_min;
1205 ad->ckmin_g = ck.green_min;
1206 ad->ckmin_b = ck.blue_min;
1207 }
York Sun9b53a9e2008-04-28 02:15:34 -07001208 break;
Timur Tabie95c17e2012-10-16 17:33:44 -05001209#ifdef CONFIG_PPC_MPC512x
1210 case MFB_SET_GAMMA: {
1211 struct fsl_diu_data *data = mfbi->parent;
1212
1213 if (copy_from_user(data->gamma, buf, sizeof(data->gamma)))
1214 return -EFAULT;
1215 setbits32(&data->diu_reg->gamma, 0); /* Force table reload */
1216 break;
1217 }
1218 case MFB_GET_GAMMA: {
1219 struct fsl_diu_data *data = mfbi->parent;
1220
1221 if (copy_to_user(buf, data->gamma, sizeof(data->gamma)))
1222 return -EFAULT;
1223 break;
1224 }
1225#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001226 default:
Timur Tabi154152a2011-09-15 16:44:47 -05001227 dev_err(info->dev, "unknown ioctl command (0x%08X)\n", cmd);
York Sun9b53a9e2008-04-28 02:15:34 -07001228 return -ENOIOCTLCMD;
1229 }
1230
1231 return 0;
1232}
1233
1234/* turn on fb if count == 1
1235 */
1236static int fsl_diu_open(struct fb_info *info, int user)
1237{
1238 struct mfb_info *mfbi = info->par;
1239 int res = 0;
1240
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001241 /* free boot splash memory on first /dev/fb0 open */
Timur Tabi2572df92011-09-28 16:19:51 -05001242 if ((mfbi->index == PLANE0) && diu_ops.release_bootmem)
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001243 diu_ops.release_bootmem();
1244
York Sun9b53a9e2008-04-28 02:15:34 -07001245 spin_lock(&diu_lock);
1246 mfbi->count++;
1247 if (mfbi->count == 1) {
York Sun9b53a9e2008-04-28 02:15:34 -07001248 fsl_diu_check_var(&info->var, info);
1249 res = fsl_diu_set_par(info);
1250 if (res < 0)
1251 mfbi->count--;
Timur Tabif74de502012-10-16 17:33:45 -05001252 else {
1253 struct fsl_diu_data *data = mfbi->parent;
1254
1255#ifdef CONFIG_NOT_COHERENT_CACHE
1256 /*
1257 * Enable underrun detection and vertical sync
1258 * interrupts.
1259 */
1260 clrbits32(&data->diu_reg->int_mask,
1261 INT_UNDRUN | INT_VSYNC);
1262#else
1263 /* Enable underrun detection */
1264 clrbits32(&data->diu_reg->int_mask, INT_UNDRUN);
1265#endif
Timur Tabi7e47c212011-09-28 16:19:52 -05001266 fsl_diu_enable_panel(info);
Timur Tabif74de502012-10-16 17:33:45 -05001267 }
York Sun9b53a9e2008-04-28 02:15:34 -07001268 }
1269
1270 spin_unlock(&diu_lock);
1271 return res;
1272}
1273
1274/* turn off fb if count == 0
1275 */
1276static int fsl_diu_release(struct fb_info *info, int user)
1277{
1278 struct mfb_info *mfbi = info->par;
1279 int res = 0;
1280
1281 spin_lock(&diu_lock);
1282 mfbi->count--;
Timur Tabif74de502012-10-16 17:33:45 -05001283 if (mfbi->count == 0) {
1284 struct fsl_diu_data *data = mfbi->parent;
1285
1286 /* Disable interrupts */
1287 out_be32(&data->diu_reg->int_mask, 0xffffffff);
Timur Tabi2572df92011-09-28 16:19:51 -05001288 fsl_diu_disable_panel(info);
Timur Tabif74de502012-10-16 17:33:45 -05001289 }
Timur Tabi2572df92011-09-28 16:19:51 -05001290
York Sun9b53a9e2008-04-28 02:15:34 -07001291 spin_unlock(&diu_lock);
1292 return res;
1293}
1294
1295static struct fb_ops fsl_diu_ops = {
1296 .owner = THIS_MODULE,
1297 .fb_check_var = fsl_diu_check_var,
1298 .fb_set_par = fsl_diu_set_par,
1299 .fb_setcolreg = fsl_diu_setcolreg,
York Sun9b53a9e2008-04-28 02:15:34 -07001300 .fb_pan_display = fsl_diu_pan_display,
1301 .fb_fillrect = cfb_fillrect,
1302 .fb_copyarea = cfb_copyarea,
1303 .fb_imageblit = cfb_imageblit,
1304 .fb_ioctl = fsl_diu_ioctl,
1305 .fb_open = fsl_diu_open,
1306 .fb_release = fsl_diu_release,
1307};
1308
Anton Vorontsov05946bc2008-07-04 09:59:38 -07001309static int __devinit install_fb(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001310{
1311 int rc;
1312 struct mfb_info *mfbi = info->par;
1313 const char *aoi_mode, *init_aoi_mode = "320x240";
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001314 struct fb_videomode *db = fsl_diu_mode_db;
1315 unsigned int dbsize = ARRAY_SIZE(fsl_diu_mode_db);
1316 int has_default_mode = 1;
York Sun9b53a9e2008-04-28 02:15:34 -07001317
Timur Tabif934fbd2011-12-19 16:26:14 -06001318 info->var.activate = FB_ACTIVATE_NOW;
1319 info->fbops = &fsl_diu_ops;
Timur Tabi934dbee2011-12-19 16:26:15 -06001320 info->flags = FBINFO_DEFAULT | FBINFO_VIRTFB | FBINFO_PARTIAL_PAN_OK |
1321 FBINFO_READS_FAST;
Timur Tabif934fbd2011-12-19 16:26:14 -06001322 info->pseudo_palette = mfbi->pseudo_palette;
1323
1324 rc = fb_alloc_cmap(&info->cmap, 16, 0);
1325 if (rc)
1326 return rc;
York Sun9b53a9e2008-04-28 02:15:34 -07001327
Timur Tabi2572df92011-09-28 16:19:51 -05001328 if (mfbi->index == PLANE0) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001329 if (mfbi->edid_data) {
1330 /* Now build modedb from EDID */
1331 fb_edid_to_monspecs(mfbi->edid_data, &info->monspecs);
1332 fb_videomode_to_modelist(info->monspecs.modedb,
1333 info->monspecs.modedb_len,
1334 &info->modelist);
1335 db = info->monspecs.modedb;
1336 dbsize = info->monspecs.modedb_len;
1337 }
York Sun9b53a9e2008-04-28 02:15:34 -07001338 aoi_mode = fb_mode;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001339 } else {
York Sun9b53a9e2008-04-28 02:15:34 -07001340 aoi_mode = init_aoi_mode;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001341 }
Timur Tabi63cf8df2011-09-15 16:44:51 -05001342 rc = fb_find_mode(&info->var, info, aoi_mode, db, dbsize, NULL,
1343 default_bpp);
Timur Tabi154152a2011-09-15 16:44:47 -05001344 if (!rc) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001345 /*
1346 * For plane 0 we continue and look into
1347 * driver's internal modedb.
1348 */
Timur Tabi2572df92011-09-28 16:19:51 -05001349 if ((mfbi->index == PLANE0) && mfbi->edid_data)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001350 has_default_mode = 0;
1351 else
1352 return -EINVAL;
York Sun9b53a9e2008-04-28 02:15:34 -07001353 }
1354
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001355 if (!has_default_mode) {
1356 rc = fb_find_mode(&info->var, info, aoi_mode, fsl_diu_mode_db,
Timur Tabi63cf8df2011-09-15 16:44:51 -05001357 ARRAY_SIZE(fsl_diu_mode_db), NULL, default_bpp);
1358 if (rc)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001359 has_default_mode = 1;
1360 }
1361
1362 /* Still not found, use preferred mode from database if any */
1363 if (!has_default_mode && info->monspecs.modedb) {
1364 struct fb_monspecs *specs = &info->monspecs;
1365 struct fb_videomode *modedb = &specs->modedb[0];
1366
1367 /*
1368 * Get preferred timing. If not found,
1369 * first mode in database will be used.
1370 */
1371 if (specs->misc & FB_MISC_1ST_DETAIL) {
1372 int i;
1373
1374 for (i = 0; i < specs->modedb_len; i++) {
1375 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
1376 modedb = &specs->modedb[i];
1377 break;
1378 }
1379 }
1380 }
1381
1382 info->var.bits_per_pixel = default_bpp;
1383 fb_videomode_to_var(&info->var, modedb);
1384 }
1385
York Sun9b53a9e2008-04-28 02:15:34 -07001386 if (fsl_diu_check_var(&info->var, info)) {
Timur Tabi154152a2011-09-15 16:44:47 -05001387 dev_err(info->dev, "fsl_diu_check_var failed\n");
Timur Tabi589c7972011-09-15 16:44:55 -05001388 unmap_video_memory(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001389 fb_dealloc_cmap(&info->cmap);
1390 return -EINVAL;
1391 }
1392
York Sun9b53a9e2008-04-28 02:15:34 -07001393 if (register_framebuffer(info) < 0) {
Timur Tabi154152a2011-09-15 16:44:47 -05001394 dev_err(info->dev, "register_framebuffer failed\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001395 unmap_video_memory(info);
1396 fb_dealloc_cmap(&info->cmap);
1397 return -EINVAL;
1398 }
1399
1400 mfbi->registered = 1;
Timur Tabi154152a2011-09-15 16:44:47 -05001401 dev_info(info->dev, "%s registered successfully\n", mfbi->id);
York Sun9b53a9e2008-04-28 02:15:34 -07001402
1403 return 0;
1404}
1405
Anton Vorontsov05946bc2008-07-04 09:59:38 -07001406static void uninstall_fb(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001407{
1408 struct mfb_info *mfbi = info->par;
1409
1410 if (!mfbi->registered)
1411 return;
1412
Timur Tabi2572df92011-09-28 16:19:51 -05001413 if (mfbi->index == PLANE0)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001414 kfree(mfbi->edid_data);
1415
York Sun9b53a9e2008-04-28 02:15:34 -07001416 unregister_framebuffer(info);
1417 unmap_video_memory(info);
1418 if (&info->cmap)
1419 fb_dealloc_cmap(&info->cmap);
1420
1421 mfbi->registered = 0;
1422}
1423
1424static irqreturn_t fsl_diu_isr(int irq, void *dev_id)
1425{
Timur Tabi3c755b72011-10-04 19:36:51 -05001426 struct diu __iomem *hw = dev_id;
Timur Tabif74de502012-10-16 17:33:45 -05001427 uint32_t status = in_be32(&hw->int_status);
York Sun9b53a9e2008-04-28 02:15:34 -07001428
1429 if (status) {
1430 /* This is the workaround for underrun */
1431 if (status & INT_UNDRUN) {
1432 out_be32(&hw->diu_mode, 0);
York Sun9b53a9e2008-04-28 02:15:34 -07001433 udelay(1);
1434 out_be32(&hw->diu_mode, 1);
1435 }
1436#if defined(CONFIG_NOT_COHERENT_CACHE)
1437 else if (status & INT_VSYNC) {
1438 unsigned int i;
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001439
York Sun9b53a9e2008-04-28 02:15:34 -07001440 for (i = 0; i < coherence_data_size;
1441 i += d_cache_line_size)
1442 __asm__ __volatile__ (
1443 "dcbz 0, %[input]"
1444 ::[input]"r"(&coherence_data[i]));
1445 }
1446#endif
1447 return IRQ_HANDLED;
1448 }
1449 return IRQ_NONE;
1450}
1451
York Sun9b53a9e2008-04-28 02:15:34 -07001452#ifdef CONFIG_PM
1453/*
1454 * Power management hooks. Note that we won't be called from IRQ context,
1455 * unlike the blank functions above, so we may sleep.
1456 */
Grant Likely2dc11582010-08-06 09:25:50 -06001457static int fsl_diu_suspend(struct platform_device *ofdev, pm_message_t state)
York Sun9b53a9e2008-04-28 02:15:34 -07001458{
Timur Tabib7795052011-12-08 17:27:31 -06001459 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001460
Timur Tabib7795052011-12-08 17:27:31 -06001461 data = dev_get_drvdata(&ofdev->dev);
Michael Neulingf7f5ef02012-01-28 19:35:24 +00001462 disable_lcdc(data->fsl_diu_info);
York Sun9b53a9e2008-04-28 02:15:34 -07001463
1464 return 0;
1465}
1466
Grant Likely2dc11582010-08-06 09:25:50 -06001467static int fsl_diu_resume(struct platform_device *ofdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001468{
Timur Tabib7795052011-12-08 17:27:31 -06001469 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001470
Timur Tabib7795052011-12-08 17:27:31 -06001471 data = dev_get_drvdata(&ofdev->dev);
Michael Neulingf7f5ef02012-01-28 19:35:24 +00001472 enable_lcdc(data->fsl_diu_info);
York Sun9b53a9e2008-04-28 02:15:34 -07001473
1474 return 0;
1475}
1476
1477#else
1478#define fsl_diu_suspend NULL
1479#define fsl_diu_resume NULL
1480#endif /* CONFIG_PM */
1481
York Sun9b53a9e2008-04-28 02:15:34 -07001482static ssize_t store_monitor(struct device *device,
1483 struct device_attribute *attr, const char *buf, size_t count)
1484{
Timur Tabi7653aaa2011-07-09 15:38:14 -05001485 enum fsl_diu_monitor_port old_monitor_port;
Timur Tabib7795052011-12-08 17:27:31 -06001486 struct fsl_diu_data *data =
York Sun9b53a9e2008-04-28 02:15:34 -07001487 container_of(attr, struct fsl_diu_data, dev_attr);
1488
Timur Tabib7795052011-12-08 17:27:31 -06001489 old_monitor_port = data->monitor_port;
1490 data->monitor_port = fsl_diu_name_to_port(buf);
York Sun9b53a9e2008-04-28 02:15:34 -07001491
Timur Tabib7795052011-12-08 17:27:31 -06001492 if (old_monitor_port != data->monitor_port) {
York Sun9b53a9e2008-04-28 02:15:34 -07001493 /* All AOIs need adjust pixel format
1494 * fsl_diu_set_par only change the pixsel format here
1495 * unlikely to fail. */
Timur Tabiddd3d902011-12-02 17:03:27 -06001496 unsigned int i;
1497
1498 for (i=0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001499 fsl_diu_set_par(&data->fsl_diu_info[i]);
York Sun9b53a9e2008-04-28 02:15:34 -07001500 }
1501 return count;
1502}
1503
1504static ssize_t show_monitor(struct device *device,
1505 struct device_attribute *attr, char *buf)
1506{
Timur Tabib7795052011-12-08 17:27:31 -06001507 struct fsl_diu_data *data =
York Sun9b53a9e2008-04-28 02:15:34 -07001508 container_of(attr, struct fsl_diu_data, dev_attr);
Timur Tabi7653aaa2011-07-09 15:38:14 -05001509
Timur Tabib7795052011-12-08 17:27:31 -06001510 switch (data->monitor_port) {
Timur Tabi7653aaa2011-07-09 15:38:14 -05001511 case FSL_DIU_PORT_DVI:
1512 return sprintf(buf, "DVI\n");
1513 case FSL_DIU_PORT_LVDS:
1514 return sprintf(buf, "Single-link LVDS\n");
1515 case FSL_DIU_PORT_DLVDS:
1516 return sprintf(buf, "Dual-link LVDS\n");
1517 }
1518
1519 return 0;
York Sun9b53a9e2008-04-28 02:15:34 -07001520}
1521
Timur Tabi9e52ba62011-09-15 16:44:50 -05001522static int __devinit fsl_diu_probe(struct platform_device *pdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001523{
Timur Tabi9e52ba62011-09-15 16:44:50 -05001524 struct device_node *np = pdev->dev.of_node;
York Sun9b53a9e2008-04-28 02:15:34 -07001525 struct mfb_info *mfbi;
Timur Tabib7795052011-12-08 17:27:31 -06001526 struct fsl_diu_data *data;
Timur Tabib7795052011-12-08 17:27:31 -06001527 dma_addr_t dma_addr; /* DMA addr of fsl_diu_data struct */
Timur Tabiddd3d902011-12-02 17:03:27 -06001528 unsigned int i;
1529 int ret;
York Sun9b53a9e2008-04-28 02:15:34 -07001530
Damien Cassouc1f383d2012-07-31 18:39:20 +02001531 data = dmam_alloc_coherent(&pdev->dev, sizeof(struct fsl_diu_data),
1532 &dma_addr, GFP_DMA | __GFP_ZERO);
Timur Tabib7795052011-12-08 17:27:31 -06001533 if (!data)
York Sun9b53a9e2008-04-28 02:15:34 -07001534 return -ENOMEM;
Timur Tabib7795052011-12-08 17:27:31 -06001535 data->dma_addr = dma_addr;
Timur Tabiddd3d902011-12-02 17:03:27 -06001536
1537 /*
1538 * dma_alloc_coherent() uses a page allocator, so the address is
1539 * always page-aligned. We need the memory to be 32-byte aligned,
1540 * so that's good. However, if one day the allocator changes, we
1541 * need to catch that. It's not worth the effort to handle unaligned
1542 * alloctions now because it's highly unlikely to ever be a problem.
1543 */
Timur Tabib7795052011-12-08 17:27:31 -06001544 if ((unsigned long)data & 31) {
Timur Tabiddd3d902011-12-02 17:03:27 -06001545 dev_err(&pdev->dev, "misaligned allocation");
1546 ret = -ENOMEM;
1547 goto error;
1548 }
York Sun9b53a9e2008-04-28 02:15:34 -07001549
Timur Tabib7795052011-12-08 17:27:31 -06001550 spin_lock_init(&data->reg_lock);
Timur Tabi3c755b72011-10-04 19:36:51 -05001551
Timur Tabiddd3d902011-12-02 17:03:27 -06001552 for (i = 0; i < NUM_AOIS; i++) {
Timur Tabib7795052011-12-08 17:27:31 -06001553 struct fb_info *info = &data->fsl_diu_info[i];
Timur Tabiddd3d902011-12-02 17:03:27 -06001554
1555 info->device = &pdev->dev;
Timur Tabib7795052011-12-08 17:27:31 -06001556 info->par = &data->mfb[i];
Timur Tabiddd3d902011-12-02 17:03:27 -06001557
1558 /*
1559 * We store the physical address of the AD in the reserved
1560 * 'paddr' field of the AD itself.
1561 */
Timur Tabib7795052011-12-08 17:27:31 -06001562 data->ad[i].paddr = DMA_ADDR(data, ad[i]);
Timur Tabiddd3d902011-12-02 17:03:27 -06001563
1564 info->fix.smem_start = 0;
1565
1566 /* Initialize the AOI data structure */
1567 mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -07001568 memcpy(mfbi, &mfb_template[i], sizeof(struct mfb_info));
Timur Tabib7795052011-12-08 17:27:31 -06001569 mfbi->parent = data;
1570 mfbi->ad = &data->ad[i];
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001571
Timur Tabi2572df92011-09-28 16:19:51 -05001572 if (mfbi->index == PLANE0) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001573 const u8 *prop;
1574 int len;
1575
1576 /* Get EDID */
1577 prop = of_get_property(np, "edid", &len);
1578 if (prop && len == EDID_LENGTH)
1579 mfbi->edid_data = kmemdup(prop, EDID_LENGTH,
1580 GFP_KERNEL);
1581 }
York Sun9b53a9e2008-04-28 02:15:34 -07001582 }
1583
Timur Tabib7795052011-12-08 17:27:31 -06001584 data->diu_reg = of_iomap(np, 0);
1585 if (!data->diu_reg) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001586 dev_err(&pdev->dev, "cannot map DIU registers\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001587 ret = -EFAULT;
Timur Tabiddd3d902011-12-02 17:03:27 -06001588 goto error;
York Sun9b53a9e2008-04-28 02:15:34 -07001589 }
1590
York Sun9b53a9e2008-04-28 02:15:34 -07001591 /* Get the IRQ of the DIU */
Timur Tabib7795052011-12-08 17:27:31 -06001592 data->irq = irq_of_parse_and_map(np, 0);
York Sun9b53a9e2008-04-28 02:15:34 -07001593
Timur Tabib7795052011-12-08 17:27:31 -06001594 if (!data->irq) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001595 dev_err(&pdev->dev, "could not get DIU IRQ\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001596 ret = -EINVAL;
1597 goto error;
1598 }
Timur Tabib7795052011-12-08 17:27:31 -06001599 data->monitor_port = monitor_port;
York Sun9b53a9e2008-04-28 02:15:34 -07001600
Timur Tabiddd3d902011-12-02 17:03:27 -06001601 /* Initialize the dummy Area Descriptor */
Timur Tabib7795052011-12-08 17:27:31 -06001602 data->dummy_ad.addr = cpu_to_le32(DMA_ADDR(data, dummy_aoi));
1603 data->dummy_ad.pix_fmt = 0x88882317;
1604 data->dummy_ad.src_size_g_alpha = cpu_to_le32((4 << 12) | 4);
1605 data->dummy_ad.aoi_size = cpu_to_le32((4 << 16) | 2);
1606 data->dummy_ad.offset_xyi = 0;
1607 data->dummy_ad.offset_xyd = 0;
1608 data->dummy_ad.next_ad = 0;
1609 data->dummy_ad.paddr = DMA_ADDR(data, dummy_ad);
York Sun9b53a9e2008-04-28 02:15:34 -07001610
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001611 /*
Timur Tabi7af3b132012-10-16 17:33:48 -05001612 * Let DIU continue to display splash screen if it was pre-initialized
1613 * by the bootloader; otherwise, clear the display.
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001614 */
Timur Tabi7af3b132012-10-16 17:33:48 -05001615 if (in_be32(&data->diu_reg->diu_mode) == MFB_MODE0)
1616 out_be32(&data->diu_reg->desc[0], 0);
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001617
Timur Tabib7795052011-12-08 17:27:31 -06001618 out_be32(&data->diu_reg->desc[1], data->dummy_ad.paddr);
1619 out_be32(&data->diu_reg->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -07001620
Timur Tabiddd3d902011-12-02 17:03:27 -06001621 for (i = 0; i < NUM_AOIS; i++) {
Timur Tabib7795052011-12-08 17:27:31 -06001622 ret = install_fb(&data->fsl_diu_info[i]);
York Sun9b53a9e2008-04-28 02:15:34 -07001623 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001624 dev_err(&pdev->dev, "could not register fb %d\n", i);
York Sun9b53a9e2008-04-28 02:15:34 -07001625 goto error;
1626 }
1627 }
1628
Timur Tabif74de502012-10-16 17:33:45 -05001629 /*
1630 * Older versions of U-Boot leave interrupts enabled, so disable
1631 * all of them and clear the status register.
1632 */
1633 out_be32(&data->diu_reg->int_mask, 0xffffffff);
1634 in_be32(&data->diu_reg->int_status);
1635
1636 ret = request_irq(data->irq, fsl_diu_isr, 0, "fsl-diu-fb",
1637 &data->diu_reg);
1638 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001639 dev_err(&pdev->dev, "could not claim irq\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001640 goto error;
1641 }
1642
Timur Tabib7795052011-12-08 17:27:31 -06001643 sysfs_attr_init(&data->dev_attr.attr);
1644 data->dev_attr.attr.name = "monitor";
1645 data->dev_attr.attr.mode = S_IRUGO|S_IWUSR;
1646 data->dev_attr.show = show_monitor;
1647 data->dev_attr.store = store_monitor;
1648 ret = device_create_file(&pdev->dev, &data->dev_attr);
Timur Tabiddd3d902011-12-02 17:03:27 -06001649 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001650 dev_err(&pdev->dev, "could not create sysfs file %s\n",
Timur Tabib7795052011-12-08 17:27:31 -06001651 data->dev_attr.attr.name);
York Sun9b53a9e2008-04-28 02:15:34 -07001652 }
1653
Timur Tabib7795052011-12-08 17:27:31 -06001654 dev_set_drvdata(&pdev->dev, data);
York Sun9b53a9e2008-04-28 02:15:34 -07001655 return 0;
1656
1657error:
Timur Tabiddd3d902011-12-02 17:03:27 -06001658 for (i = 0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001659 uninstall_fb(&data->fsl_diu_info[i]);
Timur Tabi3f78bbd2011-09-15 16:44:56 -05001660
Timur Tabib7795052011-12-08 17:27:31 -06001661 iounmap(data->diu_reg);
York Sun9b53a9e2008-04-28 02:15:34 -07001662
York Sun9b53a9e2008-04-28 02:15:34 -07001663 return ret;
1664}
1665
Timur Tabi9e52ba62011-09-15 16:44:50 -05001666static int fsl_diu_remove(struct platform_device *pdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001667{
Timur Tabib7795052011-12-08 17:27:31 -06001668 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001669 int i;
1670
Timur Tabib7795052011-12-08 17:27:31 -06001671 data = dev_get_drvdata(&pdev->dev);
1672 disable_lcdc(&data->fsl_diu_info[0]);
Timur Tabif74de502012-10-16 17:33:45 -05001673
1674 free_irq(data->irq, &data->diu_reg);
Timur Tabiddd3d902011-12-02 17:03:27 -06001675
1676 for (i = 0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001677 uninstall_fb(&data->fsl_diu_info[i]);
Timur Tabiddd3d902011-12-02 17:03:27 -06001678
Timur Tabib7795052011-12-08 17:27:31 -06001679 iounmap(data->diu_reg);
Timur Tabiddd3d902011-12-02 17:03:27 -06001680
York Sun9b53a9e2008-04-28 02:15:34 -07001681 return 0;
1682}
1683
1684#ifndef MODULE
1685static int __init fsl_diu_setup(char *options)
1686{
1687 char *opt;
1688 unsigned long val;
1689
1690 if (!options || !*options)
1691 return 0;
1692
1693 while ((opt = strsep(&options, ",")) != NULL) {
1694 if (!*opt)
1695 continue;
1696 if (!strncmp(opt, "monitor=", 8)) {
Timur Tabi7653aaa2011-07-09 15:38:14 -05001697 monitor_port = fsl_diu_name_to_port(opt + 8);
York Sun9b53a9e2008-04-28 02:15:34 -07001698 } else if (!strncmp(opt, "bpp=", 4)) {
1699 if (!strict_strtoul(opt + 4, 10, &val))
1700 default_bpp = val;
1701 } else
1702 fb_mode = opt;
1703 }
1704
1705 return 0;
1706}
1707#endif
1708
1709static struct of_device_id fsl_diu_match[] = {
Anatolij Gustschind24720a2010-02-17 07:33:22 -07001710#ifdef CONFIG_PPC_MPC512x
1711 {
1712 .compatible = "fsl,mpc5121-diu",
1713 },
1714#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001715 {
1716 .compatible = "fsl,diu",
1717 },
1718 {}
1719};
1720MODULE_DEVICE_TABLE(of, fsl_diu_match);
1721
Grant Likely28541d02011-02-22 21:07:43 -07001722static struct platform_driver fsl_diu_driver = {
Grant Likely40182942010-04-13 16:13:02 -07001723 .driver = {
Timur Tabif8c6bf62011-09-15 16:44:53 -05001724 .name = "fsl-diu-fb",
Grant Likely40182942010-04-13 16:13:02 -07001725 .owner = THIS_MODULE,
1726 .of_match_table = fsl_diu_match,
1727 },
York Sun9b53a9e2008-04-28 02:15:34 -07001728 .probe = fsl_diu_probe,
1729 .remove = fsl_diu_remove,
1730 .suspend = fsl_diu_suspend,
1731 .resume = fsl_diu_resume,
1732};
1733
1734static int __init fsl_diu_init(void)
1735{
1736#ifdef CONFIG_NOT_COHERENT_CACHE
1737 struct device_node *np;
1738 const u32 *prop;
1739#endif
1740 int ret;
1741#ifndef MODULE
1742 char *option;
1743
1744 /*
1745 * For kernel boot options (in 'video=xxxfb:<options>' format)
1746 */
1747 if (fb_get_options("fslfb", &option))
1748 return -ENODEV;
1749 fsl_diu_setup(option);
Timur Tabi7653aaa2011-07-09 15:38:14 -05001750#else
1751 monitor_port = fsl_diu_name_to_port(monitor_string);
York Sun9b53a9e2008-04-28 02:15:34 -07001752#endif
Timur Tabi154152a2011-09-15 16:44:47 -05001753 pr_info("Freescale Display Interface Unit (DIU) framebuffer driver\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001754
1755#ifdef CONFIG_NOT_COHERENT_CACHE
1756 np = of_find_node_by_type(NULL, "cpu");
1757 if (!np) {
Timur Tabi154152a2011-09-15 16:44:47 -05001758 pr_err("fsl-diu-fb: can't find 'cpu' device node\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001759 return -ENODEV;
1760 }
1761
1762 prop = of_get_property(np, "d-cache-size", NULL);
Julia Lawall5394ba02008-08-05 13:01:28 -07001763 if (prop == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -05001764 pr_err("fsl-diu-fb: missing 'd-cache-size' property' "
1765 "in 'cpu' node\n");
Julia Lawall5394ba02008-08-05 13:01:28 -07001766 of_node_put(np);
York Sun9b53a9e2008-04-28 02:15:34 -07001767 return -ENODEV;
Julia Lawall5394ba02008-08-05 13:01:28 -07001768 }
York Sun9b53a9e2008-04-28 02:15:34 -07001769
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001770 /*
1771 * Freescale PLRU requires 13/8 times the cache size to do a proper
1772 * displacement flush
York Sun9b53a9e2008-04-28 02:15:34 -07001773 */
Timur Tabi9e52ba62011-09-15 16:44:50 -05001774 coherence_data_size = be32_to_cpup(prop) * 13;
York Sun9b53a9e2008-04-28 02:15:34 -07001775 coherence_data_size /= 8;
1776
Timur Tabi5cc2a362012-10-16 17:33:46 -05001777 pr_debug("fsl-diu-fb: coherence data size is %zu bytes\n",
1778 coherence_data_size);
1779
York Sun9b53a9e2008-04-28 02:15:34 -07001780 prop = of_get_property(np, "d-cache-line-size", NULL);
Julia Lawall5394ba02008-08-05 13:01:28 -07001781 if (prop == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -05001782 pr_err("fsl-diu-fb: missing 'd-cache-line-size' property' "
1783 "in 'cpu' node\n");
Julia Lawall5394ba02008-08-05 13:01:28 -07001784 of_node_put(np);
York Sun9b53a9e2008-04-28 02:15:34 -07001785 return -ENODEV;
Julia Lawall5394ba02008-08-05 13:01:28 -07001786 }
Timur Tabi9e52ba62011-09-15 16:44:50 -05001787 d_cache_line_size = be32_to_cpup(prop);
York Sun9b53a9e2008-04-28 02:15:34 -07001788
Timur Tabi5cc2a362012-10-16 17:33:46 -05001789 pr_debug("fsl-diu-fb: cache lines size is %u bytes\n",
1790 d_cache_line_size);
1791
York Sun9b53a9e2008-04-28 02:15:34 -07001792 of_node_put(np);
1793 coherence_data = vmalloc(coherence_data_size);
Timur Tabi5cc2a362012-10-16 17:33:46 -05001794 if (!coherence_data) {
1795 pr_err("fsl-diu-fb: could not allocate coherence data "
1796 "(size=%zu)\n", coherence_data_size);
York Sun9b53a9e2008-04-28 02:15:34 -07001797 return -ENOMEM;
Timur Tabi5cc2a362012-10-16 17:33:46 -05001798 }
1799
York Sun9b53a9e2008-04-28 02:15:34 -07001800#endif
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001801
Grant Likely28541d02011-02-22 21:07:43 -07001802 ret = platform_driver_register(&fsl_diu_driver);
York Sun9b53a9e2008-04-28 02:15:34 -07001803 if (ret) {
Timur Tabi154152a2011-09-15 16:44:47 -05001804 pr_err("fsl-diu-fb: failed to register platform driver\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001805#if defined(CONFIG_NOT_COHERENT_CACHE)
1806 vfree(coherence_data);
1807#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001808 }
1809 return ret;
1810}
1811
1812static void __exit fsl_diu_exit(void)
1813{
Grant Likely28541d02011-02-22 21:07:43 -07001814 platform_driver_unregister(&fsl_diu_driver);
York Sun9b53a9e2008-04-28 02:15:34 -07001815#if defined(CONFIG_NOT_COHERENT_CACHE)
1816 vfree(coherence_data);
1817#endif
1818}
1819
1820module_init(fsl_diu_init);
1821module_exit(fsl_diu_exit);
1822
1823MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
1824MODULE_DESCRIPTION("Freescale DIU framebuffer driver");
1825MODULE_LICENSE("GPL");
1826
1827module_param_named(mode, fb_mode, charp, 0);
1828MODULE_PARM_DESC(mode,
1829 "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
1830module_param_named(bpp, default_bpp, ulong, 0);
Timur Tabi154152a2011-09-15 16:44:47 -05001831MODULE_PARM_DESC(bpp, "Specify bit-per-pixel if not specified in 'mode'");
Timur Tabi7653aaa2011-07-09 15:38:14 -05001832module_param_named(monitor, monitor_string, charp, 0);
1833MODULE_PARM_DESC(monitor, "Specify the monitor port "
1834 "(\"dvi\", \"lvds\", or \"dlvds\") if supported by the platform");
York Sun9b53a9e2008-04-28 02:15:34 -07001835