blob: 5f28a4869cdbccc873e171aa6de063b6c50ae628 [file] [log] [blame]
stroese22a40b02003-09-12 08:42:13 +00001/*
stroesecd5396f2004-12-16 18:41:27 +00002 * (C) Copyright 2001-2004
stroese22a40b02003-09-12 08:42:13 +00003 * 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>
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +010025#include <asm/io.h>
stroese22a40b02003-09-12 08:42:13 +000026#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
stroesecd5396f2004-12-16 18:41:27 +000036extern void lxt971_no_sleep(void);
stroese22a40b02003-09-12 08:42:13 +000037
38/* fpga configuration data - gzip compressed and generated by bin2c */
39const unsigned char fpgadata[] =
40{
41#include "fpgadata.c"
42};
43
44/*
45 * include common fpga code (for esd boards)
46 */
47#include "../common/fpga.c"
48
49
stroesecd5396f2004-12-16 18:41:27 +000050/* logo bitmap data - gzip compressed and generated by bin2c */
51unsigned char logo_bmp_320[] =
52{
53#include "logo_320_240_4bpp.c"
54};
55
56unsigned char logo_bmp_640[] =
57{
58#include "logo_640_480_24bpp.c"
59};
60
61
62/*
63 * include common lcd code (for esd boards)
64 */
65#include "../common/lcd.c"
66
67#include "../common/s1d13704_320_240_4bpp.h"
68#include "../common/s1d13806_320_240_4bpp.h"
69#include "../common/s1d13806_640_480_16bpp.h"
70
71
wdenkc837dcb2004-01-20 23:12:12 +000072int board_early_init_f (void)
stroese22a40b02003-09-12 08:42:13 +000073{
74 /*
75 * IRQ 0-15 405GP internally generated; active high; level sensitive
76 * IRQ 16 405GP internally generated; active low; level sensitive
77 * IRQ 17-24 RESERVED
78 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
79 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
80 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
81 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
82 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
83 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
84 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
85 */
Stefan Roese952e7762009-09-24 09:55:50 +020086 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
87 mtdcr(UIC0ER, 0x00000000); /* disable all ints */
88 mtdcr(UIC0CR, 0x00000000); /* set all to be non-critical*/
89 mtdcr(UIC0PR, 0xFFFFFFB5); /* set int polarities */
90 mtdcr(UIC0TR, 0x10000000); /* set int trigger levels */
91 mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority*/
92 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
stroese22a40b02003-09-12 08:42:13 +000093
94 /*
95 * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
96 */
Stefan Roesed1c3b272009-09-09 16:25:29 +020097 mtebc (EBC0_CFG, 0xa8400000); /* ebc always driven */
stroese22a40b02003-09-12 08:42:13 +000098
99 return 0;
100}
101
stroese22a40b02003-09-12 08:42:13 +0000102int misc_init_r (void)
103{
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100104 unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
105 unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
106 unsigned short *lcd_contrast =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107 (unsigned short *)((ulong)CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL + 4);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100108 unsigned short *lcd_backlight =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200109 (unsigned short *)((ulong)CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL + 6);
stroese22a40b02003-09-12 08:42:13 +0000110 unsigned char *dst;
111 ulong len = sizeof(fpgadata);
112 int status;
113 int index;
114 int i;
stroesecd5396f2004-12-16 18:41:27 +0000115 char *str;
stroese22a40b02003-09-12 08:42:13 +0000116
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200117 dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
118 if (gunzip (dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
stroese22a40b02003-09-12 08:42:13 +0000119 printf ("GUNZIP ERROR - must RESET board to recover\n");
120 do_reset (NULL, 0, 0, NULL);
121 }
122
123 status = fpga_boot(dst, len);
124 if (status != 0) {
125 printf("\nFPGA: Booting failed ");
126 switch (status) {
127 case ERROR_FPGA_PRG_INIT_LOW:
128 printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
129 break;
130 case ERROR_FPGA_PRG_INIT_HIGH:
131 printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
132 break;
133 case ERROR_FPGA_PRG_DONE:
134 printf("(Timeout: DONE not high after programming FPGA)\n ");
135 break;
136 }
137
138 /* display infos on fpgaimage */
139 index = 15;
140 for (i=0; i<4; i++) {
141 len = dst[index];
142 printf("FPGA: %s\n", &(dst[index+1]));
143 index += len+3;
144 }
145 putc ('\n');
146 /* delayed reboot */
147 for (i=20; i>0; i--) {
148 printf("Rebooting in %2d seconds \r",i);
149 for (index=0;index<1000;index++)
150 udelay(1000);
151 }
152 putc ('\n');
153 do_reset(NULL, 0, 0, NULL);
154 }
155
156 puts("FPGA: ");
157
158 /* display infos on fpgaimage */
159 index = 15;
160 for (i=0; i<4; i++) {
161 len = dst[index];
162 printf("%s ", &(dst[index+1]));
163 index += len+3;
164 }
165 putc ('\n');
166
167 free(dst);
168
169 /*
stroesecd5396f2004-12-16 18:41:27 +0000170 * Reset FPGA via FPGA_INIT pin
stroese22a40b02003-09-12 08:42:13 +0000171 */
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100172 out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | FPGA_INIT); /* setup FPGA_INIT as output */
173 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~FPGA_INIT); /* reset low */
stroese22a40b02003-09-12 08:42:13 +0000174 udelay(1000); /* wait 1ms */
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100175 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | FPGA_INIT); /* reset high */
stroese22a40b02003-09-12 08:42:13 +0000176 udelay(1000); /* wait 1ms */
177
178 /*
179 * Reset external DUARTs
180 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200181 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST); /* set reset to high */
stroese22a40b02003-09-12 08:42:13 +0000182 udelay(10); /* wait 10us */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200183 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST); /* set reset to low */
stroese22a40b02003-09-12 08:42:13 +0000184 udelay(1000); /* wait 1ms */
185
186 /*
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100187 * Set NAND-FLASH GPIO signals to default
188 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200189 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE));
190 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100191
192 /*
193 * Setup EEPROM write protection
194 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
196 out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100197
198 /*
stroese22a40b02003-09-12 08:42:13 +0000199 * Enable interrupts in exar duart mcr[3]
200 */
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100201 out_8(duart0_mcr, 0x08);
202 out_8(duart1_mcr, 0x08);
stroese22a40b02003-09-12 08:42:13 +0000203
204 /*
stroesecd5396f2004-12-16 18:41:27 +0000205 * Init lcd interface and display logo
206 */
207 str = getenv("bd_type");
208 if (strcmp(str, "voh405_bw") == 0) {
209 lcd_setup(0, 1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200210 lcd_init((uchar *)CONFIG_SYS_LCD_SMALL_REG, (uchar *)CONFIG_SYS_LCD_SMALL_MEM,
stroesecd5396f2004-12-16 18:41:27 +0000211 regs_13704_320_240_4bpp,
212 sizeof(regs_13704_320_240_4bpp)/sizeof(regs_13704_320_240_4bpp[0]),
213 logo_bmp_320, sizeof(logo_bmp_320));
214 } else if (strcmp(str, "voh405_bwbw") == 0) {
215 lcd_setup(0, 1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200216 lcd_init((uchar *)CONFIG_SYS_LCD_SMALL_REG, (uchar *)CONFIG_SYS_LCD_SMALL_MEM,
stroesecd5396f2004-12-16 18:41:27 +0000217 regs_13704_320_240_4bpp,
218 sizeof(regs_13704_320_240_4bpp)/sizeof(regs_13704_320_240_4bpp[0]),
219 logo_bmp_320, sizeof(logo_bmp_320));
220 lcd_setup(1, 1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200221 lcd_init((uchar *)CONFIG_SYS_LCD_BIG_REG, (uchar *)CONFIG_SYS_LCD_BIG_MEM,
stroesecd5396f2004-12-16 18:41:27 +0000222 regs_13806_320_240_4bpp,
223 sizeof(regs_13806_320_240_4bpp)/sizeof(regs_13806_320_240_4bpp[0]),
224 logo_bmp_320, sizeof(logo_bmp_320));
225 } else if (strcmp(str, "voh405_bwc") == 0) {
226 lcd_setup(0, 1);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227 lcd_init((uchar *)CONFIG_SYS_LCD_SMALL_REG, (uchar *)CONFIG_SYS_LCD_SMALL_MEM,
stroesecd5396f2004-12-16 18:41:27 +0000228 regs_13704_320_240_4bpp,
229 sizeof(regs_13704_320_240_4bpp)/sizeof(regs_13704_320_240_4bpp[0]),
230 logo_bmp_320, sizeof(logo_bmp_320));
231 lcd_setup(1, 0);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200232 lcd_init((uchar *)CONFIG_SYS_LCD_BIG_REG, (uchar *)CONFIG_SYS_LCD_BIG_MEM,
stroesecd5396f2004-12-16 18:41:27 +0000233 regs_13806_640_480_16bpp,
234 sizeof(regs_13806_640_480_16bpp)/sizeof(regs_13806_640_480_16bpp[0]),
235 logo_bmp_640, sizeof(logo_bmp_640));
236 } else {
237 printf("Unsupported bd_type defined (%s) -> No display configured!\n", str);
238 return 0;
239 }
240
241 /*
242 * Set invert bit in small lcd controller
243 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200244 out_8((unsigned char *)(CONFIG_SYS_LCD_SMALL_REG + 2),
245 in_8((unsigned char *)(CONFIG_SYS_LCD_SMALL_REG + 2)) | 0x01);
stroesecd5396f2004-12-16 18:41:27 +0000246
247 /*
stroese22a40b02003-09-12 08:42:13 +0000248 * Set default contrast voltage on epson vga controller
249 */
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100250 out_be16(lcd_contrast, 0x4646);
stroesecd5396f2004-12-16 18:41:27 +0000251
252 /*
253 * Enable backlight
254 */
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100255 out_be16(lcd_backlight, 0xffff);
256
257 /*
258 * Enable external I2C bus
259 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200260 out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | CONFIG_SYS_IIC_ON);
stroese22a40b02003-09-12 08:42:13 +0000261
262 return (0);
263}
264
265
266/*
267 * Check Board Identity:
268 */
269
270int checkboard (void)
271{
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200272 char str[64];
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200273 int i = getenv_f("serial#", str, sizeof(str));
stroese22a40b02003-09-12 08:42:13 +0000274
275 puts ("Board: ");
276
277 if (i == -1) {
278 puts ("### No HW ID - assuming VOH405");
279 } else {
280 puts(str);
281 }
282
Wolfgang Denkcdb74972010-07-24 21:55:43 +0200283 if (getenv_f("bd_type", str, sizeof(str)) != -1) {
stroesecd5396f2004-12-16 18:41:27 +0000284 printf(" (%s)", str);
285 } else {
286 puts(" (Missing bd_type!)");
287 }
288
stroese22a40b02003-09-12 08:42:13 +0000289 putc ('\n');
290
stroese22a40b02003-09-12 08:42:13 +0000291 return 0;
292}
293
stroese22a40b02003-09-12 08:42:13 +0000294#ifdef CONFIG_IDE_RESET
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100295#define FPGA_MODE (CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL)
stroese22a40b02003-09-12 08:42:13 +0000296void ide_set_reset(int on)
297{
stroese22a40b02003-09-12 08:42:13 +0000298 /*
299 * Assert or deassert CompactFlash Reset Pin
300 */
301 if (on) { /* assert RESET */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100302 out_be16((void *)FPGA_MODE,
303 in_be16((void *)FPGA_MODE) & ~CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroese22a40b02003-09-12 08:42:13 +0000304 } else { /* release RESET */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100305 out_be16((void *)FPGA_MODE,
306 in_be16((void *)FPGA_MODE) | CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroese22a40b02003-09-12 08:42:13 +0000307 }
308}
309#endif /* CONFIG_IDE_RESET */
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100310
311#if defined(CONFIG_RESET_PHY_R)
312void reset_phy(void)
313{
314#ifdef CONFIG_LXT971_NO_SLEEP
315
316 /*
317 * Disable sleep mode in LXT971
318 */
319 lxt971_no_sleep();
320#endif
321}
322#endif
323
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100325/* Input: <dev_addr> I2C address of EEPROM device to enable.
326 * <state> -1: deliver current state
327 * 0: disable write
328 * 1: enable write
329 * Returns: -1: wrong device address
330 * 0: dis-/en- able done
331 * 0/1: current state if <state> was -1.
332 */
333int eeprom_write_enable (unsigned dev_addr, int state)
334{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200335 if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) {
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100336 return -1;
337 } else {
338 switch (state) {
339 case 1:
340 /* Enable write access, clear bit GPIO0. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200341 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_EEPROM_WP);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100342 state = 0;
343 break;
344 case 0:
345 /* Disable write access, set bit GPIO0. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200346 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100347 state = 0;
348 break;
349 default:
350 /* Read current status back. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200351 state = (0 == (in_be32((void*)GPIO0_OR) & CONFIG_SYS_EEPROM_WP));
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100352 break;
353 }
354 }
355 return state;
356}
357
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200358int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100359{
360 int query = argc == 1;
361 int state = 0;
362
363 if (query) {
364 /* Query write access state. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200365 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, -1);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100366 if (state < 0) {
367 puts ("Query of write access state failed.\n");
368 } else {
369 printf ("Write access for device 0x%0x is %sabled.\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200370 CONFIG_SYS_I2C_EEPROM_ADDR, state ? "en" : "dis");
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100371 state = 0;
372 }
373 } else {
374 if ('0' == argv[1][0]) {
375 /* Disable write access. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200376 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 0);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100377 } else {
378 /* Enable write access. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200379 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 1);
Matthias Fuchsb56bd0f2007-12-28 17:10:42 +0100380 }
381 if (state < 0) {
382 puts ("Setup of write access state failed.\n");
383 }
384 }
385
386 return state;
387}
388
389U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200390 "Enable / disable / query EEPROM write access",
391 ""
392);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200393#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */