spl_picon.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2014 Stefan Roese <sr@denx.de>
  4. *
  5. * Based on: gw_ventana_spl.c which is:
  6. * Copyright (C) 2014 Gateworks Corporation
  7. */
  8. #include <common.h>
  9. #include <i2c.h>
  10. #include <asm/io.h>
  11. #include <asm/arch/iomux.h>
  12. #include <asm/arch/mx6-ddr.h>
  13. #include <asm/arch/mx6-pins.h>
  14. #include <asm/arch/sys_proto.h>
  15. #include <asm/mach-imx/boot_mode.h>
  16. #include <asm/mach-imx/iomux-v3.h>
  17. #include <asm/mach-imx/mxc_i2c.h>
  18. #include <spl.h>
  19. #include "platinum.h"
  20. #undef RTT_NOM_120OHM /* use 120ohm Rtt_nom vs 60ohm (lower power) */
  21. /* Configure MX6Q/DUAL mmdc DDR io registers */
  22. struct mx6sdl_iomux_ddr_regs mx6sdl_ddr_ioregs = {
  23. /* SDCLK[0:1], CAS, RAS, Reset: Differential input, 40ohm */
  24. .dram_sdclk_0 = 0x00020030,
  25. .dram_sdclk_1 = 0x00020030,
  26. .dram_cas = 0x00020030,
  27. .dram_ras = 0x00020030,
  28. .dram_reset = 0x00020030,
  29. /* SDCKE[0:1]: 100k pull-up */
  30. .dram_sdcke0 = 0x00003000,
  31. .dram_sdcke1 = 0x00003000,
  32. /* SDBA2: pull-up disabled */
  33. .dram_sdba2 = 0x00000000,
  34. /* SDODT[0:1]: 100k pull-up, 40 ohm */
  35. .dram_sdodt0 = 0x00003030,
  36. .dram_sdodt1 = 0x00003030,
  37. /* SDQS[0:7]: Differential input, 40 ohm */
  38. .dram_sdqs0 = 0x00000030,
  39. .dram_sdqs1 = 0x00000030,
  40. .dram_sdqs2 = 0x00000030,
  41. .dram_sdqs3 = 0x00000030,
  42. .dram_sdqs4 = 0x00000030,
  43. .dram_sdqs5 = 0x00000030,
  44. .dram_sdqs6 = 0x00000030,
  45. .dram_sdqs7 = 0x00000030,
  46. /* DQM[0:7]: Differential input, 40 ohm */
  47. .dram_dqm0 = 0x00020030,
  48. .dram_dqm1 = 0x00020030,
  49. .dram_dqm2 = 0x00020030,
  50. .dram_dqm3 = 0x00020030,
  51. .dram_dqm4 = 0x00020030,
  52. .dram_dqm5 = 0x00020030,
  53. .dram_dqm6 = 0x00020030,
  54. .dram_dqm7 = 0x00020030,
  55. };
  56. /* Configure MX6Q/DUAL mmdc GRP io registers */
  57. struct mx6sdl_iomux_grp_regs mx6sdl_grp_ioregs = {
  58. /* DDR3 */
  59. .grp_ddr_type = 0x000c0000,
  60. .grp_ddrmode_ctl = 0x00020000,
  61. /* disable DDR pullups */
  62. .grp_ddrpke = 0x00000000,
  63. /* ADDR[00:16], SDBA[0:1]: 40 ohm */
  64. .grp_addds = 0x00000030,
  65. /* CS0/CS1/SDBA2/CKE0/CKE1/SDWE: 40 ohm */
  66. .grp_ctlds = 0x00000030,
  67. /* DATA[00:63]: Differential input, 40 ohm */
  68. .grp_ddrmode = 0x00020000,
  69. .grp_b0ds = 0x00000030,
  70. .grp_b1ds = 0x00000030,
  71. .grp_b2ds = 0x00000030,
  72. .grp_b3ds = 0x00000030,
  73. .grp_b4ds = 0x00000030,
  74. .grp_b5ds = 0x00000030,
  75. .grp_b6ds = 0x00000030,
  76. .grp_b7ds = 0x00000030,
  77. };
  78. /* MT41K256M16HA-125 */
  79. static struct mx6_ddr3_cfg mt41k256m16ha_125 = {
  80. .mem_speed = 1600,
  81. .density = 4, /* 4Gbit */
  82. .width = 16,
  83. .banks = 8,
  84. .rowaddr = 15,
  85. .coladdr = 10,
  86. .pagesz = 2,
  87. .trcd = 1375,
  88. .trcmin = 4875,
  89. .trasmin = 3500,
  90. };
  91. /*
  92. * Values from running the Freescale DDR stress tool via USB
  93. */
  94. static struct mx6_mmdc_calibration mx6dq_mmdc_calib = {
  95. /* write leveling calibration determine */
  96. .p0_mpwldectrl0 = 0x0044004E,
  97. .p0_mpwldectrl1 = 0x001F0023,
  98. /* Read DQS Gating calibration */
  99. .p0_mpdgctrl0 = 0x02480248,
  100. .p0_mpdgctrl1 = 0x0210021C,
  101. /* Read Calibration: DQS delay relative to DQ read access */
  102. .p0_mprddlctl = 0x42444444,
  103. /* Write Calibration: DQ/DM delay relative to DQS write access */
  104. .p0_mpwrdlctl = 0x36322C32,
  105. };
  106. static void spl_dram_init(int width)
  107. {
  108. struct mx6_ddr3_cfg *mem = &mt41k256m16ha_125;
  109. struct mx6_ddr_sysinfo sysinfo = {
  110. /* width of data bus:0=16,1=32,2=64 */
  111. .dsize = width / 32,
  112. /* config for full 4GB range so that get_mem_size() works */
  113. .cs_density = 32, /* 32Gb per CS */
  114. /* single chip select */
  115. .ncs = 1,
  116. .cs1_mirror = 1,
  117. .rtt_wr = 1 /*DDR3_RTT_60_OHM*/, /* RTT_Wr = RZQ/4 */
  118. #ifdef RTT_NOM_120OHM
  119. .rtt_nom = 2 /*DDR3_RTT_120_OHM*/, /* RTT_Nom = RZQ/2 */
  120. #else
  121. .rtt_nom = 1 /*DDR3_RTT_60_OHM*/, /* RTT_Nom = RZQ/4 */
  122. #endif
  123. .walat = 0, /* Write additional latency */
  124. .ralat = 5, /* Read additional latency */
  125. .mif3_mode = 3, /* Command prediction working mode */
  126. .bi_on = 1, /* Bank interleaving enabled */
  127. .sde_to_rst = 0x10, /* 14 cycles, 200us (JEDEC default) */
  128. .rst_to_cke = 0x23, /* 33 cycles, 500us (JEDEC default) */
  129. .ddr_type = DDR_TYPE_DDR3,
  130. .refsel = 1, /* Refresh cycles at 32KHz */
  131. .refr = 7, /* 8 refresh commands per refresh cycle */
  132. };
  133. mx6sdl_dram_iocfg(width, &mx6sdl_ddr_ioregs, &mx6sdl_grp_ioregs);
  134. mx6_dram_cfg(&sysinfo, &mx6dq_mmdc_calib, mem);
  135. }
  136. /*
  137. * Called from C runtime startup code (arch/arm/lib/crt0.S:_main)
  138. * - we have a stack and a place to store GD, both in SRAM
  139. * - no variable global data is available
  140. */
  141. void board_init_f(ulong dummy)
  142. {
  143. /* Setup AIPS and disable watchdog */
  144. arch_cpu_init();
  145. ccgr_init();
  146. gpr_init();
  147. /* UART iomux */
  148. board_early_init_f();
  149. /* Setup GP timer */
  150. timer_init();
  151. /* UART clocks enabled and gd valid - init serial console */
  152. preloader_console_init();
  153. /* Init DDR with 32bit width */
  154. spl_dram_init(32);
  155. /* Clear the BSS */
  156. memset(__bss_start, 0, __bss_end - __bss_start);
  157. /*
  158. * Setup enet related MUXing early to give the PHY
  159. * some time to wake-up from reset
  160. */
  161. platinum_setup_enet();
  162. /* load/boot image from boot device */
  163. board_init_r(NULL, 0);
  164. }