blob: b01a31f08004fbca3df3e3d288868d80469f653d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk5d3207d2002-08-21 22:08:56 +00002/*
3 * (C) Copyright 2002
4 * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
5 * Keith Outwater, keith_outwater@mvis.com
wdenk5d3207d2002-08-21 22:08:56 +00006 */
7
8/*
9 * Configuration support for Xilinx Virtex2 devices. Based
10 * on spartan2.c (Rich Ireland, rireland@enterasys.com).
11 */
12
13#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070014#include <console.h>
wdenk5d3207d2002-08-21 22:08:56 +000015#include <virtex2.h>
16
Wolfgang Denk9a9200b2005-09-24 23:41:00 +020017#if 0
18#define FPGA_DEBUG
Wolfgang Denk265817c2005-09-25 00:53:22 +020019#endif
Wolfgang Denk9a9200b2005-09-24 23:41:00 +020020
wdenk5d3207d2002-08-21 22:08:56 +000021#ifdef FPGA_DEBUG
Robert Hancockfa57af02019-06-18 09:47:12 -060022#define PRINTF(fmt, args...) printf(fmt, ##args)
wdenk5d3207d2002-08-21 22:08:56 +000023#else
Robert Hancockfa57af02019-06-18 09:47:12 -060024#define PRINTF(fmt, args...)
wdenk5d3207d2002-08-21 22:08:56 +000025#endif
26
27/*
28 * If the SelectMap interface can be overrun by the processor, define
Robert Hancockfa57af02019-06-18 09:47:12 -060029 * CONFIG_SYS_FPGA_CHECK_BUSY and/or CONFIG_FPGA_DELAY in the board
30 * configuration file and add board-specific support for checking BUSY status.
31 * By default, assume that the SelectMap interface cannot be overrun.
wdenk5d3207d2002-08-21 22:08:56 +000032 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020033#ifndef CONFIG_SYS_FPGA_CHECK_BUSY
34#undef CONFIG_SYS_FPGA_CHECK_BUSY
wdenk5d3207d2002-08-21 22:08:56 +000035#endif
36
37#ifndef CONFIG_FPGA_DELAY
38#define CONFIG_FPGA_DELAY()
39#endif
40
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041#ifndef CONFIG_SYS_FPGA_PROG_FEEDBACK
42#define CONFIG_SYS_FPGA_PROG_FEEDBACK
wdenk5d3207d2002-08-21 22:08:56 +000043#endif
44
45/*
46 * Don't allow config cycle to be interrupted
47 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#ifndef CONFIG_SYS_FPGA_CHECK_CTRLC
49#undef CONFIG_SYS_FPGA_CHECK_CTRLC
wdenk5d3207d2002-08-21 22:08:56 +000050#endif
51
52/*
53 * Check for errors during configuration by default
54 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055#ifndef CONFIG_SYS_FPGA_CHECK_ERROR
56#define CONFIG_SYS_FPGA_CHECK_ERROR
wdenk5d3207d2002-08-21 22:08:56 +000057#endif
58
59/*
60 * The default timeout in mS for INIT_B to deassert after PROG_B has
61 * been deasserted. Per the latest Virtex II Handbook (page 347), the
62 * max time from PORG_B deassertion to INIT_B deassertion is 4uS per
63 * data frame for the XC2V8000. The XC2V8000 has 2860 data frames
64 * which yields 11.44 mS. So let's make it bigger in order to handle
65 * an XC2V1000, if anyone can ever get ahold of one.
66 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067#ifndef CONFIG_SYS_FPGA_WAIT_INIT
Robert Hancockfa57af02019-06-18 09:47:12 -060068#define CONFIG_SYS_FPGA_WAIT_INIT CONFIG_SYS_HZ / 2 /* 500 ms */
wdenk5d3207d2002-08-21 22:08:56 +000069#endif
70
71/*
72 * The default timeout for waiting for BUSY to deassert during configuration.
73 * This is normally not necessary since for most reasonable configuration
74 * clock frequencies (i.e. 66 MHz or less), BUSY monitoring is unnecessary.
75 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020076#ifndef CONFIG_SYS_FPGA_WAIT_BUSY
Robert Hancockfa57af02019-06-18 09:47:12 -060077#define CONFIG_SYS_FPGA_WAIT_BUSY CONFIG_SYS_HZ / 200 /* 5 ms*/
wdenk5d3207d2002-08-21 22:08:56 +000078#endif
79
80/* Default timeout for waiting for FPGA to enter operational mode after
81 * configuration data has been written.
82 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020083#ifndef CONFIG_SYS_FPGA_WAIT_CONFIG
Robert Hancockfa57af02019-06-18 09:47:12 -060084#define CONFIG_SYS_FPGA_WAIT_CONFIG CONFIG_SYS_HZ / 5 /* 200 ms */
wdenk5d3207d2002-08-21 22:08:56 +000085#endif
86
Michal Simekf8c1be92014-03-13 12:49:21 +010087static int virtex2_ssm_load(xilinx_desc *desc, const void *buf, size_t bsize);
88static int virtex2_ssm_dump(xilinx_desc *desc, const void *buf, size_t bsize);
wdenk5d3207d2002-08-21 22:08:56 +000089
Michal Simekf8c1be92014-03-13 12:49:21 +010090static int virtex2_ss_load(xilinx_desc *desc, const void *buf, size_t bsize);
91static int virtex2_ss_dump(xilinx_desc *desc, const void *buf, size_t bsize);
wdenk5d3207d2002-08-21 22:08:56 +000092
Michal Simek7a78bd22014-05-02 14:09:30 +020093static int virtex2_load(xilinx_desc *desc, const void *buf, size_t bsize,
94 bitstream_type bstype)
wdenk5d3207d2002-08-21 22:08:56 +000095{
96 int ret_val = FPGA_FAIL;
97
98 switch (desc->iface) {
99 case slave_serial:
Robert Hancockfa57af02019-06-18 09:47:12 -0600100 PRINTF("%s: Launching Slave Serial Load\n", __func__);
Michal Simekd9071ce2014-03-13 11:33:36 +0100101 ret_val = virtex2_ss_load(desc, buf, bsize);
wdenk5d3207d2002-08-21 22:08:56 +0000102 break;
103
104 case slave_selectmap:
Robert Hancockfa57af02019-06-18 09:47:12 -0600105 PRINTF("%s: Launching Slave Parallel Load\n", __func__);
Michal Simekd9071ce2014-03-13 11:33:36 +0100106 ret_val = virtex2_ssm_load(desc, buf, bsize);
wdenk5d3207d2002-08-21 22:08:56 +0000107 break;
108
109 default:
Robert Hancockfa57af02019-06-18 09:47:12 -0600110 printf("%s: Unsupported interface type, %d\n",
111 __func__, desc->iface);
wdenk5d3207d2002-08-21 22:08:56 +0000112 }
113 return ret_val;
114}
115
Michal Simek14cfc4f2014-03-13 13:07:57 +0100116static int virtex2_dump(xilinx_desc *desc, const void *buf, size_t bsize)
wdenk5d3207d2002-08-21 22:08:56 +0000117{
118 int ret_val = FPGA_FAIL;
119
120 switch (desc->iface) {
121 case slave_serial:
Robert Hancockfa57af02019-06-18 09:47:12 -0600122 PRINTF("%s: Launching Slave Serial Dump\n", __func__);
Michal Simekd9071ce2014-03-13 11:33:36 +0100123 ret_val = virtex2_ss_dump(desc, buf, bsize);
wdenk5d3207d2002-08-21 22:08:56 +0000124 break;
125
126 case slave_parallel:
Robert Hancockfa57af02019-06-18 09:47:12 -0600127 PRINTF("%s: Launching Slave Parallel Dump\n", __func__);
Michal Simekd9071ce2014-03-13 11:33:36 +0100128 ret_val = virtex2_ssm_dump(desc, buf, bsize);
wdenk5d3207d2002-08-21 22:08:56 +0000129 break;
130
131 default:
Robert Hancockfa57af02019-06-18 09:47:12 -0600132 printf("%s: Unsupported interface type, %d\n",
133 __func__, desc->iface);
wdenk5d3207d2002-08-21 22:08:56 +0000134 }
135 return ret_val;
136}
137
Michal Simek14cfc4f2014-03-13 13:07:57 +0100138static int virtex2_info(xilinx_desc *desc)
wdenk5d3207d2002-08-21 22:08:56 +0000139{
140 return FPGA_SUCCESS;
141}
142
wdenk5d3207d2002-08-21 22:08:56 +0000143/*
144 * Virtex-II Slave SelectMap configuration loader. Configuration via
145 * SelectMap is as follows:
146 * 1. Set the FPGA's PROG_B line low.
147 * 2. Set the FPGA's PROG_B line high. Wait for INIT_B to go high.
148 * 3. Write data to the SelectMap port. If INIT_B goes low at any time
149 * this process, a configuration error (most likely CRC failure) has
150 * ocurred. At this point a status word may be read from the
151 * SelectMap interface to determine the source of the problem (You
Wolfgang Denk9a9200b2005-09-24 23:41:00 +0200152 * could, for instance, put this in your 'abort' function handler).
wdenk5d3207d2002-08-21 22:08:56 +0000153 * 4. After all data has been written, test the state of the FPGA
154 * INIT_B and DONE lines. If both are high, configuration has
155 * succeeded. Congratulations!
156 */
Michal Simekf8c1be92014-03-13 12:49:21 +0100157static int virtex2_ssm_load(xilinx_desc *desc, const void *buf, size_t bsize)
wdenk5d3207d2002-08-21 22:08:56 +0000158{
159 int ret_val = FPGA_FAIL;
Michal Simekd9071ce2014-03-13 11:33:36 +0100160 xilinx_virtex2_slave_selectmap_fns *fn = desc->iface_fns;
wdenk5d3207d2002-08-21 22:08:56 +0000161
Robert Hancockfa57af02019-06-18 09:47:12 -0600162 PRINTF("%s:%d: Start with interface functions @ 0x%p\n",
163 __func__, __LINE__, fn);
wdenk5d3207d2002-08-21 22:08:56 +0000164
165 if (fn) {
166 size_t bytecount = 0;
Robert Hancockfa57af02019-06-18 09:47:12 -0600167 unsigned char *data = (unsigned char *)buf;
wdenk5d3207d2002-08-21 22:08:56 +0000168 int cookie = desc->cookie;
169 unsigned long ts;
170
171 /* Gotta split this one up (so the stack won't blow??) */
Robert Hancockfa57af02019-06-18 09:47:12 -0600172 PRINTF("%s:%d: Function Table:\n"
173 " base 0x%p\n"
174 " struct 0x%p\n"
175 " pre 0x%p\n"
176 " prog 0x%p\n"
177 " init 0x%p\n"
178 " error 0x%p\n",
179 __func__, __LINE__,
180 &fn, fn, fn->pre, fn->pgm, fn->init, fn->err);
181 PRINTF(" clock 0x%p\n"
182 " cs 0x%p\n"
183 " write 0x%p\n"
184 " rdata 0x%p\n"
185 " wdata 0x%p\n"
186 " busy 0x%p\n"
187 " abort 0x%p\n"
188 " post 0x%p\n\n",
189 fn->clk, fn->cs, fn->wr, fn->rdata, fn->wdata,
190 fn->busy, fn->abort, fn->post);
wdenk5d3207d2002-08-21 22:08:56 +0000191
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200192#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Robert Hancockfa57af02019-06-18 09:47:12 -0600193 printf("Initializing FPGA Device %d...\n", cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000194#endif
195 /*
196 * Run the pre configuration function if there is one.
197 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600198 if (*fn->pre)
199 (*fn->pre)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000200
201 /*
202 * Assert the program line. The minimum pulse width for
Robert Hancockfa57af02019-06-18 09:47:12 -0600203 * Virtex II devices is 300 nS (Tprogram parameter in
204 * datasheet). There is no maximum value for the pulse width.
205 * Check to make sure that INIT_B goes low after assertion of
206 * PROG_B
wdenk5d3207d2002-08-21 22:08:56 +0000207 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600208 (*fn->pgm)(true, true, cookie);
209 udelay(10);
210 ts = get_timer(0);
wdenk5d3207d2002-08-21 22:08:56 +0000211 do {
Robert Hancockfa57af02019-06-18 09:47:12 -0600212 if (get_timer(ts) > CONFIG_SYS_FPGA_WAIT_INIT) {
213 printf("%s:%d: ** Timeout after %d ticks waiting for INIT to assert.\n",
214 __func__, __LINE__,
215 CONFIG_SYS_FPGA_WAIT_INIT);
216 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000217 return FPGA_FAIL;
218 }
Robert Hancockfa57af02019-06-18 09:47:12 -0600219 } while (!(*fn->init)(cookie));
wdenk5d3207d2002-08-21 22:08:56 +0000220
Robert Hancockfa57af02019-06-18 09:47:12 -0600221 (*fn->pgm)(false, true, cookie);
222 CONFIG_FPGA_DELAY();
223 (*fn->clk)(true, true, cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000224
225 /*
226 * Start a timer and wait for INIT_B to go high
227 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600228 ts = get_timer(0);
wdenk5d3207d2002-08-21 22:08:56 +0000229 do {
Robert Hancockfa57af02019-06-18 09:47:12 -0600230 CONFIG_FPGA_DELAY();
231 if (get_timer(ts) > CONFIG_SYS_FPGA_WAIT_INIT) {
232 printf("%s:%d: ** Timeout after %d ticks waiting for INIT to deassert.\n",
233 __func__, __LINE__,
234 CONFIG_SYS_FPGA_WAIT_INIT);
235 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000236 return FPGA_FAIL;
237 }
Robert Hancockfa57af02019-06-18 09:47:12 -0600238 } while ((*fn->init)(cookie) && (*fn->busy)(cookie));
wdenk5d3207d2002-08-21 22:08:56 +0000239
Robert Hancockfa57af02019-06-18 09:47:12 -0600240 (*fn->wr)(true, true, cookie);
241 (*fn->cs)(true, true, cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000242
Robert Hancockfa57af02019-06-18 09:47:12 -0600243 mdelay(10);
wdenk5d3207d2002-08-21 22:08:56 +0000244
245 /*
246 * Load the data byte by byte
247 */
248 while (bytecount < bsize) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200249#ifdef CONFIG_SYS_FPGA_CHECK_CTRLC
Robert Hancockfa57af02019-06-18 09:47:12 -0600250 if (ctrlc()) {
251 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000252 return FPGA_FAIL;
253 }
254#endif
Wolfgang Denk9a9200b2005-09-24 23:41:00 +0200255
Robert Hancockfa57af02019-06-18 09:47:12 -0600256 if ((*fn->done)(cookie) == FPGA_SUCCESS) {
257 PRINTF("%s:%d:done went active early, bytecount = %d\n",
258 __func__, __LINE__, bytecount);
259 break;
Wolfgang Denk9a9200b2005-09-24 23:41:00 +0200260 }
261
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200262#ifdef CONFIG_SYS_FPGA_CHECK_ERROR
Robert Hancockfa57af02019-06-18 09:47:12 -0600263 if ((*fn->init)(cookie)) {
264 printf("\n%s:%d: ** Error: INIT asserted during configuration\n",
265 __func__, __LINE__);
266 printf("%d = buffer offset, %d = buffer size\n",
267 bytecount, bsize);
268 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000269 return FPGA_FAIL;
270 }
271#endif
Wolfgang Denk9a9200b2005-09-24 23:41:00 +0200272
Robert Hancockfa57af02019-06-18 09:47:12 -0600273 (*fn->wdata)(data[bytecount++], true, cookie);
274 CONFIG_FPGA_DELAY();
wdenk5d3207d2002-08-21 22:08:56 +0000275
276 /*
277 * Cycle the clock pin
278 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600279 (*fn->clk)(false, true, cookie);
280 CONFIG_FPGA_DELAY();
281 (*fn->clk)(true, true, cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000282
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200283#ifdef CONFIG_SYS_FPGA_CHECK_BUSY
Robert Hancockfa57af02019-06-18 09:47:12 -0600284 ts = get_timer(0);
285 while ((*fn->busy)(cookie)) {
286 if (get_timer(ts) > CONFIG_SYS_FPGA_WAIT_BUSY) {
287 printf("%s:%d: ** Timeout after %d ticks waiting for BUSY to deassert\n",
288 __func__, __LINE__,
289 CONFIG_SYS_FPGA_WAIT_BUSY);
290 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000291 return FPGA_FAIL;
292 }
293 }
294#endif
295
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200296#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
wdenk5d3207d2002-08-21 22:08:56 +0000297 if (bytecount % (bsize / 40) == 0)
Robert Hancockfa57af02019-06-18 09:47:12 -0600298 putc('.');
wdenk5d3207d2002-08-21 22:08:56 +0000299#endif
300 }
301
302 /*
Robert Hancockfa57af02019-06-18 09:47:12 -0600303 * Finished writing the data; deassert FPGA CS_B and WRITE_B
304 * signals.
wdenk5d3207d2002-08-21 22:08:56 +0000305 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600306 CONFIG_FPGA_DELAY();
307 (*fn->cs)(false, true, cookie);
308 (*fn->wr)(false, true, cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000309
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200310#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Robert Hancockfa57af02019-06-18 09:47:12 -0600311 putc('\n');
wdenk5d3207d2002-08-21 22:08:56 +0000312#endif
313
314 /*
Robert Hancockfa57af02019-06-18 09:47:12 -0600315 * Check for successful configuration. FPGA INIT_B and DONE
316 * should both be high upon successful configuration.
wdenk5d3207d2002-08-21 22:08:56 +0000317 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600318 ts = get_timer(0);
wdenk5d3207d2002-08-21 22:08:56 +0000319 ret_val = FPGA_SUCCESS;
Robert Hancockfa57af02019-06-18 09:47:12 -0600320 while (((*fn->done)(cookie) == FPGA_FAIL) ||
321 (*fn->init)(cookie)) {
322 if (get_timer(ts) > CONFIG_SYS_FPGA_WAIT_CONFIG) {
323 printf("%s:%d: ** Timeout after %d ticks waiting for DONE toassert and INIT to deassert\n",
324 __func__, __LINE__,
325 CONFIG_SYS_FPGA_WAIT_CONFIG);
326 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000327 ret_val = FPGA_FAIL;
328 break;
329 }
330 }
331
332 if (ret_val == FPGA_SUCCESS) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200333#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Robert Hancockfa57af02019-06-18 09:47:12 -0600334 printf("Initialization of FPGA device %d complete\n",
335 cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000336#endif
337 /*
338 * Run the post configuration function if there is one.
339 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600340 if (*fn->post)
341 (*fn->post)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000342 } else {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200343#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Robert Hancockfa57af02019-06-18 09:47:12 -0600344 printf("** Initialization of FPGA device %d FAILED\n",
345 cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000346#endif
347 }
348 } else {
Robert Hancockfa57af02019-06-18 09:47:12 -0600349 printf("%s:%d: NULL Interface function table!\n",
350 __func__, __LINE__);
wdenk5d3207d2002-08-21 22:08:56 +0000351 }
352 return ret_val;
353}
354
355/*
356 * Read the FPGA configuration data
357 */
Michal Simekf8c1be92014-03-13 12:49:21 +0100358static int virtex2_ssm_dump(xilinx_desc *desc, const void *buf, size_t bsize)
wdenk5d3207d2002-08-21 22:08:56 +0000359{
360 int ret_val = FPGA_FAIL;
Michal Simekd9071ce2014-03-13 11:33:36 +0100361 xilinx_virtex2_slave_selectmap_fns *fn = desc->iface_fns;
wdenk5d3207d2002-08-21 22:08:56 +0000362
363 if (fn) {
Robert Hancockfa57af02019-06-18 09:47:12 -0600364 unsigned char *data = (unsigned char *)buf;
wdenk5d3207d2002-08-21 22:08:56 +0000365 size_t bytecount = 0;
366 int cookie = desc->cookie;
367
Robert Hancockfa57af02019-06-18 09:47:12 -0600368 printf("Starting Dump of FPGA Device %d...\n", cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000369
Robert Hancockfa57af02019-06-18 09:47:12 -0600370 (*fn->cs)(true, true, cookie);
371 (*fn->clk)(true, true, cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000372
373 while (bytecount < bsize) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200374#ifdef CONFIG_SYS_FPGA_CHECK_CTRLC
Robert Hancockfa57af02019-06-18 09:47:12 -0600375 if (ctrlc()) {
376 (*fn->abort)(cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000377 return FPGA_FAIL;
378 }
379#endif
380 /*
381 * Cycle the clock and read the data
382 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600383 (*fn->clk)(false, true, cookie);
384 (*fn->clk)(true, true, cookie);
385 (*fn->rdata)(&data[bytecount++], cookie);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200386#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
wdenk5d3207d2002-08-21 22:08:56 +0000387 if (bytecount % (bsize / 40) == 0)
Robert Hancockfa57af02019-06-18 09:47:12 -0600388 putc('.');
wdenk5d3207d2002-08-21 22:08:56 +0000389#endif
390 }
391
392 /*
393 * Deassert CS_B and cycle the clock to deselect the device.
394 */
Robert Hancockfa57af02019-06-18 09:47:12 -0600395 (*fn->cs)(false, false, cookie);
396 (*fn->clk)(false, true, cookie);
397 (*fn->clk)(true, true, cookie);
wdenk5d3207d2002-08-21 22:08:56 +0000398
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200399#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Robert Hancockfa57af02019-06-18 09:47:12 -0600400 putc('\n');
wdenk5d3207d2002-08-21 22:08:56 +0000401#endif
Robert Hancockfa57af02019-06-18 09:47:12 -0600402 puts("Done.\n");
wdenk5d3207d2002-08-21 22:08:56 +0000403 } else {
Robert Hancockfa57af02019-06-18 09:47:12 -0600404 printf("%s:%d: NULL Interface function table!\n",
405 __func__, __LINE__);
wdenk5d3207d2002-08-21 22:08:56 +0000406 }
407 return ret_val;
408}
409
Michal Simekf8c1be92014-03-13 12:49:21 +0100410static int virtex2_ss_load(xilinx_desc *desc, const void *buf, size_t bsize)
wdenk5d3207d2002-08-21 22:08:56 +0000411{
Robert Hancockfa57af02019-06-18 09:47:12 -0600412 printf("%s: Slave Serial Loading is unsupported\n", __func__);
wdenk5d3207d2002-08-21 22:08:56 +0000413 return FPGA_FAIL;
414}
415
Michal Simekf8c1be92014-03-13 12:49:21 +0100416static int virtex2_ss_dump(xilinx_desc *desc, const void *buf, size_t bsize)
wdenk5d3207d2002-08-21 22:08:56 +0000417{
Robert Hancockfa57af02019-06-18 09:47:12 -0600418 printf("%s: Slave Serial Dumping is unsupported\n", __func__);
wdenk5d3207d2002-08-21 22:08:56 +0000419 return FPGA_FAIL;
420}
421
wdenk5d3207d2002-08-21 22:08:56 +0000422/* vim: set ts=4 tw=78: */
Michal Simek14cfc4f2014-03-13 13:07:57 +0100423
424struct xilinx_fpga_op virtex2_op = {
425 .load = virtex2_load,
426 .dump = virtex2_dump,
427 .info = virtex2_info,
428};