icecube.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * (C) Copyright 2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  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 <mpc5xxx.h>
  25. #include <pci.h>
  26. long int initdram (int board_type)
  27. {
  28. #ifndef CFG_RAMBOOT
  29. /* configure SDRAM start/end */
  30. #if defined(CONFIG_MPC5200)
  31. *(vu_long *)MPC5XXX_SDRAM_CS0CFG = 0x00000018;/* 32M at 0x0 */
  32. *(vu_long *)MPC5XXX_SDRAM_CS1CFG = 0x02000000;/* disabled */
  33. /* setup config registers */
  34. *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = 0xc2233a00;
  35. *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = 0x88b70004;
  36. /* unlock mode register */
  37. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0000;
  38. /* precharge all banks */
  39. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0002;
  40. /* set mode register */
  41. *(vu_long *)MPC5XXX_SDRAM_MODE = 0x408d0000;
  42. /* precharge all banks */
  43. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0002;
  44. /* auto refresh */
  45. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd04f0004;
  46. /* set mode register */
  47. *(vu_long *)MPC5XXX_SDRAM_MODE = 0x008d0000;
  48. /* normal operation */
  49. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0x504f0000;
  50. #elif defined(CONFIG_MGT5100)
  51. *(vu_long *)MPC5XXX_SDRAM_START = 0x00000000;
  52. *(vu_long *)MPC5XXX_SDRAM_STOP = 0x000007ff;/* 64M */
  53. *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
  54. /* setup config registers */
  55. *(vu_long *)MPC5XXX_SDRAM_CONFIG1 = 0xc2222600;
  56. *(vu_long *)MPC5XXX_SDRAM_CONFIG2 = 0x88b70004;
  57. /* address select register */
  58. *(vu_long *)MPC5XXX_SDRAM_XLBSEL = 0x03000000;
  59. /* unlock mode register */
  60. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd14f0000;
  61. /* precharge all banks */
  62. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd14f0002;
  63. /* set mode register */
  64. *(vu_long *)MPC5XXX_SDRAM_MODE = 0x008d0000;
  65. /* precharge all banks */
  66. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd14f0002;
  67. /* auto refresh */
  68. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0xd14f0004;
  69. /* set mode register */
  70. *(vu_long *)MPC5XXX_SDRAM_MODE = 0x008d0000;
  71. /* normal operation */
  72. *(vu_long *)MPC5XXX_SDRAM_CTRL = 0x514f0000;
  73. #endif
  74. #else
  75. #ifdef CONFIG_MGT5100
  76. *(vu_long *)MPC5XXX_ADDECR |= (1 << 22); /* Enable SDRAM */
  77. #endif
  78. #endif
  79. /* return total ram size */
  80. #if defined(CONFIG_MGT5100)
  81. return (64 * 1024 * 1024);
  82. #elif defined(CONFIG_MPC5200)
  83. return (32 * 1024 * 1024);
  84. #endif
  85. }
  86. int checkboard (void)
  87. {
  88. #if defined(CONFIG_MPC5200)
  89. puts ("Board: Motorola MPC5200 (IceCube)\n");
  90. #elif defined(CONFIG_MGT5100)
  91. puts ("Board: Motorola MGT5100 (IceCube)\n");
  92. #endif
  93. return 0;
  94. }
  95. void flash_preinit(void)
  96. {
  97. /*
  98. * Now, when we are in RAM, enable flash write
  99. * access for detection process.
  100. * Note that CS_BOOT cannot be cleared when
  101. * executing in flash.
  102. */
  103. #if defined(CONFIG_MGT5100)
  104. *(vu_long *)MPC5XXX_ADDECR &= ~(1 << 25); /* disable CS_BOOT */
  105. *(vu_long *)MPC5XXX_ADDECR |= (1 << 16); /* enable CS0 */
  106. #endif
  107. *(vu_long *)MPC5XXX_BOOTCS_CFG &= ~0x1; /* clear RO */
  108. }
  109. #ifdef CONFIG_PCI
  110. static struct pci_controller hose;
  111. extern void pci_mpc5xxx_init(struct pci_controller *);
  112. void pci_init_board(void)
  113. {
  114. pci_mpc5xxx_init(&hose);
  115. }
  116. #endif