stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001-2003 |
| 3 | * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com |
| 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 | #include <common.h> |
| 25 | #include <asm/processor.h> |
Matthias Fuchs | bd84ee4 | 2007-07-09 10:10:06 +0200 | [diff] [blame] | 26 | #include <asm/io.h> |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 27 | #include <command.h> |
| 28 | #include <malloc.h> |
| 29 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 30 | |
| 31 | #if 0 |
| 32 | #define FPGA_DEBUG |
| 33 | #endif |
| 34 | |
Matthias Fuchs | bd84ee4 | 2007-07-09 10:10:06 +0200 | [diff] [blame] | 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 37 | extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
stroese | 12537cc | 2004-12-16 18:39:03 +0000 | [diff] [blame] | 38 | extern void lxt971_no_sleep(void); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 39 | |
| 40 | /* fpga configuration data - gzip compressed and generated by bin2c */ |
| 41 | const unsigned char fpgadata[] = |
| 42 | { |
| 43 | #include "fpgadata.c" |
| 44 | }; |
| 45 | |
| 46 | /* |
| 47 | * include common fpga code (for esd boards) |
| 48 | */ |
| 49 | #include "../common/fpga.c" |
| 50 | |
| 51 | |
stroese | 12537cc | 2004-12-16 18:39:03 +0000 | [diff] [blame] | 52 | /* |
| 53 | * include common auto-update code (for esd boards) |
| 54 | */ |
| 55 | #include "../common/auto_update.h" |
| 56 | |
| 57 | au_image_t au_image[] = { |
| 58 | {"plu405/preinst.img", 0, -1, AU_SCRIPT}, |
| 59 | {"plu405/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE}, |
Wolfgang Denk | fe126d8 | 2005-11-20 21:40:11 +0100 | [diff] [blame] | 60 | {"plu405/pImage_${bd_type}", 0x00000000, 0x00100000, AU_NAND}, |
stroese | 12537cc | 2004-12-16 18:39:03 +0000 | [diff] [blame] | 61 | {"plu405/pImage.initrd", 0x00100000, 0x00200000, AU_NAND}, |
| 62 | {"plu405/yaffsmt2.img", 0x00300000, 0x01c00000, AU_NAND}, |
| 63 | {"plu405/postinst.img", 0, 0, AU_SCRIPT}, |
| 64 | }; |
| 65 | |
| 66 | int N_AU_IMAGES = (sizeof(au_image) / sizeof(au_image[0])); |
| 67 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 68 | /* Prototypes */ |
wdenk | eedcd07 | 2004-09-08 22:03:11 +0000 | [diff] [blame] | 69 | int gunzip(void *, int, unsigned char *, unsigned long *); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 70 | |
wdenk | c837dcb | 2004-01-20 23:12:12 +0000 | [diff] [blame] | 71 | int board_early_init_f (void) |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 72 | { |
| 73 | /* |
| 74 | * IRQ 0-15 405GP internally generated; active high; level sensitive |
| 75 | * IRQ 16 405GP internally generated; active low; level sensitive |
| 76 | * IRQ 17-24 RESERVED |
| 77 | * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive |
| 78 | * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive |
| 79 | * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive |
| 80 | * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive |
| 81 | * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive |
| 82 | * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive |
| 83 | * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive |
| 84 | */ |
| 85 | mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |
| 86 | mtdcr(uicer, 0x00000000); /* disable all ints */ |
| 87 | mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/ |
| 88 | mtdcr(uicpr, 0xFFFFFF99); /* set int polarities */ |
| 89 | mtdcr(uictr, 0x10000000); /* set int trigger levels */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 90 | mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest prio */ |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 91 | mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */ |
| 92 | |
| 93 | /* |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 94 | * EBC Configuration Register: set ready timeout to |
| 95 | * 512 ebc-clks -> ca. 15 us |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 96 | */ |
| 97 | mtebc (epcr, 0xa8400000); /* ebc always driven */ |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 102 | int misc_init_r (void) |
| 103 | { |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 104 | unsigned char *duart0_mcr = (unsigned char *)((ulong)DUART0_BA + 4); |
| 105 | unsigned char *duart1_mcr = (unsigned char *)((ulong)DUART1_BA + 4); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 106 | unsigned char *dst; |
| 107 | ulong len = sizeof(fpgadata); |
| 108 | int status; |
| 109 | int index; |
| 110 | int i; |
| 111 | |
Matthias Fuchs | bd84ee4 | 2007-07-09 10:10:06 +0200 | [diff] [blame] | 112 | /* adjust flash start and offset */ |
| 113 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 114 | gd->bd->bi_flashoffset = 0; |
| 115 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 116 | dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE); |
| 117 | if (gunzip (dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) { |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 118 | printf ("GUNZIP ERROR - must RESET board to recover\n"); |
| 119 | do_reset (NULL, 0, 0, NULL); |
| 120 | } |
| 121 | |
| 122 | status = fpga_boot(dst, len); |
| 123 | if (status != 0) { |
| 124 | printf("\nFPGA: Booting failed "); |
| 125 | switch (status) { |
| 126 | case ERROR_FPGA_PRG_INIT_LOW: |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 127 | printf("(Timeout: INIT not low " |
| 128 | "after asserting PROGRAM*)\n"); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 129 | break; |
| 130 | case ERROR_FPGA_PRG_INIT_HIGH: |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 131 | printf("(Timeout: INIT not high " |
| 132 | "after deasserting PROGRAM*)\n"); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 133 | break; |
| 134 | case ERROR_FPGA_PRG_DONE: |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 135 | printf("(Timeout: DONE not high " |
| 136 | "after programming FPGA)\n"); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 137 | break; |
| 138 | } |
| 139 | |
| 140 | /* display infos on fpgaimage */ |
| 141 | index = 15; |
| 142 | for (i=0; i<4; i++) { |
| 143 | len = dst[index]; |
| 144 | printf("FPGA: %s\n", &(dst[index+1])); |
| 145 | index += len+3; |
| 146 | } |
| 147 | putc ('\n'); |
| 148 | /* delayed reboot */ |
| 149 | for (i=20; i>0; i--) { |
| 150 | printf("Rebooting in %2d seconds \r",i); |
| 151 | for (index=0;index<1000;index++) |
| 152 | udelay(1000); |
| 153 | } |
| 154 | putc ('\n'); |
| 155 | do_reset(NULL, 0, 0, NULL); |
| 156 | } |
| 157 | |
| 158 | puts("FPGA: "); |
| 159 | |
| 160 | /* display infos on fpgaimage */ |
| 161 | index = 15; |
| 162 | for (i=0; i<4; i++) { |
| 163 | len = dst[index]; |
| 164 | printf("%s ", &(dst[index+1])); |
| 165 | index += len+3; |
| 166 | } |
| 167 | putc ('\n'); |
| 168 | |
| 169 | free(dst); |
| 170 | |
| 171 | /* |
| 172 | * Reset FPGA via FPGA_DATA pin |
| 173 | */ |
| 174 | SET_FPGA(FPGA_PRG | FPGA_CLK); |
| 175 | udelay(1000); /* wait 1ms */ |
| 176 | SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA); |
| 177 | udelay(1000); /* wait 1ms */ |
| 178 | |
| 179 | /* |
| 180 | * Reset external DUARTs |
| 181 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 182 | out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST); |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 183 | udelay(10); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 184 | out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST); |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 185 | udelay(1000); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 186 | |
| 187 | /* |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 188 | * Set NAND-FLASH GPIO signals to default |
| 189 | */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 190 | out_be32((void*)GPIO0_OR, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 191 | in_be32((void*)GPIO0_OR) & ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE)); |
| 192 | out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 193 | |
| 194 | /* |
| 195 | * Setup EEPROM write protection |
| 196 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 197 | out_be32((void*)GPIO0_OR, in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP); |
| 198 | out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 199 | |
| 200 | /* |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 201 | * Enable interrupts in exar duart mcr[3] |
| 202 | */ |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 203 | out_8(duart0_mcr, 0x08); |
| 204 | out_8(duart1_mcr, 0x08); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 205 | |
| 206 | return (0); |
| 207 | } |
| 208 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 209 | /* |
| 210 | * Check Board Identity: |
| 211 | */ |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 212 | int checkboard (void) |
| 213 | { |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 214 | char str[64]; |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 215 | int i = getenv_r ("serial#", str, sizeof(str)); |
| 216 | |
| 217 | puts ("Board: "); |
| 218 | |
| 219 | if (i == -1) { |
| 220 | puts ("### No HW ID - assuming PLU405"); |
| 221 | } else { |
| 222 | puts(str); |
| 223 | } |
| 224 | |
| 225 | putc ('\n'); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 229 | #ifdef CONFIG_IDE_RESET |
| 230 | void ide_set_reset(int on) |
| 231 | { |
| 232 | volatile unsigned short *fpga_mode = |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 233 | (unsigned short *)((ulong)CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 234 | |
| 235 | /* |
| 236 | * Assert or deassert CompactFlash Reset Pin |
| 237 | */ |
| 238 | if (on) { /* assert RESET */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 239 | *fpga_mode &= ~(CONFIG_SYS_FPGA_CTRL_CF_RESET); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 240 | } else { /* release RESET */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 241 | *fpga_mode |= CONFIG_SYS_FPGA_CTRL_CF_RESET; |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 242 | } |
| 243 | } |
| 244 | #endif /* CONFIG_IDE_RESET */ |
| 245 | |
Matthias Fuchs | f9fc6a5 | 2007-03-07 15:32:01 +0100 | [diff] [blame] | 246 | void reset_phy(void) |
| 247 | { |
| 248 | #ifdef CONFIG_LXT971_NO_SLEEP |
| 249 | |
| 250 | /* |
| 251 | * Disable sleep mode in LXT971 |
| 252 | */ |
| 253 | lxt971_no_sleep(); |
| 254 | #endif |
| 255 | } |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 256 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 257 | #if defined(CONFIG_SYS_EEPROM_WREN) |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 258 | /* Input: <dev_addr> I2C address of EEPROM device to enable. |
| 259 | * <state> -1: deliver current state |
| 260 | * 0: disable write |
| 261 | * 1: enable write |
| 262 | * Returns: -1: wrong device address |
| 263 | * 0: dis-/en- able done |
| 264 | * 0/1: current state if <state> was -1. |
| 265 | */ |
| 266 | int eeprom_write_enable (unsigned dev_addr, int state) |
| 267 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 268 | if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) { |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 269 | return -1; |
| 270 | } else { |
| 271 | switch (state) { |
| 272 | case 1: |
| 273 | /* Enable write access, clear bit GPIO0. */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 274 | out_be32((void*)GPIO0_OR, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 275 | in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_EEPROM_WP); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 276 | state = 0; |
| 277 | break; |
| 278 | case 0: |
| 279 | /* Disable write access, set bit GPIO0. */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 280 | out_be32((void*)GPIO0_OR, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 281 | in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 282 | state = 0; |
| 283 | break; |
| 284 | default: |
| 285 | /* Read current status back. */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 286 | state = (0 == (in_be32((void*)GPIO0_OR) & |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 287 | CONFIG_SYS_EEPROM_WP)); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 288 | break; |
| 289 | } |
| 290 | } |
| 291 | return state; |
| 292 | } |
| 293 | |
| 294 | int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
| 295 | { |
| 296 | int query = argc == 1; |
| 297 | int state = 0; |
| 298 | |
| 299 | if (query) { |
| 300 | /* Query write access state. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 301 | state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, -1); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 302 | if (state < 0) { |
| 303 | puts ("Query of write access state failed.\n"); |
| 304 | } else { |
| 305 | printf ("Write access for device 0x%0x is %sabled.\n", |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 306 | CONFIG_SYS_I2C_EEPROM_ADDR, state ? "en" : "dis"); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 307 | state = 0; |
| 308 | } |
| 309 | } else { |
| 310 | if ('0' == argv[1][0]) { |
| 311 | /* Disable write access. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 312 | state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 0); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 313 | } else { |
| 314 | /* Enable write access. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 315 | state = eeprom_write_enable (CONFIG_SYS_I2C_EEPROM_ADDR, 1); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 316 | } |
| 317 | if (state < 0) { |
| 318 | puts ("Setup of write access state failed.\n"); |
| 319 | } |
| 320 | } |
| 321 | |
| 322 | return state; |
| 323 | } |
| 324 | |
| 325 | U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, |
| 326 | "eepwren - Enable / disable / query EEPROM write access\n", |
| 327 | NULL); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 328 | #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ |