blob: adae9ce7fa5ca92698b33bd10cb3c48312ad9afd [file] [log] [blame]
Yoshihiro Shimoda8e9c8972011-02-02 10:05:36 +09001/*
2 * Copyright (C) 2011 Renesas Solutions Corp.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24#include <malloc.h>
25#include <asm/processor.h>
26#include <asm/io.h>
27#include <spi_flash.h>
28
29int checkboard(void)
30{
31 puts("BOARD: R0P7757LC0030RL board\n");
32
33 return 0;
34}
35
36static void init_gctrl(void)
37{
38 struct gctrl_regs *gctrl = GCTRL_BASE;
39 unsigned long graofst;
40
41 graofst = (SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_GRA_OFFSET) >> 24;
42 writel(graofst | 0x20000f00, &gctrl->gracr3);
43}
44
45static int init_pcie_bridge_from_spi(void *buf, size_t size)
46{
47 struct spi_flash *spi;
48 int ret;
49 unsigned long pcie_addr;
50
51 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
52 if (!spi) {
53 printf("%s: spi_flash probe error.\n", __func__);
54 return 1;
55 }
56
57 if (is_sh7757_b0())
58 pcie_addr = SH7757LCR_PCIEBRG_ADDR_B0;
59 else
60 pcie_addr = SH7757LCR_PCIEBRG_ADDR;
61
62 ret = spi_flash_read(spi, pcie_addr, size, buf);
63 if (ret) {
64 printf("%s: spi_flash read error.\n", __func__);
65 spi_flash_free(spi);
66 return 1;
67 }
68 spi_flash_free(spi);
69
70 return 0;
71}
72
73static void init_pcie_bridge(void)
74{
75 struct pciebrg_regs *pciebrg = PCIEBRG_BASE;
76 struct pcie_setup_regs *pcie_setup = PCIE_SETUP_BASE;
77 int i;
78 unsigned char *data;
79 unsigned short tmp;
80 unsigned long pcie_size;
81
82 if (!(readw(&pciebrg->ctrl_h8s) & 0x0001))
83 return;
84
85 if (is_sh7757_b0())
86 pcie_size = SH7757LCR_PCIEBRG_SIZE_B0;
87 else
88 pcie_size = SH7757LCR_PCIEBRG_SIZE;
89
90 data = malloc(pcie_size);
91 if (!data) {
92 printf("%s: malloc error.\n", __func__);
93 return;
94 }
95 if (init_pcie_bridge_from_spi(data, pcie_size)) {
96 free(data);
97 return;
98 }
99
100 if (data[0] == 0xff && data[1] == 0xff && data[2] == 0xff &&
101 data[3] == 0xff) {
102 free(data);
103 printf("%s: skipped initialization\n", __func__);
104 return;
105 }
106
107 writew(0xa501, &pciebrg->ctrl_h8s); /* reset */
108 writew(0x0000, &pciebrg->cp_ctrl);
109 writew(0x0000, &pciebrg->cp_addr);
110
111 for (i = 0; i < pcie_size; i += 2) {
112 tmp = (data[i] << 8) | data[i + 1];
113 writew(tmp, &pciebrg->cp_data);
114 }
115
116 writew(0xa500, &pciebrg->ctrl_h8s); /* start */
117 if (!is_sh7757_b0())
118 writel(0x00000001, &pcie_setup->pbictl3);
119
120 free(data);
121}
122
123static void init_usb_phy(void)
124{
125 struct usb_common_regs *common0 = USB0_COMMON_BASE;
126 struct usb_common_regs *common1 = USB1_COMMON_BASE;
127 struct usb0_phy_regs *phy = USB0_PHY_BASE;
128 struct usb1_port_regs *port = USB1_PORT_BASE;
129 struct usb1_alignment_regs *align = USB1_ALIGNMENT_BASE;
130
131 writew(0x0100, &phy->reset); /* set reset */
132 /* port0 = USB0, port1 = USB1 */
133 writew(0x0002, &phy->portsel);
134 writel(0x0001, &port->port1sel); /* port1 = Host */
135 writew(0x0111, &phy->reset); /* clear reset */
136
137 writew(0x4000, &common0->suspmode);
138 writew(0x4000, &common1->suspmode);
139
140#if defined(__LITTLE_ENDIAN)
141 writel(0x00000000, &align->ehcidatac);
142 writel(0x00000000, &align->ohcidatac);
143#endif
144}
145
146static void set_mac_to_sh_eth_register(int channel, char *mac_string)
147{
148 struct ether_mac_regs *ether;
149 unsigned char mac[6];
150 unsigned long val;
151
152 eth_parse_enetaddr(mac_string, mac);
153
154 if (!channel)
155 ether = ETHER0_MAC_BASE;
156 else
157 ether = ETHER1_MAC_BASE;
158
159 val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
160 writel(val, &ether->mahr);
161 val = (mac[4] << 8) | mac[5];
162 writel(val, &ether->malr);
163}
164
165static void set_mac_to_sh_giga_eth_register(int channel, char *mac_string)
166{
167 struct ether_mac_regs *ether;
168 unsigned char mac[6];
169 unsigned long val;
170
171 eth_parse_enetaddr(mac_string, mac);
172
173 if (!channel)
174 ether = GETHER0_MAC_BASE;
175 else
176 ether = GETHER1_MAC_BASE;
177
178 val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
179 writel(val, &ether->mahr);
180 val = (mac[4] << 8) | mac[5];
181 writel(val, &ether->malr);
182}
183
184/*****************************************************************
185 * This PMB must be set on this timing. The lowlevel_init is run on
186 * Area 0(phys 0x00000000), so we have to map it.
187 *
188 * The new PMB table is following:
189 * ent virt phys v sz c wt
190 * 0 0xa0000000 0x40000000 1 128M 0 1
191 * 1 0xa8000000 0x48000000 1 128M 0 1
192 * 2 0xb0000000 0x50000000 1 128M 0 1
193 * 3 0xb8000000 0x58000000 1 128M 0 1
194 * 4 0x80000000 0x40000000 1 128M 1 1
195 * 5 0x88000000 0x48000000 1 128M 1 1
196 * 6 0x90000000 0x50000000 1 128M 1 1
197 * 7 0x98000000 0x58000000 1 128M 1 1
198 */
199static void set_pmb_on_board_init(void)
200{
201 struct mmu_regs *mmu = MMU_BASE;
202
203 /* clear ITLB */
204 writel(0x00000004, &mmu->mmucr);
205
206 /* delete PMB for SPIBOOT */
207 writel(0, PMB_ADDR_BASE(0));
208 writel(0, PMB_DATA_BASE(0));
209
210 /* add PMB for SDRAM(0x40000000 - 0x47ffffff) */
211 /* ppn ub v s1 s0 c wt */
212 writel(mk_pmb_addr_val(0xa0), PMB_ADDR_BASE(0));
213 writel(mk_pmb_data_val(0x40, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(0));
214 writel(mk_pmb_addr_val(0xb0), PMB_ADDR_BASE(2));
215 writel(mk_pmb_data_val(0x50, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(2));
216 writel(mk_pmb_addr_val(0xb8), PMB_ADDR_BASE(3));
217 writel(mk_pmb_data_val(0x58, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(3));
218 writel(mk_pmb_addr_val(0x80), PMB_ADDR_BASE(4));
219 writel(mk_pmb_data_val(0x40, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(4));
220 writel(mk_pmb_addr_val(0x90), PMB_ADDR_BASE(6));
221 writel(mk_pmb_data_val(0x50, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(6));
222 writel(mk_pmb_addr_val(0x98), PMB_ADDR_BASE(7));
223 writel(mk_pmb_data_val(0x58, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(7));
224}
225
226int board_init(void)
227{
228 struct gether_control_regs *gether = GETHER_CONTROL_BASE;
229
230 set_pmb_on_board_init();
231
232 /* enable RMII's MDIO (disable GRMII's MDIO) */
233 writel(0x00030000, &gether->gbecont);
234
235 init_gctrl();
236 init_usb_phy();
237
238 return 0;
239}
240
241int dram_init(void)
242{
243 DECLARE_GLOBAL_DATA_PTR;
244
245 gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
246 gd->bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
247 printf("DRAM: %dMB\n", CONFIG_SYS_SDRAM_SIZE / (1024 * 1024));
248 printf(" Physical address\n");
249 printf(" 0x%08x - 0x%08x : Accessible Space as ECC Area\n",
250 SH7757LCR_SDRAM_PHYS_TOP,
251 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_SDRAM_SIZE - 1);
252 printf(" 0x%08x - 0x%08x : No Access Area\n",
253 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_SDRAM_SIZE,
254 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_SDRAM_SIZE * 2 - 1);
255 printf(" 0x%08x - 0x%08x : Non-ECC Area for DVC/AVC\n",
256 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_SDRAM_ECC_SETTING * 2,
257 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_SDRAM_ECC_SETTING * 2 +
258 SH7757LCR_SDRAM_DVC_SIZE - 1);
259 printf(" 0x%08x - 0x%08x : Non-ECC Area for G200eR2\n",
260 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_GRA_OFFSET,
261 SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_GRA_OFFSET + 0x00ffffff);
262
263 return 0;
264}
265
Yoshihiro Shimoda566f63d2012-03-05 20:11:12 +0000266int board_mmc_init(bd_t *bis)
267{
268 return mmcif_mmc_init();
269}
270
Yoshihiro Shimoda8e9c8972011-02-02 10:05:36 +0900271static int get_sh_eth_mac_raw(unsigned char *buf, int size)
272{
273 struct spi_flash *spi;
274 int ret;
275
276 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
277 if (spi == NULL) {
278 printf("%s: spi_flash probe error.\n", __func__);
279 return 1;
280 }
281
282 ret = spi_flash_read(spi, SH7757LCR_ETHERNET_MAC_BASE, size, buf);
283 if (ret) {
284 printf("%s: spi_flash read error.\n", __func__);
285 spi_flash_free(spi);
286 return 1;
287 }
288 spi_flash_free(spi);
289
290 return 0;
291}
292
293static int get_sh_eth_mac(int channel, char *mac_string, unsigned char *buf)
294{
295 memcpy(mac_string, &buf[channel * (SH7757LCR_ETHERNET_MAC_SIZE + 1)],
296 SH7757LCR_ETHERNET_MAC_SIZE);
297 mac_string[SH7757LCR_ETHERNET_MAC_SIZE] = 0x00; /* terminate */
298
299 return 0;
300}
301
302static void init_ethernet_mac(void)
303{
304 char mac_string[64];
305 char env_string[64];
306 int i;
307 unsigned char *buf;
308
309 buf = malloc(256);
310 if (!buf) {
311 printf("%s: malloc error.\n", __func__);
312 return;
313 }
314 get_sh_eth_mac_raw(buf, 256);
315
316 /* Fast Ethernet */
317 for (i = 0; i < SH7757LCR_ETHERNET_NUM_CH; i++) {
318 get_sh_eth_mac(i, mac_string, buf);
319 if (i == 0)
320 setenv("ethaddr", mac_string);
321 else {
322 sprintf(env_string, "eth%daddr", i);
323 setenv(env_string, mac_string);
324 }
325
326 set_mac_to_sh_eth_register(i, mac_string);
327 }
328
329 /* Gigabit Ethernet */
330 for (i = 0; i < SH7757LCR_GIGA_ETHERNET_NUM_CH; i++) {
331 get_sh_eth_mac(i + SH7757LCR_ETHERNET_NUM_CH, mac_string, buf);
332 sprintf(env_string, "eth%daddr", i + SH7757LCR_ETHERNET_NUM_CH);
333 setenv(env_string, mac_string);
334
335 set_mac_to_sh_giga_eth_register(i, mac_string);
336 }
337
338 free(buf);
339}
340
341static void init_pcie(void)
342{
343 struct pcie_setup_regs *pcie_setup = PCIE_SETUP_BASE;
344 struct pcie_system_bus_regs *pcie_sysbus = PCIE_SYSTEM_BUS_BASE;
345
346 writel(0x00000ff2, &pcie_setup->ladmsk0);
347 writel(0x00000001, &pcie_setup->barmap);
348 writel(0xffcaa000, &pcie_setup->lad0);
349 writel(0x00030000, &pcie_sysbus->endictl0);
350 writel(0x00000003, &pcie_sysbus->endictl1);
351 writel(0x00000004, &pcie_setup->pbictl2);
352}
353
354static void finish_spiboot(void)
355{
356 struct gctrl_regs *gctrl = GCTRL_BASE;
357 /*
358 * SH7757 B0 does not use LBSC.
359 * So if we set SPIBOOTCAN to 1, SH7757 can not access Area0.
360 * This setting is not cleared by manual reset, So we have to set it
361 * to 0.
362 */
363 writel(0x00000000, &gctrl->spibootcan);
364}
365
366int board_late_init(void)
367{
368 init_ethernet_mac();
369 init_pcie_bridge();
370 init_pcie();
371 finish_spiboot();
372
373 return 0;
374}
375
376int do_sh_g200(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
377{
378 struct gctrl_regs *gctrl = GCTRL_BASE;
379 unsigned long graofst;
380
381 writel(0xfedcba98, &gctrl->wprotect);
382 graofst = (SH7757LCR_SDRAM_PHYS_TOP + SH7757LCR_GRA_OFFSET) >> 24;
383 writel(graofst | 0xa0000f00, &gctrl->gracr3);
384
385 return 0;
386}
387
388U_BOOT_CMD(
389 sh_g200, 1, 1, do_sh_g200,
390 "enable sh-g200",
391 "enable SH-G200 bus (disable PCIe-G200)"
392);
393
394int do_write_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
395{
396 int i, ret;
397 char mac_string[256];
398 struct spi_flash *spi;
399 unsigned char *buf;
400
401 if (argc != 5) {
402 buf = malloc(256);
403 if (!buf) {
404 printf("%s: malloc error.\n", __func__);
405 return 1;
406 }
407
408 get_sh_eth_mac_raw(buf, 256);
409
410 /* print current MAC address */
411 for (i = 0; i < 4; i++) {
412 get_sh_eth_mac(i, mac_string, buf);
413 if (i < 2)
414 printf(" ETHERC ch%d = %s\n", i, mac_string);
415 else
416 printf("GETHERC ch%d = %s\n", i-2, mac_string);
417 }
418 free(buf);
419 return 0;
420 }
421
422 /* new setting */
423 memset(mac_string, 0xff, sizeof(mac_string));
424 sprintf(mac_string, "%s\t%s\t%s\t%s",
425 argv[1], argv[2], argv[3], argv[4]);
426
427 /* write MAC data to SPI rom */
428 spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
429 if (!spi) {
430 printf("%s: spi_flash probe error.\n", __func__);
431 return 1;
432 }
433
434 ret = spi_flash_erase(spi, SH7757LCR_ETHERNET_MAC_BASE_SPI,
435 SH7757LCR_SPI_SECTOR_SIZE);
436 if (ret) {
437 printf("%s: spi_flash erase error.\n", __func__);
438 return 1;
439 }
440
441 ret = spi_flash_write(spi, SH7757LCR_ETHERNET_MAC_BASE_SPI,
442 sizeof(mac_string), mac_string);
443 if (ret) {
444 printf("%s: spi_flash write error.\n", __func__);
445 spi_flash_free(spi);
446 return 1;
447 }
448 spi_flash_free(spi);
449
450 puts("The writing of the MAC address to SPI ROM was completed.\n");
451
452 return 0;
453}
454
455U_BOOT_CMD(
456 write_mac, 5, 1, do_write_mac,
457 "write MAC address for ETHERC/GETHERC",
458 "[ETHERC ch0] [ETHERC ch1] [GETHERC ch0] [GETHERC ch1]\n"
459);