diff options
author | Tom Rini <trini@ti.com> | 2014-02-06 11:20:23 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-06 11:20:23 -0500 |
commit | 6e94258e2519fe91df12ea7aa732b75887d81461 (patch) | |
tree | 712bb081d2ae498b79af96314c546cfa5dc80a5e /include | |
parent | f016f8ca3d503af004a649de1c704d5ddf3def22 (diff) | |
parent | 31993d6a3585d478d792fc70240129b0ca03f55f (diff) | |
download | u-boot-imx-6e94258e2519fe91df12ea7aa732b75887d81461.zip u-boot-imx-6e94258e2519fe91df12ea7aa732b75887d81461.tar.gz u-boot-imx-6e94258e2519fe91df12ea7aa732b75887d81461.tar.bz2 |
Merge branch 'fpga' of git://www.denx.de/git/u-boot-microblaze
Diffstat (limited to 'include')
-rw-r--r-- | include/zynqpl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/zynqpl.h b/include/zynqpl.h index 6107cbf..c81446e 100644 --- a/include/zynqpl.h +++ b/include/zynqpl.h @@ -17,6 +17,7 @@ extern int zynq_dump(Xilinx_desc *desc, const void *buf, size_t bsize); extern int zynq_info(Xilinx_desc *desc); #define XILINX_ZYNQ_7010 0x2 +#define XILINX_ZYNQ_7015 0x1b #define XILINX_ZYNQ_7020 0x7 #define XILINX_ZYNQ_7030 0xc #define XILINX_ZYNQ_7045 0x11 @@ -24,6 +25,7 @@ extern int zynq_info(Xilinx_desc *desc); /* Device Image Sizes */ #define XILINX_XC7Z010_SIZE 16669920/8 +#define XILINX_XC7Z015_SIZE 28085344/8 #define XILINX_XC7Z020_SIZE 32364512/8 #define XILINX_XC7Z030_SIZE 47839328/8 #define XILINX_XC7Z045_SIZE 106571232/8 @@ -33,6 +35,9 @@ extern int zynq_info(Xilinx_desc *desc); #define XILINX_XC7Z010_DESC(cookie) \ { xilinx_zynq, devcfg, XILINX_XC7Z010_SIZE, NULL, cookie, "7z010" } +#define XILINX_XC7Z015_DESC(cookie) \ +{ xilinx_zynq, devcfg, XILINX_XC7Z015_SIZE, NULL, cookie, "7z015" } + #define XILINX_XC7Z020_DESC(cookie) \ { xilinx_zynq, devcfg, XILINX_XC7Z020_SIZE, NULL, cookie, "7z020" } |