blob: 6b734c2b3b35cb15026d3f1f65bd3d608085b7c7 [file] [log] [blame]
Stefan Roesef0ff4692006-08-15 14:15:51 +02001/*
2 * (C) Copyright 2006
3 * Heiko Schocher, hs@denx.de
4 * Based on ACE1XK.c
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
26#include <common.h> /* core U-Boot definitions */
27#include <altera.h>
28#include <ACEX1K.h> /* ACEX device family */
29
Stefan Roesef0ff4692006-08-15 14:15:51 +020030/* Define FPGA_DEBUG to get debug printf's */
31#ifdef FPGA_DEBUG
32#define PRINTF(fmt,args...) printf (fmt ,##args)
33#else
34#define PRINTF(fmt,args...)
35#endif
36
37/* Note: The assumption is that we cannot possibly run fast enough to
38 * overrun the device (the Slave Parallel mode can free run at 50MHz).
39 * If there is a need to operate slower, define CONFIG_FPGA_DELAY in
40 * the board config file to slow things down.
41 */
42#ifndef CONFIG_FPGA_DELAY
43#define CONFIG_FPGA_DELAY()
44#endif
45
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046#ifndef CONFIG_SYS_FPGA_WAIT
47#define CONFIG_SYS_FPGA_WAIT CONFIG_SYS_HZ/10 /* 100 ms */
Stefan Roesef0ff4692006-08-15 14:15:51 +020048#endif
49
Wolfgang Denke6a857d2011-07-30 13:33:49 +000050static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize);
51static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize);
Stefan Roesef0ff4692006-08-15 14:15:51 +020052/* static int CYC2_ps_info( Altera_desc *desc ); */
Stefan Roesef0ff4692006-08-15 14:15:51 +020053
54/* ------------------------------------------------------------------------- */
55/* CYCLON2 Generic Implementation */
Wolfgang Denke6a857d2011-07-30 13:33:49 +000056int CYC2_load(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +020057{
58 int ret_val = FPGA_FAIL;
59
60 switch (desc->iface) {
61 case passive_serial:
62 PRINTF ("%s: Launching Passive Serial Loader\n", __FUNCTION__);
63 ret_val = CYC2_ps_load (desc, buf, bsize);
64 break;
65
Michael Jonesee44fb22011-07-14 23:09:41 +000066 case fast_passive_parallel:
67 /* Fast Passive Parallel (FPP) and PS only differ in what is
68 * done in the write() callback. Use the existing PS load
69 * function for FPP, too.
70 */
71 PRINTF ("%s: Launching Fast Passive Parallel Loader\n",
72 __FUNCTION__);
73 ret_val = CYC2_ps_load(desc, buf, bsize);
74 break;
75
Stefan Roesef0ff4692006-08-15 14:15:51 +020076 /* Add new interface types here */
77
78 default:
79 printf ("%s: Unsupported interface type, %d\n",
80 __FUNCTION__, desc->iface);
81 }
82
83 return ret_val;
84}
85
Wolfgang Denke6a857d2011-07-30 13:33:49 +000086int CYC2_dump(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +020087{
88 int ret_val = FPGA_FAIL;
89
90 switch (desc->iface) {
91 case passive_serial:
92 PRINTF ("%s: Launching Passive Serial Dump\n", __FUNCTION__);
93 ret_val = CYC2_ps_dump (desc, buf, bsize);
94 break;
95
96 /* Add new interface types here */
97
98 default:
99 printf ("%s: Unsupported interface type, %d\n",
100 __FUNCTION__, desc->iface);
101 }
102
103 return ret_val;
104}
105
106int CYC2_info( Altera_desc *desc )
107{
108 return FPGA_SUCCESS;
109}
110
Stefan Roesef0ff4692006-08-15 14:15:51 +0200111/* ------------------------------------------------------------------------- */
112/* CYCLON2 Passive Serial Generic Implementation */
Wolfgang Denke6a857d2011-07-30 13:33:49 +0000113static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +0200114{
115 int ret_val = FPGA_FAIL; /* assume the worst */
116 Altera_CYC2_Passive_Serial_fns *fn = desc->iface_fns;
117 int ret = 0;
118
119 PRINTF ("%s: start with interface functions @ 0x%p\n",
120 __FUNCTION__, fn);
121
122 if (fn) {
123 int cookie = desc->cookie; /* make a local copy */
124 unsigned long ts; /* timestamp */
125
126 PRINTF ("%s: Function Table:\n"
127 "ptr:\t0x%p\n"
128 "struct: 0x%p\n"
129 "config:\t0x%p\n"
130 "status:\t0x%p\n"
131 "write:\t0x%p\n"
132 "done:\t0x%p\n\n",
133 __FUNCTION__, &fn, fn, fn->config, fn->status,
134 fn->write, fn->done);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200135#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200136 printf ("Loading FPGA Device %d...", cookie);
137#endif
138
139 /*
140 * Run the pre configuration function if there is one.
141 */
142 if (*fn->pre) {
143 (*fn->pre) (cookie);
144 }
145
146 /* Establish the initial state */
York Sun472d5462013-04-01 11:29:11 -0700147 (*fn->config) (false, true, cookie); /* De-assert nCONFIG */
Stephan Gatzkaa99c0402012-10-22 23:11:41 +0000148 udelay(100);
York Sun472d5462013-04-01 11:29:11 -0700149 (*fn->config) (true, true, cookie); /* Assert nCONFIG */
Stefan Roesef0ff4692006-08-15 14:15:51 +0200150
151 udelay(2); /* T_cfg > 2us */
152
153 /* Wait for nSTATUS to be asserted */
154 ts = get_timer (0); /* get current time */
155 do {
156 CONFIG_FPGA_DELAY ();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200157 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
Stefan Roesef0ff4692006-08-15 14:15:51 +0200158 puts ("** Timeout waiting for STATUS to go high.\n");
159 (*fn->abort) (cookie);
160 return FPGA_FAIL;
161 }
162 } while (!(*fn->status) (cookie));
163
164 /* Get ready for the burn */
165 CONFIG_FPGA_DELAY ();
166
York Sun472d5462013-04-01 11:29:11 -0700167 ret = (*fn->write) (buf, bsize, true, cookie);
Stefan Roesef0ff4692006-08-15 14:15:51 +0200168 if (ret) {
169 puts ("** Write failed.\n");
170 (*fn->abort) (cookie);
171 return FPGA_FAIL;
172 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200173#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200174 puts(" OK? ...");
175#endif
176
177 CONFIG_FPGA_DELAY ();
178
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200179#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200180 putc (' '); /* terminate the dotted line */
181#endif
182
183 /*
184 * Checking FPGA's CONF_DONE signal - correctly booted ?
185 */
186
187 if ( ! (*fn->done) (cookie) ) {
188 puts ("** Booting failed! CONF_DONE is still deasserted.\n");
189 (*fn->abort) (cookie);
190 return (FPGA_FAIL);
191 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200192#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200193 puts(" OK\n");
194#endif
195
196 ret_val = FPGA_SUCCESS;
197
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200198#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200199 if (ret_val == FPGA_SUCCESS) {
200 puts ("Done.\n");
201 }
202 else {
203 puts ("Fail.\n");
204 }
205#endif
206 (*fn->post) (cookie);
207
208 } else {
209 printf ("%s: NULL Interface function table!\n", __FUNCTION__);
210 }
211
212 return ret_val;
213}
214
Wolfgang Denke6a857d2011-07-30 13:33:49 +0000215static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +0200216{
217 /* Readback is only available through the Slave Parallel and */
218 /* boundary-scan interfaces. */
219 printf ("%s: Passive Serial Dumping is unavailable\n",
220 __FUNCTION__);
221 return FPGA_FAIL;
222}