]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/zynqpl.h
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'
[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 #define XILINX_ZYNQ_7100 0x16
24
25 /* Device Image Sizes */
26 #define XILINX_XC7Z010_SIZE 16669920/8
27 #define XILINX_XC7Z020_SIZE 32364512/8
28 #define XILINX_XC7Z030_SIZE 47839328/8
29 #define XILINX_XC7Z045_SIZE 106571232/8
30 #define XILINX_XC7Z100_SIZE 139330784/8
31
32 /* Descriptor Macros */
33 #define XILINX_XC7Z010_DESC(cookie) \
34 { xilinx_zynq, devcfg, XILINX_XC7Z010_SIZE, NULL, cookie, "7z010" }
35
36 #define XILINX_XC7Z020_DESC(cookie) \
37 { xilinx_zynq, devcfg, XILINX_XC7Z020_SIZE, NULL, cookie, "7z020" }
38
39 #define XILINX_XC7Z030_DESC(cookie) \
40 { xilinx_zynq, devcfg, XILINX_XC7Z030_SIZE, NULL, cookie, "7z030" }
41
42 #define XILINX_XC7Z045_DESC(cookie) \
43 { xilinx_zynq, devcfg, XILINX_XC7Z045_SIZE, NULL, cookie, "7z045" }
44
45 #define XILINX_XC7Z100_DESC(cookie) \
46 { xilinx_zynq, devcfg, XILINX_XC7Z100_SIZE, NULL, cookie, "7z100" }
47
48 #endif /* _ZYNQPL_H_ */