Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2002 |
| 4 | * Rich Ireland, Enterasys Networks, rireland@enterasys.com. |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Configuration support for Xilinx Spartan3 devices. Based |
| 9 | * on spartan2.c (Rich Ireland, rireland@enterasys.com). |
| 10 | */ |
Wolfgang Denk | 716c1dc | 2005-09-25 18:49:35 +0200 | [diff] [blame] | 11 | |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 12 | #define LOG_CATEGORY UCLASS_FPGA |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 13 | |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 14 | #include <common.h> /* core U-Boot definitions */ |
| 15 | #include <log.h> |
| 16 | #include <spartan3.h> /* Spartan-II device family */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 17 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 18 | /* Note: The assumption is that we cannot possibly run fast enough to |
| 19 | * overrun the device (the Slave Parallel mode can free run at 50MHz). |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 20 | * If there is a need to operate slower, define CFG_FPGA_DELAY in |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 21 | * the board config file to slow things down. |
| 22 | */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 23 | #ifndef CFG_FPGA_DELAY |
| 24 | #define CFG_FPGA_DELAY() |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 25 | #endif |
| 26 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 27 | #ifndef CFG_SYS_FPGA_WAIT |
| 28 | #define CFG_SYS_FPGA_WAIT CONFIG_SYS_HZ/100 /* 10 ms */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 29 | #endif |
| 30 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 31 | static int spartan3_sp_load(xilinx_desc *desc, const void *buf, size_t bsize); |
| 32 | static int spartan3_sp_dump(xilinx_desc *desc, const void *buf, size_t bsize); |
| 33 | /* static int spartan3_sp_info(xilinx_desc *desc ); */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 34 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 35 | static int spartan3_ss_load(xilinx_desc *desc, const void *buf, size_t bsize); |
| 36 | static int spartan3_ss_dump(xilinx_desc *desc, const void *buf, size_t bsize); |
| 37 | /* static int spartan3_ss_info(xilinx_desc *desc); */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 38 | |
| 39 | /* ------------------------------------------------------------------------- */ |
| 40 | /* Spartan-II Generic Implementation */ |
Michal Simek | 7a78bd2 | 2014-05-02 14:09:30 +0200 | [diff] [blame] | 41 | static int spartan3_load(xilinx_desc *desc, const void *buf, size_t bsize, |
Oleksandr Suvorov | 3e78481 | 2022-07-22 17:16:10 +0300 | [diff] [blame] | 42 | bitstream_type bstype, int flags) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 43 | { |
| 44 | int ret_val = FPGA_FAIL; |
| 45 | |
| 46 | switch (desc->iface) { |
| 47 | case slave_serial: |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 48 | log_debug("Launching Slave Serial Load\n"); |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 49 | ret_val = spartan3_ss_load(desc, buf, bsize); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 50 | break; |
| 51 | |
| 52 | case slave_parallel: |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 53 | log_debug("Launching Slave Parallel Load\n"); |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 54 | ret_val = spartan3_sp_load(desc, buf, bsize); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 55 | break; |
| 56 | |
| 57 | default: |
| 58 | printf ("%s: Unsupported interface type, %d\n", |
| 59 | __FUNCTION__, desc->iface); |
| 60 | } |
| 61 | |
| 62 | return ret_val; |
| 63 | } |
| 64 | |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 65 | static int spartan3_dump(xilinx_desc *desc, const void *buf, size_t bsize) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 66 | { |
| 67 | int ret_val = FPGA_FAIL; |
| 68 | |
| 69 | switch (desc->iface) { |
| 70 | case slave_serial: |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 71 | log_debug("Launching Slave Serial Dump\n"); |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 72 | ret_val = spartan3_ss_dump(desc, buf, bsize); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 73 | break; |
| 74 | |
| 75 | case slave_parallel: |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 76 | log_debug("Launching Slave Parallel Dump\n"); |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 77 | ret_val = spartan3_sp_dump(desc, buf, bsize); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 78 | break; |
| 79 | |
| 80 | default: |
| 81 | printf ("%s: Unsupported interface type, %d\n", |
| 82 | __FUNCTION__, desc->iface); |
| 83 | } |
| 84 | |
| 85 | return ret_val; |
| 86 | } |
| 87 | |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 88 | static int spartan3_info(xilinx_desc *desc) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 89 | { |
| 90 | return FPGA_SUCCESS; |
| 91 | } |
| 92 | |
| 93 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 94 | /* ------------------------------------------------------------------------- */ |
| 95 | /* Spartan-II Slave Parallel Generic Implementation */ |
| 96 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 97 | static int spartan3_sp_load(xilinx_desc *desc, const void *buf, size_t bsize) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 98 | { |
| 99 | int ret_val = FPGA_FAIL; /* assume the worst */ |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 100 | xilinx_spartan3_slave_parallel_fns *fn = desc->iface_fns; |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 101 | |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 102 | log_debug("start with interface functions @ 0x%p\n", fn); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 103 | |
| 104 | if (fn) { |
| 105 | size_t bytecount = 0; |
| 106 | unsigned char *data = (unsigned char *) buf; |
| 107 | int cookie = desc->cookie; /* make a local copy */ |
| 108 | unsigned long ts; /* timestamp */ |
| 109 | |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 110 | log_debug("Function Table:\n" |
| 111 | "ptr:\t0x%p\n" |
| 112 | "struct: 0x%p\n" |
| 113 | "pre: 0x%p\n" |
| 114 | "pgm:\t0x%p\n" |
| 115 | "init:\t0x%p\n" |
| 116 | "err:\t0x%p\n" |
| 117 | "clk:\t0x%p\n" |
| 118 | "cs:\t0x%p\n" |
| 119 | "wr:\t0x%p\n" |
| 120 | "read data:\t0x%p\n" |
| 121 | "write data:\t0x%p\n" |
| 122 | "busy:\t0x%p\n" |
| 123 | "abort:\t0x%p\n" |
| 124 | "post:\t0x%p\n\n", |
| 125 | &fn, fn, fn->pre, fn->pgm, fn->init, fn->err, |
| 126 | fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata, fn->busy, |
| 127 | fn->abort, fn->post); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 128 | |
| 129 | /* |
| 130 | * This code is designed to emulate the "Express Style" |
| 131 | * Continuous Data Loading in Slave Parallel Mode for |
| 132 | * the Spartan-II Family. |
| 133 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 134 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 135 | printf ("Loading FPGA Device %d...\n", cookie); |
| 136 | #endif |
| 137 | /* |
| 138 | * Run the pre configuration function if there is one. |
| 139 | */ |
| 140 | if (*fn->pre) { |
| 141 | (*fn->pre) (cookie); |
| 142 | } |
| 143 | |
| 144 | /* Establish the initial state */ |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 145 | (*fn->pgm) (true, true, cookie); /* Assert the program, commit */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 146 | |
| 147 | /* Get ready for the burn */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 148 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 149 | (*fn->pgm) (false, true, cookie); /* Deassert the program, commit */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 150 | |
| 151 | ts = get_timer (0); /* get current time */ |
| 152 | /* Now wait for INIT and BUSY to go high */ |
| 153 | do { |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 154 | CFG_FPGA_DELAY (); |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 155 | if (get_timer (ts) > CFG_SYS_FPGA_WAIT) { /* check the time */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 156 | puts ("** Timeout waiting for INIT to clear.\n"); |
| 157 | (*fn->abort) (cookie); /* abort the burn */ |
| 158 | return FPGA_FAIL; |
| 159 | } |
| 160 | } while ((*fn->init) (cookie) && (*fn->busy) (cookie)); |
| 161 | |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 162 | (*fn->wr) (true, true, cookie); /* Assert write, commit */ |
| 163 | (*fn->cs) (true, true, cookie); /* Assert chip select, commit */ |
| 164 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 165 | |
| 166 | /* Load the data */ |
| 167 | while (bytecount < bsize) { |
| 168 | /* XXX - do we check for an Ctrl-C press in here ??? */ |
| 169 | /* XXX - Check the error bit? */ |
| 170 | |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 171 | (*fn->wdata) (data[bytecount++], true, cookie); /* write the data */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 172 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 173 | (*fn->clk) (false, true, cookie); /* Deassert the clock pin */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 174 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 175 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 176 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 177 | #ifdef CONFIG_SYS_FPGA_CHECK_BUSY |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 178 | ts = get_timer (0); /* get current time */ |
| 179 | while ((*fn->busy) (cookie)) { |
| 180 | /* XXX - we should have a check in here somewhere to |
| 181 | * make sure we aren't busy forever... */ |
| 182 | |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 183 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 184 | (*fn->clk) (false, true, cookie); /* Deassert the clock pin */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 185 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 186 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 187 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 188 | if (get_timer (ts) > CFG_SYS_FPGA_WAIT) { /* check the time */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 189 | puts ("** Timeout waiting for BUSY to clear.\n"); |
| 190 | (*fn->abort) (cookie); /* abort the burn */ |
| 191 | return FPGA_FAIL; |
| 192 | } |
| 193 | } |
| 194 | #endif |
| 195 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 196 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 197 | if (bytecount % (bsize / 40) == 0) |
| 198 | putc ('.'); /* let them know we are alive */ |
| 199 | #endif |
| 200 | } |
| 201 | |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 202 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 203 | (*fn->cs) (false, true, cookie); /* Deassert the chip select */ |
| 204 | (*fn->wr) (false, true, cookie); /* Deassert the write pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 205 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 206 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 207 | putc ('\n'); /* terminate the dotted line */ |
| 208 | #endif |
| 209 | |
| 210 | /* now check for done signal */ |
| 211 | ts = get_timer (0); /* get current time */ |
| 212 | ret_val = FPGA_SUCCESS; |
| 213 | while ((*fn->done) (cookie) == FPGA_FAIL) { |
| 214 | /* XXX - we should have a check in here somewhere to |
| 215 | * make sure we aren't busy forever... */ |
| 216 | |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 217 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 218 | (*fn->clk) (false, true, cookie); /* Deassert the clock pin */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 219 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 220 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 221 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 222 | if (get_timer (ts) > CFG_SYS_FPGA_WAIT) { /* check the time */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 223 | puts ("** Timeout waiting for DONE to clear.\n"); |
| 224 | (*fn->abort) (cookie); /* abort the burn */ |
| 225 | ret_val = FPGA_FAIL; |
| 226 | break; |
| 227 | } |
| 228 | } |
| 229 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 230 | /* |
| 231 | * Run the post configuration function if there is one. |
| 232 | */ |
Matthias Fuchs | 670cbde | 2009-02-15 22:29:15 +0100 | [diff] [blame] | 233 | if (*fn->post) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 234 | (*fn->post) (cookie); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 235 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 236 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Matthias Fuchs | 670cbde | 2009-02-15 22:29:15 +0100 | [diff] [blame] | 237 | if (ret_val == FPGA_SUCCESS) |
| 238 | puts ("Done.\n"); |
| 239 | else |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 240 | puts ("Fail.\n"); |
| 241 | #endif |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 242 | |
| 243 | } else { |
| 244 | printf ("%s: NULL Interface function table!\n", __FUNCTION__); |
| 245 | } |
| 246 | |
| 247 | return ret_val; |
| 248 | } |
| 249 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 250 | static int spartan3_sp_dump(xilinx_desc *desc, const void *buf, size_t bsize) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 251 | { |
| 252 | int ret_val = FPGA_FAIL; /* assume the worst */ |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 253 | xilinx_spartan3_slave_parallel_fns *fn = desc->iface_fns; |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 254 | |
| 255 | if (fn) { |
| 256 | unsigned char *data = (unsigned char *) buf; |
| 257 | size_t bytecount = 0; |
| 258 | int cookie = desc->cookie; /* make a local copy */ |
| 259 | |
| 260 | printf ("Starting Dump of FPGA Device %d...\n", cookie); |
| 261 | |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 262 | (*fn->cs) (true, true, cookie); /* Assert chip select, commit */ |
| 263 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 264 | |
| 265 | /* dump the data */ |
| 266 | while (bytecount < bsize) { |
| 267 | /* XXX - do we check for an Ctrl-C press in here ??? */ |
| 268 | |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 269 | (*fn->clk) (false, true, cookie); /* Deassert the clock pin */ |
| 270 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 271 | (*fn->rdata) (&(data[bytecount++]), cookie); /* read the data */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 272 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 273 | if (bytecount % (bsize / 40) == 0) |
| 274 | putc ('.'); /* let them know we are alive */ |
| 275 | #endif |
| 276 | } |
| 277 | |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 278 | (*fn->cs) (false, false, cookie); /* Deassert the chip select */ |
| 279 | (*fn->clk) (false, true, cookie); /* Deassert the clock pin */ |
| 280 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 281 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 282 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 283 | putc ('\n'); /* terminate the dotted line */ |
| 284 | #endif |
| 285 | puts ("Done.\n"); |
| 286 | |
| 287 | /* XXX - checksum the data? */ |
| 288 | } else { |
| 289 | printf ("%s: NULL Interface function table!\n", __FUNCTION__); |
| 290 | } |
| 291 | |
| 292 | return ret_val; |
| 293 | } |
| 294 | |
| 295 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 296 | /* ------------------------------------------------------------------------- */ |
| 297 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 298 | static int spartan3_ss_load(xilinx_desc *desc, const void *buf, size_t bsize) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 299 | { |
| 300 | int ret_val = FPGA_FAIL; /* assume the worst */ |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 301 | xilinx_spartan3_slave_serial_fns *fn = desc->iface_fns; |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 302 | int i; |
Matthias Fuchs | 437fc73 | 2007-12-27 17:13:05 +0100 | [diff] [blame] | 303 | unsigned char val; |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 304 | |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 305 | log_debug("start with interface functions @ 0x%p\n", fn); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 306 | |
| 307 | if (fn) { |
| 308 | size_t bytecount = 0; |
| 309 | unsigned char *data = (unsigned char *) buf; |
| 310 | int cookie = desc->cookie; /* make a local copy */ |
| 311 | unsigned long ts; /* timestamp */ |
| 312 | |
Alexander Dahl | 1fda847 | 2022-10-07 14:20:02 +0200 | [diff] [blame] | 313 | log_debug("Function Table:\n" |
| 314 | "ptr:\t0x%p\n" |
| 315 | "struct: 0x%p\n" |
| 316 | "pgm:\t0x%p\n" |
| 317 | "init:\t0x%p\n" |
| 318 | "clk:\t0x%p\n" |
| 319 | "wr:\t0x%p\n" |
| 320 | "done:\t0x%p\n\n", |
| 321 | &fn, fn, fn->pgm, fn->init, |
| 322 | fn->clk, fn->wr, fn->done); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 323 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 324 | printf ("Loading FPGA Device %d...\n", cookie); |
| 325 | #endif |
| 326 | |
| 327 | /* |
| 328 | * Run the pre configuration function if there is one. |
| 329 | */ |
| 330 | if (*fn->pre) { |
| 331 | (*fn->pre) (cookie); |
| 332 | } |
| 333 | |
| 334 | /* Establish the initial state */ |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 335 | (*fn->pgm) (true, true, cookie); /* Assert the program, commit */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 336 | |
| 337 | /* Wait for INIT state (init low) */ |
| 338 | ts = get_timer (0); /* get current time */ |
| 339 | do { |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 340 | CFG_FPGA_DELAY (); |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 341 | if (get_timer (ts) > CFG_SYS_FPGA_WAIT) { /* check the time */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 342 | puts ("** Timeout waiting for INIT to start.\n"); |
Wolfgang Wegner | b0bc8b7 | 2010-04-23 11:08:05 +0200 | [diff] [blame] | 343 | if (*fn->abort) |
| 344 | (*fn->abort) (cookie); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 345 | return FPGA_FAIL; |
| 346 | } |
| 347 | } while (!(*fn->init) (cookie)); |
| 348 | |
| 349 | /* Get ready for the burn */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 350 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 351 | (*fn->pgm) (false, true, cookie); /* Deassert the program, commit */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 352 | |
| 353 | ts = get_timer (0); /* get current time */ |
| 354 | /* Now wait for INIT to go high */ |
| 355 | do { |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 356 | CFG_FPGA_DELAY (); |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 357 | if (get_timer (ts) > CFG_SYS_FPGA_WAIT) { /* check the time */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 358 | puts ("** Timeout waiting for INIT to clear.\n"); |
Wolfgang Wegner | b0bc8b7 | 2010-04-23 11:08:05 +0200 | [diff] [blame] | 359 | if (*fn->abort) |
| 360 | (*fn->abort) (cookie); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 361 | return FPGA_FAIL; |
| 362 | } |
| 363 | } while ((*fn->init) (cookie)); |
| 364 | |
| 365 | /* Load the data */ |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 366 | if(*fn->bwr) |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 367 | (*fn->bwr) (data, bsize, true, cookie); |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 368 | else { |
| 369 | while (bytecount < bsize) { |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 370 | |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 371 | /* Xilinx detects an error if INIT goes low (active) |
| 372 | while DONE is low (inactive) */ |
| 373 | if ((*fn->done) (cookie) == 0 && (*fn->init) (cookie)) { |
| 374 | puts ("** CRC error during FPGA load.\n"); |
Wolfgang Wegner | b0bc8b7 | 2010-04-23 11:08:05 +0200 | [diff] [blame] | 375 | if (*fn->abort) |
| 376 | (*fn->abort) (cookie); |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 377 | return (FPGA_FAIL); |
| 378 | } |
| 379 | val = data [bytecount ++]; |
| 380 | i = 8; |
| 381 | do { |
| 382 | /* Deassert the clock */ |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 383 | (*fn->clk) (false, true, cookie); |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 384 | CFG_FPGA_DELAY (); |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 385 | /* Write data */ |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 386 | (*fn->wr) ((val & 0x80), true, cookie); |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 387 | CFG_FPGA_DELAY (); |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 388 | /* Assert the clock */ |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 389 | (*fn->clk) (true, true, cookie); |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 390 | CFG_FPGA_DELAY (); |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 391 | val <<= 1; |
| 392 | i --; |
| 393 | } while (i > 0); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 394 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 395 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 396 | if (bytecount % (bsize / 40) == 0) |
| 397 | putc ('.'); /* let them know we are alive */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 398 | #endif |
Wolfgang Wegner | 8908334 | 2009-10-30 16:55:02 +0100 | [diff] [blame] | 399 | } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 400 | } |
| 401 | |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 402 | CFG_FPGA_DELAY (); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 403 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 404 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 405 | putc ('\n'); /* terminate the dotted line */ |
| 406 | #endif |
| 407 | |
| 408 | /* now check for done signal */ |
| 409 | ts = get_timer (0); /* get current time */ |
| 410 | ret_val = FPGA_SUCCESS; |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 411 | (*fn->wr) (true, true, cookie); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 412 | |
| 413 | while (! (*fn->done) (cookie)) { |
| 414 | /* XXX - we should have a check in here somewhere to |
| 415 | * make sure we aren't busy forever... */ |
| 416 | |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 417 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 418 | (*fn->clk) (false, true, cookie); /* Deassert the clock pin */ |
Tom Rini | 72fc264 | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 419 | CFG_FPGA_DELAY (); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 420 | (*fn->clk) (true, true, cookie); /* Assert the clock pin */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 421 | |
| 422 | putc ('*'); |
| 423 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 424 | if (get_timer (ts) > CFG_SYS_FPGA_WAIT) { /* check the time */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 425 | puts ("** Timeout waiting for DONE to clear.\n"); |
| 426 | ret_val = FPGA_FAIL; |
| 427 | break; |
| 428 | } |
| 429 | } |
| 430 | putc ('\n'); /* terminate the dotted line */ |
| 431 | |
Matthias Fuchs | 21d39d5 | 2007-12-27 17:12:43 +0100 | [diff] [blame] | 432 | /* |
| 433 | * Run the post configuration function if there is one. |
| 434 | */ |
Matthias Fuchs | 670cbde | 2009-02-15 22:29:15 +0100 | [diff] [blame] | 435 | if (*fn->post) |
Matthias Fuchs | 21d39d5 | 2007-12-27 17:12:43 +0100 | [diff] [blame] | 436 | (*fn->post) (cookie); |
Matthias Fuchs | 21d39d5 | 2007-12-27 17:12:43 +0100 | [diff] [blame] | 437 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 438 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Matthias Fuchs | 670cbde | 2009-02-15 22:29:15 +0100 | [diff] [blame] | 439 | if (ret_val == FPGA_SUCCESS) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 440 | puts ("Done.\n"); |
Matthias Fuchs | 670cbde | 2009-02-15 22:29:15 +0100 | [diff] [blame] | 441 | else |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 442 | puts ("Fail.\n"); |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 443 | #endif |
| 444 | |
| 445 | } else { |
| 446 | printf ("%s: NULL Interface function table!\n", __FUNCTION__); |
| 447 | } |
| 448 | |
| 449 | return ret_val; |
| 450 | } |
| 451 | |
Michal Simek | f8c1be9 | 2014-03-13 12:49:21 +0100 | [diff] [blame] | 452 | static int spartan3_ss_dump(xilinx_desc *desc, const void *buf, size_t bsize) |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 453 | { |
| 454 | /* Readback is only available through the Slave Parallel and */ |
| 455 | /* boundary-scan interfaces. */ |
| 456 | printf ("%s: Slave Serial Dumping is unavailable\n", |
| 457 | __FUNCTION__); |
| 458 | return FPGA_FAIL; |
| 459 | } |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 460 | |
| 461 | struct xilinx_fpga_op spartan3_op = { |
| 462 | .load = spartan3_load, |
| 463 | .dump = spartan3_dump, |
| 464 | .info = spartan3_info, |
| 465 | }; |