blob: e1bed7dcc3717be68b2c3b48642380653f94ecec [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +09002/*
3 * Copyright (C) 2012 Renesas Solutions Corp.
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +09004 */
5
6#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06007#include <env.h>
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +09008#include <malloc.h>
9#include <asm/processor.h>
10#include <asm/io.h>
11#include <asm/mmc.h>
Simon Glassd34b4562014-10-13 23:42:04 -060012#include <spi.h>
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +090013#include <spi_flash.h>
14
15int checkboard(void)
16{
17 puts("BOARD: SH7753 EVB\n");
18
19 return 0;
20}
21
22static void init_gpio(void)
23{
24 struct gpio_regs *gpio = GPIO_BASE;
25 struct sermux_regs *sermux = SERMUX_BASE;
26
27 /* GPIO */
28 writew(0x0000, &gpio->pacr); /* GETHER */
29 writew(0x0001, &gpio->pbcr); /* INTC */
30 writew(0x0000, &gpio->pccr); /* PWMU, INTC */
31 writew(0x0000, &gpio->pdcr); /* SPI0 */
32 writew(0xeaff, &gpio->pecr); /* GPIO */
33 writew(0x0000, &gpio->pfcr); /* WDT */
34 writew(0x0004, &gpio->pgcr); /* SPI0, GETHER MDIO gate(PTG1) */
35 writew(0x0000, &gpio->phcr); /* SPI1 */
36 writew(0x0000, &gpio->picr); /* SDHI */
37 writew(0x0000, &gpio->pjcr); /* SCIF4 */
38 writew(0x0003, &gpio->pkcr); /* SerMux */
39 writew(0x0000, &gpio->plcr); /* SerMux */
40 writew(0x0000, &gpio->pmcr); /* RIIC */
41 writew(0x0000, &gpio->pncr); /* USB, SGPIO */
42 writew(0x0000, &gpio->pocr); /* SGPIO */
43 writew(0xd555, &gpio->pqcr); /* GPIO */
44 writew(0x0000, &gpio->prcr); /* RIIC */
45 writew(0x0000, &gpio->pscr); /* RIIC */
46 writew(0x0000, &gpio->ptcr); /* STATUS */
47 writeb(0x00, &gpio->pudr);
48 writew(0x5555, &gpio->pucr); /* Debug LED */
49 writew(0x0000, &gpio->pvcr); /* RSPI */
50 writew(0x0000, &gpio->pwcr); /* EVC */
51 writew(0x0000, &gpio->pxcr); /* LBSC */
52 writew(0x0000, &gpio->pycr); /* LBSC */
53 writew(0x0000, &gpio->pzcr); /* eMMC */
54 writew(0xfe00, &gpio->psel0);
55 writew(0x0000, &gpio->psel1);
56 writew(0x3000, &gpio->psel2);
57 writew(0xff00, &gpio->psel3);
58 writew(0x771f, &gpio->psel4);
59 writew(0x0ffc, &gpio->psel5);
60 writew(0x00ff, &gpio->psel6);
61 writew(0xfc00, &gpio->psel7);
62
63 writeb(0x10, &sermux->smr0); /* SMR0: SerMux mode 0 */
64}
65
66static void init_usb_phy(void)
67{
68 struct usb_common_regs *common0 = USB0_COMMON_BASE;
69 struct usb_common_regs *common1 = USB1_COMMON_BASE;
70 struct usb0_phy_regs *phy = USB0_PHY_BASE;
71 struct usb1_port_regs *port = USB1_PORT_BASE;
72 struct usb1_alignment_regs *align = USB1_ALIGNMENT_BASE;
73
74 writew(0x0100, &phy->reset); /* set reset */
75 /* port0 = USB0, port1 = USB1 */
76 writew(0x0002, &phy->portsel);
77 writel(0x0001, &port->port1sel); /* port1 = Host */
78 writew(0x0111, &phy->reset); /* clear reset */
79
80 writew(0x4000, &common0->suspmode);
81 writew(0x4000, &common1->suspmode);
82
83#if defined(__LITTLE_ENDIAN)
84 writel(0x00000000, &align->ehcidatac);
85 writel(0x00000000, &align->ohcidatac);
86#endif
87}
88
89static void init_gether_mdio(void)
90{
91 struct gpio_regs *gpio = GPIO_BASE;
92
93 writew(readw(&gpio->pgcr) | 0x0004, &gpio->pgcr);
94 writeb(readb(&gpio->pgdr) | 0x02, &gpio->pgdr); /* Use ET0-MDIO */
95}
96
97static void set_mac_to_sh_giga_eth_register(int channel, char *mac_string)
98{
99 struct ether_mac_regs *ether;
100 unsigned char mac[6];
101 unsigned long val;
102
103 eth_parse_enetaddr(mac_string, mac);
104
105 if (!channel)
106 ether = GETHER0_MAC_BASE;
107 else
108 ether = GETHER1_MAC_BASE;
109
110 val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
111 writel(val, &ether->mahr);
112 val = (mac[4] << 8) | mac[5];
113 writel(val, &ether->malr);
114}
115
Bin Meng148c3692016-01-24 21:45:46 -0800116#if defined(CONFIG_SH_32BIT)
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900117/*****************************************************************
118 * This PMB must be set on this timing. The lowlevel_init is run on
119 * Area 0(phys 0x00000000), so we have to map it.
120 *
121 * The new PMB table is following:
122 * ent virt phys v sz c wt
123 * 0 0xa0000000 0x40000000 1 128M 0 1
124 * 1 0xa8000000 0x48000000 1 128M 0 1
125 * 2 0xb0000000 0x50000000 1 128M 0 1
126 * 3 0xb8000000 0x58000000 1 128M 0 1
127 * 4 0x80000000 0x40000000 1 128M 1 1
128 * 5 0x88000000 0x48000000 1 128M 1 1
129 * 6 0x90000000 0x50000000 1 128M 1 1
130 * 7 0x98000000 0x58000000 1 128M 1 1
131 */
132static void set_pmb_on_board_init(void)
133{
134 struct mmu_regs *mmu = MMU_BASE;
135
136 /* clear ITLB */
137 writel(0x00000004, &mmu->mmucr);
138
139 /* delete PMB for SPIBOOT */
140 writel(0, PMB_ADDR_BASE(0));
141 writel(0, PMB_DATA_BASE(0));
142
143 /* add PMB for SDRAM(0x40000000 - 0x47ffffff) */
144 /* ppn ub v s1 s0 c wt */
145 writel(mk_pmb_addr_val(0xa0), PMB_ADDR_BASE(0));
146 writel(mk_pmb_data_val(0x40, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(0));
147 writel(mk_pmb_addr_val(0xb0), PMB_ADDR_BASE(2));
148 writel(mk_pmb_data_val(0x50, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(2));
149 writel(mk_pmb_addr_val(0xb8), PMB_ADDR_BASE(3));
150 writel(mk_pmb_data_val(0x58, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(3));
151 writel(mk_pmb_addr_val(0x80), PMB_ADDR_BASE(4));
152 writel(mk_pmb_data_val(0x40, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(4));
153 writel(mk_pmb_addr_val(0x90), PMB_ADDR_BASE(6));
154 writel(mk_pmb_data_val(0x50, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(6));
155 writel(mk_pmb_addr_val(0x98), PMB_ADDR_BASE(7));
156 writel(mk_pmb_data_val(0x58, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(7));
157}
Bin Meng148c3692016-01-24 21:45:46 -0800158#endif
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900159
160int board_init(void)
161{
162 struct gether_control_regs *gether = GETHER_CONTROL_BASE;
163
164 init_gpio();
Bin Meng148c3692016-01-24 21:45:46 -0800165#if defined(CONFIG_SH_32BIT)
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900166 set_pmb_on_board_init();
Bin Meng148c3692016-01-24 21:45:46 -0800167#endif
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900168
169 /* Sets TXnDLY to B'010 */
170 writel(0x00000202, &gether->gbecont);
171
172 init_usb_phy();
173 init_gether_mdio();
174
175 return 0;
176}
177
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900178int board_mmc_init(bd_t *bis)
179{
180 struct gpio_regs *gpio = GPIO_BASE;
181
182 writew(readw(&gpio->pgcr) | 0x0040, &gpio->pgcr);
183 writeb(readb(&gpio->pgdr) & ~0x08, &gpio->pgdr); /* Reset */
184 udelay(1);
185 writeb(readb(&gpio->pgdr) | 0x08, &gpio->pgdr); /* Release reset */
186 udelay(200);
187
188 return mmcif_mmc_init();
189}
190
191static int get_sh_eth_mac_raw(unsigned char *buf, int size)
192{
Tom Rinicabddb02019-05-29 17:01:36 -0400193#ifdef CONFIG_DEPRECATED
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900194 struct spi_flash *spi;
195 int ret;
196
197 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
198 if (spi == NULL) {
199 printf("%s: spi_flash probe failed.\n", __func__);
200 return 1;
201 }
202
203 ret = spi_flash_read(spi, SH7753EVB_ETHERNET_MAC_BASE, size, buf);
204 if (ret) {
205 printf("%s: spi_flash read failed.\n", __func__);
206 spi_flash_free(spi);
207 return 1;
208 }
209 spi_flash_free(spi);
Tom Rinicabddb02019-05-29 17:01:36 -0400210#endif
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900211
212 return 0;
213}
214
215static int get_sh_eth_mac(int channel, char *mac_string, unsigned char *buf)
216{
217 memcpy(mac_string, &buf[channel * (SH7753EVB_ETHERNET_MAC_SIZE + 1)],
218 SH7753EVB_ETHERNET_MAC_SIZE);
219 mac_string[SH7753EVB_ETHERNET_MAC_SIZE] = 0x00; /* terminate */
220
221 return 0;
222}
223
224static void init_ethernet_mac(void)
225{
226 char mac_string[64];
227 char env_string[64];
228 int i;
229 unsigned char *buf;
230
231 buf = malloc(256);
232 if (!buf) {
233 printf("%s: malloc failed.\n", __func__);
234 return;
235 }
236 get_sh_eth_mac_raw(buf, 256);
237
238 /* Gigabit Ethernet */
239 for (i = 0; i < SH7753EVB_ETHERNET_NUM_CH; i++) {
240 get_sh_eth_mac(i, mac_string, buf);
241 if (i == 0)
Simon Glass6a38e412017-08-03 12:22:09 -0600242 env_set("ethaddr", mac_string);
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900243 else {
244 sprintf(env_string, "eth%daddr", i);
Simon Glass6a38e412017-08-03 12:22:09 -0600245 env_set(env_string, mac_string);
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900246 }
247 set_mac_to_sh_giga_eth_register(i, mac_string);
248 }
249
250 free(buf);
251}
252
253int board_late_init(void)
254{
255 init_ethernet_mac();
256
257 return 0;
258}
259
Tom Rinicabddb02019-05-29 17:01:36 -0400260#ifdef CONFIG_DEPRECATED
Yoshihiro Shimoda95abe5f2013-12-18 16:03:44 +0900261int do_write_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
262{
263 int i, ret;
264 char mac_string[256];
265 struct spi_flash *spi;
266 unsigned char *buf;
267
268 if (argc != 3) {
269 buf = malloc(256);
270 if (!buf) {
271 printf("%s: malloc failed.\n", __func__);
272 return 1;
273 }
274
275 get_sh_eth_mac_raw(buf, 256);
276
277 /* print current MAC address */
278 for (i = 0; i < SH7753EVB_ETHERNET_NUM_CH; i++) {
279 get_sh_eth_mac(i, mac_string, buf);
280 printf("GETHERC ch%d = %s\n", i, mac_string);
281 }
282 free(buf);
283 return 0;
284 }
285
286 /* new setting */
287 memset(mac_string, 0xff, sizeof(mac_string));
288 sprintf(mac_string, "%s\t%s",
289 argv[1], argv[2]);
290
291 /* write MAC data to SPI rom */
292 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
293 if (!spi) {
294 printf("%s: spi_flash probe failed.\n", __func__);
295 return 1;
296 }
297
298 ret = spi_flash_erase(spi, SH7753EVB_ETHERNET_MAC_BASE_SPI,
299 SH7753EVB_SPI_SECTOR_SIZE);
300 if (ret) {
301 printf("%s: spi_flash erase failed.\n", __func__);
302 return 1;
303 }
304
305 ret = spi_flash_write(spi, SH7753EVB_ETHERNET_MAC_BASE_SPI,
306 sizeof(mac_string), mac_string);
307 if (ret) {
308 printf("%s: spi_flash write failed.\n", __func__);
309 spi_flash_free(spi);
310 return 1;
311 }
312 spi_flash_free(spi);
313
314 puts("The writing of the MAC address to SPI ROM was completed.\n");
315
316 return 0;
317}
318
319U_BOOT_CMD(
320 write_mac, 3, 1, do_write_mac,
321 "write MAC address for GETHERC",
322 "[GETHERC ch0] [GETHERC ch1]\n"
323);
Tom Rinicabddb02019-05-29 17:01:36 -0400324#endif