3 * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
26 * Configuration support for Xilinx Spartan3 devices. Based
27 * on spartan2.c (Rich Ireland, rireland@enterasys.com).
30 #include <common.h> /* core U-Boot definitions */
31 #include <spartan3.h> /* Spartan-II device family */
33 /* Define FPGA_DEBUG to get debug printf's */
35 #define PRINTF(fmt,args...) printf (fmt ,##args)
37 #define PRINTF(fmt,args...)
40 #undef CONFIG_SYS_FPGA_CHECK_BUSY
41 #undef CONFIG_SYS_FPGA_PROG_FEEDBACK
43 /* Note: The assumption is that we cannot possibly run fast enough to
44 * overrun the device (the Slave Parallel mode can free run at 50MHz).
45 * If there is a need to operate slower, define CONFIG_FPGA_DELAY in
46 * the board config file to slow things down.
48 #ifndef CONFIG_FPGA_DELAY
49 #define CONFIG_FPGA_DELAY()
52 #ifndef CONFIG_SYS_FPGA_WAIT
53 #define CONFIG_SYS_FPGA_WAIT CONFIG_SYS_HZ/100 /* 10 ms */
56 static int Spartan3_sp_load( Xilinx_desc *desc, void *buf, size_t bsize );
57 static int Spartan3_sp_dump( Xilinx_desc *desc, void *buf, size_t bsize );
58 /* static int Spartan3_sp_info( Xilinx_desc *desc ); */
59 static int Spartan3_sp_reloc( Xilinx_desc *desc, ulong reloc_offset );
61 static int Spartan3_ss_load( Xilinx_desc *desc, void *buf, size_t bsize );
62 static int Spartan3_ss_dump( Xilinx_desc *desc, void *buf, size_t bsize );
63 /* static int Spartan3_ss_info( Xilinx_desc *desc ); */
64 static int Spartan3_ss_reloc( Xilinx_desc *desc, ulong reloc_offset );
66 /* ------------------------------------------------------------------------- */
67 /* Spartan-II Generic Implementation */
68 int Spartan3_load (Xilinx_desc * desc, void *buf, size_t bsize)
70 int ret_val = FPGA_FAIL;
72 switch (desc->iface) {
74 PRINTF ("%s: Launching Slave Serial Load\n", __FUNCTION__);
75 ret_val = Spartan3_ss_load (desc, buf, bsize);
79 PRINTF ("%s: Launching Slave Parallel Load\n", __FUNCTION__);
80 ret_val = Spartan3_sp_load (desc, buf, bsize);
84 printf ("%s: Unsupported interface type, %d\n",
85 __FUNCTION__, desc->iface);
91 int Spartan3_dump (Xilinx_desc * desc, void *buf, size_t bsize)
93 int ret_val = FPGA_FAIL;
95 switch (desc->iface) {
97 PRINTF ("%s: Launching Slave Serial Dump\n", __FUNCTION__);
98 ret_val = Spartan3_ss_dump (desc, buf, bsize);
102 PRINTF ("%s: Launching Slave Parallel Dump\n", __FUNCTION__);
103 ret_val = Spartan3_sp_dump (desc, buf, bsize);
107 printf ("%s: Unsupported interface type, %d\n",
108 __FUNCTION__, desc->iface);
114 int Spartan3_info( Xilinx_desc *desc )
120 int Spartan3_reloc (Xilinx_desc * desc, ulong reloc_offset)
122 int ret_val = FPGA_FAIL; /* assume a failure */
124 if (desc->family != Xilinx_Spartan3) {
125 printf ("%s: Unsupported family type, %d\n",
126 __FUNCTION__, desc->family);
129 switch (desc->iface) {
131 ret_val = Spartan3_ss_reloc (desc, reloc_offset);
135 ret_val = Spartan3_sp_reloc (desc, reloc_offset);
139 printf ("%s: Unsupported interface type, %d\n",
140 __FUNCTION__, desc->iface);
147 /* ------------------------------------------------------------------------- */
148 /* Spartan-II Slave Parallel Generic Implementation */
150 static int Spartan3_sp_load (Xilinx_desc * desc, void *buf, size_t bsize)
152 int ret_val = FPGA_FAIL; /* assume the worst */
153 Xilinx_Spartan3_Slave_Parallel_fns *fn = desc->iface_fns;
155 PRINTF ("%s: start with interface functions @ 0x%p\n",
159 size_t bytecount = 0;
160 unsigned char *data = (unsigned char *) buf;
161 int cookie = desc->cookie; /* make a local copy */
162 unsigned long ts; /* timestamp */
164 PRINTF ("%s: Function Table:\n"
175 "write data:\t0x%p\n"
179 __FUNCTION__, &fn, fn, fn->pre, fn->pgm, fn->init, fn->err,
180 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy,
181 fn->abort, fn->post);
184 * This code is designed to emulate the "Express Style"
185 * Continuous Data Loading in Slave Parallel Mode for
186 * the Spartan-II Family.
188 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
189 printf ("Loading FPGA Device %d...\n", cookie);
192 * Run the pre configuration function if there is one.
198 /* Establish the initial state */
199 (*fn->pgm) (TRUE, TRUE, cookie); /* Assert the program, commit */
201 /* Get ready for the burn */
202 CONFIG_FPGA_DELAY ();
203 (*fn->pgm) (FALSE, TRUE, cookie); /* Deassert the program, commit */
205 ts = get_timer (0); /* get current time */
206 /* Now wait for INIT and BUSY to go high */
208 CONFIG_FPGA_DELAY ();
209 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
210 puts ("** Timeout waiting for INIT to clear.\n");
211 (*fn->abort) (cookie); /* abort the burn */
214 } while ((*fn->init) (cookie) && (*fn->busy) (cookie));
216 (*fn->wr) (TRUE, TRUE, cookie); /* Assert write, commit */
217 (*fn->cs) (TRUE, TRUE, cookie); /* Assert chip select, commit */
218 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
221 while (bytecount < bsize) {
222 /* XXX - do we check for an Ctrl-C press in here ??? */
223 /* XXX - Check the error bit? */
225 (*fn->wdata) (data[bytecount++], TRUE, cookie); /* write the data */
226 CONFIG_FPGA_DELAY ();
227 (*fn->clk) (FALSE, TRUE, cookie); /* Deassert the clock pin */
228 CONFIG_FPGA_DELAY ();
229 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
231 #ifdef CONFIG_SYS_FPGA_CHECK_BUSY
232 ts = get_timer (0); /* get current time */
233 while ((*fn->busy) (cookie)) {
234 /* XXX - we should have a check in here somewhere to
235 * make sure we aren't busy forever... */
237 CONFIG_FPGA_DELAY ();
238 (*fn->clk) (FALSE, TRUE, cookie); /* Deassert the clock pin */
239 CONFIG_FPGA_DELAY ();
240 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
242 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
243 puts ("** Timeout waiting for BUSY to clear.\n");
244 (*fn->abort) (cookie); /* abort the burn */
250 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
251 if (bytecount % (bsize / 40) == 0)
252 putc ('.'); /* let them know we are alive */
256 CONFIG_FPGA_DELAY ();
257 (*fn->cs) (FALSE, TRUE, cookie); /* Deassert the chip select */
258 (*fn->wr) (FALSE, TRUE, cookie); /* Deassert the write pin */
260 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
261 putc ('\n'); /* terminate the dotted line */
264 /* now check for done signal */
265 ts = get_timer (0); /* get current time */
266 ret_val = FPGA_SUCCESS;
267 while ((*fn->done) (cookie) == FPGA_FAIL) {
268 /* XXX - we should have a check in here somewhere to
269 * make sure we aren't busy forever... */
271 CONFIG_FPGA_DELAY ();
272 (*fn->clk) (FALSE, TRUE, cookie); /* Deassert the clock pin */
273 CONFIG_FPGA_DELAY ();
274 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
276 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
277 puts ("** Timeout waiting for DONE to clear.\n");
278 (*fn->abort) (cookie); /* abort the burn */
285 * Run the post configuration function if there is one.
288 (*fn->post) (cookie);
290 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
291 if (ret_val == FPGA_SUCCESS)
298 printf ("%s: NULL Interface function table!\n", __FUNCTION__);
304 static int Spartan3_sp_dump (Xilinx_desc * desc, void *buf, size_t bsize)
306 int ret_val = FPGA_FAIL; /* assume the worst */
307 Xilinx_Spartan3_Slave_Parallel_fns *fn = desc->iface_fns;
310 unsigned char *data = (unsigned char *) buf;
311 size_t bytecount = 0;
312 int cookie = desc->cookie; /* make a local copy */
314 printf ("Starting Dump of FPGA Device %d...\n", cookie);
316 (*fn->cs) (TRUE, TRUE, cookie); /* Assert chip select, commit */
317 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
320 while (bytecount < bsize) {
321 /* XXX - do we check for an Ctrl-C press in here ??? */
323 (*fn->clk) (FALSE, TRUE, cookie); /* Deassert the clock pin */
324 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
325 (*fn->rdata) (&(data[bytecount++]), cookie); /* read the data */
326 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
327 if (bytecount % (bsize / 40) == 0)
328 putc ('.'); /* let them know we are alive */
332 (*fn->cs) (FALSE, FALSE, cookie); /* Deassert the chip select */
333 (*fn->clk) (FALSE, TRUE, cookie); /* Deassert the clock pin */
334 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
336 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
337 putc ('\n'); /* terminate the dotted line */
341 /* XXX - checksum the data? */
343 printf ("%s: NULL Interface function table!\n", __FUNCTION__);
350 static int Spartan3_sp_reloc (Xilinx_desc * desc, ulong reloc_offset)
352 int ret_val = FPGA_FAIL; /* assume the worst */
353 Xilinx_Spartan3_Slave_Parallel_fns *fn_r, *fn =
354 (Xilinx_Spartan3_Slave_Parallel_fns *) (desc->iface_fns);
359 /* Get the relocated table address */
360 addr = (ulong) fn + reloc_offset;
361 fn_r = (Xilinx_Spartan3_Slave_Parallel_fns *) addr;
363 if (!fn_r->relocated) {
365 if (memcmp (fn_r, fn,
366 sizeof (Xilinx_Spartan3_Slave_Parallel_fns))
368 /* good copy of the table, fix the descriptor pointer */
369 desc->iface_fns = fn_r;
371 PRINTF ("%s: Invalid function table at 0x%p\n",
376 PRINTF ("%s: Relocating descriptor at 0x%p\n", __FUNCTION__,
379 addr = (ulong) (fn->pre) + reloc_offset;
380 fn_r->pre = (Xilinx_pre_fn) addr;
382 addr = (ulong) (fn->pgm) + reloc_offset;
383 fn_r->pgm = (Xilinx_pgm_fn) addr;
385 addr = (ulong) (fn->init) + reloc_offset;
386 fn_r->init = (Xilinx_init_fn) addr;
388 addr = (ulong) (fn->done) + reloc_offset;
389 fn_r->done = (Xilinx_done_fn) addr;
391 addr = (ulong) (fn->clk) + reloc_offset;
392 fn_r->clk = (Xilinx_clk_fn) addr;
394 addr = (ulong) (fn->err) + reloc_offset;
395 fn_r->err = (Xilinx_err_fn) addr;
397 addr = (ulong) (fn->cs) + reloc_offset;
398 fn_r->cs = (Xilinx_cs_fn) addr;
400 addr = (ulong) (fn->wr) + reloc_offset;
401 fn_r->wr = (Xilinx_wr_fn) addr;
403 addr = (ulong) (fn->rdata) + reloc_offset;
404 fn_r->rdata = (Xilinx_rdata_fn) addr;
406 addr = (ulong) (fn->wdata) + reloc_offset;
407 fn_r->wdata = (Xilinx_wdata_fn) addr;
409 addr = (ulong) (fn->busy) + reloc_offset;
410 fn_r->busy = (Xilinx_busy_fn) addr;
412 addr = (ulong) (fn->abort) + reloc_offset;
413 fn_r->abort = (Xilinx_abort_fn) addr;
415 addr = (ulong) (fn->post) + reloc_offset;
416 fn_r->post = (Xilinx_post_fn) addr;
418 fn_r->relocated = TRUE;
421 /* this table has already been moved */
422 /* XXX - should check to see if the descriptor is correct */
423 desc->iface_fns = fn_r;
426 ret_val = FPGA_SUCCESS;
428 printf ("%s: NULL Interface function table!\n", __FUNCTION__);
435 /* ------------------------------------------------------------------------- */
437 static int Spartan3_ss_load (Xilinx_desc * desc, void *buf, size_t bsize)
439 int ret_val = FPGA_FAIL; /* assume the worst */
440 Xilinx_Spartan3_Slave_Serial_fns *fn = desc->iface_fns;
444 PRINTF ("%s: start with interface functions @ 0x%p\n",
448 size_t bytecount = 0;
449 unsigned char *data = (unsigned char *) buf;
450 int cookie = desc->cookie; /* make a local copy */
451 unsigned long ts; /* timestamp */
453 PRINTF ("%s: Function Table:\n"
461 __FUNCTION__, &fn, fn, fn->pgm, fn->init,
462 fn->clk, fn->wr, fn->done);
463 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
464 printf ("Loading FPGA Device %d...\n", cookie);
468 * Run the pre configuration function if there is one.
474 /* Establish the initial state */
475 (*fn->pgm) (TRUE, TRUE, cookie); /* Assert the program, commit */
477 /* Wait for INIT state (init low) */
478 ts = get_timer (0); /* get current time */
480 CONFIG_FPGA_DELAY ();
481 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
482 puts ("** Timeout waiting for INIT to start.\n");
485 } while (!(*fn->init) (cookie));
487 /* Get ready for the burn */
488 CONFIG_FPGA_DELAY ();
489 (*fn->pgm) (FALSE, TRUE, cookie); /* Deassert the program, commit */
491 ts = get_timer (0); /* get current time */
492 /* Now wait for INIT to go high */
494 CONFIG_FPGA_DELAY ();
495 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
496 puts ("** Timeout waiting for INIT to clear.\n");
499 } while ((*fn->init) (cookie));
502 while (bytecount < bsize) {
504 /* Xilinx detects an error if INIT goes low (active)
505 while DONE is low (inactive) */
506 if ((*fn->done) (cookie) == 0 && (*fn->init) (cookie)) {
507 puts ("** CRC error during FPGA load.\n");
510 val = data [bytecount ++];
513 /* Deassert the clock */
514 (*fn->clk) (FALSE, TRUE, cookie);
515 CONFIG_FPGA_DELAY ();
517 (*fn->wr) ((val & 0x80), TRUE, cookie);
518 CONFIG_FPGA_DELAY ();
519 /* Assert the clock */
520 (*fn->clk) (TRUE, TRUE, cookie);
521 CONFIG_FPGA_DELAY ();
526 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
527 if (bytecount % (bsize / 40) == 0)
528 putc ('.'); /* let them know we are alive */
532 CONFIG_FPGA_DELAY ();
534 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
535 putc ('\n'); /* terminate the dotted line */
538 /* now check for done signal */
539 ts = get_timer (0); /* get current time */
540 ret_val = FPGA_SUCCESS;
541 (*fn->wr) (TRUE, TRUE, cookie);
543 while (! (*fn->done) (cookie)) {
544 /* XXX - we should have a check in here somewhere to
545 * make sure we aren't busy forever... */
547 CONFIG_FPGA_DELAY ();
548 (*fn->clk) (FALSE, TRUE, cookie); /* Deassert the clock pin */
549 CONFIG_FPGA_DELAY ();
550 (*fn->clk) (TRUE, TRUE, cookie); /* Assert the clock pin */
554 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
555 puts ("** Timeout waiting for DONE to clear.\n");
560 putc ('\n'); /* terminate the dotted line */
563 * Run the post configuration function if there is one.
566 (*fn->post) (cookie);
568 #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
569 if (ret_val == FPGA_SUCCESS)
576 printf ("%s: NULL Interface function table!\n", __FUNCTION__);
582 static int Spartan3_ss_dump (Xilinx_desc * desc, void *buf, size_t bsize)
584 /* Readback is only available through the Slave Parallel and */
585 /* boundary-scan interfaces. */
586 printf ("%s: Slave Serial Dumping is unavailable\n",
591 static int Spartan3_ss_reloc (Xilinx_desc * desc, ulong reloc_offset)
593 int ret_val = FPGA_FAIL; /* assume the worst */
594 Xilinx_Spartan3_Slave_Serial_fns *fn_r, *fn =
595 (Xilinx_Spartan3_Slave_Serial_fns *) (desc->iface_fns);
600 /* Get the relocated table address */
601 addr = (ulong) fn + reloc_offset;
602 fn_r = (Xilinx_Spartan3_Slave_Serial_fns *) addr;
604 if (!fn_r->relocated) {
606 if (memcmp (fn_r, fn,
607 sizeof (Xilinx_Spartan3_Slave_Serial_fns))
609 /* good copy of the table, fix the descriptor pointer */
610 desc->iface_fns = fn_r;
612 PRINTF ("%s: Invalid function table at 0x%p\n",
617 PRINTF ("%s: Relocating descriptor at 0x%p\n", __FUNCTION__,
621 addr = (ulong) (fn->pre) + reloc_offset;
622 fn_r->pre = (Xilinx_pre_fn) addr;
625 addr = (ulong) (fn->pgm) + reloc_offset;
626 fn_r->pgm = (Xilinx_pgm_fn) addr;
628 addr = (ulong) (fn->init) + reloc_offset;
629 fn_r->init = (Xilinx_init_fn) addr;
631 addr = (ulong) (fn->done) + reloc_offset;
632 fn_r->done = (Xilinx_done_fn) addr;
634 addr = (ulong) (fn->clk) + reloc_offset;
635 fn_r->clk = (Xilinx_clk_fn) addr;
637 addr = (ulong) (fn->wr) + reloc_offset;
638 fn_r->wr = (Xilinx_wr_fn) addr;
641 addr = (ulong) (fn->post) + reloc_offset;
642 fn_r->post = (Xilinx_post_fn) addr;
645 fn_r->relocated = TRUE;
648 /* this table has already been moved */
649 /* XXX - should check to see if the descriptor is correct */
650 desc->iface_fns = fn_r;
653 ret_val = FPGA_SUCCESS;
655 printf ("%s: NULL Interface function table!\n", __FUNCTION__);