blob: 61186a8d7c35288653d0e82e6db6ed2d3e98133c [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
stroeseb3182622003-09-12 08:41:56 +000030
31#if 0
32#define FPGA_DEBUG
33#endif
34
Matthias Fuchsbd84ee42007-07-09 10:10:06 +020035DECLARE_GLOBAL_DATA_PTR;
36
stroeseb3182622003-09-12 08:41:56 +000037extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
stroese12537cc2004-12-16 18:39:03 +000038extern void lxt971_no_sleep(void);
stroeseb3182622003-09-12 08:41:56 +000039
40/* fpga configuration data - gzip compressed and generated by bin2c */
41const unsigned char fpgadata[] =
42{
43#include "fpgadata.c"
44};
45
46/*
47 * include common fpga code (for esd boards)
48 */
49#include "../common/fpga.c"
50
51
stroese12537cc2004-12-16 18:39:03 +000052/*
53 * include common auto-update code (for esd boards)
54 */
55#include "../common/auto_update.h"
56
57au_image_t au_image[] = {
58 {"plu405/preinst.img", 0, -1, AU_SCRIPT},
59 {"plu405/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE},
Wolfgang Denkfe126d82005-11-20 21:40:11 +010060 {"plu405/pImage_${bd_type}", 0x00000000, 0x00100000, AU_NAND},
stroese12537cc2004-12-16 18:39:03 +000061 {"plu405/pImage.initrd", 0x00100000, 0x00200000, AU_NAND},
62 {"plu405/yaffsmt2.img", 0x00300000, 0x01c00000, AU_NAND},
63 {"plu405/postinst.img", 0, 0, AU_SCRIPT},
64};
65
66int N_AU_IMAGES = (sizeof(au_image) / sizeof(au_image[0]));
67
stroeseb3182622003-09-12 08:41:56 +000068/* Prototypes */
wdenkeedcd072004-09-08 22:03:11 +000069int gunzip(void *, int, unsigned char *, unsigned long *);
stroeseb3182622003-09-12 08:41:56 +000070
wdenkc837dcb2004-01-20 23:12:12 +000071int board_early_init_f (void)
stroeseb3182622003-09-12 08:41:56 +000072{
73 /*
74 * IRQ 0-15 405GP internally generated; active high; level sensitive
75 * IRQ 16 405GP internally generated; active low; level sensitive
76 * IRQ 17-24 RESERVED
77 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
78 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
79 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
80 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
81 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
82 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
83 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
84 */
85 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
86 mtdcr(uicer, 0x00000000); /* disable all ints */
87 mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
88 mtdcr(uicpr, 0xFFFFFF99); /* set int polarities */
89 mtdcr(uictr, 0x10000000); /* set int trigger levels */
Matthias Fuchs40e43e32008-09-02 11:35:35 +020090 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest prio */
stroeseb3182622003-09-12 08:41:56 +000091 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
92
93 /*
Matthias Fuchs40e43e32008-09-02 11:35:35 +020094 * EBC Configuration Register: set ready timeout to
95 * 512 ebc-clks -> ca. 15 us
stroeseb3182622003-09-12 08:41:56 +000096 */
97 mtebc (epcr, 0xa8400000); /* ebc always driven */
98
99 return 0;
100}
101
stroeseb3182622003-09-12 08:41:56 +0000102int misc_init_r (void)
103{
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100104 unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
105 unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
stroeseb3182622003-09-12 08:41:56 +0000106 unsigned char *dst;
107 ulong len = sizeof(fpgadata);
108 int status;
109 int index;
110 int i;
111
Matthias Fuchsbd84ee42007-07-09 10:10:06 +0200112 /* adjust flash start and offset */
113 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
114 gd->bd->bi_flashoffset = 0;
115
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116 dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
117 if (gunzip (dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
stroeseb3182622003-09-12 08:41:56 +0000118 printf ("GUNZIP ERROR - must RESET board to recover\n");
119 do_reset (NULL, 0, 0, NULL);
120 }
121
122 status = fpga_boot(dst, len);
123 if (status != 0) {
124 printf("\nFPGA: Booting failed ");
125 switch (status) {
126 case ERROR_FPGA_PRG_INIT_LOW:
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200127 printf("(Timeout: INIT not low "
128 "after asserting PROGRAM*)\n");
stroeseb3182622003-09-12 08:41:56 +0000129 break;
130 case ERROR_FPGA_PRG_INIT_HIGH:
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200131 printf("(Timeout: INIT not high "
132 "after deasserting PROGRAM*)\n");
stroeseb3182622003-09-12 08:41:56 +0000133 break;
134 case ERROR_FPGA_PRG_DONE:
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200135 printf("(Timeout: DONE not high "
136 "after programming FPGA)\n");
stroeseb3182622003-09-12 08:41:56 +0000137 break;
138 }
139
140 /* display infos on fpgaimage */
141 index = 15;
142 for (i=0; i<4; i++) {
143 len = dst[index];
144 printf("FPGA: %s\n", &(dst[index+1]));
145 index += len+3;
146 }
147 putc ('\n');
148 /* delayed reboot */
149 for (i=20; i>0; i--) {
150 printf("Rebooting in %2d seconds \r",i);
151 for (index=0;index<1000;index++)
152 udelay(1000);
153 }
154 putc ('\n');
155 do_reset(NULL, 0, 0, NULL);
156 }
157
158 puts("FPGA: ");
159
160 /* display infos on fpgaimage */
161 index = 15;
162 for (i=0; i<4; i++) {
163 len = dst[index];
164 printf("%s ", &(dst[index+1]));
165 index += len+3;
166 }
167 putc ('\n');
168
169 free(dst);
170
171 /*
172 * Reset FPGA via FPGA_DATA pin
173 */
174 SET_FPGA(FPGA_PRG | FPGA_CLK);
175 udelay(1000); /* wait 1ms */
176 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
177 udelay(1000); /* wait 1ms */
178
179 /*
180 * Reset external DUARTs
181 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200182 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST);
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200183 udelay(10);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200184 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST);
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200185 udelay(1000);
stroeseb3182622003-09-12 08:41:56 +0000186
187 /*
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100188 * Set NAND-FLASH GPIO signals to default
189 */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200190 out_be32((void*)GPIO0_OR,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200191 in_be32((void*)GPIO0_OR) & ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE));
192 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100193
194 /*
195 * Setup EEPROM write protection
196 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200197 out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
198 out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100199
200 /*
stroeseb3182622003-09-12 08:41:56 +0000201 * Enable interrupts in exar duart mcr[3]
202 */
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100203 out_8(duart0_mcr, 0x08);
204 out_8(duart1_mcr, 0x08);
stroeseb3182622003-09-12 08:41:56 +0000205
206 return (0);
207}
208
stroeseb3182622003-09-12 08:41:56 +0000209/*
210 * Check Board Identity:
211 */
stroeseb3182622003-09-12 08:41:56 +0000212int checkboard (void)
213{
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200214 char str[64];
stroeseb3182622003-09-12 08:41:56 +0000215 int i = getenv_r ("serial#", str, sizeof(str));
216
217 puts ("Board: ");
218
219 if (i == -1) {
220 puts ("### No HW ID - assuming PLU405");
221 } else {
222 puts(str);
223 }
224
225 putc ('\n');
stroeseb3182622003-09-12 08:41:56 +0000226 return 0;
227}
228
stroeseb3182622003-09-12 08:41:56 +0000229#ifdef CONFIG_IDE_RESET
230void ide_set_reset(int on)
231{
232 volatile unsigned short *fpga_mode =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200233 (unsigned short *)((ulong)CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL);
stroeseb3182622003-09-12 08:41:56 +0000234
235 /*
236 * Assert or deassert CompactFlash Reset Pin
237 */
238 if (on) { /* assert RESET */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200239 *fpga_mode &= ~(CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroeseb3182622003-09-12 08:41:56 +0000240 } else { /* release RESET */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200241 *fpga_mode |= CONFIG_SYS_FPGA_CTRL_CF_RESET;
stroeseb3182622003-09-12 08:41:56 +0000242 }
243}
244#endif /* CONFIG_IDE_RESET */
245
Matthias Fuchsf9fc6a52007-03-07 15:32:01 +0100246void reset_phy(void)
247{
248#ifdef CONFIG_LXT971_NO_SLEEP
249
250 /*
251 * Disable sleep mode in LXT971
252 */
253 lxt971_no_sleep();
254#endif
255}
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100256
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200257#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100258/* Input: <dev_addr> I2C address of EEPROM device to enable.
259 * <state> -1: deliver current state
260 * 0: disable write
261 * 1: enable write
262 * Returns: -1: wrong device address
263 * 0: dis-/en- able done
264 * 0/1: current state if <state> was -1.
265 */
266int eeprom_write_enable (unsigned dev_addr, int state)
267{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200268 if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) {
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100269 return -1;
270 } else {
271 switch (state) {
272 case 1:
273 /* Enable write access, clear bit GPIO0. */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200274 out_be32((void*)GPIO0_OR,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200275 in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_EEPROM_WP);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100276 state = 0;
277 break;
278 case 0:
279 /* Disable write access, set bit GPIO0. */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200280 out_be32((void*)GPIO0_OR,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200281 in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100282 state = 0;
283 break;
284 default:
285 /* Read current status back. */
Matthias Fuchs40e43e32008-09-02 11:35:35 +0200286 state = (0 == (in_be32((void*)GPIO0_OR) &
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200287 CONFIG_SYS_EEPROM_WP));
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100288 break;
289 }
290 }
291 return state;
292}
293
294int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
295{
296 int query = argc == 1;
297 int state = 0;
298
299 if (query) {
300 /* Query write access state. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200301 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, -1);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100302 if (state < 0) {
303 puts ("Query of write access state failed.\n");
304 } else {
305 printf ("Write access for device 0x%0x is %sabled.\n",
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200306 CONFIG_SYS_I2C_EEPROM_ADDR, state ? "en" : "dis");
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100307 state = 0;
308 }
309 } else {
310 if ('0' == argv[1][0]) {
311 /* Disable write access. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200312 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 0);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100313 } else {
314 /* Enable write access. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200315 state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 1);
Matthias Fuchsf6e0f1f2007-12-28 17:10:36 +0100316 }
317 if (state < 0) {
318 puts ("Setup of write access state failed.\n");
319 }
320 }
321
322 return state;
323}
324
325U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
326 "eepwren - Enable / disable / query EEPROM write access\n",
327 NULL);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200328#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */