blob: bfd0cc6884b7f754be4a6a2525e08e4df22b53a9 [file] [log] [blame]
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +09001/*
2 * board/renesas/koelsch/koelsch.c
3 *
4 * Copyright (C) 2013 Renesas Electronics Corporation
5 *
6 * SPDX-License-Identifier: GPL-2.0
7 *
8 */
9
10#include <common.h>
11#include <malloc.h>
12#include <asm/processor.h>
13#include <asm/mach-types.h>
14#include <asm/io.h>
15#include <asm/errno.h>
16#include <asm/arch/sys_proto.h>
17#include <asm/gpio.h>
18#include <asm/arch/rmobile.h>
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +090019#include <netdev.h>
20#include <miiphy.h>
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090021#include <i2c.h>
Nobuhiro Iwamatsuccde6772014-03-31 11:52:51 +090022#include <div64.h>
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090023#include "qos.h"
24
25DECLARE_GLOBAL_DATA_PTR;
26
Nobuhiro Iwamatsuccde6772014-03-31 11:52:51 +090027#define CLK2MHZ(clk) (clk / 1000 / 1000)
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090028void s_init(void)
29{
Nobuhiro Iwamatsuec9b3862014-03-27 16:18:08 +090030 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
31 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
Nobuhiro Iwamatsuccde6772014-03-31 11:52:51 +090032 u32 stc;
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090033
34 /* Watchdog init */
35 writel(0xA5A5A500, &rwdt->rwtcsra);
36 writel(0xA5A5A500, &swdt->swtcsra);
37
Nobuhiro Iwamatsuccde6772014-03-31 11:52:51 +090038 /* CPU frequency setting. Set to 1.5GHz */
39 stc = ((1500 / CLK2MHZ(CONFIG_SYS_CLK_FREQ)) - 1) << PLL0_STC_BIT;
40 clrsetbits_le32(PLL0CR, PLL0_STC_MASK, stc);
41
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090042 /* QoS */
43 qos_init();
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090044}
45
46#define MSTPSR1 0xE6150038
47#define SMSTPCR1 0xE6150134
48#define TMU0_MSTP125 (1 << 25)
49
50#define MSTPSR7 0xE61501C4
51#define SMSTPCR7 0xE615014C
52#define SCIF0_MSTP721 (1 << 21)
53
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +090054#define MSTPSR8 0xE61509A0
55#define SMSTPCR8 0xE6150990
56#define ETHER_MSTP813 (1 << 13)
57
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090058#define mstp_setbits(type, addr, saddr, set) \
59 out_##type((saddr), in_##type(addr) | (set))
60#define mstp_clrbits(type, addr, saddr, clear) \
61 out_##type((saddr), in_##type(addr) & ~(clear))
62#define mstp_setbits_le32(addr, saddr, set) \
63 mstp_setbits(le32, addr, saddr, set)
64#define mstp_clrbits_le32(addr, saddr, clear) \
65 mstp_clrbits(le32, addr, saddr, clear)
66
67int board_early_init_f(void)
68{
69 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
70
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090071 /* SCIF0 */
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090072 mstp_clrbits_le32(MSTPSR7, SMSTPCR7, SCIF0_MSTP721);
73
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +090074 /* ETHER */
75 mstp_clrbits_le32(MSTPSR8, SMSTPCR8, ETHER_MSTP813);
76
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090077 return 0;
78}
79
Nobuhiro Iwamatsu9f861f02013-10-11 14:49:04 +090080void arch_preboot_os(void)
81{
82 /* Disable TMU0 */
83 mstp_setbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
84}
85
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +090086/* LSI pin pull-up control */
87#define PUPR5 0xe6060114
88#define PUPR5_ETH 0x3FFC0000
89#define PUPR5_ETH_MAGIC (1 << 27)
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +090090int board_init(void)
91{
92 /* adress of boot parameters */
93 gd->bd->bi_boot_params = KOELSCH_SDRAM_BASE + 0x100;
94
95 /* Init PFC controller */
96 r8a7791_pinmux_init();
97
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +090098 /* ETHER Enable */
99 gpio_request(GPIO_FN_ETH_CRS_DV, NULL);
100 gpio_request(GPIO_FN_ETH_RX_ER, NULL);
101 gpio_request(GPIO_FN_ETH_RXD0, NULL);
102 gpio_request(GPIO_FN_ETH_RXD1, NULL);
103 gpio_request(GPIO_FN_ETH_LINK, NULL);
104 gpio_request(GPIO_FN_ETH_REFCLK, NULL);
105 gpio_request(GPIO_FN_ETH_MDIO, NULL);
106 gpio_request(GPIO_FN_ETH_TXD1, NULL);
107 gpio_request(GPIO_FN_ETH_TX_EN, NULL);
108 gpio_request(GPIO_FN_ETH_TXD0, NULL);
109 gpio_request(GPIO_FN_ETH_MDC, NULL);
110 gpio_request(GPIO_FN_IRQ0, NULL);
111
112 mstp_clrbits_le32(PUPR5, PUPR5, PUPR5_ETH & ~PUPR5_ETH_MAGIC);
113 gpio_request(GPIO_GP_5_22, NULL); /* PHY_RST */
114 mstp_clrbits_le32(PUPR5, PUPR5, PUPR5_ETH_MAGIC);
115
116 gpio_direction_output(GPIO_GP_5_22, 0);
117 mdelay(20);
118 gpio_set_value(GPIO_GP_5_22, 1);
119 udelay(1);
120
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +0900121 return 0;
122}
123
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +0900124#define CXR24 0xEE7003C0 /* MAC address high register */
125#define CXR25 0xEE7003C8 /* MAC address low register */
126int board_eth_init(bd_t *bis)
127{
128#ifdef CONFIG_SH_ETHER
129 int ret = -ENODEV;
130 u32 val;
131 unsigned char enetaddr[6];
132
133 ret = sh_eth_initialize(bis);
134 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
135 return ret;
136
137 /* Set Mac address */
138 val = enetaddr[0] << 24 | enetaddr[1] << 16 |
139 enetaddr[2] << 8 | enetaddr[3];
140 writel(val, CXR24);
141
142 val = enetaddr[4] << 8 | enetaddr[5];
143 writel(val, CXR25);
144
145 return ret;
146#else
147 return 0;
148#endif
149}
150
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +0900151int dram_init(void)
152{
153 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
154 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
155
156 return 0;
157}
158
Nobuhiro Iwamatsu90362c02013-10-20 20:37:17 +0900159/* koelsch has KSZ8041NL/RNL */
160#define PHY_CONTROL1 0x1E
161#define PHY_LED_MODE 0xC0000
162#define PHY_LED_MODE_ACK 0x4000
163int board_phy_config(struct phy_device *phydev)
164{
165 int ret = phy_read(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1);
166 ret &= ~PHY_LED_MODE;
167 ret |= PHY_LED_MODE_ACK;
168 ret = phy_write(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1, (u16)ret);
169
170 return 0;
171}
172
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +0900173const struct rmobile_sysinfo sysinfo = {
174 CONFIG_RMOBILE_BOARD_STRING
175};
176
177void dram_init_banksize(void)
178{
179 gd->bd->bi_dram[0].start = KOELSCH_SDRAM_BASE;
180 gd->bd->bi_dram[0].size = KOELSCH_SDRAM_SIZE;
181}
182
183int board_late_init(void)
184{
185 return 0;
186}
187
188void reset_cpu(ulong addr)
189{
Nobuhiro Iwamatsub8f383b2013-10-10 10:48:20 +0900190 u8 val;
191
192 i2c_set_bus_num(2); /* PowerIC connected to ch2 */
193 i2c_read(CONFIG_SYS_I2C_POWERIC_ADDR, 0x13, 1, &val, 1);
194 val |= 0x02;
195 i2c_write(CONFIG_SYS_I2C_POWERIC_ADDR, 0x13, 1, &val, 1);
Nobuhiro Iwamatsu1251e492013-11-21 17:07:46 +0900196}