1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * board/renesas/draak/draak.c 4 * This file is Draak board support. 5 * 6 * Copyright (C) 2017 Marek Vasut <marek.vasut+renesas@gmail.com> 7 */ 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 27 DECLARE_GLOBAL_DATA_PTR; 28 29 #define CPGWPCR 0xE6150904 30 #define CPGWPR 0xE615090C 31 32 #define CLK2MHZ(clk) (clk / 1000 / 1000) 33 void s_init(void) 34 { 35 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE; 36 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE; 37 38 /* Watchdog init */ 39 writel(0xA5A5A500, &rwdt->rwtcsra); 40 writel(0xA5A5A500, &swdt->swtcsra); 41 42 writel(0xA5A50000, CPGWPCR); 43 writel(0xFFFFFFFF, CPGWPR); 44 } 45 46 #define GSX_MSTP112 BIT(12) /* 3DG */ 47 #define TMU0_MSTP125 BIT(25) /* secure */ 48 #define TMU1_MSTP124 BIT(24) /* non-secure */ 49 #define SCIF2_MSTP310 BIT(10) /* SCIF2 */ 50 #define DVFS_MSTP926 BIT(26) 51 #define HSUSB_MSTP704 BIT(4) /* HSUSB */ 52 53 int board_early_init_f(void) 54 { 55 /* TMU0,1 */ /* which use ? */ 56 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125 | TMU1_MSTP124); 57 58 #if defined(CONFIG_SYS_I2C) && defined(CONFIG_SYS_I2C_SH) 59 /* DVFS for reset */ 60 mstp_clrbits_le32(MSTPSR9, SMSTPCR9, DVFS_MSTP926); 61 #endif 62 return 0; 63 } 64 65 /* SYSC */ 66 /* R/- 32 Power status register 2(3DG) */ 67 #define SYSC_PWRSR2 0xE6180100 68 /* -/W 32 Power resume control register 2 (3DG) */ 69 #define SYSC_PWRONCR2 0xE618010C 70 71 /* HSUSB block registers */ 72 #define HSUSB_REG_LPSTS 0xE6590102 73 #define HSUSB_REG_LPSTS_SUSPM_NORMAL BIT(14) 74 #define HSUSB_REG_UGCTRL2 0xE6590184 75 #define HSUSB_REG_UGCTRL2_USB0SEL 0x30 76 #define HSUSB_REG_UGCTRL2_USB0SEL_EHCI 0x10 77 78 int board_init(void) 79 { 80 /* adress of boot parameters */ 81 gd->bd->bi_boot_params = CONFIG_SYS_TEXT_BASE + 0x50000; 82 83 /* USB1 pull-up */ 84 setbits_le32(PFC_PUEN6, PUEN_USB1_OVC | PUEN_USB1_PWEN); 85 86 /* Configure the HSUSB block */ 87 mstp_clrbits_le32(MSTPSR7, SMSTPCR7, HSUSB_MSTP704); 88 /* Choice USB0SEL */ 89 clrsetbits_le32(HSUSB_REG_UGCTRL2, HSUSB_REG_UGCTRL2_USB0SEL, 90 HSUSB_REG_UGCTRL2_USB0SEL_EHCI); 91 /* low power status */ 92 setbits_le16(HSUSB_REG_LPSTS, HSUSB_REG_LPSTS_SUSPM_NORMAL); 93 94 return 0; 95 } 96 97 int dram_init(void) 98 { 99 if (fdtdec_setup_mem_size_base() != 0) 100 return -EINVAL; 101 102 return 0; 103 } 104 105 int dram_init_banksize(void) 106 { 107 fdtdec_setup_memory_banksize(); 108 109 return 0; 110 } 111 112 #define RST_BASE 0xE6160000 113 #define RST_CA57RESCNT (RST_BASE + 0x40) 114 #define RST_CA53RESCNT (RST_BASE + 0x44) 115 #define RST_RSTOUTCR (RST_BASE + 0x58) 116 #define RST_CA57_CODE 0xA5A5000F 117 #define RST_CA53_CODE 0x5A5A000F 118 119 void reset_cpu(ulong addr) 120 { 121 unsigned long midr, cputype; 122 123 asm volatile("mrs %0, midr_el1" : "=r" (midr)); 124 cputype = (midr >> 4) & 0xfff; 125 126 if (cputype == 0xd03) 127 writel(RST_CA53_CODE, RST_CA53RESCNT); 128 else if (cputype == 0xd07) 129 writel(RST_CA57_CODE, RST_CA57RESCNT); 130 else 131 hang(); 132 } 133