blob: 07f534a60b2b899281d81497b008e3f2dca1a523 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -04002/*
3 * Functions related to OMAP3 SDRC.
4 *
5 * This file has been created after exctracting and consolidating
6 * the SDRC related content from mem.c and board.c, also created
7 * generic init function (mem_init).
8 *
9 * Copyright (C) 2004-2010
10 * Texas Instruments Incorporated - http://www.ti.com/
11 *
Simon Schwarzb88e4252011-09-14 15:15:37 -040012 * Copyright (C) 2011
13 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
14 *
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040015 * Author :
16 * Vaibhav Hiremath <hvaibhav@ti.com>
17 *
18 * Original implementation by (mem.c, board.c) :
19 * Sunil Kumar <sunilsaini05@gmail.com>
20 * Shashi Ranjan <shashiranjanmca05@gmail.com>
21 * Manikandan Pillai <mani.pillai@ti.com>
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040022 */
23
24#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -060025#include <init.h>
Simon Glass401d1c42020-10-30 21:38:53 -060026#include <asm/global_data.h>
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040027#include <asm/io.h>
28#include <asm/arch/mem.h>
29#include <asm/arch/sys_proto.h>
30
Nishanth Menonee3894c2010-12-11 11:41:42 -050031DECLARE_GLOBAL_DATA_PTR;
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040032extern omap3_sysinfo sysinfo;
33
34static struct sdrc *sdrc_base = (struct sdrc *)OMAP34XX_SDRC_BASE;
35
36/*
37 * is_mem_sdr -
38 * - Return 1 if mem type in use is SDR
39 */
40u32 is_mem_sdr(void)
41{
42 if (readl(&sdrc_base->cs[CS0].mr) == SDRC_MR_0_SDR)
43 return 1;
44 return 0;
45}
46
47/*
Adam Ford68a51cc2022-02-12 06:12:41 -060048 * get_sdr_cs_size -
49 * - Get size of chip select 0/1
50 */
51static u32 get_sdr_cs_size(u32 cs)
52{
53 u32 size;
54
55 /* get ram size field */
56 size = readl(&sdrc_base->cs[cs].mcfg) >> 8;
57 size &= 0x3FF; /* remove unwanted bits */
58 size <<= 21; /* multiply by 2 MiB to find size in MB */
59 return size;
60}
61
62/*
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040063 * make_cs1_contiguous -
Tom Rini5f862b72011-11-18 12:47:59 +000064 * - When we have CS1 populated we want to have it mapped after cs0 to allow
65 * command line mem=xyz use all memory with out discontinuous support
66 * compiled in. We could do it in the ATAG, but there really is two banks...
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040067 */
Adam Ford68a51cc2022-02-12 06:12:41 -060068static void make_cs1_contiguous(void)
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040069{
70 u32 size, a_add_low, a_add_high;
71
72 size = get_sdr_cs_size(CS0);
73 size >>= 25; /* divide by 32 MiB to find size to offset CS1 */
74 a_add_high = (size & 3) << 8; /* set up low field */
75 a_add_low = (size & 0x3C) >> 2; /* set up high field */
76 writel((a_add_high | a_add_low), &sdrc_base->cs_cfg);
77
78}
79
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040080/*
81 * get_sdr_cs_offset -
82 * - Get offset of cs from cs0 start
83 */
84u32 get_sdr_cs_offset(u32 cs)
85{
86 u32 offset;
87
88 if (!cs)
89 return 0;
90
91 offset = readl(&sdrc_base->cs_cfg);
Tom Rini0ae05652012-01-18 08:28:50 +000092 offset = (offset & 15) << 27 | (offset & 0x300) << 17;
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040093
94 return offset;
95}
96
97/*
Tom Rini2a04e852011-11-18 12:48:00 +000098 * write_sdrc_timings -
99 * - Takes CS and associated timings and initalize SDRAM
100 * - Test CS to make sure it's OK for use
101 */
102static void write_sdrc_timings(u32 cs, struct sdrc_actim *sdrc_actim_base,
Peter Barada8c4445d2012-11-13 07:40:28 +0000103 struct board_sdrc_timings *timings)
Tom Rini2a04e852011-11-18 12:48:00 +0000104{
105 /* Setup timings we got from the board. */
Peter Barada8c4445d2012-11-13 07:40:28 +0000106 writel(timings->mcfg, &sdrc_base->cs[cs].mcfg);
107 writel(timings->ctrla, &sdrc_actim_base->ctrla);
108 writel(timings->ctrlb, &sdrc_actim_base->ctrlb);
109 writel(timings->rfr_ctrl, &sdrc_base->cs[cs].rfr_ctrl);
Tom Rini2a04e852011-11-18 12:48:00 +0000110 writel(CMD_NOP, &sdrc_base->cs[cs].manual);
111 writel(CMD_PRECHARGE, &sdrc_base->cs[cs].manual);
112 writel(CMD_AUTOREFRESH, &sdrc_base->cs[cs].manual);
113 writel(CMD_AUTOREFRESH, &sdrc_base->cs[cs].manual);
Peter Barada8c4445d2012-11-13 07:40:28 +0000114 writel(timings->mr, &sdrc_base->cs[cs].mr);
Tom Rini2a04e852011-11-18 12:48:00 +0000115
116 /*
117 * Test ram in this bank
118 * Disable if bad or not present
119 */
120 if (!mem_ok(cs))
121 writel(0, &sdrc_base->cs[cs].mcfg);
122}
123
124/*
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400125 * do_sdrc_init -
Tom Rini2a04e852011-11-18 12:48:00 +0000126 * - Code called once in C-Stack only context for CS0 and with early being
127 * true and a possible 2nd time depending on memory configuration from
128 * stack+global context.
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400129 */
Adam Ford68a51cc2022-02-12 06:12:41 -0600130static void do_sdrc_init(u32 cs, u32 early)
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400131{
Steve Sakoman3667cbe2010-08-19 20:09:57 -0700132 struct sdrc_actim *sdrc_actim_base0, *sdrc_actim_base1;
Peter Barada8c4445d2012-11-13 07:40:28 +0000133 struct board_sdrc_timings timings;
Tom Rini2a04e852011-11-18 12:48:00 +0000134
135 sdrc_actim_base0 = (struct sdrc_actim *)SDRC_ACTIM_CTRL0_BASE;
136 sdrc_actim_base1 = (struct sdrc_actim *)SDRC_ACTIM_CTRL1_BASE;
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400137
Albert ARIBAUD \(3ADEV\)03843da2015-01-16 09:09:48 +0100138 /* set some default timings */
139 timings.sharing = SDRC_SHARING;
140
Tom Rini9ae0d552011-11-18 12:48:06 +0000141 /*
142 * When called in the early context this may be SPL and we will
143 * need to set all of the timings. This ends up being board
144 * specific so we call a helper function to take care of this
145 * for us. Otherwise, to be safe, we need to copy the settings
146 * from the first bank to the second. We will setup CS0,
147 * then set cs_cfg to the appropriate value then try and
148 * setup CS1.
149 */
150#ifdef CONFIG_SPL_BUILD
Albert ARIBAUD \(3ADEV\)03843da2015-01-16 09:09:48 +0100151 /* set/modify board-specific timings */
Peter Barada8c4445d2012-11-13 07:40:28 +0000152 get_board_mem_timings(&timings);
Tom Rini9ae0d552011-11-18 12:48:06 +0000153#endif
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400154 if (early) {
155 /* reset sdrc controller */
156 writel(SOFTRESET, &sdrc_base->sysconfig);
157 wait_on_value(RESETDONE, RESETDONE, &sdrc_base->status,
158 12000000);
159 writel(0, &sdrc_base->sysconfig);
160
161 /* setup sdrc to ball mux */
Albert ARIBAUD \(3ADEV\)03843da2015-01-16 09:09:48 +0100162 writel(timings.sharing, &sdrc_base->sharing);
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400163
Tom Rini2a04e852011-11-18 12:48:00 +0000164 /* Disable Power Down of CKE because of 1 CKE on combo part */
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400165 writel(WAKEUPPROC | SRFRONRESET | PAGEPOLICY_HIGH,
166 &sdrc_base->power);
167
168 writel(ENADLL | DLLPHASE_90, &sdrc_base->dlla_ctrl);
169 sdelay(0x20000);
Simon Schwarzb88e4252011-09-14 15:15:37 -0400170#ifdef CONFIG_SPL_BUILD
Peter Barada8c4445d2012-11-13 07:40:28 +0000171 write_sdrc_timings(CS0, sdrc_actim_base0, &timings);
Tom Rini9ae0d552011-11-18 12:48:06 +0000172 make_cs1_contiguous();
Peter Barada8c4445d2012-11-13 07:40:28 +0000173 write_sdrc_timings(CS1, sdrc_actim_base1, &timings);
Simon Schwarzb88e4252011-09-14 15:15:37 -0400174#endif
175
Steve Sakoman3667cbe2010-08-19 20:09:57 -0700176 }
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400177
178 /*
Tom Rini2a04e852011-11-18 12:48:00 +0000179 * If we aren't using SPL we have been loaded by some
180 * other means which may not have correctly initialized
181 * both CS0 and CS1 (such as some older versions of x-loader)
182 * so we may be asked now to setup CS1.
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400183 */
Tom Rini2a04e852011-11-18 12:48:00 +0000184 if (cs == CS1) {
Peter Barada8c4445d2012-11-13 07:40:28 +0000185 timings.mcfg = readl(&sdrc_base->cs[CS0].mcfg),
186 timings.rfr_ctrl = readl(&sdrc_base->cs[CS0].rfr_ctrl);
187 timings.ctrla = readl(&sdrc_actim_base0->ctrla);
188 timings.ctrlb = readl(&sdrc_actim_base0->ctrlb);
189 timings.mr = readl(&sdrc_base->cs[CS0].mr);
190 write_sdrc_timings(cs, sdrc_actim_base1, &timings);
Tom Rini2a04e852011-11-18 12:48:00 +0000191 }
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400192}
193
194/*
195 * dram_init -
196 * - Sets uboots idea of sdram size
197 */
Heiko Schocher561142a2010-09-17 13:10:41 +0200198int dram_init(void)
199{
Heiko Schocher561142a2010-09-17 13:10:41 +0200200 unsigned int size0 = 0, size1 = 0;
201
202 size0 = get_sdr_cs_size(CS0);
203 /*
Tom Rini5f862b72011-11-18 12:47:59 +0000204 * We always need to have cs_cfg point at where the second
205 * bank would be, if present. Failure to do so can lead to
206 * strange situations where memory isn't detected and
207 * configured correctly. CS0 will already have been setup
208 * at this point.
Heiko Schocher561142a2010-09-17 13:10:41 +0200209 */
Tom Rini5f862b72011-11-18 12:47:59 +0000210 make_cs1_contiguous();
211 do_sdrc_init(CS1, NOT_EARLY);
212 size1 = get_sdr_cs_size(CS1);
Heiko Schocher561142a2010-09-17 13:10:41 +0200213
Heiko Schocher561142a2010-09-17 13:10:41 +0200214 gd->ram_size = size0 + size1;
215
216 return 0;
217}
218
Simon Glass76b00ac2017-03-31 08:40:32 -0600219int dram_init_banksize(void)
Heiko Schocher561142a2010-09-17 13:10:41 +0200220{
Heiko Schocher561142a2010-09-17 13:10:41 +0200221 unsigned int size0 = 0, size1 = 0;
222
223 size0 = get_sdr_cs_size(CS0);
224 size1 = get_sdr_cs_size(CS1);
225
226 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
227 gd->bd->bi_dram[0].size = size0;
228 gd->bd->bi_dram[1].start = PHYS_SDRAM_1 + get_sdr_cs_offset(CS1);
229 gd->bd->bi_dram[1].size = size1;
Simon Glass76b00ac2017-03-31 08:40:32 -0600230
231 return 0;
Heiko Schocher561142a2010-09-17 13:10:41 +0200232}
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400233
234/*
235 * mem_init -
236 * - Init the sdrc chip,
237 * - Selects CS0 and CS1,
238 */
239void mem_init(void)
240{
241 /* only init up first bank here */
242 do_sdrc_init(CS0, EARLY_INIT);
243}