blob: 0ec8e3da4c2f50eb88c1518c794d13b6a1cd2d1d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +09002/*
3 * board/renesas/lager/lager.c
4 * This file is lager board support.
5 *
6 * Copyright (C) 2013 Renesas Electronics Corporation
7 * Copyright (C) 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +09008 */
9
Tom Rini8c70baa2021-12-14 13:36:40 -050010#include <clock_legacy.h>
Simon Glassafb02152019-12-28 10:45:01 -070011#include <cpu_func.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060012#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060013#include <env_internal.h>
Simon Glassf11478f2019-12-28 10:45:07 -070014#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -060015#include <init.h>
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090016#include <malloc.h>
17#include <netdev.h>
Nobuhiro Iwamatsu95744732014-12-09 16:20:04 +090018#include <dm.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Nobuhiro Iwamatsu95744732014-12-09 16:20:04 +090020#include <dm/platform_data/serial_sh.h>
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090021#include <asm/processor.h>
22#include <asm/mach-types.h>
23#include <asm/io.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060024#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060025#include <linux/delay.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090026#include <linux/errno.h>
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090027#include <asm/arch/sys_proto.h>
28#include <asm/gpio.h>
Marek Vasut97a070b2024-02-27 17:05:54 +010029#include <asm/arch/renesas.h>
Nobuhiro Iwamatsuade3c942014-12-02 16:52:19 +090030#include <asm/arch/rcar-mstp.h>
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +090031#include <miiphy.h>
Nobuhiro Iwamatsua99b6b52013-10-10 09:13:41 +090032#include <i2c.h>
Nobuhiro Iwamatsubaf336a2014-12-03 15:30:30 +090033#include <mmc.h>
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090034#include "qos.h"
35
36DECLARE_GLOBAL_DATA_PTR;
37
Nobuhiro Iwamatsu0751cbf2014-03-31 14:14:25 +090038#define CLK2MHZ(clk) (clk / 1000 / 1000)
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090039void s_init(void)
40{
Nobuhiro Iwamatsufa3e41b2014-03-27 16:18:19 +090041 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
42 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090043
44 /* Watchdog init */
45 writel(0xA5A5A500, &rwdt->rwtcsra);
46 writel(0xA5A5A500, &swdt->swtcsra);
47
Nobuhiro Iwamatsu0751cbf2014-03-31 14:14:25 +090048 /* CPU frequency setting. Set to 1.4GHz */
Marek Vasut17602322024-02-27 17:05:46 +010049 if (renesas_get_cpu_rev_integer() >= R8A7790_CUT_ES2X) {
Nobuhiro Iwamatsu67fd59b2014-10-31 16:08:11 +090050 u32 stat = 0;
Tom Rini8c70baa2021-12-14 13:36:40 -050051 u32 stc = ((1400 / CLK2MHZ(get_board_sys_clk())) - 1)
Nobuhiro Iwamatsu70ad4f62014-07-30 12:28:00 +090052 << PLL0_STC_BIT;
53 clrsetbits_le32(PLL0CR, PLL0_STC_MASK, stc);
Nobuhiro Iwamatsu67fd59b2014-10-31 16:08:11 +090054
55 do {
56 stat = readl(PLLECR) & PLL0ST;
57 } while (stat == 0x0);
Nobuhiro Iwamatsu70ad4f62014-07-30 12:28:00 +090058 }
Nobuhiro Iwamatsu0751cbf2014-03-31 14:14:25 +090059
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090060 /* QoS(Quality-of-Service) Init */
61 qos_init();
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090062}
63
Marek Vasut016a6052018-04-23 20:24:06 +020064#define TMU0_MSTP125 BIT(25)
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +090065
Marek Vasut016a6052018-04-23 20:24:06 +020066#define SD1CKCR 0xE6150078
67#define SD2CKCR 0xE615026C
68#define SD_97500KHZ 0x7
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +090069
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090070int board_early_init_f(void)
71{
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090072 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +090073
74 /*
75 * SD0 clock is set to 97.5MHz by default.
Marek Vasut016a6052018-04-23 20:24:06 +020076 * Set SD1 and SD2 to the 97.5MHz as well.
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +090077 */
Marek Vasut016a6052018-04-23 20:24:06 +020078 writel(SD_97500KHZ, SD1CKCR);
79 writel(SD_97500KHZ, SD2CKCR);
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +090080
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090081 return 0;
82}
83
Marek Vasut016a6052018-04-23 20:24:06 +020084#define ETHERNET_PHY_RESET 185 /* GPIO 5 31 */
85
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090086int board_init(void)
87{
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090088 /* adress of boot parameters */
Tom Rinibb4dd962022-11-16 13:10:37 -050089 gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +090090
Marek Vasut016a6052018-04-23 20:24:06 +020091 /* Force ethernet PHY out of reset */
92 gpio_request(ETHERNET_PHY_RESET, "phy_reset");
93 gpio_direction_output(ETHERNET_PHY_RESET, 0);
94 mdelay(10);
95 gpio_direction_output(ETHERNET_PHY_RESET, 1);
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +090096
97 return 0;
98}
99
Marek Vasut016a6052018-04-23 20:24:06 +0200100int dram_init(void)
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +0900101{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +0530102 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut016a6052018-04-23 20:24:06 +0200103 return -EINVAL;
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +0900104
Marek Vasut016a6052018-04-23 20:24:06 +0200105 return 0;
106}
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +0900107
Marek Vasut016a6052018-04-23 20:24:06 +0200108int dram_init_banksize(void)
109{
110 fdtdec_setup_memory_banksize();
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +0900111
Marek Vasut016a6052018-04-23 20:24:06 +0200112 return 0;
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +0900113}
114
Marek Vasut016a6052018-04-23 20:24:06 +0200115/* KSZ8041NL/RNL */
116#define PHY_CONTROL1 0x1E
Marek Vasut9580a452019-03-30 07:05:09 +0100117#define PHY_LED_MODE 0xC000
Nobuhiro Iwamatsu0929b742013-10-20 20:28:24 +0900118#define PHY_LED_MODE_ACK 0x4000
119int board_phy_config(struct phy_device *phydev)
120{
121 int ret = phy_read(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1);
122 ret &= ~PHY_LED_MODE;
123 ret |= PHY_LED_MODE_ACK;
124 ret = phy_write(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1, (u16)ret);
125
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +0900126 return 0;
127}
128
Harald Seiler6f14d5f2020-12-15 16:47:52 +0100129void reset_cpu(void)
Marek Vasut016a6052018-04-23 20:24:06 +0200130{
131 struct udevice *dev;
132 const u8 pmic_bus = 2;
133 const u8 pmic_addr = 0x58;
134 u8 data;
135 int ret;
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +0900136
Marek Vasut016a6052018-04-23 20:24:06 +0200137 ret = i2c_get_chip_for_busnum(pmic_bus, pmic_addr, 1, &dev);
138 if (ret)
139 hang();
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +0900140
Marek Vasut016a6052018-04-23 20:24:06 +0200141 ret = dm_i2c_read(dev, 0x13, &data, 1);
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +0900142 if (ret)
Marek Vasut016a6052018-04-23 20:24:06 +0200143 hang();
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +0900144
Marek Vasut016a6052018-04-23 20:24:06 +0200145 data |= BIT(1);
Nobuhiro Iwamatsu4ca383a2014-11-21 10:19:32 +0900146
Marek Vasut016a6052018-04-23 20:24:06 +0200147 ret = dm_i2c_write(dev, 0x13, &data, 1);
148 if (ret)
149 hang();
Nobuhiro Iwamatsubaf336a2014-12-03 15:30:30 +0900150}
151
Marek Vasut016a6052018-04-23 20:24:06 +0200152enum env_location env_get_location(enum env_operation op, int prio)
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +0900153{
Marek Vasut016a6052018-04-23 20:24:06 +0200154 const u32 load_magic = 0xb33fc0de;
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +0900155
Marek Vasut016a6052018-04-23 20:24:06 +0200156 /* Block environment access if loaded using JTAG */
157 if ((readl(CONFIG_SPL_TEXT_BASE + 0x24) == load_magic) &&
158 (op != ENVOP_INIT))
159 return ENVL_UNKNOWN;
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +0900160
Marek Vasut016a6052018-04-23 20:24:06 +0200161 if (prio)
162 return ENVL_UNKNOWN;
Nobuhiro Iwamatsua99b6b52013-10-10 09:13:41 +0900163
Marek Vasut016a6052018-04-23 20:24:06 +0200164 return ENVL_SPI_FLASH;
Nobuhiro Iwamatsud74c8cf2013-11-21 17:06:46 +0900165}