blob: e385a78a2e8c65d23ae096488fe47bff09e3ab89 [file] [log] [blame]
stroesee1cb7eb2003-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 Fuchsc8452fa2007-07-09 10:10:06 +020026#include <asm/io.h>
stroesee1cb7eb2003-09-12 08:41:56 +000027#include <command.h>
28#include <malloc.h>
Matthias Fuchsd1c60452009-10-26 09:58:45 +010029#include <sja1000.h>
stroesee1cb7eb2003-09-12 08:41:56 +000030
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +020031#undef FPGA_DEBUG
stroesee1cb7eb2003-09-12 08:41:56 +000032
Matthias Fuchsc8452fa2007-07-09 10:10:06 +020033DECLARE_GLOBAL_DATA_PTR;
34
stroesee1cb7eb2003-09-12 08:41:56 +000035extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
stroese02ca1112004-12-16 18:39:03 +000036extern void lxt971_no_sleep(void);
stroesee1cb7eb2003-09-12 08:41:56 +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
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +020049int board_early_init_f(void)
stroesee1cb7eb2003-09-12 08:41:56 +000050{
51 /*
52 * IRQ 0-15 405GP internally generated; active high; level sensitive
53 * IRQ 16 405GP internally generated; active low; level sensitive
54 * IRQ 17-24 RESERVED
55 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
56 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
57 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
58 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
59 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
60 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
61 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
62 */
Stefan Roese707fd362009-09-24 09:55:50 +020063 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
64 mtdcr(UIC0ER, 0x00000000); /* disable all ints */
65 mtdcr(UIC0CR, 0x00000000); /* set all to be non-critical*/
66 mtdcr(UIC0PR, 0xFFFFFF99); /* set int polarities */
67 mtdcr(UIC0TR, 0x10000000); /* set int trigger levels */
68 mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest prio */
69 mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
stroesee1cb7eb2003-09-12 08:41:56 +000070
71 /*
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +020072 * EBC Configuration Register: set ready timeout to
73 * 512 ebc-clks -> ca. 15 us
stroesee1cb7eb2003-09-12 08:41:56 +000074 */
Stefan Roese918010a2009-09-09 16:25:29 +020075 mtebc(EBC0_CFG, 0xa8400000); /* ebc always driven */
stroesee1cb7eb2003-09-12 08:41:56 +000076
77 return 0;
78}
79
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +020080int misc_init_r(void)
stroesee1cb7eb2003-09-12 08:41:56 +000081{
stroesee1cb7eb2003-09-12 08:41:56 +000082 unsigned char *dst;
Matthias Fuchseb89df72009-01-02 12:16:35 +010083 unsigned char fctr;
stroesee1cb7eb2003-09-12 08:41:56 +000084 ulong len = sizeof(fpgadata);
85 int status;
86 int index;
87 int i;
88
Matthias Fuchsc8452fa2007-07-09 10:10:06 +020089 /* adjust flash start and offset */
90 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
91 gd->bd->bi_flashoffset = 0;
92
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020093 dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +020094 if (gunzip(dst, CONFIG_SYS_FPGA_MAX_SIZE,
95 (uchar *)fpgadata, &len) != 0) {
96 printf("GUNZIP ERROR - must RESET board to recover\n");
97 do_reset(NULL, 0, 0, NULL);
stroesee1cb7eb2003-09-12 08:41:56 +000098 }
99
100 status = fpga_boot(dst, len);
101 if (status != 0) {
102 printf("\nFPGA: Booting failed ");
103 switch (status) {
104 case ERROR_FPGA_PRG_INIT_LOW:
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200105 printf("(Timeout: INIT not low "
106 "after asserting PROGRAM*)\n");
stroesee1cb7eb2003-09-12 08:41:56 +0000107 break;
108 case ERROR_FPGA_PRG_INIT_HIGH:
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200109 printf("(Timeout: INIT not high "
110 "after deasserting PROGRAM*)\n");
stroesee1cb7eb2003-09-12 08:41:56 +0000111 break;
112 case ERROR_FPGA_PRG_DONE:
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200113 printf("(Timeout: DONE not high "
114 "after programming FPGA)\n");
stroesee1cb7eb2003-09-12 08:41:56 +0000115 break;
116 }
117
118 /* display infos on fpgaimage */
119 index = 15;
120 for (i=0; i<4; i++) {
121 len = dst[index];
122 printf("FPGA: %s\n", &(dst[index+1]));
123 index += len+3;
124 }
125 putc ('\n');
126 /* delayed reboot */
127 for (i=20; i>0; i--) {
128 printf("Rebooting in %2d seconds \r",i);
129 for (index=0;index<1000;index++)
130 udelay(1000);
131 }
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200132 putc('\n');
stroesee1cb7eb2003-09-12 08:41:56 +0000133 do_reset(NULL, 0, 0, NULL);
134 }
135
136 puts("FPGA: ");
137
138 /* display infos on fpgaimage */
139 index = 15;
140 for (i=0; i<4; i++) {
141 len = dst[index];
142 printf("%s ", &(dst[index+1]));
143 index += len+3;
144 }
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200145 putc('\n');
stroesee1cb7eb2003-09-12 08:41:56 +0000146
147 free(dst);
148
149 /*
150 * Reset FPGA via FPGA_DATA pin
151 */
152 SET_FPGA(FPGA_PRG | FPGA_CLK);
153 udelay(1000); /* wait 1ms */
154 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
155 udelay(1000); /* wait 1ms */
156
157 /*
158 * Reset external DUARTs
159 */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200160 out_be32((void*)GPIO0_OR,
161 in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST);
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200162 udelay(10);
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200163 out_be32((void*)GPIO0_OR,
164 in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST);
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200165 udelay(1000);
stroesee1cb7eb2003-09-12 08:41:56 +0000166
167 /*
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100168 * Set NAND-FLASH GPIO signals to default
169 */
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200170 out_be32((void*)GPIO0_OR,
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200171 in_be32((void*)GPIO0_OR) &
172 ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE));
173 out_be32((void*)GPIO0_OR,
174 in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100175
176 /*
177 * Setup EEPROM write protection
178 */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200179 out_be32((void*)GPIO0_OR,
180 in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP);
181 out_be32((void*)GPIO0_TCR,
182 in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100183
184 /*
stroesee1cb7eb2003-09-12 08:41:56 +0000185 * Enable interrupts in exar duart mcr[3]
186 */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200187 out_8((void *)DUART0_BA + 4, 0x08);
188 out_8((void *)DUART1_BA + 4, 0x08);
stroesee1cb7eb2003-09-12 08:41:56 +0000189
Matthias Fuchseb89df72009-01-02 12:16:35 +0100190 /*
191 * Enable auto RS485 mode in 2nd external uart
192 */
193 out_8((void *)DUART1_BA + 3, 0xbf); /* write LCR */
194 fctr = in_8((void *)DUART1_BA + 1); /* read FCTR */
195 fctr |= 0x08; /* enable RS485 mode */
196 out_8((void *)DUART1_BA + 1, fctr); /* write FCTR */
197 out_8((void *)DUART1_BA + 3, 0); /* write LCR */
198
Matthias Fuchsd1c60452009-10-26 09:58:45 +0100199 /*
200 * Init magnetic couplers
201 */
202 if (!getenv("noinitcoupler")) {
203 init_coupler(CAN0_BA);
204 init_coupler(CAN1_BA);
205 }
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200206 return 0;
stroesee1cb7eb2003-09-12 08:41:56 +0000207}
208
stroesee1cb7eb2003-09-12 08:41:56 +0000209/*
210 * Check Board Identity:
211 */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200212int checkboard(void)
stroesee1cb7eb2003-09-12 08:41:56 +0000213{
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200214 char str[64];
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200215 int i = getenv_r("serial#", str, sizeof(str));
stroesee1cb7eb2003-09-12 08:41:56 +0000216
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200217 puts("Board: ");
stroesee1cb7eb2003-09-12 08:41:56 +0000218
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200219 if (i == -1)
220 puts("### No HW ID - assuming PLU405");
221 else
stroesee1cb7eb2003-09-12 08:41:56 +0000222 puts(str);
stroesee1cb7eb2003-09-12 08:41:56 +0000223
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200224 putc('\n');
stroesee1cb7eb2003-09-12 08:41:56 +0000225 return 0;
226}
227
stroesee1cb7eb2003-09-12 08:41:56 +0000228#ifdef CONFIG_IDE_RESET
Matthias Fuchs5dde4e22009-02-20 10:19:19 +0100229#define FPGA_CTRL (CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL)
stroesee1cb7eb2003-09-12 08:41:56 +0000230void ide_set_reset(int on)
231{
stroesee1cb7eb2003-09-12 08:41:56 +0000232 /*
233 * Assert or deassert CompactFlash Reset Pin
234 */
235 if (on) { /* assert RESET */
Matthias Fuchs5dde4e22009-02-20 10:19:19 +0100236 out_be16((void *)FPGA_CTRL,
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200237 in_be16((void *)FPGA_CTRL) &
238 ~CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroesee1cb7eb2003-09-12 08:41:56 +0000239 } else { /* release RESET */
Matthias Fuchs5dde4e22009-02-20 10:19:19 +0100240 out_be16((void *)FPGA_CTRL,
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200241 in_be16((void *)FPGA_CTRL) |
242 CONFIG_SYS_FPGA_CTRL_CF_RESET);
stroesee1cb7eb2003-09-12 08:41:56 +0000243 }
244}
245#endif /* CONFIG_IDE_RESET */
246
Matthias Fuchs9ee77182007-03-07 15:32:01 +0100247void reset_phy(void)
248{
249#ifdef CONFIG_LXT971_NO_SLEEP
250
251 /*
252 * Disable sleep mode in LXT971
253 */
254 lxt971_no_sleep();
255#endif
256}
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100257
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200258#if defined(CONFIG_SYS_EEPROM_WREN)
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100259/* Input: <dev_addr> I2C address of EEPROM device to enable.
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200260 * <state> -1: deliver current state
261 * 0: disable write
262 * 1: enable write
263 * Returns: -1: wrong device address
264 * 0: dis-/en- able done
265 * 0/1: current state if <state> was -1.
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100266 */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200267int eeprom_write_enable(unsigned dev_addr, int state)
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100268{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200269 if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) {
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100270 return -1;
271 } else {
272 switch (state) {
273 case 1:
274 /* Enable write access, clear bit GPIO0. */
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200275 out_be32((void*)GPIO0_OR,
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200276 in_be32((void*)GPIO0_OR) &
277 ~CONFIG_SYS_EEPROM_WP);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100278 state = 0;
279 break;
280 case 0:
281 /* Disable write access, set bit GPIO0. */
Matthias Fuchsa1fe6fb2008-09-02 11:35:35 +0200282 out_be32((void*)GPIO0_OR,
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200283 in_be32((void*)GPIO0_OR) |
284 CONFIG_SYS_EEPROM_WP);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100285 state = 0;
286 break;
287 default:
288 /* Read current status back. */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200289 state = ((in_be32((void*)GPIO0_OR) &
290 CONFIG_SYS_EEPROM_WP) == 0);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100291 break;
292 }
293 }
294 return state;
295}
296
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200297int do_eep_wren(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100298{
299 int query = argc == 1;
300 int state = 0;
301
302 if (query) {
303 /* Query write access state. */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200304 state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, -1);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100305 if (state < 0) {
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200306 puts("Query of write access state failed.\n");
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100307 } else {
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200308 printf("Write access for device 0x%0x is %sabled.\n",
309 CONFIG_SYS_I2C_EEPROM_ADDR,
310 state ? "en" : "dis");
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100311 state = 0;
312 }
313 } else {
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200314 if (argv[1][0] == '0') {
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100315 /* Disable write access. */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200316 state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR,
317 0);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100318 } else {
319 /* Enable write access. */
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200320 state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR,
321 1);
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100322 }
Matthias Fuchs1fc0bd82009-07-16 22:13:57 +0200323 if (state < 0)
324 puts("Setup of write access state failed.\n");
Matthias Fuchs9f05e852007-12-28 17:10:36 +0100325 }
326
327 return state;
328}
329
330U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200331 "Enable / disable / query EEPROM write access",
332 ""
333);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200334#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */