mpc8536ds.c 7.3 KB

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