blob: f14ef7a20f843a88ff0f48e34ae22f2b11301a0e [file] [log] [blame]
stroeseb3182622003-09-12 08:41:56 +00001/*
2 * (C) Copyright 2001-2003
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/processor.h>
Matthias Fuchsbd84ee42007-07-09 10:10:06 +020026#include <asm/io.h>
stroeseb3182622003-09-12 08:41:56 +000027#include <command.h>
28#include <malloc.h>
29
Matthias Fuchsd4d2e792009-07-16 22:13:57 +020030#undef FPGA_DEBUG
stroeseb3182622003-09-12 08:41:56 +000031
Matthias Fuchsbd84ee42007-07-09 10:10:06 +020032DECLARE_GLOBAL_DATA_PTR;
33
stroeseb3182622003-09-12 08:41:56 +000034extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
stroese12537cc2004-12-16 18:39:03 +000035extern void lxt971_no_sleep(void);
stroeseb3182622003-09-12 08:41:56 +000036
37/* fpga configuration data - gzip compressed and generated by bin2c */
38const unsigned char fpgadata[] =
39{
40#include "fpgadata.c"
41};
42
43/*
44 * include common fpga code (for esd boards)
45 */
46#include "../common/fpga.c"
47
stroese12537cc2004-12-16 18:39:03 +000048/*
49 * include common auto-update code (for esd boards)
50 */
51#include "../common/auto_update.h"
52
53au_image_t au_image[] = {
54 {"plu405/preinst.img", 0, -1, AU_SCRIPT},
55 {"plu405/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE},
Wolfgang Denkfe126d82005-11-20 21:40:11 +010056 {"plu405/pImage_${bd_type}", 0x00000000, 0x00100000, AU_NAND},
stroese12537cc2004-12-16 18:39:03 +000057 {"plu405/pImage.initrd", 0x00100000, 0x00200000, AU_NAND},
58 {"plu405/yaffsmt2.img", 0x00300000, 0x01c00000, AU_NAND},
59 {"plu405/postinst.img", 0, 0, AU_SCRIPT},
60};
61
62int N_AU_IMAGES = (sizeof(au_image) / sizeof(au_image[0]));
63
stroeseb3182622003-09-12 08:41:56 +000064/* Prototypes */
wdenkeedcd072004-09-08 22:03:11 +000065int gunzip(void *, int, unsigned char *, unsigned long *);
stroeseb3182622003-09-12 08:41:56 +000066
Matthias Fuchsd4d2e792009-07-16 22:13:57 +020067int board_early_init_f(void)
stroeseb3182622003-09-12 08:41:56 +000068{
69 /*
70 * IRQ 0-15 405GP internally generated; active high; level sensitive
71 * IRQ 16 405GP internally generated; active low; level sensitive
72 * IRQ 17-24 RESERVED
73 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
74 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
75 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
76 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
77 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
78 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
79 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
80 */
Stefan Roese952e7762009-09-24 09:55:50 +020081 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
82 mtdcr(UIC0ER, 0x00000000); /* disable all ints */
83 mtdcr(UIC0CR, 0x00000000); /* set all to be non-critical*/
84 mtdcr(UIC0PR, 0xFFFFFF99); /* set int polarities */
85 mtdcr(UIC0TR, 0x10000000); /* set int trigger levels */
86 mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest prio */
87 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
stroeseb3182622003-09-12 08:41:56 +000088
89 /*
Matthias Fuchs40e43e32008-09-02 11:35:35 +020090 * EBC Configuration Register: set ready timeout to
91 * 512 ebc-clks -> ca. 15 us
stroeseb3182622003-09-12 08:41:56 +000092 */
Stefan Roesed1c3b272009-09-09 16:25:29 +020093 mtebc(EBC0_CFG, 0xa8400000); /* ebc always driven */
stroeseb3182622003-09-12 08:41:56 +000094
95 return 0;
96}
97
Matthias Fuchsd4d2e792009-07-16 22:13:57 +020098int misc_init_r(void)
stroeseb3182622003-09-12 08:41:56 +000099{
stroeseb3182622003-09-12 08:41:56 +0000100 unsigned char *dst;
Matthias Fuchsfceebb42009-01-02 12:16:35 +0100101 unsigned char fctr;
stroeseb3182622003-09-12 08:41:56 +0000102 ulong len = sizeof(fpgadata);
103 int status;
104 int index;
105 int i;
106
Matthias Fuchsbd84ee42007-07-09 10:10:06 +0200107 /* adjust flash start and offset */
108 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
109 gd->bd->bi_flashoffset = 0;
110
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111 dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200112 if (gunzip(dst, CONFIG_SYS_FPGA_MAX_SIZE,
113 (uchar *)fpgadata, &len) != 0) {
114 printf("GUNZIP ERROR - must RESET board to recover\n");
115 do_reset(NULL, 0, 0, NULL);
stroeseb3182622003-09-12 08:41:56 +0000116 }
117
118 status = fpga_boot(dst, len);
119 if (status != 0) {
120 printf("\nFPGA: Booting failed ");
121 switch (status) {
122 case ERROR_FPGA_PRG_INIT_LOW:
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200123 printf("(Timeout: INIT not low "
124 "after asserting PROGRAM*)\n");
stroeseb3182622003-09-12 08:41:56 +0000125 break;
126 case ERROR_FPGA_PRG_INIT_HIGH:
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200127 printf("(Timeout: INIT not high "
128 "after deasserting PROGRAM*)\n");
stroeseb3182622003-09-12 08:41:56 +0000129 break;
130 case ERROR_FPGA_PRG_DONE:
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200131 printf("(Timeout: DONE not high "
132 "after programming FPGA)\n");
stroeseb3182622003-09-12 08:41:56 +0000133 break;
134 }
135
136 /* display infos on fpgaimage */
137 index = 15;
138 for (i=0; i<4; i++) {
139 len = dst[index];
140 printf("FPGA: %s\n", &(dst[index+1]));
141 index += len+3;
142 }
143 putc ('\n');
144 /* delayed reboot */
145 for (i=20; i>0; i--) {
146 printf("Rebooting in %2d seconds \r",i);
147 for (index=0;index<1000;index++)
148 udelay(1000);
149 }
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200150 putc('\n');
stroeseb3182622003-09-12 08:41:56 +0000151 do_reset(NULL, 0, 0, NULL);
152 }
153
154 puts("FPGA: ");
155
156 /* display infos on fpgaimage */
157 index = 15;
158 for (i=0; i<4; i++) {
159 len = dst[index];
160 printf("%s ", &(dst[index+1]));
161 index += len+3;
162 }
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200163 putc('\n');
stroeseb3182622003-09-12 08:41:56 +0000164
165 free(dst);
166
167 /*
168 * Reset FPGA via FPGA_DATA pin
169 */
170 SET_FPGA(FPGA_PRG | FPGA_CLK);
171 udelay(1000); /* wait 1ms */
172 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
173 udelay(1000); /* wait 1ms */
174
175 /*
176 * Reset external DUARTs
177 */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200178 out_be32((void*)GPIO0_OR,
179 in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST);
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200180 udelay(10);
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200181 out_be32((void*)GPIO0_OR,
182 in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST);
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200183 udelay(1000);
stroeseb3182622003-09-12 08:41:56 +0000184
185 /*
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100186 * Set NAND-FLASH GPIO signals to default
187 */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200188 out_be32((void*)GPIO0_OR,
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200189 in_be32((void*)GPIO0_OR) &
190 ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE));
191 out_be32((void*)GPIO0_OR,
192 in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100193
194 /*
195 * Setup EEPROM write protection
196 */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200197 out_be32((void*)GPIO0_OR,
198 in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
199 out_be32((void*)GPIO0_TCR,
200 in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100201
202 /*
stroeseb3182622003-09-12 08:41:56 +0000203 * Enable interrupts in exar duart mcr[3]
204 */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200205 out_8((void *)DUART0_BA + 4, 0x08);
206 out_8((void *)DUART1_BA + 4, 0x08);
stroeseb3182622003-09-12 08:41:56 +0000207
Matthias Fuchsfceebb42009-01-02 12:16:35 +0100208 /*
209 * Enable auto RS485 mode in 2nd external uart
210 */
211 out_8((void *)DUART1_BA + 3, 0xbf); /* write LCR */
212 fctr = in_8((void *)DUART1_BA + 1); /* read FCTR */
213 fctr |= 0x08; /* enable RS485 mode */
214 out_8((void *)DUART1_BA + 1, fctr); /* write FCTR */
215 out_8((void *)DUART1_BA + 3, 0); /* write LCR */
216
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200217 return 0;
stroeseb3182622003-09-12 08:41:56 +0000218}
219
stroeseb3182622003-09-12 08:41:56 +0000220/*
221 * Check Board Identity:
222 */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200223int checkboard(void)
stroeseb3182622003-09-12 08:41:56 +0000224{
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200225 char str[64];
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200226 int i = getenv_r("serial#", str, sizeof(str));
stroeseb3182622003-09-12 08:41:56 +0000227
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200228 puts("Board: ");
stroeseb3182622003-09-12 08:41:56 +0000229
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200230 if (i == -1)
231 puts("### No HW ID - assuming PLU405");
232 else
stroeseb3182622003-09-12 08:41:56 +0000233 puts(str);
stroeseb3182622003-09-12 08:41:56 +0000234
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200235 putc('\n');
stroeseb3182622003-09-12 08:41:56 +0000236 return 0;
237}
238
stroeseb3182622003-09-12 08:41:56 +0000239#ifdef CONFIG_IDE_RESET
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100240#define FPGA_CTRL (CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL)
stroeseb3182622003-09-12 08:41:56 +0000241void ide_set_reset(int on)
242{
stroeseb3182622003-09-12 08:41:56 +0000243 /*
244 * Assert or deassert CompactFlash Reset Pin
245 */
246 if (on) { /* assert RESET */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100247 out_be16((void *)FPGA_CTRL,
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200248 in_be16((void *)FPGA_CTRL) &
249 ~CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroeseb3182622003-09-12 08:41:56 +0000250 } else { /* release RESET */
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100251 out_be16((void *)FPGA_CTRL,
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200252 in_be16((void *)FPGA_CTRL) |
253 CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroeseb3182622003-09-12 08:41:56 +0000254 }
255}
256#endif /* CONFIG_IDE_RESET */
257
Matthias Fuchsf9fc6a52007-03-07 15:32:01 +0100258void reset_phy(void)
259{
260#ifdef CONFIG_LXT971_NO_SLEEP
261
262 /*
263 * Disable sleep mode in LXT971
264 */
265 lxt971_no_sleep();
266#endif
267}
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100268
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200269#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100270/* Input: <dev_addr> I2C address of EEPROM device to enable.
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200271 * <state> -1: deliver current state
272 * 0: disable write
273 * 1: enable write
274 * Returns: -1: wrong device address
275 * 0: dis-/en- able done
276 * 0/1: current state if <state> was -1.
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100277 */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200278int eeprom_write_enable(unsigned dev_addr, int state)
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100279{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200280 if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) {
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100281 return -1;
282 } else {
283 switch (state) {
284 case 1:
285 /* Enable write access, clear bit GPIO0. */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200286 out_be32((void*)GPIO0_OR,
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200287 in_be32((void*)GPIO0_OR) &
288 ~CONFIG_SYS_EEPROM_WP);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100289 state = 0;
290 break;
291 case 0:
292 /* Disable write access, set bit GPIO0. */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200293 out_be32((void*)GPIO0_OR,
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200294 in_be32((void*)GPIO0_OR) |
295 CONFIG_SYS_EEPROM_WP);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100296 state = 0;
297 break;
298 default:
299 /* Read current status back. */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200300 state = ((in_be32((void*)GPIO0_OR) &
301 CONFIG_SYS_EEPROM_WP) == 0);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100302 break;
303 }
304 }
305 return state;
306}
307
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200308int do_eep_wren(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100309{
310 int query = argc == 1;
311 int state = 0;
312
313 if (query) {
314 /* Query write access state. */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200315 state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, -1);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100316 if (state < 0) {
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200317 puts("Query of write access state failed.\n");
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100318 } else {
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200319 printf("Write access for device 0x%0x is %sabled.\n",
320 CONFIG_SYS_I2C_EEPROM_ADDR,
321 state ? "en" : "dis");
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100322 state = 0;
323 }
324 } else {
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200325 if (argv[1][0] == '0') {
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100326 /* Disable write access. */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200327 state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR,
328 0);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100329 } else {
330 /* Enable write access. */
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200331 state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR,
332 1);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100333 }
Matthias Fuchsd4d2e792009-07-16 22:13:57 +0200334 if (state < 0)
335 puts("Setup of write access state failed.\n");
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100336 }
337
338 return state;
339}
340
341U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200342 "Enable / disable / query EEPROM write access",
343 ""
344);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200345#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */