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