blob: 350241ea3b0b7b6eb53ffe9debbe92704bee6a72 [file] [log] [blame]
York Suna8778802007-10-29 13:58:39 -05001/*
Timur Tabiba8e76b2011-04-11 14:18:22 -05002 * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc.
3 * Authors: York Sun <yorksun@freescale.com>
4 * Timur Tabi <timur@freescale.com>
York Suna8778802007-10-29 13:58:39 -05005 *
6 * FSL DIU Framebuffer driver
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
York Suna8778802007-10-29 13:58:39 -050027#include <common.h>
York Suna8778802007-10-29 13:58:39 -050028#include <malloc.h>
Jerry Huang15351852010-04-08 15:56:07 +080029#include <asm/io.h>
York Suna8778802007-10-29 13:58:39 -050030
Timur Tabiba8e76b2011-04-11 14:18:22 -050031#include "videomodes.h"
32#include <video_fb.h>
Anatolij Gustschin9e70d132010-09-24 01:06:37 +020033#include <fsl_diu_fb.h>
Timur Tabi8c6b2502011-08-22 10:54:02 -050034#include <linux/list.h>
35#include <linux/fb.h>
York Suna8778802007-10-29 13:58:39 -050036
Anatolij Gustschina3921ee2010-04-24 19:27:09 +020037/* This setting is used for the ifm pdm360ng with PRIMEVIEW PM070WL3 */
Timur Tabi3b4a2262011-05-26 09:02:17 -050038static struct fb_videomode fsl_diu_mode_800_480 = {
39 .name = "800x480-60",
Anatolij Gustschina3921ee2010-04-24 19:27:09 +020040 .refresh = 60,
41 .xres = 800,
42 .yres = 480,
43 .pixclock = 31250,
44 .left_margin = 86,
45 .right_margin = 42,
46 .upper_margin = 33,
47 .lower_margin = 10,
48 .hsync_len = 128,
49 .vsync_len = 2,
50 .sync = 0,
51 .vmode = FB_VMODE_NONINTERLACED
52};
53
Timur Tabi3b4a2262011-05-26 09:02:17 -050054/* For the SHARP LQ084S3LG01, used on the P1022DS board */
55static struct fb_videomode fsl_diu_mode_800_600 = {
56 .name = "800x600-60",
57 .refresh = 60,
58 .xres = 800,
59 .yres = 600,
60 .pixclock = 25000,
61 .left_margin = 88,
62 .right_margin = 40,
63 .upper_margin = 23,
64 .lower_margin = 1,
65 .hsync_len = 128,
66 .vsync_len = 4,
67 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
68 .vmode = FB_VMODE_NONINTERLACED
69};
70
York Suna8778802007-10-29 13:58:39 -050071/*
72 * These parameters give default parameters
73 * for video output 1024x768,
74 * FIXME - change timing to proper amounts
75 * hsync 31.5kHz, vsync 60Hz
76 */
Timur Tabi3b4a2262011-05-26 09:02:17 -050077static struct fb_videomode fsl_diu_mode_1024_768 = {
Timur Tabiba8e76b2011-04-11 14:18:22 -050078 .name = "1024x768-60",
York Suna8778802007-10-29 13:58:39 -050079 .refresh = 60,
80 .xres = 1024,
81 .yres = 768,
82 .pixclock = 15385,
83 .left_margin = 160,
84 .right_margin = 24,
85 .upper_margin = 29,
86 .lower_margin = 3,
87 .hsync_len = 136,
88 .vsync_len = 6,
89 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
90 .vmode = FB_VMODE_NONINTERLACED
91};
92
Timur Tabi3b4a2262011-05-26 09:02:17 -050093static struct fb_videomode fsl_diu_mode_1280_1024 = {
York Suna8778802007-10-29 13:58:39 -050094 .name = "1280x1024-60",
95 .refresh = 60,
96 .xres = 1280,
97 .yres = 1024,
98 .pixclock = 9375,
99 .left_margin = 38,
100 .right_margin = 128,
101 .upper_margin = 2,
102 .lower_margin = 7,
103 .hsync_len = 216,
104 .vsync_len = 37,
105 .sync = FB_SYNC_COMP_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
106 .vmode = FB_VMODE_NONINTERLACED
107};
108
109/*
110 * These are the fields of area descriptor(in DDR memory) for every plane
111 */
112struct diu_ad {
113 /* Word 0(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500114 __le32 pix_fmt; /* hard coding pixel format */
York Suna8778802007-10-29 13:58:39 -0500115 /* Word 1(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500116 __le32 addr;
York Suna8778802007-10-29 13:58:39 -0500117 /* Word 2(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500118 __le32 src_size_g_alpha;
York Suna8778802007-10-29 13:58:39 -0500119 /* Word 3(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500120 __le32 aoi_size;
York Suna8778802007-10-29 13:58:39 -0500121 /* Word 4(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500122 __le32 offset_xyi;
York Suna8778802007-10-29 13:58:39 -0500123 /* Word 5(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500124 __le32 offset_xyd;
York Suna8778802007-10-29 13:58:39 -0500125 /* Word 6(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500126 __le32 ckmax_r:8;
127 __le32 ckmax_g:8;
128 __le32 ckmax_b:8;
129 __le32 res9:8;
York Suna8778802007-10-29 13:58:39 -0500130 /* Word 7(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500131 __le32 ckmin_r:8;
132 __le32 ckmin_g:8;
133 __le32 ckmin_b:8;
134 __le32 res10:8;
York Suna8778802007-10-29 13:58:39 -0500135 /* Word 8(32-bit) in DDR memory */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500136 __le32 next_ad;
York Suna8778802007-10-29 13:58:39 -0500137 /* Word 9(32-bit) in DDR memory, just for 64-bit aligned */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500138 __le32 res[3];
139} __attribute__ ((packed));
York Suna8778802007-10-29 13:58:39 -0500140
141/*
142 * DIU register map
143 */
144struct diu {
Timur Tabiba8e76b2011-04-11 14:18:22 -0500145 __be32 desc[3];
146 __be32 gamma;
147 __be32 pallete;
148 __be32 cursor;
149 __be32 curs_pos;
150 __be32 diu_mode;
151 __be32 bgnd;
152 __be32 bgnd_wb;
153 __be32 disp_size;
154 __be32 wb_size;
155 __be32 wb_mem_addr;
156 __be32 hsyn_para;
157 __be32 vsyn_para;
158 __be32 syn_pol;
159 __be32 thresholds;
160 __be32 int_status;
161 __be32 int_mask;
162 __be32 colorbar[8];
163 __be32 filling;
164 __be32 plut;
York Suna8778802007-10-29 13:58:39 -0500165} __attribute__ ((packed));
166
Timur Tabiba8e76b2011-04-11 14:18:22 -0500167struct diu_addr {
168 void *vaddr; /* Virtual address */
169 u32 paddr; /* 32-bit physical address */
170 unsigned int offset; /* Alignment offset */
York Suna8778802007-10-29 13:58:39 -0500171};
172
Timur Tabiba8e76b2011-04-11 14:18:22 -0500173static struct fb_info info;
York Suna8778802007-10-29 13:58:39 -0500174
York Suna8778802007-10-29 13:58:39 -0500175/*
Timur Tabiba8e76b2011-04-11 14:18:22 -0500176 * Align to 64-bit(8-byte), 32-byte, etc.
York Suna8778802007-10-29 13:58:39 -0500177 */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500178static int allocate_buf(struct diu_addr *buf, u32 size, u32 bytes_align)
179{
180 u32 offset, ssize;
181 u32 mask;
York Suna8778802007-10-29 13:58:39 -0500182
Timur Tabiba8e76b2011-04-11 14:18:22 -0500183 ssize = size + bytes_align;
184 buf->vaddr = malloc(ssize);
185 if (!buf->vaddr)
186 return -1;
York Suna8778802007-10-29 13:58:39 -0500187
Timur Tabiba8e76b2011-04-11 14:18:22 -0500188 memset(buf->vaddr, 0, ssize);
189 mask = bytes_align - 1;
190 offset = (u32)buf->vaddr & mask;
191 if (offset) {
192 buf->offset = bytes_align - offset;
193 buf->vaddr += offset;
194 } else
195 buf->offset = 0;
York Suna8778802007-10-29 13:58:39 -0500196
Timur Tabiba8e76b2011-04-11 14:18:22 -0500197 buf->paddr = virt_to_phys(buf->vaddr);
198 return 0;
199}
York Suna8778802007-10-29 13:58:39 -0500200
Timur Tabiba8e76b2011-04-11 14:18:22 -0500201/*
202 * Allocate a framebuffer and an Area Descriptor that points to it. Both
203 * are created in the same memory block. The Area Descriptor is updated to
204 * point to the framebuffer memory. Memory is aligned as needed.
205 */
206static struct diu_ad *allocate_fb(unsigned int xres, unsigned int yres,
Timur Tabi8c6b2502011-08-22 10:54:02 -0500207 unsigned int depth, char **fb)
Timur Tabiba8e76b2011-04-11 14:18:22 -0500208{
209 unsigned long size = xres * yres * depth;
210 struct diu_addr addr;
211 struct diu_ad *ad;
212 size_t ad_size = roundup(sizeof(struct diu_ad), 32);
York Suna8778802007-10-29 13:58:39 -0500213
Timur Tabiba8e76b2011-04-11 14:18:22 -0500214 /*
215 * Allocate a memory block that holds the Area Descriptor and the
216 * frame buffer right behind it. To keep the code simple, everything
217 * is aligned on a 32-byte address.
218 */
219 if (allocate_buf(&addr, ad_size + size, 32) < 0)
220 return NULL;
221
222 ad = addr.vaddr;
223 ad->addr = cpu_to_le32(addr.paddr + ad_size);
224 ad->aoi_size = cpu_to_le32((yres << 16) | xres);
225 ad->src_size_g_alpha = cpu_to_le32((yres << 12) | xres);
226 ad->offset_xyi = 0;
227 ad->offset_xyd = 0;
228
229 if (fb)
230 *fb = addr.vaddr + ad_size;
231
232 return ad;
233}
234
Timur Tabi3b4a2262011-05-26 09:02:17 -0500235int fsl_diu_init(u16 xres, u16 yres, u32 pixel_format, int gamma_fix)
York Suna8778802007-10-29 13:58:39 -0500236{
237 struct fb_videomode *fsl_diu_mode_db;
Timur Tabiba8e76b2011-04-11 14:18:22 -0500238 struct diu_ad *ad;
239 struct diu *hw = (struct diu *)CONFIG_SYS_DIU_ADDR;
240 u8 *gamma_table_base;
York Suna8778802007-10-29 13:58:39 -0500241 unsigned int i, j;
Timur Tabiba8e76b2011-04-11 14:18:22 -0500242 struct diu_ad *dummy_ad;
243 struct diu_addr gamma;
244 struct diu_addr cursor;
York Suna8778802007-10-29 13:58:39 -0500245
Timur Tabi3b4a2262011-05-26 09:02:17 -0500246/* Convert the X,Y resolution pair into a single number */
247#define RESOLUTION(x, y) (((u32)(x) << 16) | (y))
248
249 switch (RESOLUTION(xres, yres)) {
250 case RESOLUTION(800, 480):
251 fsl_diu_mode_db = &fsl_diu_mode_800_480;
Anatolij Gustschina3921ee2010-04-24 19:27:09 +0200252 break;
Timur Tabi3b4a2262011-05-26 09:02:17 -0500253 case RESOLUTION(800, 600):
254 fsl_diu_mode_db = &fsl_diu_mode_800_600;
Jerry Huang15006cb2011-10-30 20:19:54 +0000255 break;
Timur Tabi3b4a2262011-05-26 09:02:17 -0500256 case RESOLUTION(1024, 768):
257 fsl_diu_mode_db = &fsl_diu_mode_1024_768;
Jerry Huang15006cb2011-10-30 20:19:54 +0000258 break;
Timur Tabi3b4a2262011-05-26 09:02:17 -0500259 case RESOLUTION(1280, 1024):
260 fsl_diu_mode_db = &fsl_diu_mode_1280_1024;
Anatolij Gustschina3921ee2010-04-24 19:27:09 +0200261 break;
262 default:
Timur Tabi3b4a2262011-05-26 09:02:17 -0500263 printf("DIU: Unsupported resolution %ux%u\n", xres, yres);
264 return -1;
York Suna8778802007-10-29 13:58:39 -0500265 }
266
Timur Tabiba8e76b2011-04-11 14:18:22 -0500267 /* The AD struct for the dummy framebuffer and the FB itself */
268 dummy_ad = allocate_fb(2, 4, 4, NULL);
269 if (!dummy_ad) {
270 printf("DIU: Out of memory\n");
271 return -1;
York Suna8778802007-10-29 13:58:39 -0500272 }
Timur Tabiba8e76b2011-04-11 14:18:22 -0500273 dummy_ad->pix_fmt = 0x88883316;
York Suna8778802007-10-29 13:58:39 -0500274
275 /* read mode info */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500276 info.var.xres = fsl_diu_mode_db->xres;
277 info.var.yres = fsl_diu_mode_db->yres;
278 info.var.bits_per_pixel = 32;
279 info.var.pixclock = fsl_diu_mode_db->pixclock;
280 info.var.left_margin = fsl_diu_mode_db->left_margin;
281 info.var.right_margin = fsl_diu_mode_db->right_margin;
282 info.var.upper_margin = fsl_diu_mode_db->upper_margin;
283 info.var.lower_margin = fsl_diu_mode_db->lower_margin;
284 info.var.hsync_len = fsl_diu_mode_db->hsync_len;
285 info.var.vsync_len = fsl_diu_mode_db->vsync_len;
286 info.var.sync = fsl_diu_mode_db->sync;
287 info.var.vmode = fsl_diu_mode_db->vmode;
Timur Tabi8c6b2502011-08-22 10:54:02 -0500288 info.fix.line_length = info.var.xres * info.var.bits_per_pixel / 8;
Timur Tabiba8e76b2011-04-11 14:18:22 -0500289
290 /* Memory allocation for framebuffer */
Timur Tabi8c6b2502011-08-22 10:54:02 -0500291 info.screen_size =
Timur Tabiba8e76b2011-04-11 14:18:22 -0500292 info.var.xres * info.var.yres * (info.var.bits_per_pixel / 8);
293 ad = allocate_fb(info.var.xres, info.var.yres,
294 info.var.bits_per_pixel / 8, &info.screen_base);
295 if (!ad) {
296 printf("DIU: Out of memory\n");
297 return -1;
298 }
York Suna8778802007-10-29 13:58:39 -0500299
300 ad->pix_fmt = pixel_format;
York Suna8778802007-10-29 13:58:39 -0500301
302 /* Disable chroma keying function */
303 ad->ckmax_r = 0;
304 ad->ckmax_g = 0;
305 ad->ckmax_b = 0;
306
307 ad->ckmin_r = 255;
308 ad->ckmin_g = 255;
309 ad->ckmin_b = 255;
310
Timur Tabiba8e76b2011-04-11 14:18:22 -0500311 /* Initialize the gamma table */
312 if (allocate_buf(&gamma, 256 * 3, 32) < 0) {
313 printf("DIU: Out of memory\n");
314 return -1;
315 }
316 gamma_table_base = gamma.vaddr;
York Suna8778802007-10-29 13:58:39 -0500317 for (i = 0; i <= 2; i++)
Timur Tabiba8e76b2011-04-11 14:18:22 -0500318 for (j = 0; j < 256; j++)
York Suna8778802007-10-29 13:58:39 -0500319 *gamma_table_base++ = j;
320
321 if (gamma_fix == 1) { /* fix the gamma */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500322 gamma_table_base = gamma.vaddr;
323 for (i = 0; i < 256 * 3; i++) {
York Suna8778802007-10-29 13:58:39 -0500324 gamma_table_base[i] = (gamma_table_base[i] << 2)
325 | ((gamma_table_base[i] >> 6) & 0x03);
326 }
327 }
328
Timur Tabiba8e76b2011-04-11 14:18:22 -0500329 /* Initialize the cursor */
330 if (allocate_buf(&cursor, 32 * 32 * 2, 32) < 0) {
331 printf("DIU: Can't alloc cursor data\n");
332 return -1;
333 }
York Suna8778802007-10-29 13:58:39 -0500334
335 /* Program DIU registers */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500336 out_be32(&hw->diu_mode, 0); /* Temporarily disable the DIU */
York Suna8778802007-10-29 13:58:39 -0500337
Timur Tabiba8e76b2011-04-11 14:18:22 -0500338 out_be32(&hw->gamma, gamma.paddr);
339 out_be32(&hw->cursor, cursor.paddr);
Jerry Huang15351852010-04-08 15:56:07 +0800340 out_be32(&hw->bgnd, 0x007F7F7F);
Timur Tabiba8e76b2011-04-11 14:18:22 -0500341 out_be32(&hw->bgnd_wb, 0);
342 out_be32(&hw->disp_size, info.var.yres << 16 | info.var.xres);
343 out_be32(&hw->wb_size, 0);
344 out_be32(&hw->wb_mem_addr, 0);
345 out_be32(&hw->hsyn_para, info.var.left_margin << 22 |
346 info.var.hsync_len << 11 |
347 info.var.right_margin);
Jerry Huang15351852010-04-08 15:56:07 +0800348
Timur Tabiba8e76b2011-04-11 14:18:22 -0500349 out_be32(&hw->vsyn_para, info.var.upper_margin << 22 |
350 info.var.vsync_len << 11 |
351 info.var.lower_margin);
York Suna8778802007-10-29 13:58:39 -0500352
Timur Tabiba8e76b2011-04-11 14:18:22 -0500353 out_be32(&hw->syn_pol, 0);
354 out_be32(&hw->thresholds, 0x00037800);
355 out_be32(&hw->int_status, 0);
356 out_be32(&hw->int_mask, 0);
Jerry Huang15351852010-04-08 15:56:07 +0800357 out_be32(&hw->plut, 0x01F5F666);
York Sun3b80c5f2008-05-05 10:19:59 -0500358 /* Pixel Clock configuration */
Timur Tabiba8e76b2011-04-11 14:18:22 -0500359 diu_set_pixel_clock(info.var.pixclock);
York Suna8778802007-10-29 13:58:39 -0500360
Timur Tabiba8e76b2011-04-11 14:18:22 -0500361 /* Set the frame buffers */
362 out_be32(&hw->desc[0], virt_to_phys(ad));
363 out_be32(&hw->desc[1], virt_to_phys(dummy_ad));
364 out_be32(&hw->desc[2], virt_to_phys(dummy_ad));
York Suna8778802007-10-29 13:58:39 -0500365
Timur Tabiba8e76b2011-04-11 14:18:22 -0500366 /* Enable the DIU, set display to all three planes */
367 out_be32(&hw->diu_mode, 1);
York Suna8778802007-10-29 13:58:39 -0500368
369 return 0;
370}
371
Anatolij Gustschin9e70d132010-09-24 01:06:37 +0200372void *video_hw_init(void)
373{
Timur Tabiba8e76b2011-04-11 14:18:22 -0500374 static GraphicDevice ctfb;
375 const char *options;
376 unsigned int depth = 0, freq = 0;
Anatolij Gustschin9e70d132010-09-24 01:06:37 +0200377
Timur Tabiba8e76b2011-04-11 14:18:22 -0500378 if (!video_get_video_mode(&ctfb.winSizeX, &ctfb.winSizeY, &depth, &freq,
379 &options))
380 return NULL;
381
382 /* Find the monitor port, which is a required option */
383 if (!options)
384 return NULL;
385 if (strncmp(options, "monitor=", 8) != 0)
386 return NULL;
387
388 if (platform_diu_init(ctfb.winSizeX, ctfb.winSizeY, options + 8) < 0)
Anatolij Gustschin9e70d132010-09-24 01:06:37 +0200389 return NULL;
390
391 /* fill in Graphic device struct */
392 sprintf(ctfb.modeIdent, "%ix%ix%i %ikHz %iHz",
Timur Tabiba8e76b2011-04-11 14:18:22 -0500393 ctfb.winSizeX, ctfb.winSizeY, depth, 64, freq);
Anatolij Gustschin9e70d132010-09-24 01:06:37 +0200394
Timur Tabiba8e76b2011-04-11 14:18:22 -0500395 ctfb.frameAdrs = (unsigned int)info.screen_base;
Anatolij Gustschin9e70d132010-09-24 01:06:37 +0200396 ctfb.plnSizeX = ctfb.winSizeX;
397 ctfb.plnSizeY = ctfb.winSizeY;
398
399 ctfb.gdfBytesPP = 4;
400 ctfb.gdfIndex = GDF_32BIT_X888RGB;
401
402 ctfb.isaBase = 0;
403 ctfb.pciBase = 0;
Timur Tabiba8e76b2011-04-11 14:18:22 -0500404 ctfb.memSize = info.screen_size;
Anatolij Gustschin9e70d132010-09-24 01:06:37 +0200405
406 /* Cursor Start Address */
407 ctfb.dprBase = 0;
408 ctfb.vprBase = 0;
409 ctfb.cprBase = 0;
410
411 return &ctfb;
412}