]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/bf548-ezkit/video.c
Merge branch 'master' of git://git.denx.de/u-boot-ppc4xx
[karo-tx-uboot.git] / board / bf548-ezkit / video.c
1 /*
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>
14 #include <asm/gpio.h>
15 #include <asm/portmux.h>
16 #include <asm/mach-common/bits/dma.h>
17 #include <i2c.h>
18 #include <linux/types.h>
19 #include <stdio_dev.h>
20
21 #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
107 static 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
116 void 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
152 void 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
176 void Init_Ports(void)
177 {
178         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,
183 #if !defined(CONFIG_VIDEO_RGB666)
184                 P_PPI0_D18, P_PPI0_D19, P_PPI0_D20, P_PPI0_D21, P_PPI0_D22,
185                 P_PPI0_D23,
186 #endif
187                 P_PPI0_CLK, P_PPI0_FS1, P_PPI0_FS2, 0,
188         };
189         peripheral_request_list(pins, "lcd");
190
191         gpio_request(GPIO_PE3, "lcd-disp");
192         gpio_direction_output(GPIO_PE3, 1);
193 }
194
195 void EnableDMA(void)
196 {
197         *pDMA12_CONFIG |= DMAEN;
198 }
199
200 void DisableDMA(void)
201 {
202         *pDMA12_CONFIG &= ~DMAEN;
203 }
204
205 /* enable and disable PPI functions */
206 void EnablePPI(void)
207 {
208         bfin_write_EPPI0_CONTROL(bfin_read_EPPI0_CONTROL() | EPPI_EN);
209 }
210
211 void DisablePPI(void)
212 {
213         bfin_write_EPPI0_CONTROL(bfin_read_EPPI0_CONTROL() & ~EPPI_EN);
214 }
215
216 int 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
227 void video_stop(void)
228 {
229         DisablePPI();
230         DisableDMA();
231 }
232
233 static void dma_bitblit(void *dst, fastimage_t *logo, int x, int y)
234 {
235         if (dcache_status())
236                 blackfin_dcache_flush_range(logo->data, logo->data + logo->size);
237
238         bfin_write_MDMA_D0_IRQ_STATUS(DMA_DONE | DMA_ERR);
239
240         /* Setup destination start address */
241         bfin_write_MDMA_D0_START_ADDR(dst + ((x & -2) * LCD_PIXEL_SIZE)
242                                         + (y * LCD_X_RES * LCD_PIXEL_SIZE));
243         /* Setup destination xcount */
244         bfin_write_MDMA_D0_X_COUNT(logo->width * LCD_PIXEL_SIZE / DMA_SIZE16);
245         /* Setup destination xmodify */
246         bfin_write_MDMA_D0_X_MODIFY(DMA_SIZE16);
247
248         /* Setup destination ycount */
249         bfin_write_MDMA_D0_Y_COUNT(logo->height);
250         /* Setup destination ymodify */
251         bfin_write_MDMA_D0_Y_MODIFY((LCD_X_RES - logo->width) * LCD_PIXEL_SIZE + DMA_SIZE16);
252
253
254         /* Setup Source start address */
255         bfin_write_MDMA_S0_START_ADDR(logo->data);
256         /* Setup Source xcount */
257         bfin_write_MDMA_S0_X_COUNT(logo->width * LCD_PIXEL_SIZE / DMA_SIZE16);
258         /* Setup Source xmodify */
259         bfin_write_MDMA_S0_X_MODIFY(DMA_SIZE16);
260
261         /* Setup Source ycount */
262         bfin_write_MDMA_S0_Y_COUNT(logo->height);
263         /* Setup Source ymodify */
264         bfin_write_MDMA_S0_Y_MODIFY(DMA_SIZE16);
265
266
267         /* Enable source DMA */
268         bfin_write_MDMA_S0_CONFIG(DMAEN | WDSIZE_16 | DMA2D);
269         SSYNC();
270         bfin_write_MDMA_D0_CONFIG(WNR | DMAEN  | WDSIZE_16 | DMA2D);
271
272         while (bfin_read_MDMA_D0_IRQ_STATUS() & DMA_RUN);
273
274         bfin_write_MDMA_S0_IRQ_STATUS(bfin_read_MDMA_S0_IRQ_STATUS() | DMA_DONE | DMA_ERR);
275         bfin_write_MDMA_D0_IRQ_STATUS(bfin_read_MDMA_D0_IRQ_STATUS() | DMA_DONE | DMA_ERR);
276
277 }
278
279 void video_putc(const char c)
280 {
281 }
282
283 void video_puts(const char *s)
284 {
285 }
286
287 int drv_video_init(void)
288 {
289         int error, devices = 1;
290         struct stdio_dev videodev;
291
292         u8 *dst;
293         u32 fbmem_size = LCD_X_RES * LCD_Y_RES * LCD_PIXEL_SIZE + ACTIVE_VIDEO_MEM_OFFSET;
294
295         dst = malloc(fbmem_size);
296
297         if (dst == NULL) {
298                 printf("Failed to alloc FB memory\n");
299                 return -1;
300         }
301
302 #ifdef EASYLOGO_ENABLE_GZIP
303         unsigned char *data = EASYLOGO_DECOMP_BUFFER;
304         unsigned long src_len = EASYLOGO_ENABLE_GZIP;
305         if (gunzip(data, bfin_logo.size, bfin_logo.data, &src_len)) {
306                 puts("Failed to decompress logo\n");
307                 free(dst);
308                 return -1;
309         }
310         bfin_logo.data = data;
311 #endif
312
313         memset(dst + ACTIVE_VIDEO_MEM_OFFSET, bfin_logo.data[0], fbmem_size - ACTIVE_VIDEO_MEM_OFFSET);
314
315         dma_bitblit(dst + ACTIVE_VIDEO_MEM_OFFSET, &bfin_logo,
316                         (LCD_X_RES - bfin_logo.width) / 2,
317                         (LCD_Y_RES - bfin_logo.height) / 2);
318
319         video_init(dst);                /* Video initialization */
320
321         memset(&videodev, 0, sizeof(videodev));
322
323         strcpy(videodev.name, "video");
324         videodev.ext = DEV_EXT_VIDEO;   /* Video extensions */
325         videodev.flags = DEV_FLAGS_SYSTEM;      /* No Output */
326         videodev.putc = video_putc;     /* 'putc' function */
327         videodev.puts = video_puts;     /* 'puts' function */
328
329         error = stdio_register(&videodev);
330
331         return (error == 0) ? devices : error;
332 }