2 * board/renesas/koelsch/koelsch.c
4 * Copyright (C) 2013 Renesas Electronics Corporation
6 * SPDX-License-Identifier: GPL-2.0
12 #include <asm/processor.h>
13 #include <asm/mach-types.h>
15 #include <asm/errno.h>
16 #include <asm/arch/sys_proto.h>
18 #include <asm/arch/rmobile.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 #define CLK2MHZ(clk) (clk / 1000 / 1000)
30 struct rcar_rwdt *rwdt = (struct rcar_rwdt *)RWDT_BASE;
31 struct rcar_swdt *swdt = (struct rcar_swdt *)SWDT_BASE;
35 writel(0xA5A5A500, &rwdt->rwtcsra);
36 writel(0xA5A5A500, &swdt->swtcsra);
38 /* 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);
46 #define MSTPSR1 0xE6150038
47 #define SMSTPCR1 0xE6150134
48 #define TMU0_MSTP125 (1 << 25)
50 #define MSTPSR7 0xE61501C4
51 #define SMSTPCR7 0xE615014C
52 #define SCIF0_MSTP721 (1 << 21)
54 #define MSTPSR8 0xE61509A0
55 #define SMSTPCR8 0xE6150990
56 #define ETHER_MSTP813 (1 << 13)
58 #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)
67 int board_early_init_f(void)
69 mstp_clrbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
72 mstp_clrbits_le32(MSTPSR7, SMSTPCR7, SCIF0_MSTP721);
75 mstp_clrbits_le32(MSTPSR8, SMSTPCR8, ETHER_MSTP813);
80 void arch_preboot_os(void)
83 mstp_setbits_le32(MSTPSR1, SMSTPCR1, TMU0_MSTP125);
86 /* LSI pin pull-up control */
87 #define PUPR5 0xe6060114
88 #define PUPR5_ETH 0x3FFC0000
89 #define PUPR5_ETH_MAGIC (1 << 27)
92 /* adress of boot parameters */
93 gd->bd->bi_boot_params = KOELSCH_SDRAM_BASE + 0x100;
95 /* Init PFC controller */
96 r8a7791_pinmux_init();
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);
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);
116 gpio_direction_output(GPIO_GP_5_22, 0);
118 gpio_set_value(GPIO_GP_5_22, 1);
124 #define CXR24 0xEE7003C0 /* MAC address high register */
125 #define CXR25 0xEE7003C8 /* MAC address low register */
126 int board_eth_init(bd_t *bis)
128 #ifdef CONFIG_SH_ETHER
131 unsigned char enetaddr[6];
133 ret = sh_eth_initialize(bis);
134 if (!eth_getenv_enetaddr("ethaddr", enetaddr))
137 /* Set Mac address */
138 val = enetaddr[0] << 24 | enetaddr[1] << 16 |
139 enetaddr[2] << 8 | enetaddr[3];
142 val = enetaddr[4] << 8 | enetaddr[5];
153 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
158 /* koelsch has KSZ8041NL/RNL */
159 #define PHY_CONTROL1 0x1E
160 #define PHY_LED_MODE 0xC0000
161 #define PHY_LED_MODE_ACK 0x4000
162 int board_phy_config(struct phy_device *phydev)
164 int ret = phy_read(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1);
165 ret &= ~PHY_LED_MODE;
166 ret |= PHY_LED_MODE_ACK;
167 ret = phy_write(phydev, MDIO_DEVAD_NONE, PHY_CONTROL1, (u16)ret);
172 const struct rmobile_sysinfo sysinfo = {
173 CONFIG_RMOBILE_BOARD_STRING
176 void dram_init_banksize(void)
178 gd->bd->bi_dram[0].start = KOELSCH_SDRAM_BASE;
179 gd->bd->bi_dram[0].size = KOELSCH_SDRAM_SIZE;
182 int board_late_init(void)
187 void reset_cpu(ulong addr)
191 i2c_set_bus_num(2); /* PowerIC connected to ch2 */
192 i2c_read(CONFIG_SYS_I2C_POWERIC_ADDR, 0x13, 1, &val, 1);
194 i2c_write(CONFIG_SYS_I2C_POWERIC_ADDR, 0x13, 1, &val, 1);