2 * (C) Copyright 2001-2003
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
25 #include <asm/processor.h>
32 DECLARE_GLOBAL_DATA_PTR;
34 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); /*cmd_boot.c*/
39 /* fpga configuration data - generated by bin2cc */
40 const unsigned char fpgadata[] =
42 #ifdef CONFIG_CPCI405_VER2
43 # ifdef CONFIG_CPCI405AB
44 # include "fpgadata_cpci405ab.c"
46 # include "fpgadata_cpci4052.c"
49 # include "fpgadata_cpci405.c"
54 * include common fpga code (for esd boards)
56 #include "../common/fpga.c"
57 #include "../common/auto_update.h"
59 #ifdef CONFIG_CPCI405AB
60 au_image_t au_image[] = {
61 {"cpci405ab/preinst.img", 0, -1, AU_SCRIPT},
62 {"cpci405ab/pImage", 0xffc00000, 0x000c0000, AU_NOR},
63 {"cpci405ab/pImage.initrd", 0xffcc0000, 0x00300000, AU_NOR},
64 {"cpci405ab/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE},
65 {"cpci405ab/postinst.img", 0, 0, AU_SCRIPT},
68 #ifdef CONFIG_CPCI405_VER2
69 au_image_t au_image[] = {
70 {"cpci4052/preinst.img", 0, -1, AU_SCRIPT},
71 {"cpci4052/pImage", 0xffc00000, 0x000c0000, AU_NOR},
72 {"cpci4052/pImage.initrd", 0xffcc0000, 0x00300000, AU_NOR},
73 {"cpci4052/u-boot.img", 0xfffc0000, 0x00040000, AU_FIRMWARE},
74 {"cpci4052/postinst.img", 0, 0, AU_SCRIPT},
77 au_image_t au_image[] = {
78 {"cpci405/preinst.img", 0, -1, AU_SCRIPT},
79 {"cpci405/pImage", 0xffc00000, 0x000c0000, AU_NOR},
80 {"cpci405/pImage.initrd", 0xffcc0000, 0x00310000, AU_NOR},
81 {"cpci405/u-boot.img", 0xfffd0000, 0x00030000, AU_FIRMWARE},
82 {"cpci405/postinst.img", 0, 0, AU_SCRIPT},
87 int N_AU_IMAGES = (sizeof(au_image) / sizeof(au_image[0]));
90 int cpci405_version(void);
91 int gunzip(void *, int, unsigned char *, unsigned long *);
92 void lxt971_no_sleep(void);
94 int board_early_init_f (void)
96 #ifndef CONFIG_CPCI405_VER2
102 /* set up serial port with default baudrate */
103 (void) get_clocks ();
104 gd->baudrate = CONFIG_BAUDRATE;
110 * First pull fpga-prg pin low, to disable fpga logic (on version 2 board)
112 out32(GPIO0_ODR, 0x00000000); /* no open drain pins */
113 out32(GPIO0_TCR, CFG_FPGA_PRG); /* setup for output */
114 out32(GPIO0_OR, CFG_FPGA_PRG); /* set output pins to high */
115 out32(GPIO0_OR, 0); /* pull prg low */
120 #ifndef CONFIG_CPCI405_VER2
121 if (cpci405_version() == 1) {
122 status = fpga_boot((unsigned char *)fpgadata, sizeof(fpgadata));
124 /* booting FPGA failed */
126 /* set up serial port with default baudrate */
127 (void) get_clocks ();
128 gd->baudrate = CONFIG_BAUDRATE;
132 printf("\nFPGA: Booting failed ");
134 case ERROR_FPGA_PRG_INIT_LOW:
135 printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
137 case ERROR_FPGA_PRG_INIT_HIGH:
138 printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
140 case ERROR_FPGA_PRG_DONE:
141 printf("(Timeout: DONE not high after programming FPGA)\n ");
145 /* display infos on fpgaimage */
147 for (i=0; i<4; i++) {
148 len = fpgadata[index];
149 printf("FPGA: %s\n", &(fpgadata[index+1]));
154 for (i=20; i>0; i--) {
155 printf("Rebooting in %2d seconds \r",i);
156 for (index=0;index<1000;index++)
160 do_reset(NULL, 0, 0, NULL);
163 #endif /* !CONFIG_CPCI405_VER2 */
166 * IRQ 0-15 405GP internally generated; active high; level sensitive
167 * IRQ 16 405GP internally generated; active low; level sensitive
169 * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
170 * IRQ 26 (EXT IRQ 1) CAN1 (+FPGA on CPCI4052) ; active low; level sensitive
171 * IRQ 27 (EXT IRQ 2) PCI SLOT 0; active low; level sensitive
172 * IRQ 28 (EXT IRQ 3) PCI SLOT 1; active low; level sensitive
173 * IRQ 29 (EXT IRQ 4) PCI SLOT 2; active low; level sensitive
174 * IRQ 30 (EXT IRQ 5) PCI SLOT 3; active low; level sensitive
175 * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
177 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
178 mtdcr(uicer, 0x00000000); /* disable all ints */
179 mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
180 #ifdef CONFIG_CPCI405_6U
181 if (cpci405_version() == 3) {
182 mtdcr(uicpr, 0xFFFFFF99); /* set int polarities */
184 mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */
187 mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */
189 mtdcr(uictr, 0x10000000); /* set int trigger levels */
190 mtdcr(uicvcr, 0x00000001); /* set vect base=0,INT0 highest priority*/
191 mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
196 /* ------------------------------------------------------------------------- */
200 #ifdef CONFIG_CPCI405_VER2
201 return 0; /* no, board is cpci405 */
203 if ((*(unsigned char *)0xf0000400 == 0x00) &&
204 (*(unsigned char *)0xf0000401 == 0x01))
205 return 0; /* no, board is cpci405 */
207 return -1; /* yes, board is cterm-m2 */
211 int cpci405_host(void)
213 if (mfdcr(strap) & PSR_PCI_ARBIT_EN)
214 return -1; /* yes, board is cpci405 host */
216 return 0; /* no, board is cpci405 adapter */
219 int cpci405_version(void)
221 unsigned long cntrl0Reg;
225 * Setup GPIO pins (CS2/GPIO11 and CS3/GPIO12 as GPIO)
227 cntrl0Reg = mfdcr(cntrl0);
228 mtdcr(cntrl0, cntrl0Reg | 0x03000000);
229 out_be32((void*)GPIO0_ODR, in_be32((void*)GPIO0_ODR) & ~0x00180000);
230 out_be32((void*)GPIO0_TCR, in_be32((void*)GPIO0_TCR) & ~0x00180000);
231 udelay(1000); /* wait some time before reading input */
232 value = in_be32((void*)GPIO0_IR) & 0x00180000; /* get config bits */
235 * Restore GPIO settings
237 mtdcr(cntrl0, cntrl0Reg);
241 /* CS2==1 && CS3==1 -> version 1 */
244 /* CS2==0 && CS3==1 -> version 2 */
247 /* CS2==1 && CS3==0 -> version 3 or 6U board */
250 /* CS2==0 && CS3==0 -> version 4 */
253 /* should not be reached! */
258 int misc_init_f (void)
260 return 0; /* dummy implementation */
263 int misc_init_r (void)
265 unsigned long cntrl0Reg;
267 /* adjust flash start and offset */
268 gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
269 gd->bd->bi_flashoffset = 0;
271 #ifdef CONFIG_CPCI405_VER2
274 ulong len = sizeof(fpgadata);
280 * On CPCI-405 version 2 the environment is saved in eeprom!
281 * FPGA can be gzip compressed (malloc) and booted this late.
283 if (cpci405_version() >= 2) {
285 * Setup GPIO pins (CS6+CS7 as GPIO)
287 cntrl0Reg = mfdcr(cntrl0);
288 mtdcr(cntrl0, cntrl0Reg | 0x00300000);
290 dst = malloc(CFG_FPGA_MAX_SIZE);
291 if (gunzip (dst, CFG_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
292 printf ("GUNZIP ERROR - must RESET board to recover\n");
293 do_reset (NULL, 0, 0, NULL);
296 status = fpga_boot(dst, len);
298 printf("\nFPGA: Booting failed ");
300 case ERROR_FPGA_PRG_INIT_LOW:
301 printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
303 case ERROR_FPGA_PRG_INIT_HIGH:
304 printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
306 case ERROR_FPGA_PRG_DONE:
307 printf("(Timeout: DONE not high after programming FPGA)\n ");
311 /* display infos on fpgaimage */
313 for (i=0; i<4; i++) {
315 printf("FPGA: %s\n", &(dst[index+1]));
320 for (i=20; i>0; i--) {
321 printf("Rebooting in %2d seconds \r",i);
322 for (index=0;index<1000;index++)
326 do_reset(NULL, 0, 0, NULL);
329 /* restore gpio/cs settings */
330 mtdcr(cntrl0, cntrl0Reg);
334 /* display infos on fpgaimage */
336 for (i=0; i<4; i++) {
338 printf("%s ", &(dst[index+1]));
346 * Reset FPGA via FPGA_DATA pin
348 SET_FPGA(FPGA_PRG | FPGA_CLK);
349 udelay(1000); /* wait 1ms */
350 SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
351 udelay(1000); /* wait 1ms */
353 #ifdef CONFIG_CPCI405_6U
354 if (cpci405_version() == 3) {
355 volatile unsigned short *fpga_mode = (unsigned short *)CFG_FPGA_BASE_ADDR;
356 volatile unsigned char *leds = (unsigned char *)CFG_LED_ADDR;
359 * Enable outputs in fpga on version 3 board
361 *fpga_mode |= CFG_FPGA_MODE_ENABLE_OUTPUT;
369 * Reset external DUART
371 *fpga_mode |= CFG_FPGA_MODE_DUART_RESET;
373 *fpga_mode &= ~(CFG_FPGA_MODE_DUART_RESET);
378 puts("\n*** U-Boot Version does not match Board Version!\n");
379 puts("*** CPCI-405 Version 1.x detected!\n");
380 puts("*** Please use correct U-Boot version (CPCI405 instead of CPCI4052)!\n\n");
384 #else /* CONFIG_CPCI405_VER2 */
386 #if 0 /* test-only: code-plug now not relavant for ip-address any more */
388 * Generate last byte of ip-addr from code-plug @ 0xf0000400
392 unsigned char ipbyte = *(unsigned char *)0xf0000400;
395 * Only overwrite ip-addr with allowed values
397 if ((ipbyte != 0x00) && (ipbyte != 0xff)) {
398 bd->bi_ip_addr = (bd->bi_ip_addr & 0xffffff00) | ipbyte;
399 sprintf(str, "%ld.%ld.%ld.%ld",
400 (bd->bi_ip_addr & 0xff000000) >> 24,
401 (bd->bi_ip_addr & 0x00ff0000) >> 16,
402 (bd->bi_ip_addr & 0x0000ff00) >> 8,
403 (bd->bi_ip_addr & 0x000000ff));
404 setenv("ipaddr", str);
409 if (cpci405_version() >= 2) {
410 puts("\n*** U-Boot Version does not match Board Version!\n");
411 puts("*** CPCI-405 Board Version 2.x detected!\n");
412 puts("*** Please use correct U-Boot version (CPCI4052 instead of CPCI405)!\n\n");
415 #endif /* CONFIG_CPCI405_VER2 */
418 * Select cts (and not dsr) on uart1
420 cntrl0Reg = mfdcr(cntrl0);
421 mtdcr(cntrl0, cntrl0Reg | 0x00001000);
427 * Check Board Identity:
430 int checkboard (void)
432 #ifndef CONFIG_CPCI405_VER2
437 int i = getenv_r ("serial#", str, sizeof(str));
443 puts ("### No HW ID - assuming CPCI405");
448 ver = cpci405_version();
449 printf(" (Ver %d.x, ", ver);
451 #if 0 /* test-only */
453 volatile u16 *fpga_status = (u16 *)CFG_FPGA_BASE_ADDR + 1;
455 if (*fpga_status & CFG_FPGA_STATUS_FLASH) {
456 puts ("FLASH Bank B, ");
458 puts ("FLASH Bank A, ");
467 * Read board-id and save in env-variable
469 sprintf(str, "%d", *(unsigned char *)0xf0000400);
470 setenv("boardid", str);
471 printf("CTERM-M2 - Id=%s)", str);
473 if (cpci405_host()) {
474 puts ("PCI Host Version)");
476 puts ("PCI Adapter Version)");
480 #ifndef CONFIG_CPCI405_VER2
483 /* display infos on fpgaimage */
485 for (i=0; i<4; i++) {
486 len = fpgadata[index];
487 printf("%s ", &(fpgadata[index+1]));
496 /* ------------------------------------------------------------------------- */
498 long int initdram (int board_type)
502 mtdcr(memcfga, mem_mb0cf);
503 val = mfdcr(memcfgd);
505 return (4*1024*1024 << ((val & 0x000e0000) >> 17));
510 #ifdef CONFIG_LXT971_NO_SLEEP
513 * Disable sleep mode in LXT971
519 /* ------------------------------------------------------------------------- */
521 #ifdef CONFIG_CPCI405_VER2
522 #ifdef CONFIG_IDE_RESET
524 void ide_set_reset(int on)
526 volatile unsigned short *fpga_mode = (unsigned short *)CFG_FPGA_BASE_ADDR;
529 * Assert or deassert CompactFlash Reset Pin
531 if (on) { /* assert RESET */
532 *fpga_mode &= ~(CFG_FPGA_MODE_CF_RESET);
533 } else { /* release RESET */
534 *fpga_mode |= CFG_FPGA_MODE_CF_RESET;
538 #endif /* CONFIG_IDE_RESET */
539 #endif /* CONFIG_CPCI405_VER2 */
541 #if defined(CONFIG_PCI)
542 void cpci405_pci_fixup_irq(struct pci_controller *hose, pci_dev_t dev)
544 unsigned char int_line = 0xff;
547 * Write pci interrupt line register (cpci405 specific)
549 switch (PCI_DEV(dev) & 0x03) {
564 pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line);
567 int pci_pre_init(struct pci_controller *hose)
569 hose->fixup_irq = cpci405_pci_fixup_irq;
572 #endif /* defined(CONFIG_PCI) */
575 #ifdef CONFIG_CPCI405AB
577 #define ONE_WIRE_CLEAR (*(volatile unsigned short *)(CFG_FPGA_BASE_ADDR + CFG_FPGA_MODE) \
578 |= CFG_FPGA_MODE_1WIRE_DIR)
579 #define ONE_WIRE_SET (*(volatile unsigned short *)(CFG_FPGA_BASE_ADDR + CFG_FPGA_MODE) \
580 &= ~CFG_FPGA_MODE_1WIRE_DIR)
581 #define ONE_WIRE_GET (*(volatile unsigned short *)(CFG_FPGA_BASE_ADDR + CFG_FPGA_STATUS) \
582 & CFG_FPGA_MODE_1WIRE)
585 * Generate a 1-wire reset, return 1 if no presence detect was found,
586 * return 0 otherwise.
587 * (NOTE: Does not handle alarm presence from DS2404/DS1994)
589 int OWTouchReset(void)
598 result = ONE_WIRE_GET;
605 * Send 1 a 1-wire write bit.
606 * Provide 10us recovery time.
608 void OWWriteBit(int bit)
630 * Read a bit from the 1-wire bus and return it.
631 * Provide 10us recovery time.
642 result = ONE_WIRE_GET;
648 void OWWriteByte(int data)
652 for (loop=0; loop<8; loop++) {
653 OWWriteBit(data & 0x01);
660 int loop, result = 0;
662 for (loop=0; loop<8; loop++) {
672 int do_onewire(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
674 volatile unsigned short val;
677 unsigned char ow_id[6];
679 unsigned char ow_crc;
682 * Clear 1-wire bit (open drain with pull-up)
684 val = *(volatile unsigned short *)0xf0400000;
685 val &= ~0x1000; /* clear 1-wire bit */
686 *(volatile unsigned short *)0xf0400000 = val;
688 result = OWTouchReset();
690 puts("No 1-wire device detected!\n");
693 OWWriteByte(0x33); /* send read rom command */
694 OWReadByte(); /* skip family code ( == 0x01) */
695 for (i=0; i<6; i++) {
696 ow_id[i] = OWReadByte();
698 ow_crc = OWReadByte(); /* read crc */
700 sprintf(str, "%08X%04X", *(unsigned int *)&ow_id[0], *(unsigned short *)&ow_id[4]);
701 printf("Setting environment variable 'ow_id' to %s\n", str);
702 setenv("ow_id", str);
707 onewire, 1, 1, do_onewire,
708 "onewire - Read 1-write ID\n",
712 #define CFG_I2C_EEPROM_ADDR_2 0x51 /* EEPROM CAT28WC32 */
713 #define CFG_ENV_SIZE_2 0x800 /* 2048 bytes may be used for env vars*/
716 * Write backplane ip-address...
718 int do_get_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
727 buf = malloc(CFG_ENV_SIZE_2);
728 if (eeprom_read(CFG_I2C_EEPROM_ADDR_2, 0, (uchar *)buf, CFG_ENV_SIZE_2)) {
729 puts("\nError reading backplane EEPROM!\n");
731 crc = crc32(0, (uchar *)(buf+4), CFG_ENV_SIZE_2-4);
732 if (crc != *(ulong *)buf) {
733 printf("ERROR: crc mismatch %08lx %08lx\n", crc, *(ulong *)buf);
740 ptr = strstr(buf+4, "bp_ip=");
742 printf("ERROR: bp_ip not found!\n");
746 ipaddr = string_to_ip(ptr);
749 * Update whole ip-addr
751 bd->bi_ip_addr = ipaddr;
752 sprintf(str, "%ld.%ld.%ld.%ld",
753 (bd->bi_ip_addr & 0xff000000) >> 24,
754 (bd->bi_ip_addr & 0x00ff0000) >> 16,
755 (bd->bi_ip_addr & 0x0000ff00) >> 8,
756 (bd->bi_ip_addr & 0x000000ff));
757 setenv("ipaddr", str);
758 printf("Updated ip_addr from bp_eeprom to %s!\n", str);
766 getbpip, 1, 1, do_get_bpip,
767 "getbpip - Update IP-Address with Backplane IP-Address\n",
772 * Set and print backplane ip...
774 int do_set_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
785 printf("Setting bp_ip to %s\n", argv[1]);
786 buf = malloc(CFG_ENV_SIZE_2);
787 memset(buf, 0, CFG_ENV_SIZE_2);
788 sprintf(str, "bp_ip=%s", argv[1]);
790 crc = crc32(0, (uchar *)(buf+4), CFG_ENV_SIZE_2-4);
793 if (eeprom_write(CFG_I2C_EEPROM_ADDR_2, 0, (uchar *)buf, CFG_ENV_SIZE_2)) {
794 puts("\nError writing backplane EEPROM!\n");
802 setbpip, 2, 1, do_set_bpip,
803 "setbpip - Write Backplane IP-Address\n",
807 #endif /* CONFIG_CPCI405AB */