]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/esd/voh405/voh405.c
da25212f4c43bbb57cacd29d99b244f35e10a66b
[karo-tx-uboot.git] / board / esd / voh405 / voh405.c
1 /*
2  * (C) Copyright 2001-2004
3  * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 #include <common.h>
25 #include <asm/io.h>
26 #include <asm/processor.h>
27 #include <command.h>
28 #include <malloc.h>
29
30 /* ------------------------------------------------------------------------- */
31
32 #if 0
33 #define FPGA_DEBUG
34 #endif
35
36 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
37 extern void lxt971_no_sleep(void);
38
39 /* fpga configuration data - gzip compressed and generated by bin2c */
40 const unsigned char fpgadata[] =
41 {
42 #include "fpgadata.c"
43 };
44
45 /*
46  * include common fpga code (for esd boards)
47  */
48 #include "../common/fpga.c"
49
50
51 /* logo bitmap data - gzip compressed and generated by bin2c */
52 unsigned char logo_bmp_320[] =
53 {
54 #include "logo_320_240_4bpp.c"
55 };
56
57 unsigned char logo_bmp_640[] =
58 {
59 #include "logo_640_480_24bpp.c"
60 };
61
62
63 /*
64  * include common lcd code (for esd boards)
65  */
66 #include "../common/lcd.c"
67
68 #include "../common/s1d13704_320_240_4bpp.h"
69 #include "../common/s1d13806_320_240_4bpp.h"
70 #include "../common/s1d13806_640_480_16bpp.h"
71
72
73 int board_early_init_f (void)
74 {
75         /*
76          * IRQ 0-15  405GP internally generated; active high; level sensitive
77          * IRQ 16    405GP internally generated; active low; level sensitive
78          * IRQ 17-24 RESERVED
79          * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
80          * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
81          * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
82          * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
83          * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
84          * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
85          * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
86          */
87         mtdcr(UIC0SR, 0xFFFFFFFF);       /* clear all ints */
88         mtdcr(UIC0ER, 0x00000000);       /* disable all ints */
89         mtdcr(UIC0CR, 0x00000000);       /* set all to be non-critical*/
90         mtdcr(UIC0PR, 0xFFFFFFB5);       /* set int polarities */
91         mtdcr(UIC0TR, 0x10000000);       /* set int trigger levels */
92         mtdcr(UIC0VCR, 0x00000001);      /* set vect base=0,INT0 highest priority*/
93         mtdcr(UIC0SR, 0xFFFFFFFF);       /* clear all ints */
94
95         /*
96          * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
97          */
98         mtebc (EBC0_CFG, 0xa8400000); /* ebc always driven */
99
100         return 0;
101 }
102
103 int misc_init_r (void)
104 {
105         unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
106         unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
107         unsigned short *lcd_contrast =
108                 (unsigned short *)((ulong)CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL + 4);
109         unsigned short *lcd_backlight =
110                 (unsigned short *)((ulong)CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL + 6);
111         unsigned char *dst;
112         ulong len = sizeof(fpgadata);
113         int status;
114         int index;
115         int i;
116         char *str;
117
118         dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
119         if (gunzip (dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
120                 printf ("GUNZIP ERROR - must RESET board to recover\n");
121                 do_reset (NULL, 0, 0, NULL);
122         }
123
124         status = fpga_boot(dst, len);
125         if (status != 0) {
126                 printf("\nFPGA: Booting failed ");
127                 switch (status) {
128                 case ERROR_FPGA_PRG_INIT_LOW:
129                         printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
130                         break;
131                 case ERROR_FPGA_PRG_INIT_HIGH:
132                         printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
133                         break;
134                 case ERROR_FPGA_PRG_DONE:
135                         printf("(Timeout: DONE not high after programming FPGA)\n ");
136                         break;
137                 }
138
139                 /* display infos on fpgaimage */
140                 index = 15;
141                 for (i=0; i<4; i++) {
142                         len = dst[index];
143                         printf("FPGA: %s\n", &(dst[index+1]));
144                         index += len+3;
145                 }
146                 putc ('\n');
147                 /* delayed reboot */
148                 for (i=20; i>0; i--) {
149                         printf("Rebooting in %2d seconds \r",i);
150                         for (index=0;index<1000;index++)
151                                 udelay(1000);
152                 }
153                 putc ('\n');
154                 do_reset(NULL, 0, 0, NULL);
155         }
156
157         puts("FPGA:  ");
158
159         /* display infos on fpgaimage */
160         index = 15;
161         for (i=0; i<4; i++) {
162                 len = dst[index];
163                 printf("%s ", &(dst[index+1]));
164                 index += len+3;
165         }
166         putc ('\n');
167
168         free(dst);
169
170         /*
171          * Reset FPGA via FPGA_INIT pin
172          */
173         out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | FPGA_INIT); /* setup FPGA_INIT as output */
174         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~FPGA_INIT);  /* reset low */
175         udelay(1000); /* wait 1ms */
176         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | FPGA_INIT);   /* reset high */
177         udelay(1000); /* wait 1ms */
178
179         /*
180          * Reset external DUARTs
181          */
182         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST); /* set reset to high */
183         udelay(10); /* wait 10us */
184         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST); /* set reset to low */
185         udelay(1000); /* wait 1ms */
186
187         /*
188          * Set NAND-FLASH GPIO signals to default
189          */
190         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE));
191         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE);
192
193         /*
194          * Setup EEPROM write protection
195          */
196         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
197         out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP);
198
199         /*
200          * Enable interrupts in exar duart mcr[3]
201          */
202         out_8(duart0_mcr, 0x08);
203         out_8(duart1_mcr, 0x08);
204
205         /*
206          * Init lcd interface and display logo
207          */
208         str = getenv("bd_type");
209         if (strcmp(str, "voh405_bw") == 0) {
210                 lcd_setup(0, 1);
211                 lcd_init((uchar *)CONFIG_SYS_LCD_SMALL_REG, (uchar *)CONFIG_SYS_LCD_SMALL_MEM,
212                          regs_13704_320_240_4bpp,
213                          sizeof(regs_13704_320_240_4bpp)/sizeof(regs_13704_320_240_4bpp[0]),
214                          logo_bmp_320, sizeof(logo_bmp_320));
215         } else if (strcmp(str, "voh405_bwbw") == 0) {
216                 lcd_setup(0, 1);
217                 lcd_init((uchar *)CONFIG_SYS_LCD_SMALL_REG, (uchar *)CONFIG_SYS_LCD_SMALL_MEM,
218                          regs_13704_320_240_4bpp,
219                          sizeof(regs_13704_320_240_4bpp)/sizeof(regs_13704_320_240_4bpp[0]),
220                          logo_bmp_320, sizeof(logo_bmp_320));
221                 lcd_setup(1, 1);
222                 lcd_init((uchar *)CONFIG_SYS_LCD_BIG_REG, (uchar *)CONFIG_SYS_LCD_BIG_MEM,
223                          regs_13806_320_240_4bpp,
224                          sizeof(regs_13806_320_240_4bpp)/sizeof(regs_13806_320_240_4bpp[0]),
225                          logo_bmp_320, sizeof(logo_bmp_320));
226         } else if (strcmp(str, "voh405_bwc") == 0) {
227                 lcd_setup(0, 1);
228                 lcd_init((uchar *)CONFIG_SYS_LCD_SMALL_REG, (uchar *)CONFIG_SYS_LCD_SMALL_MEM,
229                          regs_13704_320_240_4bpp,
230                          sizeof(regs_13704_320_240_4bpp)/sizeof(regs_13704_320_240_4bpp[0]),
231                          logo_bmp_320, sizeof(logo_bmp_320));
232                 lcd_setup(1, 0);
233                 lcd_init((uchar *)CONFIG_SYS_LCD_BIG_REG, (uchar *)CONFIG_SYS_LCD_BIG_MEM,
234                          regs_13806_640_480_16bpp,
235                          sizeof(regs_13806_640_480_16bpp)/sizeof(regs_13806_640_480_16bpp[0]),
236                          logo_bmp_640, sizeof(logo_bmp_640));
237         } else {
238                 printf("Unsupported bd_type defined (%s) -> No display configured!\n", str);
239                 return 0;
240         }
241
242         /*
243          * Set invert bit in small lcd controller
244          */
245         out_8((unsigned char *)(CONFIG_SYS_LCD_SMALL_REG + 2),
246               in_8((unsigned char *)(CONFIG_SYS_LCD_SMALL_REG + 2)) | 0x01);
247
248         /*
249          * Set default contrast voltage on epson vga controller
250          */
251         out_be16(lcd_contrast, 0x4646);
252
253         /*
254          * Enable backlight
255          */
256         out_be16(lcd_backlight, 0xffff);
257
258         /*
259          * Enable external I2C bus
260          */
261         out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | CONFIG_SYS_IIC_ON);
262
263         return (0);
264 }
265
266
267 /*
268  * Check Board Identity:
269  */
270
271 int checkboard (void)
272 {
273         char str[64];
274         int i = getenv_f("serial#", str, sizeof(str));
275
276         puts ("Board: ");
277
278         if (i == -1) {
279                 puts ("### No HW ID - assuming VOH405");
280         } else {
281                 puts(str);
282         }
283
284         if (getenv_f("bd_type", str, sizeof(str)) != -1) {
285                 printf(" (%s)", str);
286         } else {
287                 puts(" (Missing bd_type!)");
288         }
289
290         putc ('\n');
291
292         return 0;
293 }
294
295 #ifdef CONFIG_IDE_RESET
296 #define FPGA_MODE (CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL)
297 void ide_set_reset(int on)
298 {
299         /*
300          * Assert or deassert CompactFlash Reset Pin
301          */
302         if (on) {               /* assert RESET */
303                 out_be16((void *)FPGA_MODE,
304                          in_be16((void *)FPGA_MODE) & ~CONFIG_SYS_FPGA_CTRL_CF_RESET);
305         } else {                /* release RESET */
306                 out_be16((void *)FPGA_MODE,
307                          in_be16((void *)FPGA_MODE) | CONFIG_SYS_FPGA_CTRL_CF_RESET);
308         }
309 }
310 #endif /* CONFIG_IDE_RESET */
311
312 #if defined(CONFIG_RESET_PHY_R)
313 void reset_phy(void)
314 {
315 #ifdef CONFIG_LXT971_NO_SLEEP
316
317         /*
318          * Disable sleep mode in LXT971
319          */
320         lxt971_no_sleep();
321 #endif
322 }
323 #endif
324
325 #if defined(CONFIG_SYS_EEPROM_WREN)
326 /* Input: <dev_addr>  I2C address of EEPROM device to enable.
327  *         <state>     -1: deliver current state
328  *                     0: disable write
329  *                     1: enable write
330  *  Returns:           -1: wrong device address
331  *                      0: dis-/en- able done
332  *                   0/1: current state if <state> was -1.
333  */
334 int eeprom_write_enable (unsigned dev_addr, int state)
335 {
336         if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) {
337                 return -1;
338         } else {
339                 switch (state) {
340                 case 1:
341                         /* Enable write access, clear bit GPIO0. */
342                         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_EEPROM_WP);
343                         state = 0;
344                         break;
345                 case 0:
346                         /* Disable write access, set bit GPIO0. */
347                         out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
348                         state = 0;
349                         break;
350                 default:
351                         /* Read current status back. */
352                         state = (0 == (in_be32((void*)GPIO0_OR) & CONFIG_SYS_EEPROM_WP));
353                         break;
354                 }
355         }
356         return state;
357 }
358
359 int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
360 {
361         int query = argc == 1;
362         int state = 0;
363
364         if (query) {
365                 /* Query write access state. */
366                 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, -1);
367                 if (state < 0) {
368                         puts ("Query of write access state failed.\n");
369                 } else {
370                         printf ("Write access for device 0x%0x is %sabled.\n",
371                                 CONFIG_SYS_I2C_EEPROM_ADDR, state ? "en" : "dis");
372                         state = 0;
373                 }
374         } else {
375                 if ('0' == argv[1][0]) {
376                         /* Disable write access. */
377                         state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 0);
378                 } else {
379                         /* Enable write access. */
380                         state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 1);
381                 }
382                 if (state < 0) {
383                         puts ("Setup of write access state failed.\n");
384                 }
385         }
386
387         return state;
388 }
389
390 U_BOOT_CMD(eepwren,     2,      0,      do_eep_wren,
391         "Enable / disable / query EEPROM write access",
392         ""
393 );
394 #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */