blob: 8ab7679b48f70c902a8cae36040d94a6805e5396 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Stefan Roesef0ff4692006-08-15 14:15:51 +02007 */
8
9#include <common.h> /* core U-Boot definitions */
10#include <altera.h>
11#include <ACEX1K.h> /* ACEX device family */
12
Stefan Roesef0ff4692006-08-15 14:15:51 +020013/* Define FPGA_DEBUG to get debug printf's */
14#ifdef FPGA_DEBUG
15#define PRINTF(fmt,args...) printf (fmt ,##args)
16#else
17#define PRINTF(fmt,args...)
18#endif
19
20/* Note: The assumption is that we cannot possibly run fast enough to
21 * overrun the device (the Slave Parallel mode can free run at 50MHz).
22 * If there is a need to operate slower, define CONFIG_FPGA_DELAY in
23 * the board config file to slow things down.
24 */
25#ifndef CONFIG_FPGA_DELAY
26#define CONFIG_FPGA_DELAY()
27#endif
28
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029#ifndef CONFIG_SYS_FPGA_WAIT
30#define CONFIG_SYS_FPGA_WAIT CONFIG_SYS_HZ/10 /* 100 ms */
Stefan Roesef0ff4692006-08-15 14:15:51 +020031#endif
32
Wolfgang Denke6a857d2011-07-30 13:33:49 +000033static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize);
34static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize);
Stefan Roesef0ff4692006-08-15 14:15:51 +020035/* static int CYC2_ps_info( Altera_desc *desc ); */
Stefan Roesef0ff4692006-08-15 14:15:51 +020036
37/* ------------------------------------------------------------------------- */
38/* CYCLON2 Generic Implementation */
Wolfgang Denke6a857d2011-07-30 13:33:49 +000039int CYC2_load(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +020040{
41 int ret_val = FPGA_FAIL;
42
43 switch (desc->iface) {
44 case passive_serial:
45 PRINTF ("%s: Launching Passive Serial Loader\n", __FUNCTION__);
46 ret_val = CYC2_ps_load (desc, buf, bsize);
47 break;
48
Michael Jonesee44fb22011-07-14 23:09:41 +000049 case fast_passive_parallel:
50 /* Fast Passive Parallel (FPP) and PS only differ in what is
51 * done in the write() callback. Use the existing PS load
52 * function for FPP, too.
53 */
54 PRINTF ("%s: Launching Fast Passive Parallel Loader\n",
55 __FUNCTION__);
56 ret_val = CYC2_ps_load(desc, buf, bsize);
57 break;
58
Stefan Roesef0ff4692006-08-15 14:15:51 +020059 /* Add new interface types here */
60
61 default:
62 printf ("%s: Unsupported interface type, %d\n",
63 __FUNCTION__, desc->iface);
64 }
65
66 return ret_val;
67}
68
Wolfgang Denke6a857d2011-07-30 13:33:49 +000069int CYC2_dump(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +020070{
71 int ret_val = FPGA_FAIL;
72
73 switch (desc->iface) {
74 case passive_serial:
75 PRINTF ("%s: Launching Passive Serial Dump\n", __FUNCTION__);
76 ret_val = CYC2_ps_dump (desc, buf, bsize);
77 break;
78
79 /* Add new interface types here */
80
81 default:
82 printf ("%s: Unsupported interface type, %d\n",
83 __FUNCTION__, desc->iface);
84 }
85
86 return ret_val;
87}
88
89int CYC2_info( Altera_desc *desc )
90{
91 return FPGA_SUCCESS;
92}
93
Stefan Roesef0ff4692006-08-15 14:15:51 +020094/* ------------------------------------------------------------------------- */
95/* CYCLON2 Passive Serial Generic Implementation */
Wolfgang Denke6a857d2011-07-30 13:33:49 +000096static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +020097{
98 int ret_val = FPGA_FAIL; /* assume the worst */
99 Altera_CYC2_Passive_Serial_fns *fn = desc->iface_fns;
100 int ret = 0;
101
102 PRINTF ("%s: start with interface functions @ 0x%p\n",
103 __FUNCTION__, fn);
104
105 if (fn) {
106 int cookie = desc->cookie; /* make a local copy */
107 unsigned long ts; /* timestamp */
108
109 PRINTF ("%s: Function Table:\n"
110 "ptr:\t0x%p\n"
111 "struct: 0x%p\n"
112 "config:\t0x%p\n"
113 "status:\t0x%p\n"
114 "write:\t0x%p\n"
115 "done:\t0x%p\n\n",
116 __FUNCTION__, &fn, fn, fn->config, fn->status,
117 fn->write, fn->done);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200118#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200119 printf ("Loading FPGA Device %d...", cookie);
120#endif
121
122 /*
123 * Run the pre configuration function if there is one.
124 */
125 if (*fn->pre) {
126 (*fn->pre) (cookie);
127 }
128
129 /* Establish the initial state */
York Sun472d5462013-04-01 11:29:11 -0700130 (*fn->config) (false, true, cookie); /* De-assert nCONFIG */
Stephan Gatzkaa99c0402012-10-22 23:11:41 +0000131 udelay(100);
York Sun472d5462013-04-01 11:29:11 -0700132 (*fn->config) (true, true, cookie); /* Assert nCONFIG */
Stefan Roesef0ff4692006-08-15 14:15:51 +0200133
134 udelay(2); /* T_cfg > 2us */
135
136 /* Wait for nSTATUS to be asserted */
137 ts = get_timer (0); /* get current time */
138 do {
139 CONFIG_FPGA_DELAY ();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200140 if (get_timer (ts) > CONFIG_SYS_FPGA_WAIT) { /* check the time */
Stefan Roesef0ff4692006-08-15 14:15:51 +0200141 puts ("** Timeout waiting for STATUS to go high.\n");
142 (*fn->abort) (cookie);
143 return FPGA_FAIL;
144 }
145 } while (!(*fn->status) (cookie));
146
147 /* Get ready for the burn */
148 CONFIG_FPGA_DELAY ();
149
York Sun472d5462013-04-01 11:29:11 -0700150 ret = (*fn->write) (buf, bsize, true, cookie);
Stefan Roesef0ff4692006-08-15 14:15:51 +0200151 if (ret) {
152 puts ("** Write failed.\n");
153 (*fn->abort) (cookie);
154 return FPGA_FAIL;
155 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200156#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200157 puts(" OK? ...");
158#endif
159
160 CONFIG_FPGA_DELAY ();
161
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200162#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200163 putc (' '); /* terminate the dotted line */
164#endif
165
166 /*
167 * Checking FPGA's CONF_DONE signal - correctly booted ?
168 */
169
170 if ( ! (*fn->done) (cookie) ) {
171 puts ("** Booting failed! CONF_DONE is still deasserted.\n");
172 (*fn->abort) (cookie);
173 return (FPGA_FAIL);
174 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200175#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200176 puts(" OK\n");
177#endif
178
179 ret_val = FPGA_SUCCESS;
180
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200181#ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK
Stefan Roesef0ff4692006-08-15 14:15:51 +0200182 if (ret_val == FPGA_SUCCESS) {
183 puts ("Done.\n");
184 }
185 else {
186 puts ("Fail.\n");
187 }
188#endif
189 (*fn->post) (cookie);
190
191 } else {
192 printf ("%s: NULL Interface function table!\n", __FUNCTION__);
193 }
194
195 return ret_val;
196}
197
Wolfgang Denke6a857d2011-07-30 13:33:49 +0000198static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize)
Stefan Roesef0ff4692006-08-15 14:15:51 +0200199{
200 /* Readback is only available through the Slave Parallel and */
201 /* boundary-scan interfaces. */
202 printf ("%s: Passive Serial Dumping is unavailable\n",
203 __FUNCTION__);
204 return FPGA_FAIL;
205}