]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/zynqpl.h
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / include / zynqpl.h
CommitLineData
d5dae85f
MS
1/*
2 * (C) Copyright 2012-2013, Xilinx, Michal Simek
3 *
4 * (C) Copyright 2012
5 * Joe Hershberger <joe.hershberger@ni.com>
6 *
1a459660 7 * SPDX-License-Identifier: GPL-2.0+
d5dae85f
MS
8 */
9
10#ifndef _ZYNQPL_H_
11#define _ZYNQPL_H_
12
13#include <xilinx.h>
14
15extern int zynq_load(Xilinx_desc *desc, const void *image, size_t size);
16extern int zynq_dump(Xilinx_desc *desc, const void *buf, size_t bsize);
17extern 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) \
6631db47 32{ xilinx_zynq, devcfg, XILINX_XC7Z010_SIZE, NULL, cookie, "7z010" }
d5dae85f
MS
33
34#define XILINX_XC7Z020_DESC(cookie) \
6631db47 35{ xilinx_zynq, devcfg, XILINX_XC7Z020_SIZE, NULL, cookie, "7z020" }
d5dae85f
MS
36
37#define XILINX_XC7Z030_DESC(cookie) \
6631db47 38{ xilinx_zynq, devcfg, XILINX_XC7Z030_SIZE, NULL, cookie, "7z030" }
d5dae85f
MS
39
40#define XILINX_XC7Z045_DESC(cookie) \
6631db47 41{ xilinx_zynq, devcfg, XILINX_XC7Z045_SIZE, NULL, cookie, "7z045" }
d5dae85f
MS
42
43#endif /* _ZYNQPL_H_ */