mpc8536ds.c 7.1 KB

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