diff options
author | wdenk <wdenk> | 2005-01-09 17:19:34 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-09 17:19:34 +0000 |
commit | 9dd611b8c1db94181918481d5cac1fac241a7954 (patch) | |
tree | f9516e970948644319cf77f697abbeaf7880882f /include/spartan2.h | |
parent | a1191902cab72b9f7127365fac39a1e1d5c9abda (diff) |
* Patch by Kurt Stremerch, 03 Sep 2004:
Add Xilinx Spartan2E family FPGA support
* Patch by Jeff Angielski, 02 Sep 2004:
Add Added support for H2 revision of the EP8260 board.
Fixed formatting for some of the EP8260 related source files.
Diffstat (limited to 'include/spartan2.h')
-rw-r--r-- | include/spartan2.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/spartan2.h b/include/spartan2.h index 9725d4b3e7e..d2e81e38ab5 100644 --- a/include/spartan2.h +++ b/include/spartan2.h @@ -70,6 +70,13 @@ typedef struct { #define XILINX_XC2S100_SIZE 781248/8 #define XILINX_XC2S150_SIZE 1040128/8 +/* 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 + /* Descriptor Macros *********************************************************************/ /* Spartan-II devices */ @@ -88,4 +95,19 @@ typedef struct { #define XILINX_XC2S150_DESC(iface, fn_table, cookie) \ { Xilinx_Spartan2, iface, XILINX_XC2S150_SIZE, fn_table, cookie } +#define XILINX_XC2S50E_DESC(iface, fn_table, cookie) \ +{ Xilinx_Spartan2, iface, XILINX_XC2S50E_SIZE, fn_table, cookie } + +#define XILINX_XC2S100E_DESC(iface, fn_table, cookie) \ +{ Xilinx_Spartan2, iface, XILINX_XC2S100E_SIZE, fn_table, cookie } + +#define XILINX_XC2S150E_DESC(iface, fn_table, cookie) \ +{ Xilinx_Spartan2, iface, XILINX_XC2S150E_SIZE, fn_table, cookie } + +#define XILINX_XC2S200E_DESC(iface, fn_table, cookie) \ +{ Xilinx_Spartan2, iface, XILINX_XC2S200E_SIZE, fn_table, cookie } + +#define XILINX_XC2S300E_DESC(iface, fn_table, cookie) \ +{ Xilinx_Spartan2, iface, XILINX_XC2S300E_SIZE, fn_table, cookie } + #endif /* _SPARTAN2_H_ */ |