mpc8536ds.c 7.0 KB

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