]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/esd/common/fpga.c
common/kgdb.c: fix 'dereferencing type-punned pointer' warning
[people/ms/u-boot.git] / board / esd / common / fpga.c
CommitLineData
c609719b 1/*
0621f6f9 2 * (C) Copyright 2001-2004
c609719b
WD
3 * Matthias Fuchs, esd gmbh germany, matthias.fuchs@esd-electronics.com
4 * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <asm/processor.h>
27#include <command.h>
28
29/* ------------------------------------------------------------------------- */
30
31#ifdef FPGA_DEBUG
32#define DBG(x...) printf(x)
33#else
34#define DBG(x...)
35#endif /* DEBUG */
36
37#define MAX_ONES 226
38
c609719b
WD
39#ifdef CFG_FPGA_PRG
40# define FPGA_PRG CFG_FPGA_PRG /* FPGA program pin (ppc output)*/
41# define FPGA_CLK CFG_FPGA_CLK /* FPGA clk pin (ppc output) */
42# define FPGA_DATA CFG_FPGA_DATA /* FPGA data pin (ppc output) */
43# define FPGA_DONE CFG_FPGA_DONE /* FPGA done pin (ppc input) */
44# define FPGA_INIT CFG_FPGA_INIT /* FPGA init pin (ppc input) */
45#else
46# define FPGA_PRG 0x04000000 /* FPGA program pin (ppc output) */
47# define FPGA_CLK 0x02000000 /* FPGA clk pin (ppc output) */
48# define FPGA_DATA 0x01000000 /* FPGA data pin (ppc output) */
49# define FPGA_DONE 0x00800000 /* FPGA done pin (ppc input) */
50# define FPGA_INIT 0x00400000 /* FPGA init pin (ppc input) */
51#endif
52
53#define ERROR_FPGA_PRG_INIT_LOW -1 /* Timeout after PRG* asserted */
54#define ERROR_FPGA_PRG_INIT_HIGH -2 /* Timeout after PRG* deasserted */
55#define ERROR_FPGA_PRG_DONE -3 /* Timeout after programming */
56
0621f6f9
SR
57#ifndef SET_FPGA
58# define SET_FPGA(data) out32(GPIO0_OR, data)
59#endif
60
61#ifdef FPGA_PROG_ACTIVE_HIGH
62# define FPGA_PRG_LOW FPGA_PRG
63# define FPGA_PRG_HIGH 0
64#else
65# define FPGA_PRG_LOW 0
66# define FPGA_PRG_HIGH FPGA_PRG
67#endif
68
69#define FPGA_CLK_LOW 0
70#define FPGA_CLK_HIGH FPGA_CLK
c609719b 71
0621f6f9
SR
72#define FPGA_DATA_LOW 0
73#define FPGA_DATA_HIGH FPGA_DATA
74
75#define FPGA_WRITE_1 { \
76 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_HIGH); /* set clock to 0 */ \
77 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_HIGH); /* set data to 1 */ \
78 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set clock to 1 */ \
79 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH);} /* set data to 1 */
c609719b
WD
80
81#define FPGA_WRITE_0 { \
0621f6f9
SR
82 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_HIGH); /* set clock to 0 */ \
83 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_LOW); /* set data to 0 */ \
84 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_LOW); /* set clock to 1 */ \
85 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH);} /* set data to 1 */
86
87#ifndef FPGA_DONE_STATE
88# define FPGA_DONE_STATE (in32(GPIO0_IR) & FPGA_DONE)
89#endif
90#ifndef FPGA_INIT_STATE
91# define FPGA_INIT_STATE (in32(GPIO0_IR) & FPGA_INIT)
92#endif
c609719b
WD
93
94
58f3c57c 95static int fpga_boot(const unsigned char *fpgadata, int size)
c609719b
WD
96{
97 int i,index,len;
98 int count;
8d4f4a83 99 unsigned char b;
c609719b
WD
100#ifdef CFG_FPGA_SPARTAN2
101 int j;
102#else
c609719b
WD
103 int bit;
104#endif
105
106 /* display infos on fpgaimage */
107 index = 15;
108 for (i=0; i<4; i++)
109 {
110 len = fpgadata[index];
111 DBG("FPGA: %s\n", &(fpgadata[index+1]));
112 index += len+3;
113 }
114
115#ifdef CFG_FPGA_SPARTAN2
116 /* search for preamble 0xFFFFFFFF */
117 while (1)
118 {
119 if ((fpgadata[index] == 0xff) && (fpgadata[index+1] == 0xff) &&
8bde7f77
WD
120 (fpgadata[index+2] == 0xff) && (fpgadata[index+3] == 0xff))
121 break; /* preamble found */
c609719b 122 else
8bde7f77 123 index++;
c609719b
WD
124 }
125#else
126 /* search for preamble 0xFF2X */
127 for (index = 0; index < size-1 ; index++)
128 {
129 if ((fpgadata[index] == 0xff) && ((fpgadata[index+1] & 0xf0) == 0x30))
130 break;
131 }
132 index += 2;
133#endif
134
135 DBG("FPGA: configdata starts at position 0x%x\n",index);
136 DBG("FPGA: length of fpga-data %d\n", size-index);
137
138 /*
139 * Setup port pins for fpga programming
140 */
0621f6f9 141#ifndef CONFIG_M5249
c231d00f
SR
142 out32(GPIO0_ODR, 0x00000000); /* no open drain pins */
143 out32(GPIO0_TCR, in32(GPIO0_TCR) | FPGA_PRG | FPGA_CLK | FPGA_DATA); /* setup for output */
0621f6f9
SR
144#endif
145 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set pins to high */
c609719b 146
0621f6f9
SR
147 DBG("%s, ",(FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE" );
148 DBG("%s\n",(FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT" );
c609719b
WD
149
150 /*
151 * Init fpga by asserting and deasserting PROGRAM*
152 */
0621f6f9 153 SET_FPGA(FPGA_PRG_LOW | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set prog active */
c609719b
WD
154
155 /* Wait for FPGA init line low */
156 count = 0;
0621f6f9 157 while (FPGA_INIT_STATE)
c609719b
WD
158 {
159 udelay(1000); /* wait 1ms */
160 /* Check for timeout - 100us max, so use 3ms */
161 if (count++ > 3)
8bde7f77
WD
162 {
163 DBG("FPGA: Booting failed!\n");
164 return ERROR_FPGA_PRG_INIT_LOW;
165 }
c609719b
WD
166 }
167
0621f6f9
SR
168 DBG("%s, ",(FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE" );
169 DBG("%s\n",(FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT" );
c609719b
WD
170
171 /* deassert PROGRAM* */
0621f6f9 172 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set prog inactive */
c609719b
WD
173
174 /* Wait for FPGA end of init period . */
175 count = 0;
0621f6f9 176 while (!(FPGA_INIT_STATE))
c609719b
WD
177 {
178 udelay(1000); /* wait 1ms */
179 /* Check for timeout */
180 if (count++ > 3)
8bde7f77
WD
181 {
182 DBG("FPGA: Booting failed!\n");
183 return ERROR_FPGA_PRG_INIT_HIGH;
184 }
c609719b
WD
185 }
186
0621f6f9
SR
187 DBG("%s, ",(FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE" );
188 DBG("%s\n",(FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT" );
c609719b
WD
189
190 DBG("write configuration data into fpga\n");
191 /* write configuration-data into fpga... */
192
193#ifdef CFG_FPGA_SPARTAN2
194 /*
195 * Load uncompressed image into fpga
196 */
197 for (i=index; i<size; i++)
198 {
8d4f4a83 199 b = fpgadata[i];
c609719b 200 for (j=0; j<8; j++)
8bde7f77 201 {
8d4f4a83 202 if ((b & 0x80) == 0x80)
c609719b 203 {
8bde7f77 204 FPGA_WRITE_1;
c609719b 205 }
8bde7f77 206 else
c609719b 207 {
8bde7f77 208 FPGA_WRITE_0;
c609719b 209 }
8d4f4a83 210 b <<= 1;
8bde7f77 211 }
c609719b
WD
212 }
213#else
214 /* send 0xff 0x20 */
215 FPGA_WRITE_1; FPGA_WRITE_1; FPGA_WRITE_1; FPGA_WRITE_1;
216 FPGA_WRITE_1; FPGA_WRITE_1; FPGA_WRITE_1; FPGA_WRITE_1;
217 FPGA_WRITE_0; FPGA_WRITE_0; FPGA_WRITE_1; FPGA_WRITE_0;
218 FPGA_WRITE_0; FPGA_WRITE_0; FPGA_WRITE_0; FPGA_WRITE_0;
219
220 /*
221 ** Bit_DeCompression
222 ** Code 1 .. maxOnes : n '1's followed by '0'
223 ** maxOnes + 1 .. maxOnes + 1 : n - 1 '1's no '0'
224 ** maxOnes + 2 .. 254 : n - (maxOnes + 2) '0's followed by '1'
225 ** 255 : '1'
226 */
227
228 for (i=index; i<size; i++)
229 {
230 b = fpgadata[i];
231 if ((b >= 1) && (b <= MAX_ONES))
232 {
233 for(bit=0; bit<b; bit++)
8bde7f77
WD
234 {
235 FPGA_WRITE_1;
236 }
c609719b
WD
237 FPGA_WRITE_0;
238 }
239 else if (b == (MAX_ONES+1))
240 {
241 for(bit=1; bit<b; bit++)
8bde7f77
WD
242 {
243 FPGA_WRITE_1;
244 }
c609719b
WD
245 }
246 else if ((b >= (MAX_ONES+2)) && (b <= 254))
247 {
248 for(bit=0; bit<(b-(MAX_ONES+2)); bit++)
8bde7f77
WD
249 {
250 FPGA_WRITE_0;
251 }
252 FPGA_WRITE_1;
c609719b
WD
253 }
254 else if (b == 255)
8bde7f77
WD
255 {
256 FPGA_WRITE_1;
257 }
c609719b
WD
258 }
259#endif
260
0621f6f9
SR
261 DBG("%s, ",(FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE" );
262 DBG("%s\n",(FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT" );
c609719b
WD
263
264 /*
265 * Check if fpga's DONE signal - correctly booted ?
266 */
267
268 /* Wait for FPGA end of programming period . */
269 count = 0;
0621f6f9 270 while (!(FPGA_DONE_STATE))
c609719b
WD
271 {
272 udelay(1000); /* wait 1ms */
273 /* Check for timeout */
274 if (count++ > 3)
8bde7f77
WD
275 {
276 DBG("FPGA: Booting failed!\n");
277 return ERROR_FPGA_PRG_DONE;
278 }
c609719b
WD
279 }
280
281 DBG("FPGA: Booting successful!\n");
282 return 0;
283}