Blame view

bootloader/u-boot_2015_04/include/zynqpl.h 1.78 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  /*
   * (C) Copyright 2012-2013, Xilinx, Michal Simek
   *
   * (C) Copyright 2012
   * Joe Hershberger <joe.hershberger@ni.com>
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #ifndef _ZYNQPL_H_
  #define _ZYNQPL_H_
  
  #include <xilinx.h>
  
  #if defined(CONFIG_FPGA_ZYNQPL)
  extern struct xilinx_fpga_op zynq_op;
  # define FPGA_ZYNQPL_OPS	&zynq_op
  #else
  # define FPGA_ZYNQPL_OPS	NULL
  #endif
  
  #define XILINX_ZYNQ_7010	0x2
  #define XILINX_ZYNQ_7015	0x1b
  #define XILINX_ZYNQ_7020	0x7
  #define XILINX_ZYNQ_7030	0xc
  #define XILINX_ZYNQ_7035	0x12
  #define XILINX_ZYNQ_7045	0x11
  #define XILINX_ZYNQ_7100	0x16
  
  /* 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_XC7Z035_SIZE	106571232/8
  #define XILINX_XC7Z045_SIZE	106571232/8
  #define XILINX_XC7Z100_SIZE	139330784/8
  
  /* Descriptor Macros */
  #define XILINX_XC7Z010_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z010_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z010" }
  
  #define XILINX_XC7Z015_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z015_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z015" }
  
  #define XILINX_XC7Z020_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z020_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z020" }
  
  #define XILINX_XC7Z030_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z030_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z030" }
  
  #define XILINX_XC7Z035_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z035_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z035" }
  
  #define XILINX_XC7Z045_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z045_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z045" }
  
  #define XILINX_XC7Z100_DESC(cookie) \
  { xilinx_zynq, devcfg, XILINX_XC7Z100_SIZE, NULL, cookie, FPGA_ZYNQPL_OPS, \
  	"7z100" }
  
  #endif /* _ZYNQPL_H_ */