blob: 1a3b136529e03a32e4a3a3bfd3ad5fbef511b359 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
vpeter478506c22015-08-03 12:49:05 +02002/*
3 * Copyright (C) 2015 Udoo
4 * Author: Tungyi Lin <tungyilin1127@gmail.com>
5 * Richard Hu <hakahu@gmail.com>
6 * Based on board/wandboard/spl.c
vpeter478506c22015-08-03 12:49:05 +02007 */
8
Simon Glassc3dc39a2020-05-10 11:39:55 -06009#include <common.h>
vpeter478506c22015-08-03 12:49:05 +020010#include <asm/arch/clock.h>
11#include <asm/arch/imx-regs.h>
12#include <asm/arch/iomux.h>
13#include <asm/arch/mx6-pins.h>
Masahiro Yamada1221ce42016-09-21 11:28:55 +090014#include <linux/errno.h>
vpeter478506c22015-08-03 12:49:05 +020015#include <asm/gpio.h>
Stefano Babic552a8482017-06-29 10:16:06 +020016#include <asm/mach-imx/iomux-v3.h>
17#include <asm/mach-imx/video.h>
vpeter478506c22015-08-03 12:49:05 +020018#include <mmc.h>
Yangbo Lue37ac712019-06-21 11:42:28 +080019#include <fsl_esdhc_imx.h>
vpeter478506c22015-08-03 12:49:05 +020020#include <asm/arch/crm_regs.h>
21#include <asm/io.h>
22#include <asm/arch/sys_proto.h>
23#include <spl.h>
24
vpeter478506c22015-08-03 12:49:05 +020025#if defined(CONFIG_SPL_BUILD)
26#include <asm/arch/mx6-ddr.h>
27
28/*
29 * Driving strength:
30 * 0x30 == 40 Ohm
31 * 0x28 == 48 Ohm
32 */
33#define IMX6DQ_DRIVE_STRENGTH 0x30
34#define IMX6SDL_DRIVE_STRENGTH 0x28
35
36/* configure MX6Q/DUAL mmdc DDR io registers */
37static struct mx6dq_iomux_ddr_regs mx6dq_ddr_ioregs = {
38 .dram_sdclk_0 = IMX6DQ_DRIVE_STRENGTH,
39 .dram_sdclk_1 = IMX6DQ_DRIVE_STRENGTH,
40 .dram_cas = IMX6DQ_DRIVE_STRENGTH,
41 .dram_ras = IMX6DQ_DRIVE_STRENGTH,
42 .dram_reset = IMX6DQ_DRIVE_STRENGTH,
43 .dram_sdcke0 = IMX6DQ_DRIVE_STRENGTH,
44 .dram_sdcke1 = IMX6DQ_DRIVE_STRENGTH,
45 .dram_sdba2 = 0x00000000,
46 .dram_sdodt0 = IMX6DQ_DRIVE_STRENGTH,
47 .dram_sdodt1 = IMX6DQ_DRIVE_STRENGTH,
48 .dram_sdqs0 = IMX6DQ_DRIVE_STRENGTH,
49 .dram_sdqs1 = IMX6DQ_DRIVE_STRENGTH,
50 .dram_sdqs2 = IMX6DQ_DRIVE_STRENGTH,
51 .dram_sdqs3 = IMX6DQ_DRIVE_STRENGTH,
52 .dram_sdqs4 = IMX6DQ_DRIVE_STRENGTH,
53 .dram_sdqs5 = IMX6DQ_DRIVE_STRENGTH,
54 .dram_sdqs6 = IMX6DQ_DRIVE_STRENGTH,
55 .dram_sdqs7 = IMX6DQ_DRIVE_STRENGTH,
56 .dram_dqm0 = IMX6DQ_DRIVE_STRENGTH,
57 .dram_dqm1 = IMX6DQ_DRIVE_STRENGTH,
58 .dram_dqm2 = IMX6DQ_DRIVE_STRENGTH,
59 .dram_dqm3 = IMX6DQ_DRIVE_STRENGTH,
60 .dram_dqm4 = IMX6DQ_DRIVE_STRENGTH,
61 .dram_dqm5 = IMX6DQ_DRIVE_STRENGTH,
62 .dram_dqm6 = IMX6DQ_DRIVE_STRENGTH,
63 .dram_dqm7 = IMX6DQ_DRIVE_STRENGTH,
64};
65
66/* configure MX6Q/DUAL mmdc GRP io registers */
67static struct mx6dq_iomux_grp_regs mx6dq_grp_ioregs = {
68 .grp_ddr_type = 0x000c0000,
69 .grp_ddrmode_ctl = 0x00020000,
70 .grp_ddrpke = 0x00000000,
71 .grp_addds = IMX6DQ_DRIVE_STRENGTH,
72 .grp_ctlds = IMX6DQ_DRIVE_STRENGTH,
73 .grp_ddrmode = 0x00020000,
74 .grp_b0ds = IMX6DQ_DRIVE_STRENGTH,
75 .grp_b1ds = IMX6DQ_DRIVE_STRENGTH,
76 .grp_b2ds = IMX6DQ_DRIVE_STRENGTH,
77 .grp_b3ds = IMX6DQ_DRIVE_STRENGTH,
78 .grp_b4ds = IMX6DQ_DRIVE_STRENGTH,
79 .grp_b5ds = IMX6DQ_DRIVE_STRENGTH,
80 .grp_b6ds = IMX6DQ_DRIVE_STRENGTH,
81 .grp_b7ds = IMX6DQ_DRIVE_STRENGTH,
82};
83
84/* configure MX6SOLO/DUALLITE mmdc DDR io registers */
85struct mx6sdl_iomux_ddr_regs mx6sdl_ddr_ioregs = {
86 .dram_sdclk_0 = IMX6SDL_DRIVE_STRENGTH,
87 .dram_sdclk_1 = IMX6SDL_DRIVE_STRENGTH,
88 .dram_cas = IMX6SDL_DRIVE_STRENGTH,
89 .dram_ras = IMX6SDL_DRIVE_STRENGTH,
90 .dram_reset = IMX6SDL_DRIVE_STRENGTH,
91 .dram_sdcke0 = IMX6SDL_DRIVE_STRENGTH,
92 .dram_sdcke1 = IMX6SDL_DRIVE_STRENGTH,
93 .dram_sdba2 = 0x00000000,
94 .dram_sdodt0 = IMX6SDL_DRIVE_STRENGTH,
95 .dram_sdodt1 = IMX6SDL_DRIVE_STRENGTH,
96 .dram_sdqs0 = IMX6SDL_DRIVE_STRENGTH,
97 .dram_sdqs1 = IMX6SDL_DRIVE_STRENGTH,
98 .dram_sdqs2 = IMX6SDL_DRIVE_STRENGTH,
99 .dram_sdqs3 = IMX6SDL_DRIVE_STRENGTH,
100 .dram_sdqs4 = IMX6SDL_DRIVE_STRENGTH,
101 .dram_sdqs5 = IMX6SDL_DRIVE_STRENGTH,
102 .dram_sdqs6 = IMX6SDL_DRIVE_STRENGTH,
103 .dram_sdqs7 = IMX6SDL_DRIVE_STRENGTH,
104 .dram_dqm0 = IMX6SDL_DRIVE_STRENGTH,
105 .dram_dqm1 = IMX6SDL_DRIVE_STRENGTH,
106 .dram_dqm2 = IMX6SDL_DRIVE_STRENGTH,
107 .dram_dqm3 = IMX6SDL_DRIVE_STRENGTH,
108 .dram_dqm4 = IMX6SDL_DRIVE_STRENGTH,
109 .dram_dqm5 = IMX6SDL_DRIVE_STRENGTH,
110 .dram_dqm6 = IMX6SDL_DRIVE_STRENGTH,
111 .dram_dqm7 = IMX6SDL_DRIVE_STRENGTH,
112};
113
114/* configure MX6SOLO/DUALLITE mmdc GRP io registers */
115struct mx6sdl_iomux_grp_regs mx6sdl_grp_ioregs = {
116 .grp_ddr_type = 0x000c0000,
117 .grp_ddrmode_ctl = 0x00020000,
118 .grp_ddrpke = 0x00000000,
119 .grp_addds = IMX6SDL_DRIVE_STRENGTH,
120 .grp_ctlds = IMX6SDL_DRIVE_STRENGTH,
121 .grp_ddrmode = 0x00020000,
122 .grp_b0ds = IMX6SDL_DRIVE_STRENGTH,
123 .grp_b1ds = IMX6SDL_DRIVE_STRENGTH,
124 .grp_b2ds = IMX6SDL_DRIVE_STRENGTH,
125 .grp_b3ds = IMX6SDL_DRIVE_STRENGTH,
126 .grp_b4ds = IMX6SDL_DRIVE_STRENGTH,
127 .grp_b5ds = IMX6SDL_DRIVE_STRENGTH,
128 .grp_b6ds = IMX6SDL_DRIVE_STRENGTH,
129 .grp_b7ds = IMX6SDL_DRIVE_STRENGTH,
130};
131
132/* MT41K128M16JT-125 */
133static struct mx6_ddr3_cfg mt41k128m16jt_125 = {
134 /* quad = 1066, duallite = 800 */
135 .mem_speed = 1066,
136 .density = 2,
137 .width = 16,
138 .banks = 8,
139 .rowaddr = 14,
140 .coladdr = 10,
141 .pagesz = 2,
142 .trcd = 1375,
143 .trcmin = 4875,
144 .trasmin = 3500,
145 .SRT = 0,
146};
147
148static struct mx6_mmdc_calibration mx6q_1g_mmdc_calib = {
149 .p0_mpwldectrl0 = 0x00350035,
150 .p0_mpwldectrl1 = 0x001F001F,
151 .p1_mpwldectrl0 = 0x00010001,
152 .p1_mpwldectrl1 = 0x00010001,
153 .p0_mpdgctrl0 = 0x43510360,
154 .p0_mpdgctrl1 = 0x0342033F,
155 .p1_mpdgctrl0 = 0x033F033F,
156 .p1_mpdgctrl1 = 0x03290266,
157 .p0_mprddlctl = 0x4B3E4141,
158 .p1_mprddlctl = 0x47413B4A,
159 .p0_mpwrdlctl = 0x42404843,
160 .p1_mpwrdlctl = 0x4C3F4C45,
161};
162
163static struct mx6_mmdc_calibration mx6dl_1g_mmdc_calib = {
164 .p0_mpwldectrl0 = 0x002F0038,
165 .p0_mpwldectrl1 = 0x001F001F,
166 .p1_mpwldectrl0 = 0x001F001F,
167 .p1_mpwldectrl1 = 0x001F001F,
168 .p0_mpdgctrl0 = 0x425C0251,
169 .p0_mpdgctrl1 = 0x021B021E,
170 .p1_mpdgctrl0 = 0x021B021E,
171 .p1_mpdgctrl1 = 0x01730200,
172 .p0_mprddlctl = 0x45474C45,
173 .p1_mprddlctl = 0x44464744,
174 .p0_mpwrdlctl = 0x3F3F3336,
175 .p1_mpwrdlctl = 0x32383630,
176};
177
178/* DDR 64bit 1GB */
179static struct mx6_ddr_sysinfo mem_qdl = {
180 .dsize = 2,
181 .cs1_mirror = 0,
182 /* config for full 4GB range so that get_mem_size() works */
183 .cs_density = 32,
184 .ncs = 1,
185 .bi_on = 1,
186 /* quad = 2, duallite = 1 */
187 .rtt_nom = 2,
188 /* quad = 2, duallite = 1 */
189 .rtt_wr = 2,
190 .ralat = 5,
191 .walat = 0,
192 .mif3_mode = 3,
193 .rst_to_cke = 0x23,
194 .sde_to_rst = 0x10,
Fabio Estevamedf00932016-08-29 20:37:15 -0300195 .refsel = 1, /* Refresh cycles at 32KHz */
196 .refr = 7, /* 8 refresh commands per refresh cycle */
vpeter478506c22015-08-03 12:49:05 +0200197};
198
199static void ccgr_init(void)
200{
201 struct mxc_ccm_reg *ccm = (struct mxc_ccm_reg *)CCM_BASE_ADDR;
202
203 /* set the default clock gate to save power */
204 writel(0x00C03F3F, &ccm->CCGR0);
205 writel(0x0030FC03, &ccm->CCGR1);
206 writel(0x0FFFC000, &ccm->CCGR2);
207 writel(0x3FF00000, &ccm->CCGR3);
208 writel(0x00FFF300, &ccm->CCGR4);
209 writel(0x0F0000C3, &ccm->CCGR5);
210 writel(0x000003FF, &ccm->CCGR6);
211}
212
vpeter478506c22015-08-03 12:49:05 +0200213static void spl_dram_init(void)
214{
215 if (is_cpu_type(MXC_CPU_MX6DL)) {
216 mt41k128m16jt_125.mem_speed = 800;
217 mem_qdl.rtt_nom = 1;
218 mem_qdl.rtt_wr = 1;
219
220 mx6sdl_dram_iocfg(64, &mx6sdl_ddr_ioregs, &mx6sdl_grp_ioregs);
221 mx6_dram_cfg(&mem_qdl, &mx6dl_1g_mmdc_calib, &mt41k128m16jt_125);
222 } else if (is_cpu_type(MXC_CPU_MX6Q)) {
223 mt41k128m16jt_125.mem_speed = 1066;
224 mem_qdl.rtt_nom = 2;
225 mem_qdl.rtt_wr = 2;
226
227 mx6dq_dram_iocfg(64, &mx6dq_ddr_ioregs, &mx6dq_grp_ioregs);
228 mx6_dram_cfg(&mem_qdl, &mx6q_1g_mmdc_calib, &mt41k128m16jt_125);
229 }
230
231 udelay(100);
232}
233
234void board_init_f(ulong dummy)
235{
236 ccgr_init();
237
238 /* setup AIPS and disable watchdog */
239 arch_cpu_init();
240
241 gpr_init();
242
243 /* iomux */
244 board_early_init_f();
245
246 /* setup GP timer */
247 timer_init();
248
249 /* UART clocks enabled and gd valid - init serial console */
250 preloader_console_init();
251
252 /* DDR initialization */
253 spl_dram_init();
vpeter478506c22015-08-03 12:49:05 +0200254}
255#endif