1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25#include <config.h>
26#include <common.h>
27#include "w7o.h"
28#include <asm/processor.h>
29#include "errors.h"
30
31static void
32fpga_img_write(unsigned long *src, unsigned long len, unsigned short *daddr)
33{
34 unsigned long i;
35 volatile unsigned long val;
36 volatile unsigned short *dest = daddr;
37
38 for (i = 0; i < len; i++, src++) {
39 val = *src;
40 *dest = (unsigned short)((val & 0xff000000L) >> 16);
41 *dest = (unsigned short)((val & 0x00ff0000L) >> 8);
42 *dest = (unsigned short)(val & 0x0000ff00L);
43 *dest = (unsigned short)((val & 0x000000ffL) << 8);
44 }
45
46
47 dest = daddr;
48 val = *(unsigned short *)dest;
49 val = *(unsigned short *)dest;
50 val = *(unsigned short *)dest;
51 val = *(unsigned short *)dest;
52
53}
54
55
56int
57fpgaDownload(unsigned char *saddr,
58 unsigned long size,
59 unsigned short *daddr)
60{
61 int i;
62 int start;
63 unsigned long greg, grego;
64 unsigned long length;
65 unsigned long *source;
66 unsigned short *dest;
67 volatile unsigned short *ndest;
68 volatile unsigned short val;
69 unsigned long cnfg = GPIO_XCV_CNFG;
70 unsigned long eirq = GPIO_XCV_IRQ;
71 int retval = -1;
72
73
74 length = (size / 4) + 1;
75
76 source = (unsigned long *)saddr;
77 dest = (unsigned short *)daddr;
78
79
80 grego = in32(PPC405GP_GPIO0_OR);
81
82
83 grego &= ~GPIO_XCV_PROG;
84 out32(PPC405GP_GPIO0_OR, grego);
85
86
87 start = get_timer(0);
88
89
90 while(in32(PPC405GP_GPIO0_IR) & GPIO_XCV_INIT) {
91
92 if (get_timer(start) > 3) {
93 printf(" failed to start init.\n");
94 log_warn(ERR_XINIT0);
95
96
97 goto done;
98 }
99 }
100
101
102 grego |= GPIO_XCV_PROG;
103 out32(PPC405GP_GPIO0_OR, grego);
104
105
106 while(!(in32(PPC405GP_GPIO0_IR) & GPIO_XCV_INIT)) {
107
108
109 if (get_timer(start) > 3) {
110 printf(" failed to exit init.\n");
111 log_warn(ERR_XINIT1);
112
113
114 grego &= ~GPIO_XCV_PROG;
115 out32(PPC405GP_GPIO0_OR, grego);
116
117 goto done;
118 }
119 }
120
121
122 ndest = dest;
123 for (i = 0; i < CONFIG_NUM_FPGAS; i++) {
124
125 greg = mfdcr(CPC0_CR0);
126 greg |= eirq;
127 mtdcr(CPC0_CR0, greg);
128
129
130 greg = in32(PPC405GP_GPIO0_ODR);
131 greg |= cnfg;
132 out32(PPC405GP_GPIO0_ODR, greg);
133
134
135 greg = in32(PPC405GP_GPIO0_TCR);
136 greg |= cnfg;
137 out32(PPC405GP_GPIO0_TCR, greg);
138
139
140 grego &= ~cnfg;
141 out32(PPC405GP_GPIO0_OR, grego);
142
143
144
145
146 printf("\n destination: 0x%lx ", (unsigned long)ndest);
147
148 fpga_img_write(source, length, (unsigned short *)ndest);
149
150
151 grego |= cnfg;
152 out32(PPC405GP_GPIO0_OR, grego);
153
154
155 greg = in32(PPC405GP_GPIO0_TCR);
156 greg &= ~cnfg;
157 out32(PPC405GP_GPIO0_TCR, greg);
158
159
160 greg = mfdcr(CPC0_CR0);
161 greg &= ~eirq;
162 mtdcr(CPC0_CR0, greg);
163
164 ndest = (unsigned short *)((char *)ndest + 0x00100000L);
165 cnfg >>= 1;
166 eirq >>= 1;
167 }
168
169
170 ndest = dest;
171 for (i = 0; i < CONFIG_NUM_FPGAS; i++) {
172 val = *ndest;
173 val = *ndest;
174 val = *ndest;
175 val = *ndest;
176 ndest = (unsigned short *)((char *)ndest + 0x00100000L);
177 }
178
179
180 start = get_timer(0);
181
182
183 while(!(in32(PPC405GP_GPIO0_IR) & GPIO_XCV_DONE)) {
184
185
186 if (get_timer(start) > 3) {
187 printf(" done failed to come high.\n");
188 log_warn(ERR_XDONE1);
189
190
191 grego &= ~GPIO_XCV_PROG;
192 out32(PPC405GP_GPIO0_OR, grego);
193
194 goto done;
195 }
196 }
197
198 printf("\n FPGA load succeeded\n");
199 retval = 0;
200
201done:
202 return retval;
203}
204
205
206extern flash_info_t flash_info[];
207
208int init_fpga(void)
209{
210 unsigned int i,j,ptr;
211 unsigned char bufchar;
212 unsigned char *buf;
213 unsigned long len;
214 unsigned char *fn_buf;
215 unsigned int fn_len;
216 unsigned char *xcv_buf;
217 unsigned long xcv_len;
218 unsigned long crc;
219 unsigned long calc_crc;
220 int retval = -1;
221
222
223 printf("FPGA: ");
224
225
226
227
228
229 buf = (unsigned char *)flash_info[1].start[0];
230
231
232
233
234 crc = *(unsigned long *)(buf+4);
235 len = *(unsigned long *)(buf+8);
236
237
238 if ((len < 0x133A4) || (len > 0x80000))
239 goto bad_image;
240
241
242
243
244 fn_len = (*(unsigned short *)(buf+12) & 0xff);
245
246 fn_buf = buf + 14;
247
248
249
250
251 xcv_buf = fn_buf + fn_len;
252 xcv_len = len - 14 - fn_len;
253
254
255 if ((strncmp((char *)buf, "w7o", 3)!=0) || (len > 0x0007ffffL) || (len == 0))
256 goto bad_image;
257
258
259
260
261 calc_crc = crc32(0, xcv_buf, xcv_len);
262 if (crc != calc_crc) {
263 printf("\nfailed - bad CRC\n");
264 goto done;
265 }
266
267
268 printf("file name : ");
269 for (i=0;i<fn_len;i++) {
270 bufchar = fn_buf[+i];
271 if (bufchar<' ' || bufchar>'~') bufchar = '.';
272 putc(bufchar);
273 }
274
275
276
277
278 ptr = 15;
279
280 j = xcv_buf[ptr];
281 if (j > 32) goto bad_image;
282 ptr = ptr + j + 3;
283
284
285
286
287
288 j = xcv_buf[ptr++] - 1;
289 if (j > 32) goto bad_image;
290 printf("\n target : ");
291 for (i = 0; i < j; i++) {
292 bufchar = (xcv_buf[ptr++]);
293 if (bufchar<' ' || bufchar>'~') bufchar = '.';
294 putc(bufchar);
295 }
296
297
298
299
300 ptr += 3;
301 printf("\n synth time : ");
302 j = (xcv_buf[ptr++] - 1);
303 if (j > 32) goto bad_image;
304 for (i = 0; i < j; i++) {
305 bufchar = (xcv_buf[ptr++]);
306 if (bufchar<' ' || bufchar>'~') bufchar = '.';
307 putc(bufchar);
308 }
309
310 ptr += 3;
311 printf(" - ");
312 j = (xcv_buf[ptr++] - 1);
313 if (j > 32) goto bad_image;
314 for (i = 0; i < j; i++) {
315 bufchar = (xcv_buf[ptr++]);
316 if (bufchar<' ' || bufchar>'~') bufchar = '.';
317 putc(bufchar);
318 }
319
320
321
322
323 printf("\n len & crc : 0x%lx 0x%lx", len, crc);
324
325
326
327
328 retval = fpgaDownload((unsigned char*)xcv_buf, xcv_len,
329 (unsigned short *)0xfd000000L);
330 return retval;
331
332bad_image:
333 printf("\n BAD FPGA image format @ %lx\n", flash_info[1].start[0]);
334 log_warn(ERR_XIMAGE);
335done:
336 return retval;
337}
338
339void test_fpga(unsigned short *daddr)
340{
341 int i;
342 volatile unsigned short *ndest = daddr;
343
344 for (i = 0; i < CONFIG_NUM_FPGAS; i++) {
345#if defined(CONFIG_W7OLMG)
346 ndest[0x7e] = 0x55aa;
347 if (ndest[0x7e] != 0x55aa)
348 log_warn(ERR_XRW1 + i);
349 ndest[0x7e] = 0xaa55;
350 if (ndest[0x7e] != 0xaa55)
351 log_warn(ERR_XRW1 + i);
352 ndest[0x7e] = 0xc318;
353 if (ndest[0x7e] != 0xc318)
354 log_warn(ERR_XRW1 + i);
355
356#elif defined(CONFIG_W7OLMC)
357 ndest[0x800] = 0x55aa;
358 ndest[0x801] = 0xaa55;
359 ndest[0x802] = 0xc318;
360 ndest[0x4800] = 0x55aa;
361 ndest[0x4801] = 0xaa55;
362 ndest[0x4802] = 0xc318;
363 if ((ndest[0x800] != 0x55aa) ||
364 (ndest[0x801] != 0xaa55) ||
365 (ndest[0x802] != 0xc318))
366 log_warn(ERR_XRW1 + (2 * i));
367 if ((ndest[0x4800] != 0x55aa) ||
368 (ndest[0x4801] != 0xaa55) ||
369 (ndest[0x4802] != 0xc318))
370 log_warn(ERR_XRW2 + (2 * i));
371
372#else
373# error "Unknown W7O board configuration"
374#endif
375 }
376
377 printf(" FPGA ready\n");
378 return;
379}
380