2450fca7a58be36ffaa408cd75c146ec9b310339
[platform/kernel/u-boot.git] / board / renesas / blanche / blanche.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * board/renesas/blanche/blanche.c
4  *     This file is blanche board support.
5  *
6  * Copyright (C) 2016 Renesas Electronics Corporation
7  */
8
9 #include <common.h>
10 #include <cpu_func.h>
11 #include <init.h>
12 #include <net.h>
13 #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>
22 #include <dm.h>
23 #include <dm/platform_data/serial_sh.h>
24 #include <env.h>
25 #include <hang.h>
26 #include <i2c.h>
27 #include <linux/bitops.h>
28 #include <linux/errno.h>
29 #include <malloc.h>
30 #include <miiphy.h>
31 #include <mmc.h>
32 #include <netdev.h>
33 #include "qos.h"
34
35 DECLARE_GLOBAL_DATA_PTR;
36
37 #define CPG_PLL1CR      0xE6150028
38 #define CPG_PLL3CR      0xE61500DC
39
40 #define TMU0_MSTP125    BIT(25)
41 #define QSPI_MSTP917    BIT(17)
42
43 struct reg_config {
44         u16     off;
45         u32     val;
46 };
47
48 static void blanche_init_sys(void)
49 {
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);
63 }
64
65 static 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         };
80
81         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         };
91
92         static const u32 pfc_base = 0xe6060000;
93
94         unsigned int i;
95
96         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         }
101
102         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 }
106
107 static 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         };
115
116         static const u32 lbsc_base = 0xfec00200;
117
118         unsigned int i;
119
120         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 }
127
128 #if defined(CONFIG_MTD_NOR_FLASH)
129 static void dbsc_wait(u16 reg)
130 {
131         static const u32 dbsc3_0_base = DBSC3_0_BASE;
132
133         while (!(readl(dbsc3_0_base + reg) & BIT(0)))
134                 ;
135 }
136
137 static 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         };
148
149         static const struct reg_config dbsc_config2[] = {
150                 { 0x0290, 0x00000006 },
151                 { 0x02a0, 0x0001c000 },
152         };
153
154         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         };
193
194         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         };
218
219         static const struct reg_config dbsc_config6[] = {
220                 { 0x0290, 0x00000001 },
221                 { 0x02a0, 0x00000181 },
222                 { 0x0018, 0x11000000 },
223                 { 0x0290, 0x00000004 },
224         };
225
226         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         };
237
238         static const struct reg_config dbsc_config8[] = {
239                 { 0x0014, 0x00000001 },
240                 { 0x0010, 0x00000001 },
241                 { 0x0280, 0x00000000 },
242         };
243
244         static const u32 dbsc3_0_base = DBSC3_0_BASE;
245         unsigned int i;
246
247         for (i = 0; i < ARRAY_SIZE(dbsc_config1); i++)
248                 writel(dbsc_config1[i].val, dbsc3_0_base | dbsc_config1[i].off);
249
250         dbsc_wait(0x2a0);
251
252         for (i = 0; i < ARRAY_SIZE(dbsc_config2); i++)
253                 writel(dbsc_config2[i].val, dbsc3_0_base | dbsc_config2[i].off);
254
255         for (i = 0; i < ARRAY_SIZE(dbsc_config4); i++)
256                 writel(dbsc_config4[i].val, dbsc3_0_base | dbsc_config4[i].off);
257
258         dbsc_wait(0x240);
259
260         for (i = 0; i < ARRAY_SIZE(dbsc_config5); i++)
261                 writel(dbsc_config5[i].val, dbsc3_0_base | dbsc_config5[i].off);
262
263         dbsc_wait(0x2a0);
264
265         for (i = 0; i < ARRAY_SIZE(dbsc_config6); i++)
266                 writel(dbsc_config6[i].val, dbsc3_0_base | dbsc_config6[i].off);
267
268         dbsc_wait(0x2a0);
269
270         for (i = 0; i < ARRAY_SIZE(dbsc_config7); i++)
271                 writel(dbsc_config7[i].val, dbsc3_0_base | dbsc_config7[i].off);
272
273         dbsc_wait(0x2a0);
274
275         for (i = 0; i < ARRAY_SIZE(dbsc_config8); i++)
276                 writel(dbsc_config8[i].val, dbsc3_0_base | dbsc_config8[i].off);
277
278 }
279
280 static void s_init_wait(volatile unsigned int cnt)
281 {
282         volatile u32 i = cnt * 0x10000;
283
284         while (i-- > 0)
285                 ;
286 }
287 #endif
288
289 void 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();
298 #endif /* CONFIG_MTD_NOR_FLASH */
299 }
300
301 int board_early_init_f(void)
302 {
303         /* TMU0 */
304         mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
305         /* QSPI */
306         mstp_clrbits_le32(MSTPSR9, SMSTPCR9, QSPI_MSTP917);
307
308         return 0;
309 }
310
311 int board_init(void)
312 {
313         /* adress of boot parameters */
314         gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
315
316         return 0;
317 }
318
319 /* Added for BLANCHE(R-CarV2H board) */
320 #ifndef CONFIG_DM_ETH
321 int board_eth_init(struct bd_info *bis)
322 {
323         int rc = 0;
324
325 #ifdef CONFIG_SMC911X
326         struct eth_device *dev;
327         uchar eth_addr[6];
328
329         rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
330
331         if (!eth_env_get_enetaddr("ethaddr", eth_addr)) {
332                 dev = eth_get_dev_by_index(0);
333                 if (dev) {
334                         eth_env_set_enetaddr("ethaddr", dev->enetaddr);
335                 } else {
336                         printf("blanche: Couldn't get eth device\n");
337                         rc = -1;
338                 }
339         }
340
341 #endif
342
343         return rc;
344 }
345 #endif
346
347 int dram_init(void)
348 {
349         if (fdtdec_setup_mem_size_base() != 0)
350                 return -EINVAL;
351
352         return 0;
353 }
354
355 int dram_init_banksize(void)
356 {
357         fdtdec_setup_memory_banksize();
358
359         return 0;
360 }
361
362 void reset_cpu(ulong addr)
363 {
364         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();
383 }