wuh405.c 4.7 KB

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