Loading...
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | /* * (C) Copyright 2007 * Eran Liberty, Extricom , eran.liberty@gmail.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 * */ #include <common.h> /* core U-Boot definitions */ #include <altera.h> #if defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ALTERA) && defined(CONFIG_FPGA_STRATIX_II) int StratixII_ps_fpp_load (Altera_desc * desc, void *buf, size_t bsize, int isSerial, int isSecure); int StratixII_ps_fpp_dump (Altera_desc * desc, void *buf, size_t bsize); /****************************************************************/ /* Stratix II Generic Implementation */ int StratixII_load (Altera_desc * desc, void *buf, size_t bsize) { int ret_val = FPGA_FAIL; switch (desc->iface) { case passive_serial: ret_val = StratixII_ps_fpp_load (desc, buf, bsize, 1, 0); break; case fast_passive_parallel: ret_val = StratixII_ps_fpp_load (desc, buf, bsize, 0, 0); break; case fast_passive_parallel_security: ret_val = StratixII_ps_fpp_load (desc, buf, bsize, 0, 1); break; /* Add new interface types here */ default: printf ("%s: Unsupported interface type, %d\n", __FUNCTION__, desc->iface); } return ret_val; } int StratixII_dump (Altera_desc * desc, void *buf, size_t bsize) { int ret_val = FPGA_FAIL; switch (desc->iface) { case passive_serial: case fast_passive_parallel: case fast_passive_parallel_security: ret_val = StratixII_ps_fpp_dump (desc, buf, bsize); break; /* Add new interface types here */ default: printf ("%s: Unsupported interface type, %d\n", __FUNCTION__, desc->iface); } return ret_val; } int StratixII_info (Altera_desc * desc) { return FPGA_SUCCESS; } int StratixII_reloc (Altera_desc * desc, ulong reloc_offset) { int i; uint32_t dest = (uint32_t) desc & 0xff000000; /* we assume a relocated code and non relocated code has different upper 8 bits */ if (dest != ((uint32_t) desc->iface_fns & 0xff000000)) { desc->iface_fns = (void *)((uint32_t) (desc->iface_fns) + reloc_offset); } for (i = 0; i < sizeof (altera_board_specific_func) / sizeof (void *); i++) { if (dest != ((uint32_t) (((void **)(desc->iface_fns))[i]) & 0xff000000)) { ((void **)(desc->iface_fns))[i] = (void *)(((uint32_t) (((void **)(desc->iface_fns))[i])) + reloc_offset); } } return FPGA_SUCCESS; } int StratixII_ps_fpp_dump (Altera_desc * desc, void *buf, size_t bsize) { printf ("Stratix II Fast Passive Parallel dump is not implemented\n"); return FPGA_FAIL; } int StratixII_ps_fpp_load (Altera_desc * desc, void *buf, size_t bsize, int isSerial, int isSecure) { altera_board_specific_func *fns; int cookie; int ret_val = FPGA_FAIL; int bytecount; char *buff = buf; int i; if (!desc) { printf ("%s(%d) Altera_desc missing\n", __FUNCTION__, __LINE__); return FPGA_FAIL; } if (!buff) { printf ("%s(%d) buffer is missing\n", __FUNCTION__, __LINE__); return FPGA_FAIL; } if (!bsize) { printf ("%s(%d) size is zero\n", __FUNCTION__, __LINE__); return FPGA_FAIL; } if (!desc->iface_fns) { printf ("%s(%d) Altera_desc function interface table is missing\n", __FUNCTION__, __LINE__); return FPGA_FAIL; } fns = (altera_board_specific_func *) (desc->iface_fns); cookie = desc->cookie; if (! (fns->config && fns->status && fns->done && fns->data && fns->abort)) { printf ("%s(%d) Missing some function in the function interface table\n", __FUNCTION__, __LINE__); return FPGA_FAIL; } /* 1. give board specific a chance to do anything before we start */ if (fns->pre) { if ((ret_val = fns->pre (cookie)) < 0) { return ret_val; } } /* from this point on we must fail gracfully by calling lower layer abort */ /* 2. Strat burn cycle by deasserting config for t_CFG and waiting t_CF2CK after reaserted */ fns->config (0, 1, cookie); udelay (5); /* nCONFIG low pulse width 2usec */ fns->config (1, 1, cookie); udelay (100); /* nCONFIG high to first rising edge on DCLK */ /* 3. Start the Data cycle with clk deasserted */ bytecount = 0; fns->clk (0, 1, cookie); printf ("loading to fpga "); while (bytecount < bsize) { /* 3.1 check stratix has not signaled us an error */ if (fns->status (cookie) != 1) { printf ("\n%s(%d) Stratix failed (byte transfered till failure 0x%x)\n", __FUNCTION__, __LINE__, bytecount); fns->abort (cookie); return FPGA_FAIL; } if (isSerial) { int i; uint8_t data = buff[bytecount++]; for (i = 0; i < 8; i++) { /* 3.2(ps) put data on the bus */ fns->data ((data >> i) & 1, 1, cookie); /* 3.3(ps) clock once */ fns->clk (1, 1, cookie); fns->clk (0, 1, cookie); } } else { /* 3.2(fpp) put data on the bus */ fns->data (buff[bytecount++], 1, cookie); /* 3.3(fpp) clock once */ fns->clk (1, 1, cookie); fns->clk (0, 1, cookie); /* 3.4(fpp) for secure cycle push 3 more clocks */ for (i = 0; isSecure && i < 3; i++) { fns->clk (1, 1, cookie); fns->clk (0, 1, cookie); } } /* 3.5 while clk is deasserted it is safe to print some progress indication */ if ((bytecount % (bsize / 100)) == 0) { printf ("\b\b\b%02d\%", bytecount * 100 / bsize); } } /* 4. Set one last clock and check conf done signal */ fns->clk (1, 1, cookie); udelay (100); if (!fns->done (cookie)) { printf (" error!.\n"); fns->abort (cookie); return FPGA_FAIL; } else { printf ("\b\b\b done.\n"); } /* 5. call lower layer post configuration */ if (fns->post) { if ((ret_val = fns->post (cookie)) < 0) { fns->abort (cookie); return ret_val; } } return FPGA_SUCCESS; } #endif /* defined(CONFIG_FPGA) && defined(CONFIG_FPGA_ALTERA) && defined(CONFIG_FPGA_STRATIX_II) */ |