spl_minimal.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 <ns16550.h>
  23. #include <asm/io.h>
  24. #include <nand.h>
  25. #include <linux/compiler.h>
  26. #include <asm/fsl_law.h>
  27. #include <asm/fsl_ddr_sdram.h>
  28. #include <asm/global_data.h>
  29. DECLARE_GLOBAL_DATA_PTR;
  30. #ifndef CONFIG_SYS_INIT_L2_ADDR
  31. /*
  32. * Fixed sdram init -- doesn't use serial presence detect.
  33. */
  34. static void sdram_init(void)
  35. {
  36. ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC8xxx_DDR_ADDR;
  37. __raw_writel(CONFIG_SYS_DDR_CS0_BNDS, &ddr->cs0_bnds);
  38. __raw_writel(CONFIG_SYS_DDR_CS0_CONFIG, &ddr->cs0_config);
  39. #if CONFIG_CHIP_SELECTS_PER_CTRL > 1
  40. __raw_writel(CONFIG_SYS_DDR_CS1_BNDS, &ddr->cs1_bnds);
  41. __raw_writel(CONFIG_SYS_DDR_CS1_CONFIG, &ddr->cs1_config);
  42. #endif
  43. __raw_writel(CONFIG_SYS_DDR_TIMING_3, &ddr->timing_cfg_3);
  44. __raw_writel(CONFIG_SYS_DDR_TIMING_0, &ddr->timing_cfg_0);
  45. __raw_writel(CONFIG_SYS_DDR_TIMING_1, &ddr->timing_cfg_1);
  46. __raw_writel(CONFIG_SYS_DDR_TIMING_2, &ddr->timing_cfg_2);
  47. __raw_writel(CONFIG_SYS_DDR_CONTROL_2, &ddr->sdram_cfg_2);
  48. __raw_writel(CONFIG_SYS_DDR_MODE_1, &ddr->sdram_mode);
  49. __raw_writel(CONFIG_SYS_DDR_MODE_2, &ddr->sdram_mode_2);
  50. __raw_writel(CONFIG_SYS_DDR_INTERVAL, &ddr->sdram_interval);
  51. __raw_writel(CONFIG_SYS_DDR_DATA_INIT, &ddr->sdram_data_init);
  52. __raw_writel(CONFIG_SYS_DDR_CLK_CTRL, &ddr->sdram_clk_cntl);
  53. __raw_writel(CONFIG_SYS_DDR_TIMING_4, &ddr->timing_cfg_4);
  54. __raw_writel(CONFIG_SYS_DDR_TIMING_5, &ddr->timing_cfg_5);
  55. __raw_writel(CONFIG_SYS_DDR_ZQ_CONTROL, &ddr->ddr_zq_cntl);
  56. __raw_writel(CONFIG_SYS_DDR_WRLVL_CONTROL, &ddr->ddr_wrlvl_cntl);
  57. /* Set, but do not enable the memory */
  58. __raw_writel(CONFIG_SYS_DDR_CONTROL & ~SDRAM_CFG_MEM_EN, &ddr->sdram_cfg);
  59. asm volatile("sync;isync");
  60. udelay(500);
  61. /* Let the controller go */
  62. out_be32(&ddr->sdram_cfg, in_be32(&ddr->sdram_cfg) | SDRAM_CFG_MEM_EN);
  63. set_next_law(0, CONFIG_SYS_SDRAM_SIZE_LAW, LAW_TRGT_IF_DDR_1);
  64. }
  65. #endif
  66. void board_init_f(ulong bootflag)
  67. {
  68. u32 plat_ratio;
  69. ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
  70. #ifndef CONFIG_QE
  71. ccsr_gpio_t *pgpio = (void *)(CONFIG_SYS_MPC85xx_GPIO_ADDR);
  72. #elif defined(CONFIG_P1021RDB)
  73. par_io_t *par_io = (par_io_t *)&(gur->qe_par_io);
  74. #endif
  75. /* initialize selected port with appropriate baud rate */
  76. plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
  77. plat_ratio >>= 1;
  78. gd->bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
  79. NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
  80. gd->bus_clk / 16 / CONFIG_BAUDRATE);
  81. puts("\nNAND boot... ");
  82. #ifndef CONFIG_QE
  83. /* init DDR3 reset signal */
  84. __raw_writel(0x02000000, &pgpio->gpdir);
  85. __raw_writel(0x00200000, &pgpio->gpodr);
  86. __raw_writel(0x00000000, &pgpio->gpdat);
  87. udelay(1000);
  88. __raw_writel(0x00200000, &pgpio->gpdat);
  89. udelay(1000);
  90. __raw_writel(0x00000000, &pgpio->gpdir);
  91. #elif defined(CONFIG_P1021RDB)
  92. /* init DDR3 reset signal CE_PB8 */
  93. out_be32(&par_io[1].cpdir1, 0x00004000);
  94. out_be32(&par_io[1].cpodr, 0x00800000);
  95. out_be32(&par_io[1].cppar1, 0x00000000);
  96. /* reset DDR3 */
  97. out_be32(&par_io[1].cpdat, 0x00800000);
  98. udelay(1000);
  99. out_be32(&par_io[1].cpdat, 0x00000000);
  100. udelay(1000);
  101. out_be32(&par_io[1].cpdat, 0x00800000);
  102. /* disable the CE_PB8 */
  103. out_be32(&par_io[1].cpdir1, 0x00000000);
  104. #endif
  105. #ifndef CONFIG_SYS_INIT_L2_ADDR
  106. /* Initialize the DDR3 */
  107. sdram_init();
  108. #endif
  109. /* copy code to RAM and jump to it - this should not return */
  110. /* NOTE - code has to be copied out of NAND buffer before
  111. * other blocks can be read.
  112. */
  113. relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
  114. }
  115. void board_init_r(gd_t *gd, ulong dest_addr)
  116. {
  117. nand_boot();
  118. }
  119. void putc(char c)
  120. {
  121. if (c == '\n')
  122. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r');
  123. NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c);
  124. }
  125. void puts(const char *str)
  126. {
  127. while (*str)
  128. putc(*str++);
  129. }