sdram.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. * Copyright (C) Freescale Semiconductor, Inc. 2006-2007
  3. *
  4. * Authors: Nick.Spence@freescale.com
  5. * Wilson.Lo@freescale.com
  6. * scottwood@freescale.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 <mpc83xx.h>
  28. #include <spd_sdram.h>
  29. #include <asm/bitops.h>
  30. #include <asm/io.h>
  31. #include <asm/processor.h>
  32. DECLARE_GLOBAL_DATA_PTR;
  33. #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
  34. static void resume_from_sleep(void)
  35. {
  36. u32 magic = *(u32 *)0;
  37. typedef void (*func_t)(void);
  38. func_t resume = *(func_t *)4;
  39. if (magic == 0xf5153ae5)
  40. resume();
  41. gd->flags &= ~GD_FLG_SILENT;
  42. puts("\nResume from sleep failed: bad magic word\n");
  43. }
  44. #endif
  45. /* Fixed sdram init -- doesn't use serial presence detect.
  46. *
  47. * This is useful for faster booting in configs where the RAM is unlikely
  48. * to be changed, or for things like NAND booting where space is tight.
  49. */
  50. static long fixed_sdram(void)
  51. {
  52. u32 msize = CONFIG_SYS_DDR_SIZE * 1024 * 1024;
  53. #ifndef CONFIG_SYS_RAMBOOT
  54. volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
  55. u32 msize_log2 = __ilog2(msize);
  56. im->sysconf.ddrlaw[0].bar = CONFIG_SYS_DDR_SDRAM_BASE & 0xfffff000;
  57. im->sysconf.ddrlaw[0].ar = LBLAWAR_EN | (msize_log2 - 1);
  58. im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR_VALUE;
  59. /*
  60. * Erratum DDR3 requires a 50ms delay after clearing DDRCDR[DDR_cfg],
  61. * or the DDR2 controller may fail to initialize correctly.
  62. */
  63. udelay(50000);
  64. im->ddr.csbnds[0].csbnds = (msize - 1) >> 24;
  65. im->ddr.cs_config[0] = CONFIG_SYS_DDR_CONFIG;
  66. /* Currently we use only one CS, so disable the other bank. */
  67. im->ddr.cs_config[1] = 0;
  68. im->ddr.sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CNTL;
  69. im->ddr.timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
  70. im->ddr.timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
  71. im->ddr.timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
  72. im->ddr.timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
  73. #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
  74. if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
  75. im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG | SDRAM_CFG_BI;
  76. else
  77. #endif
  78. im->ddr.sdram_cfg = CONFIG_SYS_SDRAM_CFG;
  79. im->ddr.sdram_cfg2 = CONFIG_SYS_SDRAM_CFG2;
  80. im->ddr.sdram_mode = CONFIG_SYS_DDR_MODE;
  81. im->ddr.sdram_mode2 = CONFIG_SYS_DDR_MODE_2;
  82. im->ddr.sdram_interval = CONFIG_SYS_DDR_INTERVAL;
  83. sync();
  84. /* enable DDR controller */
  85. im->ddr.sdram_cfg |= SDRAM_CFG_MEM_EN;
  86. #endif
  87. return msize;
  88. }
  89. phys_size_t initdram(int board_type)
  90. {
  91. volatile immap_t *im = (volatile immap_t *)CONFIG_SYS_IMMR;
  92. volatile fsl_lbus_t *lbc = &im->lbus;
  93. u32 msize;
  94. if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32)im)
  95. return -1;
  96. /* DDR SDRAM - Main SODIMM */
  97. msize = fixed_sdram();
  98. /* Local Bus setup lbcr and mrtpr */
  99. lbc->lbcr = CONFIG_SYS_LBC_LBCR;
  100. lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
  101. sync();
  102. #ifndef CONFIG_SYS_8313ERDB_BROKEN_PMC
  103. if (im->pmc.pmccr1 & PMCCR1_POWER_OFF)
  104. resume_from_sleep();
  105. #endif
  106. /* return total bus SDRAM size(bytes) -- DDR */
  107. return msize;
  108. }