]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/zynqpl.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / zynqpl.h
1 /*
2 * (C) Copyright 2012-2013, Xilinx, Michal Simek
3 *
4 * (C) Copyright 2012
5 * Joe Hershberger <joe.hershberger@ni.com>
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10 #ifndef _ZYNQPL_H_
11 #define _ZYNQPL_H_
12
13 #include <xilinx.h>
14
15 extern int zynq_load(Xilinx_desc *desc, const void *image, size_t size);
16 extern int zynq_dump(Xilinx_desc *desc, const void *buf, size_t bsize);
17 extern int zynq_info(Xilinx_desc *desc);
18
19 #define XILINX_ZYNQ_7010 0x2
20 #define XILINX_ZYNQ_7020 0x7
21 #define XILINX_ZYNQ_7030 0xc
22 #define XILINX_ZYNQ_7045 0x11
23
24 /* Device Image Sizes */
25 #define XILINX_XC7Z010_SIZE 16669920/8
26 #define XILINX_XC7Z020_SIZE 32364512/8
27 #define XILINX_XC7Z030_SIZE 47839328/8
28 #define XILINX_XC7Z045_SIZE 106571232/8
29
30 /* Descriptor Macros */
31 #define XILINX_XC7Z010_DESC(cookie) \
32 { xilinx_zynq, devcfg, XILINX_XC7Z010_SIZE, NULL, cookie, "7z010" }
33
34 #define XILINX_XC7Z020_DESC(cookie) \
35 { xilinx_zynq, devcfg, XILINX_XC7Z020_SIZE, NULL, cookie, "7z020" }
36
37 #define XILINX_XC7Z030_DESC(cookie) \
38 { xilinx_zynq, devcfg, XILINX_XC7Z030_SIZE, NULL, cookie, "7z030" }
39
40 #define XILINX_XC7Z045_DESC(cookie) \
41 { xilinx_zynq, devcfg, XILINX_XC7Z045_SIZE, NULL, cookie, "7z045" }
42
43 #endif /* _ZYNQPL_H_ */