]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/esd/plu405/plu405.c
Merge with git://www.denx.de/git/u-boot.git
[people/ms/u-boot.git] / board / esd / plu405 / plu405.c
1 /*
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>
26 #include <command.h>
27 #include <malloc.h>
28
29
30 #if 0
31 #define FPGA_DEBUG
32 #endif
33
34 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
35 extern void lxt971_no_sleep(void);
36
37 /* fpga configuration data - gzip compressed and generated by bin2c */
38 const 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
48
49 /*
50 * include common auto-update code (for esd boards)
51 */
52 #include "../common/auto_update.h"
53
54 au_image_t au_image[] = {
55 {"plu405/preinst.img", 0, -1, AU_SCRIPT},
56 {"plu405/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE},
57 {"plu405/pImage_${bd_type}", 0x00000000, 0x00100000, AU_NAND},
58 {"plu405/pImage.initrd", 0x00100000, 0x00200000, AU_NAND},
59 {"plu405/yaffsmt2.img", 0x00300000, 0x01c00000, AU_NAND},
60 {"plu405/postinst.img", 0, 0, AU_SCRIPT},
61 };
62
63 int N_AU_IMAGES = (sizeof(au_image) / sizeof(au_image[0]));
64
65
66 /* Prototypes */
67 int gunzip(void *, int, unsigned char *, unsigned long *);
68
69
70 int board_early_init_f (void)
71 {
72 /*
73 * IRQ 0-15 405GP internally generated; active high; level sensitive
74 * IRQ 16 405GP internally generated; active low; level sensitive
75 * IRQ 17-24 RESERVED
76 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
77 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
78 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
79 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
80 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
81 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
82 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
83 */
84 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
85 mtdcr(uicer, 0x00000000); /* disable all ints */
86 mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
87 mtdcr(uicpr, 0xFFFFFF99); /* set int polarities */
88 mtdcr(uictr, 0x10000000); /* set int trigger levels */
89 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/
90 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
91
92 /*
93 * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
94 */
95 mtebc (epcr, 0xa8400000); /* ebc always driven */
96
97 return 0;
98 }
99
100
101 int misc_init_f (void)
102 {
103 return 0; /* dummy implementation */
104 }
105
106
107 int misc_init_r (void)
108 {
109 volatile unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
110 volatile unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
111 unsigned char *dst;
112 ulong len = sizeof(fpgadata);
113 int status;
114 int index;
115 int i;
116
117 dst = malloc(CFG_FPGA_MAX_SIZE);
118 if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
119 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 /*
170 * Reset FPGA via FPGA_DATA pin
171 */
172 SET_FPGA(FPGA_PRG | FPGA_CLK);
173 udelay(1000); /* wait 1ms */
174 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
175 udelay(1000); /* wait 1ms */
176
177 /*
178 * Reset external DUARTs
179 */
180 out32(GPIO0_OR, in32(GPIO0_OR) | CFG_DUART_RST); /* set reset to high */
181 udelay(10); /* wait 10us */
182 out32(GPIO0_OR, in32(GPIO0_OR) & ~CFG_DUART_RST); /* set reset to low */
183 udelay(1000); /* wait 1ms */
184
185 /*
186 * Set NAND-FLASH GPIO signals to default
187 */
188 out32(GPIO0_OR, in32(GPIO0_OR) & ~(CFG_NAND_CLE | CFG_NAND_ALE));
189 out32(GPIO0_OR, in32(GPIO0_OR) | CFG_NAND_CE);
190
191 /*
192 * Enable interrupts in exar duart mcr[3]
193 */
194 *duart0_mcr = 0x08;
195 *duart1_mcr = 0x08;
196
197 return (0);
198 }
199
200
201 /*
202 * Check Board Identity:
203 */
204 int checkboard (void)
205 {
206 char str[64];
207 int i = getenv_r ("serial#", str, sizeof(str));
208
209 puts ("Board: ");
210
211 if (i == -1) {
212 puts ("### No HW ID - assuming PLU405");
213 } else {
214 puts(str);
215 }
216
217 putc ('\n');
218 return 0;
219 }
220
221
222 long int initdram (int board_type)
223 {
224 unsigned long val;
225
226 mtdcr(memcfga, mem_mb0cf);
227 val = mfdcr(memcfgd);
228
229 #if 0
230 printf("\nmb0cf=%x\n", val); /* test-only */
231 printf("strap=%x\n", mfdcr(strap)); /* test-only */
232 #endif
233
234 return (4*1024*1024 << ((val & 0x000e0000) >> 17));
235 }
236
237
238 int testdram (void)
239 {
240 /* TODO: XXX XXX XXX */
241 printf ("test: 16 MB - ok\n");
242
243 return (0);
244 }
245
246
247 #ifdef CONFIG_IDE_RESET
248 void ide_set_reset(int on)
249 {
250 volatile unsigned short *fpga_mode =
251 (unsigned short *)((ulong)CFG_FPGA_BASE_ADDR + CFG_FPGA_CTRL);
252
253 /*
254 * Assert or deassert CompactFlash Reset Pin
255 */
256 if (on) { /* assert RESET */
257 *fpga_mode &= ~(CFG_FPGA_CTRL_CF_RESET);
258 } else { /* release RESET */
259 *fpga_mode |= CFG_FPGA_CTRL_CF_RESET;
260 }
261 }
262 #endif /* CONFIG_IDE_RESET */
263
264
265 #if defined(CONFIG_CMD_NAND)
266 #include <linux/mtd/nand_legacy.h>
267 extern struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE];
268
269 void nand_init(void)
270 {
271 nand_probe(CFG_NAND_BASE);
272 if (nand_dev_desc[0].ChipID != NAND_ChipID_UNKNOWN) {
273 print_size(nand_dev_desc[0].totlen, "\n");
274 }
275 }
276 #endif
277
278
279 #ifdef CONFIG_AUTO_UPDATE_SHOW
280 void board_auto_update_show(int au_active)
281 {
282 if (au_active) {
283 printf("\n Dies ist die board-funktion: Updating!!!\n");
284 } else {
285 printf("\n Dies ist die board-funktion: Updating done!!!\n");
286 }
287 }
288 #endif
289
290 void reset_phy(void)
291 {
292 #ifdef CONFIG_LXT971_NO_SLEEP
293
294 /*
295 * Disable sleep mode in LXT971
296 */
297 lxt971_no_sleep();
298 #endif
299 }