pmc405.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * (C) Copyright 2001-2003
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. *
  5. * (C) Copyright 2005-2009
  6. * Matthias Fuchs, esd gmbh germany, matthias.fuchs@esd-electronics.com
  7. *
  8. * See file CREDITS for list of people who contributed to this
  9. * project.
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation; either version 2 of
  14. * the License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU General Public License
  22. * along with this program; if not, write to the Free Software
  23. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  24. * MA 02111-1307 USA
  25. */
  26. #include <common.h>
  27. #include <asm/processor.h>
  28. #include <asm/io.h>
  29. #include <command.h>
  30. #include <malloc.h>
  31. DECLARE_GLOBAL_DATA_PTR;
  32. extern void lxt971_no_sleep(void);
  33. /* fpga configuration data - not compressed, generated by bin2c */
  34. const unsigned char fpgadata[] =
  35. {
  36. #include "fpgadata.c"
  37. };
  38. int filesize = sizeof(fpgadata);
  39. int board_early_init_f (void)
  40. {
  41. /*
  42. * IRQ 0-15 405GP internally generated; active high; level sensitive
  43. * IRQ 16 405GP internally generated; active low; level sensitive
  44. * IRQ 17-24 RESERVED
  45. * IRQ 25 (EXT IRQ 0) CAN0; active low; level sensitive
  46. * IRQ 26 (EXT IRQ 1) SER0 ; active low; level sensitive
  47. * IRQ 27 (EXT IRQ 2) SER1; active low; level sensitive
  48. * IRQ 28 (EXT IRQ 3) FPGA 0; active low; level sensitive
  49. * IRQ 29 (EXT IRQ 4) FPGA 1; active low; level sensitive
  50. * IRQ 30 (EXT IRQ 5) PCI INTA; active low; level sensitive
  51. * IRQ 31 (EXT IRQ 6) COMPACT FLASH; active high; level sensitive
  52. */
  53. mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
  54. mtdcr(uicer, 0x00000000); /* disable all ints */
  55. mtdcr(uiccr, 0x00000000); /* set all to be non-critical*/
  56. mtdcr(uicpr, 0xFFFFFF81); /* set int polarities */
  57. mtdcr(uictr, 0x10000000); /* set int trigger levels */
  58. mtdcr(uicvcr, 0x00000001); /* set vect base=0, INT0 highest priority */
  59. mtdcr(uicsr, 0xFFFFFFFF); /* clear all ints */
  60. /*
  61. * EBC Configuration Register:
  62. * set ready timeout to 512 ebc-clks -> ca. 15 us
  63. */
  64. mtebc (epcr, 0xa8400000);
  65. /*
  66. * Setup GPIO pins
  67. */
  68. mtdcr(cntrl0, mfdcr(cntrl0) | ((CONFIG_SYS_FPGA_INIT |
  69. CONFIG_SYS_FPGA_DONE |
  70. CONFIG_SYS_XEREADY |
  71. CONFIG_SYS_NONMONARCH |
  72. CONFIG_SYS_REV1_2) << 5));
  73. if (!(in_be32((void *)GPIO0_IR) & CONFIG_SYS_REV1_2)) {
  74. /* rev 1.2 boards */
  75. mtdcr(cntrl0, mfdcr(cntrl0) | ((CONFIG_SYS_INTA_FAKE |
  76. CONFIG_SYS_SELF_RST) << 5));
  77. }
  78. out_be32((void *)GPIO0_OR, CONFIG_SYS_VPEN);
  79. /* setup for output */
  80. out_be32((void *)GPIO0_TCR, CONFIG_SYS_FPGA_PRG | CONFIG_SYS_FPGA_CLK |
  81. CONFIG_SYS_FPGA_DATA | CONFIG_SYS_XEREADY | CONFIG_SYS_VPEN);
  82. /*
  83. * - check if rev1_2 is low, then:
  84. * - set/reset CONFIG_SYS_INTA_FAKE/CONFIG_SYS_SELF_RST
  85. * in TCR to assert INTA# or SELFRST#
  86. */
  87. return 0;
  88. }
  89. int misc_init_r (void)
  90. {
  91. /* adjust flash start and offset */
  92. gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
  93. gd->bd->bi_flashoffset = 0;
  94. /* deassert EREADY# */
  95. out_be32((void *)GPIO0_OR,
  96. in_be32((void *)GPIO0_OR) | CONFIG_SYS_XEREADY);
  97. return (0);
  98. }
  99. ushort pmc405_pci_subsys_deviceid(void)
  100. {
  101. ulong val;
  102. val = in_be32((void *)GPIO0_IR);
  103. if (!(val & CONFIG_SYS_REV1_2)) { /* low=rev1.2 */
  104. /* check monarch# signal */
  105. if (val & CONFIG_SYS_NONMONARCH)
  106. return CONFIG_SYS_PCI_SUBSYS_DEVICEID_NONMONARCH;
  107. return CONFIG_SYS_PCI_SUBSYS_DEVICEID_MONARCH;
  108. }
  109. return CONFIG_SYS_PCI_SUBSYS_DEVICEID_NONMONARCH;
  110. }
  111. /*
  112. * Check Board Identity
  113. */
  114. int checkboard (void)
  115. {
  116. ulong val;
  117. char str[64];
  118. int i = getenv_r("serial#", str, sizeof(str));
  119. puts ("Board: ");
  120. if (i == -1)
  121. puts ("### No HW ID - assuming PMC405");
  122. else
  123. puts(str);
  124. val = in_be32((void *)GPIO0_IR);
  125. if (!(val & CONFIG_SYS_REV1_2)) { /* low=rev1.2 */
  126. puts(" rev1.2 (");
  127. if (val & CONFIG_SYS_NONMONARCH) /* monarch# signal */
  128. puts("non-");
  129. puts("monarch)");
  130. } else
  131. puts(" <=rev1.1");
  132. putc ('\n');
  133. return 0;
  134. }
  135. void reset_phy(void)
  136. {
  137. #ifdef CONFIG_LXT971_NO_SLEEP
  138. /*
  139. * Disable sleep mode in LXT971
  140. */
  141. lxt971_no_sleep();
  142. #endif
  143. }