nand_boot.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright 2011 Freescale Semiconductor, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of
  7. * the License, or (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. *
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. *
  20. */
  21. #include <common.h>
  22. #include <mpc85xx.h>
  23. #include <asm/io.h>
  24. #include <ns16550.h>
  25. #include <nand.h>
  26. #include <asm/mmu.h>
  27. #include <asm/immap_85xx.h>
  28. #include <asm/fsl_ddr_sdram.h>
  29. #include <asm/fsl_law.h>
  30. #define udelay(x) { int j; for (j = 0; j < x * 10000; j++) isync(); }
  31. unsigned long ddr_freq_mhz;
  32. void sdram_init(void)
  33. {
  34. ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC85xx_DDR_ADDR;
  35. out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL | SDRAM_CFG_32_BE);
  36. out_be32(&ddr->cs0_bnds, CONFIG_SYS_DDR_CS0_BNDS);
  37. out_be32(&ddr->cs0_config, CONFIG_SYS_DDR_CS0_CONFIG);
  38. out_be32(&ddr->sdram_cfg_2, CONFIG_SYS_DDR_CONTROL_2);
  39. out_be32(&ddr->sdram_data_init, CONFIG_SYS_DDR_DATA_INIT);
  40. if (ddr_freq_mhz < 700) {
  41. out_be32(&ddr->timing_cfg_3, CONFIG_SYS_DDR_TIMING_3_667);
  42. out_be32(&ddr->timing_cfg_0, CONFIG_SYS_DDR_TIMING_0_667);
  43. out_be32(&ddr->timing_cfg_1, CONFIG_SYS_DDR_TIMING_1_667);
  44. out_be32(&ddr->timing_cfg_2, CONFIG_SYS_DDR_TIMING_2_667);
  45. out_be32(&ddr->sdram_mode, CONFIG_SYS_DDR_MODE_1_667);
  46. out_be32(&ddr->sdram_mode_2, CONFIG_SYS_DDR_MODE_2_667);
  47. out_be32(&ddr->sdram_interval, CONFIG_SYS_DDR_INTERVAL_667);
  48. out_be32(&ddr->sdram_clk_cntl, CONFIG_SYS_DDR_CLK_CTRL_667);
  49. out_be32(&ddr->ddr_wrlvl_cntl,
  50. CONFIG_SYS_DDR_WRLVL_CONTROL_667);
  51. } else {
  52. out_be32(&ddr->timing_cfg_3, CONFIG_SYS_DDR_TIMING_3_800);
  53. out_be32(&ddr->timing_cfg_0, CONFIG_SYS_DDR_TIMING_0_800);
  54. out_be32(&ddr->timing_cfg_1, CONFIG_SYS_DDR_TIMING_1_800);
  55. out_be32(&ddr->timing_cfg_2, CONFIG_SYS_DDR_TIMING_2_800);
  56. out_be32(&ddr->sdram_mode, CONFIG_SYS_DDR_MODE_1_800);
  57. out_be32(&ddr->sdram_mode_2, CONFIG_SYS_DDR_MODE_2_800);
  58. out_be32(&ddr->sdram_interval, CONFIG_SYS_DDR_INTERVAL_800);
  59. out_be32(&ddr->sdram_clk_cntl, CONFIG_SYS_DDR_CLK_CTRL_800);
  60. out_be32(&ddr->ddr_wrlvl_cntl,
  61. CONFIG_SYS_DDR_WRLVL_CONTROL_800);
  62. }
  63. out_be32(&ddr->timing_cfg_4, CONFIG_SYS_DDR_TIMING_4);
  64. out_be32(&ddr->timing_cfg_5, CONFIG_SYS_DDR_TIMING_5);
  65. out_be32(&ddr->ddr_zq_cntl, CONFIG_SYS_DDR_ZQ_CONTROL);
  66. /* mimic 500us delay, with busy isync() loop */
  67. udelay(100);
  68. /* Let the controller go */
  69. out_be32(&ddr->sdram_cfg, in_be32(&ddr->sdram_cfg) | SDRAM_CFG_MEM_EN);
  70. set_next_law(CONFIG_SYS_NAND_DDR_LAW, LAW_SIZE_1G, LAW_TRGT_IF_DDR_1);
  71. }
  72. void board_init_f(ulong bootflag)
  73. {
  74. u32 plat_ratio, ddr_ratio;
  75. unsigned long bus_clk;
  76. ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
  77. /* initialize selected port with appropriate baud rate */
  78. plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
  79. plat_ratio >>= 1;
  80. bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
  81. ddr_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_DDR_RATIO;
  82. ddr_ratio = ddr_ratio >> MPC85xx_PORPLLSR_DDR_RATIO_SHIFT;
  83. ddr_freq_mhz = (CONFIG_SYS_CLK_FREQ * ddr_ratio) / 0x1000000;
  84. NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
  85. bus_clk / 16 / CONFIG_BAUDRATE);
  86. puts("\nNAND boot... ");
  87. /* Initialize the DDR3 */
  88. sdram_init();
  89. /* copy code to RAM and jump to it - this should not return */
  90. /* NOTE - code has to be copied out of NAND buffer before
  91. * other blocks can be read.
  92. */
  93. relocate_code(CONFIG_SYS_NAND_U_BOOT_RELOC_SP, 0,
  94. CONFIG_SYS_NAND_U_BOOT_RELOC);
  95. }
  96. void board_init_r(gd_t *gd, ulong dest_addr)
  97. {
  98. nand_boot();
  99. }
  100. void putc(char c)
  101. {
  102. if (c == '\n')
  103. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r');
  104. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c);
  105. }
  106. void puts(const char *str)
  107. {
  108. while (*str)
  109. putc(*str++);
  110. }