]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/esd/wuh405/wuh405.c
Merge with git://www.denx.de/git/u-boot.git
[karo-tx-uboot.git] / board / esd / wuh405 / wuh405.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
31 #if 0
32 #define FPGA_DEBUG
33 #endif
34
35 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
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 /* Prototypes */
50 int gunzip(void *, int, unsigned char *, unsigned long *);
51
52
53 int board_early_init_f (void)
54 {
55         /*
56          * IRQ 0-15  405GP internally generated; active high; level sensitive
57          * IRQ 16    405GP internally generated; active low; level sensitive
58          * IRQ 17-24 RESERVED
59          * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
60          * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
61          * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
62          * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
63          * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
64          * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
65          * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
66          */
67         mtdcr(uicsr, 0xFFFFFFFF);       /* clear all ints */
68         mtdcr(uicer, 0x00000000);       /* disable all ints */
69         mtdcr(uiccr, 0x00000000);       /* set all to be non-critical*/
70         mtdcr(uicpr, 0xFFFFFF9F);       /* set int polarities */
71         mtdcr(uictr, 0x10000000);       /* set int trigger levels */
72         mtdcr(uicvcr, 0x00000001);      /* set vect base=0,INT0 highest priority*/
73         mtdcr(uicsr, 0xFFFFFFFF);       /* clear all ints */
74
75         /*
76          * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
77          */
78         mtebc (epcr, 0xa8400000); /* ebc always driven */
79
80         return 0;
81 }
82
83
84 /* ------------------------------------------------------------------------- */
85
86 int misc_init_f (void)
87 {
88         return 0;  /* dummy implementation */
89 }
90
91
92 int misc_init_r (void)
93 {
94         volatile unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4);
95         volatile unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4);
96         volatile unsigned char *duart2_mcr = (unsigned char *)((ulong)DUART2_BA + 4);
97         volatile unsigned char *duart3_mcr = (unsigned char *)((ulong)DUART3_BA + 4);
98         unsigned char *dst;
99         ulong len = sizeof(fpgadata);
100         int status;
101         int index;
102         int i;
103
104         dst = malloc(CFG_FPGA_MAX_SIZE);
105         if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
106                 printf ("GUNZIP ERROR - must RESET board to recover\n");
107                 do_reset (NULL, 0, 0, NULL);
108         }
109
110         status = fpga_boot(dst, len);
111         if (status != 0) {
112                 printf("\nFPGA: Booting failed ");
113                 switch (status) {
114                 case ERROR_FPGA_PRG_INIT_LOW:
115                         printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
116                         break;
117                 case ERROR_FPGA_PRG_INIT_HIGH:
118                         printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
119                         break;
120                 case ERROR_FPGA_PRG_DONE:
121                         printf("(Timeout: DONE not high after programming FPGA)\n ");
122                         break;
123                 }
124
125                 /* display infos on fpgaimage */
126                 index = 15;
127                 for (i=0; i<4; i++) {
128                         len = dst[index];
129                         printf("FPGA: %s\n", &(dst[index+1]));
130                         index += len+3;
131                 }
132                 putc ('\n');
133                 /* delayed reboot */
134                 for (i=20; i>0; i--) {
135                         printf("Rebooting in %2d seconds \r",i);
136                         for (index=0;index<1000;index++)
137                                 udelay(1000);
138                 }
139                 putc ('\n');
140                 do_reset(NULL, 0, 0, NULL);
141         }
142
143         puts("FPGA:  ");
144
145         /* display infos on fpgaimage */
146         index = 15;
147         for (i=0; i<4; i++) {
148                 len = dst[index];
149                 printf("%s ", &(dst[index+1]));
150                 index += len+3;
151         }
152         putc ('\n');
153
154         free(dst);
155
156         /*
157          * Reset FPGA via FPGA_DATA pin
158          */
159         SET_FPGA(FPGA_PRG | FPGA_CLK);
160         udelay(1000); /* wait 1ms */
161         SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
162         udelay(1000); /* wait 1ms */
163
164         /*
165          * Reset external DUARTs
166          */
167         out32(GPIO0_OR, in32(GPIO0_OR) | CFG_DUART_RST); /* set reset to high */
168         udelay(10); /* wait 10us */
169         out32(GPIO0_OR, in32(GPIO0_OR) & ~CFG_DUART_RST); /* set reset to low */
170         udelay(1000); /* wait 1ms */
171
172         /*
173          * Enable interrupts in exar duart mcr[3]
174          */
175         *duart0_mcr = 0x08;
176         *duart1_mcr = 0x08;
177         *duart2_mcr = 0x08;
178         *duart3_mcr = 0x08;
179
180         return (0);
181 }
182
183
184 /*
185  * Check Board Identity:
186  */
187
188 int checkboard (void)
189 {
190         char str[64];
191         int i = getenv_r ("serial#", str, sizeof(str));
192
193         puts ("Board: ");
194
195         if (i == -1) {
196                 puts ("### No HW ID - assuming WUH405");
197         } else {
198                 puts(str);
199         }
200
201         putc ('\n');
202
203         return 0;
204 }
205
206 /* ------------------------------------------------------------------------- */
207
208 long int initdram (int board_type)
209 {
210         unsigned long val;
211
212         mtdcr(memcfga, mem_mb0cf);
213         val = mfdcr(memcfgd);
214
215         return (4*1024*1024 << ((val & 0x000e0000) >> 17));
216 }