blob: 861d01d6dfe677b60992d56e2901cf7f65a68bc3 [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>
25#include <asm/io.h>
26#include <asm/arch/mem.h>
27#include <asm/arch/sys_proto.h>
28
Nishanth Menonee3894c2010-12-11 11:41:42 -050029DECLARE_GLOBAL_DATA_PTR;
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040030extern omap3_sysinfo sysinfo;
31
32static struct sdrc *sdrc_base = (struct sdrc *)OMAP34XX_SDRC_BASE;
33
34/*
35 * is_mem_sdr -
36 * - Return 1 if mem type in use is SDR
37 */
38u32 is_mem_sdr(void)
39{
40 if (readl(&sdrc_base->cs[CS0].mr) == SDRC_MR_0_SDR)
41 return 1;
42 return 0;
43}
44
45/*
46 * make_cs1_contiguous -
Tom Rini5f862b72011-11-18 12:47:59 +000047 * - When we have CS1 populated we want to have it mapped after cs0 to allow
48 * command line mem=xyz use all memory with out discontinuous support
49 * compiled in. We could do it in the ATAG, but there really is two banks...
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040050 */
51void make_cs1_contiguous(void)
52{
53 u32 size, a_add_low, a_add_high;
54
55 size = get_sdr_cs_size(CS0);
56 size >>= 25; /* divide by 32 MiB to find size to offset CS1 */
57 a_add_high = (size & 3) << 8; /* set up low field */
58 a_add_low = (size & 0x3C) >> 2; /* set up high field */
59 writel((a_add_high | a_add_low), &sdrc_base->cs_cfg);
60
61}
62
63
64/*
65 * get_sdr_cs_size -
66 * - Get size of chip select 0/1
67 */
68u32 get_sdr_cs_size(u32 cs)
69{
70 u32 size;
71
72 /* get ram size field */
73 size = readl(&sdrc_base->cs[cs].mcfg) >> 8;
74 size &= 0x3FF; /* remove unwanted bits */
75 size <<= 21; /* multiply by 2 MiB to find size in MB */
76 return size;
77}
78
79/*
80 * get_sdr_cs_offset -
81 * - Get offset of cs from cs0 start
82 */
83u32 get_sdr_cs_offset(u32 cs)
84{
85 u32 offset;
86
87 if (!cs)
88 return 0;
89
90 offset = readl(&sdrc_base->cs_cfg);
Tom Rini0ae05652012-01-18 08:28:50 +000091 offset = (offset & 15) << 27 | (offset & 0x300) << 17;
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -040092
93 return offset;
94}
95
96/*
Tom Rini2a04e852011-11-18 12:48:00 +000097 * write_sdrc_timings -
98 * - Takes CS and associated timings and initalize SDRAM
99 * - Test CS to make sure it's OK for use
100 */
101static void write_sdrc_timings(u32 cs, struct sdrc_actim *sdrc_actim_base,
Peter Barada8c4445d2012-11-13 07:40:28 +0000102 struct board_sdrc_timings *timings)
Tom Rini2a04e852011-11-18 12:48:00 +0000103{
104 /* Setup timings we got from the board. */
Peter Barada8c4445d2012-11-13 07:40:28 +0000105 writel(timings->mcfg, &sdrc_base->cs[cs].mcfg);
106 writel(timings->ctrla, &sdrc_actim_base->ctrla);
107 writel(timings->ctrlb, &sdrc_actim_base->ctrlb);
108 writel(timings->rfr_ctrl, &sdrc_base->cs[cs].rfr_ctrl);
Tom Rini2a04e852011-11-18 12:48:00 +0000109 writel(CMD_NOP, &sdrc_base->cs[cs].manual);
110 writel(CMD_PRECHARGE, &sdrc_base->cs[cs].manual);
111 writel(CMD_AUTOREFRESH, &sdrc_base->cs[cs].manual);
112 writel(CMD_AUTOREFRESH, &sdrc_base->cs[cs].manual);
Peter Barada8c4445d2012-11-13 07:40:28 +0000113 writel(timings->mr, &sdrc_base->cs[cs].mr);
Tom Rini2a04e852011-11-18 12:48:00 +0000114
115 /*
116 * Test ram in this bank
117 * Disable if bad or not present
118 */
119 if (!mem_ok(cs))
120 writel(0, &sdrc_base->cs[cs].mcfg);
121}
122
123/*
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400124 * do_sdrc_init -
Tom Rini2a04e852011-11-18 12:48:00 +0000125 * - Code called once in C-Stack only context for CS0 and with early being
126 * true and a possible 2nd time depending on memory configuration from
127 * stack+global context.
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400128 */
129void do_sdrc_init(u32 cs, u32 early)
130{
Steve Sakoman3667cbe2010-08-19 20:09:57 -0700131 struct sdrc_actim *sdrc_actim_base0, *sdrc_actim_base1;
Peter Barada8c4445d2012-11-13 07:40:28 +0000132 struct board_sdrc_timings timings;
Tom Rini2a04e852011-11-18 12:48:00 +0000133
134 sdrc_actim_base0 = (struct sdrc_actim *)SDRC_ACTIM_CTRL0_BASE;
135 sdrc_actim_base1 = (struct sdrc_actim *)SDRC_ACTIM_CTRL1_BASE;
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400136
Albert ARIBAUD \(3ADEV\)03843da2015-01-16 09:09:48 +0100137 /* set some default timings */
138 timings.sharing = SDRC_SHARING;
139
Tom Rini9ae0d552011-11-18 12:48:06 +0000140 /*
141 * When called in the early context this may be SPL and we will
142 * need to set all of the timings. This ends up being board
143 * specific so we call a helper function to take care of this
144 * for us. Otherwise, to be safe, we need to copy the settings
145 * from the first bank to the second. We will setup CS0,
146 * then set cs_cfg to the appropriate value then try and
147 * setup CS1.
148 */
149#ifdef CONFIG_SPL_BUILD
Albert ARIBAUD \(3ADEV\)03843da2015-01-16 09:09:48 +0100150 /* set/modify board-specific timings */
Peter Barada8c4445d2012-11-13 07:40:28 +0000151 get_board_mem_timings(&timings);
Tom Rini9ae0d552011-11-18 12:48:06 +0000152#endif
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400153 if (early) {
154 /* reset sdrc controller */
155 writel(SOFTRESET, &sdrc_base->sysconfig);
156 wait_on_value(RESETDONE, RESETDONE, &sdrc_base->status,
157 12000000);
158 writel(0, &sdrc_base->sysconfig);
159
160 /* setup sdrc to ball mux */
Albert ARIBAUD \(3ADEV\)03843da2015-01-16 09:09:48 +0100161 writel(timings.sharing, &sdrc_base->sharing);
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400162
Tom Rini2a04e852011-11-18 12:48:00 +0000163 /* Disable Power Down of CKE because of 1 CKE on combo part */
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400164 writel(WAKEUPPROC | SRFRONRESET | PAGEPOLICY_HIGH,
165 &sdrc_base->power);
166
167 writel(ENADLL | DLLPHASE_90, &sdrc_base->dlla_ctrl);
168 sdelay(0x20000);
Simon Schwarzb88e4252011-09-14 15:15:37 -0400169#ifdef CONFIG_SPL_BUILD
Peter Barada8c4445d2012-11-13 07:40:28 +0000170 write_sdrc_timings(CS0, sdrc_actim_base0, &timings);
Tom Rini9ae0d552011-11-18 12:48:06 +0000171 make_cs1_contiguous();
Peter Barada8c4445d2012-11-13 07:40:28 +0000172 write_sdrc_timings(CS1, sdrc_actim_base1, &timings);
Simon Schwarzb88e4252011-09-14 15:15:37 -0400173#endif
174
Steve Sakoman3667cbe2010-08-19 20:09:57 -0700175 }
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400176
177 /*
Tom Rini2a04e852011-11-18 12:48:00 +0000178 * If we aren't using SPL we have been loaded by some
179 * other means which may not have correctly initialized
180 * both CS0 and CS1 (such as some older versions of x-loader)
181 * so we may be asked now to setup CS1.
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400182 */
Tom Rini2a04e852011-11-18 12:48:00 +0000183 if (cs == CS1) {
Peter Barada8c4445d2012-11-13 07:40:28 +0000184 timings.mcfg = readl(&sdrc_base->cs[CS0].mcfg),
185 timings.rfr_ctrl = readl(&sdrc_base->cs[CS0].rfr_ctrl);
186 timings.ctrla = readl(&sdrc_actim_base0->ctrla);
187 timings.ctrlb = readl(&sdrc_actim_base0->ctrlb);
188 timings.mr = readl(&sdrc_base->cs[CS0].mr);
189 write_sdrc_timings(cs, sdrc_actim_base1, &timings);
Tom Rini2a04e852011-11-18 12:48:00 +0000190 }
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400191}
192
193/*
194 * dram_init -
195 * - Sets uboots idea of sdram size
196 */
Heiko Schocher561142a2010-09-17 13:10:41 +0200197int dram_init(void)
198{
Heiko Schocher561142a2010-09-17 13:10:41 +0200199 unsigned int size0 = 0, size1 = 0;
200
201 size0 = get_sdr_cs_size(CS0);
202 /*
Tom Rini5f862b72011-11-18 12:47:59 +0000203 * We always need to have cs_cfg point at where the second
204 * bank would be, if present. Failure to do so can lead to
205 * strange situations where memory isn't detected and
206 * configured correctly. CS0 will already have been setup
207 * at this point.
Heiko Schocher561142a2010-09-17 13:10:41 +0200208 */
Tom Rini5f862b72011-11-18 12:47:59 +0000209 make_cs1_contiguous();
210 do_sdrc_init(CS1, NOT_EARLY);
211 size1 = get_sdr_cs_size(CS1);
Heiko Schocher561142a2010-09-17 13:10:41 +0200212
Heiko Schocher561142a2010-09-17 13:10:41 +0200213 gd->ram_size = size0 + size1;
214
215 return 0;
216}
217
Simon Glass76b00ac2017-03-31 08:40:32 -0600218int dram_init_banksize(void)
Heiko Schocher561142a2010-09-17 13:10:41 +0200219{
Heiko Schocher561142a2010-09-17 13:10:41 +0200220 unsigned int size0 = 0, size1 = 0;
221
222 size0 = get_sdr_cs_size(CS0);
223 size1 = get_sdr_cs_size(CS1);
224
225 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
226 gd->bd->bi_dram[0].size = size0;
227 gd->bd->bi_dram[1].start = PHYS_SDRAM_1 + get_sdr_cs_offset(CS1);
228 gd->bd->bi_dram[1].size = size1;
Simon Glass76b00ac2017-03-31 08:40:32 -0600229
230 return 0;
Heiko Schocher561142a2010-09-17 13:10:41 +0200231}
Vaibhav Hiremathcae377b2010-06-07 15:20:34 -0400232
233/*
234 * mem_init -
235 * - Init the sdrc chip,
236 * - Selects CS0 and CS1,
237 */
238void mem_init(void)
239{
240 /* only init up first bank here */
241 do_sdrc_init(CS0, EARLY_INIT);
242}