blob: 62678ff5d30739ce6dc0a4fdb5ea398acc3d31ea [file] [log] [blame]
Aneesh V2ae610f2011-07-21 09:10:09 -04001/*
2 * EMIF programming
3 *
4 * (C) Copyright 2010
5 * Texas Instruments, <www.ti.com>
6 *
7 * Aneesh V <aneesh@ti.com>
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
Sricharanbb772a52011-11-15 09:50:00 -050029#include <asm/emif.h>
Aneesh V2ae610f2011-07-21 09:10:09 -040030#include <asm/arch/clocks.h>
31#include <asm/arch/sys_proto.h>
32#include <asm/omap_common.h>
33#include <asm/utils.h>
34
Sricharanbb772a52011-11-15 09:50:00 -050035inline u32 emif_num(u32 base)
Aneesh V2ae610f2011-07-21 09:10:09 -040036{
Sricharanbb772a52011-11-15 09:50:00 -050037 if (base == EMIF1_BASE)
Aneesh V2ae610f2011-07-21 09:10:09 -040038 return 1;
Sricharanbb772a52011-11-15 09:50:00 -050039 else if (base == EMIF2_BASE)
Aneesh V2ae610f2011-07-21 09:10:09 -040040 return 2;
41 else
42 return 0;
43}
44
Sricharanbb772a52011-11-15 09:50:00 -050045
Aneesh V2ae610f2011-07-21 09:10:09 -040046static inline u32 get_mr(u32 base, u32 cs, u32 mr_addr)
47{
48 u32 mr;
49 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
50
Sricharanbb772a52011-11-15 09:50:00 -050051 mr_addr |= cs << EMIF_REG_CS_SHIFT;
Aneesh V2ae610f2011-07-21 09:10:09 -040052 writel(mr_addr, &emif->emif_lpddr2_mode_reg_cfg);
53 if (omap_revision() == OMAP4430_ES2_0)
54 mr = readl(&emif->emif_lpddr2_mode_reg_data_es2);
55 else
56 mr = readl(&emif->emif_lpddr2_mode_reg_data);
57 debug("get_mr: EMIF%d cs %d mr %08x val 0x%x\n", emif_num(base),
58 cs, mr_addr, mr);
59 return mr;
60}
61
62static inline void set_mr(u32 base, u32 cs, u32 mr_addr, u32 mr_val)
63{
64 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
65
Sricharanbb772a52011-11-15 09:50:00 -050066 mr_addr |= cs << EMIF_REG_CS_SHIFT;
Aneesh V2ae610f2011-07-21 09:10:09 -040067 writel(mr_addr, &emif->emif_lpddr2_mode_reg_cfg);
68 writel(mr_val, &emif->emif_lpddr2_mode_reg_data);
69}
70
71void emif_reset_phy(u32 base)
72{
73 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
74 u32 iodft;
75
76 iodft = readl(&emif->emif_iodft_tlgc);
Sricharanbb772a52011-11-15 09:50:00 -050077 iodft |= EMIF_REG_RESET_PHY_MASK;
Aneesh V2ae610f2011-07-21 09:10:09 -040078 writel(iodft, &emif->emif_iodft_tlgc);
79}
80
81static void do_lpddr2_init(u32 base, u32 cs)
82{
83 u32 mr_addr;
84
85 /* Wait till device auto initialization is complete */
86 while (get_mr(base, cs, LPDDR2_MR0) & LPDDR2_MR0_DAI_MASK)
87 ;
88 set_mr(base, cs, LPDDR2_MR10, MR10_ZQ_ZQINIT);
89 /*
90 * tZQINIT = 1 us
91 * Enough loops assuming a maximum of 2GHz
92 */
93 sdelay(2000);
94 set_mr(base, cs, LPDDR2_MR1, MR1_BL_8_BT_SEQ_WRAP_EN_NWR_3);
95 set_mr(base, cs, LPDDR2_MR16, MR16_REF_FULL_ARRAY);
96 /*
97 * Enable refresh along with writing MR2
98 * Encoding of RL in MR2 is (RL - 2)
99 */
Sricharanbb772a52011-11-15 09:50:00 -0500100 mr_addr = LPDDR2_MR2 | EMIF_REG_REFRESH_EN_MASK;
Aneesh V2ae610f2011-07-21 09:10:09 -0400101 set_mr(base, cs, mr_addr, RL_FINAL - 2);
102}
103
104static void lpddr2_init(u32 base, const struct emif_regs *regs)
105{
106 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
107
108 /* Not NVM */
Sricharanbb772a52011-11-15 09:50:00 -0500109 clrbits_le32(&emif->emif_lpddr2_nvm_config, EMIF_REG_CS1NVMEN_MASK);
Aneesh V2ae610f2011-07-21 09:10:09 -0400110
111 /*
112 * Keep REG_INITREF_DIS = 1 to prevent re-initialization of SDRAM
113 * when EMIF_SDRAM_CONFIG register is written
114 */
Sricharanbb772a52011-11-15 09:50:00 -0500115 setbits_le32(&emif->emif_sdram_ref_ctrl, EMIF_REG_INITREF_DIS_MASK);
Aneesh V2ae610f2011-07-21 09:10:09 -0400116
117 /*
118 * Set the SDRAM_CONFIG and PHY_CTRL for the
119 * un-locked frequency & default RL
120 */
121 writel(regs->sdram_config_init, &emif->emif_sdram_config);
122 writel(regs->emif_ddr_phy_ctlr_1_init, &emif->emif_ddr_phy_ctrl_1);
123
124 do_lpddr2_init(base, CS0);
Sricharanbb772a52011-11-15 09:50:00 -0500125 if (regs->sdram_config & EMIF_REG_EBANK_MASK)
Aneesh V2ae610f2011-07-21 09:10:09 -0400126 do_lpddr2_init(base, CS1);
127
128 writel(regs->sdram_config, &emif->emif_sdram_config);
129 writel(regs->emif_ddr_phy_ctlr_1, &emif->emif_ddr_phy_ctrl_1);
130
131 /* Enable refresh now */
Sricharanbb772a52011-11-15 09:50:00 -0500132 clrbits_le32(&emif->emif_sdram_ref_ctrl, EMIF_REG_INITREF_DIS_MASK);
Aneesh V2ae610f2011-07-21 09:10:09 -0400133
134}
135
Sricharanbb772a52011-11-15 09:50:00 -0500136void emif_update_timings(u32 base, const struct emif_regs *regs)
Aneesh V2ae610f2011-07-21 09:10:09 -0400137{
138 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
139
140 writel(regs->ref_ctrl, &emif->emif_sdram_ref_ctrl_shdw);
141 writel(regs->sdram_tim1, &emif->emif_sdram_tim_1_shdw);
142 writel(regs->sdram_tim2, &emif->emif_sdram_tim_2_shdw);
143 writel(regs->sdram_tim3, &emif->emif_sdram_tim_3_shdw);
144 if (omap_revision() == OMAP4430_ES1_0) {
145 /* ES1 bug EMIF should be in force idle during freq_update */
146 writel(0, &emif->emif_pwr_mgmt_ctrl);
147 } else {
148 writel(EMIF_PWR_MGMT_CTRL, &emif->emif_pwr_mgmt_ctrl);
149 writel(EMIF_PWR_MGMT_CTRL_SHDW, &emif->emif_pwr_mgmt_ctrl_shdw);
150 }
151 writel(regs->read_idle_ctrl, &emif->emif_read_idlectrl_shdw);
152 writel(regs->zq_config, &emif->emif_zq_config);
153 writel(regs->temp_alert_config, &emif->emif_temp_alert_config);
154 writel(regs->emif_ddr_phy_ctlr_1, &emif->emif_ddr_phy_ctrl_1_shdw);
Aneesh V924eb362011-07-21 09:29:26 -0400155
Sricharanbb772a52011-11-15 09:50:00 -0500156 if (omap_revision() == OMAP5430_ES1_0) {
157 writel(EMIF_L3_CONFIG_VAL_SYS_10_MPU_5_LL_0,
158 &emif->emif_l3_config);
159 } else if (omap_revision() >= OMAP4460_ES1_0) {
Aneesh V924eb362011-07-21 09:29:26 -0400160 writel(EMIF_L3_CONFIG_VAL_SYS_10_MPU_3_LL_0,
161 &emif->emif_l3_config);
162 } else {
163 writel(EMIF_L3_CONFIG_VAL_SYS_10_LL_0,
164 &emif->emif_l3_config);
Aneesh V2ae610f2011-07-21 09:10:09 -0400165 }
166}
167
Aneesh V095aea22011-07-21 09:10:12 -0400168#ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
169#define print_timing_reg(reg) debug(#reg" - 0x%08x\n", (reg))
170
Aneesh V095aea22011-07-21 09:10:12 -0400171/*
172 * Organization and refresh requirements for LPDDR2 devices of different
173 * types and densities. Derived from JESD209-2 section 2.4
174 */
175const struct lpddr2_addressing addressing_table[] = {
176 /* Banks tREFIx10 rowx32,rowx16 colx32,colx16 density */
177 {BANKS4, T_REFI_15_6, {ROW_12, ROW_12}, {COL_7, COL_8} },/*64M */
178 {BANKS4, T_REFI_15_6, {ROW_12, ROW_12}, {COL_8, COL_9} },/*128M */
179 {BANKS4, T_REFI_7_8, {ROW_13, ROW_13}, {COL_8, COL_9} },/*256M */
180 {BANKS4, T_REFI_7_8, {ROW_13, ROW_13}, {COL_9, COL_10} },/*512M */
181 {BANKS8, T_REFI_7_8, {ROW_13, ROW_13}, {COL_9, COL_10} },/*1GS4 */
182 {BANKS8, T_REFI_3_9, {ROW_14, ROW_14}, {COL_9, COL_10} },/*2GS4 */
183 {BANKS8, T_REFI_3_9, {ROW_14, ROW_14}, {COL_10, COL_11} },/*4G */
184 {BANKS8, T_REFI_3_9, {ROW_15, ROW_15}, {COL_10, COL_11} },/*8G */
185 {BANKS4, T_REFI_7_8, {ROW_14, ROW_14}, {COL_9, COL_10} },/*1GS2 */
186 {BANKS4, T_REFI_3_9, {ROW_15, ROW_15}, {COL_9, COL_10} },/*2GS2 */
187};
188
189static const u32 lpddr2_density_2_size_in_mbytes[] = {
190 8, /* 64Mb */
191 16, /* 128Mb */
192 32, /* 256Mb */
193 64, /* 512Mb */
194 128, /* 1Gb */
195 256, /* 2Gb */
196 512, /* 4Gb */
197 1024, /* 8Gb */
198 2048, /* 16Gb */
199 4096 /* 32Gb */
200};
201
202/*
203 * Calculate the period of DDR clock from frequency value and set the
204 * denominator and numerator in global variables for easy access later
205 */
206static void set_ddr_clk_period(u32 freq)
207{
208 /*
209 * period = 1/freq
210 * period_in_ns = 10^9/freq
211 */
212 *T_num = 1000000000;
213 *T_den = freq;
214 cancel_out(T_num, T_den, 200);
215
216}
217
218/*
219 * Convert time in nano seconds to number of cycles of DDR clock
220 */
221static inline u32 ns_2_cycles(u32 ns)
222{
223 return ((ns * (*T_den)) + (*T_num) - 1) / (*T_num);
224}
225
226/*
227 * ns_2_cycles with the difference that the time passed is 2 times the actual
228 * value(to avoid fractions). The cycles returned is for the original value of
229 * the timing parameter
230 */
231static inline u32 ns_x2_2_cycles(u32 ns)
232{
233 return ((ns * (*T_den)) + (*T_num) * 2 - 1) / ((*T_num) * 2);
234}
235
236/*
237 * Find addressing table index based on the device's type(S2 or S4) and
238 * density
239 */
240s8 addressing_table_index(u8 type, u8 density, u8 width)
241{
242 u8 index;
243 if ((density > LPDDR2_DENSITY_8Gb) || (width == LPDDR2_IO_WIDTH_8))
244 return -1;
245
246 /*
247 * Look at the way ADDR_TABLE_INDEX* values have been defined
248 * in emif.h compared to LPDDR2_DENSITY_* values
249 * The table is layed out in the increasing order of density
250 * (ignoring type). The exceptions 1GS2 and 2GS2 have been placed
251 * at the end
252 */
253 if ((type == LPDDR2_TYPE_S2) && (density == LPDDR2_DENSITY_1Gb))
254 index = ADDR_TABLE_INDEX1GS2;
255 else if ((type == LPDDR2_TYPE_S2) && (density == LPDDR2_DENSITY_2Gb))
256 index = ADDR_TABLE_INDEX2GS2;
257 else
258 index = density;
259
260 debug("emif: addressing table index %d\n", index);
261
262 return index;
263}
264
265/*
266 * Find the the right timing table from the array of timing
267 * tables of the device using DDR clock frequency
268 */
269static const struct lpddr2_ac_timings *get_timings_table(const struct
270 lpddr2_ac_timings const *const *device_timings,
271 u32 freq)
272{
273 u32 i, temp, freq_nearest;
274 const struct lpddr2_ac_timings *timings = 0;
275
276 emif_assert(freq <= MAX_LPDDR2_FREQ);
277 emif_assert(device_timings);
278
279 /*
280 * Start with the maximum allowed frequency - that is always safe
281 */
282 freq_nearest = MAX_LPDDR2_FREQ;
283 /*
284 * Find the timings table that has the max frequency value:
285 * i. Above or equal to the DDR frequency - safe
286 * ii. The lowest that satisfies condition (i) - optimal
287 */
288 for (i = 0; (i < MAX_NUM_SPEEDBINS) && device_timings[i]; i++) {
289 temp = device_timings[i]->max_freq;
290 if ((temp >= freq) && (temp <= freq_nearest)) {
291 freq_nearest = temp;
292 timings = device_timings[i];
293 }
294 }
295 debug("emif: timings table: %d\n", freq_nearest);
296 return timings;
297}
298
299/*
300 * Finds the value of emif_sdram_config_reg
301 * All parameters are programmed based on the device on CS0.
302 * If there is a device on CS1, it will be same as that on CS0 or
303 * it will be NVM. We don't support NVM yet.
304 * If cs1_device pointer is NULL it is assumed that there is no device
305 * on CS1
306 */
307static u32 get_sdram_config_reg(const struct lpddr2_device_details *cs0_device,
308 const struct lpddr2_device_details *cs1_device,
309 const struct lpddr2_addressing *addressing,
310 u8 RL)
311{
312 u32 config_reg = 0;
313
Sricharanbb772a52011-11-15 09:50:00 -0500314 config_reg |= (cs0_device->type + 4) << EMIF_REG_SDRAM_TYPE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400315 config_reg |= EMIF_INTERLEAVING_POLICY_MAX_INTERLEAVING <<
Sricharanbb772a52011-11-15 09:50:00 -0500316 EMIF_REG_IBANK_POS_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400317
Sricharanbb772a52011-11-15 09:50:00 -0500318 config_reg |= cs0_device->io_width << EMIF_REG_NARROW_MODE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400319
Sricharanbb772a52011-11-15 09:50:00 -0500320 config_reg |= RL << EMIF_REG_CL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400321
322 config_reg |= addressing->row_sz[cs0_device->io_width] <<
Sricharanbb772a52011-11-15 09:50:00 -0500323 EMIF_REG_ROWSIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400324
Sricharanbb772a52011-11-15 09:50:00 -0500325 config_reg |= addressing->num_banks << EMIF_REG_IBANK_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400326
327 config_reg |= (cs1_device ? EBANK_CS1_EN : EBANK_CS1_DIS) <<
Sricharanbb772a52011-11-15 09:50:00 -0500328 EMIF_REG_EBANK_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400329
330 config_reg |= addressing->col_sz[cs0_device->io_width] <<
Sricharanbb772a52011-11-15 09:50:00 -0500331 EMIF_REG_PAGESIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400332
333 return config_reg;
334}
335
336static u32 get_sdram_ref_ctrl(u32 freq,
337 const struct lpddr2_addressing *addressing)
338{
339 u32 ref_ctrl = 0, val = 0, freq_khz;
340 freq_khz = freq / 1000;
341 /*
342 * refresh rate to be set is 'tREFI * freq in MHz
343 * division by 10000 to account for khz and x10 in t_REFI_us_x10
344 */
345 val = addressing->t_REFI_us_x10 * freq_khz / 10000;
Sricharanbb772a52011-11-15 09:50:00 -0500346 ref_ctrl |= val << EMIF_REG_REFRESH_RATE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400347
348 return ref_ctrl;
349}
350
351static u32 get_sdram_tim_1_reg(const struct lpddr2_ac_timings *timings,
352 const struct lpddr2_min_tck *min_tck,
353 const struct lpddr2_addressing *addressing)
354{
355 u32 tim1 = 0, val = 0;
356 val = max(min_tck->tWTR, ns_x2_2_cycles(timings->tWTRx2)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500357 tim1 |= val << EMIF_REG_T_WTR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400358
359 if (addressing->num_banks == BANKS8)
360 val = (timings->tFAW * (*T_den) + 4 * (*T_num) - 1) /
361 (4 * (*T_num)) - 1;
362 else
363 val = max(min_tck->tRRD, ns_2_cycles(timings->tRRD)) - 1;
364
Sricharanbb772a52011-11-15 09:50:00 -0500365 tim1 |= val << EMIF_REG_T_RRD_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400366
367 val = ns_2_cycles(timings->tRASmin + timings->tRPab) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500368 tim1 |= val << EMIF_REG_T_RC_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400369
370 val = max(min_tck->tRAS_MIN, ns_2_cycles(timings->tRASmin)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500371 tim1 |= val << EMIF_REG_T_RAS_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400372
373 val = max(min_tck->tWR, ns_2_cycles(timings->tWR)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500374 tim1 |= val << EMIF_REG_T_WR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400375
376 val = max(min_tck->tRCD, ns_2_cycles(timings->tRCD)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500377 tim1 |= val << EMIF_REG_T_RCD_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400378
379 val = max(min_tck->tRP_AB, ns_2_cycles(timings->tRPab)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500380 tim1 |= val << EMIF_REG_T_RP_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400381
382 return tim1;
383}
384
385static u32 get_sdram_tim_2_reg(const struct lpddr2_ac_timings *timings,
386 const struct lpddr2_min_tck *min_tck)
387{
388 u32 tim2 = 0, val = 0;
389 val = max(min_tck->tCKE, timings->tCKE) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500390 tim2 |= val << EMIF_REG_T_CKE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400391
392 val = max(min_tck->tRTP, ns_x2_2_cycles(timings->tRTPx2)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500393 tim2 |= val << EMIF_REG_T_RTP_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400394
395 /*
396 * tXSRD = tRFCab + 10 ns. XSRD and XSNR should have the
397 * same value
398 */
399 val = ns_2_cycles(timings->tXSR) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500400 tim2 |= val << EMIF_REG_T_XSRD_SHIFT;
401 tim2 |= val << EMIF_REG_T_XSNR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400402
403 val = max(min_tck->tXP, ns_x2_2_cycles(timings->tXPx2)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500404 tim2 |= val << EMIF_REG_T_XP_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400405
406 return tim2;
407}
408
409static u32 get_sdram_tim_3_reg(const struct lpddr2_ac_timings *timings,
410 const struct lpddr2_min_tck *min_tck,
411 const struct lpddr2_addressing *addressing)
412{
413 u32 tim3 = 0, val = 0;
414 val = min(timings->tRASmax * 10 / addressing->t_REFI_us_x10 - 1, 0xF);
Sricharanbb772a52011-11-15 09:50:00 -0500415 tim3 |= val << EMIF_REG_T_RAS_MAX_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400416
417 val = ns_2_cycles(timings->tRFCab) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500418 tim3 |= val << EMIF_REG_T_RFC_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400419
420 val = ns_x2_2_cycles(timings->tDQSCKMAXx2) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500421 tim3 |= val << EMIF_REG_T_TDQSCKMAX_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400422
423 val = ns_2_cycles(timings->tZQCS) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500424 tim3 |= val << EMIF_REG_ZQ_ZQCS_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400425
426 val = max(min_tck->tCKESR, ns_2_cycles(timings->tCKESR)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500427 tim3 |= val << EMIF_REG_T_CKESR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400428
429 return tim3;
430}
431
432static u32 get_zq_config_reg(const struct lpddr2_device_details *cs1_device,
433 const struct lpddr2_addressing *addressing,
434 u8 volt_ramp)
435{
436 u32 zq = 0, val = 0;
437 if (volt_ramp)
438 val =
439 EMIF_ZQCS_INTERVAL_DVFS_IN_US * 10 /
440 addressing->t_REFI_us_x10;
441 else
442 val =
443 EMIF_ZQCS_INTERVAL_NORMAL_IN_US * 10 /
444 addressing->t_REFI_us_x10;
Sricharanbb772a52011-11-15 09:50:00 -0500445 zq |= val << EMIF_REG_ZQ_REFINTERVAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400446
Sricharanbb772a52011-11-15 09:50:00 -0500447 zq |= (REG_ZQ_ZQCL_MULT - 1) << EMIF_REG_ZQ_ZQCL_MULT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400448
Sricharanbb772a52011-11-15 09:50:00 -0500449 zq |= (REG_ZQ_ZQINIT_MULT - 1) << EMIF_REG_ZQ_ZQINIT_MULT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400450
Sricharanbb772a52011-11-15 09:50:00 -0500451 zq |= REG_ZQ_SFEXITEN_ENABLE << EMIF_REG_ZQ_SFEXITEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400452
453 /*
454 * Assuming that two chipselects have a single calibration resistor
455 * If there are indeed two calibration resistors, then this flag should
456 * be enabled to take advantage of dual calibration feature.
457 * This data should ideally come from board files. But considering
458 * that none of the boards today have calibration resistors per CS,
459 * it would be an unnecessary overhead.
460 */
Sricharanbb772a52011-11-15 09:50:00 -0500461 zq |= REG_ZQ_DUALCALEN_DISABLE << EMIF_REG_ZQ_DUALCALEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400462
Sricharanbb772a52011-11-15 09:50:00 -0500463 zq |= REG_ZQ_CS0EN_ENABLE << EMIF_REG_ZQ_CS0EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400464
Sricharanbb772a52011-11-15 09:50:00 -0500465 zq |= (cs1_device ? 1 : 0) << EMIF_REG_ZQ_CS1EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400466
467 return zq;
468}
469
470static u32 get_temp_alert_config(const struct lpddr2_device_details *cs1_device,
471 const struct lpddr2_addressing *addressing,
472 u8 is_derated)
473{
474 u32 alert = 0, interval;
475 interval =
476 TEMP_ALERT_POLL_INTERVAL_MS * 10000 / addressing->t_REFI_us_x10;
477 if (is_derated)
478 interval *= 4;
Sricharanbb772a52011-11-15 09:50:00 -0500479 alert |= interval << EMIF_REG_TA_REFINTERVAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400480
Sricharanbb772a52011-11-15 09:50:00 -0500481 alert |= TEMP_ALERT_CONFIG_DEVCT_1 << EMIF_REG_TA_DEVCNT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400482
Sricharanbb772a52011-11-15 09:50:00 -0500483 alert |= TEMP_ALERT_CONFIG_DEVWDT_32 << EMIF_REG_TA_DEVWDT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400484
Sricharanbb772a52011-11-15 09:50:00 -0500485 alert |= 1 << EMIF_REG_TA_SFEXITEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400486
Sricharanbb772a52011-11-15 09:50:00 -0500487 alert |= 1 << EMIF_REG_TA_CS0EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400488
Sricharanbb772a52011-11-15 09:50:00 -0500489 alert |= (cs1_device ? 1 : 0) << EMIF_REG_TA_CS1EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400490
491 return alert;
492}
493
494static u32 get_read_idle_ctrl_reg(u8 volt_ramp)
495{
496 u32 idle = 0, val = 0;
497 if (volt_ramp)
Aneesh V924eb362011-07-21 09:29:26 -0400498 val = ns_2_cycles(READ_IDLE_INTERVAL_DVFS) / 64 - 1;
Aneesh V095aea22011-07-21 09:10:12 -0400499 else
500 /*Maximum value in normal conditions - suggested by hw team */
501 val = 0x1FF;
Sricharanbb772a52011-11-15 09:50:00 -0500502 idle |= val << EMIF_REG_READ_IDLE_INTERVAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400503
Sricharanbb772a52011-11-15 09:50:00 -0500504 idle |= EMIF_REG_READ_IDLE_LEN_VAL << EMIF_REG_READ_IDLE_LEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400505
506 return idle;
507}
508
509static u32 get_ddr_phy_ctrl_1(u32 freq, u8 RL)
510{
511 u32 phy = 0, val = 0;
512
Sricharanbb772a52011-11-15 09:50:00 -0500513 phy |= (RL + 2) << EMIF_REG_READ_LATENCY_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400514
515 if (freq <= 100000000)
516 val = EMIF_DLL_SLAVE_DLY_CTRL_100_MHZ_AND_LESS;
517 else if (freq <= 200000000)
518 val = EMIF_DLL_SLAVE_DLY_CTRL_200_MHZ;
519 else
520 val = EMIF_DLL_SLAVE_DLY_CTRL_400_MHZ;
Sricharanbb772a52011-11-15 09:50:00 -0500521 phy |= val << EMIF_REG_DLL_SLAVE_DLY_CTRL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400522
523 /* Other fields are constant magic values. Hardcode them together */
524 phy |= EMIF_DDR_PHY_CTRL_1_BASE_VAL <<
Sricharanbb772a52011-11-15 09:50:00 -0500525 EMIF_EMIF_DDR_PHY_CTRL_1_BASE_VAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400526
527 return phy;
528}
529
530static u32 get_emif_mem_size(struct emif_device_details *devices)
531{
532 u32 size_mbytes = 0, temp;
533
534 if (!devices)
535 return 0;
536
537 if (devices->cs0_device_details) {
538 temp = devices->cs0_device_details->density;
539 size_mbytes += lpddr2_density_2_size_in_mbytes[temp];
540 }
541
542 if (devices->cs1_device_details) {
543 temp = devices->cs1_device_details->density;
544 size_mbytes += lpddr2_density_2_size_in_mbytes[temp];
545 }
546 /* convert to bytes */
547 return size_mbytes << 20;
548}
549
550/* Gets the encoding corresponding to a given DMM section size */
551u32 get_dmm_section_size_map(u32 section_size)
552{
553 /*
554 * Section size mapping:
555 * 0x0: 16-MiB section
556 * 0x1: 32-MiB section
557 * 0x2: 64-MiB section
558 * 0x3: 128-MiB section
559 * 0x4: 256-MiB section
560 * 0x5: 512-MiB section
561 * 0x6: 1-GiB section
562 * 0x7: 2-GiB section
563 */
564 section_size >>= 24; /* divide by 16 MB */
565 return log_2_n_round_down(section_size);
566}
567
568static void emif_calculate_regs(
569 const struct emif_device_details *emif_dev_details,
570 u32 freq, struct emif_regs *regs)
571{
572 u32 temp, sys_freq;
573 const struct lpddr2_addressing *addressing;
574 const struct lpddr2_ac_timings *timings;
575 const struct lpddr2_min_tck *min_tck;
576 const struct lpddr2_device_details *cs0_dev_details =
577 emif_dev_details->cs0_device_details;
578 const struct lpddr2_device_details *cs1_dev_details =
579 emif_dev_details->cs1_device_details;
580 const struct lpddr2_device_timings *cs0_dev_timings =
581 emif_dev_details->cs0_device_timings;
582
583 emif_assert(emif_dev_details);
584 emif_assert(regs);
585 /*
586 * You can not have a device on CS1 without one on CS0
587 * So configuring EMIF without a device on CS0 doesn't
588 * make sense
589 */
590 emif_assert(cs0_dev_details);
591 emif_assert(cs0_dev_details->type != LPDDR2_TYPE_NVM);
592 /*
593 * If there is a device on CS1 it should be same type as CS0
594 * (or NVM. But NVM is not supported in this driver yet)
595 */
596 emif_assert((cs1_dev_details == NULL) ||
597 (cs1_dev_details->type == LPDDR2_TYPE_NVM) ||
598 (cs0_dev_details->type == cs1_dev_details->type));
599 emif_assert(freq <= MAX_LPDDR2_FREQ);
600
601 set_ddr_clk_period(freq);
602
603 /*
604 * The device on CS0 is used for all timing calculations
605 * There is only one set of registers for timings per EMIF. So, if the
606 * second CS(CS1) has a device, it should have the same timings as the
607 * device on CS0
608 */
609 timings = get_timings_table(cs0_dev_timings->ac_timings, freq);
610 emif_assert(timings);
611 min_tck = cs0_dev_timings->min_tck;
612
613 temp = addressing_table_index(cs0_dev_details->type,
614 cs0_dev_details->density,
615 cs0_dev_details->io_width);
616
617 emif_assert((temp >= 0));
618 addressing = &(addressing_table[temp]);
619 emif_assert(addressing);
620
621 sys_freq = get_sys_clk_freq();
622
623 regs->sdram_config_init = get_sdram_config_reg(cs0_dev_details,
624 cs1_dev_details,
625 addressing, RL_BOOT);
626
627 regs->sdram_config = get_sdram_config_reg(cs0_dev_details,
628 cs1_dev_details,
629 addressing, RL_FINAL);
630
631 regs->ref_ctrl = get_sdram_ref_ctrl(freq, addressing);
632
633 regs->sdram_tim1 = get_sdram_tim_1_reg(timings, min_tck, addressing);
634
635 regs->sdram_tim2 = get_sdram_tim_2_reg(timings, min_tck);
636
637 regs->sdram_tim3 = get_sdram_tim_3_reg(timings, min_tck, addressing);
638
639 regs->read_idle_ctrl = get_read_idle_ctrl_reg(LPDDR2_VOLTAGE_STABLE);
640
641 regs->temp_alert_config =
642 get_temp_alert_config(cs1_dev_details, addressing, 0);
643
644 regs->zq_config = get_zq_config_reg(cs1_dev_details, addressing,
645 LPDDR2_VOLTAGE_STABLE);
646
647 regs->emif_ddr_phy_ctlr_1_init =
648 get_ddr_phy_ctrl_1(sys_freq / 2, RL_BOOT);
649
650 regs->emif_ddr_phy_ctlr_1 =
651 get_ddr_phy_ctrl_1(freq, RL_FINAL);
652
653 regs->freq = freq;
654
655 print_timing_reg(regs->sdram_config_init);
656 print_timing_reg(regs->sdram_config);
657 print_timing_reg(regs->ref_ctrl);
658 print_timing_reg(regs->sdram_tim1);
659 print_timing_reg(regs->sdram_tim2);
660 print_timing_reg(regs->sdram_tim3);
661 print_timing_reg(regs->read_idle_ctrl);
662 print_timing_reg(regs->temp_alert_config);
663 print_timing_reg(regs->zq_config);
664 print_timing_reg(regs->emif_ddr_phy_ctlr_1);
665 print_timing_reg(regs->emif_ddr_phy_ctlr_1_init);
666}
667#endif /* CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS */
668
Aneesh V1e463862011-07-21 09:10:15 -0400669#ifdef CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
670const char *get_lpddr2_type(u8 type_id)
671{
672 switch (type_id) {
673 case LPDDR2_TYPE_S4:
674 return "LPDDR2-S4";
675 case LPDDR2_TYPE_S2:
676 return "LPDDR2-S2";
677 default:
678 return NULL;
679 }
680}
681
682const char *get_lpddr2_io_width(u8 width_id)
683{
684 switch (width_id) {
685 case LPDDR2_IO_WIDTH_8:
686 return "x8";
687 case LPDDR2_IO_WIDTH_16:
688 return "x16";
689 case LPDDR2_IO_WIDTH_32:
690 return "x32";
691 default:
692 return NULL;
693 }
694}
695
696const char *get_lpddr2_manufacturer(u32 manufacturer)
697{
698 switch (manufacturer) {
699 case LPDDR2_MANUFACTURER_SAMSUNG:
700 return "Samsung";
701 case LPDDR2_MANUFACTURER_QIMONDA:
702 return "Qimonda";
703 case LPDDR2_MANUFACTURER_ELPIDA:
704 return "Elpida";
705 case LPDDR2_MANUFACTURER_ETRON:
706 return "Etron";
707 case LPDDR2_MANUFACTURER_NANYA:
708 return "Nanya";
709 case LPDDR2_MANUFACTURER_HYNIX:
710 return "Hynix";
711 case LPDDR2_MANUFACTURER_MOSEL:
712 return "Mosel";
713 case LPDDR2_MANUFACTURER_WINBOND:
714 return "Winbond";
715 case LPDDR2_MANUFACTURER_ESMT:
716 return "ESMT";
717 case LPDDR2_MANUFACTURER_SPANSION:
718 return "Spansion";
719 case LPDDR2_MANUFACTURER_SST:
720 return "SST";
721 case LPDDR2_MANUFACTURER_ZMOS:
722 return "ZMOS";
723 case LPDDR2_MANUFACTURER_INTEL:
724 return "Intel";
725 case LPDDR2_MANUFACTURER_NUMONYX:
726 return "Numonyx";
727 case LPDDR2_MANUFACTURER_MICRON:
728 return "Micron";
729 default:
730 return NULL;
731 }
732}
733
734static void display_sdram_details(u32 emif_nr, u32 cs,
735 struct lpddr2_device_details *device)
736{
737 const char *mfg_str;
738 const char *type_str;
739 char density_str[10];
740 u32 density;
741
742 debug("EMIF%d CS%d\t", emif_nr, cs);
743
744 if (!device) {
745 debug("None\n");
746 return;
747 }
748
749 mfg_str = get_lpddr2_manufacturer(device->manufacturer);
750 type_str = get_lpddr2_type(device->type);
751
752 density = lpddr2_density_2_size_in_mbytes[device->density];
753 if ((density / 1024 * 1024) == density) {
754 density /= 1024;
755 sprintf(density_str, "%d GB", density);
756 } else
757 sprintf(density_str, "%d MB", density);
758 if (mfg_str && type_str)
759 debug("%s\t\t%s\t%s\n", mfg_str, type_str, density_str);
760}
761
762static u8 is_lpddr2_sdram_present(u32 base, u32 cs,
763 struct lpddr2_device_details *lpddr2_device)
764{
765 u32 mr = 0, temp;
766
767 mr = get_mr(base, cs, LPDDR2_MR0);
768 if (mr > 0xFF) {
769 /* Mode register value bigger than 8 bit */
770 return 0;
771 }
772
773 temp = (mr & LPDDR2_MR0_DI_MASK) >> LPDDR2_MR0_DI_SHIFT;
774 if (temp) {
775 /* Not SDRAM */
776 return 0;
777 }
778 temp = (mr & LPDDR2_MR0_DNVI_MASK) >> LPDDR2_MR0_DNVI_SHIFT;
779
780 if (temp) {
781 /* DNV supported - But DNV is only supported for NVM */
782 return 0;
783 }
784
785 mr = get_mr(base, cs, LPDDR2_MR4);
786 if (mr > 0xFF) {
787 /* Mode register value bigger than 8 bit */
788 return 0;
789 }
790
791 mr = get_mr(base, cs, LPDDR2_MR5);
792 if (mr >= 0xFF) {
793 /* Mode register value bigger than 8 bit */
794 return 0;
795 }
796
797 if (!get_lpddr2_manufacturer(mr)) {
798 /* Manufacturer not identified */
799 return 0;
800 }
801 lpddr2_device->manufacturer = mr;
802
803 mr = get_mr(base, cs, LPDDR2_MR6);
804 if (mr >= 0xFF) {
805 /* Mode register value bigger than 8 bit */
806 return 0;
807 }
808
809 mr = get_mr(base, cs, LPDDR2_MR7);
810 if (mr >= 0xFF) {
811 /* Mode register value bigger than 8 bit */
812 return 0;
813 }
814
815 mr = get_mr(base, cs, LPDDR2_MR8);
816 if (mr >= 0xFF) {
817 /* Mode register value bigger than 8 bit */
818 return 0;
819 }
820
821 temp = (mr & MR8_TYPE_MASK) >> MR8_TYPE_SHIFT;
822 if (!get_lpddr2_type(temp)) {
823 /* Not SDRAM */
824 return 0;
825 }
826 lpddr2_device->type = temp;
827
828 temp = (mr & MR8_DENSITY_MASK) >> MR8_DENSITY_SHIFT;
829 if (temp > LPDDR2_DENSITY_32Gb) {
830 /* Density not supported */
831 return 0;
832 }
833 lpddr2_device->density = temp;
834
835 temp = (mr & MR8_IO_WIDTH_MASK) >> MR8_IO_WIDTH_SHIFT;
836 if (!get_lpddr2_io_width(temp)) {
837 /* IO width unsupported value */
838 return 0;
839 }
840 lpddr2_device->io_width = temp;
841
842 /*
843 * If all the above tests pass we should
844 * have a device on this chip-select
845 */
846 return 1;
847}
848
Aneesh V025bc422011-09-08 11:05:53 -0400849struct lpddr2_device_details *emif_get_device_details(u32 emif_nr, u8 cs,
Aneesh V1e463862011-07-21 09:10:15 -0400850 struct lpddr2_device_details *lpddr2_dev_details)
851{
852 u32 phy;
Sricharanbb772a52011-11-15 09:50:00 -0500853 u32 base = (emif_nr == 1) ? EMIF1_BASE : EMIF2_BASE;
854
Aneesh V1e463862011-07-21 09:10:15 -0400855 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
856
857 if (!lpddr2_dev_details)
858 return NULL;
859
860 /* Do the minimum init for mode register accesses */
861 if (!running_from_sdram()) {
862 phy = get_ddr_phy_ctrl_1(get_sys_clk_freq() / 2, RL_BOOT);
863 writel(phy, &emif->emif_ddr_phy_ctrl_1);
864 }
865
866 if (!(is_lpddr2_sdram_present(base, cs, lpddr2_dev_details)))
867 return NULL;
868
869 display_sdram_details(emif_num(base), cs, lpddr2_dev_details);
870
871 return lpddr2_dev_details;
872}
Aneesh V1e463862011-07-21 09:10:15 -0400873#endif /* CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION */
874
Aneesh V2ae610f2011-07-21 09:10:09 -0400875static void do_sdram_init(u32 base)
876{
877 const struct emif_regs *regs;
878 u32 in_sdram, emif_nr;
879
880 debug(">>do_sdram_init() %x\n", base);
881
882 in_sdram = running_from_sdram();
Sricharanbb772a52011-11-15 09:50:00 -0500883 emif_nr = (base == EMIF1_BASE) ? 1 : 2;
Aneesh V2ae610f2011-07-21 09:10:09 -0400884
Aneesh V095aea22011-07-21 09:10:12 -0400885#ifdef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
Aneesh V2ae610f2011-07-21 09:10:09 -0400886 emif_get_reg_dump(emif_nr, &regs);
887 if (!regs) {
888 debug("EMIF: reg dump not provided\n");
889 return;
890 }
Aneesh V095aea22011-07-21 09:10:12 -0400891#else
892 /*
893 * The user has not provided the register values. We need to
894 * calculate it based on the timings and the DDR frequency
895 */
896 struct emif_device_details dev_details;
897 struct emif_regs calculated_regs;
898
899 /*
900 * Get device details:
901 * - Discovered if CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION is set
902 * - Obtained from user otherwise
903 */
904 struct lpddr2_device_details cs0_dev_details, cs1_dev_details;
Aneesh V025bc422011-09-08 11:05:53 -0400905 emif_reset_phy(base);
Aneesh V4324c112011-11-21 23:39:02 +0000906 dev_details.cs0_device_details = emif_get_device_details(emif_nr, CS0,
Aneesh V025bc422011-09-08 11:05:53 -0400907 &cs0_dev_details);
Aneesh V4324c112011-11-21 23:39:02 +0000908 dev_details.cs1_device_details = emif_get_device_details(emif_nr, CS1,
Aneesh V025bc422011-09-08 11:05:53 -0400909 &cs1_dev_details);
910 emif_reset_phy(base);
Aneesh V095aea22011-07-21 09:10:12 -0400911
912 /* Return if no devices on this EMIF */
913 if (!dev_details.cs0_device_details &&
914 !dev_details.cs1_device_details) {
915 emif_sizes[emif_nr - 1] = 0;
916 return;
917 }
918
919 if (!in_sdram)
920 emif_sizes[emif_nr - 1] = get_emif_mem_size(&dev_details);
921
922 /*
923 * Get device timings:
924 * - Default timings specified by JESD209-2 if
925 * CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS is set
926 * - Obtained from user otherwise
927 */
928 emif_get_device_timings(emif_nr, &dev_details.cs0_device_timings,
929 &dev_details.cs1_device_timings);
930
931 /* Calculate the register values */
Sricharan2e5ba482011-11-15 09:49:58 -0500932 emif_calculate_regs(&dev_details, omap_ddr_clk(), &calculated_regs);
Aneesh V095aea22011-07-21 09:10:12 -0400933 regs = &calculated_regs;
934#endif /* CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS */
Aneesh V2ae610f2011-07-21 09:10:09 -0400935
936 /*
937 * Initializing the LPDDR2 device can not happen from SDRAM.
938 * Changing the timing registers in EMIF can happen(going from one
939 * OPP to another)
940 */
941 if (!in_sdram)
942 lpddr2_init(base, regs);
943
944 /* Write to the shadow registers */
945 emif_update_timings(base, regs);
946
947 debug("<<do_sdram_init() %x\n", base);
948}
949
Sricharanbb772a52011-11-15 09:50:00 -0500950void emif_post_init_config(u32 base)
Aneesh V2ae610f2011-07-21 09:10:09 -0400951{
952 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
Sricharanbb772a52011-11-15 09:50:00 -0500953 u32 omap_rev = omap_revision();
954
955 if (omap_rev == OMAP5430_ES1_0)
956 return;
Aneesh V2ae610f2011-07-21 09:10:09 -0400957
958 /* reset phy on ES2.0 */
Sricharanbb772a52011-11-15 09:50:00 -0500959 if (omap_rev == OMAP4430_ES2_0)
Aneesh V2ae610f2011-07-21 09:10:09 -0400960 emif_reset_phy(base);
961
962 /* Put EMIF back in smart idle on ES1.0 */
Sricharanbb772a52011-11-15 09:50:00 -0500963 if (omap_rev == OMAP4430_ES1_0)
Aneesh V2ae610f2011-07-21 09:10:09 -0400964 writel(0x80000000, &emif->emif_pwr_mgmt_ctrl);
965}
966
Sricharanbb772a52011-11-15 09:50:00 -0500967void dmm_init(u32 base)
Aneesh V2ae610f2011-07-21 09:10:09 -0400968{
969 const struct dmm_lisa_map_regs *lisa_map_regs;
970
Aneesh V095aea22011-07-21 09:10:12 -0400971#ifdef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
Aneesh V2ae610f2011-07-21 09:10:09 -0400972 emif_get_dmm_regs(&lisa_map_regs);
Aneesh V095aea22011-07-21 09:10:12 -0400973#else
974 u32 emif1_size, emif2_size, mapped_size, section_map = 0;
975 u32 section_cnt, sys_addr;
976 struct dmm_lisa_map_regs lis_map_regs_calculated = {0};
Aneesh V2ae610f2011-07-21 09:10:09 -0400977
Aneesh V095aea22011-07-21 09:10:12 -0400978 mapped_size = 0;
979 section_cnt = 3;
980 sys_addr = CONFIG_SYS_SDRAM_BASE;
981 emif1_size = emif_sizes[0];
982 emif2_size = emif_sizes[1];
983 debug("emif1_size 0x%x emif2_size 0x%x\n", emif1_size, emif2_size);
984
985 if (!emif1_size && !emif2_size)
986 return;
987
988 /* symmetric interleaved section */
989 if (emif1_size && emif2_size) {
990 mapped_size = min(emif1_size, emif2_size);
991 section_map = DMM_LISA_MAP_INTERLEAVED_BASE_VAL;
Sricharanbb772a52011-11-15 09:50:00 -0500992 section_map |= 0 << EMIF_SDRC_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400993 /* only MSB */
994 section_map |= (sys_addr >> 24) <<
Sricharanbb772a52011-11-15 09:50:00 -0500995 EMIF_SYS_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400996 section_map |= get_dmm_section_size_map(mapped_size * 2)
Sricharanbb772a52011-11-15 09:50:00 -0500997 << EMIF_SYS_SIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400998 lis_map_regs_calculated.dmm_lisa_map_3 = section_map;
999 emif1_size -= mapped_size;
1000 emif2_size -= mapped_size;
1001 sys_addr += (mapped_size * 2);
1002 section_cnt--;
1003 }
1004
1005 /*
1006 * Single EMIF section(we can have a maximum of 1 single EMIF
1007 * section- either EMIF1 or EMIF2 or none, but not both)
1008 */
1009 if (emif1_size) {
1010 section_map = DMM_LISA_MAP_EMIF1_ONLY_BASE_VAL;
1011 section_map |= get_dmm_section_size_map(emif1_size)
Sricharanbb772a52011-11-15 09:50:00 -05001012 << EMIF_SYS_SIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001013 /* only MSB */
1014 section_map |= (mapped_size >> 24) <<
Sricharanbb772a52011-11-15 09:50:00 -05001015 EMIF_SDRC_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001016 /* only MSB */
Sricharanbb772a52011-11-15 09:50:00 -05001017 section_map |= (sys_addr >> 24) << EMIF_SYS_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001018 section_cnt--;
1019 }
1020 if (emif2_size) {
1021 section_map = DMM_LISA_MAP_EMIF2_ONLY_BASE_VAL;
1022 section_map |= get_dmm_section_size_map(emif2_size) <<
Sricharanbb772a52011-11-15 09:50:00 -05001023 EMIF_SYS_SIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001024 /* only MSB */
Sricharanbb772a52011-11-15 09:50:00 -05001025 section_map |= mapped_size >> 24 << EMIF_SDRC_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001026 /* only MSB */
Sricharanbb772a52011-11-15 09:50:00 -05001027 section_map |= sys_addr >> 24 << EMIF_SYS_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001028 section_cnt--;
1029 }
1030
1031 if (section_cnt == 2) {
1032 /* Only 1 section - either symmetric or single EMIF */
1033 lis_map_regs_calculated.dmm_lisa_map_3 = section_map;
1034 lis_map_regs_calculated.dmm_lisa_map_2 = 0;
1035 lis_map_regs_calculated.dmm_lisa_map_1 = 0;
1036 } else {
1037 /* 2 sections - 1 symmetric, 1 single EMIF */
1038 lis_map_regs_calculated.dmm_lisa_map_2 = section_map;
1039 lis_map_regs_calculated.dmm_lisa_map_1 = 0;
1040 }
1041
1042 /* TRAP for invalid TILER mappings in section 0 */
1043 lis_map_regs_calculated.dmm_lisa_map_0 = DMM_LISA_MAP_0_INVAL_ADDR_TRAP;
1044
1045 lisa_map_regs = &lis_map_regs_calculated;
1046#endif
Aneesh V2ae610f2011-07-21 09:10:09 -04001047 struct dmm_lisa_map_regs *hw_lisa_map_regs =
1048 (struct dmm_lisa_map_regs *)base;
1049
1050 writel(0, &hw_lisa_map_regs->dmm_lisa_map_3);
1051 writel(0, &hw_lisa_map_regs->dmm_lisa_map_2);
1052 writel(0, &hw_lisa_map_regs->dmm_lisa_map_1);
1053 writel(0, &hw_lisa_map_regs->dmm_lisa_map_0);
1054
1055 writel(lisa_map_regs->dmm_lisa_map_3,
1056 &hw_lisa_map_regs->dmm_lisa_map_3);
1057 writel(lisa_map_regs->dmm_lisa_map_2,
1058 &hw_lisa_map_regs->dmm_lisa_map_2);
1059 writel(lisa_map_regs->dmm_lisa_map_1,
1060 &hw_lisa_map_regs->dmm_lisa_map_1);
1061 writel(lisa_map_regs->dmm_lisa_map_0,
1062 &hw_lisa_map_regs->dmm_lisa_map_0);
Aneesh V924eb362011-07-21 09:29:26 -04001063
1064 if (omap_revision() >= OMAP4460_ES1_0) {
1065 hw_lisa_map_regs =
Sricharanbb772a52011-11-15 09:50:00 -05001066 (struct dmm_lisa_map_regs *)MA_BASE;
Aneesh V924eb362011-07-21 09:29:26 -04001067
1068 writel(lisa_map_regs->dmm_lisa_map_3,
1069 &hw_lisa_map_regs->dmm_lisa_map_3);
1070 writel(lisa_map_regs->dmm_lisa_map_2,
1071 &hw_lisa_map_regs->dmm_lisa_map_2);
1072 writel(lisa_map_regs->dmm_lisa_map_1,
1073 &hw_lisa_map_regs->dmm_lisa_map_1);
1074 writel(lisa_map_regs->dmm_lisa_map_0,
1075 &hw_lisa_map_regs->dmm_lisa_map_0);
1076 }
Aneesh V2ae610f2011-07-21 09:10:09 -04001077}
1078
1079/*
1080 * SDRAM initialization:
1081 * SDRAM initialization has two parts:
1082 * 1. Configuring the SDRAM device
1083 * 2. Update the AC timings related parameters in the EMIF module
1084 * (1) should be done only once and should not be done while we are
1085 * running from SDRAM.
1086 * (2) can and should be done more than once if OPP changes.
1087 * Particularly, this may be needed when we boot without SPL and
1088 * and using Configuration Header(CH). ROM code supports only at 50% OPP
1089 * at boot (low power boot). So u-boot has to switch to OPP100 and update
1090 * the frequency. So,
1091 * Doing (1) and (2) makes sense - first time initialization
1092 * Doing (2) and not (1) makes sense - OPP change (when using CH)
1093 * Doing (1) and not (2) doen't make sense
1094 * See do_sdram_init() for the details
1095 */
1096void sdram_init(void)
1097{
1098 u32 in_sdram, size_prog, size_detect;
1099
1100 debug(">>sdram_init()\n");
1101
Sricharan508a58f2011-11-15 09:49:55 -05001102 if (omap_hw_init_context() == OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL)
Aneesh V2ae610f2011-07-21 09:10:09 -04001103 return;
1104
1105 in_sdram = running_from_sdram();
1106 debug("in_sdram = %d\n", in_sdram);
1107
Sricharance170be2011-11-15 09:49:50 -05001108 if (!in_sdram)
Aneesh V2ae610f2011-07-21 09:10:09 -04001109 bypass_dpll(&prcm->cm_clkmode_dpll_core);
Sricharance170be2011-11-15 09:49:50 -05001110
Aneesh V2ae610f2011-07-21 09:10:09 -04001111
Sricharanbb772a52011-11-15 09:50:00 -05001112 do_sdram_init(EMIF1_BASE);
1113 do_sdram_init(EMIF2_BASE);
Aneesh V2ae610f2011-07-21 09:10:09 -04001114
1115 if (!in_sdram) {
Sricharanbb772a52011-11-15 09:50:00 -05001116 dmm_init(DMM_BASE);
1117 emif_post_init_config(EMIF1_BASE);
1118 emif_post_init_config(EMIF2_BASE);
Aneesh V2ae610f2011-07-21 09:10:09 -04001119 }
1120
1121 /* for the shadow registers to take effect */
1122 freq_update_core();
1123
1124 /* Do some testing after the init */
1125 if (!in_sdram) {
Sricharan508a58f2011-11-15 09:49:55 -05001126 size_prog = omap_sdram_size();
Aneesh V2ae610f2011-07-21 09:10:09 -04001127 size_detect = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
1128 size_prog);
1129 /* Compare with the size programmed */
1130 if (size_detect != size_prog) {
1131 printf("SDRAM: identified size not same as expected"
1132 " size identified: %x expected: %x\n",
1133 size_detect,
1134 size_prog);
1135 } else
1136 debug("get_ram_size() successful");
1137 }
1138
1139 debug("<<sdram_init()\n");
1140}