sdrc2xxx.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. /*
  2. * linux/arch/arm/mach-omap2/sdrc2xxx.c
  3. *
  4. * SDRAM timing related functions for OMAP2xxx
  5. *
  6. * Copyright (C) 2005, 2008 Texas Instruments Inc.
  7. * Copyright (C) 2005, 2008 Nokia Corporation
  8. *
  9. * Tony Lindgren <tony@atomide.com>
  10. * Paul Walmsley
  11. * Richard Woodruff <r-woodruff2@ti.com>
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License version 2 as
  15. * published by the Free Software Foundation.
  16. */
  17. #include <linux/module.h>
  18. #include <linux/kernel.h>
  19. #include <linux/device.h>
  20. #include <linux/list.h>
  21. #include <linux/errno.h>
  22. #include <linux/delay.h>
  23. #include <linux/clk.h>
  24. #include <linux/io.h>
  25. #include <plat/hardware.h>
  26. #include <plat/clock.h>
  27. #include <plat/sram.h>
  28. #include <plat/sdrc.h>
  29. #include "iomap.h"
  30. #include "common.h"
  31. #include "prm2xxx_3xxx.h"
  32. #include "clock.h"
  33. #include "sdrc.h"
  34. /* Memory timing, DLL mode flags */
  35. #define M_DDR 1
  36. #define M_LOCK_CTRL (1 << 2)
  37. #define M_UNLOCK 0
  38. #define M_LOCK 1
  39. static struct memory_timings mem_timings;
  40. static u32 curr_perf_level = CORE_CLK_SRC_DPLL_X2;
  41. static u32 omap2xxx_sdrc_get_slow_dll_ctrl(void)
  42. {
  43. return mem_timings.slow_dll_ctrl;
  44. }
  45. static u32 omap2xxx_sdrc_get_fast_dll_ctrl(void)
  46. {
  47. return mem_timings.fast_dll_ctrl;
  48. }
  49. static u32 omap2xxx_sdrc_get_type(void)
  50. {
  51. return mem_timings.m_type;
  52. }
  53. /*
  54. * Check the DLL lock state, and return tue if running in unlock mode.
  55. * This is needed to compensate for the shifted DLL value in unlock mode.
  56. */
  57. u32 omap2xxx_sdrc_dll_is_unlocked(void)
  58. {
  59. /* dlla and dllb are a set */
  60. u32 dll_state = sdrc_read_reg(SDRC_DLLA_CTRL);
  61. if ((dll_state & (1 << 2)) == (1 << 2))
  62. return 1;
  63. else
  64. return 0;
  65. }
  66. /*
  67. * 'level' is the value to store to CM_CLKSEL2_PLL.CORE_CLK_SRC.
  68. * Practical values are CORE_CLK_SRC_DPLL (for CORE_CLK = DPLL_CLK) or
  69. * CORE_CLK_SRC_DPLL_X2 (for CORE_CLK = * DPLL_CLK * 2)
  70. *
  71. * Used by the clock framework during CORE DPLL changes
  72. */
  73. u32 omap2xxx_sdrc_reprogram(u32 level, u32 force)
  74. {
  75. u32 dll_ctrl, m_type;
  76. u32 prev = curr_perf_level;
  77. unsigned long flags;
  78. if ((curr_perf_level == level) && !force)
  79. return prev;
  80. if (level == CORE_CLK_SRC_DPLL)
  81. dll_ctrl = omap2xxx_sdrc_get_slow_dll_ctrl();
  82. else if (level == CORE_CLK_SRC_DPLL_X2)
  83. dll_ctrl = omap2xxx_sdrc_get_fast_dll_ctrl();
  84. else
  85. return prev;
  86. m_type = omap2xxx_sdrc_get_type();
  87. local_irq_save(flags);
  88. /*
  89. * XXX These calls should be abstracted out through a
  90. * prm2xxx.c function
  91. */
  92. if (cpu_is_omap2420())
  93. __raw_writel(0xffff, OMAP2420_PRCM_VOLTSETUP);
  94. else
  95. __raw_writel(0xffff, OMAP2430_PRCM_VOLTSETUP);
  96. omap2_sram_reprogram_sdrc(level, dll_ctrl, m_type);
  97. curr_perf_level = level;
  98. local_irq_restore(flags);
  99. return prev;
  100. }
  101. /* Used by the clock framework during CORE DPLL changes */
  102. void omap2xxx_sdrc_init_params(u32 force_lock_to_unlock_mode)
  103. {
  104. unsigned long dll_cnt;
  105. u32 fast_dll = 0;
  106. /* DDR = 1, SDR = 0 */
  107. mem_timings.m_type = !((sdrc_read_reg(SDRC_MR_0) & 0x3) == 0x1);
  108. /* 2422 es2.05 and beyond has a single SIP DDR instead of 2 like others.
  109. * In the case of 2422, its ok to use CS1 instead of CS0.
  110. */
  111. if (cpu_is_omap2422())
  112. mem_timings.base_cs = 1;
  113. else
  114. mem_timings.base_cs = 0;
  115. if (mem_timings.m_type != M_DDR)
  116. return;
  117. /* With DDR we need to determine the low frequency DLL value */
  118. if (((mem_timings.fast_dll_ctrl & (1 << 2)) == M_LOCK_CTRL))
  119. mem_timings.dll_mode = M_UNLOCK;
  120. else
  121. mem_timings.dll_mode = M_LOCK;
  122. if (mem_timings.base_cs == 0) {
  123. fast_dll = sdrc_read_reg(SDRC_DLLA_CTRL);
  124. dll_cnt = sdrc_read_reg(SDRC_DLLA_STATUS) & 0xff00;
  125. } else {
  126. fast_dll = sdrc_read_reg(SDRC_DLLB_CTRL);
  127. dll_cnt = sdrc_read_reg(SDRC_DLLB_STATUS) & 0xff00;
  128. }
  129. if (force_lock_to_unlock_mode) {
  130. fast_dll &= ~0xff00;
  131. fast_dll |= dll_cnt; /* Current lock mode */
  132. }
  133. /* set fast timings with DLL filter disabled */
  134. mem_timings.fast_dll_ctrl = (fast_dll | (3 << 8));
  135. /* No disruptions, DDR will be offline & C-ABI not followed */
  136. omap2_sram_ddr_init(&mem_timings.slow_dll_ctrl,
  137. mem_timings.fast_dll_ctrl,
  138. mem_timings.base_cs,
  139. force_lock_to_unlock_mode);
  140. mem_timings.slow_dll_ctrl &= 0xff00; /* Keep lock value */
  141. /* Turn status into unlock ctrl */
  142. mem_timings.slow_dll_ctrl |=
  143. ((mem_timings.fast_dll_ctrl & 0xF) | (1 << 2));
  144. /* 90 degree phase for anything below 133Mhz + disable DLL filter */
  145. mem_timings.slow_dll_ctrl |= ((1 << 1) | (3 << 8));
  146. }