emif.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * EMIF programming
  3. *
  4. * (C) Copyright 2010
  5. * Texas Instruments, <www.ti.com>
  6. *
  7. * Aneesh V <aneesh@ti.com> for OMAP4
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <asm/emif.h>
  29. #include <asm/arch/sys_proto.h>
  30. #include <asm/utils.h>
  31. #ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
  32. #define print_timing_reg(reg) debug(#reg" - 0x%08x\n", (reg))
  33. static u32 *const T_num = (u32 *)OMAP5_SRAM_SCRATCH_EMIF_T_NUM;
  34. static u32 *const T_den = (u32 *)OMAP5_SRAM_SCRATCH_EMIF_T_DEN;
  35. #endif
  36. #ifdef CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
  37. /* Base AC Timing values specified by JESD209-2 for 532MHz operation */
  38. static const struct lpddr2_ac_timings timings_jedec_532_mhz = {
  39. .max_freq = 532000000,
  40. .RL = 8,
  41. .tRPab = 21,
  42. .tRCD = 18,
  43. .tWR = 15,
  44. .tRASmin = 42,
  45. .tRRD = 10,
  46. .tWTRx2 = 15,
  47. .tXSR = 140,
  48. .tXPx2 = 15,
  49. .tRFCab = 130,
  50. .tRTPx2 = 15,
  51. .tCKE = 3,
  52. .tCKESR = 15,
  53. .tZQCS = 90,
  54. .tZQCL = 360,
  55. .tZQINIT = 1000,
  56. .tDQSCKMAXx2 = 11,
  57. .tRASmax = 70,
  58. .tFAW = 50
  59. };
  60. /*
  61. * Min tCK values specified by JESD209-2
  62. * Min tCK specifies the minimum duration of some AC timing parameters in terms
  63. * of the number of cycles. If the calculated number of cycles based on the
  64. * absolute time value is less than the min tCK value, min tCK value should
  65. * be used instead. This typically happens at low frequencies.
  66. */
  67. static const struct lpddr2_min_tck min_tck_jedec = {
  68. .tRL = 3,
  69. .tRP_AB = 3,
  70. .tRCD = 3,
  71. .tWR = 3,
  72. .tRAS_MIN = 3,
  73. .tRRD = 2,
  74. .tWTR = 2,
  75. .tXP = 2,
  76. .tRTP = 2,
  77. .tCKE = 3,
  78. .tCKESR = 3,
  79. .tFAW = 8
  80. };
  81. static const struct lpddr2_ac_timings const*
  82. jedec_ac_timings[MAX_NUM_SPEEDBINS] = {
  83. &timings_jedec_532_mhz
  84. };
  85. static const struct lpddr2_device_timings jedec_default_timings = {
  86. .ac_timings = jedec_ac_timings,
  87. .min_tck = &min_tck_jedec
  88. };
  89. void emif_get_device_timings(u32 emif_nr,
  90. const struct lpddr2_device_timings **cs0_device_timings,
  91. const struct lpddr2_device_timings **cs1_device_timings)
  92. {
  93. /* Assume Identical devices on EMIF1 & EMIF2 */
  94. *cs0_device_timings = &jedec_default_timings;
  95. *cs1_device_timings = NULL;
  96. }
  97. #endif /* CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS */