1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/arch/arm/mach-omap2/sdrc2xxx.c
5 * SDRAM timing related functions for OMAP2xxx
7 * Copyright (C) 2005, 2008 Texas Instruments Inc.
8 * Copyright (C) 2005, 2008 Nokia Corporation
10 * Tony Lindgren <tony@atomide.com>
12 * Richard Woodruff <r-woodruff2@ti.com>
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/device.h>
18 #include <linux/list.h>
19 #include <linux/errno.h>
20 #include <linux/delay.h>
21 #include <linux/clk.h>
32 /* Memory timing, DLL mode flags */
34 #define M_LOCK_CTRL (1 << 2)
39 static struct memory_timings mem_timings
;
40 static u32 curr_perf_level
= CORE_CLK_SRC_DPLL_X2
;
42 static u32
omap2xxx_sdrc_get_slow_dll_ctrl(void)
44 return mem_timings
.slow_dll_ctrl
;
47 static u32
omap2xxx_sdrc_get_fast_dll_ctrl(void)
49 return mem_timings
.fast_dll_ctrl
;
52 static u32
omap2xxx_sdrc_get_type(void)
54 return mem_timings
.m_type
;
58 * Check the DLL lock state, and return tue if running in unlock mode.
59 * This is needed to compensate for the shifted DLL value in unlock mode.
61 u32
omap2xxx_sdrc_dll_is_unlocked(void)
63 /* dlla and dllb are a set */
64 u32 dll_state
= sdrc_read_reg(SDRC_DLLA_CTRL
);
66 if ((dll_state
& (1 << 2)) == (1 << 2))
73 * 'level' is the value to store to CM_CLKSEL2_PLL.CORE_CLK_SRC.
74 * Practical values are CORE_CLK_SRC_DPLL (for CORE_CLK = DPLL_CLK) or
75 * CORE_CLK_SRC_DPLL_X2 (for CORE_CLK = * DPLL_CLK * 2)
77 * Used by the clock framework during CORE DPLL changes
79 u32
omap2xxx_sdrc_reprogram(u32 level
, u32 force
)
82 u32 prev
= curr_perf_level
;
85 if ((curr_perf_level
== level
) && !force
)
88 if (level
== CORE_CLK_SRC_DPLL
)
89 dll_ctrl
= omap2xxx_sdrc_get_slow_dll_ctrl();
90 else if (level
== CORE_CLK_SRC_DPLL_X2
)
91 dll_ctrl
= omap2xxx_sdrc_get_fast_dll_ctrl();
95 m_type
= omap2xxx_sdrc_get_type();
97 local_irq_save(flags
);
99 * XXX These calls should be abstracted out through a
102 if (cpu_is_omap2420())
103 writel_relaxed(0xffff, OMAP2420_PRCM_VOLTSETUP
);
105 writel_relaxed(0xffff, OMAP2430_PRCM_VOLTSETUP
);
106 omap2_sram_reprogram_sdrc(level
, dll_ctrl
, m_type
);
107 curr_perf_level
= level
;
108 local_irq_restore(flags
);
113 /* Used by the clock framework during CORE DPLL changes */
114 void omap2xxx_sdrc_init_params(u32 force_lock_to_unlock_mode
)
116 unsigned long dll_cnt
;
119 /* DDR = 1, SDR = 0 */
120 mem_timings
.m_type
= !((sdrc_read_reg(SDRC_MR_0
) & 0x3) == 0x1);
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.
125 if (cpu_is_omap2422())
126 mem_timings
.base_cs
= 1;
128 mem_timings
.base_cs
= 0;
130 if (mem_timings
.m_type
!= M_DDR
)
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
;
137 mem_timings
.dll_mode
= M_LOCK
;
139 if (mem_timings
.base_cs
== 0) {
140 fast_dll
= sdrc_read_reg(SDRC_DLLA_CTRL
);
141 dll_cnt
= sdrc_read_reg(SDRC_DLLA_STATUS
) & 0xff00;
143 fast_dll
= sdrc_read_reg(SDRC_DLLB_CTRL
);
144 dll_cnt
= sdrc_read_reg(SDRC_DLLB_STATUS
) & 0xff00;
146 if (force_lock_to_unlock_mode
) {
148 fast_dll
|= dll_cnt
; /* Current lock mode */
150 /* set fast timings with DLL filter disabled */
151 mem_timings
.fast_dll_ctrl
= (fast_dll
| (3 << 8));
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
,
157 force_lock_to_unlock_mode
);
158 mem_timings
.slow_dll_ctrl
&= 0xff00; /* Keep lock value */
160 /* Turn status into unlock ctrl */
161 mem_timings
.slow_dll_ctrl
|=
162 ((mem_timings
.fast_dll_ctrl
& 0xF) | (1 << 2));
164 /* 90 degree phase for anything below 133MHz + disable DLL filter */
165 mem_timings
.slow_dll_ctrl
|= ((1 << 1) | (3 << 8));