wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Rich Ireland, Enterasys Networks, rireland@enterasys.com. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _SPARTAN2_H_ |
| 9 | #define _SPARTAN2_H_ |
| 10 | |
| 11 | #include <xilinx.h> |
| 12 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 13 | /* Slave Parallel Implementation function table */ |
| 14 | typedef struct { |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 15 | xilinx_pre_fn pre; |
| 16 | xilinx_pgm_fn pgm; |
| 17 | xilinx_init_fn init; |
| 18 | xilinx_err_fn err; |
| 19 | xilinx_done_fn done; |
| 20 | xilinx_clk_fn clk; |
| 21 | xilinx_cs_fn cs; |
| 22 | xilinx_wr_fn wr; |
| 23 | xilinx_rdata_fn rdata; |
| 24 | xilinx_wdata_fn wdata; |
| 25 | xilinx_busy_fn busy; |
| 26 | xilinx_abort_fn abort; |
| 27 | xilinx_post_fn post; |
Michal Simek | b625b9a | 2014-03-13 11:23:43 +0100 | [diff] [blame] | 28 | } xilinx_spartan2_slave_parallel_fns; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 29 | |
| 30 | /* Slave Serial Implementation function table */ |
| 31 | typedef struct { |
Michal Simek | 2df9d5c | 2014-03-13 12:58:20 +0100 | [diff] [blame] | 32 | xilinx_pre_fn pre; |
| 33 | xilinx_pgm_fn pgm; |
| 34 | xilinx_clk_fn clk; |
| 35 | xilinx_init_fn init; |
| 36 | xilinx_done_fn done; |
| 37 | xilinx_wr_fn wr; |
| 38 | xilinx_post_fn post; |
Michal Simek | b625b9a | 2014-03-13 11:23:43 +0100 | [diff] [blame] | 39 | } xilinx_spartan2_slave_serial_fns; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 40 | |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 41 | extern struct xilinx_fpga_op spartan2_op; |
| 42 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 43 | /* Device Image Sizes |
| 44 | *********************************************************************/ |
| 45 | /* Spartan-II (2.5V) */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 46 | #define XILINX_XC2S15_SIZE 197728/8 |
| 47 | #define XILINX_XC2S30_SIZE 336800/8 |
| 48 | #define XILINX_XC2S50_SIZE 559232/8 |
| 49 | #define XILINX_XC2S100_SIZE 781248/8 |
| 50 | #define XILINX_XC2S150_SIZE 1040128/8 |
| 51 | #define XILINX_XC2S200_SIZE 1335872/8 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 52 | |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 53 | /* Spartan-IIE (1.8V) */ |
| 54 | #define XILINX_XC2S50E_SIZE 630048/8 |
| 55 | #define XILINX_XC2S100E_SIZE 863840/8 |
| 56 | #define XILINX_XC2S150E_SIZE 1134496/8 |
| 57 | #define XILINX_XC2S200E_SIZE 1442016/8 |
| 58 | #define XILINX_XC2S300E_SIZE 1875648/8 |
| 59 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 60 | /* Descriptor Macros |
| 61 | *********************************************************************/ |
| 62 | /* Spartan-II devices */ |
| 63 | #define XILINX_XC2S15_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 64 | { xilinx_spartan2, iface, XILINX_XC2S15_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 65 | |
| 66 | #define XILINX_XC2S30_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 67 | { xilinx_spartan2, iface, XILINX_XC2S30_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 68 | |
| 69 | #define XILINX_XC2S50_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 70 | { xilinx_spartan2, iface, XILINX_XC2S50_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 71 | |
| 72 | #define XILINX_XC2S100_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 73 | { xilinx_spartan2, iface, XILINX_XC2S100_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 74 | |
| 75 | #define XILINX_XC2S150_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 76 | { xilinx_spartan2, iface, XILINX_XC2S150_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 77 | |
Matthias Fuchs | 3bff4ff | 2007-12-27 17:12:56 +0100 | [diff] [blame] | 78 | #define XILINX_XC2S200_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 79 | { xilinx_spartan2, iface, XILINX_XC2S200_SIZE, fn_table, cookie, &spartan2_op } |
Matthias Fuchs | 3bff4ff | 2007-12-27 17:12:56 +0100 | [diff] [blame] | 80 | |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 81 | #define XILINX_XC2S50E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 82 | { xilinx_spartan2, iface, XILINX_XC2S50E_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 83 | |
| 84 | #define XILINX_XC2S100E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 85 | { xilinx_spartan2, iface, XILINX_XC2S100E_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 86 | |
| 87 | #define XILINX_XC2S150E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 88 | { xilinx_spartan2, iface, XILINX_XC2S150E_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 89 | |
| 90 | #define XILINX_XC2S200E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 91 | { xilinx_spartan2, iface, XILINX_XC2S200E_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 92 | |
| 93 | #define XILINX_XC2S300E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 94 | { xilinx_spartan2, iface, XILINX_XC2S300E_SIZE, fn_table, cookie, &spartan2_op } |
wdenk | 9dd611b | 2005-01-09 17:19:34 +0000 | [diff] [blame] | 95 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 96 | #endif /* _SPARTAN2_H_ */ |