mpc8536ds.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. /*
  2. * Copyright 2008-2010, 2011 Freescale Semiconductor, Inc.
  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 <command.h>
  24. #include <pci.h>
  25. #include <asm/processor.h>
  26. #include <asm/mmu.h>
  27. #include <asm/cache.h>
  28. #include <asm/immap_85xx.h>
  29. #include <asm/fsl_pci.h>
  30. #include <asm/fsl_ddr_sdram.h>
  31. #include <asm/io.h>
  32. #include <asm/fsl_serdes.h>
  33. #include <spd.h>
  34. #include <miiphy.h>
  35. #include <libfdt.h>
  36. #include <spd_sdram.h>
  37. #include <fdt_support.h>
  38. #include <fsl_mdio.h>
  39. #include <tsec.h>
  40. #include <netdev.h>
  41. #include <sata.h>
  42. #include "../common/sgmii_riser.h"
  43. int board_early_init_f (void)
  44. {
  45. #ifdef CONFIG_MMC
  46. volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  47. setbits_be32(&gur->pmuxcr,
  48. (MPC85xx_PMUXCR_SDHC_CD |
  49. MPC85xx_PMUXCR_SDHC_WP));
  50. /* The MPC8536DS board insert the SDHC_WP pin for erratum NMG_eSDHC118,
  51. * however, this erratum only applies to MPC8536 Rev1.0.
  52. * So set SDHC_WP to active-low when use MPC8536 Rev1.1 and greater.*/
  53. if ((((SVR_MAJ(get_svr()) & 0x7) == 0x1) &&
  54. (SVR_MIN(get_svr()) >= 0x1))
  55. || (SVR_MAJ(get_svr() & 0x7) > 0x1))
  56. setbits_be32(&gur->gencfgr, MPC85xx_GENCFGR_SDHC_WP_INV);
  57. #endif
  58. return 0;
  59. }
  60. int checkboard (void)
  61. {
  62. u8 vboot;
  63. u8 *pixis_base = (u8 *)PIXIS_BASE;
  64. puts("Board: MPC8536DS ");
  65. #ifdef CONFIG_PHYS_64BIT
  66. puts("(36-bit addrmap) ");
  67. #endif
  68. printf ("Sys ID: 0x%02x, "
  69. "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
  70. in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
  71. in_8(pixis_base + PIXIS_PVER));
  72. vboot = in_8(pixis_base + PIXIS_VBOOT);
  73. switch ((vboot & PIXIS_VBOOT_LBMAP) >> 5) {
  74. case PIXIS_VBOOT_LBMAP_NOR0:
  75. puts ("vBank: 0\n");
  76. break;
  77. case PIXIS_VBOOT_LBMAP_NOR1:
  78. puts ("vBank: 1\n");
  79. break;
  80. case PIXIS_VBOOT_LBMAP_NOR2:
  81. puts ("vBank: 2\n");
  82. break;
  83. case PIXIS_VBOOT_LBMAP_NOR3:
  84. puts ("vBank: 3\n");
  85. break;
  86. case PIXIS_VBOOT_LBMAP_PJET:
  87. puts ("Promjet\n");
  88. break;
  89. case PIXIS_VBOOT_LBMAP_NAND:
  90. puts ("NAND\n");
  91. break;
  92. }
  93. return 0;
  94. }
  95. #if !defined(CONFIG_SPD_EEPROM)
  96. /*
  97. * Fixed sdram init -- doesn't use serial presence detect.
  98. */
  99. phys_size_t fixed_sdram (void)
  100. {
  101. volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
  102. volatile ccsr_ddr_t *ddr= &immap->im_ddr;
  103. uint d_init;
  104. ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
  105. ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
  106. ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
  107. ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
  108. ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
  109. ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
  110. ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
  111. ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
  112. ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
  113. ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
  114. ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
  115. ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
  116. #if defined (CONFIG_DDR_ECC)
  117. ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
  118. ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
  119. ddr->err_sbe = CONFIG_SYS_DDR_SBE;
  120. #endif
  121. asm("sync;isync");
  122. udelay(500);
  123. ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
  124. #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
  125. d_init = 1;
  126. debug("DDR - 1st controller: memory initializing\n");
  127. /*
  128. * Poll until memory is initialized.
  129. * 512 Meg at 400 might hit this 200 times or so.
  130. */
  131. while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
  132. udelay(1000);
  133. }
  134. debug("DDR: memory initialized\n\n");
  135. asm("sync; isync");
  136. udelay(500);
  137. #endif
  138. return 512 * 1024 * 1024;
  139. }
  140. #endif
  141. #ifdef CONFIG_PCI1
  142. static struct pci_controller pci1_hose;
  143. #endif
  144. #ifdef CONFIG_PCI
  145. void pci_init_board(void)
  146. {
  147. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  148. struct fsl_pci_info pci_info;
  149. u32 devdisr, pordevsr;
  150. u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel;
  151. int first_free_busno;
  152. first_free_busno = fsl_pcie_init_board(0);
  153. #ifdef CONFIG_PCI1
  154. devdisr = in_be32(&gur->devdisr);
  155. pordevsr = in_be32(&gur->pordevsr);
  156. porpllsr = in_be32(&gur->porpllsr);
  157. pci_speed = 66666000;
  158. pci_32 = 1;
  159. pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
  160. pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
  161. if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
  162. SET_STD_PCI_INFO(pci_info, 1);
  163. set_next_law(pci_info.mem_phys,
  164. law_size_bits(pci_info.mem_size), pci_info.law);
  165. set_next_law(pci_info.io_phys,
  166. law_size_bits(pci_info.io_size), pci_info.law);
  167. pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
  168. printf("PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n",
  169. (pci_32) ? 32 : 64,
  170. (pci_speed == 33333000) ? "33" :
  171. (pci_speed == 66666000) ? "66" : "unknown",
  172. pci_clk_sel ? "sync" : "async",
  173. pci_agent ? "agent" : "host",
  174. pci_arb ? "arbiter" : "external-arbiter",
  175. pci_info.regs);
  176. first_free_busno = fsl_pci_init_port(&pci_info,
  177. &pci1_hose, first_free_busno);
  178. } else {
  179. printf("PCI: disabled\n");
  180. }
  181. puts("\n");
  182. #else
  183. setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
  184. #endif
  185. }
  186. #endif
  187. int board_early_init_r(void)
  188. {
  189. const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
  190. const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
  191. /*
  192. * Remap Boot flash + PROMJET region to caching-inhibited
  193. * so that flash can be erased properly.
  194. */
  195. /* Flush d-cache and invalidate i-cache of any FLASH data */
  196. flush_dcache();
  197. invalidate_icache();
  198. /* invalidate existing TLB entry for flash + promjet */
  199. disable_tlb(flash_esel);
  200. set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
  201. MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
  202. 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
  203. return 0;
  204. }
  205. int board_eth_init(bd_t *bis)
  206. {
  207. #ifdef CONFIG_TSEC_ENET
  208. struct fsl_pq_mdio_info mdio_info;
  209. struct tsec_info_struct tsec_info[2];
  210. int num = 0;
  211. #ifdef CONFIG_TSEC1
  212. SET_STD_TSEC_INFO(tsec_info[num], 1);
  213. if (is_serdes_configured(SGMII_TSEC1)) {
  214. puts("eTSEC1 is in sgmii mode.\n");
  215. tsec_info[num].phyaddr = 0;
  216. tsec_info[num].flags |= TSEC_SGMII;
  217. }
  218. num++;
  219. #endif
  220. #ifdef CONFIG_TSEC3
  221. SET_STD_TSEC_INFO(tsec_info[num], 3);
  222. if (is_serdes_configured(SGMII_TSEC3)) {
  223. puts("eTSEC3 is in sgmii mode.\n");
  224. tsec_info[num].phyaddr = 1;
  225. tsec_info[num].flags |= TSEC_SGMII;
  226. }
  227. num++;
  228. #endif
  229. if (!num) {
  230. printf("No TSECs initialized\n");
  231. return 0;
  232. }
  233. #ifdef CONFIG_FSL_SGMII_RISER
  234. if (is_serdes_configured(SGMII_TSEC1) ||
  235. is_serdes_configured(SGMII_TSEC3)) {
  236. fsl_sgmii_riser_init(tsec_info, num);
  237. }
  238. #endif
  239. mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
  240. mdio_info.name = DEFAULT_MII_NAME;
  241. fsl_pq_mdio_init(bis, &mdio_info);
  242. tsec_eth_init(bis, tsec_info, num);
  243. #endif
  244. return pci_eth_init(bis);
  245. }
  246. #if defined(CONFIG_OF_BOARD_SETUP)
  247. void ft_board_setup(void *blob, bd_t *bd)
  248. {
  249. ft_cpu_setup(blob, bd);
  250. FT_FSL_PCI_SETUP;
  251. #ifdef CONFIG_FSL_SGMII_RISER
  252. fsl_sgmii_riser_fdt_fixup(blob);
  253. #endif
  254. }
  255. #endif