blob: 529d46cfdea269727845a5295ed7eca1ddb17af5 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Tony Lindgrenb824efa2006-04-02 17:46:20 +01002/*
Paul Walmsley96609ef2009-01-28 12:27:34 -07003 * linux/arch/arm/mach-omap2/sdrc2xxx.c
Tony Lindgrenb824efa2006-04-02 17:46:20 +01004 *
Paul Walmsley96609ef2009-01-28 12:27:34 -07005 * SDRAM timing related functions for OMAP2xxx
Tony Lindgrenb824efa2006-04-02 17:46:20 +01006 *
Paul Walmsleyf2ab9972009-01-28 12:27:37 -07007 * Copyright (C) 2005, 2008 Texas Instruments Inc.
8 * Copyright (C) 2005, 2008 Nokia Corporation
Tony Lindgrenb824efa2006-04-02 17:46:20 +01009 *
Tony Lindgrenb824efa2006-04-02 17:46:20 +010010 * Tony Lindgren <tony@atomide.com>
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070011 * Paul Walmsley
12 * Richard Woodruff <r-woodruff2@ti.com>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010013 */
14
Tony Lindgrenb824efa2006-04-02 17:46:20 +010015#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>
Russell Kingfced80c2008-09-06 12:10:45 +010022#include <linux/io.h>
Tony Lindgrenb824efa2006-04-02 17:46:20 +010023
Tony Lindgrendbc04162012-08-31 10:59:07 -070024#include "soc.h"
Tony Lindgrenee0839c2012-02-24 10:34:35 -080025#include "iomap.h"
26#include "common.h"
Paul Walmsley139563a2012-10-21 01:01:10 -060027#include "prm2xxx.h"
Russell Kingc0bf3132009-02-19 13:29:22 +000028#include "clock.h"
Paul Walmsley44595982008-03-18 10:04:51 +020029#include "sdrc.h"
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070030#include "sram.h"
Paul Walmsley44595982008-03-18 10:04:51 +020031
Paul Walmsleyf8de9b22009-01-28 12:27:31 -070032/* Memory timing, DLL mode flags */
33#define M_DDR 1
34#define M_LOCK_CTRL (1 << 2)
35#define M_UNLOCK 0
36#define M_LOCK 1
37
38
Tony Lindgrenb824efa2006-04-02 17:46:20 +010039static struct memory_timings mem_timings;
Paul Walmsley44595982008-03-18 10:04:51 +020040static u32 curr_perf_level = CORE_CLK_SRC_DPLL_X2;
Tony Lindgrenb824efa2006-04-02 17:46:20 +010041
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070042static u32 omap2xxx_sdrc_get_slow_dll_ctrl(void)
Tony Lindgrenb824efa2006-04-02 17:46:20 +010043{
44 return mem_timings.slow_dll_ctrl;
45}
46
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070047static u32 omap2xxx_sdrc_get_fast_dll_ctrl(void)
Tony Lindgrenb824efa2006-04-02 17:46:20 +010048{
49 return mem_timings.fast_dll_ctrl;
50}
51
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070052static u32 omap2xxx_sdrc_get_type(void)
Tony Lindgrenb824efa2006-04-02 17:46:20 +010053{
54 return mem_timings.m_type;
55}
56
Paul Walmsley6b8858a2008-03-18 10:35:15 +020057/*
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.
60 */
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070061u32 omap2xxx_sdrc_dll_is_unlocked(void)
Paul Walmsley6b8858a2008-03-18 10:35:15 +020062{
63 /* dlla and dllb are a set */
64 u32 dll_state = sdrc_read_reg(SDRC_DLLA_CTRL);
65
66 if ((dll_state & (1 << 2)) == (1 << 2))
67 return 1;
68 else
69 return 0;
70}
71
72/*
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)
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070076 *
77 * Used by the clock framework during CORE DPLL changes
Paul Walmsley6b8858a2008-03-18 10:35:15 +020078 */
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070079u32 omap2xxx_sdrc_reprogram(u32 level, u32 force)
Paul Walmsley6b8858a2008-03-18 10:35:15 +020080{
81 u32 dll_ctrl, m_type;
82 u32 prev = curr_perf_level;
83 unsigned long flags;
84
85 if ((curr_perf_level == level) && !force)
86 return prev;
87
Paul Walmsley96609ef2009-01-28 12:27:34 -070088 if (level == CORE_CLK_SRC_DPLL)
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070089 dll_ctrl = omap2xxx_sdrc_get_slow_dll_ctrl();
Paul Walmsley96609ef2009-01-28 12:27:34 -070090 else if (level == CORE_CLK_SRC_DPLL_X2)
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070091 dll_ctrl = omap2xxx_sdrc_get_fast_dll_ctrl();
Paul Walmsley96609ef2009-01-28 12:27:34 -070092 else
Paul Walmsley6b8858a2008-03-18 10:35:15 +020093 return prev;
Paul Walmsley6b8858a2008-03-18 10:35:15 +020094
Paul Walmsleyf2ab9972009-01-28 12:27:37 -070095 m_type = omap2xxx_sdrc_get_type();
Paul Walmsley6b8858a2008-03-18 10:35:15 +020096
97 local_irq_save(flags);
Paul Walmsleyc4d7e582010-12-21 21:05:14 -070098 /*
99 * XXX These calls should be abstracted out through a
100 * prm2xxx.c function
101 */
Tony Lindgren8e3bd352009-05-25 11:26:42 -0700102 if (cpu_is_omap2420())
Victor Kamenskyedfaf052014-04-15 20:37:46 +0300103 writel_relaxed(0xffff, OMAP2420_PRCM_VOLTSETUP);
Tony Lindgren8e3bd352009-05-25 11:26:42 -0700104 else
Victor Kamenskyedfaf052014-04-15 20:37:46 +0300105 writel_relaxed(0xffff, OMAP2430_PRCM_VOLTSETUP);
Paul Walmsley6b8858a2008-03-18 10:35:15 +0200106 omap2_sram_reprogram_sdrc(level, dll_ctrl, m_type);
107 curr_perf_level = level;
108 local_irq_restore(flags);
109
110 return prev;
111}
112
Paul Walmsleyf2ab9972009-01-28 12:27:37 -0700113/* Used by the clock framework during CORE DPLL changes */
114void omap2xxx_sdrc_init_params(u32 force_lock_to_unlock_mode)
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100115{
116 unsigned long dll_cnt;
117 u32 fast_dll = 0;
118
Paul Walmsley96609ef2009-01-28 12:27:34 -0700119 /* DDR = 1, SDR = 0 */
120 mem_timings.m_type = !((sdrc_read_reg(SDRC_MR_0) & 0x3) == 0x1);
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
Russell King6a53bc72015-05-14 16:18:46 +0100164 /* 90 degree phase for anything below 133MHz + disable DLL filter */
Tony Lindgrenb824efa2006-04-02 17:46:20 +0100165 mem_timings.slow_dll_ctrl |= ((1 << 1) | (3 << 8));
166}