diff options
author | Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> | 2014-11-25 15:29:54 +0530 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2015-01-21 10:25:53 +0100 |
commit | b9103809eb9052f40479d2d741e980832b75ebba (patch) | |
tree | 72d6bcb3fe2dfd5c5ee1a93110721f1246fc4c56 /include | |
parent | e136eaeb4d3e9a8557eaad26f99c0f2e3db172ac (diff) | |
download | u-boot-b9103809eb9052f40479d2d741e980832b75ebba.zip u-boot-b9103809eb9052f40479d2d741e980832b75ebba.tar.gz u-boot-b9103809eb9052f40479d2d741e980832b75ebba.tar.bz2 |
fpga: zynqpl: Add support for zc7035
Added support for zc7035
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/zynqpl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/zynqpl.h b/include/zynqpl.h index d0ff0d9..1d37a51 100644 --- a/include/zynqpl.h +++ b/include/zynqpl.h @@ -23,6 +23,7 @@ extern struct xilinx_fpga_op zynq_op; #define XILINX_ZYNQ_7015 0x1b #define XILINX_ZYNQ_7020 0x7 #define XILINX_ZYNQ_7030 0xc +#define XILINX_ZYNQ_7035 0x12 #define XILINX_ZYNQ_7045 0x11 #define XILINX_ZYNQ_7100 0x16 @@ -31,6 +32,7 @@ extern struct xilinx_fpga_op zynq_op; #define XILINX_XC7Z015_SIZE 28085344/8 #define XILINX_XC7Z020_SIZE 32364512/8 #define XILINX_XC7Z030_SIZE 47839328/8 +#define XILINX_XC7Z035_SIZE 106571232/8 #define XILINX_XC7Z045_SIZE 106571232/8 #define XILINX_XC7Z100_SIZE 139330784/8 @@ -51,6 +53,10 @@ extern struct xilinx_fpga_op zynq_op; { xilinx_zynq, devcfg, XILINX_XC7Z030_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \ "7z030" } +#define XILINX_XC7Z035_DESC(cookie) \ +{ xilinx_zynq, devcfg, XILINX_XC7Z035_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \ + "7z035" } + #define XILINX_XC7Z045_DESC(cookie) \ { xilinx_zynq, devcfg, XILINX_XC7Z045_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \ "7z045" } |