1 // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
3 * (C) Copyright 2016-2017 Rockchip Inc.
5 * Adapted from coreboot.
11 #include <dt-structs.h>
16 #include <asm/arch-rockchip/clock.h>
17 #include <asm/arch-rockchip/cru_rk3399.h>
18 #include <asm/arch-rockchip/grf_rk3399.h>
19 #include <asm/arch-rockchip/hardware.h>
20 #include <asm/arch-rockchip/sdram_common.h>
21 #include <asm/arch-rockchip/sdram_rk3399.h>
22 #include <linux/err.h>
25 #define PRESET_SGRF_HOLD(n) ((0x1 << (6 + 16)) | ((n) << 6))
26 #define PRESET_GPIO0_HOLD(n) ((0x1 << (7 + 16)) | ((n) << 7))
27 #define PRESET_GPIO1_HOLD(n) ((0x1 << (8 + 16)) | ((n) << 8))
29 #define PHY_DRV_ODT_HI_Z 0x0
30 #define PHY_DRV_ODT_240 0x1
31 #define PHY_DRV_ODT_120 0x8
32 #define PHY_DRV_ODT_80 0x9
33 #define PHY_DRV_ODT_60 0xc
34 #define PHY_DRV_ODT_48 0xd
35 #define PHY_DRV_ODT_40 0xe
36 #define PHY_DRV_ODT_34_3 0xf
39 struct rk3399_ddr_pctl_regs *pctl;
40 struct rk3399_ddr_pi_regs *pi;
41 struct rk3399_ddr_publ_regs *publ;
42 struct rk3399_msch_regs *msch;
46 #if defined(CONFIG_TPL_BUILD) || \
47 (!defined(CONFIG_TPL) && defined(CONFIG_SPL_BUILD))
48 struct chan_info chan[2];
50 struct rk3399_cru *cru;
51 struct rk3399_pmucru *pmucru;
52 struct rk3399_pmusgrf_regs *pmusgrf;
53 struct rk3399_ddr_cic_regs *cic;
56 struct rk3399_pmugrf_regs *pmugrf;
59 #if defined(CONFIG_TPL_BUILD) || \
60 (!defined(CONFIG_TPL) && defined(CONFIG_SPL_BUILD))
62 struct rockchip_dmc_plat {
63 #if CONFIG_IS_ENABLED(OF_PLATDATA)
64 struct dtd_rockchip_rk3399_dmc dtplat;
66 struct rk3399_sdram_params sdram_params;
71 static void copy_to_reg(u32 *dest, const u32 *src, u32 n)
75 for (i = 0; i < n / sizeof(u32); i++) {
82 static void phy_dll_bypass_set(struct rk3399_ddr_publ_regs *ddr_publ_regs,
85 u32 *denali_phy = ddr_publ_regs->denali_phy;
87 /* From IP spec, only freq small than 125 can enter dll bypass mode */
89 /* phy_sw_master_mode_X PHY_86/214/342/470 4bits offset_8 */
90 setbits_le32(&denali_phy[86], (0x3 << 2) << 8);
91 setbits_le32(&denali_phy[214], (0x3 << 2) << 8);
92 setbits_le32(&denali_phy[342], (0x3 << 2) << 8);
93 setbits_le32(&denali_phy[470], (0x3 << 2) << 8);
95 /* phy_adrctl_sw_master_mode PHY_547/675/803 4bits offset_16 */
96 setbits_le32(&denali_phy[547], (0x3 << 2) << 16);
97 setbits_le32(&denali_phy[675], (0x3 << 2) << 16);
98 setbits_le32(&denali_phy[803], (0x3 << 2) << 16);
100 /* phy_sw_master_mode_X PHY_86/214/342/470 4bits offset_8 */
101 clrbits_le32(&denali_phy[86], (0x3 << 2) << 8);
102 clrbits_le32(&denali_phy[214], (0x3 << 2) << 8);
103 clrbits_le32(&denali_phy[342], (0x3 << 2) << 8);
104 clrbits_le32(&denali_phy[470], (0x3 << 2) << 8);
106 /* phy_adrctl_sw_master_mode PHY_547/675/803 4bits offset_16 */
107 clrbits_le32(&denali_phy[547], (0x3 << 2) << 16);
108 clrbits_le32(&denali_phy[675], (0x3 << 2) << 16);
109 clrbits_le32(&denali_phy[803], (0x3 << 2) << 16);
113 static void set_memory_map(const struct chan_info *chan, u32 channel,
114 const struct rk3399_sdram_params *params)
116 const struct rk3399_sdram_channel *sdram_ch = ¶ms->ch[channel];
117 u32 *denali_ctl = chan->pctl->denali_ctl;
118 u32 *denali_pi = chan->pi->denali_pi;
123 /* Get row number from ddrconfig setting */
124 if (sdram_ch->ddrconfig < 2 || sdram_ch->ddrconfig == 4)
126 else if (sdram_ch->ddrconfig == 3)
131 cs_map = (sdram_ch->rank > 1) ? 3 : 1;
132 reduc = (sdram_ch->bw == 2) ? 0 : 1;
134 /* Set the dram configuration to ctrl */
135 clrsetbits_le32(&denali_ctl[191], 0xF, (12 - sdram_ch->col));
136 clrsetbits_le32(&denali_ctl[190], (0x3 << 16) | (0x7 << 24),
137 ((3 - sdram_ch->bk) << 16) |
140 clrsetbits_le32(&denali_ctl[196], 0x3 | (1 << 16),
141 cs_map | (reduc << 16));
143 /* PI_199 PI_COL_DIFF:RW:0:4 */
144 clrsetbits_le32(&denali_pi[199], 0xF, (12 - sdram_ch->col));
146 /* PI_155 PI_ROW_DIFF:RW:24:3 PI_BANK_DIFF:RW:16:2 */
147 clrsetbits_le32(&denali_pi[155], (0x3 << 16) | (0x7 << 24),
148 ((3 - sdram_ch->bk) << 16) |
150 /* PI_41 PI_CS_MAP:RW:24:4 */
151 clrsetbits_le32(&denali_pi[41], 0xf << 24, cs_map << 24);
152 if (sdram_ch->rank == 1 && params->base.dramtype == DDR3)
153 writel(0x2EC7FFFF, &denali_pi[34]);
156 static void set_ds_odt(const struct chan_info *chan,
157 const struct rk3399_sdram_params *params)
159 u32 *denali_phy = chan->publ->denali_phy;
161 u32 tsel_idle_en, tsel_wr_en, tsel_rd_en;
162 u32 tsel_idle_select_p, tsel_wr_select_dq_p, tsel_rd_select_p;
163 u32 ca_tsel_wr_select_p, tsel_wr_select_ca_n;
164 u32 tsel_idle_select_n, tsel_wr_select_dq_n, tsel_rd_select_n;
167 if (params->base.dramtype == LPDDR4) {
168 tsel_rd_select_p = PHY_DRV_ODT_HI_Z;
169 tsel_wr_select_dq_p = PHY_DRV_ODT_40;
170 ca_tsel_wr_select_p = PHY_DRV_ODT_40;
171 tsel_idle_select_p = PHY_DRV_ODT_HI_Z;
173 tsel_rd_select_n = PHY_DRV_ODT_240;
174 tsel_wr_select_dq_n = PHY_DRV_ODT_40;
175 tsel_wr_select_ca_n = PHY_DRV_ODT_40;
176 tsel_idle_select_n = PHY_DRV_ODT_240;
177 } else if (params->base.dramtype == LPDDR3) {
178 tsel_rd_select_p = PHY_DRV_ODT_240;
179 tsel_wr_select_dq_p = PHY_DRV_ODT_34_3;
180 ca_tsel_wr_select_p = PHY_DRV_ODT_48;
181 tsel_idle_select_p = PHY_DRV_ODT_240;
183 tsel_rd_select_n = PHY_DRV_ODT_HI_Z;
184 tsel_wr_select_dq_n = PHY_DRV_ODT_34_3;
185 tsel_wr_select_ca_n = PHY_DRV_ODT_48;
186 tsel_idle_select_n = PHY_DRV_ODT_HI_Z;
188 tsel_rd_select_p = PHY_DRV_ODT_240;
189 tsel_wr_select_dq_p = PHY_DRV_ODT_34_3;
190 ca_tsel_wr_select_p = PHY_DRV_ODT_34_3;
191 tsel_idle_select_p = PHY_DRV_ODT_240;
193 tsel_rd_select_n = PHY_DRV_ODT_240;
194 tsel_wr_select_dq_n = PHY_DRV_ODT_34_3;
195 tsel_wr_select_ca_n = PHY_DRV_ODT_34_3;
196 tsel_idle_select_n = PHY_DRV_ODT_240;
199 if (params->base.odt == 1)
208 * phy_dq_tsel_select_X 24bits DENALI_PHY_6/134/262/390 offset_0
209 * sets termination values for read/idle cycles and drive strength
210 * for write cycles for DQ/DM
212 reg_value = tsel_rd_select_n | (tsel_rd_select_p << 0x4) |
213 (tsel_wr_select_dq_n << 8) | (tsel_wr_select_dq_p << 12) |
214 (tsel_idle_select_n << 16) | (tsel_idle_select_p << 20);
215 clrsetbits_le32(&denali_phy[6], 0xffffff, reg_value);
216 clrsetbits_le32(&denali_phy[134], 0xffffff, reg_value);
217 clrsetbits_le32(&denali_phy[262], 0xffffff, reg_value);
218 clrsetbits_le32(&denali_phy[390], 0xffffff, reg_value);
221 * phy_dqs_tsel_select_X 24bits DENALI_PHY_7/135/263/391 offset_0
222 * sets termination values for read/idle cycles and drive strength
223 * for write cycles for DQS
225 clrsetbits_le32(&denali_phy[7], 0xffffff, reg_value);
226 clrsetbits_le32(&denali_phy[135], 0xffffff, reg_value);
227 clrsetbits_le32(&denali_phy[263], 0xffffff, reg_value);
228 clrsetbits_le32(&denali_phy[391], 0xffffff, reg_value);
230 /* phy_adr_tsel_select_ 8bits DENALI_PHY_544/672/800 offset_0 */
231 reg_value = tsel_wr_select_ca_n | (ca_tsel_wr_select_p << 0x4);
232 clrsetbits_le32(&denali_phy[544], 0xff, reg_value);
233 clrsetbits_le32(&denali_phy[672], 0xff, reg_value);
234 clrsetbits_le32(&denali_phy[800], 0xff, reg_value);
236 /* phy_pad_addr_drive 8bits DENALI_PHY_928 offset_0 */
237 clrsetbits_le32(&denali_phy[928], 0xff, reg_value);
239 /* phy_pad_rst_drive 8bits DENALI_PHY_937 offset_0 */
240 clrsetbits_le32(&denali_phy[937], 0xff, reg_value);
242 /* phy_pad_cke_drive 8bits DENALI_PHY_935 offset_0 */
243 clrsetbits_le32(&denali_phy[935], 0xff, reg_value);
245 /* phy_pad_cs_drive 8bits DENALI_PHY_939 offset_0 */
246 clrsetbits_le32(&denali_phy[939], 0xff, reg_value);
248 /* phy_pad_clk_drive 8bits DENALI_PHY_929 offset_0 */
249 clrsetbits_le32(&denali_phy[929], 0xff, reg_value);
251 /* phy_pad_fdbk_drive 23bit DENALI_PHY_924/925 */
252 clrsetbits_le32(&denali_phy[924], 0xff,
253 tsel_wr_select_dq_n | (tsel_wr_select_dq_p << 4));
254 clrsetbits_le32(&denali_phy[925], 0xff,
255 tsel_rd_select_n | (tsel_rd_select_p << 4));
257 /* phy_dq_tsel_enable_X 3bits DENALI_PHY_5/133/261/389 offset_16 */
258 reg_value = (tsel_rd_en | (tsel_wr_en << 1) | (tsel_idle_en << 2))
260 clrsetbits_le32(&denali_phy[5], 0x7 << 16, reg_value);
261 clrsetbits_le32(&denali_phy[133], 0x7 << 16, reg_value);
262 clrsetbits_le32(&denali_phy[261], 0x7 << 16, reg_value);
263 clrsetbits_le32(&denali_phy[389], 0x7 << 16, reg_value);
265 /* phy_dqs_tsel_enable_X 3bits DENALI_PHY_6/134/262/390 offset_24 */
266 reg_value = (tsel_rd_en | (tsel_wr_en << 1) | (tsel_idle_en << 2))
268 clrsetbits_le32(&denali_phy[6], 0x7 << 24, reg_value);
269 clrsetbits_le32(&denali_phy[134], 0x7 << 24, reg_value);
270 clrsetbits_le32(&denali_phy[262], 0x7 << 24, reg_value);
271 clrsetbits_le32(&denali_phy[390], 0x7 << 24, reg_value);
273 /* phy_adr_tsel_enable_ 1bit DENALI_PHY_518/646/774 offset_8 */
274 reg_value = tsel_wr_en << 8;
275 clrsetbits_le32(&denali_phy[518], 0x1 << 8, reg_value);
276 clrsetbits_le32(&denali_phy[646], 0x1 << 8, reg_value);
277 clrsetbits_le32(&denali_phy[774], 0x1 << 8, reg_value);
279 /* phy_pad_addr_term tsel 1bit DENALI_PHY_933 offset_17 */
280 reg_value = tsel_wr_en << 17;
281 clrsetbits_le32(&denali_phy[933], 0x1 << 17, reg_value);
283 * pad_rst/cke/cs/clk_term tsel 1bits
284 * DENALI_PHY_938/936/940/934 offset_17
286 clrsetbits_le32(&denali_phy[938], 0x1 << 17, reg_value);
287 clrsetbits_le32(&denali_phy[936], 0x1 << 17, reg_value);
288 clrsetbits_le32(&denali_phy[940], 0x1 << 17, reg_value);
289 clrsetbits_le32(&denali_phy[934], 0x1 << 17, reg_value);
291 /* phy_pad_fdbk_term 1bit DENALI_PHY_930 offset_17 */
292 clrsetbits_le32(&denali_phy[930], 0x1 << 17, reg_value);
295 static int phy_io_config(const struct chan_info *chan,
296 const struct rk3399_sdram_params *params)
298 u32 *denali_phy = chan->publ->denali_phy;
299 u32 vref_mode_dq, vref_value_dq, vref_mode_ac, vref_value_ac;
302 u32 drv_value, odt_value;
306 if (params->base.dramtype == LPDDR4) {
309 vref_value_dq = 0x1f;
311 vref_value_ac = 0x1f;
312 } else if (params->base.dramtype == LPDDR3) {
313 if (params->base.odt == 1) {
314 vref_mode_dq = 0x5; /* LPDDR3 ODT */
315 drv_value = (readl(&denali_phy[6]) >> 12) & 0xf;
316 odt_value = (readl(&denali_phy[6]) >> 4) & 0xf;
317 if (drv_value == PHY_DRV_ODT_48) {
319 case PHY_DRV_ODT_240:
320 vref_value_dq = 0x16;
322 case PHY_DRV_ODT_120:
323 vref_value_dq = 0x26;
326 vref_value_dq = 0x36;
329 debug("Invalid ODT value.\n");
332 } else if (drv_value == PHY_DRV_ODT_40) {
334 case PHY_DRV_ODT_240:
335 vref_value_dq = 0x19;
337 case PHY_DRV_ODT_120:
338 vref_value_dq = 0x23;
341 vref_value_dq = 0x31;
344 debug("Invalid ODT value.\n");
347 } else if (drv_value == PHY_DRV_ODT_34_3) {
349 case PHY_DRV_ODT_240:
350 vref_value_dq = 0x17;
352 case PHY_DRV_ODT_120:
353 vref_value_dq = 0x20;
356 vref_value_dq = 0x2e;
359 debug("Invalid ODT value.\n");
363 debug("Invalid DRV value.\n");
367 vref_mode_dq = 0x2; /* LPDDR3 */
368 vref_value_dq = 0x1f;
371 vref_value_ac = 0x1f;
372 } else if (params->base.dramtype == DDR3) {
375 vref_value_dq = 0x1f;
377 vref_value_ac = 0x1f;
379 debug("Unknown DRAM type.\n");
383 reg_value = (vref_mode_dq << 9) | (0x1 << 8) | vref_value_dq;
385 /* PHY_913 PHY_PAD_VREF_CTRL_DQ_0 12bits offset_8 */
386 clrsetbits_le32(&denali_phy[913], 0xfff << 8, reg_value << 8);
387 /* PHY_914 PHY_PAD_VREF_CTRL_DQ_1 12bits offset_0 */
388 clrsetbits_le32(&denali_phy[914], 0xfff, reg_value);
389 /* PHY_914 PHY_PAD_VREF_CTRL_DQ_2 12bits offset_16 */
390 clrsetbits_le32(&denali_phy[914], 0xfff << 16, reg_value << 16);
391 /* PHY_915 PHY_PAD_VREF_CTRL_DQ_3 12bits offset_0 */
392 clrsetbits_le32(&denali_phy[915], 0xfff, reg_value);
394 reg_value = (vref_mode_ac << 9) | (0x1 << 8) | vref_value_ac;
396 /* PHY_915 PHY_PAD_VREF_CTRL_AC 12bits offset_16 */
397 clrsetbits_le32(&denali_phy[915], 0xfff << 16, reg_value << 16);
399 if (params->base.dramtype == LPDDR4)
401 else if (params->base.dramtype == LPDDR3)
403 else if (params->base.dramtype == DDR3)
408 /* PHY_924 PHY_PAD_FDBK_DRIVE */
409 clrsetbits_le32(&denali_phy[924], 0x7 << 15, mode_sel << 15);
410 /* PHY_926 PHY_PAD_DATA_DRIVE */
411 clrsetbits_le32(&denali_phy[926], 0x7 << 6, mode_sel << 6);
412 /* PHY_927 PHY_PAD_DQS_DRIVE */
413 clrsetbits_le32(&denali_phy[927], 0x7 << 6, mode_sel << 6);
414 /* PHY_928 PHY_PAD_ADDR_DRIVE */
415 clrsetbits_le32(&denali_phy[928], 0x7 << 14, mode_sel << 14);
416 /* PHY_929 PHY_PAD_CLK_DRIVE */
417 clrsetbits_le32(&denali_phy[929], 0x7 << 14, mode_sel << 14);
418 /* PHY_935 PHY_PAD_CKE_DRIVE */
419 clrsetbits_le32(&denali_phy[935], 0x7 << 14, mode_sel << 14);
420 /* PHY_937 PHY_PAD_RST_DRIVE */
421 clrsetbits_le32(&denali_phy[937], 0x7 << 14, mode_sel << 14);
422 /* PHY_939 PHY_PAD_CS_DRIVE */
423 clrsetbits_le32(&denali_phy[939], 0x7 << 14, mode_sel << 14);
426 if (params->base.ddr_freq < 400)
428 else if (params->base.ddr_freq < 800)
430 else if (params->base.ddr_freq < 1200)
435 /* PHY_924 PHY_PAD_FDBK_DRIVE */
436 clrsetbits_le32(&denali_phy[924], 0x3 << 21, speed << 21);
437 /* PHY_926 PHY_PAD_DATA_DRIVE */
438 clrsetbits_le32(&denali_phy[926], 0x3 << 9, speed << 9);
439 /* PHY_927 PHY_PAD_DQS_DRIVE */
440 clrsetbits_le32(&denali_phy[927], 0x3 << 9, speed << 9);
441 /* PHY_928 PHY_PAD_ADDR_DRIVE */
442 clrsetbits_le32(&denali_phy[928], 0x3 << 17, speed << 17);
443 /* PHY_929 PHY_PAD_CLK_DRIVE */
444 clrsetbits_le32(&denali_phy[929], 0x3 << 17, speed << 17);
445 /* PHY_935 PHY_PAD_CKE_DRIVE */
446 clrsetbits_le32(&denali_phy[935], 0x3 << 17, speed << 17);
447 /* PHY_937 PHY_PAD_RST_DRIVE */
448 clrsetbits_le32(&denali_phy[937], 0x3 << 17, speed << 17);
449 /* PHY_939 PHY_PAD_CS_DRIVE */
450 clrsetbits_le32(&denali_phy[939], 0x3 << 17, speed << 17);
455 static int pctl_cfg(const struct chan_info *chan, u32 channel,
456 const struct rk3399_sdram_params *params)
458 u32 *denali_ctl = chan->pctl->denali_ctl;
459 u32 *denali_pi = chan->pi->denali_pi;
460 u32 *denali_phy = chan->publ->denali_phy;
461 const u32 *params_ctl = params->pctl_regs.denali_ctl;
462 const u32 *params_phy = params->phy_regs.denali_phy;
464 u32 pwrup_srefresh_exit;
466 const ulong timeout_ms = 200;
469 * work around controller bug:
470 * Do not program DRAM_CLASS until NO_PHY_IND_TRAIN_INT is programmed
472 copy_to_reg(&denali_ctl[1], ¶ms_ctl[1],
473 sizeof(struct rk3399_ddr_pctl_regs) - 4);
474 writel(params_ctl[0], &denali_ctl[0]);
476 copy_to_reg(denali_pi, ¶ms->pi_regs.denali_pi[0],
477 sizeof(struct rk3399_ddr_pi_regs));
479 /* rank count need to set for init */
480 set_memory_map(chan, channel, params);
482 writel(params->phy_regs.denali_phy[910], &denali_phy[910]);
483 writel(params->phy_regs.denali_phy[911], &denali_phy[911]);
484 writel(params->phy_regs.denali_phy[912], &denali_phy[912]);
486 pwrup_srefresh_exit = readl(&denali_ctl[68]) & PWRUP_SREFRESH_EXIT;
487 clrbits_le32(&denali_ctl[68], PWRUP_SREFRESH_EXIT);
490 clrsetbits_le32(&denali_phy[957], 0x3 << 24, 1 << 24);
492 setbits_le32(&denali_pi[0], START);
493 setbits_le32(&denali_ctl[0], START);
495 /* Waiting for phy DLL lock */
497 tmp = readl(&denali_phy[920]);
498 tmp1 = readl(&denali_phy[921]);
499 tmp2 = readl(&denali_phy[922]);
500 if ((((tmp >> 16) & 0x1) == 0x1) &&
501 (((tmp1 >> 16) & 0x1) == 0x1) &&
502 (((tmp1 >> 0) & 0x1) == 0x1) &&
503 (((tmp2 >> 0) & 0x1) == 0x1))
507 copy_to_reg(&denali_phy[896], ¶ms_phy[896], (958 - 895) * 4);
508 copy_to_reg(&denali_phy[0], ¶ms_phy[0], (90 - 0 + 1) * 4);
509 copy_to_reg(&denali_phy[128], ¶ms_phy[128], (218 - 128 + 1) * 4);
510 copy_to_reg(&denali_phy[256], ¶ms_phy[256], (346 - 256 + 1) * 4);
511 copy_to_reg(&denali_phy[384], ¶ms_phy[384], (474 - 384 + 1) * 4);
512 copy_to_reg(&denali_phy[512], ¶ms_phy[512], (549 - 512 + 1) * 4);
513 copy_to_reg(&denali_phy[640], ¶ms_phy[640], (677 - 640 + 1) * 4);
514 copy_to_reg(&denali_phy[768], ¶ms_phy[768], (805 - 768 + 1) * 4);
515 set_ds_odt(chan, params);
518 * phy_dqs_tsel_wr_timing_X 8bits DENALI_PHY_84/212/340/468 offset_8
519 * dqs_tsel_wr_end[7:4] add Half cycle
521 tmp = (readl(&denali_phy[84]) >> 8) & 0xff;
522 clrsetbits_le32(&denali_phy[84], 0xff << 8, (tmp + 0x10) << 8);
523 tmp = (readl(&denali_phy[212]) >> 8) & 0xff;
524 clrsetbits_le32(&denali_phy[212], 0xff << 8, (tmp + 0x10) << 8);
525 tmp = (readl(&denali_phy[340]) >> 8) & 0xff;
526 clrsetbits_le32(&denali_phy[340], 0xff << 8, (tmp + 0x10) << 8);
527 tmp = (readl(&denali_phy[468]) >> 8) & 0xff;
528 clrsetbits_le32(&denali_phy[468], 0xff << 8, (tmp + 0x10) << 8);
531 * phy_dqs_tsel_wr_timing_X 8bits DENALI_PHY_83/211/339/467 offset_8
532 * dq_tsel_wr_end[7:4] add Half cycle
534 tmp = (readl(&denali_phy[83]) >> 16) & 0xff;
535 clrsetbits_le32(&denali_phy[83], 0xff << 16, (tmp + 0x10) << 16);
536 tmp = (readl(&denali_phy[211]) >> 16) & 0xff;
537 clrsetbits_le32(&denali_phy[211], 0xff << 16, (tmp + 0x10) << 16);
538 tmp = (readl(&denali_phy[339]) >> 16) & 0xff;
539 clrsetbits_le32(&denali_phy[339], 0xff << 16, (tmp + 0x10) << 16);
540 tmp = (readl(&denali_phy[467]) >> 16) & 0xff;
541 clrsetbits_le32(&denali_phy[467], 0xff << 16, (tmp + 0x10) << 16);
543 ret = phy_io_config(chan, params);
548 clrsetbits_le32(&denali_phy[957], 0x3 << 24, 0x2 << 24);
550 /* Waiting for PHY and DRAM init complete */
553 if (get_timer(tmp) > timeout_ms) {
554 pr_err("DRAM (%s): phy failed to lock within %ld ms\n",
555 __func__, timeout_ms);
558 } while (!(readl(&denali_ctl[203]) & (1 << 3)));
559 debug("DRAM (%s): phy locked after %ld ms\n", __func__, get_timer(tmp));
561 clrsetbits_le32(&denali_ctl[68], PWRUP_SREFRESH_EXIT,
562 pwrup_srefresh_exit);
566 static void select_per_cs_training_index(const struct chan_info *chan,
569 u32 *denali_phy = chan->publ->denali_phy;
571 /* PHY_84 PHY_PER_CS_TRAINING_EN_0 1bit offset_16 */
572 if ((readl(&denali_phy[84]) >> 16) & 1) {
575 * phy_per_cs_training_index_X 1bit offset_24
577 clrsetbits_le32(&denali_phy[8], 0x1 << 24, rank << 24);
578 clrsetbits_le32(&denali_phy[136], 0x1 << 24, rank << 24);
579 clrsetbits_le32(&denali_phy[264], 0x1 << 24, rank << 24);
580 clrsetbits_le32(&denali_phy[392], 0x1 << 24, rank << 24);
584 static void override_write_leveling_value(const struct chan_info *chan)
586 u32 *denali_ctl = chan->pctl->denali_ctl;
587 u32 *denali_phy = chan->publ->denali_phy;
590 /* PHY_896 PHY_FREQ_SEL_MULTICAST_EN 1bit offset_0 */
591 setbits_le32(&denali_phy[896], 1);
595 * phy_per_cs_training_multicast_en_X 1bit offset_16
597 clrsetbits_le32(&denali_phy[8], 0x1 << 16, 1 << 16);
598 clrsetbits_le32(&denali_phy[136], 0x1 << 16, 1 << 16);
599 clrsetbits_le32(&denali_phy[264], 0x1 << 16, 1 << 16);
600 clrsetbits_le32(&denali_phy[392], 0x1 << 16, 1 << 16);
602 for (byte = 0; byte < 4; byte++)
603 clrsetbits_le32(&denali_phy[63 + (128 * byte)], 0xffff << 16,
606 /* PHY_896 PHY_FREQ_SEL_MULTICAST_EN 1bit offset_0 */
607 clrbits_le32(&denali_phy[896], 1);
609 /* CTL_200 ctrlupd_req 1bit offset_8 */
610 clrsetbits_le32(&denali_ctl[200], 0x1 << 8, 0x1 << 8);
613 static int data_training_ca(const struct chan_info *chan, u32 channel,
614 const struct rk3399_sdram_params *params)
616 u32 *denali_pi = chan->pi->denali_pi;
617 u32 *denali_phy = chan->publ->denali_phy;
619 u32 obs_0, obs_1, obs_2, obs_err = 0;
620 u32 rank = params->ch[channel].rank;
622 for (i = 0; i < rank; i++) {
623 select_per_cs_training_index(chan, i);
625 /* PI_100 PI_CALVL_EN:RW:8:2 */
626 clrsetbits_le32(&denali_pi[100], 0x3 << 8, 0x2 << 8);
628 /* PI_92 PI_CALVL_REQ:WR:16:1,PI_CALVL_CS:RW:24:2 */
629 clrsetbits_le32(&denali_pi[92],
630 (0x1 << 16) | (0x3 << 24),
631 (0x1 << 16) | (i << 24));
633 /* Waiting for training complete */
635 /* PI_174 PI_INT_STATUS:RD:8:18 */
636 tmp = readl(&denali_pi[174]) >> 8;
639 * PHY_532/660/789 phy_adr_calvl_obs1_:0:32
641 obs_0 = readl(&denali_phy[532]);
642 obs_1 = readl(&denali_phy[660]);
643 obs_2 = readl(&denali_phy[788]);
644 if (((obs_0 >> 30) & 0x3) ||
645 ((obs_1 >> 30) & 0x3) ||
646 ((obs_2 >> 30) & 0x3))
648 if ((((tmp >> 11) & 0x1) == 0x1) &&
649 (((tmp >> 13) & 0x1) == 0x1) &&
650 (((tmp >> 5) & 0x1) == 0x0) &&
653 else if ((((tmp >> 5) & 0x1) == 0x1) ||
658 /* clear interrupt,PI_175 PI_INT_ACK:WR:0:17 */
659 writel(0x00003f7c, (&denali_pi[175]));
662 clrbits_le32(&denali_pi[100], 0x3 << 8);
667 static int data_training_wl(const struct chan_info *chan, u32 channel,
668 const struct rk3399_sdram_params *params)
670 u32 *denali_pi = chan->pi->denali_pi;
671 u32 *denali_phy = chan->publ->denali_phy;
673 u32 obs_0, obs_1, obs_2, obs_3, obs_err = 0;
674 u32 rank = params->ch[channel].rank;
676 for (i = 0; i < rank; i++) {
677 select_per_cs_training_index(chan, i);
679 /* PI_60 PI_WRLVL_EN:RW:8:2 */
680 clrsetbits_le32(&denali_pi[60], 0x3 << 8, 0x2 << 8);
682 /* PI_59 PI_WRLVL_REQ:WR:8:1,PI_WRLVL_CS:RW:16:2 */
683 clrsetbits_le32(&denali_pi[59],
684 (0x1 << 8) | (0x3 << 16),
685 (0x1 << 8) | (i << 16));
687 /* Waiting for training complete */
689 /* PI_174 PI_INT_STATUS:RD:8:18 */
690 tmp = readl(&denali_pi[174]) >> 8;
693 * check status obs, if error maybe can not
694 * get leveling done PHY_40/168/296/424
695 * phy_wrlvl_status_obs_X:0:13
697 obs_0 = readl(&denali_phy[40]);
698 obs_1 = readl(&denali_phy[168]);
699 obs_2 = readl(&denali_phy[296]);
700 obs_3 = readl(&denali_phy[424]);
701 if (((obs_0 >> 12) & 0x1) ||
702 ((obs_1 >> 12) & 0x1) ||
703 ((obs_2 >> 12) & 0x1) ||
704 ((obs_3 >> 12) & 0x1))
706 if ((((tmp >> 10) & 0x1) == 0x1) &&
707 (((tmp >> 13) & 0x1) == 0x1) &&
708 (((tmp >> 4) & 0x1) == 0x0) &&
711 else if ((((tmp >> 4) & 0x1) == 0x1) ||
716 /* clear interrupt,PI_175 PI_INT_ACK:WR:0:17 */
717 writel(0x00003f7c, (&denali_pi[175]));
720 override_write_leveling_value(chan);
721 clrbits_le32(&denali_pi[60], 0x3 << 8);
726 static int data_training_rg(const struct chan_info *chan, u32 channel,
727 const struct rk3399_sdram_params *params)
729 u32 *denali_pi = chan->pi->denali_pi;
730 u32 *denali_phy = chan->publ->denali_phy;
732 u32 obs_0, obs_1, obs_2, obs_3, obs_err = 0;
733 u32 rank = params->ch[channel].rank;
735 for (i = 0; i < rank; i++) {
736 select_per_cs_training_index(chan, i);
738 /* PI_80 PI_RDLVL_GATE_EN:RW:24:2 */
739 clrsetbits_le32(&denali_pi[80], 0x3 << 24, 0x2 << 24);
742 * PI_74 PI_RDLVL_GATE_REQ:WR:16:1
743 * PI_RDLVL_CS:RW:24:2
745 clrsetbits_le32(&denali_pi[74],
746 (0x1 << 16) | (0x3 << 24),
747 (0x1 << 16) | (i << 24));
749 /* Waiting for training complete */
751 /* PI_174 PI_INT_STATUS:RD:8:18 */
752 tmp = readl(&denali_pi[174]) >> 8;
757 * PHY_GTLVL_STATUS_OBS_x:16:8
759 obs_0 = readl(&denali_phy[43]);
760 obs_1 = readl(&denali_phy[171]);
761 obs_2 = readl(&denali_phy[299]);
762 obs_3 = readl(&denali_phy[427]);
763 if (((obs_0 >> (16 + 6)) & 0x3) ||
764 ((obs_1 >> (16 + 6)) & 0x3) ||
765 ((obs_2 >> (16 + 6)) & 0x3) ||
766 ((obs_3 >> (16 + 6)) & 0x3))
768 if ((((tmp >> 9) & 0x1) == 0x1) &&
769 (((tmp >> 13) & 0x1) == 0x1) &&
770 (((tmp >> 3) & 0x1) == 0x0) &&
773 else if ((((tmp >> 3) & 0x1) == 0x1) ||
778 /* clear interrupt,PI_175 PI_INT_ACK:WR:0:17 */
779 writel(0x00003f7c, (&denali_pi[175]));
782 clrbits_le32(&denali_pi[80], 0x3 << 24);
787 static int data_training_rl(const struct chan_info *chan, u32 channel,
788 const struct rk3399_sdram_params *params)
790 u32 *denali_pi = chan->pi->denali_pi;
792 u32 rank = params->ch[channel].rank;
794 for (i = 0; i < rank; i++) {
795 select_per_cs_training_index(chan, i);
797 /* PI_80 PI_RDLVL_EN:RW:16:2 */
798 clrsetbits_le32(&denali_pi[80], 0x3 << 16, 0x2 << 16);
800 /* PI_74 PI_RDLVL_REQ:WR:8:1,PI_RDLVL_CS:RW:24:2 */
801 clrsetbits_le32(&denali_pi[74],
802 (0x1 << 8) | (0x3 << 24),
803 (0x1 << 8) | (i << 24));
805 /* Waiting for training complete */
807 /* PI_174 PI_INT_STATUS:RD:8:18 */
808 tmp = readl(&denali_pi[174]) >> 8;
811 * make sure status obs not report error bit
813 * phy_rdlvl_status_obs_X:16:8
815 if ((((tmp >> 8) & 0x1) == 0x1) &&
816 (((tmp >> 13) & 0x1) == 0x1) &&
817 (((tmp >> 2) & 0x1) == 0x0))
819 else if (((tmp >> 2) & 0x1) == 0x1)
823 /* clear interrupt,PI_175 PI_INT_ACK:WR:0:17 */
824 writel(0x00003f7c, (&denali_pi[175]));
827 clrbits_le32(&denali_pi[80], 0x3 << 16);
832 static int data_training_wdql(const struct chan_info *chan, u32 channel,
833 const struct rk3399_sdram_params *params)
835 u32 *denali_pi = chan->pi->denali_pi;
837 u32 rank = params->ch[channel].rank;
839 for (i = 0; i < rank; i++) {
840 select_per_cs_training_index(chan, i);
843 * disable PI_WDQLVL_VREF_EN before wdq leveling?
844 * PI_181 PI_WDQLVL_VREF_EN:RW:8:1
846 clrbits_le32(&denali_pi[181], 0x1 << 8);
848 /* PI_124 PI_WDQLVL_EN:RW:16:2 */
849 clrsetbits_le32(&denali_pi[124], 0x3 << 16, 0x2 << 16);
851 /* PI_121 PI_WDQLVL_REQ:WR:8:1,PI_WDQLVL_CS:RW:16:2 */
852 clrsetbits_le32(&denali_pi[121],
853 (0x1 << 8) | (0x3 << 16),
854 (0x1 << 8) | (i << 16));
856 /* Waiting for training complete */
858 /* PI_174 PI_INT_STATUS:RD:8:18 */
859 tmp = readl(&denali_pi[174]) >> 8;
860 if ((((tmp >> 12) & 0x1) == 0x1) &&
861 (((tmp >> 13) & 0x1) == 0x1) &&
862 (((tmp >> 6) & 0x1) == 0x0))
864 else if (((tmp >> 6) & 0x1) == 0x1)
868 /* clear interrupt,PI_175 PI_INT_ACK:WR:0:17 */
869 writel(0x00003f7c, (&denali_pi[175]));
872 clrbits_le32(&denali_pi[124], 0x3 << 16);
877 static int data_training(const struct chan_info *chan, u32 channel,
878 const struct rk3399_sdram_params *params,
881 u32 *denali_phy = chan->publ->denali_phy;
883 /* PHY_927 PHY_PAD_DQS_DRIVE RPULL offset_22 */
884 setbits_le32(&denali_phy[927], (1 << 22));
886 if (training_flag == PI_FULL_TRAINING) {
887 if (params->base.dramtype == LPDDR4) {
888 training_flag = PI_CA_TRAINING | PI_WRITE_LEVELING |
889 PI_READ_GATE_TRAINING |
890 PI_READ_LEVELING | PI_WDQ_LEVELING;
891 } else if (params->base.dramtype == LPDDR3) {
892 training_flag = PI_CA_TRAINING | PI_WRITE_LEVELING |
893 PI_READ_GATE_TRAINING;
894 } else if (params->base.dramtype == DDR3) {
895 training_flag = PI_WRITE_LEVELING |
896 PI_READ_GATE_TRAINING |
901 /* ca training(LPDDR4,LPDDR3 support) */
902 if ((training_flag & PI_CA_TRAINING) == PI_CA_TRAINING)
903 data_training_ca(chan, channel, params);
905 /* write leveling(LPDDR4,LPDDR3,DDR3 support) */
906 if ((training_flag & PI_WRITE_LEVELING) == PI_WRITE_LEVELING)
907 data_training_wl(chan, channel, params);
909 /* read gate training(LPDDR4,LPDDR3,DDR3 support) */
910 if ((training_flag & PI_READ_GATE_TRAINING) == PI_READ_GATE_TRAINING)
911 data_training_rg(chan, channel, params);
913 /* read leveling(LPDDR4,LPDDR3,DDR3 support) */
914 if ((training_flag & PI_READ_LEVELING) == PI_READ_LEVELING)
915 data_training_rl(chan, channel, params);
917 /* wdq leveling(LPDDR4 support) */
918 if ((training_flag & PI_WDQ_LEVELING) == PI_WDQ_LEVELING)
919 data_training_wdql(chan, channel, params);
921 /* PHY_927 PHY_PAD_DQS_DRIVE RPULL offset_22 */
922 clrbits_le32(&denali_phy[927], (1 << 22));
927 static void set_ddrconfig(const struct chan_info *chan,
928 const struct rk3399_sdram_params *params,
929 unsigned char channel, u32 ddrconfig)
931 /* only need to set ddrconfig */
932 struct rk3399_msch_regs *ddr_msch_regs = chan->msch;
933 unsigned int cs0_cap = 0;
934 unsigned int cs1_cap = 0;
936 cs0_cap = (1 << (params->ch[channel].cs0_row
937 + params->ch[channel].col
938 + params->ch[channel].bk
939 + params->ch[channel].bw - 20));
940 if (params->ch[channel].rank > 1)
941 cs1_cap = cs0_cap >> (params->ch[channel].cs0_row
942 - params->ch[channel].cs1_row);
943 if (params->ch[channel].row_3_4) {
944 cs0_cap = cs0_cap * 3 / 4;
945 cs1_cap = cs1_cap * 3 / 4;
948 writel(ddrconfig | (ddrconfig << 8), &ddr_msch_regs->ddrconf);
949 writel(((cs0_cap / 32) & 0xff) | (((cs1_cap / 32) & 0xff) << 8),
950 &ddr_msch_regs->ddrsize);
953 static void dram_all_config(struct dram_info *dram,
954 const struct rk3399_sdram_params *params)
957 unsigned int channel, idx;
959 sys_reg |= params->base.dramtype << SYS_REG_DDRTYPE_SHIFT;
960 sys_reg |= (params->base.num_channels - 1) << SYS_REG_NUM_CH_SHIFT;
962 for (channel = 0, idx = 0;
963 (idx < params->base.num_channels) && (channel < 2);
965 const struct rk3399_sdram_channel *info = ¶ms->ch[channel];
966 struct rk3399_msch_regs *ddr_msch_regs;
967 const struct rk3399_msch_timings *noc_timing;
969 if (params->ch[channel].col == 0)
972 sys_reg |= info->row_3_4 << SYS_REG_ROW_3_4_SHIFT(channel);
973 sys_reg |= 1 << SYS_REG_CHINFO_SHIFT(channel);
974 sys_reg |= (info->rank - 1) << SYS_REG_RANK_SHIFT(channel);
975 sys_reg |= (info->col - 9) << SYS_REG_COL_SHIFT(channel);
976 sys_reg |= info->bk == 3 ? 0 : 1 << SYS_REG_BK_SHIFT(channel);
977 sys_reg |= (info->cs0_row - 13) <<
978 SYS_REG_CS0_ROW_SHIFT(channel);
979 sys_reg |= (info->cs1_row - 13) <<
980 SYS_REG_CS1_ROW_SHIFT(channel);
981 sys_reg |= (2 >> info->bw) << SYS_REG_BW_SHIFT(channel);
982 sys_reg |= (2 >> info->dbw) << SYS_REG_DBW_SHIFT(channel);
984 ddr_msch_regs = dram->chan[channel].msch;
985 noc_timing = ¶ms->ch[channel].noc_timings;
986 writel(noc_timing->ddrtiminga0,
987 &ddr_msch_regs->ddrtiminga0);
988 writel(noc_timing->ddrtimingb0,
989 &ddr_msch_regs->ddrtimingb0);
990 writel(noc_timing->ddrtimingc0,
991 &ddr_msch_regs->ddrtimingc0);
992 writel(noc_timing->devtodev0,
993 &ddr_msch_regs->devtodev0);
994 writel(noc_timing->ddrmode,
995 &ddr_msch_regs->ddrmode);
997 /* rank 1 memory clock disable (dfi_dram_clk_disable = 1) */
998 if (params->ch[channel].rank == 1)
999 setbits_le32(&dram->chan[channel].pctl->denali_ctl[276],
1003 writel(sys_reg, &dram->pmugrf->os_reg2);
1004 rk_clrsetreg(&dram->pmusgrf->soc_con4, 0x1f << 10,
1005 params->base.stride << 10);
1007 /* reboot hold register set */
1008 writel(PRESET_SGRF_HOLD(0) | PRESET_GPIO0_HOLD(1) |
1009 PRESET_GPIO1_HOLD(1),
1010 &dram->pmucru->pmucru_rstnhold_con[1]);
1011 clrsetbits_le32(&dram->cru->glb_rst_con, 0x3, 0x3);
1014 static int switch_to_phy_index1(struct dram_info *dram,
1015 const struct rk3399_sdram_params *params)
1019 u32 ch_count = params->base.num_channels;
1023 writel(RK_CLRSETBITS(0x03 << 4 | 1 << 2 | 1,
1024 1 << 4 | 1 << 2 | 1),
1025 &dram->cic->cic_ctrl0);
1026 while (!(readl(&dram->cic->cic_status0) & (1 << 2))) {
1030 debug("index1 frequency change overtime\n");
1036 writel(RK_CLRSETBITS(1 << 1, 1 << 1), &dram->cic->cic_ctrl0);
1037 while (!(readl(&dram->cic->cic_status0) & (1 << 0))) {
1041 debug("index1 frequency done overtime\n");
1046 for (channel = 0; channel < ch_count; channel++) {
1047 denali_phy = dram->chan[channel].publ->denali_phy;
1048 clrsetbits_le32(&denali_phy[896], (0x3 << 8) | 1, 1 << 8);
1049 ret = data_training(&dram->chan[channel], channel,
1050 params, PI_FULL_TRAINING);
1052 debug("index1 training failed\n");
1060 static int sdram_init(struct dram_info *dram,
1061 const struct rk3399_sdram_params *params)
1063 unsigned char dramtype = params->base.dramtype;
1064 unsigned int ddr_freq = params->base.ddr_freq;
1068 debug("Starting SDRAM initialization...\n");
1070 if ((dramtype == DDR3 && ddr_freq > 933) ||
1071 (dramtype == LPDDR3 && ddr_freq > 933) ||
1072 (dramtype == LPDDR4 && ddr_freq > 800)) {
1073 debug("SDRAM frequency is to high!");
1077 for (channel = 0; channel < 2; channel++) {
1078 const struct chan_info *chan = &dram->chan[channel];
1079 struct rk3399_ddr_publ_regs *publ = chan->publ;
1081 phy_dll_bypass_set(publ, ddr_freq);
1083 if (channel >= params->base.num_channels)
1086 ret = pctl_cfg(chan, channel, params);
1088 printf("%s: pctl config failed\n", __func__);
1092 /* LPDDR2/LPDDR3 need to wait DAI complete, max 10us */
1093 if (dramtype == LPDDR3)
1096 if (data_training(chan, channel, params, PI_FULL_TRAINING)) {
1097 printf("SDRAM initialization failed, reset\n");
1101 set_ddrconfig(chan, params, channel,
1102 params->ch[channel].ddrconfig);
1104 dram_all_config(dram, params);
1105 switch_to_phy_index1(dram, params);
1107 debug("Finish SDRAM initialization...\n");
1111 static int rk3399_dmc_ofdata_to_platdata(struct udevice *dev)
1113 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
1114 struct rockchip_dmc_plat *plat = dev_get_platdata(dev);
1117 ret = dev_read_u32_array(dev, "rockchip,sdram-params",
1118 (u32 *)&plat->sdram_params,
1119 sizeof(plat->sdram_params) / sizeof(u32));
1121 printf("%s: Cannot read rockchip,sdram-params %d\n",
1125 ret = regmap_init_mem(dev_ofnode(dev), &plat->map);
1127 printf("%s: regmap failed %d\n", __func__, ret);
1133 #if CONFIG_IS_ENABLED(OF_PLATDATA)
1134 static int conv_of_platdata(struct udevice *dev)
1136 struct rockchip_dmc_plat *plat = dev_get_platdata(dev);
1137 struct dtd_rockchip_rk3399_dmc *dtplat = &plat->dtplat;
1140 ret = regmap_init_mem_platdata(dev, dtplat->reg,
1141 ARRAY_SIZE(dtplat->reg) / 2,
1150 static int rk3399_dmc_init(struct udevice *dev)
1152 struct dram_info *priv = dev_get_priv(dev);
1153 struct rockchip_dmc_plat *plat = dev_get_platdata(dev);
1155 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
1156 struct rk3399_sdram_params *params = &plat->sdram_params;
1158 struct dtd_rockchip_rk3399_dmc *dtplat = &plat->dtplat;
1159 struct rk3399_sdram_params *params =
1160 (void *)dtplat->rockchip_sdram_params;
1162 ret = conv_of_platdata(dev);
1167 priv->cic = syscon_get_first_range(ROCKCHIP_SYSCON_CIC);
1168 priv->pmugrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUGRF);
1169 priv->pmusgrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUSGRF);
1170 priv->pmucru = rockchip_get_pmucru();
1171 priv->cru = rockchip_get_cru();
1172 priv->chan[0].pctl = regmap_get_range(plat->map, 0);
1173 priv->chan[0].pi = regmap_get_range(plat->map, 1);
1174 priv->chan[0].publ = regmap_get_range(plat->map, 2);
1175 priv->chan[0].msch = regmap_get_range(plat->map, 3);
1176 priv->chan[1].pctl = regmap_get_range(plat->map, 4);
1177 priv->chan[1].pi = regmap_get_range(plat->map, 5);
1178 priv->chan[1].publ = regmap_get_range(plat->map, 6);
1179 priv->chan[1].msch = regmap_get_range(plat->map, 7);
1181 debug("con reg %p %p %p %p %p %p %p %p\n",
1182 priv->chan[0].pctl, priv->chan[0].pi,
1183 priv->chan[0].publ, priv->chan[0].msch,
1184 priv->chan[1].pctl, priv->chan[1].pi,
1185 priv->chan[1].publ, priv->chan[1].msch);
1186 debug("cru %p, cic %p, grf %p, sgrf %p, pmucru %p\n", priv->cru,
1187 priv->cic, priv->pmugrf, priv->pmusgrf, priv->pmucru);
1189 #if CONFIG_IS_ENABLED(OF_PLATDATA)
1190 ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &priv->ddr_clk);
1192 ret = clk_get_by_index(dev, 0, &priv->ddr_clk);
1195 printf("%s clk get failed %d\n", __func__, ret);
1199 ret = clk_set_rate(&priv->ddr_clk, params->base.ddr_freq * MHz);
1201 printf("%s clk set failed %d\n", __func__, ret);
1205 ret = sdram_init(priv, params);
1207 printf("%s DRAM init failed %d\n", __func__, ret);
1215 static int rk3399_dmc_probe(struct udevice *dev)
1217 #if defined(CONFIG_TPL_BUILD) || \
1218 (!defined(CONFIG_TPL) && defined(CONFIG_SPL_BUILD))
1219 if (rk3399_dmc_init(dev))
1222 struct dram_info *priv = dev_get_priv(dev);
1224 priv->pmugrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUGRF);
1225 debug("%s: pmugrf = %p\n", __func__, priv->pmugrf);
1226 priv->info.base = CONFIG_SYS_SDRAM_BASE;
1228 rockchip_sdram_size((phys_addr_t)&priv->pmugrf->os_reg2);
1233 static int rk3399_dmc_get_info(struct udevice *dev, struct ram_info *info)
1235 struct dram_info *priv = dev_get_priv(dev);
1242 static struct ram_ops rk3399_dmc_ops = {
1243 .get_info = rk3399_dmc_get_info,
1246 static const struct udevice_id rk3399_dmc_ids[] = {
1247 { .compatible = "rockchip,rk3399-dmc" },
1251 U_BOOT_DRIVER(dmc_rk3399) = {
1252 .name = "rockchip_rk3399_dmc",
1254 .of_match = rk3399_dmc_ids,
1255 .ops = &rk3399_dmc_ops,
1256 #if defined(CONFIG_TPL_BUILD) || \
1257 (!defined(CONFIG_TPL) && defined(CONFIG_SPL_BUILD))
1258 .ofdata_to_platdata = rk3399_dmc_ofdata_to_platdata,
1260 .probe = rk3399_dmc_probe,
1261 .priv_auto_alloc_size = sizeof(struct dram_info),
1262 #if defined(CONFIG_TPL_BUILD) || \
1263 (!defined(CONFIG_TPL) && defined(CONFIG_SPL_BUILD))
1264 .platdata_auto_alloc_size = sizeof(struct rockchip_dmc_plat),