mpc8572ds.c 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /*
  2. * Copyright 2007-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 <miiphy.h>
  34. #include <libfdt.h>
  35. #include <fdt_support.h>
  36. #include <tsec.h>
  37. #include <netdev.h>
  38. #include "../common/sgmii_riser.h"
  39. int checkboard (void)
  40. {
  41. u8 vboot;
  42. u8 *pixis_base = (u8 *)PIXIS_BASE;
  43. puts ("Board: MPC8572DS ");
  44. #ifdef CONFIG_PHYS_64BIT
  45. puts ("(36-bit addrmap) ");
  46. #endif
  47. printf ("Sys ID: 0x%02x, "
  48. "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
  49. in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
  50. in_8(pixis_base + PIXIS_PVER));
  51. vboot = in_8(pixis_base + PIXIS_VBOOT);
  52. switch ((vboot & PIXIS_VBOOT_LBMAP) >> 6) {
  53. case PIXIS_VBOOT_LBMAP_NOR0:
  54. puts ("vBank: 0\n");
  55. break;
  56. case PIXIS_VBOOT_LBMAP_PJET:
  57. puts ("Promjet\n");
  58. break;
  59. case PIXIS_VBOOT_LBMAP_NAND:
  60. puts ("NAND\n");
  61. break;
  62. case PIXIS_VBOOT_LBMAP_NOR1:
  63. puts ("vBank: 1\n");
  64. break;
  65. }
  66. return 0;
  67. }
  68. #if !defined(CONFIG_SPD_EEPROM)
  69. /*
  70. * Fixed sdram init -- doesn't use serial presence detect.
  71. */
  72. phys_size_t fixed_sdram (void)
  73. {
  74. volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
  75. volatile ccsr_ddr_t *ddr= &immap->im_ddr;
  76. uint d_init;
  77. ddr->cs0_bnds = CONFIG_SYS_DDR_CS0_BNDS;
  78. ddr->cs0_config = CONFIG_SYS_DDR_CS0_CONFIG;
  79. ddr->timing_cfg_3 = CONFIG_SYS_DDR_TIMING_3;
  80. ddr->timing_cfg_0 = CONFIG_SYS_DDR_TIMING_0;
  81. ddr->timing_cfg_1 = CONFIG_SYS_DDR_TIMING_1;
  82. ddr->timing_cfg_2 = CONFIG_SYS_DDR_TIMING_2;
  83. ddr->sdram_mode = CONFIG_SYS_DDR_MODE_1;
  84. ddr->sdram_mode_2 = CONFIG_SYS_DDR_MODE_2;
  85. ddr->sdram_interval = CONFIG_SYS_DDR_INTERVAL;
  86. ddr->sdram_data_init = CONFIG_SYS_DDR_DATA_INIT;
  87. ddr->sdram_clk_cntl = CONFIG_SYS_DDR_CLK_CTRL;
  88. ddr->sdram_cfg_2 = CONFIG_SYS_DDR_CONTROL2;
  89. #if defined (CONFIG_DDR_ECC)
  90. ddr->err_int_en = CONFIG_SYS_DDR_ERR_INT_EN;
  91. ddr->err_disable = CONFIG_SYS_DDR_ERR_DIS;
  92. ddr->err_sbe = CONFIG_SYS_DDR_SBE;
  93. #endif
  94. asm("sync;isync");
  95. udelay(500);
  96. ddr->sdram_cfg = CONFIG_SYS_DDR_CONTROL;
  97. #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
  98. d_init = 1;
  99. debug("DDR - 1st controller: memory initializing\n");
  100. /*
  101. * Poll until memory is initialized.
  102. * 512 Meg at 400 might hit this 200 times or so.
  103. */
  104. while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0) {
  105. udelay(1000);
  106. }
  107. debug("DDR: memory initialized\n\n");
  108. asm("sync; isync");
  109. udelay(500);
  110. #endif
  111. return 512 * 1024 * 1024;
  112. }
  113. #endif
  114. #ifdef CONFIG_PCI
  115. void pci_init_board(void)
  116. {
  117. struct pci_controller *hose;
  118. fsl_pcie_init_board(0);
  119. hose = find_hose_by_cfg_addr((void *)(CONFIG_SYS_PCIE3_ADDR));
  120. if (hose) {
  121. u32 temp32;
  122. u8 uli_busno = hose->first_busno + 2;
  123. /*
  124. * Activate ULI1575 legacy chip by performing a fake
  125. * memory access. Needed to make ULI RTC work.
  126. * Device 1d has the first on-board memory BAR.
  127. */
  128. pci_hose_read_config_dword(hose, PCI_BDF(uli_busno, 0x1d, 0),
  129. PCI_BASE_ADDRESS_1, &temp32);
  130. if (temp32 >= CONFIG_SYS_PCIE3_MEM_BUS) {
  131. void *p = pci_mem_to_virt(PCI_BDF(uli_busno, 0x1d, 0),
  132. temp32, 4, 0);
  133. debug(" uli1572 read to %p\n", p);
  134. in_be32(p);
  135. }
  136. }
  137. }
  138. #endif
  139. int board_early_init_r(void)
  140. {
  141. const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
  142. const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
  143. /*
  144. * Remap Boot flash + PROMJET region to caching-inhibited
  145. * so that flash can be erased properly.
  146. */
  147. /* Flush d-cache and invalidate i-cache of any FLASH data */
  148. flush_dcache();
  149. invalidate_icache();
  150. /* invalidate existing TLB entry for flash + promjet */
  151. disable_tlb(flash_esel);
  152. set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
  153. MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G, /* perms, wimge */
  154. 0, flash_esel, BOOKE_PAGESZ_256M, 1); /* ts, esel, tsize, iprot */
  155. return 0;
  156. }
  157. #ifdef CONFIG_TSEC_ENET
  158. int board_eth_init(bd_t *bis)
  159. {
  160. struct tsec_info_struct tsec_info[4];
  161. int num = 0;
  162. #ifdef CONFIG_TSEC1
  163. SET_STD_TSEC_INFO(tsec_info[num], 1);
  164. if (is_serdes_configured(SGMII_TSEC1)) {
  165. puts("eTSEC1 is in sgmii mode.\n");
  166. tsec_info[num].flags |= TSEC_SGMII;
  167. }
  168. num++;
  169. #endif
  170. #ifdef CONFIG_TSEC2
  171. SET_STD_TSEC_INFO(tsec_info[num], 2);
  172. if (is_serdes_configured(SGMII_TSEC2)) {
  173. puts("eTSEC2 is in sgmii mode.\n");
  174. tsec_info[num].flags |= TSEC_SGMII;
  175. }
  176. num++;
  177. #endif
  178. #ifdef CONFIG_TSEC3
  179. SET_STD_TSEC_INFO(tsec_info[num], 3);
  180. if (is_serdes_configured(SGMII_TSEC3)) {
  181. puts("eTSEC3 is in sgmii mode.\n");
  182. tsec_info[num].flags |= TSEC_SGMII;
  183. }
  184. num++;
  185. #endif
  186. #ifdef CONFIG_TSEC4
  187. SET_STD_TSEC_INFO(tsec_info[num], 4);
  188. if (is_serdes_configured(SGMII_TSEC4)) {
  189. puts("eTSEC4 is in sgmii mode.\n");
  190. tsec_info[num].flags |= TSEC_SGMII;
  191. }
  192. num++;
  193. #endif
  194. if (!num) {
  195. printf("No TSECs initialized\n");
  196. return 0;
  197. }
  198. #ifdef CONFIG_FSL_SGMII_RISER
  199. fsl_sgmii_riser_init(tsec_info, num);
  200. #endif
  201. tsec_eth_init(bis, tsec_info, num);
  202. return pci_eth_init(bis);
  203. }
  204. #endif
  205. #if defined(CONFIG_OF_BOARD_SETUP)
  206. void ft_board_setup(void *blob, bd_t *bd)
  207. {
  208. phys_addr_t base;
  209. phys_size_t size;
  210. ft_cpu_setup(blob, bd);
  211. base = getenv_bootm_low();
  212. size = getenv_bootm_size();
  213. fdt_fixup_memory(blob, (u64)base, (u64)size);
  214. FT_FSL_PCI_SETUP;
  215. #ifdef CONFIG_FSL_SGMII_RISER
  216. fsl_sgmii_riser_fdt_fixup(blob);
  217. #endif
  218. }
  219. #endif