blob: 62c324386c0bf16255cf0a80da8558085434785b [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
stroese0621f6f2004-12-16 18:43:13 +00002 * (C) Copyright 2001-2004
wdenkc6097192002-11-03 00:24:07 +00003 * 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>
Matthias Fuchsbb57ad42009-02-20 10:19:19 +010027#include <asm/io.h>
wdenkc6097192002-11-03 00:24:07 +000028#include <command.h>
29
30/* ------------------------------------------------------------------------- */
31
32#ifdef FPGA_DEBUG
33#define DBG(x...) printf(x)
34#else
35#define DBG(x...)
36#endif /* DEBUG */
37
38#define MAX_ONES 226
39
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040#ifdef CONFIG_SYS_FPGA_PRG
41# define FPGA_PRG CONFIG_SYS_FPGA_PRG /* FPGA program pin (ppc output) */
42# define FPGA_CLK CONFIG_SYS_FPGA_CLK /* FPGA clk pin (ppc output) */
43# define FPGA_DATA CONFIG_SYS_FPGA_DATA /* FPGA data pin (ppc output) */
44# define FPGA_DONE CONFIG_SYS_FPGA_DONE /* FPGA done pin (ppc input) */
45# define FPGA_INIT CONFIG_SYS_FPGA_INIT /* FPGA init pin (ppc input) */
wdenkc6097192002-11-03 00:24:07 +000046#else
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +010047# define FPGA_PRG 0x04000000 /* FPGA program pin (ppc output) */
48# define FPGA_CLK 0x02000000 /* FPGA clk pin (ppc output) */
49# define FPGA_DATA 0x01000000 /* FPGA data pin (ppc output) */
50# define FPGA_DONE 0x00800000 /* FPGA done pin (ppc input) */
51# define FPGA_INIT 0x00400000 /* FPGA init pin (ppc input) */
wdenkc6097192002-11-03 00:24:07 +000052#endif
53
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +010054#define ERROR_FPGA_PRG_INIT_LOW -1 /* Timeout after PRG* asserted */
55#define ERROR_FPGA_PRG_INIT_HIGH -2 /* Timeout after PRG* deasserted */
56#define ERROR_FPGA_PRG_DONE -3 /* Timeout after programming */
wdenkc6097192002-11-03 00:24:07 +000057
stroese0621f6f2004-12-16 18:43:13 +000058#ifndef SET_FPGA
Matthias Fuchsbb57ad42009-02-20 10:19:19 +010059# define SET_FPGA(data) out_be32((void *)GPIO0_OR, data)
stroese0621f6f2004-12-16 18:43:13 +000060#endif
wdenkc6097192002-11-03 00:24:07 +000061
stroese0621f6f2004-12-16 18:43:13 +000062#ifdef FPGA_PROG_ACTIVE_HIGH
63# define FPGA_PRG_LOW FPGA_PRG
64# define FPGA_PRG_HIGH 0
65#else
66# define FPGA_PRG_LOW 0
67# define FPGA_PRG_HIGH FPGA_PRG
68#endif
69
70#define FPGA_CLK_LOW 0
71#define FPGA_CLK_HIGH FPGA_CLK
72
73#define FPGA_DATA_LOW 0
74#define FPGA_DATA_HIGH FPGA_DATA
75
76#define FPGA_WRITE_1 { \
77 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_HIGH); /* set clock to 0 */ \
78 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_HIGH); /* set data to 1 */ \
79 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set clock to 1 */ \
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +010080 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH);} /* set data to 1 */
wdenkc6097192002-11-03 00:24:07 +000081
82#define FPGA_WRITE_0 { \
stroese0621f6f2004-12-16 18:43:13 +000083 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_HIGH); /* set clock to 0 */ \
84 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_LOW | FPGA_DATA_LOW); /* set data to 0 */ \
85 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_LOW); /* set clock to 1 */ \
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +010086 SET_FPGA(FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH);} /* set data to 1 */
stroese0621f6f2004-12-16 18:43:13 +000087
88#ifndef FPGA_DONE_STATE
Matthias Fuchsbb57ad42009-02-20 10:19:19 +010089# define FPGA_DONE_STATE (in_be32((void *)GPIO0_IR) & FPGA_DONE)
stroese0621f6f2004-12-16 18:43:13 +000090#endif
91#ifndef FPGA_INIT_STATE
Matthias Fuchsbb57ad42009-02-20 10:19:19 +010092# define FPGA_INIT_STATE (in_be32((void *)GPIO0_IR) & FPGA_INIT)
stroese0621f6f2004-12-16 18:43:13 +000093#endif
wdenkc6097192002-11-03 00:24:07 +000094
95
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +010096static int fpga_boot (const unsigned char *fpgadata, int size)
wdenkc6097192002-11-03 00:24:07 +000097{
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +010098 int i, index, len;
99 int count;
100 unsigned char b;
wdenkc6097192002-11-03 00:24:07 +0000101
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200102#ifdef CONFIG_SYS_FPGA_SPARTAN2
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100103 int j;
wdenkc6097192002-11-03 00:24:07 +0000104#else
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100105 int bit;
wdenkc6097192002-11-03 00:24:07 +0000106#endif
107
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100108 /* display infos on fpgaimage */
109 index = 15;
110 for (i = 0; i < 4; i++) {
111 len = fpgadata[index];
112 DBG ("FPGA: %s\n", &(fpgadata[index + 1]));
113 index += len + 3;
114 }
wdenkc6097192002-11-03 00:24:07 +0000115
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116#ifdef CONFIG_SYS_FPGA_SPARTAN2
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100117 /* search for preamble 0xFFFFFFFF */
118 while (1) {
119 if ((fpgadata[index] == 0xff) && (fpgadata[index + 1] == 0xff)
120 && (fpgadata[index + 2] == 0xff)
121 && (fpgadata[index + 3] == 0xff))
122 break; /* preamble found */
123 else
124 index++;
125 }
126#else
127 /* search for preamble 0xFF2X */
128 for (index = 0; index < size - 1; index++) {
129 if ((fpgadata[index] == 0xff)
130 && ((fpgadata[index + 1] & 0xf0) == 0x30))
131 break;
132 }
133 index += 2;
134#endif
135
136 DBG ("FPGA: configdata starts at position 0x%x\n", index);
137 DBG ("FPGA: length of fpga-data %d\n", size - index);
138
139 /*
140 * Setup port pins for fpga programming
141 */
stroese0621f6f2004-12-16 18:43:13 +0000142#ifndef CONFIG_M5249
Matthias Fuchsbb57ad42009-02-20 10:19:19 +0100143 out_be32 ((void *)GPIO0_ODR, 0x00000000); /* no open drain pins */
144 /* setup for output */
145 out_be32 ((void *)GPIO0_TCR,
146 in_be32 ((void *)GPIO0_TCR) |
147 FPGA_PRG | FPGA_CLK | FPGA_DATA);
stroese0621f6f2004-12-16 18:43:13 +0000148#endif
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100149 SET_FPGA (FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set pins to high */
wdenkc6097192002-11-03 00:24:07 +0000150
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100151 DBG ("%s, ", (FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE");
152 DBG ("%s\n", (FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT");
wdenkc6097192002-11-03 00:24:07 +0000153
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100154 /*
155 * Init fpga by asserting and deasserting PROGRAM*
156 */
157 SET_FPGA (FPGA_PRG_LOW | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set prog active */
wdenkc6097192002-11-03 00:24:07 +0000158
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100159 /* Wait for FPGA init line low */
160 count = 0;
161 while (FPGA_INIT_STATE) {
162 udelay (1000); /* wait 1ms */
163 /* Check for timeout - 100us max, so use 3ms */
164 if (count++ > 3) {
165 DBG ("FPGA: Booting failed!\n");
166 return ERROR_FPGA_PRG_INIT_LOW;
167 }
wdenk8bde7f72003-06-27 21:31:46 +0000168 }
wdenkc6097192002-11-03 00:24:07 +0000169
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100170 DBG ("%s, ", (FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE");
171 DBG ("%s\n", (FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT");
wdenkc6097192002-11-03 00:24:07 +0000172
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100173 /* deassert PROGRAM* */
174 SET_FPGA (FPGA_PRG_HIGH | FPGA_CLK_HIGH | FPGA_DATA_HIGH); /* set prog inactive */
wdenkc6097192002-11-03 00:24:07 +0000175
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100176 /* Wait for FPGA end of init period . */
177 count = 0;
178 while (!(FPGA_INIT_STATE)) {
179 udelay (1000); /* wait 1ms */
180 /* Check for timeout */
181 if (count++ > 3) {
182 DBG ("FPGA: Booting failed!\n");
183 return ERROR_FPGA_PRG_INIT_HIGH;
184 }
wdenk8bde7f72003-06-27 21:31:46 +0000185 }
wdenkc6097192002-11-03 00:24:07 +0000186
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100187 DBG ("%s, ", (FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE");
188 DBG ("%s\n", (FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT");
wdenkc6097192002-11-03 00:24:07 +0000189
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100190 DBG ("write configuration data into fpga\n");
191 /* write configuration-data into fpga... */
wdenkc6097192002-11-03 00:24:07 +0000192
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200193#ifdef CONFIG_SYS_FPGA_SPARTAN2
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100194 /*
195 * Load uncompressed image into fpga
196 */
197 for (i = index; i < size; i++) {
198 b = fpgadata[i];
199 for (j = 0; j < 8; j++) {
200 if ((b & 0x80) == 0x80) {
201 FPGA_WRITE_1;
202 } else {
203 FPGA_WRITE_0;
204 }
205 b <<= 1;
206 }
wdenk8bde7f72003-06-27 21:31:46 +0000207 }
wdenkc6097192002-11-03 00:24:07 +0000208#else
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100209 /* send 0xff 0x20 */
210 FPGA_WRITE_1;
211 FPGA_WRITE_1;
212 FPGA_WRITE_1;
213 FPGA_WRITE_1;
214 FPGA_WRITE_1;
215 FPGA_WRITE_1;
216 FPGA_WRITE_1;
217 FPGA_WRITE_1;
218 FPGA_WRITE_0;
219 FPGA_WRITE_0;
220 FPGA_WRITE_1;
221 FPGA_WRITE_0;
222 FPGA_WRITE_0;
223 FPGA_WRITE_0;
224 FPGA_WRITE_0;
225 FPGA_WRITE_0;
wdenkc6097192002-11-03 00:24:07 +0000226
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100227 /*
228 ** Bit_DeCompression
229 ** Code 1 .. maxOnes : n '1's followed by '0'
230 ** maxOnes + 1 .. maxOnes + 1 : n - 1 '1's no '0'
231 ** maxOnes + 2 .. 254 : n - (maxOnes + 2) '0's followed by '1'
232 ** 255 : '1'
233 */
wdenkc6097192002-11-03 00:24:07 +0000234
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100235 for (i = index; i < size; i++) {
236 b = fpgadata[i];
237 if ((b >= 1) && (b <= MAX_ONES)) {
238 for (bit = 0; bit < b; bit++) {
239 FPGA_WRITE_1;
240 }
241 FPGA_WRITE_0;
242 } else if (b == (MAX_ONES + 1)) {
243 for (bit = 1; bit < b; bit++) {
244 FPGA_WRITE_1;
245 }
246 } else if ((b >= (MAX_ONES + 2)) && (b <= 254)) {
247 for (bit = 0; bit < (b - (MAX_ONES + 2)); bit++) {
248 FPGA_WRITE_0;
249 }
250 FPGA_WRITE_1;
251 } else if (b == 255) {
252 FPGA_WRITE_1;
253 }
wdenkc6097192002-11-03 00:24:07 +0000254 }
wdenkc6097192002-11-03 00:24:07 +0000255#endif
256
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100257 DBG ("%s, ", (FPGA_DONE_STATE == 0) ? "NOT DONE" : "DONE");
258 DBG ("%s\n", (FPGA_INIT_STATE == 0) ? "NOT INIT" : "INIT");
wdenkc6097192002-11-03 00:24:07 +0000259
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100260 /*
261 * Check if fpga's DONE signal - correctly booted ?
262 */
wdenkc6097192002-11-03 00:24:07 +0000263
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100264 /* Wait for FPGA end of programming period . */
265 count = 0;
266 while (!(FPGA_DONE_STATE)) {
267 udelay (1000); /* wait 1ms */
268 /* Check for timeout */
269 if (count++ > 3) {
270 DBG ("FPGA: Booting failed!\n");
271 return ERROR_FPGA_PRG_DONE;
272 }
wdenk8bde7f72003-06-27 21:31:46 +0000273 }
wdenkc6097192002-11-03 00:24:07 +0000274
Wolfgang Denk2b3e7e62008-03-09 10:50:41 +0100275 DBG ("FPGA: Booting successful!\n");
276 return 0;
wdenkc6097192002-11-03 00:24:07 +0000277}