]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/dave/PPChameleonEVB/PPChameleonEVB.c
* Fix flash parameters passed to Linux for PPChameleon board
[people/ms/u-boot.git] / board / dave / PPChameleonEVB / PPChameleonEVB.c
CommitLineData
12f34241 1/*
180d3f74
WD
2 * (C) Copyright 2003
3 * DAVE Srl
4 * http://www.dave-tech.it
5 * http://www.wawnet.biz
6 * mailto:info@wawnet.biz
12f34241
WD
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27#include <common.h>
28#include <asm/processor.h>
29#include <command.h>
30#include <malloc.h>
31
32/* ------------------------------------------------------------------------- */
33
34#if 0
35#define FPGA_DEBUG
36#endif
37
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
49
50/* Prototypes */
51int gunzip(void *, int, unsigned char *, int *);
52
53
c837dcb1 54int board_early_init_f (void)
12f34241
WD
55{
56 out32(GPIO0_OR, CFG_NAND0_CE); /* set initial outputs */
42d1f039 57 out32(GPIO0_OR, CFG_NAND1_CE); /* set initial outputs */
12f34241
WD
58
59 /*
60 * IRQ 0-15 405GP internally generated; active high; level sensitive
61 * IRQ 16 405GP internally generated; active low; level sensitive
62 * IRQ 17-24 RESERVED
63 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
64 * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
65 * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
66 * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
67 * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
68 * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
69 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
70 */
71 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
72 mtdcr(uicer, 0x00000000); /* disable all ints */
73 mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
4654af27 74 mtdcr(uicpr, 0xFFFFFF80); /* set int polarities */
12f34241
WD
75 mtdcr(uictr, 0x10000000); /* set int trigger levels */
76 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/
77 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
78
79 /*
80 * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
81 */
82#if 1 /* test-only */
83 mtebc (epcr, 0xa8400000); /* ebc always driven */
84#else
85 mtebc (epcr, 0x28400000); /* ebc in high-z */
86#endif
87
88 return 0;
89}
90
91
92/* ------------------------------------------------------------------------- */
93
94int misc_init_f (void)
95{
96 return 0; /* dummy implementation */
97}
98
46a414dc 99extern flash_info_t flash_info[]; /* info for FLASH chips */
12f34241
WD
100
101int misc_init_r (void)
102{
12f34241 103 DECLARE_GLOBAL_DATA_PTR;
46a414dc
WD
104
105 /* adjust flash start and size as well as the offset */
106 gd->bd->bi_flashstart = 0 - flash_info[0].size;
107 gd->bd->bi_flashoffset= flash_info[0].size - CFG_MONITOR_LEN;
12f34241
WD
108#if 0
109 volatile unsigned short *fpga_mode =
110 (unsigned short *)((ulong)CFG_FPGA_BASE_ADDR + CFG_FPGA_CTRL);
111 volatile unsigned char *duart0_mcr =
112 (unsigned char *)((ulong)DUART0_BA + 4);
113 volatile unsigned char *duart1_mcr =
114 (unsigned char *)((ulong)DUART1_BA + 4);
115
116 bd_t *bd = gd->bd;
117 char * tmp; /* Temporary char pointer */
118 unsigned char *dst;
119 ulong len = sizeof(fpgadata);
120 int status;
121 int index;
122 int i;
123 unsigned long cntrl0Reg;
124
125 dst = malloc(CFG_FPGA_MAX_SIZE);
126 if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, (int *)&len) != 0) {
127 printf ("GUNZIP ERROR - must RESET board to recover\n");
128 do_reset (NULL, 0, 0, NULL);
129 }
130
131 status = fpga_boot(dst, len);
132 if (status != 0) {
133 printf("\nFPGA: Booting failed ");
134 switch (status) {
135 case ERROR_FPGA_PRG_INIT_LOW:
136 printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
137 break;
138 case ERROR_FPGA_PRG_INIT_HIGH:
139 printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
140 break;
141 case ERROR_FPGA_PRG_DONE:
142 printf("(Timeout: DONE not high after programming FPGA)\n ");
143 break;
144 }
145
146 /* display infos on fpgaimage */
147 index = 15;
148 for (i=0; i<4; i++) {
149 len = dst[index];
150 printf("FPGA: %s\n", &(dst[index+1]));
151 index += len+3;
152 }
153 putc ('\n');
154 /* delayed reboot */
155 for (i=20; i>0; i--) {
156 printf("Rebooting in %2d seconds \r",i);
157 for (index=0;index<1000;index++)
158 udelay(1000);
159 }
160 putc ('\n');
161 do_reset(NULL, 0, 0, NULL);
162 }
163
164 puts("FPGA: ");
165
166 /* display infos on fpgaimage */
167 index = 15;
168 for (i=0; i<4; i++) {
169 len = dst[index];
170 printf("%s ", &(dst[index+1]));
171 index += len+3;
172 }
173 putc ('\n');
174
175 free(dst);
176
177 /*
178 * Reset FPGA via FPGA_DATA pin
179 */
180 SET_FPGA(FPGA_PRG | FPGA_CLK);
181 udelay(1000); /* wait 1ms */
182 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
183 udelay(1000); /* wait 1ms */
184
185#endif
186
187#if 0
188 /*
189 * Enable power on PS/2 interface
190 */
191 *fpga_mode |= CFG_FPGA_CTRL_PS2_RESET;
192
193 /*
194 * Enable interrupts in exar duart mcr[3]
195 */
196 *duart0_mcr = 0x08;
197 *duart1_mcr = 0x08;
198#endif
12f34241
WD
199 return (0);
200}
201
202
203/*
204 * Check Board Identity:
205 */
206
207int checkboard (void)
208{
209 unsigned char str[64];
210 int i = getenv_r ("serial#", str, sizeof(str));
211
212 puts ("Board: ");
213
214 if (i == -1) {
215 puts ("### No HW ID - assuming PPChameleonEVB");
216 } else {
217 puts(str);
218 }
219
220 putc ('\n');
221
222 return 0;
223}
224
225/* ------------------------------------------------------------------------- */
226
227long int initdram (int board_type)
228{
229 unsigned long val;
230
231 mtdcr(memcfga, mem_mb0cf);
232 val = mfdcr(memcfgd);
233
234#if 0 /* test-only */
235 for (;;) {
236 NAND_DISABLE_CE(1);
237 udelay(100);
238 NAND_ENABLE_CE(1);
239 udelay(100);
240 }
241#endif
242#if 0
243 printf("\nmb0cf=%x\n", val); /* test-only */
244 printf("strap=%x\n", mfdcr(strap)); /* test-only */
245#endif
246
247 return (4*1024*1024 << ((val & 0x000e0000) >> 17));
248}
249
250/* ------------------------------------------------------------------------- */
251
252int testdram (void)
253{
254 /* TODO: XXX XXX XXX */
255 printf ("test: 16 MB - ok\n");
256
257 return (0);
258}
259
260/* ------------------------------------------------------------------------- */
261
262#if (CONFIG_COMMANDS & CFG_CMD_NAND)
a43278a4 263extern ulong
12f34241
WD
264nand_probe(ulong physadr);
265
266void
267nand_init(void)
268{
fbe4b5cb 269 ulong totlen = 0;
a43278a4 270
fbe4b5cb
WD
271#if (CONFIG_PPCHAMELEON_MODULE_MODEL == CONFIG_PPCHAMELEON_MODULE_ME) || \
272 (CONFIG_PPCHAMELEON_MODULE_MODEL == CONFIG_PPCHAMELEON_MODULE_HI)
4d816774 273 debug ("Probing at 0x%.8x\n", CFG_NAND0_BASE);
fbe4b5cb
WD
274 totlen += nand_probe (CFG_NAND0_BASE);
275#endif /* CONFIG_PPCHAMELEON_MODULE_ME, CONFIG_PPCHAMELEON_MODULE_HI */
4d816774
WD
276
277 debug ("Probing at 0x%.8x\n", CFG_NAND1_BASE);
a43278a4
WD
278 totlen += nand_probe (CFG_NAND1_BASE);
279
280 printf ("%4lu MB\n", totlen >>20);
12f34241
WD
281}
282#endif