blob: 59ba262ad73ed4379b10d0d2dac4afb77c4cfe72 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +03002/*
3 * board/renesas/silk/silk.c
4 *
5 * Copyright (C) 2015 Renesas Electronics Corporation
6 * Copyright (C) 2015 Cogent Embedded, Inc.
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +03007 */
8
9#include <common.h>
10#include <malloc.h>
Nobuhiro Iwamatsufafe6e92014-12-09 16:20:04 +090011#include <dm.h>
12#include <dm/platform_data/serial_sh.h>
Alex Kiernan9c215492018-04-01 09:22:38 +000013#include <environment.h>
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030014#include <asm/processor.h>
15#include <asm/mach-types.h>
16#include <asm/io.h>
Masahiro Yamada56a931c2016-09-21 11:28:55 +090017#include <linux/errno.h>
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030018#include <asm/arch/sys_proto.h>
19#include <asm/gpio.h>
20#include <asm/arch/rmobile.h>
21#include <asm/arch/rcar-mstp.h>
22#include <asm/arch/mmc.h>
Vladimir Barinovc5951332015-02-24 18:55:46 +020023#include <asm/arch/sh_sdhi.h>
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030024#include <netdev.h>
25#include <miiphy.h>
26#include <i2c.h>
27#include <div64.h>
28#include "qos.h"
29
30DECLARE_GLOBAL_DATA_PTR;
31
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030032void s_init(void)
33{
34 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
35 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
36
37 /* Watchdog init */
38 writel(0xA5A5A500, &rwdt->rwtcsra);
39 writel(0xA5A5A500, &swdt->swtcsra);
40
41 /* QoS */
42 qos_init();
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030043}
44
Marek Vasut52e0ee32018-04-21 16:19:56 +020045#define TMU0_MSTP125 BIT(25)
46#define MMC0_MSTP315 BIT(15)
Vladimir Barinovc5951332015-02-24 18:55:46 +020047
48#define SD1CKCR 0xE6150078
Marek Vasut52e0ee32018-04-21 16:19:56 +020049#define SD_97500KHZ 0x7
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030050
51int board_early_init_f(void)
52{
53 /* TMU */
54 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
55
Marek Vasut52e0ee32018-04-21 16:19:56 +020056 /* Set SD1 to the 97.5MHz */
57 writel(SD_97500KHZ, SD1CKCR);
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030058
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030059 return 0;
60}
61
Marek Vasut52e0ee32018-04-21 16:19:56 +020062#define ETHERNET_PHY_RESET 56 /* GPIO 1 24 */
63
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030064int board_init(void)
65{
66 /* adress of boot parameters */
67 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
68
Marek Vasut52e0ee32018-04-21 16:19:56 +020069 /* Force ethernet PHY out of reset */
70 gpio_request(ETHERNET_PHY_RESET, "phy_reset");
71 gpio_direction_output(ETHERNET_PHY_RESET, 0);
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030072 mdelay(20);
Marek Vasut52e0ee32018-04-21 16:19:56 +020073 gpio_direction_output(ETHERNET_PHY_RESET, 1);
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030074 udelay(1);
75
76 return 0;
77}
78
Marek Vasut52e0ee32018-04-21 16:19:56 +020079int dram_init(void)
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030080{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053081 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut52e0ee32018-04-21 16:19:56 +020082 return -EINVAL;
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030083
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030084 return 0;
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030085}
86
Marek Vasut52e0ee32018-04-21 16:19:56 +020087int dram_init_banksize(void)
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030088{
Marek Vasut52e0ee32018-04-21 16:19:56 +020089 fdtdec_setup_memory_banksize();
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030090
Marek Vasut52e0ee32018-04-21 16:19:56 +020091 return 0;
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030092}
93
Marek Vasut52e0ee32018-04-21 16:19:56 +020094/* porter has KSZ8041RNLI */
95#define PHY_CONTROL1 0x1E
Marek Vasut9580a452019-03-30 07:05:09 +010096#define PHY_LED_MODE 0xC000
Marek Vasut52e0ee32018-04-21 16:19:56 +020097#define PHY_LED_MODE_ACK 0x4000
98int board_phy_config(struct phy_device *phydev)
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +030099{
Marek Vasut52e0ee32018-04-21 16:19:56 +0200100 int ret = phy_read(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1);
101 ret &= ~PHY_LED_MODE;
102 ret |= PHY_LED_MODE_ACK;
103 ret = phy_write(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1, (u16)ret);
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +0300104
105 return 0;
106}
107
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +0300108void reset_cpu(ulong addr)
109{
Marek Vasut52e0ee32018-04-21 16:19:56 +0200110 struct udevice *dev;
111 const u8 pmic_bus = 1;
Marek Vasutfbea8812018-04-22 04:44:05 +0200112 const u8 pmic_addr = 0x5a;
Marek Vasut52e0ee32018-04-21 16:19:56 +0200113 u8 data;
114 int ret;
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +0300115
Marek Vasut52e0ee32018-04-21 16:19:56 +0200116 ret = i2c_get_chip_for_busnum(pmic_bus, pmic_addr, 1, &dev);
117 if (ret)
118 hang();
119
120 ret = dm_i2c_read(dev, 0x13, &data, 1);
121 if (ret)
122 hang();
123
124 data |= BIT(1);
125
126 ret = dm_i2c_write(dev, 0x13, &data, 1);
127 if (ret)
128 hang();
Vladimir Barinovc8c1a3e2015-01-12 19:17:07 +0300129}
Nobuhiro Iwamatsufafe6e92014-12-09 16:20:04 +0900130
Marek Vasut52e0ee32018-04-21 16:19:56 +0200131enum env_location env_get_location(enum env_operation op, int prio)
132{
133 const u32 load_magic = 0xb33fc0de;
Nobuhiro Iwamatsufafe6e92014-12-09 16:20:04 +0900134
Marek Vasut52e0ee32018-04-21 16:19:56 +0200135 /* Block environment access if loaded using JTAG */
136 if ((readl(CONFIG_SPL_TEXT_BASE + 0x24) == load_magic) &&
137 (op != ENVOP_INIT))
138 return ENVL_UNKNOWN;
139
140 if (prio)
141 return ENVL_UNKNOWN;
142
143 return ENVL_SPI_FLASH;
144}