blob: 3e38aa4ea45855dd39293007da7bdbd439ab5b16 [file] [log] [blame]
Tony Lindgrenb824efa2006-04-02 17:46:20 +01001/*
Paul Walmsley96609ef2009-01-28 12:27:34 -07002 * linux/arch/arm/mach-omap2/sdrc2xxx.c
Tony Lindgrenb824efa2006-04-02 17:46:20 +01003 *
Paul Walmsley96609ef2009-01-28 12:27:34 -07004 * SDRAM timing related functions for OMAP2xxx
Tony Lindgrenb824efa2006-04-02 17:46:20 +01005 *
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 Walmsleyf8de9b22009-01-28 12:27:31 -070032#include <mach/sdrc.h>
Paul Walmsley44595982008-03-18 10:04:51 +020033#include "sdrc.h"
34
Paul Walmsleyf8de9b22009-01-28 12:27:31 -070035/* Memory timing, DLL mode flags */
36#define M_DDR 1
37#define M_LOCK_CTRL (1 << 2)
38#define M_UNLOCK 0
39#define M_LOCK 1
40
41
Tony Lindgrena58caad2008-07-03 12:24:44 +030042void __iomem *omap2_sdrc_base;
43void __iomem *omap2_sms_base;
Juha Yrjola33c99072006-12-06 17:13:46 -080044
Tony Lindgrenb824efa2006-04-02 17:46:20 +010045static struct memory_timings mem_timings;
Paul Walmsley44595982008-03-18 10:04:51 +020046static u32 curr_perf_level = CORE_CLK_SRC_DPLL_X2;
Tony Lindgrenb824efa2006-04-02 17:46:20 +010047
48u32 omap2_memory_get_slow_dll_ctrl(void)
49{
50 return mem_timings.slow_dll_ctrl;
51}
52
53u32 omap2_memory_get_fast_dll_ctrl(void)
54{
55 return mem_timings.fast_dll_ctrl;
56}
57
58u32 omap2_memory_get_type(void)
59{
60 return mem_timings.m_type;
61}
62
Paul Walmsley6b8858a2008-03-18 10:35:15 +020063/*
64 * Check the DLL lock state, and return tue if running in unlock mode.
65 * This is needed to compensate for the shifted DLL value in unlock mode.
66 */
67u32 omap2_dll_force_needed(void)
68{
69 /* dlla and dllb are a set */
70 u32 dll_state = sdrc_read_reg(SDRC_DLLA_CTRL);
71
72 if ((dll_state & (1 << 2)) == (1 << 2))
73 return 1;
74 else
75 return 0;
76}
77
78/*
79 * 'level' is the value to store to CM_CLKSEL2_PLL.CORE_CLK_SRC.
80 * Practical values are CORE_CLK_SRC_DPLL (for CORE_CLK = DPLL_CLK) or
81 * CORE_CLK_SRC_DPLL_X2 (for CORE_CLK = * DPLL_CLK * 2)
82 */
83u32 omap2_reprogram_sdrc(u32 level, u32 force)
84{
85 u32 dll_ctrl, m_type;
86 u32 prev = curr_perf_level;
87 unsigned long flags;
88
89 if ((curr_perf_level == level) && !force)
90 return prev;
91
Paul Walmsley96609ef2009-01-28 12:27:34 -070092 if (level == CORE_CLK_SRC_DPLL)
Paul Walmsley6b8858a2008-03-18 10:35:15 +020093 dll_ctrl = omap2_memory_get_slow_dll_ctrl();
Paul Walmsley96609ef2009-01-28 12:27:34 -070094 else if (level == CORE_CLK_SRC_DPLL_X2)
Paul Walmsley6b8858a2008-03-18 10:35:15 +020095 dll_ctrl = omap2_memory_get_fast_dll_ctrl();
Paul Walmsley96609ef2009-01-28 12:27:34 -070096 else
Paul Walmsley6b8858a2008-03-18 10:35:15 +020097 return prev;
Paul Walmsley6b8858a2008-03-18 10:35:15 +020098
99 m_type = omap2_memory_get_type();
100
101 local_irq_save(flags);
102 __raw_writel(0xffff, OMAP24XX_PRCM_VOLTSETUP);
103 omap2_sram_reprogram_sdrc(level, dll_ctrl, m_type);
104 curr_perf_level = level;
105 local_irq_restore(flags);
106
107 return prev;
108}
109
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300110#if !defined(CONFIG_ARCH_OMAP2)
111void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl,
112 u32 base_cs, u32 force_unlock)
113{
114}
115void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val,
116 u32 mem_type)
117{
118}
119#endif
120
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100121void omap2_init_memory_params(u32 force_lock_to_unlock_mode)
122{
123 unsigned long dll_cnt;
124 u32 fast_dll = 0;
125
Paul Walmsley96609ef2009-01-28 12:27:34 -0700126 /* DDR = 1, SDR = 0 */
127 mem_timings.m_type = !((sdrc_read_reg(SDRC_MR_0) & 0x3) == 0x1);
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100128
129 /* 2422 es2.05 and beyond has a single SIP DDR instead of 2 like others.
130 * In the case of 2422, its ok to use CS1 instead of CS0.
131 */
132 if (cpu_is_omap2422())
133 mem_timings.base_cs = 1;
134 else
135 mem_timings.base_cs = 0;
136
137 if (mem_timings.m_type != M_DDR)
138 return;
139
140 /* With DDR we need to determine the low frequency DLL value */
141 if (((mem_timings.fast_dll_ctrl & (1 << 2)) == M_LOCK_CTRL))
142 mem_timings.dll_mode = M_UNLOCK;
143 else
144 mem_timings.dll_mode = M_LOCK;
145
146 if (mem_timings.base_cs == 0) {
Paul Walmsley44595982008-03-18 10:04:51 +0200147 fast_dll = sdrc_read_reg(SDRC_DLLA_CTRL);
148 dll_cnt = sdrc_read_reg(SDRC_DLLA_STATUS) & 0xff00;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100149 } else {
Paul Walmsley44595982008-03-18 10:04:51 +0200150 fast_dll = sdrc_read_reg(SDRC_DLLB_CTRL);
151 dll_cnt = sdrc_read_reg(SDRC_DLLB_STATUS) & 0xff00;
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100152 }
153 if (force_lock_to_unlock_mode) {
154 fast_dll &= ~0xff00;
155 fast_dll |= dll_cnt; /* Current lock mode */
156 }
157 /* set fast timings with DLL filter disabled */
158 mem_timings.fast_dll_ctrl = (fast_dll | (3 << 8));
159
160 /* No disruptions, DDR will be offline & C-ABI not followed */
161 omap2_sram_ddr_init(&mem_timings.slow_dll_ctrl,
162 mem_timings.fast_dll_ctrl,
163 mem_timings.base_cs,
164 force_lock_to_unlock_mode);
165 mem_timings.slow_dll_ctrl &= 0xff00; /* Keep lock value */
166
167 /* Turn status into unlock ctrl */
168 mem_timings.slow_dll_ctrl |=
169 ((mem_timings.fast_dll_ctrl & 0xF) | (1 << 2));
170
171 /* 90 degree phase for anything below 133Mhz + disable DLL filter */
172 mem_timings.slow_dll_ctrl |= ((1 << 1) | (3 << 8));
173}
Juha Yrjola33c99072006-12-06 17:13:46 -0800174
Tony Lindgrena58caad2008-07-03 12:24:44 +0300175void __init omap2_set_globals_memory(struct omap_globals *omap2_globals)
176{
177 omap2_sdrc_base = omap2_globals->sdrc;
178 omap2_sms_base = omap2_globals->sms;
179}
180
David Brownell742c53e2006-12-06 17:13:54 -0800181/* turn on smart idle modes for SDRAM scheduler and controller */
Juha Yrjola33c99072006-12-06 17:13:46 -0800182void __init omap2_init_memory(void)
183{
184 u32 l;
185
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300186 if (!cpu_is_omap2420())
187 return;
188
Paul Walmsley44595982008-03-18 10:04:51 +0200189 l = sms_read_reg(SMS_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800190 l &= ~(0x3 << 3);
191 l |= (0x2 << 3);
Paul Walmsley44595982008-03-18 10:04:51 +0200192 sms_write_reg(l, SMS_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800193
Paul Walmsley44595982008-03-18 10:04:51 +0200194 l = sdrc_read_reg(SDRC_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800195 l &= ~(0x3 << 3);
196 l |= (0x2 << 3);
Paul Walmsley44595982008-03-18 10:04:51 +0200197 sdrc_write_reg(l, SDRC_SYSCONFIG);
Juha Yrjola33c99072006-12-06 17:13:46 -0800198}