sh7752evb.c 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330
  1. /*
  2. * Copyright (C) 2012 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. #include <common.h>
  23. #include <malloc.h>
  24. #include <asm/processor.h>
  25. #include <asm/io.h>
  26. #include <asm/mmc.h>
  27. #include <spi_flash.h>
  28. int checkboard(void)
  29. {
  30. puts("BOARD: SH7752 evaluation board (R0P7752C00000RZ)\n");
  31. return 0;
  32. }
  33. static void init_gpio(void)
  34. {
  35. struct gpio_regs *gpio = GPIO_BASE;
  36. struct sermux_regs *sermux = SERMUX_BASE;
  37. /* GPIO */
  38. writew(0x0000, &gpio->pacr); /* GETHER */
  39. writew(0x0001, &gpio->pbcr); /* INTC */
  40. writew(0x0000, &gpio->pccr); /* PWMU, INTC */
  41. writew(0xeaff, &gpio->pecr); /* GPIO */
  42. writew(0x0000, &gpio->pfcr); /* WDT */
  43. writew(0x0000, &gpio->phcr); /* SPI1 */
  44. writew(0x0000, &gpio->picr); /* SDHI */
  45. writew(0x0003, &gpio->pkcr); /* SerMux */
  46. writew(0x0000, &gpio->plcr); /* SerMux */
  47. writew(0x0000, &gpio->pmcr); /* RIIC */
  48. writew(0x0000, &gpio->pncr); /* USB, SGPIO */
  49. writew(0x0000, &gpio->pocr); /* SGPIO */
  50. writew(0xd555, &gpio->pqcr); /* GPIO */
  51. writew(0x0000, &gpio->prcr); /* RIIC */
  52. writew(0x0000, &gpio->pscr); /* RIIC */
  53. writeb(0x00, &gpio->pudr);
  54. writew(0x5555, &gpio->pucr); /* Debug LED */
  55. writew(0x0000, &gpio->pvcr); /* RSPI */
  56. writew(0x0000, &gpio->pwcr); /* EVC */
  57. writew(0x0000, &gpio->pxcr); /* LBSC */
  58. writew(0x0000, &gpio->pycr); /* LBSC */
  59. writew(0x0000, &gpio->pzcr); /* eMMC */
  60. writew(0xfe00, &gpio->psel0);
  61. writew(0xff00, &gpio->psel3);
  62. writew(0x771f, &gpio->psel4);
  63. writew(0x00ff, &gpio->psel6);
  64. writew(0xfc00, &gpio->psel7);
  65. writeb(0x10, &sermux->smr0); /* SMR0: SerMux mode 0 */
  66. }
  67. static void init_usb_phy(void)
  68. {
  69. struct usb_common_regs *common0 = USB0_COMMON_BASE;
  70. struct usb_common_regs *common1 = USB1_COMMON_BASE;
  71. struct usb0_phy_regs *phy = USB0_PHY_BASE;
  72. struct usb1_port_regs *port = USB1_PORT_BASE;
  73. struct usb1_alignment_regs *align = USB1_ALIGNMENT_BASE;
  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. writew(0x4000, &common0->suspmode);
  80. writew(0x4000, &common1->suspmode);
  81. #if defined(__LITTLE_ENDIAN)
  82. writel(0x00000000, &align->ehcidatac);
  83. writel(0x00000000, &align->ohcidatac);
  84. #endif
  85. }
  86. static void init_gether_mdio(void)
  87. {
  88. struct gpio_regs *gpio = GPIO_BASE;
  89. writew(readw(&gpio->pgcr) | 0x0004, &gpio->pgcr);
  90. writeb(readb(&gpio->pgdr) | 0x02, &gpio->pgdr); /* Use ET0-MDIO */
  91. }
  92. static void set_mac_to_sh_giga_eth_register(int channel, char *mac_string)
  93. {
  94. struct ether_mac_regs *ether;
  95. unsigned char mac[6];
  96. unsigned long val;
  97. eth_parse_enetaddr(mac_string, mac);
  98. if (!channel)
  99. ether = GETHER0_MAC_BASE;
  100. else
  101. ether = GETHER1_MAC_BASE;
  102. val = (mac[0] << 24) | (mac[1] << 16) | (mac[2] << 8) | mac[3];
  103. writel(val, &ether->mahr);
  104. val = (mac[4] << 8) | mac[5];
  105. writel(val, &ether->malr);
  106. }
  107. /*****************************************************************
  108. * This PMB must be set on this timing. The lowlevel_init is run on
  109. * Area 0(phys 0x00000000), so we have to map it.
  110. *
  111. * The new PMB table is following:
  112. * ent virt phys v sz c wt
  113. * 0 0xa0000000 0x40000000 1 128M 0 1
  114. * 1 0xa8000000 0x48000000 1 128M 0 1
  115. * 2 0xb0000000 0x50000000 1 128M 0 1
  116. * 3 0xb8000000 0x58000000 1 128M 0 1
  117. * 4 0x80000000 0x40000000 1 128M 1 1
  118. * 5 0x88000000 0x48000000 1 128M 1 1
  119. * 6 0x90000000 0x50000000 1 128M 1 1
  120. * 7 0x98000000 0x58000000 1 128M 1 1
  121. */
  122. static void set_pmb_on_board_init(void)
  123. {
  124. struct mmu_regs *mmu = MMU_BASE;
  125. /* clear ITLB */
  126. writel(0x00000004, &mmu->mmucr);
  127. /* delete PMB for SPIBOOT */
  128. writel(0, PMB_ADDR_BASE(0));
  129. writel(0, PMB_DATA_BASE(0));
  130. /* add PMB for SDRAM(0x40000000 - 0x47ffffff) */
  131. /* ppn ub v s1 s0 c wt */
  132. writel(mk_pmb_addr_val(0xa0), PMB_ADDR_BASE(0));
  133. writel(mk_pmb_data_val(0x40, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(0));
  134. writel(mk_pmb_addr_val(0xb0), PMB_ADDR_BASE(2));
  135. writel(mk_pmb_data_val(0x50, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(2));
  136. writel(mk_pmb_addr_val(0xb8), PMB_ADDR_BASE(3));
  137. writel(mk_pmb_data_val(0x58, 1, 1, 1, 0, 0, 1), PMB_DATA_BASE(3));
  138. writel(mk_pmb_addr_val(0x80), PMB_ADDR_BASE(4));
  139. writel(mk_pmb_data_val(0x40, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(4));
  140. writel(mk_pmb_addr_val(0x90), PMB_ADDR_BASE(6));
  141. writel(mk_pmb_data_val(0x50, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(6));
  142. writel(mk_pmb_addr_val(0x98), PMB_ADDR_BASE(7));
  143. writel(mk_pmb_data_val(0x58, 0, 1, 1, 0, 1, 1), PMB_DATA_BASE(7));
  144. }
  145. int board_init(void)
  146. {
  147. init_gpio();
  148. set_pmb_on_board_init();
  149. init_usb_phy();
  150. init_gether_mdio();
  151. return 0;
  152. }
  153. int dram_init(void)
  154. {
  155. DECLARE_GLOBAL_DATA_PTR;
  156. gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
  157. gd->bd->bi_memsize = CONFIG_SYS_SDRAM_SIZE;
  158. printf("DRAM: %dMB\n", CONFIG_SYS_SDRAM_SIZE / (1024 * 1024));
  159. return 0;
  160. }
  161. int board_mmc_init(bd_t *bis)
  162. {
  163. struct gpio_regs *gpio = GPIO_BASE;
  164. writew(readw(&gpio->pgcr) | 0x0040, &gpio->pgcr);
  165. writeb(readb(&gpio->pgdr) & ~0x08, &gpio->pgdr); /* Reset */
  166. udelay(1);
  167. writeb(readb(&gpio->pgdr) | 0x08, &gpio->pgdr); /* Release reset */
  168. udelay(200);
  169. return mmcif_mmc_init();
  170. }
  171. static int get_sh_eth_mac_raw(unsigned char *buf, int size)
  172. {
  173. struct spi_flash *spi;
  174. int ret;
  175. spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
  176. if (spi == NULL) {
  177. printf("%s: spi_flash probe failed.\n", __func__);
  178. return 1;
  179. }
  180. ret = spi_flash_read(spi, SH7752EVB_ETHERNET_MAC_BASE, size, buf);
  181. if (ret) {
  182. printf("%s: spi_flash read failed.\n", __func__);
  183. spi_flash_free(spi);
  184. return 1;
  185. }
  186. spi_flash_free(spi);
  187. return 0;
  188. }
  189. static int get_sh_eth_mac(int channel, char *mac_string, unsigned char *buf)
  190. {
  191. memcpy(mac_string, &buf[channel * (SH7752EVB_ETHERNET_MAC_SIZE + 1)],
  192. SH7752EVB_ETHERNET_MAC_SIZE);
  193. mac_string[SH7752EVB_ETHERNET_MAC_SIZE] = 0x00; /* terminate */
  194. return 0;
  195. }
  196. static void init_ethernet_mac(void)
  197. {
  198. char mac_string[64];
  199. char env_string[64];
  200. int i;
  201. unsigned char *buf;
  202. buf = malloc(256);
  203. if (!buf) {
  204. printf("%s: malloc failed.\n", __func__);
  205. return;
  206. }
  207. get_sh_eth_mac_raw(buf, 256);
  208. /* Gigabit Ethernet */
  209. for (i = 0; i < SH7752EVB_ETHERNET_NUM_CH; i++) {
  210. get_sh_eth_mac(i, mac_string, buf);
  211. if (i == 0)
  212. setenv("ethaddr", mac_string);
  213. else {
  214. sprintf(env_string, "eth%daddr", i);
  215. setenv(env_string, mac_string);
  216. }
  217. set_mac_to_sh_giga_eth_register(i, mac_string);
  218. }
  219. free(buf);
  220. }
  221. int board_late_init(void)
  222. {
  223. init_ethernet_mac();
  224. return 0;
  225. }
  226. int do_write_mac(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  227. {
  228. int i, ret;
  229. char mac_string[256];
  230. struct spi_flash *spi;
  231. unsigned char *buf;
  232. if (argc != 3) {
  233. buf = malloc(256);
  234. if (!buf) {
  235. printf("%s: malloc failed.\n", __func__);
  236. return 1;
  237. }
  238. get_sh_eth_mac_raw(buf, 256);
  239. /* print current MAC address */
  240. for (i = 0; i < SH7752EVB_ETHERNET_NUM_CH; i++) {
  241. get_sh_eth_mac(i, mac_string, buf);
  242. printf("GETHERC ch%d = %s\n", i, mac_string);
  243. }
  244. free(buf);
  245. return 0;
  246. }
  247. /* new setting */
  248. memset(mac_string, 0xff, sizeof(mac_string));
  249. sprintf(mac_string, "%s\t%s",
  250. argv[1], argv[2]);
  251. /* write MAC data to SPI rom */
  252. spi = spi_flash_probe(0, 0, 1000000, SPI_MODE_3);
  253. if (!spi) {
  254. printf("%s: spi_flash probe failed.\n", __func__);
  255. return 1;
  256. }
  257. ret = spi_flash_erase(spi, SH7752EVB_ETHERNET_MAC_BASE_SPI,
  258. SH7752EVB_SPI_SECTOR_SIZE);
  259. if (ret) {
  260. printf("%s: spi_flash erase failed.\n", __func__);
  261. return 1;
  262. }
  263. ret = spi_flash_write(spi, SH7752EVB_ETHERNET_MAC_BASE_SPI,
  264. sizeof(mac_string), mac_string);
  265. if (ret) {
  266. printf("%s: spi_flash write failed.\n", __func__);
  267. spi_flash_free(spi);
  268. return 1;
  269. }
  270. spi_flash_free(spi);
  271. puts("The writing of the MAC address to SPI ROM was completed.\n");
  272. return 0;
  273. }
  274. U_BOOT_CMD(
  275. write_mac, 3, 1, do_write_mac,
  276. "write MAC address for GETHERC",
  277. "[GETHERC ch0] [GETHERC ch1]\n"
  278. );