diff options
author | Paul Walmsley <paul@pwsan.com> | 2009-01-28 14:27:34 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-02-08 12:50:38 -0500 |
commit | 96609ef4009515f0667a52b7776c21418df19bd8 (patch) | |
tree | 2f4541c2282e4ffbec27d39b3151c1e321747458 /arch/arm/mach-omap2/sdrc2xxx.c | |
parent | f8de9b2c45c4506702da4bd3a5bc7630754077f9 (diff) |
[ARM] OMAP2 SDRC: rename memory.c to sdrc2xxx.c
Rename arch/arm/mach-omap2/memory.c to arch/arm/mach-omap2/sdrc2xxx.c, since
it contains exclusively SDRAM-related functions. Most of the functions
are also OMAP2xxx-specific - those which are common will be separated out
in a following patch.
linux-omap source commit is fe212f797e2efef9dc88bcb5db7cf9db3f9f562e.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-omap2/sdrc2xxx.c')
-rw-r--r-- | arch/arm/mach-omap2/sdrc2xxx.c | 198 |
1 files changed, 198 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/sdrc2xxx.c b/arch/arm/mach-omap2/sdrc2xxx.c new file mode 100644 index 000000000000..3e38aa4ea458 --- /dev/null +++ b/arch/arm/mach-omap2/sdrc2xxx.c | |||
@@ -0,0 +1,198 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-omap2/sdrc2xxx.c | ||
3 | * | ||
4 | * SDRAM timing related functions for OMAP2xxx | ||
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 | |||
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 | |||
26 | #include <mach/common.h> | ||
27 | #include <mach/clock.h> | ||
28 | #include <mach/sram.h> | ||
29 | |||
30 | #include "prm.h" | ||
31 | |||
32 | #include <mach/sdrc.h> | ||
33 | #include "sdrc.h" | ||
34 | |||
35 | /* 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 | |||
42 | void __iomem *omap2_sdrc_base; | ||
43 | void __iomem *omap2_sms_base; | ||
44 | |||
45 | static struct memory_timings mem_timings; | ||
46 | static u32 curr_perf_level = CORE_CLK_SRC_DPLL_X2; | ||
47 | |||
48 | u32 omap2_memory_get_slow_dll_ctrl(void) | ||
49 | { | ||
50 | return mem_timings.slow_dll_ctrl; | ||
51 | } | ||
52 | |||
53 | u32 omap2_memory_get_fast_dll_ctrl(void) | ||
54 | { | ||
55 | return mem_timings.fast_dll_ctrl; | ||
56 | } | ||
57 | |||
58 | u32 omap2_memory_get_type(void) | ||
59 | { | ||
60 | return mem_timings.m_type; | ||
61 | } | ||
62 | |||
63 | /* | ||
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 | */ | ||
67 | u32 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 | */ | ||
83 | u32 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 | |||
92 | if (level == CORE_CLK_SRC_DPLL) | ||
93 | dll_ctrl = omap2_memory_get_slow_dll_ctrl(); | ||
94 | else if (level == CORE_CLK_SRC_DPLL_X2) | ||
95 | dll_ctrl = omap2_memory_get_fast_dll_ctrl(); | ||
96 | else | ||
97 | return prev; | ||
98 | |||
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 | |||
110 | #if !defined(CONFIG_ARCH_OMAP2) | ||
111 | void omap2_sram_ddr_init(u32 *slow_dll_ctrl, u32 fast_dll_ctrl, | ||
112 | u32 base_cs, u32 force_unlock) | ||
113 | { | ||
114 | } | ||
115 | void omap2_sram_reprogram_sdrc(u32 perf_level, u32 dll_val, | ||
116 | u32 mem_type) | ||
117 | { | ||
118 | } | ||
119 | #endif | ||
120 | |||
121 | void omap2_init_memory_params(u32 force_lock_to_unlock_mode) | ||
122 | { | ||
123 | unsigned long dll_cnt; | ||
124 | u32 fast_dll = 0; | ||
125 | |||
126 | /* DDR = 1, SDR = 0 */ | ||
127 | mem_timings.m_type = !((sdrc_read_reg(SDRC_MR_0) & 0x3) == 0x1); | ||
128 | |||
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) { | ||
147 | fast_dll = sdrc_read_reg(SDRC_DLLA_CTRL); | ||
148 | dll_cnt = sdrc_read_reg(SDRC_DLLA_STATUS) & 0xff00; | ||
149 | } else { | ||
150 | fast_dll = sdrc_read_reg(SDRC_DLLB_CTRL); | ||
151 | dll_cnt = sdrc_read_reg(SDRC_DLLB_STATUS) & 0xff00; | ||
152 | } | ||
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 | } | ||
174 | |||
175 | void __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 | |||
181 | /* turn on smart idle modes for SDRAM scheduler and controller */ | ||
182 | void __init omap2_init_memory(void) | ||
183 | { | ||
184 | u32 l; | ||
185 | |||
186 | if (!cpu_is_omap2420()) | ||
187 | return; | ||
188 | |||
189 | l = sms_read_reg(SMS_SYSCONFIG); | ||
190 | l &= ~(0x3 << 3); | ||
191 | l |= (0x2 << 3); | ||
192 | sms_write_reg(l, SMS_SYSCONFIG); | ||
193 | |||
194 | l = sdrc_read_reg(SDRC_SYSCONFIG); | ||
195 | l &= ~(0x3 << 3); | ||
196 | l |= (0x2 << 3); | ||
197 | sdrc_write_reg(l, SDRC_SYSCONFIG); | ||
198 | } | ||