ash405.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. #include <common.h>
  24. #include <asm/processor.h>
  25. #include <asm/io.h>
  26. #include <command.h>
  27. #include <malloc.h>
  28. /* ------------------------------------------------------------------------- */
  29. #if 0
  30. #define FPGA_DEBUG
  31. #endif
  32. extern void lxt971_no_sleep(void);
  33. /* fpga configuration data - gzip compressed and generated by bin2c */
  34. const unsigned char fpgadata[] =
  35. {
  36. #include "fpgadata.c"
  37. };
  38. /*
  39. * include common fpga code (for esd boards)
  40. */
  41. #include "../common/fpga.c"
  42. int board_early_init_f (void)
  43. {
  44. /*
  45. * IRQ 0-15 405GP internally generated; active high; level sensitive
  46. * IRQ 16 405GP internally generated; active low; level sensitive
  47. * IRQ 17-24 RESERVED
  48. * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
  49. * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
  50. * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
  51. * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
  52. * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
  53. * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
  54. * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
  55. */
  56. mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
  57. mtdcr(UIC0ER, 0x00000000); /* disable all ints */
  58. mtdcr(UIC0CR, 0x00000000); /* set all to be non-critical*/
  59. mtdcr(UIC0PR, 0xFFFFFF9F); /* set int polarities */
  60. mtdcr(UIC0TR, 0x10000000); /* set int trigger levels */
  61. mtdcr(UIC0VCR, 0x00000001); /* set vect base=0,INT0 highest priority*/
  62. mtdcr(UIC0SR, 0xFFFFFFFF); /* clear all ints */
  63. /*
  64. * EBC Configuration Register: set ready timeout to 512 ebc-clks -> ca. 15 us
  65. */
  66. mtebc (EBC0_CFG, 0xa8400000); /* ebc always driven */
  67. return 0;
  68. }
  69. int misc_init_r (void)
  70. {
  71. unsigned char *dst;
  72. ulong len = sizeof(fpgadata);
  73. int status;
  74. int index;
  75. int i;
  76. dst = malloc(CONFIG_SYS_FPGA_MAX_SIZE);
  77. if (gunzip (dst, CONFIG_SYS_FPGA_MAX_SIZE, (uchar *)fpgadata, &len) != 0) {
  78. printf ("GUNZIP ERROR - must RESET board to recover\n");
  79. do_reset (NULL, 0, 0, NULL);
  80. }
  81. status = fpga_boot(dst, len);
  82. if (status != 0) {
  83. printf("\nFPGA: Booting failed ");
  84. switch (status) {
  85. case ERROR_FPGA_PRG_INIT_LOW:
  86. printf("(Timeout: INIT not low after asserting PROGRAM*)\n ");
  87. break;
  88. case ERROR_FPGA_PRG_INIT_HIGH:
  89. printf("(Timeout: INIT not high after deasserting PROGRAM*)\n ");
  90. break;
  91. case ERROR_FPGA_PRG_DONE:
  92. printf("(Timeout: DONE not high after programming FPGA)\n ");
  93. break;
  94. }
  95. /* display infos on fpgaimage */
  96. index = 15;
  97. for (i=0; i<4; i++) {
  98. len = dst[index];
  99. printf("FPGA: %s\n", &(dst[index+1]));
  100. index += len+3;
  101. }
  102. putc ('\n');
  103. /* delayed reboot */
  104. for (i=20; i>0; i--) {
  105. printf("Rebooting in %2d seconds \r",i);
  106. for (index=0;index<1000;index++)
  107. udelay(1000);
  108. }
  109. putc ('\n');
  110. do_reset(NULL, 0, 0, NULL);
  111. }
  112. puts("FPGA: ");
  113. /* display infos on fpgaimage */
  114. index = 15;
  115. for (i=0; i<4; i++) {
  116. len = dst[index];
  117. printf("%s ", &(dst[index+1]));
  118. index += len+3;
  119. }
  120. putc ('\n');
  121. free(dst);
  122. /*
  123. * Reset FPGA via FPGA_DATA pin
  124. */
  125. SET_FPGA(FPGA_PRG | FPGA_CLK);
  126. udelay(1000); /* wait 1ms */
  127. SET_FPGA(FPGA_PRG | FPGA_CLK | FPGA_DATA);
  128. udelay(1000); /* wait 1ms */
  129. /*
  130. * Reset external DUARTs
  131. */
  132. out_be32((void *)GPIO0_OR, in_be32((void *)GPIO0_OR) | CONFIG_SYS_DUART_RST);
  133. udelay(10); /* wait 10us */
  134. out_be32((void *)GPIO0_OR, in_be32((void *)GPIO0_OR) & ~CONFIG_SYS_DUART_RST);
  135. udelay(1000); /* wait 1ms */
  136. /*
  137. * Enable interrupts in exar duart mcr[3]
  138. */
  139. out_8((void *)(DUART0_BA + 4), 0x08);
  140. out_8((void *)(DUART1_BA + 4), 0x08);
  141. out_8((void *)(DUART2_BA + 4), 0x08);
  142. out_8((void *)(DUART3_BA + 4), 0x08);
  143. return (0);
  144. }
  145. /*
  146. * Check Board Identity:
  147. */
  148. int checkboard (void)
  149. {
  150. char str[64];
  151. int i = getenv_f("serial#", str, sizeof(str));
  152. puts ("Board: ");
  153. if (i == -1) {
  154. puts ("### No HW ID - assuming ASH405");
  155. } else {
  156. puts(str);
  157. }
  158. putc ('\n');
  159. return 0;
  160. }
  161. void reset_phy(void)
  162. {
  163. #ifdef CONFIG_LXT971_NO_SLEEP
  164. /*
  165. * Disable sleep mode in LXT971
  166. */
  167. lxt971_no_sleep();
  168. #endif
  169. }