]> git.sur5r.net Git - u-boot/blob - board/esd/ash405/ash405.c
- Update NAND FLASH support.
[u-boot] / board / esd / ash405 / ash405.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 <cmd_boot.h>
28 #include <malloc.h>
29
30 /* ------------------------------------------------------------------------- */
31
32 #if 0
33 #define FPGA_DEBUG
34 #endif
35
36 /* fpga configuration data - gzip compressed and generated by bin2c */
37 const unsigned char fpgadata[] =
38 {
39 #include "fpgadata.c"
40 };
41
42 /*
43  * include common fpga code (for esd boards)
44  */
45 #include "../common/fpga.c"
46
47
48 /* Prototypes */
49 int gunzip(void *, int, unsigned char *, int *);
50
51
52 int board_pre_init (void)
53 {
54         /*
55          * IRQ 0-15  405GP internally generated; active high; level sensitive
56          * IRQ 16    405GP internally generated; active low; level sensitive
57          * IRQ 17-24 RESERVED
58          * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
59          * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
60          * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
61          * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
62          * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
63          * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
64          * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
65          */
66         mtdcr(uicsr, 0xFFFFFFFF);       /* clear all ints */
67         mtdcr(uicer, 0x00000000);       /* disable all ints */
68         mtdcr(uiccr, 0x00000000);       /* set all to be non-critical*/
69         mtdcr(uicpr, 0xFFFFFF81);       /* set int polarities */
70         mtdcr(uictr, 0x10000000);       /* set int trigger levels */
71         mtdcr(uicvcr, 0x00000001);      /* set vect base=0,INT0 highest priority*/
72         mtdcr(uicsr, 0xFFFFFFFF);       /* clear all ints */
73
74         /*
75          * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
76          */
77         mtebc (epcr, 0xa8400000); /* ebc always driven */
78
79         return 0;
80 }
81
82
83 /* ------------------------------------------------------------------------- */
84
85 int misc_init_f (void)
86 {
87         return 0;  /* dummy implementation */
88 }
89
90
91 int misc_init_r (void)
92 {
93         volatile unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
94         volatile unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
95         volatile unsigned char *duart2_mcr = (unsigned char *)((ulong)DUART2_BA + 4);
96         volatile unsigned char *duart3_mcr = (unsigned char *)((ulong)DUART3_BA + 4);
97         unsigned char *dst;
98         ulong len = sizeof(fpgadata);
99         int status;
100         int index;
101         int i;
102
103         dst = malloc(CFG_FPGA_MAX_SIZE);
104         if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0) {
105                 printf ("GUNZIP ERROR - must RESET board to recover\n");
106                 do_reset (NULL, 0, 0, NULL);
107         }
108
109         status = fpga_boot(dst, len);
110         if (status != 0) {
111                 printf("\nFPGA: Booting failed ");
112                 switch (status) {
113                 case ERROR_FPGA_PRG_INIT_LOW:
114                         printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
115                         break;
116                 case ERROR_FPGA_PRG_INIT_HIGH:
117                         printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
118                         break;
119                 case ERROR_FPGA_PRG_DONE:
120                         printf("(Timeout: DONE not high after programming FPGA)\n ");
121                         break;
122                 }
123
124                 /* display infos on fpgaimage */
125                 index = 15;
126                 for (i=0; i<4; i++) {
127                         len = dst[index];
128                         printf("FPGA: %s\n", &(dst[index+1]));
129                         index += len+3;
130                 }
131                 putc ('\n');
132                 /* delayed reboot */
133                 for (i=20; i>0; i--) {
134                         printf("Rebooting in %2d seconds \r",i);
135                         for (index=0;index<1000;index++)
136                                 udelay(1000);
137                 }
138                 putc ('\n');
139                 do_reset(NULL, 0, 0, NULL);
140         }
141
142         puts("FPGA:  ");
143
144         /* display infos on fpgaimage */
145         index = 15;
146         for (i=0; i<4; i++) {
147                 len = dst[index];
148                 printf("%s ", &(dst[index+1]));
149                 index += len+3;
150         }
151         putc ('\n');
152
153         free(dst);
154
155         /*
156          * Reset FPGA via FPGA_DATA pin
157          */
158         SET_FPGA(FPGA_PRG | FPGA_CLK);
159         udelay(1000); /* wait 1ms */
160         SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
161         udelay(1000); /* wait 1ms */
162
163         /*
164          * Reset external DUARTs
165          */
166         out32(GPIO0_OR, in32(GPIO0_OR) | CFG_DUART_RST); /* set reset to high */
167         udelay(10); /* wait 10us */
168         out32(GPIO0_OR, in32(GPIO0_OR) & ~CFG_DUART_RST); /* set reset to low */
169         udelay(1000); /* wait 1ms */
170
171         /*
172          * Set NAND-FLASH GPIO signals to default
173          */
174         out32(GPIO0_OR, in32(GPIO0_OR) & ~(CFG_NAND_CLE | CFG_NAND_ALE));
175         out32(GPIO0_OR, in32(GPIO0_OR) | CFG_NAND_CE);
176
177         /*
178          * Enable interrupts in exar duart mcr[3]
179          */
180         *duart0_mcr = 0x08;
181         *duart1_mcr = 0x08;
182         *duart2_mcr = 0x08;
183         *duart3_mcr = 0x08;
184
185         return (0);
186 }
187
188
189 /*
190  * Check Board Identity:
191  */
192
193 int checkboard (void)
194 {
195         unsigned char str[64];
196         int i = getenv_r ("serial#", str, sizeof(str));
197
198         puts ("Board: ");
199
200         if (i == -1) {
201                 puts ("### No HW ID - assuming ASH405");
202         } else {
203                 puts(str);
204         }
205
206         putc ('\n');
207
208         return 0;
209 }
210
211 /* ------------------------------------------------------------------------- */
212
213 long int initdram (int board_type)
214 {
215         unsigned long val;
216
217         mtdcr(memcfga, mem_mb0cf);
218         val = mfdcr(memcfgd);
219
220 #if 0
221         printf("\nmb0cf=%x\n", val); /* test-only */
222         printf("strap=%x\n", mfdcr(strap)); /* test-only */
223 #endif
224
225         return (4*1024*1024 << ((val & 0x000e0000) >> 17));
226 }
227
228 /* ------------------------------------------------------------------------- */
229
230 int testdram (void)
231 {
232         /* TODO: XXX XXX XXX */
233         printf ("test: 16 MB - ok\n");
234
235         return (0);
236 }
237
238 /* ------------------------------------------------------------------------- */
239
240 #if (CONFIG_COMMANDS & CFG_CMD_NAND)
241 #include <linux/mtd/nand.h>
242 extern struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE];
243
244 void nand_init(void)
245 {
246         nand_probe(CFG_NAND_BASE);
247         if (nand_dev_desc[0].ChipID != NAND_ChipID_UNKNOWN) {
248                 puts("NAND:  ");
249                 print_size(nand_dev_desc[0].totlen, "\n");
250         }
251 }
252 #endif