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> |
Matthias Fuchs | be0db3e | 2009-10-26 09:58:45 +0100 | [diff] [blame] | 29 | #include <sja1000.h> |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 30 | |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 31 | #undef FPGA_DEBUG |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 32 | |
Matthias Fuchs | bd84ee4 | 2007-07-09 10:10:06 +0200 | [diff] [blame] | 33 | DECLARE_GLOBAL_DATA_PTR; |
| 34 | |
stroese | 12537cc | 2004-12-16 18:39:03 +0000 | [diff] [blame] | 35 | extern void lxt971_no_sleep(void); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 36 | |
| 37 | /* fpga configuration data - gzip compressed and generated by bin2c */ |
| 38 | const unsigned char fpgadata[] = |
| 39 | { |
| 40 | #include "fpgadata.c" |
| 41 | }; |
| 42 | |
| 43 | /* |
| 44 | * include common fpga code (for esd boards) |
| 45 | */ |
| 46 | #include "../common/fpga.c" |
| 47 | |
Matthias Fuchs | 976c21a | 2010-02-01 13:53:59 +0100 | [diff] [blame] | 48 | /* |
| 49 | * generate a short spike on the CAN tx line |
| 50 | * to bring the couplers in sync |
| 51 | */ |
| 52 | void init_coupler(u32 addr) |
| 53 | { |
| 54 | struct sja1000_basic_s *ctrl = (struct sja1000_basic_s *)addr; |
| 55 | |
| 56 | /* reset */ |
| 57 | out_8(&ctrl->cr, CR_RR); |
| 58 | |
| 59 | /* dominant */ |
| 60 | out_8(&ctrl->btr0, 0x00); /* btr setup is required */ |
| 61 | out_8(&ctrl->btr1, 0x14); /* we use 1Mbit/s */ |
| 62 | out_8(&ctrl->oc, OC_TP1 | OC_TN1 | OC_POL1 | |
| 63 | OC_TP0 | OC_TN0 | OC_POL0 | OC_MODE1); |
| 64 | out_8(&ctrl->cr, 0x00); |
| 65 | |
| 66 | /* delay */ |
| 67 | in_8(&ctrl->cr); |
| 68 | in_8(&ctrl->cr); |
| 69 | in_8(&ctrl->cr); |
| 70 | in_8(&ctrl->cr); |
| 71 | |
| 72 | /* reset */ |
| 73 | out_8(&ctrl->cr, CR_RR); |
| 74 | } |
| 75 | |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 76 | int board_early_init_f(void) |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 77 | { |
| 78 | /* |
| 79 | * IRQ 0-15 405GP internally generated; active high; level sensitive |
| 80 | * IRQ 16 405GP internally generated; active low; level sensitive |
| 81 | * IRQ 17-24 RESERVED |
| 82 | * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive |
| 83 | * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive |
| 84 | * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive |
| 85 | * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive |
| 86 | * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive |
| 87 | * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive |
| 88 | * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive |
| 89 | */ |
Stefan Roese | 952e776 | 2009-09-24 09:55:50 +0200 | [diff] [blame] | 90 | mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
| 91 | mtdcr(UIC0ER, 0x00000000); /* disable all ints */ |
| 92 | mtdcr(UIC0CR, 0x00000000); /* set all to be non-critical*/ |
| 93 | mtdcr(UIC0PR, 0xFFFFFF99); /* set int polarities */ |
| 94 | mtdcr(UIC0TR, 0x10000000); /* set int trigger levels */ |
| 95 | mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest prio */ |
| 96 | mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */ |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 97 | |
| 98 | /* |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 99 | * EBC Configuration Register: set ready timeout to |
| 100 | * 512 ebc-clks -> ca. 15 us |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 101 | */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 102 | mtebc(EBC0_CFG, 0xa8400000); /* ebc always driven */ |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 103 | |
| 104 | return 0; |
| 105 | } |
| 106 | |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 107 | int misc_init_r(void) |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 108 | { |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 109 | unsigned char *dst; |
Matthias Fuchs | fceebb4 | 2009-01-02 12:16:35 +0100 | [diff] [blame] | 110 | unsigned char fctr; |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 111 | ulong len = sizeof(fpgadata); |
| 112 | int status; |
| 113 | int index; |
| 114 | int i; |
| 115 | |
Matthias Fuchs | bd84ee4 | 2007-07-09 10:10:06 +0200 | [diff] [blame] | 116 | /* adjust flash start and offset */ |
| 117 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 118 | gd->bd->bi_flashoffset = 0; |
| 119 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 120 | dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE); |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 121 | if (gunzip(dst, CONFIG_SYS_FPGA_MAX_SIZE, |
| 122 | (uchar *)fpgadata, &len) != 0) { |
| 123 | printf("GUNZIP ERROR - must RESET board to recover\n"); |
| 124 | do_reset(NULL, 0, 0, NULL); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | status = fpga_boot(dst, len); |
| 128 | if (status != 0) { |
| 129 | printf("\nFPGA: Booting failed "); |
| 130 | switch (status) { |
| 131 | case ERROR_FPGA_PRG_INIT_LOW: |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 132 | printf("(Timeout: INIT not low " |
| 133 | "after asserting PROGRAM*)\n"); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 134 | break; |
| 135 | case ERROR_FPGA_PRG_INIT_HIGH: |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 136 | printf("(Timeout: INIT not high " |
| 137 | "after deasserting PROGRAM*)\n"); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 138 | break; |
| 139 | case ERROR_FPGA_PRG_DONE: |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 140 | printf("(Timeout: DONE not high " |
| 141 | "after programming FPGA)\n"); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 142 | break; |
| 143 | } |
| 144 | |
| 145 | /* display infos on fpgaimage */ |
| 146 | index = 15; |
| 147 | for (i=0; i<4; i++) { |
| 148 | len = dst[index]; |
| 149 | printf("FPGA: %s\n", &(dst[index+1])); |
| 150 | index += len+3; |
| 151 | } |
| 152 | putc ('\n'); |
| 153 | /* delayed reboot */ |
| 154 | for (i=20; i>0; i--) { |
| 155 | printf("Rebooting in %2d seconds \r",i); |
| 156 | for (index=0;index<1000;index++) |
| 157 | udelay(1000); |
| 158 | } |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 159 | putc('\n'); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 160 | do_reset(NULL, 0, 0, NULL); |
| 161 | } |
| 162 | |
| 163 | puts("FPGA: "); |
| 164 | |
| 165 | /* display infos on fpgaimage */ |
| 166 | index = 15; |
| 167 | for (i=0; i<4; i++) { |
| 168 | len = dst[index]; |
| 169 | printf("%s ", &(dst[index+1])); |
| 170 | index += len+3; |
| 171 | } |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 172 | putc('\n'); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 173 | |
| 174 | free(dst); |
| 175 | |
| 176 | /* |
| 177 | * Reset FPGA via FPGA_DATA pin |
| 178 | */ |
| 179 | SET_FPGA(FPGA_PRG | FPGA_CLK); |
| 180 | udelay(1000); /* wait 1ms */ |
| 181 | SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA); |
| 182 | udelay(1000); /* wait 1ms */ |
| 183 | |
| 184 | /* |
| 185 | * Reset external DUARTs |
| 186 | */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 187 | out_be32((void*)GPIO0_OR, |
| 188 | in_be32((void*)GPIO0_OR) | CONFIG_SYS_DUART_RST); |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 189 | udelay(10); |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 190 | out_be32((void*)GPIO0_OR, |
| 191 | in_be32((void*)GPIO0_OR) & ~CONFIG_SYS_DUART_RST); |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 192 | udelay(1000); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 193 | |
| 194 | /* |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 195 | * Set NAND-FLASH GPIO signals to default |
| 196 | */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 197 | out_be32((void*)GPIO0_OR, |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 198 | in_be32((void*)GPIO0_OR) & |
| 199 | ~(CONFIG_SYS_NAND_CLE | CONFIG_SYS_NAND_ALE)); |
| 200 | out_be32((void*)GPIO0_OR, |
| 201 | in_be32((void*)GPIO0_OR) | CONFIG_SYS_NAND_CE); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 202 | |
| 203 | /* |
| 204 | * Setup EEPROM write protection |
| 205 | */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 206 | out_be32((void*)GPIO0_OR, |
| 207 | in_be32((void*)GPIO0_OR) | CONFIG_SYS_EEPROM_WP); |
| 208 | out_be32((void*)GPIO0_TCR, |
| 209 | in_be32((void*)GPIO0_TCR) | CONFIG_SYS_EEPROM_WP); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 210 | |
| 211 | /* |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 212 | * Enable interrupts in exar duart mcr[3] |
| 213 | */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 214 | out_8((void *)DUART0_BA + 4, 0x08); |
| 215 | out_8((void *)DUART1_BA + 4, 0x08); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 216 | |
Matthias Fuchs | fceebb4 | 2009-01-02 12:16:35 +0100 | [diff] [blame] | 217 | /* |
| 218 | * Enable auto RS485 mode in 2nd external uart |
| 219 | */ |
| 220 | out_8((void *)DUART1_BA + 3, 0xbf); /* write LCR */ |
| 221 | fctr = in_8((void *)DUART1_BA + 1); /* read FCTR */ |
| 222 | fctr |= 0x08; /* enable RS485 mode */ |
| 223 | out_8((void *)DUART1_BA + 1, fctr); /* write FCTR */ |
| 224 | out_8((void *)DUART1_BA + 3, 0); /* write LCR */ |
| 225 | |
Matthias Fuchs | be0db3e | 2009-10-26 09:58:45 +0100 | [diff] [blame] | 226 | /* |
| 227 | * Init magnetic couplers |
| 228 | */ |
| 229 | if (!getenv("noinitcoupler")) { |
| 230 | init_coupler(CAN0_BA); |
| 231 | init_coupler(CAN1_BA); |
| 232 | } |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 233 | return 0; |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 234 | } |
| 235 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 236 | /* |
| 237 | * Check Board Identity: |
| 238 | */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 239 | int checkboard(void) |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 240 | { |
Wolfgang Denk | 77ddac9 | 2005-10-13 16:45:02 +0200 | [diff] [blame] | 241 | char str[64]; |
Wolfgang Denk | cdb7497 | 2010-07-24 21:55:43 +0200 | [diff] [blame] | 242 | int i = getenv_f("serial#", str, sizeof(str)); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 243 | |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 244 | puts("Board: "); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 245 | |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 246 | if (i == -1) |
| 247 | puts("### No HW ID - assuming PLU405"); |
| 248 | else |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 249 | puts(str); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 250 | |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 251 | putc('\n'); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 252 | return 0; |
| 253 | } |
| 254 | |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 255 | #ifdef CONFIG_IDE_RESET |
Matthias Fuchs | bb57ad4 | 2009-02-20 10:19:19 +0100 | [diff] [blame] | 256 | #define FPGA_CTRL (CONFIG_SYS_FPGA_BASE_ADDR + CONFIG_SYS_FPGA_CTRL) |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 257 | void ide_set_reset(int on) |
| 258 | { |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 259 | /* |
| 260 | * Assert or deassert CompactFlash Reset Pin |
| 261 | */ |
| 262 | if (on) { /* assert RESET */ |
Matthias Fuchs | bb57ad4 | 2009-02-20 10:19:19 +0100 | [diff] [blame] | 263 | out_be16((void *)FPGA_CTRL, |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 264 | in_be16((void *)FPGA_CTRL) & |
| 265 | ~CONFIG_SYS_FPGA_CTRL_CF_RESET); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 266 | } else { /* release RESET */ |
Matthias Fuchs | bb57ad4 | 2009-02-20 10:19:19 +0100 | [diff] [blame] | 267 | out_be16((void *)FPGA_CTRL, |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 268 | in_be16((void *)FPGA_CTRL) | |
| 269 | CONFIG_SYS_FPGA_CTRL_CF_RESET); |
stroese | b318262 | 2003-09-12 08:41:56 +0000 | [diff] [blame] | 270 | } |
| 271 | } |
| 272 | #endif /* CONFIG_IDE_RESET */ |
| 273 | |
Matthias Fuchs | f9fc6a5 | 2007-03-07 15:32:01 +0100 | [diff] [blame] | 274 | void reset_phy(void) |
| 275 | { |
| 276 | #ifdef CONFIG_LXT971_NO_SLEEP |
| 277 | |
| 278 | /* |
| 279 | * Disable sleep mode in LXT971 |
| 280 | */ |
| 281 | lxt971_no_sleep(); |
| 282 | #endif |
| 283 | } |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 284 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 285 | #if defined(CONFIG_SYS_EEPROM_WREN) |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 286 | /* Input: <dev_addr> I2C address of EEPROM device to enable. |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 287 | * <state> -1: deliver current state |
| 288 | * 0: disable write |
| 289 | * 1: enable write |
| 290 | * Returns: -1: wrong device address |
| 291 | * 0: dis-/en- able done |
| 292 | * 0/1: current state if <state> was -1. |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 293 | */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 294 | int eeprom_write_enable(unsigned dev_addr, int state) |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 295 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 296 | if (CONFIG_SYS_I2C_EEPROM_ADDR != dev_addr) { |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 297 | return -1; |
| 298 | } else { |
| 299 | switch (state) { |
| 300 | case 1: |
| 301 | /* Enable write access, clear bit GPIO0. */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 302 | out_be32((void*)GPIO0_OR, |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 303 | in_be32((void*)GPIO0_OR) & |
| 304 | ~CONFIG_SYS_EEPROM_WP); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 305 | state = 0; |
| 306 | break; |
| 307 | case 0: |
| 308 | /* Disable write access, set bit GPIO0. */ |
Matthias Fuchs | 40e43e3 | 2008-09-02 11:35:35 +0200 | [diff] [blame] | 309 | out_be32((void*)GPIO0_OR, |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 310 | in_be32((void*)GPIO0_OR) | |
| 311 | CONFIG_SYS_EEPROM_WP); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 312 | state = 0; |
| 313 | break; |
| 314 | default: |
| 315 | /* Read current status back. */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 316 | state = ((in_be32((void*)GPIO0_OR) & |
| 317 | CONFIG_SYS_EEPROM_WP) == 0); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 318 | break; |
| 319 | } |
| 320 | } |
| 321 | return state; |
| 322 | } |
| 323 | |
Wolfgang Denk | 54841ab | 2010-06-28 22:00:46 +0200 | [diff] [blame] | 324 | int do_eep_wren(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 325 | { |
| 326 | int query = argc == 1; |
| 327 | int state = 0; |
| 328 | |
| 329 | if (query) { |
| 330 | /* Query write access state. */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 331 | state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, -1); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 332 | if (state < 0) { |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 333 | puts("Query of write access state failed.\n"); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 334 | } else { |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 335 | printf("Write access for device 0x%0x is %sabled.\n", |
| 336 | CONFIG_SYS_I2C_EEPROM_ADDR, |
| 337 | state ? "en" : "dis"); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 338 | state = 0; |
| 339 | } |
| 340 | } else { |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 341 | if (argv[1][0] == '0') { |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 342 | /* Disable write access. */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 343 | state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, |
| 344 | 0); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 345 | } else { |
| 346 | /* Enable write access. */ |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 347 | state = eeprom_write_enable(CONFIG_SYS_I2C_EEPROM_ADDR, |
| 348 | 1); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 349 | } |
Matthias Fuchs | d4d2e79 | 2009-07-16 22:13:57 +0200 | [diff] [blame] | 350 | if (state < 0) |
| 351 | puts("Setup of write access state failed.\n"); |
Matthias Fuchs | f6e0f1f | 2007-12-28 17:10:36 +0100 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | return state; |
| 355 | } |
| 356 | |
| 357 | U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 358 | "Enable / disable / query EEPROM write access", |
| 359 | "" |
| 360 | ); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 361 | #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ |