blob: af3d58bdd3cbcec545d7d09020e454177c0e4753 [file] [log] [blame]
Mike Frysinger76d21802008-10-12 05:05:42 -04001/*
2 * video.c - run splash screen on lcd
3 *
4 * Copyright (c) 2007-2008 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2 or later.
7 */
8
9#include <stdarg.h>
10#include <common.h>
11#include <config.h>
12#include <malloc.h>
13#include <asm/blackfin.h>
Mike Frysingerd1f49b42010-06-02 19:29:47 -040014#include <asm/gpio.h>
15#include <asm/portmux.h>
Mike Frysinger76d21802008-10-12 05:05:42 -040016#include <asm/mach-common/bits/dma.h>
17#include <i2c.h>
18#include <linux/types.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020019#include <stdio_dev.h>
Mike Frysinger76d21802008-10-12 05:05:42 -040020
Mike Frysinger76d21802008-10-12 05:05:42 -040021#define DMA_SIZE16 2
22
23#include <asm/mach-common/bits/eppi.h>
24
25#include <asm/bfin_logo_230x230.h>
26
27#define LCD_X_RES 480 /*Horizontal Resolution */
28#define LCD_Y_RES 272 /* Vertical Resolution */
29
30#define LCD_BPP 24 /* Bit Per Pixel */
31#define LCD_PIXEL_SIZE (LCD_BPP / 8)
32#define DMA_BUS_SIZE 32
33#define ACTIVE_VIDEO_MEM_OFFSET 0
34
35/* -- Horizontal synchronizing --
36 *
37 * Timing characteristics taken from the SHARP LQ043T1DG01 datasheet
38 * (LCY-W-06602A Page 9 of 22)
39 *
40 * Clock Frequency 1/Tc Min 7.83 Typ 9.00 Max 9.26 MHz
41 *
42 * Period TH - 525 - Clock
43 * Pulse width THp - 41 - Clock
44 * Horizontal period THd - 480 - Clock
45 * Back porch THb - 2 - Clock
46 * Front porch THf - 2 - Clock
47 *
48 * -- Vertical synchronizing --
49 * Period TV - 286 - Line
50 * Pulse width TVp - 10 - Line
51 * Vertical period TVd - 272 - Line
52 * Back porch TVb - 2 - Line
53 * Front porch TVf - 2 - Line
54 */
55
56#define LCD_CLK (8*1000*1000) /* 8MHz */
57
58/* # active data to transfer after Horizontal Delay clock */
59#define EPPI_HCOUNT LCD_X_RES
60
61/* # active lines to transfer after Vertical Delay clock */
62#define EPPI_VCOUNT LCD_Y_RES
63
64/* Samples per Line = 480 (active data) + 45 (padding) */
65#define EPPI_LINE 525
66
67/* Lines per Frame = 272 (active data) + 14 (padding) */
68#define EPPI_FRAME 286
69
70/* FS1 (Hsync) Width (Typical)*/
71#define EPPI_FS1W_HBL 41
72
73/* FS1 (Hsync) Period (Typical) */
74#define EPPI_FS1P_AVPL EPPI_LINE
75
76/* Horizontal Delay clock after assertion of Hsync (Typical) */
77#define EPPI_HDELAY 43
78
79/* FS2 (Vsync) Width = FS1 (Hsync) Period * 10 */
80#define EPPI_FS2W_LVB (EPPI_LINE * 10)
81
82 /* FS2 (Vsync) Period = FS1 (Hsync) Period * Lines per Frame */
83#define EPPI_FS2P_LAVF (EPPI_LINE * EPPI_FRAME)
84
85/* Vertical Delay after assertion of Vsync (2 Lines) */
86#define EPPI_VDELAY 12
87
88#define EPPI_CLIP 0xFF00FF00
89
90/* EPPI Control register configuration value for RGB out
91 * - EPPI as Output
92 * GP 2 frame sync mode,
93 * Internal Clock generation disabled, Internal FS generation enabled,
94 * Receives samples on EPPI_CLK raising edge, Transmits samples on EPPI_CLK falling edge,
95 * FS1 & FS2 are active high,
96 * DLEN = 6 (24 bits for RGB888 out) or 5 (18 bits for RGB666 out)
97 * DMA Unpacking disabled when RGB Formating is enabled, otherwise DMA unpacking enabled
98 * Swapping Enabled,
99 * One (DMA) Channel Mode,
100 * RGB Formatting Enabled for RGB666 output, disabled for RGB888 output
101 * Regular watermark - when FIFO is 100% full,
102 * Urgent watermark - when FIFO is 75% full
103 */
104
105#define EPPI_CONTROL (0x20136E2E)
106
107static inline u16 get_eppi_clkdiv(u32 target_ppi_clk)
108{
109 u32 sclk = get_sclk();
110
111 /* EPPI_CLK = (SCLK) / (2 * (EPPI_CLKDIV[15:0] + 1)) */
112
113 return (((sclk / target_ppi_clk) / 2) - 1);
114}
115
116void Init_PPI(void)
117{
118 u16 eppi_clkdiv = get_eppi_clkdiv(LCD_CLK);
119
120 bfin_write_EPPI0_FS1W_HBL(EPPI_FS1W_HBL);
121 bfin_write_EPPI0_FS1P_AVPL(EPPI_FS1P_AVPL);
122 bfin_write_EPPI0_FS2W_LVB(EPPI_FS2W_LVB);
123 bfin_write_EPPI0_FS2P_LAVF(EPPI_FS2P_LAVF);
124 bfin_write_EPPI0_CLIP(EPPI_CLIP);
125
126 bfin_write_EPPI0_FRAME(EPPI_FRAME);
127 bfin_write_EPPI0_LINE(EPPI_LINE);
128
129 bfin_write_EPPI0_HCOUNT(EPPI_HCOUNT);
130 bfin_write_EPPI0_HDELAY(EPPI_HDELAY);
131 bfin_write_EPPI0_VCOUNT(EPPI_VCOUNT);
132 bfin_write_EPPI0_VDELAY(EPPI_VDELAY);
133
134 bfin_write_EPPI0_CLKDIV(eppi_clkdiv);
135
136/*
137 * DLEN = 6 (24 bits for RGB888 out) or 5 (18 bits for RGB666 out)
138 * RGB Formatting Enabled for RGB666 output, disabled for RGB888 output
139 */
140#if defined(CONFIG_VIDEO_RGB666)
141 bfin_write_EPPI0_CONTROL((EPPI_CONTROL & ~DLENGTH) | DLEN_18 |
142 RGB_FMT_EN);
143#else
144 bfin_write_EPPI0_CONTROL(((EPPI_CONTROL & ~DLENGTH) | DLEN_24) &
145 ~RGB_FMT_EN);
146#endif
147
148}
149
150#define DEB2_URGENT 0x2000 /* DEB2 Urgent */
151
152void Init_DMA(void *dst)
153{
154
155#if defined(CONFIG_DEB_DMA_URGENT)
156 *pEBIU_DDRQUE |= DEB2_URGENT;
157#endif
158
159 *pDMA12_START_ADDR = dst;
160
161 /* X count */
162 *pDMA12_X_COUNT = (LCD_X_RES * LCD_BPP) / DMA_BUS_SIZE;
163 *pDMA12_X_MODIFY = DMA_BUS_SIZE / 8;
164
165 /* Y count */
166 *pDMA12_Y_COUNT = LCD_Y_RES;
167 *pDMA12_Y_MODIFY = DMA_BUS_SIZE / 8;
168
169 /* DMA Config */
170 *pDMA12_CONFIG =
171 WDSIZE_32 | /* 32 bit DMA */
172 DMA2D | /* 2D DMA */
173 FLOW_AUTO; /* autobuffer mode */
174}
175
176void Init_Ports(void)
177{
Mike Frysingerd1f49b42010-06-02 19:29:47 -0400178 const unsigned short pins[] = {
179 P_PPI0_D0, P_PPI0_D1, P_PPI0_D2, P_PPI0_D3, P_PPI0_D4,
180 P_PPI0_D5, P_PPI0_D6, P_PPI0_D7, P_PPI0_D8, P_PPI0_D9,
181 P_PPI0_D10, P_PPI0_D11, P_PPI0_D12, P_PPI0_D13, P_PPI0_D14,
182 P_PPI0_D15, P_PPI0_D16, P_PPI0_D17,
Mike Frysinger76d21802008-10-12 05:05:42 -0400183#if !defined(CONFIG_VIDEO_RGB666)
Mike Frysingerd1f49b42010-06-02 19:29:47 -0400184 P_PPI0_D18, P_PPI0_D19, P_PPI0_D20, P_PPI0_D21, P_PPI0_D22,
185 P_PPI0_D23,
Mike Frysinger76d21802008-10-12 05:05:42 -0400186#endif
Mike Frysingerd1f49b42010-06-02 19:29:47 -0400187 P_PPI0_CLK, P_PPI0_FS1, P_PPI0_FS2, 0,
188 };
189 peripheral_request_list(pins, "lcd");
Mike Frysinger76d21802008-10-12 05:05:42 -0400190
Mike Frysingerd1f49b42010-06-02 19:29:47 -0400191 gpio_request(GPIO_PE3, "lcd-disp");
192 gpio_direction_output(GPIO_PE3, 1);
Mike Frysinger76d21802008-10-12 05:05:42 -0400193}
194
195void EnableDMA(void)
196{
197 *pDMA12_CONFIG |= DMAEN;
198}
199
200void DisableDMA(void)
201{
202 *pDMA12_CONFIG &= ~DMAEN;
203}
204
205/* enable and disable PPI functions */
206void EnablePPI(void)
207{
208 bfin_write_EPPI0_CONTROL(bfin_read_EPPI0_CONTROL() | EPPI_EN);
209}
210
211void DisablePPI(void)
212{
213 bfin_write_EPPI0_CONTROL(bfin_read_EPPI0_CONTROL() & ~EPPI_EN);
214}
215
216int video_init(void *dst)
217{
218 Init_Ports();
219 Init_DMA(dst);
220 EnableDMA();
221 Init_PPI();
222 EnablePPI();
223
224 return 0;
225}
226
227static void dma_bitblit(void *dst, fastimage_t *logo, int x, int y)
228{
229 if (dcache_status())
230 blackfin_dcache_flush_range(logo->data, logo->data + logo->size);
231
232 bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR);
233
234 /* Setup destination start address */
235 bfin_write_MDMA_D0_START_ADDR(dst + ((x & -2) * LCD_PIXEL_SIZE)
236 + (y * LCD_X_RES * LCD_PIXEL_SIZE));
237 /* Setup destination xcount */
238 bfin_write_MDMA_D0_X_COUNT(logo->width * LCD_PIXEL_SIZE / DMA_SIZE16);
239 /* Setup destination xmodify */
240 bfin_write_MDMA_D0_X_MODIFY(DMA_SIZE16);
241
242 /* Setup destination ycount */
243 bfin_write_MDMA_D0_Y_COUNT(logo->height);
244 /* Setup destination ymodify */
245 bfin_write_MDMA_D0_Y_MODIFY((LCD_X_RES - logo->width) * LCD_PIXEL_SIZE + DMA_SIZE16);
246
247
248 /* Setup Source start address */
249 bfin_write_MDMA_S0_START_ADDR(logo->data);
250 /* Setup Source xcount */
251 bfin_write_MDMA_S0_X_COUNT(logo->width * LCD_PIXEL_SIZE / DMA_SIZE16);
252 /* Setup Source xmodify */
253 bfin_write_MDMA_S0_X_MODIFY(DMA_SIZE16);
254
255 /* Setup Source ycount */
256 bfin_write_MDMA_S0_Y_COUNT(logo->height);
257 /* Setup Source ymodify */
258 bfin_write_MDMA_S0_Y_MODIFY(DMA_SIZE16);
259
260
261 /* Enable source DMA */
262 bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_16 | DMA2D);
263 SSYNC();
264 bfin_write_MDMA_D0_CONFIG(WNR | DMAEN | WDSIZE_16 | DMA2D);
265
266 while (bfin_read_MDMA_D0_IRQ_STATUS() & DMA_RUN);
267
268 bfin_write_MDMA_S0_IRQ_STATUS(bfin_read_MDMA_S0_IRQ_STATUS() | DMA_DONE | DMA_ERR);
269 bfin_write_MDMA_D0_IRQ_STATUS(bfin_read_MDMA_D0_IRQ_STATUS() | DMA_DONE | DMA_ERR);
270
271}
272
273void video_putc(const char c)
274{
275}
276
277void video_puts(const char *s)
278{
279}
280
281int drv_video_init(void)
282{
283 int error, devices = 1;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200284 struct stdio_dev videodev;
Mike Frysinger76d21802008-10-12 05:05:42 -0400285
286 u8 *dst;
287 u32 fbmem_size = LCD_X_RES * LCD_Y_RES * LCD_PIXEL_SIZE + ACTIVE_VIDEO_MEM_OFFSET;
288
289 dst = malloc(fbmem_size);
290
291 if (dst == NULL) {
292 printf("Failed to alloc FB memory\n");
293 return -1;
294 }
295
296#ifdef EASYLOGO_ENABLE_GZIP
297 unsigned char *data = EASYLOGO_DECOMP_BUFFER;
298 unsigned long src_len = EASYLOGO_ENABLE_GZIP;
299 if (gunzip(data, bfin_logo.size, bfin_logo.data, &src_len)) {
300 puts("Failed to decompress logo\n");
301 free(dst);
302 return -1;
303 }
304 bfin_logo.data = data;
305#endif
306
307 memset(dst + ACTIVE_VIDEO_MEM_OFFSET, bfin_logo.data[0], fbmem_size - ACTIVE_VIDEO_MEM_OFFSET);
308
309 dma_bitblit(dst + ACTIVE_VIDEO_MEM_OFFSET, &bfin_logo,
310 (LCD_X_RES - bfin_logo.width) / 2,
311 (LCD_Y_RES - bfin_logo.height) / 2);
312
313 video_init(dst); /* Video initialization */
314
315 memset(&videodev, 0, sizeof(videodev));
316
317 strcpy(videodev.name, "video");
318 videodev.ext = DEV_EXT_VIDEO; /* Video extensions */
319 videodev.flags = DEV_FLAGS_SYSTEM; /* No Output */
320 videodev.putc = video_putc; /* 'putc' function */
321 videodev.puts = video_puts; /* 'puts' function */
322
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200323 error = stdio_register(&videodev);
Mike Frysinger76d21802008-10-12 05:05:42 -0400324
325 return (error == 0) ? devices : error;
326}