blob: 0e5efea19d0719c839ff925925110ee69305e309 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasutb47bc372017-10-09 21:08:10 +02002/*
3 * board/renesas/eagle/eagle.c
4 * This file is Eagle board support.
5 *
6 * Copyright (C) 2017 Marek Vasut <marek.vasut+renesas@gmail.com>
Marek Vasutb47bc372017-10-09 21:08:10 +02007 */
8
9#include <common.h>
10#include <malloc.h>
11#include <netdev.h>
12#include <dm.h>
13#include <dm/platform_data/serial_sh.h>
14#include <asm/processor.h>
15#include <asm/mach-types.h>
16#include <asm/io.h>
17#include <linux/errno.h>
18#include <asm/arch/sys_proto.h>
19#include <asm/gpio.h>
20#include <asm/arch/gpio.h>
21#include <asm/arch/rmobile.h>
22#include <asm/arch/rcar-mstp.h>
23#include <asm/arch/sh_sdhi.h>
24#include <i2c.h>
25#include <mmc.h>
26
27DECLARE_GLOBAL_DATA_PTR;
28
Marek Vasutf20ea912018-06-16 01:16:50 +020029#define CPGWPR 0xE6150900
Marek Vasutb47bc372017-10-09 21:08:10 +020030#define CPGWPCR 0xE6150904
Marek Vasutb47bc372017-10-09 21:08:10 +020031
32/* PLL */
33#define PLL0CR 0xE61500D8
34#define PLL0_STC_MASK 0x7F000000
35#define PLL0_STC_OFFSET 24
36
37#define CLK2MHZ(clk) (clk / 1000 / 1000)
38void s_init(void)
39{
40 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
41 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
42 u32 stc;
43
44 /* Watchdog init */
45 writel(0xA5A5A500, &rwdt->rwtcsra);
46 writel(0xA5A5A500, &swdt->swtcsra);
47
48 /* CPU frequency setting. Set to 0.8GHz */
49 stc = ((800 / CLK2MHZ(CONFIG_SYS_CLK_FREQ)) - 1) << PLL0_STC_OFFSET;
50 clrsetbits_le32(PLL0CR, PLL0_STC_MASK, stc);
51}
52
Marek Vasutb47bc372017-10-09 21:08:10 +020053int board_early_init_f(void)
54{
Marek Vasutf20ea912018-06-16 01:16:50 +020055 /* Unlock CPG access */
56 writel(0xA5A5FFFF, CPGWPR);
57 writel(0x5A5A0000, CPGWPCR);
Marek Vasutb47bc372017-10-09 21:08:10 +020058
Marek Vasutb47bc372017-10-09 21:08:10 +020059 return 0;
60}
61
62int board_init(void)
63{
64 /* adress of boot parameters */
65 gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000;
66
67 return 0;
68}
69
70int dram_init(void)
71{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053072 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasutb47bc372017-10-09 21:08:10 +020073 return -EINVAL;
74
75 return 0;
76}
77
78int dram_init_banksize(void)
79{
80 fdtdec_setup_memory_banksize();
81
82 return 0;
83}
84
85#define RST_BASE 0xE6160000
86#define RST_CA57RESCNT (RST_BASE + 0x40)
87#define RST_CA53RESCNT (RST_BASE + 0x44)
88#define RST_RSTOUTCR (RST_BASE + 0x58)
89#define RST_CA57_CODE 0xA5A5000F
90#define RST_CA53_CODE 0x5A5A000F
91
92void reset_cpu(ulong addr)
93{
94 unsigned long midr, cputype;
95
96 asm volatile("mrs %0, midr_el1" : "=r" (midr));
97 cputype = (midr >> 4) & 0xfff;
98
99 if (cputype == 0xd03)
100 writel(RST_CA53_CODE, RST_CA53RESCNT);
101 else if (cputype == 0xd07)
102 writel(RST_CA57_CODE, RST_CA57RESCNT);
103 else
104 hang();
105}