]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/zynqpl.h
fpga: xilinx: zynqpl: Setup NULL fpga_op without driver
[karo-tx-uboot.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 #if defined(CONFIG_FPGA_ZYNQPL)
16 extern struct xilinx_fpga_op zynq_op;
17 # define FPGA_ZYNQPL_OPS        &zynq_op
18 #else
19 # define FPGA_ZYNQPL_OPS        NULL
20 #endif
21
22 #define XILINX_ZYNQ_7010        0x2
23 #define XILINX_ZYNQ_7015        0x1b
24 #define XILINX_ZYNQ_7020        0x7
25 #define XILINX_ZYNQ_7030        0xc
26 #define XILINX_ZYNQ_7045        0x11
27 #define XILINX_ZYNQ_7100        0x16
28
29 /* Device Image Sizes */
30 #define XILINX_XC7Z010_SIZE     16669920/8
31 #define XILINX_XC7Z015_SIZE     28085344/8
32 #define XILINX_XC7Z020_SIZE     32364512/8
33 #define XILINX_XC7Z030_SIZE     47839328/8
34 #define XILINX_XC7Z045_SIZE     106571232/8
35 #define XILINX_XC7Z100_SIZE     139330784/8
36
37 /* Descriptor Macros */
38 #define XILINX_XC7Z010_DESC(cookie) \
39 { xilinx_zynq, devcfg, XILINX_XC7Z010_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
40         "7z010" }
41
42 #define XILINX_XC7Z015_DESC(cookie) \
43 { xilinx_zynq, devcfg, XILINX_XC7Z015_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
44         "7z015" }
45
46 #define XILINX_XC7Z020_DESC(cookie) \
47 { xilinx_zynq, devcfg, XILINX_XC7Z020_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
48         "7z020" }
49
50 #define XILINX_XC7Z030_DESC(cookie) \
51 { xilinx_zynq, devcfg, XILINX_XC7Z030_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
52         "7z030" }
53
54 #define XILINX_XC7Z045_DESC(cookie) \
55 { xilinx_zynq, devcfg, XILINX_XC7Z045_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
56         "7z045" }
57
58 #define XILINX_XC7Z100_DESC(cookie) \
59 { xilinx_zynq, devcfg, XILINX_XC7Z100_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
60         "7z100" }
61
62 #endif /* _ZYNQPL_H_ */