Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [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+ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _SPARTAN3_H_ |
| 9 | #define _SPARTAN3_H_ |
| 10 | |
| 11 | #include <xilinx.h> |
| 12 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [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 | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 28 | } xilinx_spartan3_slave_parallel_fns; |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [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; |
| 39 | xilinx_bwr_fn bwr; /* block write function */ |
| 40 | xilinx_abort_fn abort; |
Michal Simek | 2a6e386 | 2014-03-13 11:28:42 +0100 | [diff] [blame] | 41 | } xilinx_spartan3_slave_serial_fns; |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 42 | |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 43 | extern struct xilinx_fpga_op spartan3_op; |
| 44 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 45 | /* Device Image Sizes |
| 46 | *********************************************************************/ |
| 47 | /* Spartan-III (1.2V) */ |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 48 | #define XILINX_XC3S50_SIZE 439264/8 |
| 49 | #define XILINX_XC3S200_SIZE 1047616/8 |
| 50 | #define XILINX_XC3S400_SIZE 1699136/8 |
| 51 | #define XILINX_XC3S1000_SIZE 3223488/8 |
| 52 | #define XILINX_XC3S1500_SIZE 5214784/8 |
| 53 | #define XILINX_XC3S2000_SIZE 7673024/8 |
| 54 | #define XILINX_XC3S4000_SIZE 11316864/8 |
| 55 | #define XILINX_XC3S5000_SIZE 13271936/8 |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 56 | |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 57 | /* Spartan-3E (v3.4) */ |
| 58 | #define XILINX_XC3S100E_SIZE 581344/8 |
| 59 | #define XILINX_XC3S250E_SIZE 1353728/8 |
| 60 | #define XILINX_XC3S500E_SIZE 2270208/8 |
| 61 | #define XILINX_XC3S1200E_SIZE 3841184/8 |
| 62 | #define XILINX_XC3S1600E_SIZE 5969696/8 |
| 63 | |
Stefano Babic | 28cdc1c | 2011-12-28 06:47:00 +0000 | [diff] [blame] | 64 | /* |
| 65 | * Spartan-6 : the Spartan-6 family can be programmed |
| 66 | * exactly as the Spartan-3 |
| 67 | */ |
| 68 | #define XILINK_XC6SLX4_SIZE (3713568/8) |
| 69 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 70 | /* Descriptor Macros |
| 71 | *********************************************************************/ |
Matthias Fuchs | 3bff4ff | 2007-12-27 17:12:56 +0100 | [diff] [blame] | 72 | /* Spartan-III devices */ |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 73 | #define XILINX_XC3S50_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 74 | { xilinx_spartan3, iface, XILINX_XC3S50_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 75 | |
| 76 | #define XILINX_XC3S200_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 77 | { xilinx_spartan3, iface, XILINX_XC3S200_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 78 | |
| 79 | #define XILINX_XC3S400_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 80 | { xilinx_spartan3, iface, XILINX_XC3S400_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 81 | |
| 82 | #define XILINX_XC3S1000_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 83 | { xilinx_spartan3, iface, XILINX_XC3S1000_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 84 | |
| 85 | #define XILINX_XC3S1500_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 86 | { xilinx_spartan3, iface, XILINX_XC3S1500_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 87 | |
| 88 | #define XILINX_XC3S2000_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 89 | { xilinx_spartan3, iface, XILINX_XC3S2000_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 90 | |
| 91 | #define XILINX_XC3S4000_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 92 | { xilinx_spartan3, iface, XILINX_XC3S4000_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 93 | |
| 94 | #define XILINX_XC3S5000_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 95 | { xilinx_spartan3, iface, XILINX_XC3S5000_SIZE, fn_table, cookie, &spartan3_op } |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 96 | |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 97 | /* Spartan-3E devices */ |
| 98 | #define XILINX_XC3S100E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 99 | { xilinx_spartan3, iface, XILINX_XC3S100E_SIZE, fn_table, cookie, &spartan3_op } |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 100 | |
| 101 | #define XILINX_XC3S250E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 102 | { xilinx_spartan3, iface, XILINX_XC3S250E_SIZE, fn_table, cookie, &spartan3_op } |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 103 | |
| 104 | #define XILINX_XC3S500E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 105 | { xilinx_spartan3, iface, XILINX_XC3S500E_SIZE, fn_table, cookie, &spartan3_op } |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 106 | |
| 107 | #define XILINX_XC3S1200E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 108 | { xilinx_spartan3, iface, XILINX_XC3S1200E_SIZE, fn_table, cookie, \ |
| 109 | &spartan3_op } |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 110 | |
| 111 | #define XILINX_XC3S1600E_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 112 | { xilinx_spartan3, iface, XILINX_XC3S1600E_SIZE, fn_table, cookie, \ |
| 113 | &spartan3_op } |
Bruce Adler | 923efd2 | 2007-08-10 14:54:47 -0700 | [diff] [blame] | 114 | |
Stefano Babic | 28cdc1c | 2011-12-28 06:47:00 +0000 | [diff] [blame] | 115 | #define XILINX_XC6SLX4_DESC(iface, fn_table, cookie) \ |
Michal Simek | 14cfc4f | 2014-03-13 13:07:57 +0100 | [diff] [blame] | 116 | { xilinx_spartan3, iface, XILINK_XC6SLX4_SIZE, fn_table, cookie, &spartan3_op } |
Stefano Babic | 28cdc1c | 2011-12-28 06:47:00 +0000 | [diff] [blame] | 117 | |
Wolfgang Denk | 875c789 | 2005-09-25 16:44:21 +0200 | [diff] [blame] | 118 | #endif /* _SPARTAN3_H_ */ |