blob: f38263cd944b0aa9c22313f9a29216397dc08e06 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +03002/*
3 * board/renesas/porter/porter.c
4 *
5 * Copyright (C) 2015 Renesas Electronics Corporation
6 * Copyright (C) 2015 Cogent Embedded, Inc.
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +03007 */
8
Tom Rini8c70baa2021-12-14 13:36:40 -05009#include <clock_legacy.h>
Simon Glassafb02152019-12-28 10:45:01 -070010#include <cpu_func.h>
Simon Glass0af6e2d2019-08-01 09:46:52 -060011#include <env.h>
Simon Glassf11478f2019-12-28 10:45:07 -070012#include <hang.h>
Simon Glass97589732020-05-10 11:40:02 -060013#include <init.h>
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030014#include <malloc.h>
15#include <dm.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030017#include <dm/platform_data/serial_sh.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060018#include <env_internal.h>
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030019#include <asm/processor.h>
20#include <asm/mach-types.h>
21#include <asm/io.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060022#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060023#include <linux/delay.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090024#include <linux/errno.h>
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030025#include <asm/arch/sys_proto.h>
26#include <asm/gpio.h>
Marek Vasut97a070b2024-02-27 17:05:54 +010027#include <asm/arch/renesas.h>
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030028#include <asm/arch/rcar-mstp.h>
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030029#include <netdev.h>
30#include <miiphy.h>
31#include <i2c.h>
32#include <div64.h>
33#include "qos.h"
34
35DECLARE_GLOBAL_DATA_PTR;
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 1.5GHz */
Tom Rini8c70baa2021-12-14 13:36:40 -050049 stc = ((1500 / CLK2MHZ(get_board_sys_clk())) - 1) << PLL0_STC_BIT;
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030050 clrsetbits_le32(PLL0CR, PLL0_STC_MASK, stc);
51
52 /* QoS */
53 qos_init();
54}
55
Marek Vasuta5bbe262018-01-07 19:32:56 +010056#define TMU0_MSTP125 BIT(25)
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030057
58#define SD2CKCR 0xE615026C
59#define SD_97500KHZ 0x7
60
61int board_early_init_f(void)
62{
63 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
64
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030065 /*
66 * SD0 clock is set to 97.5MHz by default.
67 * Set SD2 to the 97.5MHz as well.
68 */
69 writel(SD_97500KHZ, SD2CKCR);
70
71 return 0;
72}
73
Marek Vasutb97daa62018-02-17 00:35:23 +010074#define ETHERNET_PHY_RESET 176 /* GPIO 5 22 */
75
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030076int 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;
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030080
Marek Vasutb97daa62018-02-17 00:35:23 +010081 /* 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);
86
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030087 return 0;
88}
89
Marek Vasuta5bbe262018-01-07 19:32:56 +010090int dram_init(void)
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030091{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053092 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasuta5bbe262018-01-07 19:32:56 +010093 return -EINVAL;
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030094
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030095 return 0;
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030096}
97
Marek Vasuta5bbe262018-01-07 19:32:56 +010098int dram_init_banksize(void)
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +030099{
Marek Vasuta5bbe262018-01-07 19:32:56 +0100100 fdtdec_setup_memory_banksize();
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +0300101
102 return 0;
103}
104
105/* porter has KSZ8041RNLI */
106#define PHY_CONTROL1 0x1E
Marek Vasut9580a452019-03-30 07:05:09 +0100107#define PHY_LED_MODE 0xC000
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +0300108#define PHY_LED_MODE_ACK 0x4000
109int board_phy_config(struct phy_device *phydev)
110{
111 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);
115
116 return 0;
117}
118
Harald Seiler6f14d5f2020-12-15 16:47:52 +0100119void reset_cpu(void)
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +0300120{
Marek Vasut5e61b942018-02-17 02:16:48 +0100121 struct udevice *dev;
122 const u8 pmic_bus = 6;
123 const u8 pmic_addr = 0x5a;
124 u8 data;
125 int ret;
126
127 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);
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +0300136
Marek Vasut5e61b942018-02-17 02:16:48 +0100137 ret = dm_i2c_write(dev, 0x13, &data, 1);
138 if (ret)
139 hang();
Vladimir Barinov2f8c00e2015-02-14 01:06:13 +0300140}
Marek Vasutebcf2812018-04-17 02:49:48 +0200141
142enum env_location env_get_location(enum env_operation op, int prio)
143{
144 const u32 load_magic = 0xb33fc0de;
145
146 /* 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}