blob: 36738847b12c095630c61770d9b1da6a5997ad30 [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 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Aneesh V2ae610f2011-07-21 09:10:09 -040010 */
11
12#include <common.h>
Sricharanbb772a52011-11-15 09:50:00 -050013#include <asm/emif.h>
Lokesh Vutlaaf1d0022013-05-30 02:54:32 +000014#include <asm/arch/clock.h>
Aneesh V2ae610f2011-07-21 09:10:09 -040015#include <asm/arch/sys_proto.h>
16#include <asm/omap_common.h>
17#include <asm/utils.h>
SRICHARAN R25476382012-06-04 03:40:23 +000018#include <linux/compiler.h>
Aneesh V2ae610f2011-07-21 09:10:09 -040019
Lokesh Vutla86021142012-11-15 21:06:33 +000020static int emif1_enabled = -1, emif2_enabled = -1;
21
Lokesh Vutla38f25b12012-05-29 19:26:43 +000022void set_lpmode_selfrefresh(u32 base)
23{
24 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
25 u32 reg;
26
27 reg = readl(&emif->emif_pwr_mgmt_ctrl);
28 reg &= ~EMIF_REG_LP_MODE_MASK;
29 reg |= LP_MODE_SELF_REFRESH << EMIF_REG_LP_MODE_SHIFT;
30 reg &= ~EMIF_REG_SR_TIM_MASK;
31 writel(reg, &emif->emif_pwr_mgmt_ctrl);
32
33 /* dummy read for the new SR_TIM to be loaded */
34 readl(&emif->emif_pwr_mgmt_ctrl);
35}
36
37void force_emif_self_refresh()
38{
39 set_lpmode_selfrefresh(EMIF1_BASE);
40 set_lpmode_selfrefresh(EMIF2_BASE);
41}
42
Sricharanbb772a52011-11-15 09:50:00 -050043inline u32 emif_num(u32 base)
Aneesh V2ae610f2011-07-21 09:10:09 -040044{
Sricharanbb772a52011-11-15 09:50:00 -050045 if (base == EMIF1_BASE)
Aneesh V2ae610f2011-07-21 09:10:09 -040046 return 1;
Sricharanbb772a52011-11-15 09:50:00 -050047 else if (base == EMIF2_BASE)
Aneesh V2ae610f2011-07-21 09:10:09 -040048 return 2;
49 else
50 return 0;
51}
52
53static inline u32 get_mr(u32 base, u32 cs, u32 mr_addr)
54{
55 u32 mr;
56 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
57
Sricharanbb772a52011-11-15 09:50:00 -050058 mr_addr |= cs << EMIF_REG_CS_SHIFT;
Aneesh V2ae610f2011-07-21 09:10:09 -040059 writel(mr_addr, &emif->emif_lpddr2_mode_reg_cfg);
60 if (omap_revision() == OMAP4430_ES2_0)
61 mr = readl(&emif->emif_lpddr2_mode_reg_data_es2);
62 else
63 mr = readl(&emif->emif_lpddr2_mode_reg_data);
64 debug("get_mr: EMIF%d cs %d mr %08x val 0x%x\n", emif_num(base),
65 cs, mr_addr, mr);
Steve Sakoman55c12842012-05-30 07:38:07 +000066 if (((mr & 0x0000ff00) >> 8) == (mr & 0xff) &&
67 ((mr & 0x00ff0000) >> 16) == (mr & 0xff) &&
68 ((mr & 0xff000000) >> 24) == (mr & 0xff))
69 return mr & 0xff;
70 else
71 return mr;
Aneesh V2ae610f2011-07-21 09:10:09 -040072}
73
74static inline void set_mr(u32 base, u32 cs, u32 mr_addr, u32 mr_val)
75{
76 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
77
Sricharanbb772a52011-11-15 09:50:00 -050078 mr_addr |= cs << EMIF_REG_CS_SHIFT;
Aneesh V2ae610f2011-07-21 09:10:09 -040079 writel(mr_addr, &emif->emif_lpddr2_mode_reg_cfg);
80 writel(mr_val, &emif->emif_lpddr2_mode_reg_data);
81}
82
83void emif_reset_phy(u32 base)
84{
85 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
86 u32 iodft;
87
88 iodft = readl(&emif->emif_iodft_tlgc);
Sricharanbb772a52011-11-15 09:50:00 -050089 iodft |= EMIF_REG_RESET_PHY_MASK;
Aneesh V2ae610f2011-07-21 09:10:09 -040090 writel(iodft, &emif->emif_iodft_tlgc);
91}
92
93static void do_lpddr2_init(u32 base, u32 cs)
94{
95 u32 mr_addr;
Lokesh Vutlae05a4f12013-02-04 04:22:03 +000096 const struct lpddr2_mr_regs *mr_regs;
Aneesh V2ae610f2011-07-21 09:10:09 -040097
Lokesh Vutlae05a4f12013-02-04 04:22:03 +000098 get_lpddr2_mr_regs(&mr_regs);
Aneesh V2ae610f2011-07-21 09:10:09 -040099 /* Wait till device auto initialization is complete */
100 while (get_mr(base, cs, LPDDR2_MR0) & LPDDR2_MR0_DAI_MASK)
101 ;
Lokesh Vutlae05a4f12013-02-04 04:22:03 +0000102 set_mr(base, cs, LPDDR2_MR10, mr_regs->mr10);
Aneesh V2ae610f2011-07-21 09:10:09 -0400103 /*
104 * tZQINIT = 1 us
105 * Enough loops assuming a maximum of 2GHz
106 */
SRICHARAN Rf4010732012-03-12 02:25:37 +0000107
Aneesh V2ae610f2011-07-21 09:10:09 -0400108 sdelay(2000);
SRICHARAN Rf4010732012-03-12 02:25:37 +0000109
Lokesh Vutlae05a4f12013-02-04 04:22:03 +0000110 set_mr(base, cs, LPDDR2_MR1, mr_regs->mr1);
111 set_mr(base, cs, LPDDR2_MR16, mr_regs->mr16);
SRICHARAN Rf4010732012-03-12 02:25:37 +0000112
Aneesh V2ae610f2011-07-21 09:10:09 -0400113 /*
114 * Enable refresh along with writing MR2
115 * Encoding of RL in MR2 is (RL - 2)
116 */
Sricharanbb772a52011-11-15 09:50:00 -0500117 mr_addr = LPDDR2_MR2 | EMIF_REG_REFRESH_EN_MASK;
Lokesh Vutlae05a4f12013-02-04 04:22:03 +0000118 set_mr(base, cs, mr_addr, mr_regs->mr2);
SRICHARAN Rf4010732012-03-12 02:25:37 +0000119
Lokesh Vutlae05a4f12013-02-04 04:22:03 +0000120 if (mr_regs->mr3 > 0)
121 set_mr(base, cs, LPDDR2_MR3, mr_regs->mr3);
Aneesh V2ae610f2011-07-21 09:10:09 -0400122}
123
124static void lpddr2_init(u32 base, const struct emif_regs *regs)
125{
126 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
127
128 /* Not NVM */
Sricharanbb772a52011-11-15 09:50:00 -0500129 clrbits_le32(&emif->emif_lpddr2_nvm_config, EMIF_REG_CS1NVMEN_MASK);
Aneesh V2ae610f2011-07-21 09:10:09 -0400130
131 /*
132 * Keep REG_INITREF_DIS = 1 to prevent re-initialization of SDRAM
133 * when EMIF_SDRAM_CONFIG register is written
134 */
Sricharanbb772a52011-11-15 09:50:00 -0500135 setbits_le32(&emif->emif_sdram_ref_ctrl, EMIF_REG_INITREF_DIS_MASK);
Aneesh V2ae610f2011-07-21 09:10:09 -0400136
137 /*
138 * Set the SDRAM_CONFIG and PHY_CTRL for the
139 * un-locked frequency & default RL
140 */
141 writel(regs->sdram_config_init, &emif->emif_sdram_config);
Taras Kondratiuk0474fb02013-08-06 16:16:50 +0300142 writel(regs->emif_ddr_phy_ctlr_1_init, &emif->emif_ddr_phy_ctrl_1);
SRICHARAN Rf4010732012-03-12 02:25:37 +0000143
SRICHARAN R25476382012-06-04 03:40:23 +0000144 do_ext_phy_settings(base, regs);
Aneesh V2ae610f2011-07-21 09:10:09 -0400145
146 do_lpddr2_init(base, CS0);
Sricharanbb772a52011-11-15 09:50:00 -0500147 if (regs->sdram_config & EMIF_REG_EBANK_MASK)
Aneesh V2ae610f2011-07-21 09:10:09 -0400148 do_lpddr2_init(base, CS1);
149
150 writel(regs->sdram_config, &emif->emif_sdram_config);
151 writel(regs->emif_ddr_phy_ctlr_1, &emif->emif_ddr_phy_ctrl_1);
152
153 /* Enable refresh now */
Sricharanbb772a52011-11-15 09:50:00 -0500154 clrbits_le32(&emif->emif_sdram_ref_ctrl, EMIF_REG_INITREF_DIS_MASK);
Aneesh V2ae610f2011-07-21 09:10:09 -0400155
SRICHARAN R25476382012-06-04 03:40:23 +0000156 }
157
158__weak void do_ext_phy_settings(u32 base, const struct emif_regs *regs)
159{
Aneesh V2ae610f2011-07-21 09:10:09 -0400160}
161
Sricharanbb772a52011-11-15 09:50:00 -0500162void emif_update_timings(u32 base, const struct emif_regs *regs)
Aneesh V2ae610f2011-07-21 09:10:09 -0400163{
164 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
165
Lokesh Vutlade095472016-03-05 17:32:28 +0530166 if (!is_dra7xx())
167 writel(regs->ref_ctrl, &emif->emif_sdram_ref_ctrl_shdw);
168 else
169 writel(regs->ref_ctrl_final, &emif->emif_sdram_ref_ctrl_shdw);
170
Aneesh V2ae610f2011-07-21 09:10:09 -0400171 writel(regs->sdram_tim1, &emif->emif_sdram_tim_1_shdw);
172 writel(regs->sdram_tim2, &emif->emif_sdram_tim_2_shdw);
173 writel(regs->sdram_tim3, &emif->emif_sdram_tim_3_shdw);
174 if (omap_revision() == OMAP4430_ES1_0) {
175 /* ES1 bug EMIF should be in force idle during freq_update */
176 writel(0, &emif->emif_pwr_mgmt_ctrl);
177 } else {
178 writel(EMIF_PWR_MGMT_CTRL, &emif->emif_pwr_mgmt_ctrl);
179 writel(EMIF_PWR_MGMT_CTRL_SHDW, &emif->emif_pwr_mgmt_ctrl_shdw);
180 }
181 writel(regs->read_idle_ctrl, &emif->emif_read_idlectrl_shdw);
182 writel(regs->zq_config, &emif->emif_zq_config);
183 writel(regs->temp_alert_config, &emif->emif_temp_alert_config);
184 writel(regs->emif_ddr_phy_ctlr_1, &emif->emif_ddr_phy_ctrl_1_shdw);
Aneesh V924eb362011-07-21 09:29:26 -0400185
Nishanth Menon3ac8c0b2014-01-14 10:54:42 -0600186 if ((omap_revision() >= OMAP5430_ES1_0) || is_dra7xx()) {
Sricharanbb772a52011-11-15 09:50:00 -0500187 writel(EMIF_L3_CONFIG_VAL_SYS_10_MPU_5_LL_0,
188 &emif->emif_l3_config);
189 } else if (omap_revision() >= OMAP4460_ES1_0) {
Aneesh V924eb362011-07-21 09:29:26 -0400190 writel(EMIF_L3_CONFIG_VAL_SYS_10_MPU_3_LL_0,
191 &emif->emif_l3_config);
192 } else {
193 writel(EMIF_L3_CONFIG_VAL_SYS_10_LL_0,
194 &emif->emif_l3_config);
Aneesh V2ae610f2011-07-21 09:10:09 -0400195 }
196}
197
SRICHARAN R6c709352013-11-08 17:40:37 +0530198static void omap5_ddr3_leveling(u32 base, const struct emif_regs *regs)
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000199{
200 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
201
202 /* keep sdram in self-refresh */
203 writel(((LP_MODE_SELF_REFRESH << EMIF_REG_LP_MODE_SHIFT)
204 & EMIF_REG_LP_MODE_MASK), &emif->emif_pwr_mgmt_ctrl);
205 __udelay(130);
206
207 /*
208 * Set invert_clkout (if activated)--DDR_PHYCTRL_1
SRICHARAN R6c709352013-11-08 17:40:37 +0530209 * Invert clock adds an additional half cycle delay on the
210 * command interface. The additional half cycle, is usually
211 * meant to enable leveling in the situation that DQS is later
212 * than CK on the board.It also helps provide some additional
213 * margin for leveling.
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000214 */
SRICHARAN R6c709352013-11-08 17:40:37 +0530215 writel(regs->emif_ddr_phy_ctlr_1,
216 &emif->emif_ddr_phy_ctrl_1);
217
218 writel(regs->emif_ddr_phy_ctlr_1,
219 &emif->emif_ddr_phy_ctrl_1_shdw);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000220 __udelay(130);
221
222 writel(((LP_MODE_DISABLE << EMIF_REG_LP_MODE_SHIFT)
SRICHARAN R6c709352013-11-08 17:40:37 +0530223 & EMIF_REG_LP_MODE_MASK), &emif->emif_pwr_mgmt_ctrl);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000224
225 /* Launch Full leveling */
226 writel(DDR3_FULL_LVL, &emif->emif_rd_wr_lvl_ctl);
227
228 /* Wait till full leveling is complete */
229 readl(&emif->emif_rd_wr_lvl_ctl);
SRICHARAN R6c709352013-11-08 17:40:37 +0530230 __udelay(130);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000231
232 /* Read data eye leveling no of samples */
233 config_data_eye_leveling_samples(base);
234
SRICHARAN R6c709352013-11-08 17:40:37 +0530235 /*
236 * Launch 8 incremental WR_LVL- to compensate for
237 * PHY limitation.
238 */
239 writel(0x2 << EMIF_REG_WRLVLINC_INT_SHIFT,
240 &emif->emif_rd_wr_lvl_ctl);
241
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000242 __udelay(130);
243
244 /* Launch Incremental leveling */
245 writel(DDR3_INC_LVL, &emif->emif_rd_wr_lvl_ctl);
SRICHARAN R6c709352013-11-08 17:40:37 +0530246 __udelay(130);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000247}
248
Lokesh Vutla6213db72015-06-03 14:43:21 +0530249static void update_hwleveling_output(u32 base, const struct emif_regs *regs)
SRICHARAN R6c709352013-11-08 17:40:37 +0530250{
Lokesh Vutla6213db72015-06-03 14:43:21 +0530251 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
252 u32 *emif_ext_phy_ctrl_reg, *emif_phy_status;
Lokesh Vutlae3ce3aa2016-03-05 17:32:30 +0530253 u32 reg, i, phy;
Lokesh Vutla6213db72015-06-03 14:43:21 +0530254
255 emif_phy_status = (u32 *)&emif->emif_ddr_phy_status[7];
Lokesh Vutlae3ce3aa2016-03-05 17:32:30 +0530256 phy = readl(&emif->emif_ddr_phy_ctrl_1);
Lokesh Vutla6213db72015-06-03 14:43:21 +0530257
258 /* Update PHY_REG_RDDQS_RATIO */
259 emif_ext_phy_ctrl_reg = (u32 *)&emif->emif_ddr_ext_phy_ctrl_7;
Lokesh Vutlae3ce3aa2016-03-05 17:32:30 +0530260 if (!(phy & EMIF_DDR_PHY_CTRL_1_RDLVL_MASK_MASK))
261 for (i = 0; i < PHY_RDDQS_RATIO_REGS; i++) {
262 reg = readl(emif_phy_status++);
263 writel(reg, emif_ext_phy_ctrl_reg++);
264 writel(reg, emif_ext_phy_ctrl_reg++);
265 }
Lokesh Vutla6213db72015-06-03 14:43:21 +0530266
267 /* Update PHY_REG_FIFO_WE_SLAVE_RATIO */
268 emif_ext_phy_ctrl_reg = (u32 *)&emif->emif_ddr_ext_phy_ctrl_2;
Lokesh Vutlae3ce3aa2016-03-05 17:32:30 +0530269 emif_phy_status = (u32 *)&emif->emif_ddr_phy_status[12];
270 if (!(phy & EMIF_DDR_PHY_CTRL_1_RDLVLGATE_MASK_MASK))
271 for (i = 0; i < PHY_FIFO_WE_SLAVE_RATIO_REGS; i++) {
272 reg = readl(emif_phy_status++);
273 writel(reg, emif_ext_phy_ctrl_reg++);
274 writel(reg, emif_ext_phy_ctrl_reg++);
275 }
Lokesh Vutla6213db72015-06-03 14:43:21 +0530276
277 /* Update PHY_REG_WR_DQ/DQS_SLAVE_RATIO */
278 emif_ext_phy_ctrl_reg = (u32 *)&emif->emif_ddr_ext_phy_ctrl_12;
Lokesh Vutlae3ce3aa2016-03-05 17:32:30 +0530279 emif_phy_status = (u32 *)&emif->emif_ddr_phy_status[17];
280 if (!(phy & EMIF_DDR_PHY_CTRL_1_WRLVL_MASK_MASK))
281 for (i = 0; i < PHY_REG_WR_DQ_SLAVE_RATIO_REGS; i++) {
282 reg = readl(emif_phy_status++);
283 writel(reg, emif_ext_phy_ctrl_reg++);
284 writel(reg, emif_ext_phy_ctrl_reg++);
285 }
Lokesh Vutla6213db72015-06-03 14:43:21 +0530286
287 /* Disable Leveling */
288 writel(regs->emif_ddr_phy_ctlr_1, &emif->emif_ddr_phy_ctrl_1);
289 writel(regs->emif_ddr_phy_ctlr_1, &emif->emif_ddr_phy_ctrl_1_shdw);
290 writel(0x0, &emif->emif_rd_wr_lvl_rmp_ctl);
Sricharan R92b04822013-05-30 03:19:39 +0000291}
292
Lokesh Vutla6213db72015-06-03 14:43:21 +0530293static void dra7_ddr3_leveling(u32 base, const struct emif_regs *regs)
294{
295 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
296
297 /* Clear Error Status */
298 clrsetbits_le32(&emif->emif_ddr_ext_phy_ctrl_36,
299 EMIF_REG_PHY_FIFO_WE_IN_MISALINED_CLR,
300 EMIF_REG_PHY_FIFO_WE_IN_MISALINED_CLR);
301
302 clrsetbits_le32(&emif->emif_ddr_ext_phy_ctrl_36_shdw,
303 EMIF_REG_PHY_FIFO_WE_IN_MISALINED_CLR,
304 EMIF_REG_PHY_FIFO_WE_IN_MISALINED_CLR);
305
306 /* Disable refreshed before leveling */
Lokesh Vutlad6927a52015-08-28 12:28:25 +0530307 clrsetbits_le32(&emif->emif_sdram_ref_ctrl, EMIF_REG_INITREF_DIS_MASK,
308 EMIF_REG_INITREF_DIS_MASK);
Lokesh Vutla6213db72015-06-03 14:43:21 +0530309
310 /* Start Full leveling */
311 writel(DDR3_FULL_LVL, &emif->emif_rd_wr_lvl_ctl);
312
313 __udelay(300);
314
315 /* Check for leveling timeout */
316 if (readl(&emif->emif_status) & EMIF_REG_LEVELING_TO_MASK) {
317 printf("Leveling timeout on EMIF%d\n", emif_num(base));
318 return;
319 }
320
321 /* Enable refreshes after leveling */
Lokesh Vutlad6927a52015-08-28 12:28:25 +0530322 clrbits_le32(&emif->emif_sdram_ref_ctrl, EMIF_REG_INITREF_DIS_MASK);
Lokesh Vutla6213db72015-06-03 14:43:21 +0530323
324 debug("HW leveling success\n");
325 /*
326 * Update slave ratios in EXT_PHY_CTRLx registers
327 * as per HW leveling output
328 */
329 update_hwleveling_output(base, regs);
330}
331
332static void dra7_ddr3_init(u32 base, const struct emif_regs *regs)
333{
334 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
335
Lokesh Vutla4571c512016-03-05 17:32:29 +0530336 if (warm_reset()) {
Lokesh Vutla6213db72015-06-03 14:43:21 +0530337 emif_reset_phy(base);
Lokesh Vutla4571c512016-03-05 17:32:29 +0530338 writel(0x0, &emif->emif_pwr_mgmt_ctrl);
339 }
Lokesh Vutla6213db72015-06-03 14:43:21 +0530340 do_ext_phy_settings(base, regs);
341
342 writel(regs->ref_ctrl | EMIF_REG_INITREF_DIS_MASK,
343 &emif->emif_sdram_ref_ctrl);
344 /* Update timing registers */
345 writel(regs->sdram_tim1, &emif->emif_sdram_tim_1);
346 writel(regs->sdram_tim2, &emif->emif_sdram_tim_2);
347 writel(regs->sdram_tim3, &emif->emif_sdram_tim_3);
348
349 writel(EMIF_L3_CONFIG_VAL_SYS_10_MPU_5_LL_0, &emif->emif_l3_config);
350 writel(regs->read_idle_ctrl, &emif->emif_read_idlectrl);
351 writel(regs->zq_config, &emif->emif_zq_config);
352 writel(regs->temp_alert_config, &emif->emif_temp_alert_config);
353 writel(regs->emif_rd_wr_lvl_rmp_ctl, &emif->emif_rd_wr_lvl_rmp_ctl);
354 writel(regs->emif_rd_wr_lvl_ctl, &emif->emif_rd_wr_lvl_ctl);
355
356 writel(regs->emif_ddr_phy_ctlr_1_init, &emif->emif_ddr_phy_ctrl_1);
357 writel(regs->emif_rd_wr_exec_thresh, &emif->emif_rd_wr_exec_thresh);
358
359 writel(regs->ref_ctrl, &emif->emif_sdram_ref_ctrl);
360
361 writel(regs->sdram_config2, &emif->emif_lpddr2_nvm_config);
362 writel(regs->sdram_config_init, &emif->emif_sdram_config);
363
364 __udelay(1000);
365
366 writel(regs->ref_ctrl_final, &emif->emif_sdram_ref_ctrl);
367
368 if (regs->emif_rd_wr_lvl_rmp_ctl & EMIF_REG_RDWRLVL_EN_MASK)
369 dra7_ddr3_leveling(base, regs);
370}
371
372static void omap5_ddr3_init(u32 base, const struct emif_regs *regs)
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000373{
374 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000375
Lokesh Vutla802bb572015-02-16 10:15:56 +0530376 writel(regs->ref_ctrl, &emif->emif_sdram_ref_ctrl);
377 writel(regs->sdram_config_init, &emif->emif_sdram_config);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000378 /*
379 * Set SDRAM_CONFIG and PHY control registers to locked frequency
380 * and RL =7. As the default values of the Mode Registers are not
381 * defined, contents of mode Registers must be fully initialized.
382 * H/W takes care of this initialization
383 */
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000384 writel(regs->emif_ddr_phy_ctlr_1_init, &emif->emif_ddr_phy_ctrl_1);
385
386 /* Update timing registers */
387 writel(regs->sdram_tim1, &emif->emif_sdram_tim_1);
388 writel(regs->sdram_tim2, &emif->emif_sdram_tim_2);
389 writel(regs->sdram_tim3, &emif->emif_sdram_tim_3);
390
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000391 writel(regs->read_idle_ctrl, &emif->emif_read_idlectrl);
392
Lokesh Vutla6213db72015-06-03 14:43:21 +0530393 writel(regs->sdram_config2, &emif->emif_lpddr2_nvm_config);
394 writel(regs->sdram_config_init, &emif->emif_sdram_config);
395 do_ext_phy_settings(base, regs);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000396
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000397 writel(regs->emif_rd_wr_lvl_rmp_ctl, &emif->emif_rd_wr_lvl_rmp_ctl);
Lokesh Vutla6213db72015-06-03 14:43:21 +0530398 omap5_ddr3_leveling(base, regs);
399}
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000400
Lokesh Vutla6213db72015-06-03 14:43:21 +0530401static void ddr3_init(u32 base, const struct emif_regs *regs)
402{
403 if (is_omap54xx())
404 omap5_ddr3_init(base, regs);
405 else
406 dra7_ddr3_init(base, regs);
Lokesh Vutla784ab7c2012-05-22 00:03:25 +0000407}
408
Aneesh V095aea22011-07-21 09:10:12 -0400409#ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
410#define print_timing_reg(reg) debug(#reg" - 0x%08x\n", (reg))
411
Aneesh V095aea22011-07-21 09:10:12 -0400412/*
413 * Organization and refresh requirements for LPDDR2 devices of different
414 * types and densities. Derived from JESD209-2 section 2.4
415 */
416const struct lpddr2_addressing addressing_table[] = {
417 /* Banks tREFIx10 rowx32,rowx16 colx32,colx16 density */
418 {BANKS4, T_REFI_15_6, {ROW_12, ROW_12}, {COL_7, COL_8} },/*64M */
419 {BANKS4, T_REFI_15_6, {ROW_12, ROW_12}, {COL_8, COL_9} },/*128M */
420 {BANKS4, T_REFI_7_8, {ROW_13, ROW_13}, {COL_8, COL_9} },/*256M */
421 {BANKS4, T_REFI_7_8, {ROW_13, ROW_13}, {COL_9, COL_10} },/*512M */
422 {BANKS8, T_REFI_7_8, {ROW_13, ROW_13}, {COL_9, COL_10} },/*1GS4 */
423 {BANKS8, T_REFI_3_9, {ROW_14, ROW_14}, {COL_9, COL_10} },/*2GS4 */
424 {BANKS8, T_REFI_3_9, {ROW_14, ROW_14}, {COL_10, COL_11} },/*4G */
425 {BANKS8, T_REFI_3_9, {ROW_15, ROW_15}, {COL_10, COL_11} },/*8G */
426 {BANKS4, T_REFI_7_8, {ROW_14, ROW_14}, {COL_9, COL_10} },/*1GS2 */
427 {BANKS4, T_REFI_3_9, {ROW_15, ROW_15}, {COL_9, COL_10} },/*2GS2 */
428};
429
430static const u32 lpddr2_density_2_size_in_mbytes[] = {
431 8, /* 64Mb */
432 16, /* 128Mb */
433 32, /* 256Mb */
434 64, /* 512Mb */
435 128, /* 1Gb */
436 256, /* 2Gb */
437 512, /* 4Gb */
438 1024, /* 8Gb */
439 2048, /* 16Gb */
440 4096 /* 32Gb */
441};
442
443/*
444 * Calculate the period of DDR clock from frequency value and set the
445 * denominator and numerator in global variables for easy access later
446 */
447static void set_ddr_clk_period(u32 freq)
448{
449 /*
450 * period = 1/freq
451 * period_in_ns = 10^9/freq
452 */
453 *T_num = 1000000000;
454 *T_den = freq;
455 cancel_out(T_num, T_den, 200);
456
457}
458
459/*
460 * Convert time in nano seconds to number of cycles of DDR clock
461 */
462static inline u32 ns_2_cycles(u32 ns)
463{
464 return ((ns * (*T_den)) + (*T_num) - 1) / (*T_num);
465}
466
467/*
468 * ns_2_cycles with the difference that the time passed is 2 times the actual
469 * value(to avoid fractions). The cycles returned is for the original value of
470 * the timing parameter
471 */
472static inline u32 ns_x2_2_cycles(u32 ns)
473{
474 return ((ns * (*T_den)) + (*T_num) * 2 - 1) / ((*T_num) * 2);
475}
476
477/*
478 * Find addressing table index based on the device's type(S2 or S4) and
479 * density
480 */
481s8 addressing_table_index(u8 type, u8 density, u8 width)
482{
483 u8 index;
484 if ((density > LPDDR2_DENSITY_8Gb) || (width == LPDDR2_IO_WIDTH_8))
485 return -1;
486
487 /*
488 * Look at the way ADDR_TABLE_INDEX* values have been defined
489 * in emif.h compared to LPDDR2_DENSITY_* values
490 * The table is layed out in the increasing order of density
491 * (ignoring type). The exceptions 1GS2 and 2GS2 have been placed
492 * at the end
493 */
494 if ((type == LPDDR2_TYPE_S2) && (density == LPDDR2_DENSITY_1Gb))
495 index = ADDR_TABLE_INDEX1GS2;
496 else if ((type == LPDDR2_TYPE_S2) && (density == LPDDR2_DENSITY_2Gb))
497 index = ADDR_TABLE_INDEX2GS2;
498 else
499 index = density;
500
501 debug("emif: addressing table index %d\n", index);
502
503 return index;
504}
505
506/*
507 * Find the the right timing table from the array of timing
508 * tables of the device using DDR clock frequency
509 */
510static const struct lpddr2_ac_timings *get_timings_table(const struct
511 lpddr2_ac_timings const *const *device_timings,
512 u32 freq)
513{
514 u32 i, temp, freq_nearest;
515 const struct lpddr2_ac_timings *timings = 0;
516
517 emif_assert(freq <= MAX_LPDDR2_FREQ);
518 emif_assert(device_timings);
519
520 /*
521 * Start with the maximum allowed frequency - that is always safe
522 */
523 freq_nearest = MAX_LPDDR2_FREQ;
524 /*
525 * Find the timings table that has the max frequency value:
526 * i. Above or equal to the DDR frequency - safe
527 * ii. The lowest that satisfies condition (i) - optimal
528 */
529 for (i = 0; (i < MAX_NUM_SPEEDBINS) && device_timings[i]; i++) {
530 temp = device_timings[i]->max_freq;
531 if ((temp >= freq) && (temp <= freq_nearest)) {
532 freq_nearest = temp;
533 timings = device_timings[i];
534 }
535 }
536 debug("emif: timings table: %d\n", freq_nearest);
537 return timings;
538}
539
540/*
541 * Finds the value of emif_sdram_config_reg
542 * All parameters are programmed based on the device on CS0.
543 * If there is a device on CS1, it will be same as that on CS0 or
544 * it will be NVM. We don't support NVM yet.
545 * If cs1_device pointer is NULL it is assumed that there is no device
546 * on CS1
547 */
548static u32 get_sdram_config_reg(const struct lpddr2_device_details *cs0_device,
549 const struct lpddr2_device_details *cs1_device,
550 const struct lpddr2_addressing *addressing,
551 u8 RL)
552{
553 u32 config_reg = 0;
554
Sricharanbb772a52011-11-15 09:50:00 -0500555 config_reg |= (cs0_device->type + 4) << EMIF_REG_SDRAM_TYPE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400556 config_reg |= EMIF_INTERLEAVING_POLICY_MAX_INTERLEAVING <<
Sricharanbb772a52011-11-15 09:50:00 -0500557 EMIF_REG_IBANK_POS_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400558
Sricharanbb772a52011-11-15 09:50:00 -0500559 config_reg |= cs0_device->io_width << EMIF_REG_NARROW_MODE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400560
Sricharanbb772a52011-11-15 09:50:00 -0500561 config_reg |= RL << EMIF_REG_CL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400562
563 config_reg |= addressing->row_sz[cs0_device->io_width] <<
Sricharanbb772a52011-11-15 09:50:00 -0500564 EMIF_REG_ROWSIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400565
Sricharanbb772a52011-11-15 09:50:00 -0500566 config_reg |= addressing->num_banks << EMIF_REG_IBANK_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400567
568 config_reg |= (cs1_device ? EBANK_CS1_EN : EBANK_CS1_DIS) <<
Sricharanbb772a52011-11-15 09:50:00 -0500569 EMIF_REG_EBANK_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400570
571 config_reg |= addressing->col_sz[cs0_device->io_width] <<
Sricharanbb772a52011-11-15 09:50:00 -0500572 EMIF_REG_PAGESIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400573
574 return config_reg;
575}
576
577static u32 get_sdram_ref_ctrl(u32 freq,
578 const struct lpddr2_addressing *addressing)
579{
580 u32 ref_ctrl = 0, val = 0, freq_khz;
581 freq_khz = freq / 1000;
582 /*
583 * refresh rate to be set is 'tREFI * freq in MHz
584 * division by 10000 to account for khz and x10 in t_REFI_us_x10
585 */
586 val = addressing->t_REFI_us_x10 * freq_khz / 10000;
Sricharanbb772a52011-11-15 09:50:00 -0500587 ref_ctrl |= val << EMIF_REG_REFRESH_RATE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400588
589 return ref_ctrl;
590}
591
592static u32 get_sdram_tim_1_reg(const struct lpddr2_ac_timings *timings,
593 const struct lpddr2_min_tck *min_tck,
594 const struct lpddr2_addressing *addressing)
595{
596 u32 tim1 = 0, val = 0;
597 val = max(min_tck->tWTR, ns_x2_2_cycles(timings->tWTRx2)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500598 tim1 |= val << EMIF_REG_T_WTR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400599
600 if (addressing->num_banks == BANKS8)
601 val = (timings->tFAW * (*T_den) + 4 * (*T_num) - 1) /
602 (4 * (*T_num)) - 1;
603 else
604 val = max(min_tck->tRRD, ns_2_cycles(timings->tRRD)) - 1;
605
Sricharanbb772a52011-11-15 09:50:00 -0500606 tim1 |= val << EMIF_REG_T_RRD_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400607
608 val = ns_2_cycles(timings->tRASmin + timings->tRPab) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500609 tim1 |= val << EMIF_REG_T_RC_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400610
611 val = max(min_tck->tRAS_MIN, ns_2_cycles(timings->tRASmin)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500612 tim1 |= val << EMIF_REG_T_RAS_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400613
614 val = max(min_tck->tWR, ns_2_cycles(timings->tWR)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500615 tim1 |= val << EMIF_REG_T_WR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400616
617 val = max(min_tck->tRCD, ns_2_cycles(timings->tRCD)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500618 tim1 |= val << EMIF_REG_T_RCD_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400619
620 val = max(min_tck->tRP_AB, ns_2_cycles(timings->tRPab)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500621 tim1 |= val << EMIF_REG_T_RP_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400622
623 return tim1;
624}
625
626static u32 get_sdram_tim_2_reg(const struct lpddr2_ac_timings *timings,
627 const struct lpddr2_min_tck *min_tck)
628{
629 u32 tim2 = 0, val = 0;
630 val = max(min_tck->tCKE, timings->tCKE) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500631 tim2 |= val << EMIF_REG_T_CKE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400632
633 val = max(min_tck->tRTP, ns_x2_2_cycles(timings->tRTPx2)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500634 tim2 |= val << EMIF_REG_T_RTP_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400635
636 /*
637 * tXSRD = tRFCab + 10 ns. XSRD and XSNR should have the
638 * same value
639 */
640 val = ns_2_cycles(timings->tXSR) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500641 tim2 |= val << EMIF_REG_T_XSRD_SHIFT;
642 tim2 |= val << EMIF_REG_T_XSNR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400643
644 val = max(min_tck->tXP, ns_x2_2_cycles(timings->tXPx2)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500645 tim2 |= val << EMIF_REG_T_XP_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400646
647 return tim2;
648}
649
650static u32 get_sdram_tim_3_reg(const struct lpddr2_ac_timings *timings,
651 const struct lpddr2_min_tck *min_tck,
652 const struct lpddr2_addressing *addressing)
653{
654 u32 tim3 = 0, val = 0;
655 val = min(timings->tRASmax * 10 / addressing->t_REFI_us_x10 - 1, 0xF);
Sricharanbb772a52011-11-15 09:50:00 -0500656 tim3 |= val << EMIF_REG_T_RAS_MAX_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400657
658 val = ns_2_cycles(timings->tRFCab) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500659 tim3 |= val << EMIF_REG_T_RFC_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400660
661 val = ns_x2_2_cycles(timings->tDQSCKMAXx2) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500662 tim3 |= val << EMIF_REG_T_TDQSCKMAX_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400663
664 val = ns_2_cycles(timings->tZQCS) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500665 tim3 |= val << EMIF_REG_ZQ_ZQCS_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400666
667 val = max(min_tck->tCKESR, ns_2_cycles(timings->tCKESR)) - 1;
Sricharanbb772a52011-11-15 09:50:00 -0500668 tim3 |= val << EMIF_REG_T_CKESR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400669
670 return tim3;
671}
672
673static u32 get_zq_config_reg(const struct lpddr2_device_details *cs1_device,
674 const struct lpddr2_addressing *addressing,
675 u8 volt_ramp)
676{
677 u32 zq = 0, val = 0;
678 if (volt_ramp)
679 val =
680 EMIF_ZQCS_INTERVAL_DVFS_IN_US * 10 /
681 addressing->t_REFI_us_x10;
682 else
683 val =
684 EMIF_ZQCS_INTERVAL_NORMAL_IN_US * 10 /
685 addressing->t_REFI_us_x10;
Sricharanbb772a52011-11-15 09:50:00 -0500686 zq |= val << EMIF_REG_ZQ_REFINTERVAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400687
Sricharanbb772a52011-11-15 09:50:00 -0500688 zq |= (REG_ZQ_ZQCL_MULT - 1) << EMIF_REG_ZQ_ZQCL_MULT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400689
Sricharanbb772a52011-11-15 09:50:00 -0500690 zq |= (REG_ZQ_ZQINIT_MULT - 1) << EMIF_REG_ZQ_ZQINIT_MULT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400691
Sricharanbb772a52011-11-15 09:50:00 -0500692 zq |= REG_ZQ_SFEXITEN_ENABLE << EMIF_REG_ZQ_SFEXITEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400693
694 /*
695 * Assuming that two chipselects have a single calibration resistor
696 * If there are indeed two calibration resistors, then this flag should
697 * be enabled to take advantage of dual calibration feature.
698 * This data should ideally come from board files. But considering
699 * that none of the boards today have calibration resistors per CS,
700 * it would be an unnecessary overhead.
701 */
Sricharanbb772a52011-11-15 09:50:00 -0500702 zq |= REG_ZQ_DUALCALEN_DISABLE << EMIF_REG_ZQ_DUALCALEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400703
Sricharanbb772a52011-11-15 09:50:00 -0500704 zq |= REG_ZQ_CS0EN_ENABLE << EMIF_REG_ZQ_CS0EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400705
Sricharanbb772a52011-11-15 09:50:00 -0500706 zq |= (cs1_device ? 1 : 0) << EMIF_REG_ZQ_CS1EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400707
708 return zq;
709}
710
711static u32 get_temp_alert_config(const struct lpddr2_device_details *cs1_device,
712 const struct lpddr2_addressing *addressing,
713 u8 is_derated)
714{
715 u32 alert = 0, interval;
716 interval =
717 TEMP_ALERT_POLL_INTERVAL_MS * 10000 / addressing->t_REFI_us_x10;
718 if (is_derated)
719 interval *= 4;
Sricharanbb772a52011-11-15 09:50:00 -0500720 alert |= interval << EMIF_REG_TA_REFINTERVAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400721
Sricharanbb772a52011-11-15 09:50:00 -0500722 alert |= TEMP_ALERT_CONFIG_DEVCT_1 << EMIF_REG_TA_DEVCNT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400723
Sricharanbb772a52011-11-15 09:50:00 -0500724 alert |= TEMP_ALERT_CONFIG_DEVWDT_32 << EMIF_REG_TA_DEVWDT_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400725
Sricharanbb772a52011-11-15 09:50:00 -0500726 alert |= 1 << EMIF_REG_TA_SFEXITEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400727
Sricharanbb772a52011-11-15 09:50:00 -0500728 alert |= 1 << EMIF_REG_TA_CS0EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400729
Sricharanbb772a52011-11-15 09:50:00 -0500730 alert |= (cs1_device ? 1 : 0) << EMIF_REG_TA_CS1EN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400731
732 return alert;
733}
734
735static u32 get_read_idle_ctrl_reg(u8 volt_ramp)
736{
737 u32 idle = 0, val = 0;
738 if (volt_ramp)
Aneesh V924eb362011-07-21 09:29:26 -0400739 val = ns_2_cycles(READ_IDLE_INTERVAL_DVFS) / 64 - 1;
Aneesh V095aea22011-07-21 09:10:12 -0400740 else
741 /*Maximum value in normal conditions - suggested by hw team */
742 val = 0x1FF;
Sricharanbb772a52011-11-15 09:50:00 -0500743 idle |= val << EMIF_REG_READ_IDLE_INTERVAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400744
Sricharanbb772a52011-11-15 09:50:00 -0500745 idle |= EMIF_REG_READ_IDLE_LEN_VAL << EMIF_REG_READ_IDLE_LEN_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400746
747 return idle;
748}
749
750static u32 get_ddr_phy_ctrl_1(u32 freq, u8 RL)
751{
752 u32 phy = 0, val = 0;
753
Sricharanbb772a52011-11-15 09:50:00 -0500754 phy |= (RL + 2) << EMIF_REG_READ_LATENCY_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400755
756 if (freq <= 100000000)
757 val = EMIF_DLL_SLAVE_DLY_CTRL_100_MHZ_AND_LESS;
758 else if (freq <= 200000000)
759 val = EMIF_DLL_SLAVE_DLY_CTRL_200_MHZ;
760 else
761 val = EMIF_DLL_SLAVE_DLY_CTRL_400_MHZ;
Sricharanbb772a52011-11-15 09:50:00 -0500762 phy |= val << EMIF_REG_DLL_SLAVE_DLY_CTRL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400763
764 /* Other fields are constant magic values. Hardcode them together */
765 phy |= EMIF_DDR_PHY_CTRL_1_BASE_VAL <<
Sricharanbb772a52011-11-15 09:50:00 -0500766 EMIF_EMIF_DDR_PHY_CTRL_1_BASE_VAL_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -0400767
768 return phy;
769}
770
Lokesh Vutlad3d82e92013-04-04 19:51:14 +0000771static u32 get_emif_mem_size(u32 base)
Aneesh V095aea22011-07-21 09:10:12 -0400772{
773 u32 size_mbytes = 0, temp;
Lokesh Vutlad3d82e92013-04-04 19:51:14 +0000774 struct emif_device_details dev_details;
775 struct lpddr2_device_details cs0_dev_details, cs1_dev_details;
776 u32 emif_nr = emif_num(base);
Aneesh V095aea22011-07-21 09:10:12 -0400777
Lokesh Vutlad3d82e92013-04-04 19:51:14 +0000778 emif_reset_phy(base);
779 dev_details.cs0_device_details = emif_get_device_details(emif_nr, CS0,
780 &cs0_dev_details);
781 dev_details.cs1_device_details = emif_get_device_details(emif_nr, CS1,
782 &cs1_dev_details);
783 emif_reset_phy(base);
Aneesh V095aea22011-07-21 09:10:12 -0400784
Lokesh Vutlad3d82e92013-04-04 19:51:14 +0000785 if (dev_details.cs0_device_details) {
786 temp = dev_details.cs0_device_details->density;
Aneesh V095aea22011-07-21 09:10:12 -0400787 size_mbytes += lpddr2_density_2_size_in_mbytes[temp];
788 }
789
Lokesh Vutlad3d82e92013-04-04 19:51:14 +0000790 if (dev_details.cs1_device_details) {
791 temp = dev_details.cs1_device_details->density;
Aneesh V095aea22011-07-21 09:10:12 -0400792 size_mbytes += lpddr2_density_2_size_in_mbytes[temp];
793 }
794 /* convert to bytes */
795 return size_mbytes << 20;
796}
797
798/* Gets the encoding corresponding to a given DMM section size */
799u32 get_dmm_section_size_map(u32 section_size)
800{
801 /*
802 * Section size mapping:
803 * 0x0: 16-MiB section
804 * 0x1: 32-MiB section
805 * 0x2: 64-MiB section
806 * 0x3: 128-MiB section
807 * 0x4: 256-MiB section
808 * 0x5: 512-MiB section
809 * 0x6: 1-GiB section
810 * 0x7: 2-GiB section
811 */
812 section_size >>= 24; /* divide by 16 MB */
813 return log_2_n_round_down(section_size);
814}
815
816static void emif_calculate_regs(
817 const struct emif_device_details *emif_dev_details,
818 u32 freq, struct emif_regs *regs)
819{
820 u32 temp, sys_freq;
821 const struct lpddr2_addressing *addressing;
822 const struct lpddr2_ac_timings *timings;
823 const struct lpddr2_min_tck *min_tck;
824 const struct lpddr2_device_details *cs0_dev_details =
825 emif_dev_details->cs0_device_details;
826 const struct lpddr2_device_details *cs1_dev_details =
827 emif_dev_details->cs1_device_details;
828 const struct lpddr2_device_timings *cs0_dev_timings =
829 emif_dev_details->cs0_device_timings;
830
831 emif_assert(emif_dev_details);
832 emif_assert(regs);
833 /*
834 * You can not have a device on CS1 without one on CS0
835 * So configuring EMIF without a device on CS0 doesn't
836 * make sense
837 */
838 emif_assert(cs0_dev_details);
839 emif_assert(cs0_dev_details->type != LPDDR2_TYPE_NVM);
840 /*
841 * If there is a device on CS1 it should be same type as CS0
842 * (or NVM. But NVM is not supported in this driver yet)
843 */
844 emif_assert((cs1_dev_details == NULL) ||
845 (cs1_dev_details->type == LPDDR2_TYPE_NVM) ||
846 (cs0_dev_details->type == cs1_dev_details->type));
847 emif_assert(freq <= MAX_LPDDR2_FREQ);
848
849 set_ddr_clk_period(freq);
850
851 /*
852 * The device on CS0 is used for all timing calculations
853 * There is only one set of registers for timings per EMIF. So, if the
854 * second CS(CS1) has a device, it should have the same timings as the
855 * device on CS0
856 */
857 timings = get_timings_table(cs0_dev_timings->ac_timings, freq);
858 emif_assert(timings);
859 min_tck = cs0_dev_timings->min_tck;
860
861 temp = addressing_table_index(cs0_dev_details->type,
862 cs0_dev_details->density,
863 cs0_dev_details->io_width);
864
865 emif_assert((temp >= 0));
866 addressing = &(addressing_table[temp]);
867 emif_assert(addressing);
868
869 sys_freq = get_sys_clk_freq();
870
871 regs->sdram_config_init = get_sdram_config_reg(cs0_dev_details,
872 cs1_dev_details,
873 addressing, RL_BOOT);
874
875 regs->sdram_config = get_sdram_config_reg(cs0_dev_details,
876 cs1_dev_details,
877 addressing, RL_FINAL);
878
879 regs->ref_ctrl = get_sdram_ref_ctrl(freq, addressing);
880
881 regs->sdram_tim1 = get_sdram_tim_1_reg(timings, min_tck, addressing);
882
883 regs->sdram_tim2 = get_sdram_tim_2_reg(timings, min_tck);
884
885 regs->sdram_tim3 = get_sdram_tim_3_reg(timings, min_tck, addressing);
886
887 regs->read_idle_ctrl = get_read_idle_ctrl_reg(LPDDR2_VOLTAGE_STABLE);
888
889 regs->temp_alert_config =
890 get_temp_alert_config(cs1_dev_details, addressing, 0);
891
892 regs->zq_config = get_zq_config_reg(cs1_dev_details, addressing,
893 LPDDR2_VOLTAGE_STABLE);
894
895 regs->emif_ddr_phy_ctlr_1_init =
896 get_ddr_phy_ctrl_1(sys_freq / 2, RL_BOOT);
897
898 regs->emif_ddr_phy_ctlr_1 =
899 get_ddr_phy_ctrl_1(freq, RL_FINAL);
900
901 regs->freq = freq;
902
903 print_timing_reg(regs->sdram_config_init);
904 print_timing_reg(regs->sdram_config);
905 print_timing_reg(regs->ref_ctrl);
906 print_timing_reg(regs->sdram_tim1);
907 print_timing_reg(regs->sdram_tim2);
908 print_timing_reg(regs->sdram_tim3);
909 print_timing_reg(regs->read_idle_ctrl);
910 print_timing_reg(regs->temp_alert_config);
911 print_timing_reg(regs->zq_config);
912 print_timing_reg(regs->emif_ddr_phy_ctlr_1);
913 print_timing_reg(regs->emif_ddr_phy_ctlr_1_init);
914}
915#endif /* CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS */
916
Aneesh V1e463862011-07-21 09:10:15 -0400917#ifdef CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION
918const char *get_lpddr2_type(u8 type_id)
919{
920 switch (type_id) {
921 case LPDDR2_TYPE_S4:
922 return "LPDDR2-S4";
923 case LPDDR2_TYPE_S2:
924 return "LPDDR2-S2";
925 default:
926 return NULL;
927 }
928}
929
930const char *get_lpddr2_io_width(u8 width_id)
931{
932 switch (width_id) {
933 case LPDDR2_IO_WIDTH_8:
934 return "x8";
935 case LPDDR2_IO_WIDTH_16:
936 return "x16";
937 case LPDDR2_IO_WIDTH_32:
938 return "x32";
939 default:
940 return NULL;
941 }
942}
943
944const char *get_lpddr2_manufacturer(u32 manufacturer)
945{
946 switch (manufacturer) {
947 case LPDDR2_MANUFACTURER_SAMSUNG:
948 return "Samsung";
949 case LPDDR2_MANUFACTURER_QIMONDA:
950 return "Qimonda";
951 case LPDDR2_MANUFACTURER_ELPIDA:
952 return "Elpida";
953 case LPDDR2_MANUFACTURER_ETRON:
954 return "Etron";
955 case LPDDR2_MANUFACTURER_NANYA:
956 return "Nanya";
957 case LPDDR2_MANUFACTURER_HYNIX:
958 return "Hynix";
959 case LPDDR2_MANUFACTURER_MOSEL:
960 return "Mosel";
961 case LPDDR2_MANUFACTURER_WINBOND:
962 return "Winbond";
963 case LPDDR2_MANUFACTURER_ESMT:
964 return "ESMT";
965 case LPDDR2_MANUFACTURER_SPANSION:
966 return "Spansion";
967 case LPDDR2_MANUFACTURER_SST:
968 return "SST";
969 case LPDDR2_MANUFACTURER_ZMOS:
970 return "ZMOS";
971 case LPDDR2_MANUFACTURER_INTEL:
972 return "Intel";
973 case LPDDR2_MANUFACTURER_NUMONYX:
974 return "Numonyx";
975 case LPDDR2_MANUFACTURER_MICRON:
976 return "Micron";
977 default:
978 return NULL;
979 }
980}
981
982static void display_sdram_details(u32 emif_nr, u32 cs,
983 struct lpddr2_device_details *device)
984{
985 const char *mfg_str;
986 const char *type_str;
987 char density_str[10];
988 u32 density;
989
990 debug("EMIF%d CS%d\t", emif_nr, cs);
991
992 if (!device) {
993 debug("None\n");
994 return;
995 }
996
997 mfg_str = get_lpddr2_manufacturer(device->manufacturer);
998 type_str = get_lpddr2_type(device->type);
999
1000 density = lpddr2_density_2_size_in_mbytes[device->density];
1001 if ((density / 1024 * 1024) == density) {
1002 density /= 1024;
1003 sprintf(density_str, "%d GB", density);
1004 } else
1005 sprintf(density_str, "%d MB", density);
1006 if (mfg_str && type_str)
1007 debug("%s\t\t%s\t%s\n", mfg_str, type_str, density_str);
1008}
1009
1010static u8 is_lpddr2_sdram_present(u32 base, u32 cs,
1011 struct lpddr2_device_details *lpddr2_device)
1012{
1013 u32 mr = 0, temp;
1014
1015 mr = get_mr(base, cs, LPDDR2_MR0);
1016 if (mr > 0xFF) {
1017 /* Mode register value bigger than 8 bit */
1018 return 0;
1019 }
1020
1021 temp = (mr & LPDDR2_MR0_DI_MASK) >> LPDDR2_MR0_DI_SHIFT;
1022 if (temp) {
1023 /* Not SDRAM */
1024 return 0;
1025 }
1026 temp = (mr & LPDDR2_MR0_DNVI_MASK) >> LPDDR2_MR0_DNVI_SHIFT;
1027
1028 if (temp) {
1029 /* DNV supported - But DNV is only supported for NVM */
1030 return 0;
1031 }
1032
1033 mr = get_mr(base, cs, LPDDR2_MR4);
1034 if (mr > 0xFF) {
1035 /* Mode register value bigger than 8 bit */
1036 return 0;
1037 }
1038
1039 mr = get_mr(base, cs, LPDDR2_MR5);
Steve Sakomanad0878a2012-05-30 07:38:08 +00001040 if (mr > 0xFF) {
Aneesh V1e463862011-07-21 09:10:15 -04001041 /* Mode register value bigger than 8 bit */
1042 return 0;
1043 }
1044
1045 if (!get_lpddr2_manufacturer(mr)) {
1046 /* Manufacturer not identified */
1047 return 0;
1048 }
1049 lpddr2_device->manufacturer = mr;
1050
1051 mr = get_mr(base, cs, LPDDR2_MR6);
1052 if (mr >= 0xFF) {
1053 /* Mode register value bigger than 8 bit */
1054 return 0;
1055 }
1056
1057 mr = get_mr(base, cs, LPDDR2_MR7);
1058 if (mr >= 0xFF) {
1059 /* Mode register value bigger than 8 bit */
1060 return 0;
1061 }
1062
1063 mr = get_mr(base, cs, LPDDR2_MR8);
1064 if (mr >= 0xFF) {
1065 /* Mode register value bigger than 8 bit */
1066 return 0;
1067 }
1068
1069 temp = (mr & MR8_TYPE_MASK) >> MR8_TYPE_SHIFT;
1070 if (!get_lpddr2_type(temp)) {
1071 /* Not SDRAM */
1072 return 0;
1073 }
1074 lpddr2_device->type = temp;
1075
1076 temp = (mr & MR8_DENSITY_MASK) >> MR8_DENSITY_SHIFT;
1077 if (temp > LPDDR2_DENSITY_32Gb) {
1078 /* Density not supported */
1079 return 0;
1080 }
1081 lpddr2_device->density = temp;
1082
1083 temp = (mr & MR8_IO_WIDTH_MASK) >> MR8_IO_WIDTH_SHIFT;
1084 if (!get_lpddr2_io_width(temp)) {
1085 /* IO width unsupported value */
1086 return 0;
1087 }
1088 lpddr2_device->io_width = temp;
1089
1090 /*
1091 * If all the above tests pass we should
1092 * have a device on this chip-select
1093 */
1094 return 1;
1095}
1096
Aneesh V025bc422011-09-08 11:05:53 -04001097struct lpddr2_device_details *emif_get_device_details(u32 emif_nr, u8 cs,
Aneesh V1e463862011-07-21 09:10:15 -04001098 struct lpddr2_device_details *lpddr2_dev_details)
1099{
1100 u32 phy;
Sricharanbb772a52011-11-15 09:50:00 -05001101 u32 base = (emif_nr == 1) ? EMIF1_BASE : EMIF2_BASE;
1102
Aneesh V1e463862011-07-21 09:10:15 -04001103 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
1104
1105 if (!lpddr2_dev_details)
1106 return NULL;
1107
1108 /* Do the minimum init for mode register accesses */
Lokesh Vutla784229c2012-05-29 19:26:42 +00001109 if (!(running_from_sdram() || warm_reset())) {
Aneesh V1e463862011-07-21 09:10:15 -04001110 phy = get_ddr_phy_ctrl_1(get_sys_clk_freq() / 2, RL_BOOT);
1111 writel(phy, &emif->emif_ddr_phy_ctrl_1);
1112 }
1113
1114 if (!(is_lpddr2_sdram_present(base, cs, lpddr2_dev_details)))
1115 return NULL;
1116
1117 display_sdram_details(emif_num(base), cs, lpddr2_dev_details);
1118
1119 return lpddr2_dev_details;
1120}
Aneesh V1e463862011-07-21 09:10:15 -04001121#endif /* CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION */
1122
Aneesh V2ae610f2011-07-21 09:10:09 -04001123static void do_sdram_init(u32 base)
1124{
1125 const struct emif_regs *regs;
1126 u32 in_sdram, emif_nr;
1127
1128 debug(">>do_sdram_init() %x\n", base);
1129
1130 in_sdram = running_from_sdram();
Sricharanbb772a52011-11-15 09:50:00 -05001131 emif_nr = (base == EMIF1_BASE) ? 1 : 2;
Aneesh V2ae610f2011-07-21 09:10:09 -04001132
Aneesh V095aea22011-07-21 09:10:12 -04001133#ifdef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
Aneesh V2ae610f2011-07-21 09:10:09 -04001134 emif_get_reg_dump(emif_nr, &regs);
1135 if (!regs) {
1136 debug("EMIF: reg dump not provided\n");
1137 return;
1138 }
Aneesh V095aea22011-07-21 09:10:12 -04001139#else
1140 /*
1141 * The user has not provided the register values. We need to
1142 * calculate it based on the timings and the DDR frequency
1143 */
1144 struct emif_device_details dev_details;
1145 struct emif_regs calculated_regs;
1146
1147 /*
1148 * Get device details:
1149 * - Discovered if CONFIG_SYS_AUTOMATIC_SDRAM_DETECTION is set
1150 * - Obtained from user otherwise
1151 */
1152 struct lpddr2_device_details cs0_dev_details, cs1_dev_details;
Aneesh V025bc422011-09-08 11:05:53 -04001153 emif_reset_phy(base);
Aneesh V4324c112011-11-21 23:39:02 +00001154 dev_details.cs0_device_details = emif_get_device_details(emif_nr, CS0,
Aneesh V025bc422011-09-08 11:05:53 -04001155 &cs0_dev_details);
Aneesh V4324c112011-11-21 23:39:02 +00001156 dev_details.cs1_device_details = emif_get_device_details(emif_nr, CS1,
Aneesh V025bc422011-09-08 11:05:53 -04001157 &cs1_dev_details);
1158 emif_reset_phy(base);
Aneesh V095aea22011-07-21 09:10:12 -04001159
1160 /* Return if no devices on this EMIF */
1161 if (!dev_details.cs0_device_details &&
1162 !dev_details.cs1_device_details) {
Aneesh V095aea22011-07-21 09:10:12 -04001163 return;
1164 }
1165
Aneesh V095aea22011-07-21 09:10:12 -04001166 /*
1167 * Get device timings:
1168 * - Default timings specified by JESD209-2 if
1169 * CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS is set
1170 * - Obtained from user otherwise
1171 */
1172 emif_get_device_timings(emif_nr, &dev_details.cs0_device_timings,
1173 &dev_details.cs1_device_timings);
1174
1175 /* Calculate the register values */
Sricharan2e5ba482011-11-15 09:49:58 -05001176 emif_calculate_regs(&dev_details, omap_ddr_clk(), &calculated_regs);
Aneesh V095aea22011-07-21 09:10:12 -04001177 regs = &calculated_regs;
1178#endif /* CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS */
Aneesh V2ae610f2011-07-21 09:10:09 -04001179
1180 /*
1181 * Initializing the LPDDR2 device can not happen from SDRAM.
1182 * Changing the timing registers in EMIF can happen(going from one
1183 * OPP to another)
1184 */
Lokesh Vutlac997da52015-06-04 10:08:50 +05301185 if (!in_sdram && (!warm_reset() || is_dra7xx())) {
Tom Rini7c352cd2015-06-05 15:51:11 +05301186 if (emif_sdram_type(regs->sdram_config) ==
1187 EMIF_SDRAM_TYPE_LPDDR2)
Lokesh Vutla784ab7c2012-05-22 00:03:25 +00001188 lpddr2_init(base, regs);
1189 else
1190 ddr3_init(base, regs);
1191 }
Tom Rini7c352cd2015-06-05 15:51:11 +05301192 if (warm_reset() && (emif_sdram_type(regs->sdram_config) ==
Lokesh Vutlac997da52015-06-04 10:08:50 +05301193 EMIF_SDRAM_TYPE_DDR3) && !is_dra7xx()) {
Lokesh Vutla166e5cc2013-03-27 20:24:42 +00001194 set_lpmode_selfrefresh(base);
1195 emif_reset_phy(base);
Lokesh Vutla6213db72015-06-03 14:43:21 +05301196 omap5_ddr3_leveling(base, regs);
Lokesh Vutla166e5cc2013-03-27 20:24:42 +00001197 }
Aneesh V2ae610f2011-07-21 09:10:09 -04001198
1199 /* Write to the shadow registers */
1200 emif_update_timings(base, regs);
1201
1202 debug("<<do_sdram_init() %x\n", base);
1203}
1204
Sricharanbb772a52011-11-15 09:50:00 -05001205void emif_post_init_config(u32 base)
Aneesh V2ae610f2011-07-21 09:10:09 -04001206{
1207 struct emif_reg_struct *emif = (struct emif_reg_struct *)base;
Sricharanbb772a52011-11-15 09:50:00 -05001208 u32 omap_rev = omap_revision();
1209
Aneesh V2ae610f2011-07-21 09:10:09 -04001210 /* reset phy on ES2.0 */
Sricharanbb772a52011-11-15 09:50:00 -05001211 if (omap_rev == OMAP4430_ES2_0)
Aneesh V2ae610f2011-07-21 09:10:09 -04001212 emif_reset_phy(base);
1213
1214 /* Put EMIF back in smart idle on ES1.0 */
Sricharanbb772a52011-11-15 09:50:00 -05001215 if (omap_rev == OMAP4430_ES1_0)
Aneesh V2ae610f2011-07-21 09:10:09 -04001216 writel(0x80000000, &emif->emif_pwr_mgmt_ctrl);
1217}
1218
Sricharanbb772a52011-11-15 09:50:00 -05001219void dmm_init(u32 base)
Aneesh V2ae610f2011-07-21 09:10:09 -04001220{
1221 const struct dmm_lisa_map_regs *lisa_map_regs;
Lokesh Vutla86021142012-11-15 21:06:33 +00001222 u32 i, section, valid;
Aneesh V2ae610f2011-07-21 09:10:09 -04001223
Aneesh V095aea22011-07-21 09:10:12 -04001224#ifdef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
Aneesh V2ae610f2011-07-21 09:10:09 -04001225 emif_get_dmm_regs(&lisa_map_regs);
Aneesh V095aea22011-07-21 09:10:12 -04001226#else
1227 u32 emif1_size, emif2_size, mapped_size, section_map = 0;
1228 u32 section_cnt, sys_addr;
1229 struct dmm_lisa_map_regs lis_map_regs_calculated = {0};
Aneesh V2ae610f2011-07-21 09:10:09 -04001230
Aneesh V095aea22011-07-21 09:10:12 -04001231 mapped_size = 0;
1232 section_cnt = 3;
1233 sys_addr = CONFIG_SYS_SDRAM_BASE;
Lokesh Vutlad3d82e92013-04-04 19:51:14 +00001234 emif1_size = get_emif_mem_size(EMIF1_BASE);
1235 emif2_size = get_emif_mem_size(EMIF2_BASE);
Aneesh V095aea22011-07-21 09:10:12 -04001236 debug("emif1_size 0x%x emif2_size 0x%x\n", emif1_size, emif2_size);
1237
1238 if (!emif1_size && !emif2_size)
1239 return;
1240
1241 /* symmetric interleaved section */
1242 if (emif1_size && emif2_size) {
1243 mapped_size = min(emif1_size, emif2_size);
1244 section_map = DMM_LISA_MAP_INTERLEAVED_BASE_VAL;
Sricharanbb772a52011-11-15 09:50:00 -05001245 section_map |= 0 << EMIF_SDRC_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001246 /* only MSB */
1247 section_map |= (sys_addr >> 24) <<
Sricharanbb772a52011-11-15 09:50:00 -05001248 EMIF_SYS_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001249 section_map |= get_dmm_section_size_map(mapped_size * 2)
Sricharanbb772a52011-11-15 09:50:00 -05001250 << EMIF_SYS_SIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001251 lis_map_regs_calculated.dmm_lisa_map_3 = section_map;
1252 emif1_size -= mapped_size;
1253 emif2_size -= mapped_size;
1254 sys_addr += (mapped_size * 2);
1255 section_cnt--;
1256 }
1257
1258 /*
1259 * Single EMIF section(we can have a maximum of 1 single EMIF
1260 * section- either EMIF1 or EMIF2 or none, but not both)
1261 */
1262 if (emif1_size) {
1263 section_map = DMM_LISA_MAP_EMIF1_ONLY_BASE_VAL;
1264 section_map |= get_dmm_section_size_map(emif1_size)
Sricharanbb772a52011-11-15 09:50:00 -05001265 << EMIF_SYS_SIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001266 /* only MSB */
1267 section_map |= (mapped_size >> 24) <<
Sricharanbb772a52011-11-15 09:50:00 -05001268 EMIF_SDRC_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001269 /* only MSB */
Sricharanbb772a52011-11-15 09:50:00 -05001270 section_map |= (sys_addr >> 24) << EMIF_SYS_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001271 section_cnt--;
1272 }
1273 if (emif2_size) {
1274 section_map = DMM_LISA_MAP_EMIF2_ONLY_BASE_VAL;
1275 section_map |= get_dmm_section_size_map(emif2_size) <<
Sricharanbb772a52011-11-15 09:50:00 -05001276 EMIF_SYS_SIZE_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001277 /* only MSB */
Sricharanbb772a52011-11-15 09:50:00 -05001278 section_map |= mapped_size >> 24 << EMIF_SDRC_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001279 /* only MSB */
Sricharanbb772a52011-11-15 09:50:00 -05001280 section_map |= sys_addr >> 24 << EMIF_SYS_ADDR_SHIFT;
Aneesh V095aea22011-07-21 09:10:12 -04001281 section_cnt--;
1282 }
1283
1284 if (section_cnt == 2) {
1285 /* Only 1 section - either symmetric or single EMIF */
1286 lis_map_regs_calculated.dmm_lisa_map_3 = section_map;
1287 lis_map_regs_calculated.dmm_lisa_map_2 = 0;
1288 lis_map_regs_calculated.dmm_lisa_map_1 = 0;
1289 } else {
1290 /* 2 sections - 1 symmetric, 1 single EMIF */
1291 lis_map_regs_calculated.dmm_lisa_map_2 = section_map;
1292 lis_map_regs_calculated.dmm_lisa_map_1 = 0;
1293 }
1294
1295 /* TRAP for invalid TILER mappings in section 0 */
1296 lis_map_regs_calculated.dmm_lisa_map_0 = DMM_LISA_MAP_0_INVAL_ADDR_TRAP;
1297
Lokesh Vutlae3f53102013-06-19 10:50:45 +05301298 if (omap_revision() >= OMAP4460_ES1_0)
1299 lis_map_regs_calculated.is_ma_present = 1;
1300
Aneesh V095aea22011-07-21 09:10:12 -04001301 lisa_map_regs = &lis_map_regs_calculated;
1302#endif
Aneesh V2ae610f2011-07-21 09:10:09 -04001303 struct dmm_lisa_map_regs *hw_lisa_map_regs =
1304 (struct dmm_lisa_map_regs *)base;
1305
1306 writel(0, &hw_lisa_map_regs->dmm_lisa_map_3);
1307 writel(0, &hw_lisa_map_regs->dmm_lisa_map_2);
1308 writel(0, &hw_lisa_map_regs->dmm_lisa_map_1);
1309 writel(0, &hw_lisa_map_regs->dmm_lisa_map_0);
1310
1311 writel(lisa_map_regs->dmm_lisa_map_3,
1312 &hw_lisa_map_regs->dmm_lisa_map_3);
1313 writel(lisa_map_regs->dmm_lisa_map_2,
1314 &hw_lisa_map_regs->dmm_lisa_map_2);
1315 writel(lisa_map_regs->dmm_lisa_map_1,
1316 &hw_lisa_map_regs->dmm_lisa_map_1);
1317 writel(lisa_map_regs->dmm_lisa_map_0,
1318 &hw_lisa_map_regs->dmm_lisa_map_0);
Aneesh V924eb362011-07-21 09:29:26 -04001319
Lokesh Vutla78314192013-02-12 21:29:07 +00001320 if (lisa_map_regs->is_ma_present) {
Aneesh V924eb362011-07-21 09:29:26 -04001321 hw_lisa_map_regs =
Sricharanbb772a52011-11-15 09:50:00 -05001322 (struct dmm_lisa_map_regs *)MA_BASE;
Aneesh V924eb362011-07-21 09:29:26 -04001323
1324 writel(lisa_map_regs->dmm_lisa_map_3,
1325 &hw_lisa_map_regs->dmm_lisa_map_3);
1326 writel(lisa_map_regs->dmm_lisa_map_2,
1327 &hw_lisa_map_regs->dmm_lisa_map_2);
1328 writel(lisa_map_regs->dmm_lisa_map_1,
1329 &hw_lisa_map_regs->dmm_lisa_map_1);
1330 writel(lisa_map_regs->dmm_lisa_map_0,
1331 &hw_lisa_map_regs->dmm_lisa_map_0);
1332 }
Lokesh Vutla86021142012-11-15 21:06:33 +00001333
1334 /*
1335 * EMIF should be configured only when
1336 * memory is mapped on it. Using emif1_enabled
1337 * and emif2_enabled variables for this.
1338 */
1339 emif1_enabled = 0;
1340 emif2_enabled = 0;
1341 for (i = 0; i < 4; i++) {
1342 section = __raw_readl(DMM_BASE + i*4);
1343 valid = (section & EMIF_SDRC_MAP_MASK) >>
1344 (EMIF_SDRC_MAP_SHIFT);
1345 if (valid == 3) {
1346 emif1_enabled = 1;
1347 emif2_enabled = 1;
1348 break;
Lokesh Vutla86021142012-11-15 21:06:33 +00001349 }
Lokesh Vutla86021142012-11-15 21:06:33 +00001350
Felipe Balbidbf02ec2014-11-06 08:28:46 -06001351 if (valid == 1)
1352 emif1_enabled = 1;
1353
1354 if (valid == 2)
1355 emif2_enabled = 1;
1356 }
Aneesh V2ae610f2011-07-21 09:10:09 -04001357}
1358
SRICHARAN R54d022e2013-11-08 17:40:38 +05301359static void do_bug0039_workaround(u32 base)
1360{
1361 u32 val, i, clkctrl;
1362 struct emif_reg_struct *emif_base = (struct emif_reg_struct *)base;
1363 const struct read_write_regs *bug_00339_regs;
1364 u32 iterations;
1365 u32 *phy_status_base = &emif_base->emif_ddr_phy_status[0];
1366 u32 *phy_ctrl_base = &emif_base->emif_ddr_ext_phy_ctrl_1;
1367
1368 if (is_dra7xx())
1369 phy_status_base++;
1370
1371 bug_00339_regs = get_bug_regs(&iterations);
1372
1373 /* Put EMIF in to idle */
1374 clkctrl = __raw_readl((*prcm)->cm_memif_clkstctrl);
1375 __raw_writel(0x0, (*prcm)->cm_memif_clkstctrl);
1376
1377 /* Copy the phy status registers in to phy ctrl shadow registers */
1378 for (i = 0; i < iterations; i++) {
1379 val = __raw_readl(phy_status_base +
1380 bug_00339_regs[i].read_reg - 1);
1381
1382 __raw_writel(val, phy_ctrl_base +
1383 ((bug_00339_regs[i].write_reg - 1) << 1));
1384
1385 __raw_writel(val, phy_ctrl_base +
1386 (bug_00339_regs[i].write_reg << 1) - 1);
1387 }
1388
1389 /* Disable leveling */
1390 writel(0x0, &emif_base->emif_rd_wr_lvl_rmp_ctl);
1391
1392 __raw_writel(clkctrl, (*prcm)->cm_memif_clkstctrl);
1393}
1394
Aneesh V2ae610f2011-07-21 09:10:09 -04001395/*
1396 * SDRAM initialization:
1397 * SDRAM initialization has two parts:
1398 * 1. Configuring the SDRAM device
1399 * 2. Update the AC timings related parameters in the EMIF module
1400 * (1) should be done only once and should not be done while we are
1401 * running from SDRAM.
1402 * (2) can and should be done more than once if OPP changes.
1403 * Particularly, this may be needed when we boot without SPL and
1404 * and using Configuration Header(CH). ROM code supports only at 50% OPP
1405 * at boot (low power boot). So u-boot has to switch to OPP100 and update
1406 * the frequency. So,
1407 * Doing (1) and (2) makes sense - first time initialization
1408 * Doing (2) and not (1) makes sense - OPP change (when using CH)
1409 * Doing (1) and not (2) doen't make sense
1410 * See do_sdram_init() for the details
1411 */
1412void sdram_init(void)
1413{
1414 u32 in_sdram, size_prog, size_detect;
Tom Rini7c352cd2015-06-05 15:51:11 +05301415 struct emif_reg_struct *emif = (struct emif_reg_struct *)EMIF1_BASE;
1416 u32 sdram_type = emif_sdram_type(emif->emif_sdram_config);
Aneesh V2ae610f2011-07-21 09:10:09 -04001417
1418 debug(">>sdram_init()\n");
1419
Sricharan508a58f2011-11-15 09:49:55 -05001420 if (omap_hw_init_context() == OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL)
Aneesh V2ae610f2011-07-21 09:10:09 -04001421 return;
1422
1423 in_sdram = running_from_sdram();
1424 debug("in_sdram = %d\n", in_sdram);
1425
Lokesh Vutla166e5cc2013-03-27 20:24:42 +00001426 if (!in_sdram) {
1427 if ((sdram_type == EMIF_SDRAM_TYPE_LPDDR2) && !warm_reset())
SRICHARAN R01b753f2013-02-04 04:22:00 +00001428 bypass_dpll((*prcm)->cm_clkmode_dpll_core);
Lokesh Vutla166e5cc2013-03-27 20:24:42 +00001429 else if (sdram_type == EMIF_SDRAM_TYPE_DDR3)
SRICHARAN R01b753f2013-02-04 04:22:00 +00001430 writel(CM_DLL_CTRL_NO_OVERRIDE, (*prcm)->cm_dll_ctrl);
Lokesh Vutla753bae82012-05-22 00:03:26 +00001431 }
Aneesh V2ae610f2011-07-21 09:10:09 -04001432
Lokesh Vutla784229c2012-05-29 19:26:42 +00001433 if (!in_sdram)
Sricharanbb772a52011-11-15 09:50:00 -05001434 dmm_init(DMM_BASE);
Lokesh Vutla784229c2012-05-29 19:26:42 +00001435
Lokesh Vutla86021142012-11-15 21:06:33 +00001436 if (emif1_enabled)
1437 do_sdram_init(EMIF1_BASE);
1438
1439 if (emif2_enabled)
1440 do_sdram_init(EMIF2_BASE);
1441
Lokesh Vutla784229c2012-05-29 19:26:42 +00001442 if (!(in_sdram || warm_reset())) {
Lokesh Vutla86021142012-11-15 21:06:33 +00001443 if (emif1_enabled)
1444 emif_post_init_config(EMIF1_BASE);
1445 if (emif2_enabled)
1446 emif_post_init_config(EMIF2_BASE);
Aneesh V2ae610f2011-07-21 09:10:09 -04001447 }
1448
1449 /* for the shadow registers to take effect */
Lokesh Vutla9ca8bfe2013-02-04 04:21:59 +00001450 if (sdram_type == EMIF_SDRAM_TYPE_LPDDR2)
Lokesh Vutla753bae82012-05-22 00:03:26 +00001451 freq_update_core();
Aneesh V2ae610f2011-07-21 09:10:09 -04001452
1453 /* Do some testing after the init */
1454 if (!in_sdram) {
Sricharan508a58f2011-11-15 09:49:55 -05001455 size_prog = omap_sdram_size();
SRICHARAN R41321fd2012-05-17 00:12:08 +00001456 size_prog = log_2_n_round_down(size_prog);
1457 size_prog = (1 << size_prog);
1458
Aneesh V2ae610f2011-07-21 09:10:09 -04001459 size_detect = get_ram_size((long *)CONFIG_SYS_SDRAM_BASE,
1460 size_prog);
1461 /* Compare with the size programmed */
1462 if (size_detect != size_prog) {
1463 printf("SDRAM: identified size not same as expected"
1464 " size identified: %x expected: %x\n",
1465 size_detect,
1466 size_prog);
1467 } else
1468 debug("get_ram_size() successful");
1469 }
1470
SRICHARAN R54d022e2013-11-08 17:40:38 +05301471 if (sdram_type == EMIF_SDRAM_TYPE_DDR3 &&
Sricharan Rf2a1b932014-07-31 12:05:50 +05301472 (!in_sdram && !warm_reset()) && (!is_dra7xx())) {
Lokesh Vutla9fcf3d32014-05-15 11:08:41 +05301473 if (emif1_enabled)
1474 do_bug0039_workaround(EMIF1_BASE);
1475 if (emif2_enabled)
1476 do_bug0039_workaround(EMIF2_BASE);
SRICHARAN R54d022e2013-11-08 17:40:38 +05301477 }
1478
Aneesh V2ae610f2011-07-21 09:10:09 -04001479 debug("<<sdram_init()\n");
1480}