blob: b4b70d3a5b20a8185f4486a343764e7889c8862e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +09002/*
3 * board/renesas/gose/gose.c
4 *
5 * Copyright (C) 2014 Renesas Electronics Corporation
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +09006 */
7
Tom Rini8c70baa2021-12-14 13:36:40 -05008#include <clock_legacy.h>
Simon Glassafb02152019-12-28 10:45:01 -07009#include <cpu_func.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060010#include <env.h>
Simon Glassf11478f2019-12-28 10:45:07 -070011#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090013#include <malloc.h>
Nobuhiro Iwamatsu37e26412014-12-09 11:24:01 +090014#include <dm.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060015#include <asm/global_data.h>
Nobuhiro Iwamatsu37e26412014-12-09 11:24:01 +090016#include <dm/platform_data/serial_sh.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060017#include <env_internal.h>
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090018#include <asm/processor.h>
19#include <asm/mach-types.h>
20#include <asm/io.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060021#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060022#include <linux/delay.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090023#include <linux/errno.h>
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090024#include <asm/arch/sys_proto.h>
25#include <asm/gpio.h>
Marek Vasut97a070b2024-02-27 17:05:54 +010026#include <asm/arch/renesas.h>
Nobuhiro Iwamatsuade3c942014-12-02 16:52:19 +090027#include <asm/arch/rcar-mstp.h>
Nobuhiro Iwamatsueef1f232014-11-06 15:42:24 +090028#include <netdev.h>
29#include <miiphy.h>
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090030#include <i2c.h>
31#include "qos.h"
32
33DECLARE_GLOBAL_DATA_PTR;
34
35#define CLK2MHZ(clk) (clk / 1000 / 1000)
36void s_init(void)
37{
38 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
39 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
40 u32 stc;
41
42 /* Watchdog init */
43 writel(0xA5A5A500, &rwdt->rwtcsra);
44 writel(0xA5A5A500, &swdt->swtcsra);
45
46 /* CPU frequency setting. Set to 1.5GHz */
Tom Rini8c70baa2021-12-14 13:36:40 -050047 stc = ((1500 / CLK2MHZ(get_board_sys_clk())) - 1) << PLL0_STC_BIT;
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090048 clrsetbits_le32(PLL0CR, PLL0_STC_MASK, stc);
49
50 /* QoS */
51 qos_init();
52}
53
Marek Vasut2d6dabc2018-04-23 20:24:10 +020054#define TMU0_MSTP125 BIT(25)
Nobuhiro Iwamatsu161af502014-11-12 11:29:39 +090055
56#define SD1CKCR 0xE6150078
57#define SD2CKCR 0xE615026C
58#define SD_97500KHZ 0x7
59
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090060int board_early_init_f(void)
61{
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090062 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
63
Marek Vasut2d6dabc2018-04-23 20:24:10 +020064 /*
65 * SD0 clock is set to 97.5MHz by default.
66 * Set SD1 and SD2 to the 97.5MHz as well.
67 */
Nobuhiro Iwamatsu161af502014-11-12 11:29:39 +090068 writel(SD_97500KHZ, SD1CKCR);
69 writel(SD_97500KHZ, SD2CKCR);
70
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090071 return 0;
72}
73
Marek Vasut2d6dabc2018-04-23 20:24:10 +020074#define ETHERNET_PHY_RESET 176 /* GPIO 5 22 */
Nobuhiro Iwamatsueef1f232014-11-06 15:42:24 +090075
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090076int board_init(void)
77{
78 /* adress of boot parameters */
Tom Rinibb4dd962022-11-16 13:10:37 -050079 gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090080
Marek Vasut2d6dabc2018-04-23 20:24:10 +020081 /* Force ethernet PHY out of reset */
82 gpio_request(ETHERNET_PHY_RESET, "phy_reset");
83 gpio_direction_output(ETHERNET_PHY_RESET, 0);
84 mdelay(10);
85 gpio_direction_output(ETHERNET_PHY_RESET, 1);
Nobuhiro Iwamatsueef1f232014-11-06 15:42:24 +090086
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +090087 return 0;
88}
89
Marek Vasut2d6dabc2018-04-23 20:24:10 +020090int dram_init(void)
Nobuhiro Iwamatsueef1f232014-11-06 15:42:24 +090091{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053092 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut2d6dabc2018-04-23 20:24:10 +020093 return -EINVAL;
Nobuhiro Iwamatsueef1f232014-11-06 15:42:24 +090094
Marek Vasut2d6dabc2018-04-23 20:24:10 +020095 return 0;
Nobuhiro Iwamatsu161af502014-11-12 11:29:39 +090096}
97
Marek Vasut2d6dabc2018-04-23 20:24:10 +020098int dram_init_banksize(void)
Nobuhiro Iwamatsu161af502014-11-12 11:29:39 +090099{
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200100 fdtdec_setup_memory_banksize();
Nobuhiro Iwamatsu161af502014-11-12 11:29:39 +0900101
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200102 return 0;
Nobuhiro Iwamatsueef1f232014-11-06 15:42:24 +0900103}
104
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200105/* KSZ8041RNLI */
106#define PHY_CONTROL1 0x1E
Marek Vasut9580a452019-03-30 07:05:09 +0100107#define PHY_LED_MODE 0xC000
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200108#define PHY_LED_MODE_ACK 0x4000
109int board_phy_config(struct phy_device *phydev)
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +0900110{
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200111 int ret = phy_read(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1);
112 ret &= ~PHY_LED_MODE;
113 ret |= PHY_LED_MODE_ACK;
114 ret = phy_write(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1, (u16)ret);
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +0900115
116 return 0;
117}
118
Harald Seiler6f14d5f2020-12-15 16:47:52 +0100119void reset_cpu(void)
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +0900120{
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200121 struct udevice *dev;
122 const u8 pmic_bus = 6;
123 const u8 pmic_addr = 0x58;
124 u8 data;
125 int ret;
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +0900126
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200127 ret = i2c_get_chip_for_busnum(pmic_bus, pmic_addr, 1, &dev);
128 if (ret)
129 hang();
130
131 ret = dm_i2c_read(dev, 0x13, &data, 1);
132 if (ret)
133 hang();
134
135 data |= BIT(1);
136
137 ret = dm_i2c_write(dev, 0x13, &data, 1);
138 if (ret)
139 hang();
Nobuhiro Iwamatsu7e405632014-11-06 15:39:28 +0900140}
Nobuhiro Iwamatsu37e26412014-12-09 11:24:01 +0900141
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200142enum env_location env_get_location(enum env_operation op, int prio)
143{
144 const u32 load_magic = 0xb33fc0de;
Nobuhiro Iwamatsu37e26412014-12-09 11:24:01 +0900145
Marek Vasut2d6dabc2018-04-23 20:24:10 +0200146 /* Block environment access if loaded using JTAG */
147 if ((readl(CONFIG_SPL_TEXT_BASE + 0x24) == load_magic) &&
148 (op != ENVOP_INIT))
149 return ENVL_UNKNOWN;
150
151 if (prio)
152 return ENVL_UNKNOWN;
153
154 return ENVL_SPI_FLASH;
155}