memory.c 4.6 KB

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