blob: 882c7022429260a291b60221b2ee587098608a22 [file] [log] [blame]
Tony Lindgrenb824efa2006-04-02 17:46:20 +01001/*
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
Tony Lindgrenb824efa2006-04-02 17:46:20 +010017#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>
Russell Kingfced80c2008-09-06 12:10:45 +010024#include <linux/io.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010025
Russell Kinga09e64f2008-08-05 16:14:15 +010026#include <mach/common.h>
27#include <mach/clock.h>
28#include <mach/sram.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010029
Paul Walmsley44595982008-03-18 10:04:51 +020030#include "prm.h"
Tony Lindgrenb824efa2006-04-02 17:46:20 +010031
Paul Walmsley44595982008-03-18 10:04:51 +020032#include "memory.h"
33#include "sdrc.h"
34
Tony Lindgrena58caad2008-07-03 12:24:44 +030035void __iomem *omap2_sdrc_base;
36void __iomem *omap2_sms_base;
Juha Yrjola33c99072006-12-06 17:13:46 -080037
Tony Lindgrenb824efa2006-04-02 17:46:20 +010038static struct memory_timings mem_timings;
Paul Walmsley44595982008-03-18 10:04:51 +020039static u32 curr_perf_level = CORE_CLK_SRC_DPLL_X2;
Tony Lindgrenb824efa2006-04-02 17:46:20 +010040
41u32 omap2_memory_get_slow_dll_ctrl(void)
42{
43 return mem_timings.slow_dll_ctrl;
44}
45
46u32 omap2_memory_get_fast_dll_ctrl(void)
47{
48 return mem_timings.fast_dll_ctrl;
49}
50
51u32 omap2_memory_get_type(void)
52{
53 return mem_timings.m_type;
54}
55
Paul Walmsley6b8858a2008-03-18 10:35:15 +020056/*
57 * Check the DLL lock state, and return tue if running in unlock mode.
58 * This is needed to compensate for the shifted DLL value in unlock mode.
59 */
60u32 omap2_dll_force_needed(void)
61{
62 /* dlla and dllb are a set */
63 u32 dll_state = sdrc_read_reg(SDRC_DLLA_CTRL);
64
65 if ((dll_state & (1 << 2)) == (1 << 2))
66 return 1;
67 else
68 return 0;
69}
70
71/*
72 * 'level' is the value to store to CM_CLKSEL2_PLL.CORE_CLK_SRC.
73 * Practical values are CORE_CLK_SRC_DPLL (for CORE_CLK = DPLL_CLK) or
74 * CORE_CLK_SRC_DPLL_X2 (for CORE_CLK = * DPLL_CLK * 2)
75 */
76u32 omap2_reprogram_sdrc(u32 level, u32 force)
77{
78 u32 dll_ctrl, m_type;
79 u32 prev = curr_perf_level;
80 unsigned long flags;
81
82 if ((curr_perf_level == level) && !force)
83 return prev;
84
85 if (level == CORE_CLK_SRC_DPLL) {
86 dll_ctrl = omap2_memory_get_slow_dll_ctrl();
87 } else if (level == CORE_CLK_SRC_DPLL_X2) {
88 dll_ctrl = omap2_memory_get_fast_dll_ctrl();
89 } else {
90 return prev;
91 }
92
93 m_type = omap2_memory_get_type();
94
95 local_irq_save(flags);
96 __raw_writel(0xffff, OMAP24XX_PRCM_VOLTSETUP);
97 omap2_sram_reprogram_sdrc(level, dll_ctrl, m_type);
98 curr_perf_level = level;
99 local_irq_restore(flags);
100
101 return prev;
102}
103
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300104#if !defined(CONFIG_ARCH_OMAP2)
105void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl,
106 u32 base_cs, u32 force_unlock)
107{
108}
109void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val,
110 u32 mem_type)
111{
112}
113#endif
114
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100115void omap2_init_memory_params(u32 force_lock_to_unlock_mode)
116{
117 unsigned long dll_cnt;
118 u32 fast_dll = 0;
119
Paul Walmsley44595982008-03-18 10:04:51 +0200120 mem_timings.m_type = !((sdrc_read_reg(SDRC_MR_0) & 0x3) == 0x1); /* DDR = 1, SDR = 0 */
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100121
122 /* 2422 es2.05 and beyond has a single SIP DDR instead of 2 like others.
123 * In the case of 2422, its ok to use CS1 instead of CS0.
124 */
125 if (cpu_is_omap2422())
126 mem_timings.base_cs = 1;
127 else
128 mem_timings.base_cs = 0;
129
130 if (mem_timings.m_type != M_DDR)
131 return;
132
133 /* With DDR we need to determine the low frequency DLL value */
134 if (((mem_timings.fast_dll_ctrl & (1 << 2)) == M_LOCK_CTRL))
135 mem_timings.dll_mode = M_UNLOCK;
136 else
137 mem_timings.dll_mode = M_LOCK;
138
139 if (mem_timings.base_cs == 0) {
Paul Walmsley44595982008-03-18 10:04:51 +0200140 fast_dll = sdrc_read_reg(SDRC_DLLA_CTRL);
141 dll_cnt = sdrc_read_reg(SDRC_DLLA_STATUS) & 0xff00;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100142 } else {
Paul Walmsley44595982008-03-18 10:04:51 +0200143 fast_dll = sdrc_read_reg(SDRC_DLLB_CTRL);
144 dll_cnt = sdrc_read_reg(SDRC_DLLB_STATUS) & 0xff00;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100145 }
146 if (force_lock_to_unlock_mode) {
147 fast_dll &= ~0xff00;
148 fast_dll |= dll_cnt; /* Current lock mode */
149 }
150 /* set fast timings with DLL filter disabled */
151 mem_timings.fast_dll_ctrl = (fast_dll | (3 << 8));
152
153 /* No disruptions, DDR will be offline & C-ABI not followed */
154 omap2_sram_ddr_init(&mem_timings.slow_dll_ctrl,
155 mem_timings.fast_dll_ctrl,
156 mem_timings.base_cs,
157 force_lock_to_unlock_mode);
158 mem_timings.slow_dll_ctrl &= 0xff00; /* Keep lock value */
159
160 /* Turn status into unlock ctrl */
161 mem_timings.slow_dll_ctrl |=
162 ((mem_timings.fast_dll_ctrl & 0xF) | (1 << 2));
163
164 /* 90 degree phase for anything below 133Mhz + disable DLL filter */
165 mem_timings.slow_dll_ctrl |= ((1 << 1) | (3 << 8));
166}
Juha Yrjola33c99072006-12-06 17:13:46 -0800167
Tony Lindgrena58caad2008-07-03 12:24:44 +0300168void __init omap2_set_globals_memory(struct omap_globals *omap2_globals)
169{
170 omap2_sdrc_base = omap2_globals->sdrc;
171 omap2_sms_base = omap2_globals->sms;
172}
173
David Brownell742c53e2006-12-06 17:13:54 -0800174/* turn on smart idle modes for SDRAM scheduler and controller */
Juha Yrjola33c99072006-12-06 17:13:46 -0800175void __init omap2_init_memory(void)
176{
177 u32 l;
178
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300179 if (!cpu_is_omap2420())
180 return;
181
Paul Walmsley44595982008-03-18 10:04:51 +0200182 l = sms_read_reg(SMS_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800183 l &= ~(0x3 << 3);
184 l |= (0x2 << 3);
Paul Walmsley44595982008-03-18 10:04:51 +0200185 sms_write_reg(l, SMS_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800186
Paul Walmsley44595982008-03-18 10:04:51 +0200187 l = sdrc_read_reg(SDRC_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800188 l &= ~(0x3 << 3);
189 l |= (0x2 << 3);
Paul Walmsley44595982008-03-18 10:04:51 +0200190 sdrc_write_reg(l, SDRC_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800191}