]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/mx6/ddr.c
arm: mx6: ddr3: Remove dead code
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / mx6 / ddr.c
1 /*
2  * Copyright (C) 2014 Gateworks Corporation
3  * Author: Tim Harvey <tharvey@gateworks.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <linux/types.h>
10 #include <asm/arch/mx6-ddr.h>
11 #include <asm/arch/sys_proto.h>
12 #include <asm/io.h>
13 #include <asm/types.h>
14
15 #if defined(CONFIG_SOC_MX6SX)
16 /* Configure MX6SX mmdc iomux */
17 void mx6sx_dram_iocfg(unsigned width,
18                       const struct mx6sx_iomux_ddr_regs *ddr,
19                       const struct mx6sx_iomux_grp_regs *grp)
20 {
21         struct mx6sx_iomux_ddr_regs *mx6_ddr_iomux;
22         struct mx6sx_iomux_grp_regs *mx6_grp_iomux;
23
24         mx6_ddr_iomux = (struct mx6sx_iomux_ddr_regs *)MX6SX_IOM_DDR_BASE;
25         mx6_grp_iomux = (struct mx6sx_iomux_grp_regs *)MX6SX_IOM_GRP_BASE;
26
27         /* DDR IO TYPE */
28         writel(grp->grp_ddr_type, &mx6_grp_iomux->grp_ddr_type);
29         writel(grp->grp_ddrpke, &mx6_grp_iomux->grp_ddrpke);
30
31         /* CLOCK */
32         writel(ddr->dram_sdclk_0, &mx6_ddr_iomux->dram_sdclk_0);
33
34         /* ADDRESS */
35         writel(ddr->dram_cas, &mx6_ddr_iomux->dram_cas);
36         writel(ddr->dram_ras, &mx6_ddr_iomux->dram_ras);
37         writel(grp->grp_addds, &mx6_grp_iomux->grp_addds);
38
39         /* Control */
40         writel(ddr->dram_reset, &mx6_ddr_iomux->dram_reset);
41         writel(ddr->dram_sdba2, &mx6_ddr_iomux->dram_sdba2);
42         writel(ddr->dram_sdcke0, &mx6_ddr_iomux->dram_sdcke0);
43         writel(ddr->dram_sdcke1, &mx6_ddr_iomux->dram_sdcke1);
44         writel(ddr->dram_odt0, &mx6_ddr_iomux->dram_odt0);
45         writel(ddr->dram_odt1, &mx6_ddr_iomux->dram_odt1);
46         writel(grp->grp_ctlds, &mx6_grp_iomux->grp_ctlds);
47
48         /* Data Strobes */
49         writel(grp->grp_ddrmode_ctl, &mx6_grp_iomux->grp_ddrmode_ctl);
50         writel(ddr->dram_sdqs0, &mx6_ddr_iomux->dram_sdqs0);
51         writel(ddr->dram_sdqs1, &mx6_ddr_iomux->dram_sdqs1);
52         if (width >= 32) {
53                 writel(ddr->dram_sdqs2, &mx6_ddr_iomux->dram_sdqs2);
54                 writel(ddr->dram_sdqs3, &mx6_ddr_iomux->dram_sdqs3);
55         }
56
57         /* Data */
58         writel(grp->grp_ddrmode, &mx6_grp_iomux->grp_ddrmode);
59         writel(grp->grp_b0ds, &mx6_grp_iomux->grp_b0ds);
60         writel(grp->grp_b1ds, &mx6_grp_iomux->grp_b1ds);
61         if (width >= 32) {
62                 writel(grp->grp_b2ds, &mx6_grp_iomux->grp_b2ds);
63                 writel(grp->grp_b3ds, &mx6_grp_iomux->grp_b3ds);
64         }
65         writel(ddr->dram_dqm0, &mx6_ddr_iomux->dram_dqm0);
66         writel(ddr->dram_dqm1, &mx6_ddr_iomux->dram_dqm1);
67         if (width >= 32) {
68                 writel(ddr->dram_dqm2, &mx6_ddr_iomux->dram_dqm2);
69                 writel(ddr->dram_dqm3, &mx6_ddr_iomux->dram_dqm3);
70         }
71 }
72 #endif
73
74 #if defined(CONFIG_SOC_MX6QDL) || defined(CONFIG_SOC_MX6Q) || defined(CONFIG_SOC_MX6D)
75 /* Configure MX6DQ mmdc iomux */
76 void mx6dq_dram_iocfg(unsigned width,
77                       const struct mx6dq_iomux_ddr_regs *ddr,
78                       const struct mx6dq_iomux_grp_regs *grp)
79 {
80         volatile struct mx6dq_iomux_ddr_regs *mx6_ddr_iomux;
81         volatile struct mx6dq_iomux_grp_regs *mx6_grp_iomux;
82
83         mx6_ddr_iomux = (struct mx6dq_iomux_ddr_regs *)MX6DQ_IOM_DDR_BASE;
84         mx6_grp_iomux = (struct mx6dq_iomux_grp_regs *)MX6DQ_IOM_GRP_BASE;
85
86         /* DDR IO Type */
87         mx6_grp_iomux->grp_ddr_type = grp->grp_ddr_type;
88         mx6_grp_iomux->grp_ddrpke = grp->grp_ddrpke;
89
90         /* Clock */
91         mx6_ddr_iomux->dram_sdclk_0 = ddr->dram_sdclk_0;
92         mx6_ddr_iomux->dram_sdclk_1 = ddr->dram_sdclk_1;
93
94         /* Address */
95         mx6_ddr_iomux->dram_cas = ddr->dram_cas;
96         mx6_ddr_iomux->dram_ras = ddr->dram_ras;
97         mx6_grp_iomux->grp_addds = grp->grp_addds;
98
99         /* Control */
100         mx6_ddr_iomux->dram_reset = ddr->dram_reset;
101         mx6_ddr_iomux->dram_sdcke0 = ddr->dram_sdcke0;
102         mx6_ddr_iomux->dram_sdcke1 = ddr->dram_sdcke1;
103         mx6_ddr_iomux->dram_sdba2 = ddr->dram_sdba2;
104         mx6_ddr_iomux->dram_sdodt0 = ddr->dram_sdodt0;
105         mx6_ddr_iomux->dram_sdodt1 = ddr->dram_sdodt1;
106         mx6_grp_iomux->grp_ctlds = grp->grp_ctlds;
107
108         /* Data Strobes */
109         mx6_grp_iomux->grp_ddrmode_ctl = grp->grp_ddrmode_ctl;
110         mx6_ddr_iomux->dram_sdqs0 = ddr->dram_sdqs0;
111         mx6_ddr_iomux->dram_sdqs1 = ddr->dram_sdqs1;
112         if (width >= 32) {
113                 mx6_ddr_iomux->dram_sdqs2 = ddr->dram_sdqs2;
114                 mx6_ddr_iomux->dram_sdqs3 = ddr->dram_sdqs3;
115         }
116         if (width >= 64) {
117                 mx6_ddr_iomux->dram_sdqs4 = ddr->dram_sdqs4;
118                 mx6_ddr_iomux->dram_sdqs5 = ddr->dram_sdqs5;
119                 mx6_ddr_iomux->dram_sdqs6 = ddr->dram_sdqs6;
120                 mx6_ddr_iomux->dram_sdqs7 = ddr->dram_sdqs7;
121         }
122
123         /* Data */
124         mx6_grp_iomux->grp_ddrmode = grp->grp_ddrmode;
125         mx6_grp_iomux->grp_b0ds = grp->grp_b0ds;
126         mx6_grp_iomux->grp_b1ds = grp->grp_b1ds;
127         if (width >= 32) {
128                 mx6_grp_iomux->grp_b2ds = grp->grp_b2ds;
129                 mx6_grp_iomux->grp_b3ds = grp->grp_b3ds;
130         }
131         if (width >= 64) {
132                 mx6_grp_iomux->grp_b4ds = grp->grp_b4ds;
133                 mx6_grp_iomux->grp_b5ds = grp->grp_b5ds;
134                 mx6_grp_iomux->grp_b6ds = grp->grp_b6ds;
135                 mx6_grp_iomux->grp_b7ds = grp->grp_b7ds;
136         }
137         mx6_ddr_iomux->dram_dqm0 = ddr->dram_dqm0;
138         mx6_ddr_iomux->dram_dqm1 = ddr->dram_dqm1;
139         if (width >= 32) {
140                 mx6_ddr_iomux->dram_dqm2 = ddr->dram_dqm2;
141                 mx6_ddr_iomux->dram_dqm3 = ddr->dram_dqm3;
142         }
143         if (width >= 64) {
144                 mx6_ddr_iomux->dram_dqm4 = ddr->dram_dqm4;
145                 mx6_ddr_iomux->dram_dqm5 = ddr->dram_dqm5;
146                 mx6_ddr_iomux->dram_dqm6 = ddr->dram_dqm6;
147                 mx6_ddr_iomux->dram_dqm7 = ddr->dram_dqm7;
148         }
149 }
150 #endif
151
152 #if defined(CONFIG_SOC_MX6QDL) || defined(CONFIG_SOC_MX6DL) || defined(CONFIG_SOC_MX6S)
153 /* Configure MX6SDL mmdc iomux */
154 void mx6sdl_dram_iocfg(unsigned width,
155                        const struct mx6sdl_iomux_ddr_regs *ddr,
156                        const struct mx6sdl_iomux_grp_regs *grp)
157 {
158         volatile struct mx6sdl_iomux_ddr_regs *mx6_ddr_iomux;
159         volatile struct mx6sdl_iomux_grp_regs *mx6_grp_iomux;
160
161         mx6_ddr_iomux = (struct mx6sdl_iomux_ddr_regs *)MX6SDL_IOM_DDR_BASE;
162         mx6_grp_iomux = (struct mx6sdl_iomux_grp_regs *)MX6SDL_IOM_GRP_BASE;
163
164         /* DDR IO Type */
165         mx6_grp_iomux->grp_ddr_type = grp->grp_ddr_type;
166         mx6_grp_iomux->grp_ddrpke = grp->grp_ddrpke;
167
168         /* Clock */
169         mx6_ddr_iomux->dram_sdclk_0 = ddr->dram_sdclk_0;
170         mx6_ddr_iomux->dram_sdclk_1 = ddr->dram_sdclk_1;
171
172         /* Address */
173         mx6_ddr_iomux->dram_cas = ddr->dram_cas;
174         mx6_ddr_iomux->dram_ras = ddr->dram_ras;
175         mx6_grp_iomux->grp_addds = grp->grp_addds;
176
177         /* Control */
178         mx6_ddr_iomux->dram_reset = ddr->dram_reset;
179         mx6_ddr_iomux->dram_sdcke0 = ddr->dram_sdcke0;
180         mx6_ddr_iomux->dram_sdcke1 = ddr->dram_sdcke1;
181         mx6_ddr_iomux->dram_sdba2 = ddr->dram_sdba2;
182         mx6_ddr_iomux->dram_sdodt0 = ddr->dram_sdodt0;
183         mx6_ddr_iomux->dram_sdodt1 = ddr->dram_sdodt1;
184         mx6_grp_iomux->grp_ctlds = grp->grp_ctlds;
185
186         /* Data Strobes */
187         mx6_grp_iomux->grp_ddrmode_ctl = grp->grp_ddrmode_ctl;
188         mx6_ddr_iomux->dram_sdqs0 = ddr->dram_sdqs0;
189         mx6_ddr_iomux->dram_sdqs1 = ddr->dram_sdqs1;
190         if (width >= 32) {
191                 mx6_ddr_iomux->dram_sdqs2 = ddr->dram_sdqs2;
192                 mx6_ddr_iomux->dram_sdqs3 = ddr->dram_sdqs3;
193         }
194         if (width >= 64) {
195                 mx6_ddr_iomux->dram_sdqs4 = ddr->dram_sdqs4;
196                 mx6_ddr_iomux->dram_sdqs5 = ddr->dram_sdqs5;
197                 mx6_ddr_iomux->dram_sdqs6 = ddr->dram_sdqs6;
198                 mx6_ddr_iomux->dram_sdqs7 = ddr->dram_sdqs7;
199         }
200
201         /* Data */
202         mx6_grp_iomux->grp_ddrmode = grp->grp_ddrmode;
203         mx6_grp_iomux->grp_b0ds = grp->grp_b0ds;
204         mx6_grp_iomux->grp_b1ds = grp->grp_b1ds;
205         if (width >= 32) {
206                 mx6_grp_iomux->grp_b2ds = grp->grp_b2ds;
207                 mx6_grp_iomux->grp_b3ds = grp->grp_b3ds;
208         }
209         if (width >= 64) {
210                 mx6_grp_iomux->grp_b4ds = grp->grp_b4ds;
211                 mx6_grp_iomux->grp_b5ds = grp->grp_b5ds;
212                 mx6_grp_iomux->grp_b6ds = grp->grp_b6ds;
213                 mx6_grp_iomux->grp_b7ds = grp->grp_b7ds;
214         }
215         mx6_ddr_iomux->dram_dqm0 = ddr->dram_dqm0;
216         mx6_ddr_iomux->dram_dqm1 = ddr->dram_dqm1;
217         if (width >= 32) {
218                 mx6_ddr_iomux->dram_dqm2 = ddr->dram_dqm2;
219                 mx6_ddr_iomux->dram_dqm3 = ddr->dram_dqm3;
220         }
221         if (width >= 64) {
222                 mx6_ddr_iomux->dram_dqm4 = ddr->dram_dqm4;
223                 mx6_ddr_iomux->dram_dqm5 = ddr->dram_dqm5;
224                 mx6_ddr_iomux->dram_dqm6 = ddr->dram_dqm6;
225                 mx6_ddr_iomux->dram_dqm7 = ddr->dram_dqm7;
226         }
227 }
228 #endif
229
230 /*
231  * Configure mx6 mmdc registers based on:
232  *  - board-specific memory configuration
233  *  - board-specific calibration data
234  *  - ddr3 chip details
235  *
236  * The various calculations here are derived from the Freescale
237  * i.Mx6DQSDL DDR3 Script Aid spreadsheet (DOC-94917) designed to generate MMDC
238  * configuration registers based on memory system and memory chip parameters.
239  *
240  * The defaults here are those which were specified in the spreadsheet.
241  * For details on each register, refer to the IMX6DQRM and/or IMX6SDLRM
242  * section titled MMDC initialization
243  */
244 #define MR(val, ba, cmd, cs1) \
245         ((val << 16) | (1 << 15) | (cmd << 4) | (cs1 << 3) | ba)
246 #ifdef CONFIG_SOC_MX6SX
247 #define MMDC1(entry, value)     do {} while (0)
248 #else
249 #define MMDC1(entry, value) do { mmdc1->entry = value; } while (0)
250 #endif
251 void mx6_dram_cfg(const struct mx6_ddr_sysinfo *sysinfo,
252                   const struct mx6_mmdc_calibration *calib,
253                   const struct mx6_ddr3_cfg *ddr3_cfg)
254 {
255         volatile struct mmdc_p_regs *mmdc0;
256 #ifndef CONFIG_SOC_MX6SX
257         volatile struct mmdc_p_regs *mmdc1;
258 #endif
259         u32 val;
260         u8 tcke, tcksrx, tcksre, txpdll, taofpd, taonpd, trrd;
261         u8 todtlon, taxpd, tanpd, tcwl, txp, tfaw, tcl;
262         u8 todt_idle_off = 0x4; /* from DDR3 Script Aid spreadsheet */
263         u16 trcd, trc, tras, twr, tmrd, trtp, trp, twtr, trfc, txs, txpr;
264         u16 cs0_end;
265         u16 tdllk = 0x1ff; /* DLL locking time: 512 cycles (JEDEC DDR3) */
266         u8 coladdr;
267         int clkper; /* clock period in picoseconds */
268         int clock; /* clock freq in MHz */
269         int cs;
270         u16 mem_speed = ddr3_cfg->mem_speed;
271
272         mmdc0 = (struct mmdc_p_regs *)MMDC_P0_BASE_ADDR;
273 #ifndef CONFIG_SOC_MX6SX
274         mmdc1 = (struct mmdc_p_regs *)MMDC_P1_BASE_ADDR;
275 #endif
276
277         /* Limit mem_speed for MX6D/MX6Q */
278         if (is_cpu_type(MXC_CPU_MX6Q) || is_cpu_type(MXC_CPU_MX6D)) {
279                 if (mem_speed > 1066)
280                         mem_speed = 1066; /* 1066 MT/s */
281
282                 tcwl = 4;
283         }
284         /* Limit mem_speed for MX6S/MX6DL */
285         else {
286                 if (mem_speed > 800)
287                         mem_speed = 800;  /* 800 MT/s */
288
289                 tcwl = 3;
290         }
291
292         clock = mem_speed / 2;
293         /*
294          * Data rate of 1066 MT/s requires 533 MHz DDR3 clock, but MX6D/Q supports
295          * up to 528 MHz, so reduce the clock to fit chip specs
296          */
297         if (is_cpu_type(MXC_CPU_MX6Q) || is_cpu_type(MXC_CPU_MX6D)) {
298                 if (clock > 528)
299                         clock = 528; /* 528 MHz */
300         }
301
302         clkper = (1000 * 1000) / clock; /* pico seconds */
303         todtlon = tcwl;
304         taxpd = tcwl;
305         tanpd = tcwl;
306
307         switch (ddr3_cfg->density) {
308         case 1: /* 1Gb per chip */
309                 trfc = DIV_ROUND_UP(110000, clkper) - 1;
310                 txs = DIV_ROUND_UP(120000, clkper) - 1;
311                 break;
312         case 2: /* 2Gb per chip */
313                 trfc = DIV_ROUND_UP(160000, clkper) - 1;
314                 txs = DIV_ROUND_UP(170000, clkper) - 1;
315                 break;
316         case 4: /* 4Gb per chip */
317                 trfc = DIV_ROUND_UP(260000, clkper) - 1;
318                 txs = DIV_ROUND_UP(270000, clkper) - 1;
319                 break;
320         case 8: /* 8Gb per chip */
321                 trfc = DIV_ROUND_UP(350000, clkper) - 1;
322                 txs = DIV_ROUND_UP(360000, clkper) - 1;
323                 break;
324         default:
325                 /* invalid density */
326                 puts("invalid chip density\n");
327                 hang();
328                 break;
329         }
330         txpr = txs;
331
332         switch (mem_speed) {
333         case 800:
334                 txp = DIV_ROUND_UP(max(3 * clkper, 7500), clkper) - 1;
335                 tcke = DIV_ROUND_UP(max(3 * clkper, 7500), clkper) - 1;
336                 if (ddr3_cfg->pagesz == 1) {
337                         tfaw = DIV_ROUND_UP(40000, clkper) - 1;
338                         trrd = DIV_ROUND_UP(max(4 * clkper, 10000), clkper) - 1;
339                 } else {
340                         tfaw = DIV_ROUND_UP(50000, clkper) - 1;
341                         trrd = DIV_ROUND_UP(max(4 * clkper, 10000), clkper) - 1;
342                 }
343                 break;
344         case 1066:
345                 txp = DIV_ROUND_UP(max(3 * clkper, 7500), clkper) - 1;
346                 tcke = DIV_ROUND_UP(max(3 * clkper, 5625), clkper) - 1;
347                 if (ddr3_cfg->pagesz == 1) {
348                         tfaw = DIV_ROUND_UP(37500, clkper) - 1;
349                         trrd = DIV_ROUND_UP(max(4 * clkper, 7500), clkper) - 1;
350                 } else {
351                         tfaw = DIV_ROUND_UP(50000, clkper) - 1;
352                         trrd = DIV_ROUND_UP(max(4 * clkper, 10000), clkper) - 1;
353                 }
354                 break;
355         default:
356                 puts("invalid memory speed\n");
357                 hang();
358                 break;
359         }
360         txpdll = DIV_ROUND_UP(max(10 * clkper, 24000), clkper) - 1;
361         tcksre = DIV_ROUND_UP(max(5 * clkper, 10000), clkper);
362         taonpd = DIV_ROUND_UP(2000, clkper) - 1;
363         tcksrx = tcksre;
364         taofpd = taonpd;
365         twr  = DIV_ROUND_UP(15000, clkper) - 1;
366         tmrd = DIV_ROUND_UP(max(12 * clkper, 15000), clkper) - 1;
367         trc  = DIV_ROUND_UP(ddr3_cfg->trcmin, clkper / 10) - 1;
368         tras = DIV_ROUND_UP(ddr3_cfg->trasmin, clkper / 10) - 1;
369         tcl  = DIV_ROUND_UP(ddr3_cfg->trcd, clkper / 10) - 3;
370         trp  = DIV_ROUND_UP(ddr3_cfg->trcd, clkper / 10) - 1;
371         twtr = ROUND(max(4 * clkper, 7500) / clkper, 1) - 1;
372         trcd = trp;
373         trtp = twtr;
374         cs0_end = 4 * sysinfo->cs_density - 1;
375
376         debug("density:%d Gb (%d Gb per chip)\n",
377               sysinfo->cs_density, ddr3_cfg->density);
378         debug("clock: %dMHz (%d ps)\n", clock, clkper);
379         debug("memspd:%d\n", mem_speed);
380         debug("tcke=%d\n", tcke);
381         debug("tcksrx=%d\n", tcksrx);
382         debug("tcksre=%d\n", tcksre);
383         debug("taofpd=%d\n", taofpd);
384         debug("taonpd=%d\n", taonpd);
385         debug("todtlon=%d\n", todtlon);
386         debug("tanpd=%d\n", tanpd);
387         debug("taxpd=%d\n", taxpd);
388         debug("trfc=%d\n", trfc);
389         debug("txs=%d\n", txs);
390         debug("txp=%d\n", txp);
391         debug("txpdll=%d\n", txpdll);
392         debug("tfaw=%d\n", tfaw);
393         debug("tcl=%d\n", tcl);
394         debug("trcd=%d\n", trcd);
395         debug("trp=%d\n", trp);
396         debug("trc=%d\n", trc);
397         debug("tras=%d\n", tras);
398         debug("twr=%d\n", twr);
399         debug("tmrd=%d\n", tmrd);
400         debug("tcwl=%d\n", tcwl);
401         debug("tdllk=%d\n", tdllk);
402         debug("trtp=%d\n", trtp);
403         debug("twtr=%d\n", twtr);
404         debug("trrd=%d\n", trrd);
405         debug("txpr=%d\n", txpr);
406         debug("cs0_end=%d\n", cs0_end);
407         debug("ncs=%d\n", sysinfo->ncs);
408         debug("Rtt_wr=%d\n", sysinfo->rtt_wr);
409         debug("Rtt_nom=%d\n", sysinfo->rtt_nom);
410         debug("SRT=%d\n", ddr3_cfg->SRT);
411         debug("tcl=%d\n", tcl);
412         debug("twr=%d\n", twr);
413
414         /*
415          * board-specific configuration:
416          *  These values are determined empirically and vary per board layout
417          *  see:
418          *   appnote, ddr3 spreadsheet
419          */
420         mmdc0->mpwldectrl0 = calib->p0_mpwldectrl0;
421         mmdc0->mpwldectrl1 = calib->p0_mpwldectrl1;
422         mmdc0->mpdgctrl0 = calib->p0_mpdgctrl0;
423         mmdc0->mpdgctrl1 = calib->p0_mpdgctrl1;
424         mmdc0->mprddlctl = calib->p0_mprddlctl;
425         mmdc0->mpwrdlctl = calib->p0_mpwrdlctl;
426         if (sysinfo->dsize > 1) {
427                 MMDC1(mpwldectrl0, calib->p1_mpwldectrl0);
428                 MMDC1(mpwldectrl1, calib->p1_mpwldectrl1);
429                 MMDC1(mpdgctrl0, calib->p1_mpdgctrl0);
430                 MMDC1(mpdgctrl1, calib->p1_mpdgctrl1);
431                 MMDC1(mprddlctl, calib->p1_mprddlctl);
432                 MMDC1(mpwrdlctl, calib->p1_mpwrdlctl);
433         }
434
435         /* Read data DQ Byte0-3 delay */
436         mmdc0->mprddqby0dl = 0x33333333;
437         mmdc0->mprddqby1dl = 0x33333333;
438         if (sysinfo->dsize > 0) {
439                 mmdc0->mprddqby2dl = 0x33333333;
440                 mmdc0->mprddqby3dl = 0x33333333;
441         }
442
443         if (sysinfo->dsize > 1) {
444                 MMDC1(mprddqby0dl, 0x33333333);
445                 MMDC1(mprddqby1dl, 0x33333333);
446                 MMDC1(mprddqby2dl, 0x33333333);
447                 MMDC1(mprddqby3dl, 0x33333333);
448         }
449
450         /* MMDC Termination: rtt_nom:2 RZQ/2(120ohm), rtt_nom:1 RZQ/4(60ohm) */
451         val = (sysinfo->rtt_nom == 2) ? 0x00011117 : 0x00022227;
452         mmdc0->mpodtctrl = val;
453         if (sysinfo->dsize > 1)
454                 MMDC1(mpodtctrl, val);
455
456         /* complete calibration */
457         val = (1 << 11); /* Force measurement on delay-lines */
458         mmdc0->mpmur0 = val;
459         if (sysinfo->dsize > 1)
460                 MMDC1(mpmur0, val);
461
462         /* Step 1: configuration request */
463         mmdc0->mdscr = (u32)(1 << 15); /* config request */
464
465         /* Step 2: Timing configuration */
466         mmdc0->mdcfg0 = (trfc << 24) | (txs << 16) | (txp << 13) |
467                         (txpdll << 9) | (tfaw << 4) | tcl;
468         mmdc0->mdcfg1 = (trcd << 29) | (trp << 26) | (trc << 21) |
469                         (tras << 16) | (1 << 15) /* trpa */ |
470                         (twr << 9) | (tmrd << 5) | tcwl;
471         mmdc0->mdcfg2 = (tdllk << 16) | (trtp << 6) | (twtr << 3) | trrd;
472         mmdc0->mdotc = (taofpd << 27) | (taonpd << 24) | (tanpd << 20) |
473                        (taxpd << 16) | (todtlon << 12) | (todt_idle_off << 4);
474         mmdc0->mdasp = cs0_end; /* CS addressing */
475
476         /* Step 3: Configure DDR type */
477         mmdc0->mdmisc = (sysinfo->cs1_mirror << 19) | (sysinfo->walat << 16) |
478                         (sysinfo->bi_on << 12) | (sysinfo->mif3_mode << 9) |
479                         (sysinfo->ralat << 6);
480
481         /* Step 4: Configure delay while leaving reset */
482         mmdc0->mdor = (txpr << 16) | (sysinfo->sde_to_rst << 8) |
483                       (sysinfo->rst_to_cke << 0);
484
485         /* Step 5: Configure DDR physical parameters (density and burst len) */
486         coladdr = ddr3_cfg->coladdr;
487         if (ddr3_cfg->coladdr == 8)             /* 8-bit COL is 0x3 */
488                 coladdr += 4;
489         else if (ddr3_cfg->coladdr == 12)       /* 12-bit COL is 0x4 */
490                 coladdr += 1;
491         mmdc0->mdctl =  (ddr3_cfg->rowaddr - 11) << 24 |        /* ROW */
492                         (coladdr - 9) << 20 |                   /* COL */
493                         (1 << 19) |             /* Burst Length = 8 for DDR3 */
494                         (sysinfo->dsize << 16);         /* DDR data bus size */
495
496         /* Step 6: Perform ZQ calibration */
497         val = 0xa1390001; /* one-time HW ZQ calib */
498         mmdc0->mpzqhwctrl = val;
499         if (sysinfo->dsize > 1)
500                 MMDC1(mpzqhwctrl, val);
501
502         /* Step 7: Enable MMDC with desired chip select */
503         mmdc0->mdctl |= (1 << 31) |                          /* SDE_0 for CS0 */
504                         ((sysinfo->ncs == 2) ? 1 : 0) << 30; /* SDE_1 for CS1 */
505
506         /* Step 8: Write Mode Registers to Init DDR3 devices */
507         for (cs = 0; cs < sysinfo->ncs; cs++) {
508                 /* MR2 */
509                 val = (sysinfo->rtt_wr & 3) << 9 | (ddr3_cfg->SRT & 1) << 7 |
510                       ((tcwl - 3) & 3) << 3;
511                 debug("MR2 CS%d: 0x%08x\n", cs, (u32)MR(val, 2, 3, cs));
512                 mmdc0->mdscr = MR(val, 2, 3, cs);
513                 /* MR3 */
514                 debug("MR3 CS%d: 0x%08x\n", cs, (u32)MR(0, 3, 3, cs));
515                 mmdc0->mdscr = MR(0, 3, 3, cs);
516                 /* MR1 */
517                 val = ((sysinfo->rtt_nom & 1) ? 1 : 0) << 2 |
518                       ((sysinfo->rtt_nom & 2) ? 1 : 0) << 6;
519                 debug("MR1 CS%d: 0x%08x\n", cs, (u32)MR(val, 1, 3, cs));
520                 mmdc0->mdscr = MR(val, 1, 3, cs);
521                 /* MR0 */
522                 val = ((tcl - 1) << 4) |        /* CAS */
523                       (1 << 8)   |              /* DLL Reset */
524                       ((twr - 3) << 9);         /* Write Recovery */
525                 debug("MR0 CS%d: 0x%08x\n", cs, (u32)MR(val, 0, 3, cs));
526                 mmdc0->mdscr = MR(val, 0, 3, cs);
527                 /* ZQ calibration */
528                 val = (1 << 10);
529                 mmdc0->mdscr = MR(val, 0, 4, cs);
530         }
531
532         /* Step 10: Power down control and self-refresh */
533         mmdc0->mdpdc = (tcke & 0x7) << 16 |
534                         5            << 12 |  /* PWDT_1: 256 cycles */
535                         5            <<  8 |  /* PWDT_0: 256 cycles */
536                         1            <<  6 |  /* BOTH_CS_PD */
537                         (tcksrx & 0x7) << 3 |
538                         (tcksre & 0x7);
539         if (!sysinfo->pd_fast_exit)
540                 mmdc0->mdpdc |= (1 << 7); /* SLOW_PD */
541         mmdc0->mapsr = 0x00001006; /* ADOPT power down enabled */
542
543         /* Step 11: Configure ZQ calibration: one-time and periodic 1ms */
544         val = 0xa1390003;
545         mmdc0->mpzqhwctrl = val;
546         if (sysinfo->dsize > 1)
547                 MMDC1(mpzqhwctrl, val);
548
549         /* Step 12: Configure and activate periodic refresh */
550         mmdc0->mdref = (1 << 14) | /* REF_SEL: Periodic refresh cycle: 32kHz */
551                        (7 << 11);  /* REFR: Refresh Rate - 8 refreshes */
552
553         /* Step 13: Deassert config request - init complete */
554         mmdc0->mdscr = 0x00000000;
555
556         /* wait for auto-ZQ calibration to complete */
557         mdelay(1);
558 }