Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2006 |
| 3 | * Heiko Schocher, DENX Software Engineering, hs@denx.de |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * Altera FPGA configuration support for the ALPR computer from prodrive |
| 27 | */ |
| 28 | |
| 29 | #include <common.h> |
| 30 | #include <altera.h> |
| 31 | #include <ACEX1K.h> |
| 32 | #include <command.h> |
Peter Tyser | 61f2b38 | 2010-04-12 22:28:07 -0500 | [diff] [blame] | 33 | #include <asm/processor.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 34 | #include <asm/ppc440.h> |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 35 | #include "fpga.h" |
| 36 | |
| 37 | DECLARE_GLOBAL_DATA_PTR; |
| 38 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 39 | #if defined(CONFIG_FPGA) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 40 | |
| 41 | #ifdef FPGA_DEBUG |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 42 | #define PRINTF(fmt, args...) printf(fmt , ##args) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 43 | #else |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 44 | #define PRINTF(fmt, args...) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 45 | #endif |
| 46 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 47 | static unsigned long regval; |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 48 | |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 49 | #define SET_GPIO_REG_0(reg, bit) do { \ |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 50 | regval = in32(reg); \ |
| 51 | regval &= ~(0x80000000 >> bit); \ |
| 52 | out32(reg, regval); \ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 53 | } while (0) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 54 | |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 55 | #define SET_GPIO_REG_1(reg, bit) do { \ |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 56 | regval = in32(reg); \ |
| 57 | regval |= (0x80000000 >> bit); \ |
| 58 | out32(reg, regval); \ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 59 | } while (0) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 60 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 61 | #define SET_GPIO_0(bit) SET_GPIO_REG_0(GPIO0_OR, bit) |
| 62 | #define SET_GPIO_1(bit) SET_GPIO_REG_1(GPIO0_OR, bit) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 63 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | #define FPGA_PRG (0x80000000 >> CONFIG_SYS_GPIO_PROG_EN) |
| 65 | #define FPGA_CONFIG (0x80000000 >> CONFIG_SYS_GPIO_CONFIG) |
| 66 | #define FPGA_DATA (0x80000000 >> CONFIG_SYS_GPIO_DATA) |
| 67 | #define FPGA_CLK (0x80000000 >> CONFIG_SYS_GPIO_CLK) |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 68 | #define OLD_VAL (FPGA_PRG | FPGA_CONFIG) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 69 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 70 | #define SET_FPGA(data) out32(GPIO0_OR, data) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 71 | |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 72 | #define FPGA_WRITE_1 do { \ |
| 73 | SET_FPGA(OLD_VAL | 0 | FPGA_DATA); /* set data to 1 */ \ |
| 74 | SET_FPGA(OLD_VAL | FPGA_CLK | FPGA_DATA); /* set data to 1 */ \ |
| 75 | } while (0) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 76 | |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 77 | #define FPGA_WRITE_0 do { \ |
| 78 | SET_FPGA(OLD_VAL | 0 | 0); /* set data to 0 */ \ |
| 79 | SET_FPGA(OLD_VAL | FPGA_CLK | 0); /* set data to 1 */ \ |
| 80 | } while (0) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 81 | |
| 82 | /* Plattforminitializations */ |
| 83 | /* Here we have to set the FPGA Chain */ |
| 84 | /* PROGRAM_PROG_EN = HIGH */ |
| 85 | /* PROGRAM_SEL_DPR = LOW */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 86 | int fpga_pre_fn(int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 87 | { |
| 88 | unsigned long reg; |
| 89 | |
| 90 | reg = in32(GPIO0_IR); |
| 91 | /* Enable the FPGA Chain */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | SET_GPIO_REG_1(GPIO0_TCR, CONFIG_SYS_GPIO_PROG_EN); |
| 93 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_PROG_EN); |
| 94 | SET_GPIO_1(CONFIG_SYS_GPIO_PROG_EN); |
| 95 | SET_GPIO_REG_1(GPIO0_TCR, CONFIG_SYS_GPIO_SEL_DPR); |
| 96 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_SEL_DPR); |
| 97 | SET_GPIO_0((CONFIG_SYS_GPIO_SEL_DPR)); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 98 | |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 99 | /* initialize the GPIO Pins */ |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 100 | /* output */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | SET_GPIO_0(CONFIG_SYS_GPIO_CLK); |
| 102 | SET_GPIO_REG_1(GPIO0_TCR, CONFIG_SYS_GPIO_CLK); |
| 103 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_CLK); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 104 | |
| 105 | /* output */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 106 | SET_GPIO_0(CONFIG_SYS_GPIO_DATA); |
| 107 | SET_GPIO_REG_1(GPIO0_TCR, CONFIG_SYS_GPIO_DATA); |
| 108 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_DATA); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 109 | |
| 110 | /* First we set STATUS to 0 then as an input */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 111 | SET_GPIO_REG_1(GPIO0_TCR, CONFIG_SYS_GPIO_STATUS); |
| 112 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_STATUS); |
| 113 | SET_GPIO_0(CONFIG_SYS_GPIO_STATUS); |
| 114 | SET_GPIO_REG_0(GPIO0_TCR, CONFIG_SYS_GPIO_STATUS); |
| 115 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_STATUS); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 116 | |
| 117 | /* output */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 118 | SET_GPIO_REG_1(GPIO0_TCR, CONFIG_SYS_GPIO_CONFIG); |
| 119 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_CONFIG); |
| 120 | SET_GPIO_0(CONFIG_SYS_GPIO_CONFIG); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 121 | |
| 122 | /* input */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 123 | SET_GPIO_0(CONFIG_SYS_GPIO_CON_DON); |
| 124 | SET_GPIO_REG_0(GPIO0_TCR, CONFIG_SYS_GPIO_CON_DON); |
| 125 | SET_GPIO_REG_0(GPIO0_ODR, CONFIG_SYS_GPIO_CON_DON); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 126 | |
| 127 | /* CONFIG = 0 STATUS = 0 -> FPGA in reset state */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 128 | SET_GPIO_0(CONFIG_SYS_GPIO_CONFIG); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 129 | return FPGA_SUCCESS; |
| 130 | } |
| 131 | |
| 132 | /* Set the state of CONFIG Pin */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 133 | int fpga_config_fn(int assert_config, int flush, int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 134 | { |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 135 | if (assert_config) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 136 | SET_GPIO_1(CONFIG_SYS_GPIO_CONFIG); |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 137 | else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 138 | SET_GPIO_0(CONFIG_SYS_GPIO_CONFIG); |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 139 | |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 140 | return FPGA_SUCCESS; |
| 141 | } |
| 142 | |
| 143 | /* Returns the state of STATUS Pin */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 144 | int fpga_status_fn(int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 145 | { |
| 146 | unsigned long reg; |
| 147 | |
| 148 | reg = in32(GPIO0_IR); |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 149 | if (reg & (0x80000000 >> CONFIG_SYS_GPIO_STATUS)) { |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 150 | PRINTF("STATUS = HIGH\n"); |
| 151 | return FPGA_FAIL; |
| 152 | } |
| 153 | PRINTF("STATUS = LOW\n"); |
| 154 | return FPGA_SUCCESS; |
| 155 | } |
| 156 | |
| 157 | /* Returns the state of CONF_DONE Pin */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 158 | int fpga_done_fn(int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 159 | { |
| 160 | unsigned long reg; |
| 161 | reg = in32(GPIO0_IR); |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 162 | if (reg & (0x80000000 >> CONFIG_SYS_GPIO_CON_DON)) { |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 163 | PRINTF("CONF_DON = HIGH\n"); |
| 164 | return FPGA_FAIL; |
| 165 | } |
| 166 | PRINTF("CONF_DON = LOW\n"); |
| 167 | return FPGA_SUCCESS; |
| 168 | } |
| 169 | |
| 170 | /* writes the complete buffer to the FPGA |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 171 | writing the complete buffer in one function is much faster, |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 172 | then calling it for every bit */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 173 | int fpga_write_fn(const void *buf, size_t len, int flush, int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 174 | { |
| 175 | size_t bytecount = 0; |
| 176 | unsigned char *data = (unsigned char *) buf; |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 177 | unsigned char val = 0; |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 178 | int i; |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 179 | int len_40 = len / 40; |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 180 | |
| 181 | while (bytecount < len) { |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 182 | val = data[bytecount++]; |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 183 | i = 8; |
| 184 | do { |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 185 | if (val & 0x01) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 186 | FPGA_WRITE_1; |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 187 | else |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 188 | FPGA_WRITE_0; |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 189 | |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 190 | val >>= 1; |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 191 | i--; |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 192 | } while (i > 0); |
| 193 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 194 | #ifdef CONFIG_SYS_FPGA_PROG_FEEDBACK |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 195 | if (bytecount % len_40 == 0) { |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 196 | putc('.'); /* let them know we are alive */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 197 | #ifdef CONFIG_SYS_FPGA_CHECK_CTRLC |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 198 | if (ctrlc()) |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 199 | return FPGA_FAIL; |
| 200 | #endif |
| 201 | } |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 202 | #endif |
| 203 | } |
| 204 | return FPGA_SUCCESS; |
| 205 | } |
| 206 | |
| 207 | /* called, when programming is aborted */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 208 | int fpga_abort_fn(int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 209 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 210 | SET_GPIO_1((CONFIG_SYS_GPIO_SEL_DPR)); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 211 | return FPGA_SUCCESS; |
| 212 | } |
| 213 | |
| 214 | /* called, when programming was succesful */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 215 | int fpga_post_fn(int cookie) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 216 | { |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 217 | return fpga_abort_fn(cookie); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /* Note that these are pointers to code that is in Flash. They will be |
| 221 | * relocated at runtime. |
| 222 | */ |
| 223 | Altera_CYC2_Passive_Serial_fns fpga_fns = { |
| 224 | fpga_pre_fn, |
| 225 | fpga_config_fn, |
| 226 | fpga_status_fn, |
| 227 | fpga_done_fn, |
| 228 | fpga_write_fn, |
| 229 | fpga_abort_fn, |
| 230 | fpga_post_fn |
| 231 | }; |
| 232 | |
| 233 | Altera_desc fpga[CONFIG_FPGA_COUNT] = { |
| 234 | {Altera_CYC2, |
| 235 | passive_serial, |
| 236 | Altera_EP2C35_SIZE, |
| 237 | (void *) &fpga_fns, |
| 238 | NULL, |
| 239 | 0} |
| 240 | }; |
| 241 | |
| 242 | /* |
| 243 | * Initialize the fpga. Return 1 on success, 0 on failure. |
| 244 | */ |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 245 | int alpr_fpga_init(void) |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 246 | { |
| 247 | int i; |
| 248 | |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 249 | PRINTF("%s:%d: Initialize FPGA interface\n", __func__, __LINE__); |
| 250 | fpga_init(); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 251 | |
| 252 | for (i = 0; i < CONFIG_FPGA_COUNT; i++) { |
Wolfgang Denk | 8298fd2 | 2011-09-05 12:52:21 +0200 | [diff] [blame^] | 253 | PRINTF("%s:%d: Adding fpga %d\n", __func__, __LINE__, i); |
| 254 | fpga_add(fpga_altera, &fpga[i]); |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 255 | } |
| 256 | return 1; |
| 257 | } |
| 258 | |
| 259 | #endif |