blob: 6c278056fc60c858209b987f97163b1901f4d61f [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 */
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -080058static struct fb_videomode fsl_diu_mode_db[] = {
York Sun9b53a9e2008-04-28 02:15:34 -070059 {
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;
345};
346
Timur Tabiddd3d902011-12-02 17:03:27 -0600347/**
348 * struct fsl_diu_data - per-DIU data structure
349 * @dma_addr: DMA address of this structure
350 * @fsl_diu_info: fb_info objects, one per AOI
351 * @dev_attr: sysfs structure
352 * @irq: IRQ
Timur Tabiddd3d902011-12-02 17:03:27 -0600353 * @monitor_port: the monitor port this DIU is connected to
354 * @diu_reg: pointer to the DIU hardware registers
355 * @reg_lock: spinlock for register access
356 * @dummy_aoi: video buffer for the 4x4 32-bit dummy AOI
357 * dummy_ad: DIU Area Descriptor for the dummy AOI
358 * @ad[]: Area Descriptors for each real AOI
359 * @gamma: gamma color table
360 * @cursor: hardware cursor data
361 *
362 * This data structure must be allocated with 32-byte alignment, so that the
363 * internal fields can be aligned properly.
364 */
365struct fsl_diu_data {
366 dma_addr_t dma_addr;
367 struct fb_info fsl_diu_info[NUM_AOIS];
368 struct mfb_info mfb[NUM_AOIS];
369 struct device_attribute dev_attr;
370 unsigned int irq;
Timur Tabiddd3d902011-12-02 17:03:27 -0600371 enum fsl_diu_monitor_port monitor_port;
372 struct diu __iomem *diu_reg;
373 spinlock_t reg_lock;
374 u8 dummy_aoi[4 * 4 * 4];
375 struct diu_ad dummy_ad __aligned(8);
376 struct diu_ad ad[NUM_AOIS] __aligned(8);
377 u8 gamma[256 * 3] __aligned(32);
Timur Tabi38dd2da2013-03-30 02:36:00 +0200378 /* It's easier to parse the cursor data as little-endian */
379 __le16 cursor[MAX_CURS * MAX_CURS] __aligned(32);
380 /* Blank cursor data -- used to hide the cursor */
381 __le16 blank_cursor[MAX_CURS * MAX_CURS] __aligned(32);
Timur Tabie7b42712012-10-16 17:33:50 -0500382 uint8_t edid_data[EDID_LENGTH];
383 bool has_edid;
Timur Tabiddd3d902011-12-02 17:03:27 -0600384} __aligned(32);
385
386/* Determine the DMA address of a member of the fsl_diu_data structure */
387#define DMA_ADDR(p, f) ((p)->dma_addr + offsetof(struct fsl_diu_data, f))
York Sun9b53a9e2008-04-28 02:15:34 -0700388
389static struct mfb_info mfb_template[] = {
Timur Tabi2572df92011-09-28 16:19:51 -0500390 {
391 .index = PLANE0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500392 .id = "Panel0",
393 .registered = 0,
394 .count = 0,
395 .x_aoi_d = 0,
396 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700397 },
Timur Tabi2572df92011-09-28 16:19:51 -0500398 {
399 .index = PLANE1_AOI0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500400 .id = "Panel1 AOI0",
401 .registered = 0,
402 .g_alpha = 0xff,
403 .count = 0,
404 .x_aoi_d = 0,
405 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700406 },
Timur Tabi2572df92011-09-28 16:19:51 -0500407 {
408 .index = PLANE1_AOI1,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500409 .id = "Panel1 AOI1",
410 .registered = 0,
411 .g_alpha = 0xff,
412 .count = 0,
413 .x_aoi_d = 0,
414 .y_aoi_d = 480,
York Sun9b53a9e2008-04-28 02:15:34 -0700415 },
Timur Tabi2572df92011-09-28 16:19:51 -0500416 {
417 .index = PLANE2_AOI0,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500418 .id = "Panel2 AOI0",
419 .registered = 0,
420 .g_alpha = 0xff,
421 .count = 0,
422 .x_aoi_d = 640,
423 .y_aoi_d = 0,
York Sun9b53a9e2008-04-28 02:15:34 -0700424 },
Timur Tabi2572df92011-09-28 16:19:51 -0500425 {
426 .index = PLANE2_AOI1,
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500427 .id = "Panel2 AOI1",
428 .registered = 0,
429 .g_alpha = 0xff,
430 .count = 0,
431 .x_aoi_d = 640,
432 .y_aoi_d = 480,
York Sun9b53a9e2008-04-28 02:15:34 -0700433 },
434};
435
Timur Tabi5cc2a362012-10-16 17:33:46 -0500436#ifdef DEBUG
437static void __attribute__ ((unused)) fsl_diu_dump(struct diu __iomem *hw)
438{
439 mb();
440 pr_debug("DIU: desc=%08x,%08x,%08x, gamma=%08x pallete=%08x "
441 "cursor=%08x curs_pos=%08x diu_mode=%08x bgnd=%08x "
442 "disp_size=%08x hsyn_para=%08x vsyn_para=%08x syn_pol=%08x "
443 "thresholds=%08x int_mask=%08x plut=%08x\n",
444 hw->desc[0], hw->desc[1], hw->desc[2], hw->gamma,
445 hw->pallete, hw->cursor, hw->curs_pos, hw->diu_mode,
446 hw->bgnd, hw->disp_size, hw->hsyn_para, hw->vsyn_para,
447 hw->syn_pol, hw->thresholds, hw->int_mask, hw->plut);
448 rmb();
449}
450#endif
451
Timur Tabi6b51d512008-07-23 21:31:39 -0700452/**
Timur Tabi7653aaa2011-07-09 15:38:14 -0500453 * fsl_diu_name_to_port - convert a port name to a monitor port enum
454 *
455 * Takes the name of a monitor port ("dvi", "lvds", or "dlvds") and returns
456 * the enum fsl_diu_monitor_port that corresponds to that string.
457 *
458 * For compatibility with older versions, a number ("0", "1", or "2") is also
459 * supported.
460 *
461 * If the string is unknown, DVI is assumed.
462 *
463 * If the particular port is not supported by the platform, another port
464 * (platform-specific) is chosen instead.
465 */
466static enum fsl_diu_monitor_port fsl_diu_name_to_port(const char *s)
467{
468 enum fsl_diu_monitor_port port = FSL_DIU_PORT_DVI;
469 unsigned long val;
470
471 if (s) {
472 if (!strict_strtoul(s, 10, &val) && (val <= 2))
473 port = (enum fsl_diu_monitor_port) val;
474 else if (strncmp(s, "lvds", 4) == 0)
475 port = FSL_DIU_PORT_LVDS;
476 else if (strncmp(s, "dlvds", 5) == 0)
477 port = FSL_DIU_PORT_DLVDS;
478 }
479
480 return diu_ops.valid_monitor_port(port);
481}
482
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000483/*
484 * Workaround for failed writing desc register of planes.
485 * Needed with MPC5121 DIU rev 2.0 silicon.
486 */
487void wr_reg_wa(u32 *reg, u32 val)
488{
489 do {
490 out_be32(reg, val);
491 } while (in_be32(reg) != val);
492}
493
Timur Tabi7e47c212011-09-28 16:19:52 -0500494static void fsl_diu_enable_panel(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700495{
496 struct mfb_info *pmfbi, *cmfbi, *mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -0700497 struct diu_ad *ad = mfbi->ad;
Timur Tabib7795052011-12-08 17:27:31 -0600498 struct fsl_diu_data *data = mfbi->parent;
499 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700500
Timur Tabi7e47c212011-09-28 16:19:52 -0500501 switch (mfbi->index) {
502 case PLANE0:
Timur Tabi7af3b132012-10-16 17:33:48 -0500503 wr_reg_wa(&hw->desc[0], ad->paddr);
Timur Tabi7e47c212011-09-28 16:19:52 -0500504 break;
505 case PLANE1_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600506 cmfbi = &data->mfb[2];
Timur Tabi7e47c212011-09-28 16:19:52 -0500507 if (hw->desc[1] != ad->paddr) { /* AOI0 closed */
508 if (cmfbi->count > 0) /* AOI1 open */
509 ad->next_ad =
510 cpu_to_le32(cmfbi->ad->paddr);
511 else
512 ad->next_ad = 0;
513 wr_reg_wa(&hw->desc[1], ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700514 }
Timur Tabi7e47c212011-09-28 16:19:52 -0500515 break;
516 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600517 cmfbi = &data->mfb[4];
Timur Tabi7e47c212011-09-28 16:19:52 -0500518 if (hw->desc[2] != ad->paddr) { /* AOI0 closed */
519 if (cmfbi->count > 0) /* AOI1 open */
520 ad->next_ad =
521 cpu_to_le32(cmfbi->ad->paddr);
522 else
523 ad->next_ad = 0;
524 wr_reg_wa(&hw->desc[2], ad->paddr);
525 }
526 break;
527 case PLANE1_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600528 pmfbi = &data->mfb[1];
Timur Tabi7e47c212011-09-28 16:19:52 -0500529 ad->next_ad = 0;
Timur Tabib7795052011-12-08 17:27:31 -0600530 if (hw->desc[1] == data->dummy_ad.paddr)
Timur Tabi7e47c212011-09-28 16:19:52 -0500531 wr_reg_wa(&hw->desc[1], ad->paddr);
532 else /* AOI0 open */
533 pmfbi->ad->next_ad = cpu_to_le32(ad->paddr);
534 break;
535 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600536 pmfbi = &data->mfb[3];
Timur Tabi7e47c212011-09-28 16:19:52 -0500537 ad->next_ad = 0;
Timur Tabib7795052011-12-08 17:27:31 -0600538 if (hw->desc[2] == data->dummy_ad.paddr)
Timur Tabi7e47c212011-09-28 16:19:52 -0500539 wr_reg_wa(&hw->desc[2], ad->paddr);
540 else /* AOI0 was open */
541 pmfbi->ad->next_ad = cpu_to_le32(ad->paddr);
542 break;
543 }
York Sun9b53a9e2008-04-28 02:15:34 -0700544}
545
Timur Tabi2572df92011-09-28 16:19:51 -0500546static void fsl_diu_disable_panel(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -0700547{
548 struct mfb_info *pmfbi, *cmfbi, *mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -0700549 struct diu_ad *ad = mfbi->ad;
Timur Tabib7795052011-12-08 17:27:31 -0600550 struct fsl_diu_data *data = mfbi->parent;
551 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700552
553 switch (mfbi->index) {
Timur Tabi2572df92011-09-28 16:19:51 -0500554 case PLANE0:
Timur Tabi7af3b132012-10-16 17:33:48 -0500555 wr_reg_wa(&hw->desc[0], 0);
York Sun9b53a9e2008-04-28 02:15:34 -0700556 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500557 case PLANE1_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600558 cmfbi = &data->mfb[2];
York Sun9b53a9e2008-04-28 02:15:34 -0700559 if (cmfbi->count > 0) /* AOI1 is open */
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000560 wr_reg_wa(&hw->desc[1], cmfbi->ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700561 /* move AOI1 to the first */
562 else /* AOI1 was closed */
Timur Tabib7795052011-12-08 17:27:31 -0600563 wr_reg_wa(&hw->desc[1], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700564 /* close AOI 0 */
565 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500566 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600567 cmfbi = &data->mfb[4];
York Sun9b53a9e2008-04-28 02:15:34 -0700568 if (cmfbi->count > 0) /* AOI1 is open */
Anatolij Gustschin0d9dab32010-07-23 04:00:35 +0000569 wr_reg_wa(&hw->desc[2], cmfbi->ad->paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700570 /* move AOI1 to the first */
571 else /* AOI1 was closed */
Timur Tabib7795052011-12-08 17:27:31 -0600572 wr_reg_wa(&hw->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700573 /* close AOI 0 */
574 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500575 case PLANE1_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600576 pmfbi = &data->mfb[1];
York Sun9b53a9e2008-04-28 02:15:34 -0700577 if (hw->desc[1] != ad->paddr) {
578 /* AOI1 is not the first in the chain */
579 if (pmfbi->count > 0)
580 /* AOI0 is open, must be the first */
581 pmfbi->ad->next_ad = 0;
582 } else /* AOI1 is the first in the chain */
Timur Tabib7795052011-12-08 17:27:31 -0600583 wr_reg_wa(&hw->desc[1], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700584 /* close AOI 1 */
585 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500586 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600587 pmfbi = &data->mfb[3];
York Sun9b53a9e2008-04-28 02:15:34 -0700588 if (hw->desc[2] != ad->paddr) {
589 /* AOI1 is not the first in the chain */
590 if (pmfbi->count > 0)
591 /* AOI0 is open, must be the first */
592 pmfbi->ad->next_ad = 0;
593 } else /* AOI1 is the first in the chain */
Timur Tabib7795052011-12-08 17:27:31 -0600594 wr_reg_wa(&hw->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -0700595 /* close AOI 1 */
596 break;
York Sun9b53a9e2008-04-28 02:15:34 -0700597 }
York Sun9b53a9e2008-04-28 02:15:34 -0700598}
599
600static void enable_lcdc(struct fb_info *info)
601{
York Sun9b53a9e2008-04-28 02:15:34 -0700602 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600603 struct fsl_diu_data *data = mfbi->parent;
604 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700605
Timur Tabid397e9162011-12-19 16:26:16 -0600606 out_be32(&hw->diu_mode, MFB_MODE1);
York Sun9b53a9e2008-04-28 02:15:34 -0700607}
608
609static void disable_lcdc(struct fb_info *info)
610{
York Sun9b53a9e2008-04-28 02:15:34 -0700611 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600612 struct fsl_diu_data *data = mfbi->parent;
613 struct diu __iomem *hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700614
Timur Tabid397e9162011-12-19 16:26:16 -0600615 out_be32(&hw->diu_mode, 0);
York Sun9b53a9e2008-04-28 02:15:34 -0700616}
617
618static void adjust_aoi_size_position(struct fb_var_screeninfo *var,
619 struct fb_info *info)
620{
621 struct mfb_info *lower_aoi_mfbi, *upper_aoi_mfbi, *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600622 struct fsl_diu_data *data = mfbi->parent;
Timur Tabi2572df92011-09-28 16:19:51 -0500623 int available_height, upper_aoi_bottom;
624 enum mfb_index index = mfbi->index;
York Sun9b53a9e2008-04-28 02:15:34 -0700625 int lower_aoi_is_open, upper_aoi_is_open;
626 __u32 base_plane_width, base_plane_height, upper_aoi_height;
627
Timur Tabib7795052011-12-08 17:27:31 -0600628 base_plane_width = data->fsl_diu_info[0].var.xres;
629 base_plane_height = data->fsl_diu_info[0].var.yres;
York Sun9b53a9e2008-04-28 02:15:34 -0700630
York Sunfdfaa48332008-08-15 00:40:29 -0700631 if (mfbi->x_aoi_d < 0)
632 mfbi->x_aoi_d = 0;
633 if (mfbi->y_aoi_d < 0)
634 mfbi->y_aoi_d = 0;
York Sun9b53a9e2008-04-28 02:15:34 -0700635 switch (index) {
Timur Tabi2572df92011-09-28 16:19:51 -0500636 case PLANE0:
York Sun9b53a9e2008-04-28 02:15:34 -0700637 if (mfbi->x_aoi_d != 0)
638 mfbi->x_aoi_d = 0;
639 if (mfbi->y_aoi_d != 0)
640 mfbi->y_aoi_d = 0;
641 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500642 case PLANE1_AOI0:
643 case PLANE2_AOI0:
Timur Tabib7795052011-12-08 17:27:31 -0600644 lower_aoi_mfbi = data->fsl_diu_info[index+1].par;
York Sun9b53a9e2008-04-28 02:15:34 -0700645 lower_aoi_is_open = lower_aoi_mfbi->count > 0 ? 1 : 0;
646 if (var->xres > base_plane_width)
647 var->xres = base_plane_width;
648 if ((mfbi->x_aoi_d + var->xres) > base_plane_width)
649 mfbi->x_aoi_d = base_plane_width - var->xres;
650
651 if (lower_aoi_is_open)
652 available_height = lower_aoi_mfbi->y_aoi_d;
653 else
654 available_height = base_plane_height;
655 if (var->yres > available_height)
656 var->yres = available_height;
657 if ((mfbi->y_aoi_d + var->yres) > available_height)
658 mfbi->y_aoi_d = available_height - var->yres;
659 break;
Timur Tabi2572df92011-09-28 16:19:51 -0500660 case PLANE1_AOI1:
661 case PLANE2_AOI1:
Timur Tabib7795052011-12-08 17:27:31 -0600662 upper_aoi_mfbi = data->fsl_diu_info[index-1].par;
663 upper_aoi_height = data->fsl_diu_info[index-1].var.yres;
York Sun9b53a9e2008-04-28 02:15:34 -0700664 upper_aoi_bottom = upper_aoi_mfbi->y_aoi_d + upper_aoi_height;
665 upper_aoi_is_open = upper_aoi_mfbi->count > 0 ? 1 : 0;
666 if (var->xres > base_plane_width)
667 var->xres = base_plane_width;
668 if ((mfbi->x_aoi_d + var->xres) > base_plane_width)
669 mfbi->x_aoi_d = base_plane_width - var->xres;
670 if (mfbi->y_aoi_d < 0)
671 mfbi->y_aoi_d = 0;
672 if (upper_aoi_is_open) {
673 if (mfbi->y_aoi_d < upper_aoi_bottom)
674 mfbi->y_aoi_d = upper_aoi_bottom;
675 available_height = base_plane_height
676 - upper_aoi_bottom;
677 } else
678 available_height = base_plane_height;
679 if (var->yres > available_height)
680 var->yres = available_height;
681 if ((mfbi->y_aoi_d + var->yres) > base_plane_height)
682 mfbi->y_aoi_d = base_plane_height - var->yres;
683 break;
684 }
685}
686/*
687 * Checks to see if the hardware supports the state requested by var passed
688 * in. This function does not alter the hardware state! If the var passed in
689 * is slightly off by what the hardware can support then we alter the var
690 * PASSED in to what we can do. If the hardware doesn't support mode change
691 * a -EINVAL will be returned by the upper layers.
692 */
693static int fsl_diu_check_var(struct fb_var_screeninfo *var,
694 struct fb_info *info)
695{
York Sun9b53a9e2008-04-28 02:15:34 -0700696 if (var->xres_virtual < var->xres)
697 var->xres_virtual = var->xres;
698 if (var->yres_virtual < var->yres)
699 var->yres_virtual = var->yres;
700
701 if (var->xoffset < 0)
702 var->xoffset = 0;
703
704 if (var->yoffset < 0)
705 var->yoffset = 0;
706
707 if (var->xoffset + info->var.xres > info->var.xres_virtual)
708 var->xoffset = info->var.xres_virtual - info->var.xres;
709
710 if (var->yoffset + info->var.yres > info->var.yres_virtual)
711 var->yoffset = info->var.yres_virtual - info->var.yres;
712
713 if ((var->bits_per_pixel != 32) && (var->bits_per_pixel != 24) &&
714 (var->bits_per_pixel != 16))
715 var->bits_per_pixel = default_bpp;
716
717 switch (var->bits_per_pixel) {
718 case 16:
719 var->red.length = 5;
720 var->red.offset = 11;
721 var->red.msb_right = 0;
722
723 var->green.length = 6;
724 var->green.offset = 5;
725 var->green.msb_right = 0;
726
727 var->blue.length = 5;
728 var->blue.offset = 0;
729 var->blue.msb_right = 0;
730
731 var->transp.length = 0;
732 var->transp.offset = 0;
733 var->transp.msb_right = 0;
734 break;
735 case 24:
736 var->red.length = 8;
737 var->red.offset = 0;
738 var->red.msb_right = 0;
739
740 var->green.length = 8;
741 var->green.offset = 8;
742 var->green.msb_right = 0;
743
744 var->blue.length = 8;
745 var->blue.offset = 16;
746 var->blue.msb_right = 0;
747
748 var->transp.length = 0;
749 var->transp.offset = 0;
750 var->transp.msb_right = 0;
751 break;
752 case 32:
753 var->red.length = 8;
754 var->red.offset = 16;
755 var->red.msb_right = 0;
756
757 var->green.length = 8;
758 var->green.offset = 8;
759 var->green.msb_right = 0;
760
761 var->blue.length = 8;
762 var->blue.offset = 0;
763 var->blue.msb_right = 0;
764
765 var->transp.length = 8;
766 var->transp.offset = 24;
767 var->transp.msb_right = 0;
768
769 break;
770 }
York Sun9b53a9e2008-04-28 02:15:34 -0700771
772 var->height = -1;
773 var->width = -1;
774 var->grayscale = 0;
775
776 /* Copy nonstd field to/from sync for fbset usage */
777 var->sync |= var->nonstd;
778 var->nonstd |= var->sync;
779
780 adjust_aoi_size_position(var, info);
781 return 0;
782}
783
784static void set_fix(struct fb_info *info)
785{
786 struct fb_fix_screeninfo *fix = &info->fix;
787 struct fb_var_screeninfo *var = &info->var;
788 struct mfb_info *mfbi = info->par;
789
Timur Tabiec02dd22011-09-15 16:44:54 -0500790 strncpy(fix->id, mfbi->id, sizeof(fix->id));
York Sun9b53a9e2008-04-28 02:15:34 -0700791 fix->line_length = var->xres_virtual * var->bits_per_pixel / 8;
792 fix->type = FB_TYPE_PACKED_PIXELS;
793 fix->accel = FB_ACCEL_NONE;
794 fix->visual = FB_VISUAL_TRUECOLOR;
795 fix->xpanstep = 1;
796 fix->ypanstep = 1;
797}
798
799static void update_lcdc(struct fb_info *info)
800{
801 struct fb_var_screeninfo *var = &info->var;
802 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -0600803 struct fsl_diu_data *data = mfbi->parent;
Timur Tabi3c755b72011-10-04 19:36:51 -0500804 struct diu __iomem *hw;
York Sun9b53a9e2008-04-28 02:15:34 -0700805 int i, j;
Timur Tabiddd3d902011-12-02 17:03:27 -0600806 u8 *gamma_table_base;
York Sun9b53a9e2008-04-28 02:15:34 -0700807
808 u32 temp;
809
Timur Tabib7795052011-12-08 17:27:31 -0600810 hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -0700811
Timur Tabi28671732012-10-16 17:33:43 -0500812 if (diu_ops.set_monitor_port)
813 diu_ops.set_monitor_port(data->monitor_port);
Timur Tabib7795052011-12-08 17:27:31 -0600814 gamma_table_base = data->gamma;
Timur Tabiddd3d902011-12-02 17:03:27 -0600815
York Sun9b53a9e2008-04-28 02:15:34 -0700816 /* Prep for DIU init - gamma table, cursor table */
817
818 for (i = 0; i <= 2; i++)
Timur Tabi4a85dc8b2011-09-15 16:44:46 -0500819 for (j = 0; j <= 255; j++)
820 *gamma_table_base++ = j;
York Sun9b53a9e2008-04-28 02:15:34 -0700821
Timur Tabie09a8c32011-12-19 16:26:17 -0600822 if (diu_ops.set_gamma_table)
823 diu_ops.set_gamma_table(data->monitor_port, data->gamma);
York Sun9b53a9e2008-04-28 02:15:34 -0700824
York Sun9b53a9e2008-04-28 02:15:34 -0700825 disable_lcdc(info);
826
827 /* Program DIU registers */
828
Timur Tabib7795052011-12-08 17:27:31 -0600829 out_be32(&hw->gamma, DMA_ADDR(data, gamma));
York Sun9b53a9e2008-04-28 02:15:34 -0700830
Timur Tabiceb001b2012-10-16 17:33:49 -0500831 out_be32(&hw->bgnd, 0x007F7F7F); /* Set background to grey */
832 out_be32(&hw->disp_size, (var->yres << 16) | var->xres);
York Sun9b53a9e2008-04-28 02:15:34 -0700833
834 /* Horizontal and vertical configuration register */
835 temp = var->left_margin << 22 | /* BP_H */
836 var->hsync_len << 11 | /* PW_H */
837 var->right_margin; /* FP_H */
838
839 out_be32(&hw->hsyn_para, temp);
840
841 temp = var->upper_margin << 22 | /* BP_V */
842 var->vsync_len << 11 | /* PW_V */
843 var->lower_margin; /* FP_V */
844
845 out_be32(&hw->vsyn_para, temp);
846
York Sun9b53a9e2008-04-28 02:15:34 -0700847 diu_ops.set_pixel_clock(var->pixclock);
848
Timur Tabiceb001b2012-10-16 17:33:49 -0500849#ifndef CONFIG_PPC_MPC512x
850 /*
851 * The PLUT register is defined differently on the MPC5121 than it
852 * is on other SOCs. Unfortunately, there's no documentation that
853 * explains how it's supposed to be programmed, so for now, we leave
854 * it at the default value on the MPC5121.
855 *
856 * For other SOCs, program it for the highest priority, which will
857 * reduce the chance of underrun. Technically, we should scale the
858 * priority to match the screen resolution, but doing that properly
859 * requires delicate fine-tuning for each use-case.
860 */
York Sun9b53a9e2008-04-28 02:15:34 -0700861 out_be32(&hw->plut, 0x01F5F666);
Timur Tabiceb001b2012-10-16 17:33:49 -0500862#endif
York Sun9b53a9e2008-04-28 02:15:34 -0700863
864 /* Enable the DIU */
865 enable_lcdc(info);
866}
867
868static int map_video_memory(struct fb_info *info)
869{
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700870 u32 smem_len = info->fix.line_length * info->var.yres_virtual;
Timur Tabi05342c02011-12-19 16:26:18 -0600871 void *p;
York Sun9b53a9e2008-04-28 02:15:34 -0700872
Timur Tabi05342c02011-12-19 16:26:18 -0600873 p = alloc_pages_exact(smem_len, GFP_DMA | __GFP_ZERO);
874 if (!p) {
Timur Tabi154152a2011-09-15 16:44:47 -0500875 dev_err(info->dev, "unable to allocate fb memory\n");
York Sun9b53a9e2008-04-28 02:15:34 -0700876 return -ENOMEM;
877 }
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700878 mutex_lock(&info->mm_lock);
Timur Tabi05342c02011-12-19 16:26:18 -0600879 info->screen_base = p;
880 info->fix.smem_start = virt_to_phys(info->screen_base);
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700881 info->fix.smem_len = smem_len;
882 mutex_unlock(&info->mm_lock);
York Sun9b53a9e2008-04-28 02:15:34 -0700883 info->screen_size = info->fix.smem_len;
884
York Sun9b53a9e2008-04-28 02:15:34 -0700885 return 0;
886}
887
888static void unmap_video_memory(struct fb_info *info)
889{
Timur Tabi05342c02011-12-19 16:26:18 -0600890 void *p = info->screen_base;
891 size_t l = info->fix.smem_len;
892
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700893 mutex_lock(&info->mm_lock);
Anton Vorontsov05946bc2008-07-04 09:59:38 -0700894 info->screen_base = NULL;
York Sun9b53a9e2008-04-28 02:15:34 -0700895 info->fix.smem_start = 0;
896 info->fix.smem_len = 0;
Krzysztof Helt537a1bf2009-06-30 11:41:29 -0700897 mutex_unlock(&info->mm_lock);
Timur Tabi05342c02011-12-19 16:26:18 -0600898
899 if (p)
900 free_pages_exact(p, l);
York Sun9b53a9e2008-04-28 02:15:34 -0700901}
902
903/*
York Sunae5591e2008-08-15 00:40:28 -0700904 * Using the fb_var_screeninfo in fb_info we set the aoi of this
905 * particular framebuffer. It is a light version of fsl_diu_set_par.
906 */
907static int fsl_diu_set_aoi(struct fb_info *info)
908{
909 struct fb_var_screeninfo *var = &info->var;
910 struct mfb_info *mfbi = info->par;
911 struct diu_ad *ad = mfbi->ad;
912
913 /* AOI should not be greater than display size */
914 ad->offset_xyi = cpu_to_le32((var->yoffset << 16) | var->xoffset);
915 ad->offset_xyd = cpu_to_le32((mfbi->y_aoi_d << 16) | mfbi->x_aoi_d);
916 return 0;
917}
918
Timur Tabie09a8c32011-12-19 16:26:17 -0600919/**
920 * fsl_diu_get_pixel_format: return the pixel format for a given color depth
921 *
922 * The pixel format is a 32-bit value that determine which bits in each
923 * pixel are to be used for each color. This is the default function used
924 * if the platform does not define its own version.
925 */
926static u32 fsl_diu_get_pixel_format(unsigned int bits_per_pixel)
927{
928#define PF_BYTE_F 0x10000000
929#define PF_ALPHA_C_MASK 0x0E000000
930#define PF_ALPHA_C_SHIFT 25
931#define PF_BLUE_C_MASK 0x01800000
932#define PF_BLUE_C_SHIFT 23
933#define PF_GREEN_C_MASK 0x00600000
934#define PF_GREEN_C_SHIFT 21
935#define PF_RED_C_MASK 0x00180000
936#define PF_RED_C_SHIFT 19
937#define PF_PALETTE 0x00040000
938#define PF_PIXEL_S_MASK 0x00030000
939#define PF_PIXEL_S_SHIFT 16
940#define PF_COMP_3_MASK 0x0000F000
941#define PF_COMP_3_SHIFT 12
942#define PF_COMP_2_MASK 0x00000F00
943#define PF_COMP_2_SHIFT 8
944#define PF_COMP_1_MASK 0x000000F0
945#define PF_COMP_1_SHIFT 4
946#define PF_COMP_0_MASK 0x0000000F
947#define PF_COMP_0_SHIFT 0
948
Anatolij Gustschin5d3cc312013-01-17 21:28:37 +0100949#define MAKE_PF(alpha, red, green, blue, size, c0, c1, c2, c3) \
Timur Tabie09a8c32011-12-19 16:26:17 -0600950 cpu_to_le32(PF_BYTE_F | (alpha << PF_ALPHA_C_SHIFT) | \
951 (blue << PF_BLUE_C_SHIFT) | (green << PF_GREEN_C_SHIFT) | \
952 (red << PF_RED_C_SHIFT) | (c3 << PF_COMP_3_SHIFT) | \
953 (c2 << PF_COMP_2_SHIFT) | (c1 << PF_COMP_1_SHIFT) | \
954 (c0 << PF_COMP_0_SHIFT) | (size << PF_PIXEL_S_SHIFT))
955
956 switch (bits_per_pixel) {
957 case 32:
958 /* 0x88883316 */
Anatolij Gustschin5d3cc312013-01-17 21:28:37 +0100959 return MAKE_PF(3, 2, 1, 0, 3, 8, 8, 8, 8);
Timur Tabie09a8c32011-12-19 16:26:17 -0600960 case 24:
961 /* 0x88082219 */
Anatolij Gustschin5d3cc312013-01-17 21:28:37 +0100962 return MAKE_PF(4, 0, 1, 2, 2, 8, 8, 8, 0);
Timur Tabie09a8c32011-12-19 16:26:17 -0600963 case 16:
964 /* 0x65053118 */
965 return MAKE_PF(4, 2, 1, 0, 1, 5, 6, 5, 0);
966 default:
967 pr_err("fsl-diu: unsupported color depth %u\n", bits_per_pixel);
968 return 0;
969 }
970}
971
York Sunae5591e2008-08-15 00:40:28 -0700972/*
Timur Tabi38dd2da2013-03-30 02:36:00 +0200973 * Copies a cursor image from user space to the proper place in driver
974 * memory so that the hardware can display the cursor image.
975 *
976 * Cursor data is represented as a sequence of 'width' bits packed into bytes.
977 * That is, the first 8 bits are in the first byte, the second 8 bits in the
978 * second byte, and so on. Therefore, the each row of the cursor is (width +
979 * 7) / 8 bytes of 'data'
980 *
981 * The DIU only supports cursors up to 32x32 (MAX_CURS). We reject cursors
982 * larger than this, so we already know that 'width' <= 32. Therefore, we can
983 * simplify our code by using a 32-bit big-endian integer ("line") to read in
984 * a single line of pixels, and only look at the top 'width' bits of that
985 * integer.
986 *
987 * This could result in an unaligned 32-bit read. For example, if the cursor
988 * is 24x24, then the first three bytes of 'image' contain the pixel data for
989 * the top line of the cursor. We do a 32-bit read of 'image', but we look
990 * only at the top 24 bits. Then we increment 'image' by 3 bytes. The next
991 * read is unaligned. The only problem is that we might read past the end of
992 * 'image' by 1-3 bytes, but that should not cause any problems.
993 */
994static void fsl_diu_load_cursor_image(struct fb_info *info,
995 const void *image, uint16_t bg, uint16_t fg,
996 unsigned int width, unsigned int height)
997{
998 struct mfb_info *mfbi = info->par;
999 struct fsl_diu_data *data = mfbi->parent;
1000 __le16 *cursor = data->cursor;
1001 __le16 _fg = cpu_to_le16(fg);
1002 __le16 _bg = cpu_to_le16(bg);
1003 unsigned int h, w;
1004
1005 for (h = 0; h < height; h++) {
1006 uint32_t mask = 1 << 31;
1007 uint32_t line = be32_to_cpup(image);
1008
1009 for (w = 0; w < width; w++) {
1010 cursor[w] = (line & mask) ? _fg : _bg;
1011 mask >>= 1;
1012 }
1013
1014 cursor += MAX_CURS;
1015 image += DIV_ROUND_UP(width, 8);
1016 }
1017}
1018
1019/*
1020 * Set a hardware cursor. The image data for the cursor is passed via the
1021 * fb_cursor object.
1022 */
1023static int fsl_diu_cursor(struct fb_info *info, struct fb_cursor *cursor)
1024{
1025 struct mfb_info *mfbi = info->par;
1026 struct fsl_diu_data *data = mfbi->parent;
1027 struct diu __iomem *hw = data->diu_reg;
1028
1029 if (cursor->image.width > MAX_CURS || cursor->image.height > MAX_CURS)
1030 return -EINVAL;
1031
1032 /* The cursor size has changed */
1033 if (cursor->set & FB_CUR_SETSIZE) {
1034 /*
1035 * The DIU cursor is a fixed size, so when we get this
1036 * message, instead of resizing the cursor, we just clear
1037 * all the image data, in expectation of new data. However,
1038 * in tests this control does not appear to be normally
1039 * called.
1040 */
1041 memset(data->cursor, 0, sizeof(data->cursor));
1042 }
1043
1044 /* The cursor position has changed (cursor->image.dx|dy) */
1045 if (cursor->set & FB_CUR_SETPOS) {
1046 uint32_t xx, yy;
1047
1048 yy = (cursor->image.dy - info->var.yoffset) & 0x7ff;
1049 xx = (cursor->image.dx - info->var.xoffset) & 0x7ff;
1050
1051 out_be32(&hw->curs_pos, yy << 16 | xx);
1052 }
1053
1054 /*
1055 * FB_CUR_SETIMAGE - the cursor image has changed
1056 * FB_CUR_SETCMAP - the cursor colors has changed
1057 * FB_CUR_SETSHAPE - the cursor bitmask has changed
1058 */
1059 if (cursor->set & (FB_CUR_SETSHAPE | FB_CUR_SETCMAP | FB_CUR_SETIMAGE)) {
1060 unsigned int image_size =
1061 DIV_ROUND_UP(cursor->image.width, 8) * cursor->image.height;
1062 unsigned int image_words =
1063 DIV_ROUND_UP(image_size, sizeof(uint32_t));
1064 unsigned int bg_idx = cursor->image.bg_color;
1065 unsigned int fg_idx = cursor->image.fg_color;
1066 uint8_t buffer[image_size];
1067 uint32_t *image, *source, *mask;
1068 uint16_t fg, bg;
1069 unsigned int i;
1070
1071 if (info->state != FBINFO_STATE_RUNNING)
1072 return 0;
1073
1074 /*
1075 * Determine the size of the cursor image data. Normally,
1076 * it's 8x16.
1077 */
1078 image_size = DIV_ROUND_UP(cursor->image.width, 8) *
1079 cursor->image.height;
1080
1081 bg = ((info->cmap.red[bg_idx] & 0xf8) << 7) |
1082 ((info->cmap.green[bg_idx] & 0xf8) << 2) |
1083 ((info->cmap.blue[bg_idx] & 0xf8) >> 3) |
1084 1 << 15;
1085
1086 fg = ((info->cmap.red[fg_idx] & 0xf8) << 7) |
1087 ((info->cmap.green[fg_idx] & 0xf8) << 2) |
1088 ((info->cmap.blue[fg_idx] & 0xf8) >> 3) |
1089 1 << 15;
1090
1091 /* Use 32-bit operations on the data to improve performance */
1092 image = (uint32_t *)buffer;
1093 source = (uint32_t *)cursor->image.data;
1094 mask = (uint32_t *)cursor->mask;
1095
1096 if (cursor->rop == ROP_XOR)
1097 for (i = 0; i < image_words; i++)
1098 image[i] = source[i] ^ mask[i];
1099 else
1100 for (i = 0; i < image_words; i++)
1101 image[i] = source[i] & mask[i];
1102
1103 fsl_diu_load_cursor_image(info, image, bg, fg,
1104 cursor->image.width, cursor->image.height);
1105 };
1106
1107 /*
1108 * Show or hide the cursor. The cursor data is always stored in the
1109 * 'cursor' memory block, and the actual cursor position is always in
1110 * the DIU's CURS_POS register. To hide the cursor, we redirect the
1111 * CURSOR register to a blank cursor. The show the cursor, we
1112 * redirect the CURSOR register to the real cursor data.
1113 */
1114 if (cursor->enable)
1115 out_be32(&hw->cursor, DMA_ADDR(data, cursor));
1116 else
1117 out_be32(&hw->cursor, DMA_ADDR(data, blank_cursor));
1118
1119 return 0;
1120}
1121
1122/*
York Sun9b53a9e2008-04-28 02:15:34 -07001123 * Using the fb_var_screeninfo in fb_info we set the resolution of this
1124 * particular framebuffer. This function alters the fb_fix_screeninfo stored
1125 * in fb_info. It does not alter var in fb_info since we are using that
1126 * data. This means we depend on the data in var inside fb_info to be
1127 * supported by the hardware. fsl_diu_check_var is always called before
1128 * fsl_diu_set_par to ensure this.
1129 */
1130static int fsl_diu_set_par(struct fb_info *info)
1131{
1132 unsigned long len;
1133 struct fb_var_screeninfo *var = &info->var;
1134 struct mfb_info *mfbi = info->par;
Timur Tabib7795052011-12-08 17:27:31 -06001135 struct fsl_diu_data *data = mfbi->parent;
York Sun9b53a9e2008-04-28 02:15:34 -07001136 struct diu_ad *ad = mfbi->ad;
Timur Tabi3c755b72011-10-04 19:36:51 -05001137 struct diu __iomem *hw;
York Sun9b53a9e2008-04-28 02:15:34 -07001138
Timur Tabib7795052011-12-08 17:27:31 -06001139 hw = data->diu_reg;
York Sun9b53a9e2008-04-28 02:15:34 -07001140
1141 set_fix(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001142
1143 len = info->var.yres_virtual * info->fix.line_length;
1144 /* Alloc & dealloc each time resolution/bpp change */
1145 if (len != info->fix.smem_len) {
1146 if (info->fix.smem_start)
1147 unmap_video_memory(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001148
1149 /* Memory allocation for framebuffer */
1150 if (map_video_memory(info)) {
Timur Tabi154152a2011-09-15 16:44:47 -05001151 dev_err(info->dev, "unable to allocate fb memory 1\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001152 return -ENOMEM;
1153 }
1154 }
1155
Timur Tabie09a8c32011-12-19 16:26:17 -06001156 if (diu_ops.get_pixel_format)
1157 ad->pix_fmt = diu_ops.get_pixel_format(data->monitor_port,
1158 var->bits_per_pixel);
1159 else
1160 ad->pix_fmt = fsl_diu_get_pixel_format(var->bits_per_pixel);
1161
York Sun9b53a9e2008-04-28 02:15:34 -07001162 ad->addr = cpu_to_le32(info->fix.smem_start);
York Sunae5591e2008-08-15 00:40:28 -07001163 ad->src_size_g_alpha = cpu_to_le32((var->yres_virtual << 12) |
1164 var->xres_virtual) | mfbi->g_alpha;
1165 /* AOI should not be greater than display size */
York Sun9b53a9e2008-04-28 02:15:34 -07001166 ad->aoi_size = cpu_to_le32((var->yres << 16) | var->xres);
York Sunae5591e2008-08-15 00:40:28 -07001167 ad->offset_xyi = cpu_to_le32((var->yoffset << 16) | var->xoffset);
York Sun9b53a9e2008-04-28 02:15:34 -07001168 ad->offset_xyd = cpu_to_le32((mfbi->y_aoi_d << 16) | mfbi->x_aoi_d);
1169
1170 /* Disable chroma keying function */
1171 ad->ckmax_r = 0;
1172 ad->ckmax_g = 0;
1173 ad->ckmax_b = 0;
1174
1175 ad->ckmin_r = 255;
1176 ad->ckmin_g = 255;
1177 ad->ckmin_b = 255;
1178
Timur Tabi2572df92011-09-28 16:19:51 -05001179 if (mfbi->index == PLANE0)
York Sun9b53a9e2008-04-28 02:15:34 -07001180 update_lcdc(info);
1181 return 0;
1182}
1183
1184static inline __u32 CNVT_TOHW(__u32 val, __u32 width)
1185{
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001186 return ((val << width) + 0x7FFF - val) >> 16;
York Sun9b53a9e2008-04-28 02:15:34 -07001187}
1188
1189/*
1190 * Set a single color register. The values supplied have a 16 bit magnitude
1191 * which needs to be scaled in this function for the hardware. Things to take
1192 * into consideration are how many color registers, if any, are supported with
1193 * the current color visual. With truecolor mode no color palettes are
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001194 * supported. Here a pseudo palette is created which we store the value in
York Sun9b53a9e2008-04-28 02:15:34 -07001195 * pseudo_palette in struct fb_info. For pseudocolor mode we have a limited
1196 * color palette.
1197 */
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001198static int fsl_diu_setcolreg(unsigned int regno, unsigned int red,
1199 unsigned int green, unsigned int blue,
1200 unsigned int transp, struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001201{
1202 int ret = 1;
1203
1204 /*
1205 * If greyscale is true, then we convert the RGB value
1206 * to greyscale no matter what visual we are using.
1207 */
1208 if (info->var.grayscale)
1209 red = green = blue = (19595 * red + 38470 * green +
1210 7471 * blue) >> 16;
1211 switch (info->fix.visual) {
1212 case FB_VISUAL_TRUECOLOR:
1213 /*
1214 * 16-bit True Colour. We encode the RGB value
1215 * according to the RGB bitfield information.
1216 */
1217 if (regno < 16) {
1218 u32 *pal = info->pseudo_palette;
1219 u32 v;
1220
1221 red = CNVT_TOHW(red, info->var.red.length);
1222 green = CNVT_TOHW(green, info->var.green.length);
1223 blue = CNVT_TOHW(blue, info->var.blue.length);
1224 transp = CNVT_TOHW(transp, info->var.transp.length);
1225
1226 v = (red << info->var.red.offset) |
1227 (green << info->var.green.offset) |
1228 (blue << info->var.blue.offset) |
1229 (transp << info->var.transp.offset);
1230
1231 pal[regno] = v;
1232 ret = 0;
1233 }
1234 break;
York Sun9b53a9e2008-04-28 02:15:34 -07001235 }
1236
1237 return ret;
1238}
1239
1240/*
1241 * Pan (or wrap, depending on the `vmode' field) the display using the
1242 * 'xoffset' and 'yoffset' fields of the 'var' structure. If the values
1243 * don't fit, return -EINVAL.
1244 */
1245static int fsl_diu_pan_display(struct fb_var_screeninfo *var,
1246 struct fb_info *info)
1247{
1248 if ((info->var.xoffset == var->xoffset) &&
1249 (info->var.yoffset == var->yoffset))
1250 return 0; /* No change, do nothing */
1251
1252 if (var->xoffset < 0 || var->yoffset < 0
1253 || var->xoffset + info->var.xres > info->var.xres_virtual
1254 || var->yoffset + info->var.yres > info->var.yres_virtual)
1255 return -EINVAL;
1256
1257 info->var.xoffset = var->xoffset;
1258 info->var.yoffset = var->yoffset;
1259
1260 if (var->vmode & FB_VMODE_YWRAP)
1261 info->var.vmode |= FB_VMODE_YWRAP;
1262 else
1263 info->var.vmode &= ~FB_VMODE_YWRAP;
1264
York Sunae5591e2008-08-15 00:40:28 -07001265 fsl_diu_set_aoi(info);
1266
York Sun9b53a9e2008-04-28 02:15:34 -07001267 return 0;
1268}
1269
York Sun9b53a9e2008-04-28 02:15:34 -07001270static int fsl_diu_ioctl(struct fb_info *info, unsigned int cmd,
1271 unsigned long arg)
1272{
1273 struct mfb_info *mfbi = info->par;
1274 struct diu_ad *ad = mfbi->ad;
1275 struct mfb_chroma_key ck;
1276 unsigned char global_alpha;
1277 struct aoi_display_offset aoi_d;
1278 __u32 pix_fmt;
1279 void __user *buf = (void __user *)arg;
1280
1281 if (!arg)
1282 return -EINVAL;
Timur Tabi5cc2a362012-10-16 17:33:46 -05001283
1284 dev_dbg(info->dev, "ioctl %08x (dir=%s%s type=%u nr=%u size=%u)\n", cmd,
1285 _IOC_DIR(cmd) & _IOC_READ ? "R" : "",
1286 _IOC_DIR(cmd) & _IOC_WRITE ? "W" : "",
1287 _IOC_TYPE(cmd), _IOC_NR(cmd), _IOC_SIZE(cmd));
1288
York Sun9b53a9e2008-04-28 02:15:34 -07001289 switch (cmd) {
Timur Tabi36b0b1d2011-10-04 19:36:44 -05001290 case MFB_SET_PIXFMT_OLD:
1291 dev_warn(info->dev,
1292 "MFB_SET_PIXFMT value of 0x%08x is deprecated.\n",
1293 MFB_SET_PIXFMT_OLD);
York Sun9b53a9e2008-04-28 02:15:34 -07001294 case MFB_SET_PIXFMT:
1295 if (copy_from_user(&pix_fmt, buf, sizeof(pix_fmt)))
1296 return -EFAULT;
1297 ad->pix_fmt = pix_fmt;
York Sun9b53a9e2008-04-28 02:15:34 -07001298 break;
Timur Tabi36b0b1d2011-10-04 19:36:44 -05001299 case MFB_GET_PIXFMT_OLD:
1300 dev_warn(info->dev,
1301 "MFB_GET_PIXFMT value of 0x%08x is deprecated.\n",
1302 MFB_GET_PIXFMT_OLD);
York Sun9b53a9e2008-04-28 02:15:34 -07001303 case MFB_GET_PIXFMT:
1304 pix_fmt = ad->pix_fmt;
1305 if (copy_to_user(buf, &pix_fmt, sizeof(pix_fmt)))
1306 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001307 break;
1308 case MFB_SET_AOID:
1309 if (copy_from_user(&aoi_d, buf, sizeof(aoi_d)))
1310 return -EFAULT;
1311 mfbi->x_aoi_d = aoi_d.x_aoi_d;
1312 mfbi->y_aoi_d = aoi_d.y_aoi_d;
York Sun9b53a9e2008-04-28 02:15:34 -07001313 fsl_diu_check_var(&info->var, info);
York Sunae5591e2008-08-15 00:40:28 -07001314 fsl_diu_set_aoi(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001315 break;
1316 case MFB_GET_AOID:
1317 aoi_d.x_aoi_d = mfbi->x_aoi_d;
1318 aoi_d.y_aoi_d = mfbi->y_aoi_d;
1319 if (copy_to_user(buf, &aoi_d, sizeof(aoi_d)))
1320 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001321 break;
1322 case MFB_GET_ALPHA:
1323 global_alpha = mfbi->g_alpha;
1324 if (copy_to_user(buf, &global_alpha, sizeof(global_alpha)))
1325 return -EFAULT;
York Sun9b53a9e2008-04-28 02:15:34 -07001326 break;
1327 case MFB_SET_ALPHA:
1328 /* set panel information */
1329 if (copy_from_user(&global_alpha, buf, sizeof(global_alpha)))
1330 return -EFAULT;
1331 ad->src_size_g_alpha = (ad->src_size_g_alpha & (~0xff)) |
1332 (global_alpha & 0xff);
1333 mfbi->g_alpha = global_alpha;
York Sun9b53a9e2008-04-28 02:15:34 -07001334 break;
1335 case MFB_SET_CHROMA_KEY:
1336 /* set panel winformation */
1337 if (copy_from_user(&ck, buf, sizeof(ck)))
1338 return -EFAULT;
1339
1340 if (ck.enable &&
1341 (ck.red_max < ck.red_min ||
1342 ck.green_max < ck.green_min ||
1343 ck.blue_max < ck.blue_min))
1344 return -EINVAL;
1345
1346 if (!ck.enable) {
1347 ad->ckmax_r = 0;
1348 ad->ckmax_g = 0;
1349 ad->ckmax_b = 0;
1350 ad->ckmin_r = 255;
1351 ad->ckmin_g = 255;
1352 ad->ckmin_b = 255;
1353 } else {
1354 ad->ckmax_r = ck.red_max;
1355 ad->ckmax_g = ck.green_max;
1356 ad->ckmax_b = ck.blue_max;
1357 ad->ckmin_r = ck.red_min;
1358 ad->ckmin_g = ck.green_min;
1359 ad->ckmin_b = ck.blue_min;
1360 }
York Sun9b53a9e2008-04-28 02:15:34 -07001361 break;
Timur Tabie95c17e2012-10-16 17:33:44 -05001362#ifdef CONFIG_PPC_MPC512x
1363 case MFB_SET_GAMMA: {
1364 struct fsl_diu_data *data = mfbi->parent;
1365
1366 if (copy_from_user(data->gamma, buf, sizeof(data->gamma)))
1367 return -EFAULT;
1368 setbits32(&data->diu_reg->gamma, 0); /* Force table reload */
1369 break;
1370 }
1371 case MFB_GET_GAMMA: {
1372 struct fsl_diu_data *data = mfbi->parent;
1373
1374 if (copy_to_user(buf, data->gamma, sizeof(data->gamma)))
1375 return -EFAULT;
1376 break;
1377 }
1378#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001379 default:
Timur Tabi154152a2011-09-15 16:44:47 -05001380 dev_err(info->dev, "unknown ioctl command (0x%08X)\n", cmd);
York Sun9b53a9e2008-04-28 02:15:34 -07001381 return -ENOIOCTLCMD;
1382 }
1383
1384 return 0;
1385}
1386
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001387static inline void fsl_diu_enable_interrupts(struct fsl_diu_data *data)
1388{
1389 u32 int_mask = INT_UNDRUN; /* enable underrun detection */
1390
1391 if (IS_ENABLED(CONFIG_NOT_COHERENT_CACHE))
1392 int_mask |= INT_VSYNC; /* enable vertical sync */
1393
1394 clrbits32(&data->diu_reg->int_mask, int_mask);
1395}
1396
York Sun9b53a9e2008-04-28 02:15:34 -07001397/* turn on fb if count == 1
1398 */
1399static int fsl_diu_open(struct fb_info *info, int user)
1400{
1401 struct mfb_info *mfbi = info->par;
1402 int res = 0;
1403
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001404 /* free boot splash memory on first /dev/fb0 open */
Timur Tabi2572df92011-09-28 16:19:51 -05001405 if ((mfbi->index == PLANE0) && diu_ops.release_bootmem)
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001406 diu_ops.release_bootmem();
1407
York Sun9b53a9e2008-04-28 02:15:34 -07001408 spin_lock(&diu_lock);
1409 mfbi->count++;
1410 if (mfbi->count == 1) {
York Sun9b53a9e2008-04-28 02:15:34 -07001411 fsl_diu_check_var(&info->var, info);
1412 res = fsl_diu_set_par(info);
1413 if (res < 0)
1414 mfbi->count--;
Timur Tabif74de502012-10-16 17:33:45 -05001415 else {
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001416 fsl_diu_enable_interrupts(mfbi->parent);
Timur Tabi7e47c212011-09-28 16:19:52 -05001417 fsl_diu_enable_panel(info);
Timur Tabif74de502012-10-16 17:33:45 -05001418 }
York Sun9b53a9e2008-04-28 02:15:34 -07001419 }
1420
1421 spin_unlock(&diu_lock);
1422 return res;
1423}
1424
1425/* turn off fb if count == 0
1426 */
1427static int fsl_diu_release(struct fb_info *info, int user)
1428{
1429 struct mfb_info *mfbi = info->par;
1430 int res = 0;
1431
1432 spin_lock(&diu_lock);
1433 mfbi->count--;
Timur Tabif74de502012-10-16 17:33:45 -05001434 if (mfbi->count == 0) {
1435 struct fsl_diu_data *data = mfbi->parent;
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001436 bool disable = true;
1437 int i;
Timur Tabif74de502012-10-16 17:33:45 -05001438
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001439 /* Disable interrupts only if all AOIs are closed */
1440 for (i = 0; i < NUM_AOIS; i++) {
1441 struct mfb_info *mi = data->fsl_diu_info[i].par;
1442
1443 if (mi->count)
1444 disable = false;
1445 }
1446 if (disable)
1447 out_be32(&data->diu_reg->int_mask, 0xffffffff);
Timur Tabi2572df92011-09-28 16:19:51 -05001448 fsl_diu_disable_panel(info);
Timur Tabif74de502012-10-16 17:33:45 -05001449 }
Timur Tabi2572df92011-09-28 16:19:51 -05001450
York Sun9b53a9e2008-04-28 02:15:34 -07001451 spin_unlock(&diu_lock);
1452 return res;
1453}
1454
1455static struct fb_ops fsl_diu_ops = {
1456 .owner = THIS_MODULE,
1457 .fb_check_var = fsl_diu_check_var,
1458 .fb_set_par = fsl_diu_set_par,
1459 .fb_setcolreg = fsl_diu_setcolreg,
York Sun9b53a9e2008-04-28 02:15:34 -07001460 .fb_pan_display = fsl_diu_pan_display,
1461 .fb_fillrect = cfb_fillrect,
1462 .fb_copyarea = cfb_copyarea,
1463 .fb_imageblit = cfb_imageblit,
1464 .fb_ioctl = fsl_diu_ioctl,
1465 .fb_open = fsl_diu_open,
1466 .fb_release = fsl_diu_release,
Timur Tabi38dd2da2013-03-30 02:36:00 +02001467 .fb_cursor = fsl_diu_cursor,
York Sun9b53a9e2008-04-28 02:15:34 -07001468};
1469
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001470static int install_fb(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001471{
1472 int rc;
1473 struct mfb_info *mfbi = info->par;
Timur Tabie7b42712012-10-16 17:33:50 -05001474 struct fsl_diu_data *data = mfbi->parent;
York Sun9b53a9e2008-04-28 02:15:34 -07001475 const char *aoi_mode, *init_aoi_mode = "320x240";
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001476 struct fb_videomode *db = fsl_diu_mode_db;
1477 unsigned int dbsize = ARRAY_SIZE(fsl_diu_mode_db);
1478 int has_default_mode = 1;
York Sun9b53a9e2008-04-28 02:15:34 -07001479
Timur Tabif934fbd2011-12-19 16:26:14 -06001480 info->var.activate = FB_ACTIVATE_NOW;
1481 info->fbops = &fsl_diu_ops;
Timur Tabi934dbee2011-12-19 16:26:15 -06001482 info->flags = FBINFO_DEFAULT | FBINFO_VIRTFB | FBINFO_PARTIAL_PAN_OK |
1483 FBINFO_READS_FAST;
Timur Tabif934fbd2011-12-19 16:26:14 -06001484 info->pseudo_palette = mfbi->pseudo_palette;
1485
1486 rc = fb_alloc_cmap(&info->cmap, 16, 0);
1487 if (rc)
1488 return rc;
York Sun9b53a9e2008-04-28 02:15:34 -07001489
Timur Tabi2572df92011-09-28 16:19:51 -05001490 if (mfbi->index == PLANE0) {
Timur Tabie7b42712012-10-16 17:33:50 -05001491 if (data->has_edid) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001492 /* Now build modedb from EDID */
Timur Tabie7b42712012-10-16 17:33:50 -05001493 fb_edid_to_monspecs(data->edid_data, &info->monspecs);
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001494 fb_videomode_to_modelist(info->monspecs.modedb,
1495 info->monspecs.modedb_len,
1496 &info->modelist);
1497 db = info->monspecs.modedb;
1498 dbsize = info->monspecs.modedb_len;
1499 }
York Sun9b53a9e2008-04-28 02:15:34 -07001500 aoi_mode = fb_mode;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001501 } else {
York Sun9b53a9e2008-04-28 02:15:34 -07001502 aoi_mode = init_aoi_mode;
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001503 }
Timur Tabi63cf8df2011-09-15 16:44:51 -05001504 rc = fb_find_mode(&info->var, info, aoi_mode, db, dbsize, NULL,
1505 default_bpp);
Timur Tabi154152a2011-09-15 16:44:47 -05001506 if (!rc) {
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001507 /*
1508 * For plane 0 we continue and look into
1509 * driver's internal modedb.
1510 */
Timur Tabie7b42712012-10-16 17:33:50 -05001511 if ((mfbi->index == PLANE0) && data->has_edid)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001512 has_default_mode = 0;
1513 else
1514 return -EINVAL;
York Sun9b53a9e2008-04-28 02:15:34 -07001515 }
1516
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001517 if (!has_default_mode) {
1518 rc = fb_find_mode(&info->var, info, aoi_mode, fsl_diu_mode_db,
Timur Tabi63cf8df2011-09-15 16:44:51 -05001519 ARRAY_SIZE(fsl_diu_mode_db), NULL, default_bpp);
1520 if (rc)
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001521 has_default_mode = 1;
1522 }
1523
1524 /* Still not found, use preferred mode from database if any */
1525 if (!has_default_mode && info->monspecs.modedb) {
1526 struct fb_monspecs *specs = &info->monspecs;
1527 struct fb_videomode *modedb = &specs->modedb[0];
1528
1529 /*
1530 * Get preferred timing. If not found,
1531 * first mode in database will be used.
1532 */
1533 if (specs->misc & FB_MISC_1ST_DETAIL) {
1534 int i;
1535
1536 for (i = 0; i < specs->modedb_len; i++) {
1537 if (specs->modedb[i].flag & FB_MODE_IS_FIRST) {
1538 modedb = &specs->modedb[i];
1539 break;
1540 }
1541 }
1542 }
1543
1544 info->var.bits_per_pixel = default_bpp;
1545 fb_videomode_to_var(&info->var, modedb);
1546 }
1547
York Sun9b53a9e2008-04-28 02:15:34 -07001548 if (fsl_diu_check_var(&info->var, info)) {
Timur Tabi154152a2011-09-15 16:44:47 -05001549 dev_err(info->dev, "fsl_diu_check_var failed\n");
Timur Tabi589c7972011-09-15 16:44:55 -05001550 unmap_video_memory(info);
York Sun9b53a9e2008-04-28 02:15:34 -07001551 fb_dealloc_cmap(&info->cmap);
1552 return -EINVAL;
1553 }
1554
York Sun9b53a9e2008-04-28 02:15:34 -07001555 if (register_framebuffer(info) < 0) {
Timur Tabi154152a2011-09-15 16:44:47 -05001556 dev_err(info->dev, "register_framebuffer failed\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001557 unmap_video_memory(info);
1558 fb_dealloc_cmap(&info->cmap);
1559 return -EINVAL;
1560 }
1561
1562 mfbi->registered = 1;
Timur Tabi154152a2011-09-15 16:44:47 -05001563 dev_info(info->dev, "%s registered successfully\n", mfbi->id);
York Sun9b53a9e2008-04-28 02:15:34 -07001564
1565 return 0;
1566}
1567
Anton Vorontsov05946bc2008-07-04 09:59:38 -07001568static void uninstall_fb(struct fb_info *info)
York Sun9b53a9e2008-04-28 02:15:34 -07001569{
1570 struct mfb_info *mfbi = info->par;
1571
1572 if (!mfbi->registered)
1573 return;
1574
1575 unregister_framebuffer(info);
1576 unmap_video_memory(info);
1577 if (&info->cmap)
1578 fb_dealloc_cmap(&info->cmap);
1579
1580 mfbi->registered = 0;
1581}
1582
1583static irqreturn_t fsl_diu_isr(int irq, void *dev_id)
1584{
Timur Tabi3c755b72011-10-04 19:36:51 -05001585 struct diu __iomem *hw = dev_id;
Timur Tabif74de502012-10-16 17:33:45 -05001586 uint32_t status = in_be32(&hw->int_status);
York Sun9b53a9e2008-04-28 02:15:34 -07001587
1588 if (status) {
1589 /* This is the workaround for underrun */
1590 if (status & INT_UNDRUN) {
1591 out_be32(&hw->diu_mode, 0);
York Sun9b53a9e2008-04-28 02:15:34 -07001592 udelay(1);
1593 out_be32(&hw->diu_mode, 1);
1594 }
1595#if defined(CONFIG_NOT_COHERENT_CACHE)
1596 else if (status & INT_VSYNC) {
1597 unsigned int i;
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001598
York Sun9b53a9e2008-04-28 02:15:34 -07001599 for (i = 0; i < coherence_data_size;
1600 i += d_cache_line_size)
1601 __asm__ __volatile__ (
1602 "dcbz 0, %[input]"
1603 ::[input]"r"(&coherence_data[i]));
1604 }
1605#endif
1606 return IRQ_HANDLED;
1607 }
1608 return IRQ_NONE;
1609}
1610
York Sun9b53a9e2008-04-28 02:15:34 -07001611#ifdef CONFIG_PM
1612/*
1613 * Power management hooks. Note that we won't be called from IRQ context,
1614 * unlike the blank functions above, so we may sleep.
1615 */
Grant Likely2dc11582010-08-06 09:25:50 -06001616static int fsl_diu_suspend(struct platform_device *ofdev, pm_message_t state)
York Sun9b53a9e2008-04-28 02:15:34 -07001617{
Timur Tabib7795052011-12-08 17:27:31 -06001618 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001619
Timur Tabib7795052011-12-08 17:27:31 -06001620 data = dev_get_drvdata(&ofdev->dev);
Michael Neulingf7f5ef02012-01-28 19:35:24 +00001621 disable_lcdc(data->fsl_diu_info);
York Sun9b53a9e2008-04-28 02:15:34 -07001622
1623 return 0;
1624}
1625
Grant Likely2dc11582010-08-06 09:25:50 -06001626static int fsl_diu_resume(struct platform_device *ofdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001627{
Timur Tabib7795052011-12-08 17:27:31 -06001628 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001629
Timur Tabib7795052011-12-08 17:27:31 -06001630 data = dev_get_drvdata(&ofdev->dev);
Michael Neulingf7f5ef02012-01-28 19:35:24 +00001631 enable_lcdc(data->fsl_diu_info);
York Sun9b53a9e2008-04-28 02:15:34 -07001632
1633 return 0;
1634}
1635
1636#else
1637#define fsl_diu_suspend NULL
1638#define fsl_diu_resume NULL
1639#endif /* CONFIG_PM */
1640
York Sun9b53a9e2008-04-28 02:15:34 -07001641static ssize_t store_monitor(struct device *device,
1642 struct device_attribute *attr, const char *buf, size_t count)
1643{
Timur Tabi7653aaa2011-07-09 15:38:14 -05001644 enum fsl_diu_monitor_port old_monitor_port;
Timur Tabib7795052011-12-08 17:27:31 -06001645 struct fsl_diu_data *data =
York Sun9b53a9e2008-04-28 02:15:34 -07001646 container_of(attr, struct fsl_diu_data, dev_attr);
1647
Timur Tabib7795052011-12-08 17:27:31 -06001648 old_monitor_port = data->monitor_port;
1649 data->monitor_port = fsl_diu_name_to_port(buf);
York Sun9b53a9e2008-04-28 02:15:34 -07001650
Timur Tabib7795052011-12-08 17:27:31 -06001651 if (old_monitor_port != data->monitor_port) {
York Sun9b53a9e2008-04-28 02:15:34 -07001652 /* All AOIs need adjust pixel format
1653 * fsl_diu_set_par only change the pixsel format here
1654 * unlikely to fail. */
Timur Tabiddd3d902011-12-02 17:03:27 -06001655 unsigned int i;
1656
1657 for (i=0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001658 fsl_diu_set_par(&data->fsl_diu_info[i]);
York Sun9b53a9e2008-04-28 02:15:34 -07001659 }
1660 return count;
1661}
1662
1663static ssize_t show_monitor(struct device *device,
1664 struct device_attribute *attr, char *buf)
1665{
Timur Tabib7795052011-12-08 17:27:31 -06001666 struct fsl_diu_data *data =
York Sun9b53a9e2008-04-28 02:15:34 -07001667 container_of(attr, struct fsl_diu_data, dev_attr);
Timur Tabi7653aaa2011-07-09 15:38:14 -05001668
Timur Tabib7795052011-12-08 17:27:31 -06001669 switch (data->monitor_port) {
Timur Tabi7653aaa2011-07-09 15:38:14 -05001670 case FSL_DIU_PORT_DVI:
1671 return sprintf(buf, "DVI\n");
1672 case FSL_DIU_PORT_LVDS:
1673 return sprintf(buf, "Single-link LVDS\n");
1674 case FSL_DIU_PORT_DLVDS:
1675 return sprintf(buf, "Dual-link LVDS\n");
1676 }
1677
1678 return 0;
York Sun9b53a9e2008-04-28 02:15:34 -07001679}
1680
Greg Kroah-Hartman48c68c42012-12-21 13:07:39 -08001681static int fsl_diu_probe(struct platform_device *pdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001682{
Timur Tabi9e52ba62011-09-15 16:44:50 -05001683 struct device_node *np = pdev->dev.of_node;
York Sun9b53a9e2008-04-28 02:15:34 -07001684 struct mfb_info *mfbi;
Timur Tabib7795052011-12-08 17:27:31 -06001685 struct fsl_diu_data *data;
Timur Tabib7795052011-12-08 17:27:31 -06001686 dma_addr_t dma_addr; /* DMA addr of fsl_diu_data struct */
Timur Tabie7b42712012-10-16 17:33:50 -05001687 const void *prop;
Timur Tabiddd3d902011-12-02 17:03:27 -06001688 unsigned int i;
1689 int ret;
York Sun9b53a9e2008-04-28 02:15:34 -07001690
Damien Cassouc1f383d2012-07-31 18:39:20 +02001691 data = dmam_alloc_coherent(&pdev->dev, sizeof(struct fsl_diu_data),
1692 &dma_addr, GFP_DMA | __GFP_ZERO);
Timur Tabib7795052011-12-08 17:27:31 -06001693 if (!data)
York Sun9b53a9e2008-04-28 02:15:34 -07001694 return -ENOMEM;
Timur Tabib7795052011-12-08 17:27:31 -06001695 data->dma_addr = dma_addr;
Timur Tabiddd3d902011-12-02 17:03:27 -06001696
1697 /*
1698 * dma_alloc_coherent() uses a page allocator, so the address is
1699 * always page-aligned. We need the memory to be 32-byte aligned,
1700 * so that's good. However, if one day the allocator changes, we
1701 * need to catch that. It's not worth the effort to handle unaligned
1702 * alloctions now because it's highly unlikely to ever be a problem.
1703 */
Timur Tabib7795052011-12-08 17:27:31 -06001704 if ((unsigned long)data & 31) {
Timur Tabiddd3d902011-12-02 17:03:27 -06001705 dev_err(&pdev->dev, "misaligned allocation");
1706 ret = -ENOMEM;
1707 goto error;
1708 }
York Sun9b53a9e2008-04-28 02:15:34 -07001709
Timur Tabib7795052011-12-08 17:27:31 -06001710 spin_lock_init(&data->reg_lock);
Timur Tabi3c755b72011-10-04 19:36:51 -05001711
Timur Tabiddd3d902011-12-02 17:03:27 -06001712 for (i = 0; i < NUM_AOIS; i++) {
Timur Tabib7795052011-12-08 17:27:31 -06001713 struct fb_info *info = &data->fsl_diu_info[i];
Timur Tabiddd3d902011-12-02 17:03:27 -06001714
1715 info->device = &pdev->dev;
Timur Tabib7795052011-12-08 17:27:31 -06001716 info->par = &data->mfb[i];
Timur Tabiddd3d902011-12-02 17:03:27 -06001717
1718 /*
1719 * We store the physical address of the AD in the reserved
1720 * 'paddr' field of the AD itself.
1721 */
Timur Tabib7795052011-12-08 17:27:31 -06001722 data->ad[i].paddr = DMA_ADDR(data, ad[i]);
Timur Tabiddd3d902011-12-02 17:03:27 -06001723
1724 info->fix.smem_start = 0;
1725
1726 /* Initialize the AOI data structure */
1727 mfbi = info->par;
York Sun9b53a9e2008-04-28 02:15:34 -07001728 memcpy(mfbi, &mfb_template[i], sizeof(struct mfb_info));
Timur Tabib7795052011-12-08 17:27:31 -06001729 mfbi->parent = data;
1730 mfbi->ad = &data->ad[i];
Timur Tabie7b42712012-10-16 17:33:50 -05001731 }
Anatolij Gustschin8b856f02010-07-23 04:00:39 +00001732
Timur Tabie7b42712012-10-16 17:33:50 -05001733 /* Get the EDID data from the device tree, if present */
1734 prop = of_get_property(np, "edid", &ret);
1735 if (prop && ret == EDID_LENGTH) {
1736 memcpy(data->edid_data, prop, EDID_LENGTH);
1737 data->has_edid = true;
York Sun9b53a9e2008-04-28 02:15:34 -07001738 }
1739
Timur Tabib7795052011-12-08 17:27:31 -06001740 data->diu_reg = of_iomap(np, 0);
1741 if (!data->diu_reg) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001742 dev_err(&pdev->dev, "cannot map DIU registers\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001743 ret = -EFAULT;
Timur Tabiddd3d902011-12-02 17:03:27 -06001744 goto error;
York Sun9b53a9e2008-04-28 02:15:34 -07001745 }
1746
York Sun9b53a9e2008-04-28 02:15:34 -07001747 /* Get the IRQ of the DIU */
Timur Tabib7795052011-12-08 17:27:31 -06001748 data->irq = irq_of_parse_and_map(np, 0);
York Sun9b53a9e2008-04-28 02:15:34 -07001749
Timur Tabib7795052011-12-08 17:27:31 -06001750 if (!data->irq) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001751 dev_err(&pdev->dev, "could not get DIU IRQ\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001752 ret = -EINVAL;
1753 goto error;
1754 }
Timur Tabib7795052011-12-08 17:27:31 -06001755 data->monitor_port = monitor_port;
York Sun9b53a9e2008-04-28 02:15:34 -07001756
Timur Tabiddd3d902011-12-02 17:03:27 -06001757 /* Initialize the dummy Area Descriptor */
Timur Tabib7795052011-12-08 17:27:31 -06001758 data->dummy_ad.addr = cpu_to_le32(DMA_ADDR(data, dummy_aoi));
1759 data->dummy_ad.pix_fmt = 0x88882317;
1760 data->dummy_ad.src_size_g_alpha = cpu_to_le32((4 << 12) | 4);
1761 data->dummy_ad.aoi_size = cpu_to_le32((4 << 16) | 2);
1762 data->dummy_ad.offset_xyi = 0;
1763 data->dummy_ad.offset_xyd = 0;
1764 data->dummy_ad.next_ad = 0;
1765 data->dummy_ad.paddr = DMA_ADDR(data, dummy_ad);
York Sun9b53a9e2008-04-28 02:15:34 -07001766
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001767 /*
Timur Tabi7af3b132012-10-16 17:33:48 -05001768 * Let DIU continue to display splash screen if it was pre-initialized
1769 * by the bootloader; otherwise, clear the display.
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001770 */
Timur Tabi7af3b132012-10-16 17:33:48 -05001771 if (in_be32(&data->diu_reg->diu_mode) == MFB_MODE0)
1772 out_be32(&data->diu_reg->desc[0], 0);
Anatolij Gustschin4b5006e2010-07-23 04:00:37 +00001773
Timur Tabib7795052011-12-08 17:27:31 -06001774 out_be32(&data->diu_reg->desc[1], data->dummy_ad.paddr);
1775 out_be32(&data->diu_reg->desc[2], data->dummy_ad.paddr);
York Sun9b53a9e2008-04-28 02:15:34 -07001776
Timur Tabif74de502012-10-16 17:33:45 -05001777 /*
1778 * Older versions of U-Boot leave interrupts enabled, so disable
1779 * all of them and clear the status register.
1780 */
1781 out_be32(&data->diu_reg->int_mask, 0xffffffff);
1782 in_be32(&data->diu_reg->int_status);
1783
1784 ret = request_irq(data->irq, fsl_diu_isr, 0, "fsl-diu-fb",
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001785 data->diu_reg);
Timur Tabif74de502012-10-16 17:33:45 -05001786 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001787 dev_err(&pdev->dev, "could not claim irq\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001788 goto error;
1789 }
1790
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001791 for (i = 0; i < NUM_AOIS; i++) {
1792 ret = install_fb(&data->fsl_diu_info[i]);
1793 if (ret) {
1794 dev_err(&pdev->dev, "could not register fb %d\n", i);
1795 free_irq(data->irq, data->diu_reg);
1796 goto error;
1797 }
1798 }
1799
Timur Tabib7795052011-12-08 17:27:31 -06001800 sysfs_attr_init(&data->dev_attr.attr);
1801 data->dev_attr.attr.name = "monitor";
1802 data->dev_attr.attr.mode = S_IRUGO|S_IWUSR;
1803 data->dev_attr.show = show_monitor;
1804 data->dev_attr.store = store_monitor;
1805 ret = device_create_file(&pdev->dev, &data->dev_attr);
Timur Tabiddd3d902011-12-02 17:03:27 -06001806 if (ret) {
Timur Tabi9e52ba62011-09-15 16:44:50 -05001807 dev_err(&pdev->dev, "could not create sysfs file %s\n",
Timur Tabib7795052011-12-08 17:27:31 -06001808 data->dev_attr.attr.name);
York Sun9b53a9e2008-04-28 02:15:34 -07001809 }
1810
Timur Tabib7795052011-12-08 17:27:31 -06001811 dev_set_drvdata(&pdev->dev, data);
York Sun9b53a9e2008-04-28 02:15:34 -07001812 return 0;
1813
1814error:
Timur Tabiddd3d902011-12-02 17:03:27 -06001815 for (i = 0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001816 uninstall_fb(&data->fsl_diu_info[i]);
Timur Tabi3f78bbd2011-09-15 16:44:56 -05001817
Timur Tabib7795052011-12-08 17:27:31 -06001818 iounmap(data->diu_reg);
York Sun9b53a9e2008-04-28 02:15:34 -07001819
York Sun9b53a9e2008-04-28 02:15:34 -07001820 return ret;
1821}
1822
Timur Tabi9e52ba62011-09-15 16:44:50 -05001823static int fsl_diu_remove(struct platform_device *pdev)
York Sun9b53a9e2008-04-28 02:15:34 -07001824{
Timur Tabib7795052011-12-08 17:27:31 -06001825 struct fsl_diu_data *data;
York Sun9b53a9e2008-04-28 02:15:34 -07001826 int i;
1827
Timur Tabib7795052011-12-08 17:27:31 -06001828 data = dev_get_drvdata(&pdev->dev);
1829 disable_lcdc(&data->fsl_diu_info[0]);
Timur Tabif74de502012-10-16 17:33:45 -05001830
Anatolij Gustschinb2639b52013-01-19 10:59:10 +01001831 free_irq(data->irq, data->diu_reg);
Timur Tabiddd3d902011-12-02 17:03:27 -06001832
1833 for (i = 0; i < NUM_AOIS; i++)
Timur Tabib7795052011-12-08 17:27:31 -06001834 uninstall_fb(&data->fsl_diu_info[i]);
Timur Tabiddd3d902011-12-02 17:03:27 -06001835
Timur Tabib7795052011-12-08 17:27:31 -06001836 iounmap(data->diu_reg);
Timur Tabiddd3d902011-12-02 17:03:27 -06001837
York Sun9b53a9e2008-04-28 02:15:34 -07001838 return 0;
1839}
1840
1841#ifndef MODULE
1842static int __init fsl_diu_setup(char *options)
1843{
1844 char *opt;
1845 unsigned long val;
1846
1847 if (!options || !*options)
1848 return 0;
1849
1850 while ((opt = strsep(&options, ",")) != NULL) {
1851 if (!*opt)
1852 continue;
1853 if (!strncmp(opt, "monitor=", 8)) {
Timur Tabi7653aaa2011-07-09 15:38:14 -05001854 monitor_port = fsl_diu_name_to_port(opt + 8);
York Sun9b53a9e2008-04-28 02:15:34 -07001855 } else if (!strncmp(opt, "bpp=", 4)) {
1856 if (!strict_strtoul(opt + 4, 10, &val))
1857 default_bpp = val;
1858 } else
1859 fb_mode = opt;
1860 }
1861
1862 return 0;
1863}
1864#endif
1865
1866static struct of_device_id fsl_diu_match[] = {
Anatolij Gustschind24720a2010-02-17 07:33:22 -07001867#ifdef CONFIG_PPC_MPC512x
1868 {
1869 .compatible = "fsl,mpc5121-diu",
1870 },
1871#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001872 {
1873 .compatible = "fsl,diu",
1874 },
1875 {}
1876};
1877MODULE_DEVICE_TABLE(of, fsl_diu_match);
1878
Grant Likely28541d02011-02-22 21:07:43 -07001879static struct platform_driver fsl_diu_driver = {
Grant Likely40182942010-04-13 16:13:02 -07001880 .driver = {
Timur Tabif8c6bf62011-09-15 16:44:53 -05001881 .name = "fsl-diu-fb",
Grant Likely40182942010-04-13 16:13:02 -07001882 .owner = THIS_MODULE,
1883 .of_match_table = fsl_diu_match,
1884 },
York Sun9b53a9e2008-04-28 02:15:34 -07001885 .probe = fsl_diu_probe,
1886 .remove = fsl_diu_remove,
1887 .suspend = fsl_diu_suspend,
1888 .resume = fsl_diu_resume,
1889};
1890
1891static int __init fsl_diu_init(void)
1892{
1893#ifdef CONFIG_NOT_COHERENT_CACHE
1894 struct device_node *np;
1895 const u32 *prop;
1896#endif
1897 int ret;
1898#ifndef MODULE
1899 char *option;
1900
1901 /*
1902 * For kernel boot options (in 'video=xxxfb:<options>' format)
1903 */
1904 if (fb_get_options("fslfb", &option))
1905 return -ENODEV;
1906 fsl_diu_setup(option);
Timur Tabi7653aaa2011-07-09 15:38:14 -05001907#else
1908 monitor_port = fsl_diu_name_to_port(monitor_string);
York Sun9b53a9e2008-04-28 02:15:34 -07001909#endif
Timur Tabi154152a2011-09-15 16:44:47 -05001910 pr_info("Freescale Display Interface Unit (DIU) framebuffer driver\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001911
1912#ifdef CONFIG_NOT_COHERENT_CACHE
1913 np = of_find_node_by_type(NULL, "cpu");
1914 if (!np) {
Timur Tabi154152a2011-09-15 16:44:47 -05001915 pr_err("fsl-diu-fb: can't find 'cpu' device node\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001916 return -ENODEV;
1917 }
1918
1919 prop = of_get_property(np, "d-cache-size", NULL);
Julia Lawall5394ba02008-08-05 13:01:28 -07001920 if (prop == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -05001921 pr_err("fsl-diu-fb: missing 'd-cache-size' property' "
1922 "in 'cpu' node\n");
Julia Lawall5394ba02008-08-05 13:01:28 -07001923 of_node_put(np);
York Sun9b53a9e2008-04-28 02:15:34 -07001924 return -ENODEV;
Julia Lawall5394ba02008-08-05 13:01:28 -07001925 }
York Sun9b53a9e2008-04-28 02:15:34 -07001926
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001927 /*
1928 * Freescale PLRU requires 13/8 times the cache size to do a proper
1929 * displacement flush
York Sun9b53a9e2008-04-28 02:15:34 -07001930 */
Timur Tabi9e52ba62011-09-15 16:44:50 -05001931 coherence_data_size = be32_to_cpup(prop) * 13;
York Sun9b53a9e2008-04-28 02:15:34 -07001932 coherence_data_size /= 8;
1933
Timur Tabi5cc2a362012-10-16 17:33:46 -05001934 pr_debug("fsl-diu-fb: coherence data size is %zu bytes\n",
1935 coherence_data_size);
1936
York Sun9b53a9e2008-04-28 02:15:34 -07001937 prop = of_get_property(np, "d-cache-line-size", NULL);
Julia Lawall5394ba02008-08-05 13:01:28 -07001938 if (prop == NULL) {
Timur Tabi154152a2011-09-15 16:44:47 -05001939 pr_err("fsl-diu-fb: missing 'd-cache-line-size' property' "
1940 "in 'cpu' node\n");
Julia Lawall5394ba02008-08-05 13:01:28 -07001941 of_node_put(np);
York Sun9b53a9e2008-04-28 02:15:34 -07001942 return -ENODEV;
Julia Lawall5394ba02008-08-05 13:01:28 -07001943 }
Timur Tabi9e52ba62011-09-15 16:44:50 -05001944 d_cache_line_size = be32_to_cpup(prop);
York Sun9b53a9e2008-04-28 02:15:34 -07001945
Timur Tabi5cc2a362012-10-16 17:33:46 -05001946 pr_debug("fsl-diu-fb: cache lines size is %u bytes\n",
1947 d_cache_line_size);
1948
York Sun9b53a9e2008-04-28 02:15:34 -07001949 of_node_put(np);
1950 coherence_data = vmalloc(coherence_data_size);
Timur Tabi5cc2a362012-10-16 17:33:46 -05001951 if (!coherence_data) {
1952 pr_err("fsl-diu-fb: could not allocate coherence data "
1953 "(size=%zu)\n", coherence_data_size);
York Sun9b53a9e2008-04-28 02:15:34 -07001954 return -ENOMEM;
Timur Tabi5cc2a362012-10-16 17:33:46 -05001955 }
1956
York Sun9b53a9e2008-04-28 02:15:34 -07001957#endif
Timur Tabi4a85dc8b2011-09-15 16:44:46 -05001958
Grant Likely28541d02011-02-22 21:07:43 -07001959 ret = platform_driver_register(&fsl_diu_driver);
York Sun9b53a9e2008-04-28 02:15:34 -07001960 if (ret) {
Timur Tabi154152a2011-09-15 16:44:47 -05001961 pr_err("fsl-diu-fb: failed to register platform driver\n");
York Sun9b53a9e2008-04-28 02:15:34 -07001962#if defined(CONFIG_NOT_COHERENT_CACHE)
1963 vfree(coherence_data);
1964#endif
York Sun9b53a9e2008-04-28 02:15:34 -07001965 }
1966 return ret;
1967}
1968
1969static void __exit fsl_diu_exit(void)
1970{
Grant Likely28541d02011-02-22 21:07:43 -07001971 platform_driver_unregister(&fsl_diu_driver);
York Sun9b53a9e2008-04-28 02:15:34 -07001972#if defined(CONFIG_NOT_COHERENT_CACHE)
1973 vfree(coherence_data);
1974#endif
1975}
1976
1977module_init(fsl_diu_init);
1978module_exit(fsl_diu_exit);
1979
1980MODULE_AUTHOR("York Sun <yorksun@freescale.com>");
1981MODULE_DESCRIPTION("Freescale DIU framebuffer driver");
1982MODULE_LICENSE("GPL");
1983
1984module_param_named(mode, fb_mode, charp, 0);
1985MODULE_PARM_DESC(mode,
1986 "Specify resolution as \"<xres>x<yres>[-<bpp>][@<refresh>]\" ");
1987module_param_named(bpp, default_bpp, ulong, 0);
Timur Tabi154152a2011-09-15 16:44:47 -05001988MODULE_PARM_DESC(bpp, "Specify bit-per-pixel if not specified in 'mode'");
Timur Tabi7653aaa2011-07-09 15:38:14 -05001989module_param_named(monitor, monitor_string, charp, 0);
1990MODULE_PARM_DESC(monitor, "Specify the monitor port "
1991 "(\"dvi\", \"lvds\", or \"dlvds\") if supported by the platform");
York Sun9b53a9e2008-04-28 02:15:34 -07001992