/board/emk/top860/top860.c

https://bitbucket.org/kasimling/u-boot · C · 148 lines · 66 code · 13 blank · 69 comment · 6 complexity · 009a3d570f5a845067fb96024ecab0a0 MD5 · raw file

  1. /*
  2. * (C) Copyright 2003
  3. * EMK Elektronik GmbH <www.emk-elektronik.de>
  4. * Reinhard Meyer <r.meyer@emk-elektronik.de>
  5. *
  6. * Board specific routines for the TOP860
  7. *
  8. * - initialisation
  9. * - interface to VPD data (mac address, clock speeds)
  10. * - memory controller
  11. * - serial io initialisation
  12. * - ethernet io initialisation
  13. *
  14. * -----------------------------------------------------------------
  15. * See file CREDITS for list of people who contributed to this
  16. * project.
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License as
  20. * published by the Free Software Foundation; either version 2 of
  21. * the License, or (at your option) any later version.
  22. *
  23. * This program is distributed in the hope that it will be useful,
  24. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. * GNU General Public License for more details.
  27. *
  28. * You should have received a copy of the GNU General Public License
  29. * along with this program; if not, write to the Free Software
  30. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  31. * MA 02111-1307 USA
  32. */
  33. #include <common.h>
  34. #include <commproc.h>
  35. #include <mpc8xx.h>
  36. #include <asm/io.h>
  37. /*****************************************************************************
  38. * UPM table for 60ns EDO RAM at 25 MHz bus/external clock
  39. *****************************************************************************/
  40. static const uint edo_60ns_25MHz_tbl[] = {
  41. /* single read (offset 0x00 in upm ram) */
  42. 0x0ff3fc04,0x08f3fc04,0x00f3fc04,0x00f3fc00,
  43. 0x33f7fc07,0xfffffc05,0xfffffc05,0xfffffc05,
  44. /* burst read (offset 0x08 in upm ram) */
  45. 0x0ff3fc04,0x08f3fc04,0x00f3fc0c,0x0ff3fc40,
  46. 0x0cf3fc04,0x03f3fc48,0x0cf3fc04,0x03f3fc48,
  47. 0x0cf3fc04,0x03f3fc00,0x3ff7fc07,0xfffffc05,
  48. 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
  49. /* single write (offset 0x18 in upm ram) */
  50. 0x0ffffc04,0x08fffc04,0x30fffc00,0xf1fffc07,
  51. 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
  52. /* burst write (offset 0x20 in upm ram) */
  53. 0x0ffffc04,0x08fffc00,0x00fffc04,0x03fffc4c,
  54. 0x00fffc00,0x07fffc4c,0x00fffc00,0x0ffffc4c,
  55. 0x00fffc00,0x3ffffc07,0xfffffc05,0xfffffc05,
  56. 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
  57. /* refresh (offset 0x30 in upm ram) */
  58. 0xc0fffc04,0x07fffc04,0x0ffffc04,0x0ffffc04,
  59. 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
  60. 0xfffffc05,0xfffffc05,0xfffffc05,0xfffffc05,
  61. /* exception (offset 0x3C in upm ram) */
  62. 0xfffffc07,0xfffffc03,0xfffffc05,0xfffffc05,
  63. };
  64. /*****************************************************************************
  65. * Print Board Identity
  66. *****************************************************************************/
  67. int checkboard (void)
  68. {
  69. puts ("Board:"CONFIG_IDENT_STRING"\n");
  70. return (0);
  71. }
  72. /*****************************************************************************
  73. * Initialize DRAM controller
  74. *****************************************************************************/
  75. phys_size_t initdram (int board_type)
  76. {
  77. volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
  78. volatile memctl8xx_t *memctl = &immap->im_memctl;
  79. /*
  80. * Only initialize memory controller when running from FLASH.
  81. * When running from RAM, don't touch it.
  82. */
  83. if ((ulong) initdram & 0xff000000) {
  84. volatile uint *addr1, *addr2;
  85. uint i;
  86. upmconfig (UPMA, (uint *) edo_60ns_25MHz_tbl,
  87. sizeof (edo_60ns_25MHz_tbl) / sizeof (uint));
  88. memctl->memc_mptpr = 0x0200;
  89. memctl->memc_mamr = 0x0ca20330;
  90. memctl->memc_or2 = -CONFIG_SYS_DRAM_MAX | OR_CSNT_SAM;
  91. memctl->memc_br2 = CONFIG_SYS_DRAM_BASE | BR_MS_UPMA | BR_V;
  92. /*
  93. * Do 8 read accesses to DRAM
  94. */
  95. addr1 = (volatile uint *) 0;
  96. addr2 = (volatile uint *) 0x00400000;
  97. for (i = 0; i < 8; i++)
  98. in_be32(addr1);
  99. /*
  100. * Now check whether we got 4MB or 16MB populated
  101. */
  102. addr1[0] = 0x12345678;
  103. addr1[1] = 0x9abcdef0;
  104. addr2[0] = 0xfeedc0de;
  105. addr2[1] = 0x47110815;
  106. if (addr1[0] == 0xfeedc0de && addr1[1] == 0x47110815) {
  107. /* only 4MB populated */
  108. memctl->memc_or2 = -(CONFIG_SYS_DRAM_MAX / 4) | OR_CSNT_SAM;
  109. }
  110. }
  111. return -(memctl->memc_or2 & 0xffff0000);
  112. }
  113. /*****************************************************************************
  114. * prepare for FLASH detection
  115. *****************************************************************************/
  116. void flash_preinit(void)
  117. {
  118. }
  119. /*****************************************************************************
  120. * finalize FLASH setup
  121. *****************************************************************************/
  122. void flash_afterinit(uint bank, ulong start, ulong size)
  123. {
  124. }
  125. /*****************************************************************************
  126. * otherinits after RAM is there and we are relocated to RAM
  127. * note: though this is an int function, nobody cares for the result!
  128. *****************************************************************************/
  129. int misc_init_r (void)
  130. {
  131. /* read 'factory' part of EEPROM */
  132. extern void read_factory_r (void);
  133. read_factory_r ();
  134. return (0);
  135. }