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