blob: 565ce5f5d1ce8db9de4983457ffd7046302506b3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +00002/*
3 * Copyright (C) 2012 Renesas Solutions Corp.
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +00004 */
5
6#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -06007#include <env.h>
Simon Glass8e201882020-05-10 11:39:54 -06008#include <flash.h>
Simon Glassa7b51302019-11-14 12:57:46 -07009#include <init.h>
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +000010#include <malloc.h>
Simon Glass274e0b02020-05-10 11:39:56 -060011#include <net.h>
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +000012#include <asm/processor.h>
13#include <asm/io.h>
14#include <asm/mmc.h>
Simon Glassd34b4562014-10-13 23:42:04 -060015#include <spi.h>
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +000016#include <spi_flash.h>
17
18int checkboard(void)
19{
20 puts("BOARD: SH7752 evaluation board (R0P7752C00000RZ)\n");
21
22 return 0;
23}
24
25static void init_gpio(void)
26{
27 struct gpio_regs *gpio = GPIO_BASE;
28 struct sermux_regs *sermux = SERMUX_BASE;
29
30 /* GPIO */
31 writew(0x0000, &gpio->pacr); /* GETHER */
32 writew(0x0001, &gpio->pbcr); /* INTC */
33 writew(0x0000, &gpio->pccr); /* PWMU, INTC */
34 writew(0xeaff, &gpio->pecr); /* GPIO */
35 writew(0x0000, &gpio->pfcr); /* WDT */
36 writew(0x0000, &gpio->phcr); /* SPI1 */
37 writew(0x0000, &gpio->picr); /* SDHI */
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 writeb(0x00, &gpio->pudr);
47 writew(0x5555, &gpio->pucr); /* Debug LED */
48 writew(0x0000, &gpio->pvcr); /* RSPI */
49 writew(0x0000, &gpio->pwcr); /* EVC */
50 writew(0x0000, &gpio->pxcr); /* LBSC */
51 writew(0x0000, &gpio->pycr); /* LBSC */
52 writew(0x0000, &gpio->pzcr); /* eMMC */
53 writew(0xfe00, &gpio->psel0);
54 writew(0xff00, &gpio->psel3);
55 writew(0x771f, &gpio->psel4);
56 writew(0x00ff, &gpio->psel6);
57 writew(0xfc00, &gpio->psel7);
58
59 writeb(0x10, &sermux->smr0); /* SMR0: SerMux mode 0 */
60}
61
62static void init_usb_phy(void)
63{
64 struct usb_common_regs *common0 = USB0_COMMON_BASE;
65 struct usb_common_regs *common1 = USB1_COMMON_BASE;
66 struct usb0_phy_regs *phy = USB0_PHY_BASE;
67 struct usb1_port_regs *port = USB1_PORT_BASE;
68 struct usb1_alignment_regs *align = USB1_ALIGNMENT_BASE;
69
70 writew(0x0100, &phy->reset); /* set reset */
71 /* port0 = USB0, port1 = USB1 */
72 writew(0x0002, &phy->portsel);
73 writel(0x0001, &port->port1sel); /* port1 = Host */
74 writew(0x0111, &phy->reset); /* clear reset */
75
76 writew(0x4000, &common0->suspmode);
77 writew(0x4000, &common1->suspmode);
78
79#if defined(__LITTLE_ENDIAN)
80 writel(0x00000000, &align->ehcidatac);
81 writel(0x00000000, &align->ohcidatac);
82#endif
83}
84
85static void init_gether_mdio(void)
86{
87 struct gpio_regs *gpio = GPIO_BASE;
88
89 writew(readw(&gpio->pgcr) | 0x0004, &gpio->pgcr);
90 writeb(readb(&gpio->pgdr) | 0x02, &gpio->pgdr); /* Use ET0-MDIO */
91}
92
93static void set_mac_to_sh_giga_eth_register(int channel, char *mac_string)
94{
95 struct ether_mac_regs *ether;
96 unsigned char mac[6];
97 unsigned long val;
98
Joe Hershberger8e7545e2019-09-13 19:21:16 -050099 string_to_enetaddr(mac_string, mac);
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000100
101 if (!channel)
102 ether = GETHER0_MAC_BASE;
103 else
104 ether = GETHER1_MAC_BASE;
105
106 val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
107 writel(val, &ether->mahr);
108 val = (mac[4] << 8) | mac[5];
109 writel(val, &ether->malr);
110}
111
112/*****************************************************************
113 * This PMB must be set on this timing. The lowlevel_init is run on
114 * Area 0(phys 0x00000000), so we have to map it.
115 *
116 * The new PMB table is following:
117 * ent virt phys v sz c wt
118 * 0 0xa0000000 0x40000000 1 128M 0 1
119 * 1 0xa8000000 0x48000000 1 128M 0 1
120 * 2 0xb0000000 0x50000000 1 128M 0 1
121 * 3 0xb8000000 0x58000000 1 128M 0 1
122 * 4 0x80000000 0x40000000 1 128M 1 1
123 * 5 0x88000000 0x48000000 1 128M 1 1
124 * 6 0x90000000 0x50000000 1 128M 1 1
125 * 7 0x98000000 0x58000000 1 128M 1 1
126 */
127static void set_pmb_on_board_init(void)
128{
129 struct mmu_regs *mmu = MMU_BASE;
130
131 /* clear ITLB */
132 writel(0x00000004, &mmu->mmucr);
133
134 /* delete PMB for SPIBOOT */
135 writel(0, PMB_ADDR_BASE(0));
136 writel(0, PMB_DATA_BASE(0));
137
138 /* add PMB for SDRAM(0x40000000 - 0x47ffffff) */
139 /* ppn ub v s1 s0 c wt */
140 writel(mk_pmb_addr_val(0xa0), PMB_ADDR_BASE(0));
141 writel(mk_pmb_data_val(0x40, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(0));
142 writel(mk_pmb_addr_val(0xb0), PMB_ADDR_BASE(2));
143 writel(mk_pmb_data_val(0x50, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(2));
144 writel(mk_pmb_addr_val(0xb8), PMB_ADDR_BASE(3));
145 writel(mk_pmb_data_val(0x58, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(3));
146 writel(mk_pmb_addr_val(0x80), PMB_ADDR_BASE(4));
147 writel(mk_pmb_data_val(0x40, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(4));
148 writel(mk_pmb_addr_val(0x90), PMB_ADDR_BASE(6));
149 writel(mk_pmb_data_val(0x50, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(6));
150 writel(mk_pmb_addr_val(0x98), PMB_ADDR_BASE(7));
151 writel(mk_pmb_data_val(0x58, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(7));
152}
153
154int board_init(void)
155{
156 init_gpio();
157 set_pmb_on_board_init();
158
159 init_usb_phy();
160 init_gether_mdio();
161
162 return 0;
163}
164
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000165int board_mmc_init(bd_t *bis)
166{
167 struct gpio_regs *gpio = GPIO_BASE;
168
169 writew(readw(&gpio->pgcr) | 0x0040, &gpio->pgcr);
170 writeb(readb(&gpio->pgdr) & ~0x08, &gpio->pgdr); /* Reset */
171 udelay(1);
172 writeb(readb(&gpio->pgdr) | 0x08, &gpio->pgdr); /* Release reset */
173 udelay(200);
174
175 return mmcif_mmc_init();
176}
177
178static int get_sh_eth_mac_raw(unsigned char *buf, int size)
179{
Tom Rinicabddb02019-05-29 17:01:36 -0400180#ifdef CONFIG_DEPRECATED
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000181 struct spi_flash *spi;
182 int ret;
183
184 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
185 if (spi == NULL) {
186 printf("%s: spi_flash probe failed.\n", __func__);
187 return 1;
188 }
189
190 ret = spi_flash_read(spi, SH7752EVB_ETHERNET_MAC_BASE, size, buf);
191 if (ret) {
192 printf("%s: spi_flash read failed.\n", __func__);
193 spi_flash_free(spi);
194 return 1;
195 }
196 spi_flash_free(spi);
Tom Rinicabddb02019-05-29 17:01:36 -0400197#endif
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000198
199 return 0;
200}
201
202static int get_sh_eth_mac(int channel, char *mac_string, unsigned char *buf)
203{
204 memcpy(mac_string, &buf[channel * (SH7752EVB_ETHERNET_MAC_SIZE + 1)],
205 SH7752EVB_ETHERNET_MAC_SIZE);
206 mac_string[SH7752EVB_ETHERNET_MAC_SIZE] = 0x00; /* terminate */
207
208 return 0;
209}
210
211static void init_ethernet_mac(void)
212{
213 char mac_string[64];
214 char env_string[64];
215 int i;
216 unsigned char *buf;
217
218 buf = malloc(256);
219 if (!buf) {
220 printf("%s: malloc failed.\n", __func__);
221 return;
222 }
223 get_sh_eth_mac_raw(buf, 256);
224
225 /* Gigabit Ethernet */
226 for (i = 0; i < SH7752EVB_ETHERNET_NUM_CH; i++) {
227 get_sh_eth_mac(i, mac_string, buf);
228 if (i == 0)
Simon Glass6a38e412017-08-03 12:22:09 -0600229 env_set("ethaddr", mac_string);
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000230 else {
231 sprintf(env_string, "eth%daddr", i);
Simon Glass6a38e412017-08-03 12:22:09 -0600232 env_set(env_string, mac_string);
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000233 }
234 set_mac_to_sh_giga_eth_register(i, mac_string);
235 }
236
237 free(buf);
238}
239
240int board_late_init(void)
241{
242 init_ethernet_mac();
243
244 return 0;
245}
246
Tom Rinicabddb02019-05-29 17:01:36 -0400247#ifdef CONFIG_DEPRECATED
Yoshihiro Shimoda07fecef2012-11-04 15:53:22 +0000248int do_write_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
249{
250 int i, ret;
251 char mac_string[256];
252 struct spi_flash *spi;
253 unsigned char *buf;
254
255 if (argc != 3) {
256 buf = malloc(256);
257 if (!buf) {
258 printf("%s: malloc failed.\n", __func__);
259 return 1;
260 }
261
262 get_sh_eth_mac_raw(buf, 256);
263
264 /* print current MAC address */
265 for (i = 0; i < SH7752EVB_ETHERNET_NUM_CH; i++) {
266 get_sh_eth_mac(i, mac_string, buf);
267 printf("GETHERC ch%d = %s\n", i, mac_string);
268 }
269 free(buf);
270 return 0;
271 }
272
273 /* new setting */
274 memset(mac_string, 0xff, sizeof(mac_string));
275 sprintf(mac_string, "%s\t%s",
276 argv[1], argv[2]);
277
278 /* write MAC data to SPI rom */
279 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
280 if (!spi) {
281 printf("%s: spi_flash probe failed.\n", __func__);
282 return 1;
283 }
284
285 ret = spi_flash_erase(spi, SH7752EVB_ETHERNET_MAC_BASE_SPI,
286 SH7752EVB_SPI_SECTOR_SIZE);
287 if (ret) {
288 printf("%s: spi_flash erase failed.\n", __func__);
289 return 1;
290 }
291
292 ret = spi_flash_write(spi, SH7752EVB_ETHERNET_MAC_BASE_SPI,
293 sizeof(mac_string), mac_string);
294 if (ret) {
295 printf("%s: spi_flash write failed.\n", __func__);
296 spi_flash_free(spi);
297 return 1;
298 }
299 spi_flash_free(spi);
300
301 puts("The writing of the MAC address to SPI ROM was completed.\n");
302
303 return 0;
304}
305
306U_BOOT_CMD(
307 write_mac, 3, 1, do_write_mac,
308 "write MAC address for GETHERC",
309 "[GETHERC ch0] [GETHERC ch1]\n"
310);
Tom Rinicabddb02019-05-29 17:01:36 -0400311#endif