Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Roese | 5f1cf2d | 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 | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 6 | */ |
| 7 | |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 8 | #define LOG_CATEGORY UCLASS_FPGA |
| 9 | |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 10 | #include <common.h> /* core U-Boot definitions */ |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 11 | #include <log.h> |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 12 | #include <altera.h> |
| 13 | #include <ACEX1K.h> /* ACEX device family */ |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 14 | #include <linux/delay.h> |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 15 | |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 16 | /* Note: The assumption is that we cannot possibly run fast enough to |
| 17 | * overrun the device (the Slave Parallel mode can free run at 50MHz). |
Tom Rini | 88d86ec | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 18 | * If there is a need to operate slower, define CFG_FPGA_DELAY in |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 19 | * the board config file to slow things down. |
| 20 | */ |
Tom Rini | 88d86ec | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 21 | #ifndef CFG_FPGA_DELAY |
| 22 | #define CFG_FPGA_DELAY() |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 23 | #endif |
| 24 | |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 25 | #ifndef CFG_SYS_FPGA_WAIT |
| 26 | #define CFG_SYS_FPGA_WAIT CONFIG_SYS_HZ / 10 /* 100 ms */ |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 27 | #endif |
| 28 | |
Wolfgang Denk | 74f9b38 | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 29 | static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize); |
| 30 | static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 31 | /* static int CYC2_ps_info( Altera_desc *desc ); */ |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 32 | |
| 33 | /* ------------------------------------------------------------------------- */ |
| 34 | /* CYCLON2 Generic Implementation */ |
Wolfgang Denk | 74f9b38 | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 35 | int CYC2_load(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 36 | { |
| 37 | int ret_val = FPGA_FAIL; |
| 38 | |
| 39 | switch (desc->iface) { |
| 40 | case passive_serial: |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 41 | log_debug("Launching Passive Serial Loader\n"); |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 42 | ret_val = CYC2_ps_load(desc, buf, bsize); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 43 | break; |
| 44 | |
Michael Jones | d846bb5 | 2011-07-14 23:09:41 +0000 | [diff] [blame] | 45 | case fast_passive_parallel: |
| 46 | /* Fast Passive Parallel (FPP) and PS only differ in what is |
| 47 | * done in the write() callback. Use the existing PS load |
| 48 | * function for FPP, too. |
| 49 | */ |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 50 | log_debug("Launching Fast Passive Parallel Loader\n"); |
Michael Jones | d846bb5 | 2011-07-14 23:09:41 +0000 | [diff] [blame] | 51 | ret_val = CYC2_ps_load(desc, buf, bsize); |
| 52 | break; |
| 53 | |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 54 | /* Add new interface types here */ |
| 55 | |
| 56 | default: |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 57 | printf("%s: Unsupported interface type, %d\n", |
| 58 | __func__, desc->iface); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | return ret_val; |
| 62 | } |
| 63 | |
Wolfgang Denk | 74f9b38 | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 64 | int CYC2_dump(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 65 | { |
| 66 | int ret_val = FPGA_FAIL; |
| 67 | |
| 68 | switch (desc->iface) { |
| 69 | case passive_serial: |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 70 | log_debug("Launching Passive Serial Dump\n"); |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 71 | ret_val = CYC2_ps_dump(desc, buf, bsize); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 72 | break; |
| 73 | |
| 74 | /* Add new interface types here */ |
| 75 | |
| 76 | default: |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 77 | printf("%s: Unsupported interface type, %d\n", |
| 78 | __func__, desc->iface); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | return ret_val; |
| 82 | } |
| 83 | |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 84 | int CYC2_info(Altera_desc *desc) |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 85 | { |
| 86 | return FPGA_SUCCESS; |
| 87 | } |
| 88 | |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 89 | /* ------------------------------------------------------------------------- */ |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 90 | /* CYCLON2 Passive Serial Generic Implementation */ |
Wolfgang Denk | 74f9b38 | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 91 | static int CYC2_ps_load(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 92 | { |
| 93 | int ret_val = FPGA_FAIL; /* assume the worst */ |
| 94 | Altera_CYC2_Passive_Serial_fns *fn = desc->iface_fns; |
| 95 | int ret = 0; |
| 96 | |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 97 | log_debug("start with interface functions @ 0x%p\n", fn); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 98 | |
| 99 | if (fn) { |
| 100 | int cookie = desc->cookie; /* make a local copy */ |
| 101 | unsigned long ts; /* timestamp */ |
| 102 | |
Alexander Dahl | e543b1b | 2022-10-07 14:19:59 +0200 | [diff] [blame] | 103 | log_debug("Function Table:\n" |
| 104 | "ptr:\t0x%p\n" |
| 105 | "struct: 0x%p\n" |
| 106 | "config:\t0x%p\n" |
| 107 | "status:\t0x%p\n" |
| 108 | "write:\t0x%p\n" |
| 109 | "done:\t0x%p\n\n", |
| 110 | &fn, fn, fn->config, fn->status, |
| 111 | fn->write, fn->done); |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 112 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 113 | printf("Loading FPGA Device %d...", cookie); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 114 | #endif |
| 115 | |
| 116 | /* |
| 117 | * Run the pre configuration function if there is one. |
| 118 | */ |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 119 | if (*fn->pre) |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 120 | (*fn->pre) (cookie); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 121 | |
| 122 | /* Establish the initial state */ |
York Sun | 4a59809 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 123 | (*fn->config) (false, true, cookie); /* De-assert nCONFIG */ |
Stephan Gatzka | 67f3291 | 2012-10-22 23:11:41 +0000 | [diff] [blame] | 124 | udelay(100); |
York Sun | 4a59809 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 125 | (*fn->config) (true, true, cookie); /* Assert nCONFIG */ |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 126 | |
| 127 | udelay(2); /* T_cfg > 2us */ |
| 128 | |
| 129 | /* Wait for nSTATUS to be asserted */ |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 130 | ts = get_timer(0); /* get current time */ |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 131 | do { |
Tom Rini | 88d86ec | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 132 | CFG_FPGA_DELAY(); |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 133 | if (get_timer(ts) > CFG_SYS_FPGA_WAIT) { |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 134 | /* check the time */ |
| 135 | puts("** Timeout waiting for STATUS to go high.\n"); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 136 | (*fn->abort) (cookie); |
| 137 | return FPGA_FAIL; |
| 138 | } |
| 139 | } while (!(*fn->status) (cookie)); |
| 140 | |
| 141 | /* Get ready for the burn */ |
Tom Rini | 88d86ec | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 142 | CFG_FPGA_DELAY(); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 143 | |
York Sun | 4a59809 | 2013-04-01 11:29:11 -0700 | [diff] [blame] | 144 | ret = (*fn->write) (buf, bsize, true, cookie); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 145 | if (ret) { |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 146 | puts("** Write failed.\n"); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 147 | (*fn->abort) (cookie); |
| 148 | return FPGA_FAIL; |
| 149 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 150 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 151 | puts(" OK? ..."); |
| 152 | #endif |
| 153 | |
Tom Rini | 88d86ec | 2022-12-04 10:03:57 -0500 | [diff] [blame] | 154 | CFG_FPGA_DELAY(); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 155 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 157 | putc(' '); /* terminate the dotted line */ |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 158 | #endif |
| 159 | |
Alexander Dahl | a8da71c | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 160 | /* |
| 161 | * Checking FPGA's CONF_DONE signal - correctly booted ? |
| 162 | */ |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 163 | |
Alexander Dahl | a8da71c | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 164 | if (!(*fn->done) (cookie)) { |
| 165 | puts("** Booting failed! CONF_DONE is still deasserted.\n"); |
| 166 | (*fn->abort) (cookie); |
| 167 | return FPGA_FAIL; |
| 168 | } |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 169 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | a8da71c | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 170 | puts(" OK\n"); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 171 | #endif |
| 172 | |
Alexander Dahl | a8da71c | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 173 | ret_val = FPGA_SUCCESS; |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 174 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 175 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Alexander Dahl | a8da71c | 2019-06-28 14:41:22 +0200 | [diff] [blame] | 176 | if (ret_val == FPGA_SUCCESS) |
| 177 | puts("Done.\n"); |
| 178 | else |
| 179 | puts("Fail.\n"); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 180 | #endif |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 181 | |
Alexander Dahl | d52678c | 2019-06-28 14:41:23 +0200 | [diff] [blame] | 182 | /* |
| 183 | * Run the post configuration function if there is one. |
| 184 | */ |
| 185 | if (*fn->post) |
| 186 | (*fn->post) (cookie); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 187 | } else { |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 188 | printf("%s: NULL Interface function table!\n", __func__); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 189 | } |
| 190 | |
| 191 | return ret_val; |
| 192 | } |
| 193 | |
Wolfgang Denk | 74f9b38 | 2011-07-30 13:33:49 +0000 | [diff] [blame] | 194 | static int CYC2_ps_dump(Altera_desc *desc, const void *buf, size_t bsize) |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 195 | { |
| 196 | /* Readback is only available through the Slave Parallel and */ |
| 197 | /* boundary-scan interfaces. */ |
Alexander Dahl | 246bc02 | 2019-06-28 14:41:21 +0200 | [diff] [blame] | 198 | printf("%s: Passive Serial Dumping is unavailable\n", __func__); |
Stefan Roese | 5f1cf2d | 2006-08-15 14:15:51 +0200 | [diff] [blame] | 199 | return FPGA_FAIL; |
| 200 | } |