Blame view

include/spartan3.h 4.43 KB
875c78934   Wolfgang Denk   Add Xilinx Sparta...
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
  /*
   * (C) Copyright 2002
   * Rich Ireland, Enterasys Networks, rireland@enterasys.com.
   *
   * See file CREDITS for list of people who contributed to this
   * project.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public License as
   * published by the Free Software Foundation; either version 2 of
   * the License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
   * MA 02111-1307 USA
   *
   */
  
  #ifndef _SPARTAN3_H_
  #define _SPARTAN3_H_
  
  #include <xilinx.h>
e6a857da7   Wolfgang Denk   fpga: constify to...
29
30
31
  extern int Spartan3_load(Xilinx_desc *desc, const void *image, size_t size);
  extern int Spartan3_dump(Xilinx_desc *desc, const void *buf, size_t bsize);
  extern int Spartan3_info(Xilinx_desc *desc);
875c78934   Wolfgang Denk   Add Xilinx Sparta...
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
  
  /* Slave Parallel Implementation function table */
  typedef struct {
  	Xilinx_pre_fn	pre;
  	Xilinx_pgm_fn	pgm;
  	Xilinx_init_fn	init;
  	Xilinx_err_fn	err;
  	Xilinx_done_fn	done;
  	Xilinx_clk_fn	clk;
  	Xilinx_cs_fn	cs;
  	Xilinx_wr_fn	wr;
  	Xilinx_rdata_fn	rdata;
  	Xilinx_wdata_fn	wdata;
  	Xilinx_busy_fn	busy;
  	Xilinx_abort_fn	abort;
  	Xilinx_post_fn	post;
875c78934   Wolfgang Denk   Add Xilinx Sparta...
48
49
50
51
52
53
54
55
56
57
  } Xilinx_Spartan3_Slave_Parallel_fns;
  
  /* Slave Serial Implementation function table */
  typedef struct {
  	Xilinx_pre_fn	pre;
  	Xilinx_pgm_fn	pgm;
  	Xilinx_clk_fn	clk;
  	Xilinx_init_fn	init;
  	Xilinx_done_fn	done;
  	Xilinx_wr_fn	wr;
21d39d598   Matthias Fuchs   Add pre and post ...
58
  	Xilinx_post_fn	post;
89083346d   Wolfgang Wegner   add block write f...
59
  	Xilinx_bwr_fn	bwr; /* block write function */
b0bc8b70f   Wolfgang Wegner   add Xilinx_abort_...
60
  	Xilinx_abort_fn abort;
875c78934   Wolfgang Denk   Add Xilinx Sparta...
61
62
63
64
65
  } Xilinx_Spartan3_Slave_Serial_fns;
  
  /* Device Image Sizes
   *********************************************************************/
  /* Spartan-III (1.2V) */
53677ef18   Wolfgang Denk   Big white-space c...
66
67
68
69
70
71
72
73
  #define XILINX_XC3S50_SIZE	439264/8
  #define XILINX_XC3S200_SIZE	1047616/8
  #define XILINX_XC3S400_SIZE	1699136/8
  #define XILINX_XC3S1000_SIZE	3223488/8
  #define XILINX_XC3S1500_SIZE	5214784/8
  #define XILINX_XC3S2000_SIZE	7673024/8
  #define XILINX_XC3S4000_SIZE	11316864/8
  #define XILINX_XC3S5000_SIZE	13271936/8
875c78934   Wolfgang Denk   Add Xilinx Sparta...
74

923efd286   Bruce Adler   add image size an...
75
76
77
78
79
80
  /* Spartan-3E (v3.4) */
  #define	XILINX_XC3S100E_SIZE	581344/8
  #define	XILINX_XC3S250E_SIZE	1353728/8
  #define	XILINX_XC3S500E_SIZE	2270208/8
  #define	XILINX_XC3S1200E_SIZE	3841184/8
  #define	XILINX_XC3S1600E_SIZE	5969696/8
28cdc1c8e   Stefano Babic   fpga: add definit...
81
82
83
84
85
  /*
   * Spartan-6 : the Spartan-6 family can be programmed
   * exactly as the Spartan-3
   */
  #define XILINK_XC6SLX4_SIZE	(3713568/8)
875c78934   Wolfgang Denk   Add Xilinx Sparta...
86
87
  /* Descriptor Macros
   *********************************************************************/
3bff4ffa3   Matthias Fuchs   Add new Xilinx Sp...
88
  /* Spartan-III devices */
875c78934   Wolfgang Denk   Add Xilinx Sparta...
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  #define XILINX_XC3S50_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S50_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S200_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S200_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S400_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S400_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S1000_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S1000_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S1500_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S1500_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S2000_DESC(iface, fn_table, cookie) \
a07faf7b9   Laurent Pinchart   Fix Spartan-3 def...
105
  { Xilinx_Spartan3, iface, XILINX_XC3S2000_SIZE, fn_table, cookie }
875c78934   Wolfgang Denk   Add Xilinx Sparta...
106
107
  
  #define XILINX_XC3S4000_DESC(iface, fn_table, cookie) \
a07faf7b9   Laurent Pinchart   Fix Spartan-3 def...
108
  { Xilinx_Spartan3, iface, XILINX_XC3S4000_SIZE, fn_table, cookie }
875c78934   Wolfgang Denk   Add Xilinx Sparta...
109
110
  
  #define XILINX_XC3S5000_DESC(iface, fn_table, cookie) \
a07faf7b9   Laurent Pinchart   Fix Spartan-3 def...
111
  { Xilinx_Spartan3, iface, XILINX_XC3S5000_SIZE, fn_table, cookie }
875c78934   Wolfgang Denk   Add Xilinx Sparta...
112

923efd286   Bruce Adler   add image size an...
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  /* Spartan-3E devices */
  #define XILINX_XC3S100E_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S100E_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S250E_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S250E_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S500E_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S500E_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S1200E_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S1200E_SIZE, fn_table, cookie }
  
  #define XILINX_XC3S1600E_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINX_XC3S1600E_SIZE, fn_table, cookie }
28cdc1c8e   Stefano Babic   fpga: add definit...
128
129
  #define XILINX_XC6SLX4_DESC(iface, fn_table, cookie) \
  { Xilinx_Spartan3, iface, XILINK_XC6SLX4_SIZE, fn_table, cookie }
875c78934   Wolfgang Denk   Add Xilinx Sparta...
130
  #endif /* _SPARTAN3_H_ */