blob: 5fa10878d2c4a42f321e528cf526d6907808c7cc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +09002/*
3 * board/renesas/blanche/blanche.c
4 * This file is blanche board support.
5 *
6 * Copyright (C) 2016 Renesas Electronics Corporation
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +09007 */
8
9#include <common.h>
Simon Glassafb02152019-12-28 10:45:01 -070010#include <cpu_func.h>
Simon Glass97589732020-05-10 11:40:02 -060011#include <init.h>
Simon Glass274e0b02020-05-10 11:39:56 -060012#include <net.h>
Marek Vasut927b1e32018-04-30 14:10:36 +020013#include <asm/arch/mmc.h>
14#include <asm/arch/rcar-mstp.h>
15#include <asm/arch/rmobile.h>
16#include <asm/arch/sh_sdhi.h>
17#include <asm/arch/sys_proto.h>
18#include <asm/gpio.h>
19#include <asm/io.h>
20#include <asm/mach-types.h>
21#include <asm/processor.h>
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090022#include <dm.h>
23#include <dm/platform_data/serial_sh.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060024#include <env.h>
Marek Vasut24700a22020-03-21 16:57:58 +010025#include <hang.h>
Marek Vasut927b1e32018-04-30 14:10:36 +020026#include <i2c.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060027#include <linux/bitops.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090028#include <linux/errno.h>
Marek Vasut927b1e32018-04-30 14:10:36 +020029#include <malloc.h>
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090030#include <miiphy.h>
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090031#include <mmc.h>
Marek Vasut927b1e32018-04-30 14:10:36 +020032#include <netdev.h>
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090033#include "qos.h"
34
35DECLARE_GLOBAL_DATA_PTR;
36
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090037#define CPG_PLL1CR 0xE6150028
38#define CPG_PLL3CR 0xE61500DC
39
Marek Vasut927b1e32018-04-30 14:10:36 +020040#define TMU0_MSTP125 BIT(25)
41#define QSPI_MSTP917 BIT(17)
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090042
Marek Vasut927b1e32018-04-30 14:10:36 +020043struct reg_config {
44 u16 off;
45 u32 val;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090046};
47
Marek Vasut927b1e32018-04-30 14:10:36 +020048static void blanche_init_sys(void)
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090049{
50 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
51 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
52 u32 cpu_type;
53
54 cpu_type = rmobile_get_cpu_type();
55 if (cpu_type == 0x4A) {
56 writel(0x4D000000, CPG_PLL1CR);
57 writel(0x4F000000, CPG_PLL3CR);
58 }
59
60 /* Watchdog init */
61 writel(0xA5A5A500, &rwdt->rwtcsra);
62 writel(0xA5A5A500, &swdt->swtcsra);
Marek Vasut927b1e32018-04-30 14:10:36 +020063}
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090064
Marek Vasut927b1e32018-04-30 14:10:36 +020065static void blanche_init_pfc(void)
66{
67 static const struct reg_config pfc_with_unlock[] = {
68 { 0x0004, 0x0bffffff },
69 { 0x0008, 0x002fffff },
70 { 0x0014, 0x00000fff },
71 { 0x0018, 0x00010fff },
72 { 0x001c, 0x00010fff },
73 { 0x0020, 0x00010fff },
74 { 0x0024, 0x00010fff },
75 { 0x0028, 0x00010fff },
76 { 0x002c, 0x04006000 },
77 { 0x0030, 0x303fefe0 },
78 { 0x0058, 0x0002000e },
79 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090080
Marek Vasut927b1e32018-04-30 14:10:36 +020081 static const struct reg_config pfc_without_unlock[] = {
82 { 0x0108, 0x00000000 },
83 { 0x010c, 0x0803FF40 },
84 { 0x0110, 0x0000FFFF },
85 { 0x0114, 0x00010FFF },
86 { 0x011c, 0x0001AFFF },
87 { 0x0124, 0x0001CFFF },
88 { 0x0128, 0xC0438001 },
89 { 0x012c, 0x0FC00007 },
90 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090091
Marek Vasut927b1e32018-04-30 14:10:36 +020092 static const u32 pfc_base = 0xe6060000;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090093
Marek Vasut927b1e32018-04-30 14:10:36 +020094 unsigned int i;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +090095
Marek Vasut927b1e32018-04-30 14:10:36 +020096 for (i = 0; i < ARRAY_SIZE(pfc_with_unlock); i++) {
97 writel(~pfc_with_unlock[i].val, pfc_base);
98 writel(pfc_with_unlock[i].val,
99 pfc_base | pfc_with_unlock[i].off);
100 }
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900101
Marek Vasut927b1e32018-04-30 14:10:36 +0200102 for (i = 0; i < ARRAY_SIZE(pfc_without_unlock); i++)
103 writel(pfc_without_unlock[i].val,
104 pfc_base | pfc_without_unlock[i].off);
105}
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900106
Marek Vasut927b1e32018-04-30 14:10:36 +0200107static void blanche_init_lbsc(void)
108{
109 static const struct reg_config lbsc_config[] = {
110 { 0x00, 0x00000020 },
111 { 0x08, 0x00002020 },
112 { 0x30, 0x2a103320 },
113 { 0x38, 0x19102110 },
114 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900115
Marek Vasut927b1e32018-04-30 14:10:36 +0200116 static const u32 lbsc_base = 0xfec00200;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900117
Marek Vasut927b1e32018-04-30 14:10:36 +0200118 unsigned int i;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900119
Marek Vasut927b1e32018-04-30 14:10:36 +0200120 for (i = 0; i < ARRAY_SIZE(lbsc_config); i++) {
121 writel(lbsc_config[i].val,
122 lbsc_base | lbsc_config[i].off);
123 writel(lbsc_config[i].val,
124 lbsc_base | (lbsc_config[i].off + 4));
125 }
126}
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900127
Marek Vasut927b1e32018-04-30 14:10:36 +0200128#if defined(CONFIG_MTD_NOR_FLASH)
129static void dbsc_wait(u16 reg)
130{
131 static const u32 dbsc3_0_base = DBSC3_0_BASE;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900132
Marek Vasut927b1e32018-04-30 14:10:36 +0200133 while (!(readl(dbsc3_0_base + reg) & BIT(0)))
134 ;
135}
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900136
Marek Vasut927b1e32018-04-30 14:10:36 +0200137static void blanche_init_dbsc(void)
138{
139 static const struct reg_config dbsc_config1[] = {
140 { 0x0280, 0x0000a55a },
141 { 0x0018, 0x21000000 },
142 { 0x0018, 0x11000000 },
143 { 0x0018, 0x10000000 },
144 { 0x0290, 0x00000001 },
145 { 0x02a0, 0x80000000 },
146 { 0x0290, 0x00000004 },
147 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900148
Marek Vasut927b1e32018-04-30 14:10:36 +0200149 static const struct reg_config dbsc_config2[] = {
150 { 0x0290, 0x00000006 },
151 { 0x02a0, 0x0001c000 },
152 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900153
Marek Vasut927b1e32018-04-30 14:10:36 +0200154 static const struct reg_config dbsc_config4[] = {
155 { 0x0290, 0x0000000f },
156 { 0x02a0, 0x00181ee4 },
157 { 0x0290, 0x00000010 },
158 { 0x02a0, 0xf00464db },
159 { 0x0290, 0x00000061 },
160 { 0x02a0, 0x0000008d },
161 { 0x0290, 0x00000001 },
162 { 0x02a0, 0x00000073 },
163 { 0x0020, 0x00000007 },
164 { 0x0024, 0x0f030a02 },
165 { 0x0030, 0x00000001 },
166 { 0x00b0, 0x00000000 },
167 { 0x0040, 0x0000000b },
168 { 0x0044, 0x00000008 },
169 { 0x0048, 0x00000000 },
170 { 0x0050, 0x0000000b },
171 { 0x0054, 0x000c000b },
172 { 0x0058, 0x00000027 },
173 { 0x005c, 0x0000001c },
174 { 0x0060, 0x00000006 },
175 { 0x0064, 0x00000020 },
176 { 0x0068, 0x00000008 },
177 { 0x006c, 0x0000000c },
178 { 0x0070, 0x00000009 },
179 { 0x0074, 0x00000012 },
180 { 0x0078, 0x000000d0 },
181 { 0x007c, 0x00140005 },
182 { 0x0080, 0x00050004 },
183 { 0x0084, 0x70233005 },
184 { 0x0088, 0x000c0000 },
185 { 0x008c, 0x00000300 },
186 { 0x0090, 0x00000040 },
187 { 0x0100, 0x00000001 },
188 { 0x00c0, 0x00020001 },
189 { 0x00c8, 0x20082004 },
190 { 0x0380, 0x00020002 },
191 { 0x0390, 0x0000001f },
192 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900193
Marek Vasut927b1e32018-04-30 14:10:36 +0200194 static const struct reg_config dbsc_config5[] = {
195 { 0x0244, 0x00000011 },
196 { 0x0290, 0x00000003 },
197 { 0x02a0, 0x0300c4e1 },
198 { 0x0290, 0x00000023 },
199 { 0x02a0, 0x00fcdb60 },
200 { 0x0290, 0x00000011 },
201 { 0x02a0, 0x1000040b },
202 { 0x0290, 0x00000012 },
203 { 0x02a0, 0x9d9cbb66 },
204 { 0x0290, 0x00000013 },
205 { 0x02a0, 0x1a868400 },
206 { 0x0290, 0x00000014 },
207 { 0x02a0, 0x300214d8 },
208 { 0x0290, 0x00000015 },
209 { 0x02a0, 0x00000d70 },
210 { 0x0290, 0x00000016 },
211 { 0x02a0, 0x00000004 },
212 { 0x0290, 0x00000017 },
213 { 0x02a0, 0x00000018 },
214 { 0x0290, 0x0000001a },
215 { 0x02a0, 0x910035c7 },
216 { 0x0290, 0x00000004 },
217 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900218
Marek Vasut927b1e32018-04-30 14:10:36 +0200219 static const struct reg_config dbsc_config6[] = {
220 { 0x0290, 0x00000001 },
221 { 0x02a0, 0x00000181 },
222 { 0x0018, 0x11000000 },
223 { 0x0290, 0x00000004 },
224 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900225
Marek Vasut927b1e32018-04-30 14:10:36 +0200226 static const struct reg_config dbsc_config7[] = {
227 { 0x0290, 0x00000001 },
228 { 0x02a0, 0x0000fe01 },
229 { 0x0304, 0x00000000 },
230 { 0x00f4, 0x01004c20 },
231 { 0x00f8, 0x014000aa },
232 { 0x00e0, 0x00000140 },
233 { 0x00e4, 0x00081860 },
234 { 0x00e8, 0x00010000 },
235 { 0x0290, 0x00000004 },
236 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900237
Marek Vasut927b1e32018-04-30 14:10:36 +0200238 static const struct reg_config dbsc_config8[] = {
239 { 0x0014, 0x00000001 },
240 { 0x0010, 0x00000001 },
241 { 0x0280, 0x00000000 },
242 };
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900243
Marek Vasut927b1e32018-04-30 14:10:36 +0200244 static const u32 dbsc3_0_base = DBSC3_0_BASE;
245 unsigned int i;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900246
Marek Vasut927b1e32018-04-30 14:10:36 +0200247 for (i = 0; i < ARRAY_SIZE(dbsc_config1); i++)
248 writel(dbsc_config1[i].val, dbsc3_0_base | dbsc_config1[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900249
Marek Vasut927b1e32018-04-30 14:10:36 +0200250 dbsc_wait(0x2a0);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900251
Marek Vasut927b1e32018-04-30 14:10:36 +0200252 for (i = 0; i < ARRAY_SIZE(dbsc_config2); i++)
253 writel(dbsc_config2[i].val, dbsc3_0_base | dbsc_config2[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900254
Marek Vasut927b1e32018-04-30 14:10:36 +0200255 for (i = 0; i < ARRAY_SIZE(dbsc_config4); i++)
256 writel(dbsc_config4[i].val, dbsc3_0_base | dbsc_config4[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900257
Marek Vasut927b1e32018-04-30 14:10:36 +0200258 dbsc_wait(0x240);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900259
Marek Vasut927b1e32018-04-30 14:10:36 +0200260 for (i = 0; i < ARRAY_SIZE(dbsc_config5); i++)
261 writel(dbsc_config5[i].val, dbsc3_0_base | dbsc_config5[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900262
Marek Vasut927b1e32018-04-30 14:10:36 +0200263 dbsc_wait(0x2a0);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900264
Marek Vasut927b1e32018-04-30 14:10:36 +0200265 for (i = 0; i < ARRAY_SIZE(dbsc_config6); i++)
266 writel(dbsc_config6[i].val, dbsc3_0_base | dbsc_config6[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900267
Marek Vasut927b1e32018-04-30 14:10:36 +0200268 dbsc_wait(0x2a0);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900269
Marek Vasut927b1e32018-04-30 14:10:36 +0200270 for (i = 0; i < ARRAY_SIZE(dbsc_config7); i++)
271 writel(dbsc_config7[i].val, dbsc3_0_base | dbsc_config7[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900272
Marek Vasut927b1e32018-04-30 14:10:36 +0200273 dbsc_wait(0x2a0);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900274
Marek Vasut927b1e32018-04-30 14:10:36 +0200275 for (i = 0; i < ARRAY_SIZE(dbsc_config8); i++)
276 writel(dbsc_config8[i].val, dbsc3_0_base | dbsc_config8[i].off);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900277
Marek Vasut927b1e32018-04-30 14:10:36 +0200278}
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900279
Marek Vasut927b1e32018-04-30 14:10:36 +0200280static void s_init_wait(volatile unsigned int cnt)
281{
282 volatile u32 i = cnt * 0x10000;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900283
Marek Vasut927b1e32018-04-30 14:10:36 +0200284 while (i-- > 0)
285 ;
286}
287#endif
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900288
Marek Vasut927b1e32018-04-30 14:10:36 +0200289void s_init(void)
290{
291 blanche_init_sys();
292 qos_init();
293 blanche_init_pfc();
294 blanche_init_lbsc();
295#if defined(CONFIG_MTD_NOR_FLASH)
296 s_init_wait(10);
297 blanche_init_dbsc();
Masahiro Yamada8cea9b52017-02-11 22:43:54 +0900298#endif /* CONFIG_MTD_NOR_FLASH */
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900299}
300
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900301int board_early_init_f(void)
302{
303 /* TMU0 */
304 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900305 /* QSPI */
306 mstp_clrbits_le32(MSTPSR9, SMSTPCR9, QSPI_MSTP917);
307
308 return 0;
309}
310
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900311int board_init(void)
312{
313 /* adress of boot parameters */
314 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
315
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900316 return 0;
317}
318
Marek Vasut927b1e32018-04-30 14:10:36 +0200319/* Added for BLANCHE(R-CarV2H board) */
Marek Vasut91691452020-03-21 17:38:57 +0100320#ifndef CONFIG_DM_ETH
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900321int board_eth_init(bd_t *bis)
322{
323 int rc = 0;
324
325#ifdef CONFIG_SMC911X
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900326 struct eth_device *dev;
327 uchar eth_addr[6];
328
329 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
330
Marek Vasut927b1e32018-04-30 14:10:36 +0200331 if (!eth_env_get_enetaddr("ethaddr", eth_addr)) {
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900332 dev = eth_get_dev_by_index(0);
333 if (dev) {
Marek Vasut927b1e32018-04-30 14:10:36 +0200334 eth_env_set_enetaddr("ethaddr", dev->enetaddr);
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900335 } else {
336 printf("blanche: Couldn't get eth device\n");
337 rc = -1;
338 }
339 }
340
341#endif
342
343 return rc;
344}
Marek Vasut91691452020-03-21 17:38:57 +0100345#endif
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900346
Marek Vasut927b1e32018-04-30 14:10:36 +0200347int dram_init(void)
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900348{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530349 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut927b1e32018-04-30 14:10:36 +0200350 return -EINVAL;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900351
Marek Vasut927b1e32018-04-30 14:10:36 +0200352 return 0;
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900353}
354
Marek Vasut927b1e32018-04-30 14:10:36 +0200355int dram_init_banksize(void)
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900356{
Marek Vasut927b1e32018-04-30 14:10:36 +0200357 fdtdec_setup_memory_banksize();
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900358
359 return 0;
360}
361
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900362void reset_cpu(ulong addr)
363{
Marek Vasut24700a22020-03-21 16:57:58 +0100364 struct udevice *dev;
365 const u8 pmic_bus = 6;
366 const u8 pmic_addr = 0x58;
367 u8 data;
368 int ret;
369
370 ret = i2c_get_chip_for_busnum(pmic_bus, pmic_addr, 1, &dev);
371 if (ret)
372 hang();
373
374 ret = dm_i2c_read(dev, 0x13, &data, 1);
375 if (ret)
376 hang();
377
378 data |= BIT(1);
379
380 ret = dm_i2c_write(dev, 0x13, &data, 1);
381 if (ret)
382 hang();
masakazu.mochizuki.wd@hitachi.com9d0e9372016-04-12 17:11:41 +0900383}