blob: d1e29d2cecf53139d37cafbe9c25fe2cb9ac12bb [file] [log] [blame]
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +09001/*
2 * board/renesas/lager/lager.c
3 * This file is lager board support.
4 *
5 * Copyright (C) 2013 Renesas Electronics Corporation
6 * Copyright (C) 2013 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
7 *
8 * SPDX-License-Identifier: GPL-2.0
9 */
10
11#include <common.h>
12#include <malloc.h>
13#include <netdev.h>
14#include <asm/processor.h>
15#include <asm/mach-types.h>
16#include <asm/io.h>
17#include <asm/errno.h>
18#include <asm/arch/sys_proto.h>
19#include <asm/gpio.h>
20#include <asm/arch/rmobile.h>
Nobuhiro Iwamatsu44e1eeb2014-12-02 16:52:19 +090021#include <asm/arch/rcar-mstp.h>
Nobuhiro Iwamatsud7916b12014-12-03 15:30:30 +090022#include <asm/arch/mmc.h>
Nobuhiro Iwamatsu23565c62013-10-20 20:28:24 +090023#include <miiphy.h>
Nobuhiro Iwamatsub9986be2013-10-10 09:13:41 +090024#include <i2c.h>
Nobuhiro Iwamatsud7916b12014-12-03 15:30:30 +090025#include <mmc.h>
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090026#include "qos.h"
27
28DECLARE_GLOBAL_DATA_PTR;
29
Nobuhiro Iwamatsu2c2c6ba2014-03-31 14:14:25 +090030#define CLK2MHZ(clk) (clk / 1000 / 1000)
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090031void s_init(void)
32{
Nobuhiro Iwamatsudc535e12014-03-27 16:18:19 +090033 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
34 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090035
36 /* Watchdog init */
37 writel(0xA5A5A500, &rwdt->rwtcsra);
38 writel(0xA5A5A500, &swdt->swtcsra);
39
Nobuhiro Iwamatsu2c2c6ba2014-03-31 14:14:25 +090040 /* CPU frequency setting. Set to 1.4GHz */
Nobuhiro Iwamatsuf212a8a2014-07-30 12:28:00 +090041 if (rmobile_get_cpu_rev_integer() >= R8A7790_CUT_ES2X) {
Nobuhiro Iwamatsud8659c62014-10-31 16:08:11 +090042 u32 stat = 0;
Nobuhiro Iwamatsuf212a8a2014-07-30 12:28:00 +090043 u32 stc = ((1400 / CLK2MHZ(CONFIG_SYS_CLK_FREQ)) - 1)
44 << PLL0_STC_BIT;
45 clrsetbits_le32(PLL0CR, PLL0_STC_MASK, stc);
Nobuhiro Iwamatsud8659c62014-10-31 16:08:11 +090046
47 do {
48 stat = readl(PLLECR) & PLL0ST;
49 } while (stat == 0x0);
Nobuhiro Iwamatsuf212a8a2014-07-30 12:28:00 +090050 }
Nobuhiro Iwamatsu2c2c6ba2014-03-31 14:14:25 +090051
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090052 /* QoS(Quality-of-Service) Init */
53 qos_init();
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090054}
55
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090056#define TMU0_MSTP125 (1 << 25)
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090057#define SCIF0_MSTP721 (1 << 21)
Nobuhiro Iwamatsu23565c62013-10-20 20:28:24 +090058#define ETHER_MSTP813 (1 << 13)
Nobuhiro Iwamatsud7916b12014-12-03 15:30:30 +090059#define MMC1_MSTP305 (1 << 5)
Nobuhiro Iwamatsu23565c62013-10-20 20:28:24 +090060
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090061int board_early_init_f(void)
62{
63 /* TMU0 */
64 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090065 /* SCIF0 */
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090066 mstp_clrbits_le32(MSTPSR7, SMSTPCR7, SCIF0_MSTP721);
Nobuhiro Iwamatsu23565c62013-10-20 20:28:24 +090067 /* ETHER */
68 mstp_clrbits_le32(MSTPSR8, SMSTPCR8, ETHER_MSTP813);
Nobuhiro Iwamatsud7916b12014-12-03 15:30:30 +090069 /* eMMC */
70 mstp_clrbits_le32(MSTPSR3, SMSTPCR3, MMC1_MSTP305);
Nobuhiro Iwamatsu23565c62013-10-20 20:28:24 +090071
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090072 return 0;
73}
74
75DECLARE_GLOBAL_DATA_PTR;
76int board_init(void)
77{
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090078 /* adress of boot parameters */
Nobuhiro Iwamatsueeb266a2014-11-10 13:58:50 +090079 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +090080
81 /* Init PFC controller */
82 r8a7790_pinmux_init();
83
Nobuhiro Iwamatsu23565c62013-10-20 20:28:24 +090084 /* ETHER Enable */
85 gpio_request(GPIO_FN_ETH_CRS_DV, NULL);
86 gpio_request(GPIO_FN_ETH_RX_ER, NULL);
87 gpio_request(GPIO_FN_ETH_RXD0, NULL);
88 gpio_request(GPIO_FN_ETH_RXD1, NULL);
89 gpio_request(GPIO_FN_ETH_LINK, NULL);
90 gpio_request(GPIO_FN_ETH_REF_CLK, NULL);
91 gpio_request(GPIO_FN_ETH_MDIO, NULL);
92 gpio_request(GPIO_FN_ETH_TXD1, NULL);
93 gpio_request(GPIO_FN_ETH_TX_EN, NULL);
94 gpio_request(GPIO_FN_ETH_MAGIC, NULL);
95 gpio_request(GPIO_FN_ETH_TXD0, NULL);
96 gpio_request(GPIO_FN_ETH_MDC, NULL);
97 gpio_request(GPIO_FN_IRQ0, NULL);
98
99 gpio_request(GPIO_GP_5_31, NULL); /* PHY_RST */
100 gpio_direction_output(GPIO_GP_5_31, 0);
101 mdelay(20);
102 gpio_set_value(GPIO_GP_5_31, 1);
103 udelay(1);
104
105 return 0;
106}
107
108#define CXR24 0xEE7003C0 /* MAC address high register */
109#define CXR25 0xEE7003C8 /* MAC address low register */
110int board_eth_init(bd_t *bis)
111{
112 int ret = -ENODEV;
113
114#ifdef CONFIG_SH_ETHER
115 u32 val;
116 unsigned char enetaddr[6];
117
118 ret = sh_eth_initialize(bis);
119 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
120 return ret;
121
122 /* Set Mac address */
123 val = enetaddr[0] << 24 | enetaddr[1] << 16 |
124 enetaddr[2] << 8 | enetaddr[3];
125 writel(val, CXR24);
126
127 val = enetaddr[4] << 8 | enetaddr[5];
128 writel(val, CXR25);
129
130#endif
131
132 return ret;
133}
134
135/* lager has KSZ8041NL/RNL */
136#define PHY_CONTROL1 0x1E
137#define PHY_LED_MODE 0xC0000
138#define PHY_LED_MODE_ACK 0x4000
139int board_phy_config(struct phy_device *phydev)
140{
141 int ret = phy_read(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1);
142 ret &= ~PHY_LED_MODE;
143 ret |= PHY_LED_MODE_ACK;
144 ret = phy_write(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1, (u16)ret);
145
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +0900146 return 0;
147}
148
Nobuhiro Iwamatsud7916b12014-12-03 15:30:30 +0900149int board_mmc_init(bd_t *bis)
150{
151 int ret = 0;
152
153#ifdef CONFIG_SH_MMCIF
154 gpio_request(GPIO_FN_MMC1_D0, NULL);
155 gpio_request(GPIO_FN_MMC1_D1, NULL);
156 gpio_request(GPIO_FN_MMC1_D2, NULL);
157 gpio_request(GPIO_FN_MMC1_D3, NULL);
158 gpio_request(GPIO_FN_MMC1_D4, NULL);
159 gpio_request(GPIO_FN_MMC1_D5, NULL);
160 gpio_request(GPIO_FN_MMC1_D6, NULL);
161 gpio_request(GPIO_FN_MMC1_D7, NULL);
162 gpio_request(GPIO_FN_MMC1_CLK, NULL);
163 gpio_request(GPIO_FN_MMC1_CMD, NULL);
164
165 ret = mmcif_mmc_init();
166#endif
167 return ret;
168}
169
170
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +0900171int dram_init(void)
172{
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +0900173 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
174
175 return 0;
176}
177
178const struct rmobile_sysinfo sysinfo = {
179 CONFIG_RMOBILE_BOARD_STRING
180};
181
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +0900182void reset_cpu(ulong addr)
183{
Nobuhiro Iwamatsub9986be2013-10-10 09:13:41 +0900184 u8 val;
185
186 i2c_set_bus_num(3); /* PowerIC connected to ch3 */
187 i2c_init(400000, 0);
188 i2c_read(CONFIG_SYS_I2C_POWERIC_ADDR, 0x13, 1, &val, 1);
189 val |= 0x02;
190 i2c_write(CONFIG_SYS_I2C_POWERIC_ADDR, 0x13, 1, &val, 1);
Nobuhiro Iwamatsuf4ec4522013-11-21 17:06:46 +0900191}