Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2006 |
| 4 | * Heiko Schocher, hs@denx.de |
| 5 | * Based on ACE1XK.c |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> /* core U-Boot definitions */ |
| 9 | #include <altera.h> |
| 10 | #include <ACEX1K.h> /* ACEX device family */ |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 11 | #include <linux/delay.h> |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 12 | |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 13 | /* Define FPGA_DEBUG to get debug printf's */ |
| 14 | #ifdef FPGA_DEBUG |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 15 | #define PRINTF(fmt, args...) printf(fmt, ##args) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 16 | #else |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 17 | #define PRINTF(fmt, args...) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 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-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 29 | #ifndef CONFIG_SYS_FPGA_WAIT |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 30 | #define CONFIG_SYS_FPGA_WAIT CONFIG_SYS_HZ / 10 /* 100 ms */ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 31 | #endif |
| 32 | |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 33 | static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize); |
| 34 | static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 35 | /* static int CYC2_ps_info( Altera_desc *desc ); */ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 36 | |
| 37 | /* ------------------------------------------------------------------------- */ |
| 38 | /* CYCLON2 Generic Implementation */ |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 39 | int CYC2_load(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 40 | { |
| 41 | int ret_val = FPGA_FAIL; |
| 42 | |
| 43 | switch (desc->iface) { |
| 44 | case passive_serial: |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 45 | PRINTF("%s: Launching Passive Serial Loader\n", __func__); |
| 46 | ret_val = CYC2_ps_load(desc, buf, bsize); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 47 | break; |
| 48 | |
Michael Jones | ee44fb2 | 2011-07-14 23:09:41 +0000 | [diff] [blame] | 49 | 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 | */ |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 54 | PRINTF("%s: Launching Fast Passive Parallel Loader\n", |
| 55 | __func__); |
Michael Jones | ee44fb2 | 2011-07-14 23:09:41 +0000 | [diff] [blame] | 56 | ret_val = CYC2_ps_load(desc, buf, bsize); |
| 57 | break; |
| 58 | |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 59 | /* Add new interface types here */ |
| 60 | |
| 61 | default: |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 62 | printf("%s: Unsupported interface type, %d\n", |
| 63 | __func__, desc->iface); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | return ret_val; |
| 67 | } |
| 68 | |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 69 | int CYC2_dump(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 70 | { |
| 71 | int ret_val = FPGA_FAIL; |
| 72 | |
| 73 | switch (desc->iface) { |
| 74 | case passive_serial: |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 75 | PRINTF("%s: Launching Passive Serial Dump\n", __func__); |
| 76 | ret_val = CYC2_ps_dump(desc, buf, bsize); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 77 | break; |
| 78 | |
| 79 | /* Add new interface types here */ |
| 80 | |
| 81 | default: |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 82 | printf("%s: Unsupported interface type, %d\n", |
| 83 | __func__, desc->iface); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | return ret_val; |
| 87 | } |
| 88 | |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 89 | int CYC2_info(Altera_desc *desc) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 90 | { |
| 91 | return FPGA_SUCCESS; |
| 92 | } |
| 93 | |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 94 | /* ------------------------------------------------------------------------- */ |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 95 | /* CYCLON2 Passive Serial Generic Implementation */ |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 96 | static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 97 | { |
| 98 | int ret_val = FPGA_FAIL; /* assume the worst */ |
| 99 | Altera_CYC2_Passive_Serial_fns *fn = desc->iface_fns; |
| 100 | int ret = 0; |
| 101 | |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 102 | PRINTF("%s: start with interface functions @ 0x%p\n", |
| 103 | __func__, fn); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 104 | |
| 105 | if (fn) { |
| 106 | int cookie = desc->cookie; /* make a local copy */ |
| 107 | unsigned long ts; /* timestamp */ |
| 108 | |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 109 | PRINTF("%s: Function Table:\n" |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 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", |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 116 | __func__, &fn, fn, fn->config, fn->status, |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 117 | fn->write, fn->done); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 118 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 119 | printf("Loading FPGA Device %d...", cookie); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 120 | #endif |
| 121 | |
| 122 | /* |
| 123 | * Run the pre configuration function if there is one. |
| 124 | */ |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 125 | if (*fn->pre) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 126 | (*fn->pre) (cookie); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 127 | |
| 128 | /* Establish the initial state */ |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 129 | (*fn->config) (false, true, cookie); /* De-assert nCONFIG */ |
Stephan Gatzka | a99c040 | 2012-10-22 23:11:41 +0000 | [diff] [blame] | 130 | udelay(100); |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 131 | (*fn->config) (true, true, cookie); /* Assert nCONFIG */ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 132 | |
| 133 | udelay(2); /* T_cfg > 2us */ |
| 134 | |
| 135 | /* Wait for nSTATUS to be asserted */ |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 136 | ts = get_timer(0); /* get current time */ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 137 | do { |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 138 | CONFIG_FPGA_DELAY(); |
| 139 | if (get_timer(ts) > CONFIG_SYS_FPGA_WAIT) { |
| 140 | /* check the time */ |
| 141 | puts("** Timeout waiting for STATUS to go high.\n"); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 142 | (*fn->abort) (cookie); |
| 143 | return FPGA_FAIL; |
| 144 | } |
| 145 | } while (!(*fn->status) (cookie)); |
| 146 | |
| 147 | /* Get ready for the burn */ |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 148 | CONFIG_FPGA_DELAY(); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 149 | |
York Sun | 472d546 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 150 | ret = (*fn->write) (buf, bsize, true, cookie); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 151 | if (ret) { |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 152 | puts("** Write failed.\n"); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 153 | (*fn->abort) (cookie); |
| 154 | return FPGA_FAIL; |
| 155 | } |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 157 | puts(" OK? ..."); |
| 158 | #endif |
| 159 | |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 160 | CONFIG_FPGA_DELAY(); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 161 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 162 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 163 | putc(' '); /* terminate the dotted line */ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 164 | #endif |
| 165 | |
Alexander Dahl | 3911b19 | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 166 | /* |
| 167 | * Checking FPGA's CONF_DONE signal - correctly booted ? |
| 168 | */ |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 169 | |
Alexander Dahl | 3911b19 | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 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-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 175 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | 3911b19 | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 176 | puts(" OK\n"); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 177 | #endif |
| 178 | |
Alexander Dahl | 3911b19 | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 179 | ret_val = FPGA_SUCCESS; |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 180 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 181 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | 3911b19 | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 182 | if (ret_val == FPGA_SUCCESS) |
| 183 | puts("Done.\n"); |
| 184 | else |
| 185 | puts("Fail.\n"); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 186 | #endif |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 187 | |
Alexander Dahl | b283d6b | 2019-06-28 14:41:23 +0200 | [diff] [blame] | 188 | /* |
| 189 | * Run the post configuration function if there is one. |
| 190 | */ |
| 191 | if (*fn->post) |
| 192 | (*fn->post) (cookie); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 193 | } else { |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 194 | printf("%s: NULL Interface function table!\n", __func__); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | return ret_val; |
| 198 | } |
| 199 | |
Wolfgang Denk | e6a857d | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 200 | static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 201 | { |
| 202 | /* Readback is only available through the Slave Parallel and */ |
| 203 | /* boundary-scan interfaces. */ |
Alexander Dahl | bb2c0fa | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 204 | printf("%s: Passive Serial Dumping is unavailable\n", __func__); |
Stefan Roese | f0ff469 | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 205 | return FPGA_FAIL; |
| 206 | } |