2002-11-03 00:24:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2002
|
|
|
|
* Rich Ireland, Enterasys Networks, rireland@enterasys.com.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2002-11-03 00:24:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SPARTAN2_H_
|
|
|
|
#define _SPARTAN2_H_
|
|
|
|
|
|
|
|
#include <xilinx.h>
|
|
|
|
|
2014-03-13 11:49:21 +00:00
|
|
|
int spartan2_load(xilinx_desc *desc, const void *image, size_t size);
|
|
|
|
int spartan2_dump(xilinx_desc *desc, const void *buf, size_t bsize);
|
|
|
|
int spartan2_info(xilinx_desc *desc);
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/* Slave Parallel Implementation function table */
|
|
|
|
typedef struct {
|
2014-03-13 11:58:20 +00:00
|
|
|
xilinx_pre_fn pre;
|
|
|
|
xilinx_pgm_fn pgm;
|
|
|
|
xilinx_init_fn init;
|
|
|
|
xilinx_err_fn err;
|
|
|
|
xilinx_done_fn done;
|
|
|
|
xilinx_clk_fn clk;
|
|
|
|
xilinx_cs_fn cs;
|
|
|
|
xilinx_wr_fn wr;
|
|
|
|
xilinx_rdata_fn rdata;
|
|
|
|
xilinx_wdata_fn wdata;
|
|
|
|
xilinx_busy_fn busy;
|
|
|
|
xilinx_abort_fn abort;
|
|
|
|
xilinx_post_fn post;
|
2014-03-13 10:23:43 +00:00
|
|
|
} xilinx_spartan2_slave_parallel_fns;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/* Slave Serial Implementation function table */
|
|
|
|
typedef struct {
|
2014-03-13 11:58:20 +00:00
|
|
|
xilinx_pre_fn pre;
|
|
|
|
xilinx_pgm_fn pgm;
|
|
|
|
xilinx_clk_fn clk;
|
|
|
|
xilinx_init_fn init;
|
|
|
|
xilinx_done_fn done;
|
|
|
|
xilinx_wr_fn wr;
|
|
|
|
xilinx_post_fn post;
|
2014-03-13 10:23:43 +00:00
|
|
|
} xilinx_spartan2_slave_serial_fns;
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
/* Device Image Sizes
|
|
|
|
*********************************************************************/
|
|
|
|
/* Spartan-II (2.5V) */
|
2008-05-20 14:00:29 +00:00
|
|
|
#define XILINX_XC2S15_SIZE 197728/8
|
|
|
|
#define XILINX_XC2S30_SIZE 336800/8
|
|
|
|
#define XILINX_XC2S50_SIZE 559232/8
|
|
|
|
#define XILINX_XC2S100_SIZE 781248/8
|
|
|
|
#define XILINX_XC2S150_SIZE 1040128/8
|
|
|
|
#define XILINX_XC2S200_SIZE 1335872/8
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2005-01-09 17:19:34 +00:00
|
|
|
/* Spartan-IIE (1.8V) */
|
|
|
|
#define XILINX_XC2S50E_SIZE 630048/8
|
|
|
|
#define XILINX_XC2S100E_SIZE 863840/8
|
|
|
|
#define XILINX_XC2S150E_SIZE 1134496/8
|
|
|
|
#define XILINX_XC2S200E_SIZE 1442016/8
|
|
|
|
#define XILINX_XC2S300E_SIZE 1875648/8
|
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
/* Descriptor Macros
|
|
|
|
*********************************************************************/
|
|
|
|
/* Spartan-II devices */
|
|
|
|
#define XILINX_XC2S15_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S15_SIZE, fn_table, cookie }
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S30_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S30_SIZE, fn_table, cookie }
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S50_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S50_SIZE, fn_table, cookie }
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S100_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S100_SIZE, fn_table, cookie }
|
2002-11-03 00:24:07 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S150_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S150_SIZE, fn_table, cookie }
|
2002-11-03 00:24:07 +00:00
|
|
|
|
2007-12-27 16:12:56 +00:00
|
|
|
#define XILINX_XC2S200_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S200_SIZE, fn_table, cookie }
|
2007-12-27 16:12:56 +00:00
|
|
|
|
2005-01-09 17:19:34 +00:00
|
|
|
#define XILINX_XC2S50E_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S50E_SIZE, fn_table, cookie }
|
2005-01-09 17:19:34 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S100E_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S100E_SIZE, fn_table, cookie }
|
2005-01-09 17:19:34 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S150E_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S150E_SIZE, fn_table, cookie }
|
2005-01-09 17:19:34 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S200E_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S200E_SIZE, fn_table, cookie }
|
2005-01-09 17:19:34 +00:00
|
|
|
|
|
|
|
#define XILINX_XC2S300E_DESC(iface, fn_table, cookie) \
|
2014-03-13 10:23:43 +00:00
|
|
|
{ xilinx_spartan2, iface, XILINX_XC2S300E_SIZE, fn_table, cookie }
|
2005-01-09 17:19:34 +00:00
|
|
|
|
2002-11-03 00:24:07 +00:00
|
|
|
#endif /* _SPARTAN2_H_ */
|