p1023rds.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  3. *
  4. * Authors: Roy Zang <tie-fei.zang@freescale.com>
  5. * Chunhe Lan <b25806@freescale.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <command.h>
  27. #include <pci.h>
  28. #include <asm/io.h>
  29. #include <asm/cache.h>
  30. #include <asm/processor.h>
  31. #include <asm/mmu.h>
  32. #include <asm/immap_85xx.h>
  33. #include <asm/fsl_pci.h>
  34. #include <asm/fsl_ddr_sdram.h>
  35. #include <asm/fsl_portals.h>
  36. #include <libfdt.h>
  37. #include <fdt_support.h>
  38. #include <netdev.h>
  39. #include <malloc.h>
  40. #include "bcsr.h"
  41. DECLARE_GLOBAL_DATA_PTR;
  42. int board_early_init_f(void)
  43. {
  44. fsl_lbc_t *lbc = LBC_BASE_ADDR;
  45. /* Set ABSWP to implement conversion of addresses in the LBC */
  46. setbits_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
  47. return 0;
  48. }
  49. int checkboard(void)
  50. {
  51. u8 *bcsr = (u8 *)BCSR_ACCESS_REG_ADDR;
  52. printf("Board: P1023 RDS\n");
  53. clrbits_8(&bcsr[15], BCSR15_I2C_BUS0_SEG_CLR);
  54. setbits_8(&bcsr[15], BCSR15_I2C_BUS0_SEG0);
  55. return 0;
  56. }
  57. /* Fixed sdram init -- doesn't use serial presence detect. */
  58. phys_size_t fixed_sdram(void)
  59. {
  60. #ifndef CONFIG_SYS_RAMBOOT
  61. ccsr_ddr_t *ddr = (ccsr_ddr_t *)CONFIG_SYS_MPC85xx_DDR_ADDR;
  62. set_next_law(0, LAW_SIZE_2G, LAW_TRGT_IF_DDR_1);
  63. out_be32(&ddr->cs0_bnds, CONFIG_SYS_DDR_CS0_BNDS);
  64. out_be32(&ddr->cs0_config, CONFIG_SYS_DDR_CS0_CONFIG);
  65. out_be32(&ddr->cs1_bnds, CONFIG_SYS_DDR_CS1_BNDS);
  66. out_be32(&ddr->cs1_config, CONFIG_SYS_DDR_CS1_CONFIG);
  67. out_be32(&ddr->timing_cfg_3, CONFIG_SYS_DDR_TIMING_3);
  68. out_be32(&ddr->timing_cfg_0, CONFIG_SYS_DDR_TIMING_0);
  69. out_be32(&ddr->timing_cfg_1, CONFIG_SYS_DDR_TIMING_1);
  70. out_be32(&ddr->timing_cfg_2, CONFIG_SYS_DDR_TIMING_2);
  71. out_be32(&ddr->sdram_cfg_2, CONFIG_SYS_DDR_CONTROL2);
  72. out_be32(&ddr->sdram_mode, CONFIG_SYS_DDR_MODE_1);
  73. out_be32(&ddr->sdram_mode_2, CONFIG_SYS_DDR_MODE_2);
  74. out_be32(&ddr->sdram_interval, CONFIG_SYS_DDR_INTERVAL);
  75. out_be32(&ddr->sdram_data_init, CONFIG_SYS_DDR_DATA_INIT);
  76. out_be32(&ddr->sdram_clk_cntl, CONFIG_SYS_DDR_CLK_CTRL);
  77. out_be32(&ddr->timing_cfg_4, CONFIG_SYS_DDR_TIMING_4);
  78. out_be32(&ddr->timing_cfg_5, CONFIG_SYS_DDR_TIMING_5);
  79. out_be32(&ddr->ddr_zq_cntl, CONFIG_SYS_DDR_ZQ_CNTL);
  80. out_be32(&ddr->ddr_wrlvl_cntl, CONFIG_SYS_DDR_WRLVL_CNTL);
  81. out_be32(&ddr->ddr_cdr1, CONFIG_SYS_DDR_CDR_1);
  82. out_be32(&ddr->ddr_cdr2, CONFIG_SYS_DDR_CDR_2);
  83. out_be32(&ddr->sdram_cfg, CONFIG_SYS_DDR_CONTROL);
  84. #endif
  85. return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024ul;
  86. }
  87. #ifdef CONFIG_PCI
  88. void pci_init_board(void)
  89. {
  90. fsl_pcie_init_board(0);
  91. }
  92. #endif
  93. int board_early_init_r(void)
  94. {
  95. const unsigned int flashbase = CONFIG_SYS_BCSR_BASE;
  96. const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
  97. /*
  98. * Remap Boot flash + BCSR region to caching-inhibited
  99. * so that flash can be erased properly.
  100. */
  101. /* Flush d-cache and invalidate i-cache of any FLASH data */
  102. flush_dcache();
  103. invalidate_icache();
  104. /* invalidate existing TLB entry for flash + bcsr */
  105. disable_tlb(flash_esel);
  106. set_tlb(1, flashbase, CONFIG_SYS_BCSR_BASE_PHYS,
  107. MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
  108. 0, flash_esel, BOOKE_PAGESZ_256M, 1);
  109. setup_portals();
  110. return 0;
  111. }
  112. unsigned long get_board_sys_clk(ulong dummy)
  113. {
  114. return gd->bus_clk;
  115. }
  116. unsigned long get_board_ddr_clk(ulong dummy)
  117. {
  118. return gd->mem_clk;
  119. }
  120. int board_eth_init(bd_t *bis)
  121. {
  122. return pci_eth_init(bis);
  123. }
  124. #if defined(CONFIG_OF_BOARD_SETUP)
  125. void ft_board_setup(void *blob, bd_t *bd)
  126. {
  127. phys_addr_t base;
  128. phys_size_t size;
  129. ft_cpu_setup(blob, bd);
  130. base = getenv_bootm_low();
  131. size = getenv_bootm_size();
  132. fdt_fixup_memory(blob, (u64)base, (u64)size);
  133. }
  134. #endif