mx31pdk.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. /*
  2. *
  3. * (C) Copyright 2009 Magnus Lilja <lilja.magnus@gmail.com>
  4. *
  5. * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
  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 <netdev.h>
  27. #include <asm/arch/clock.h>
  28. #include <asm/arch/imx-regs.h>
  29. #include <asm/arch/sys_proto.h>
  30. #include <watchdog.h>
  31. #include <power/pmic.h>
  32. #include <fsl_pmic.h>
  33. #include <errno.h>
  34. DECLARE_GLOBAL_DATA_PTR;
  35. #ifdef CONFIG_SPL_BUILD
  36. void board_init_f(ulong bootflag)
  37. {
  38. /*
  39. * copy ourselves from where we are running to where we were
  40. * linked at. Use ulong pointers as all addresses involved
  41. * are 4-byte-aligned.
  42. */
  43. ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst;
  44. asm volatile ("ldr %0, =_start" : "=r"(start_ptr));
  45. asm volatile ("ldr %0, =_end" : "=r"(end_ptr));
  46. asm volatile ("ldr %0, =board_init_f" : "=r"(link_ptr));
  47. asm volatile ("adr %0, board_init_f" : "=r"(run_ptr));
  48. for (dst = start_ptr; dst < end_ptr; dst++)
  49. *dst = *(dst+(run_ptr-link_ptr));
  50. /*
  51. * branch to nand_boot's link-time address.
  52. */
  53. asm volatile("ldr pc, =nand_boot");
  54. }
  55. #endif
  56. int dram_init(void)
  57. {
  58. /* dram_init must store complete ramsize in gd->ram_size */
  59. gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
  60. PHYS_SDRAM_1_SIZE);
  61. return 0;
  62. }
  63. int board_early_init_f(void)
  64. {
  65. /* CS5: CPLD incl. network controller */
  66. static const struct mxc_weimcs cs5 = {
  67. /* sp wp bcd bcs psz pme sync dol cnc wsc ew wws edc */
  68. CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3),
  69. /* oea oen ebwa ebwn csa ebc dsz csn psr cre wrap csen */
  70. CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1),
  71. /* ebra ebrn rwa rwn mum lah lbn lba dww dct wwu age cnc2 fce*/
  72. CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0)
  73. };
  74. mxc_setup_weimcs(5, &cs5);
  75. /* Setup UART1 and SPI2 pins */
  76. mx31_uart1_hw_init();
  77. mx31_spi2_hw_init();
  78. return 0;
  79. }
  80. int board_init(void)
  81. {
  82. /* adress of boot parameters */
  83. gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
  84. return 0;
  85. }
  86. int board_late_init(void)
  87. {
  88. u32 val;
  89. struct pmic *p;
  90. int ret;
  91. ret = pmic_init(I2C_PMIC);
  92. if (ret)
  93. return ret;
  94. p = pmic_get("FSL_PMIC");
  95. if (!p)
  96. return -ENODEV;
  97. /* Enable RTC battery */
  98. pmic_reg_read(p, REG_POWER_CTL0, &val);
  99. pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN);
  100. pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI);
  101. #ifdef CONFIG_HW_WATCHDOG
  102. hw_watchdog_init();
  103. #endif
  104. return 0;
  105. }
  106. int checkboard(void)
  107. {
  108. printf("Board: MX31PDK\n");
  109. return 0;
  110. }
  111. int board_eth_init(bd_t *bis)
  112. {
  113. int rc = 0;
  114. #ifdef CONFIG_SMC911X
  115. rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
  116. #endif
  117. return rc;
  118. }