mx31pdk.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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 <pmic.h>
  32. #include <fsl_pmic.h>
  33. DECLARE_GLOBAL_DATA_PTR;
  34. #ifdef CONFIG_HW_WATCHDOG
  35. void hw_watchdog_reset(void)
  36. {
  37. mxc_hw_watchdog_reset();
  38. }
  39. #endif
  40. int dram_init(void)
  41. {
  42. /* dram_init must store complete ramsize in gd->ram_size */
  43. gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
  44. PHYS_SDRAM_1_SIZE);
  45. return 0;
  46. }
  47. int board_early_init_f(void)
  48. {
  49. /* CS5: CPLD incl. network controller */
  50. static const struct mxc_weimcs cs5 = {
  51. /* sp wp bcd bcs psz pme sync dol cnc wsc ew wws edc */
  52. CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3),
  53. /* oea oen ebwa ebwn csa ebc dsz csn psr cre wrap csen */
  54. CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1),
  55. /* ebra ebrn rwa rwn mum lah lbn lba dww dct wwu age cnc2 fce*/
  56. CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0)
  57. };
  58. mxc_setup_weimcs(5, &cs5);
  59. /* Setup UART1 and SPI2 pins */
  60. mx31_uart1_hw_init();
  61. mx31_spi2_hw_init();
  62. return 0;
  63. }
  64. int board_init(void)
  65. {
  66. /* adress of boot parameters */
  67. gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
  68. return 0;
  69. }
  70. int board_late_init(void)
  71. {
  72. u32 val;
  73. struct pmic *p;
  74. pmic_init();
  75. p = get_pmic();
  76. /* Enable RTC battery */
  77. pmic_reg_read(p, REG_POWER_CTL0, &val);
  78. pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN);
  79. pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI);
  80. #ifdef CONFIG_HW_WATCHDOG
  81. mxc_hw_watchdog_enable();
  82. #endif
  83. return 0;
  84. }
  85. int checkboard(void)
  86. {
  87. printf("Board: MX31PDK\n");
  88. return 0;
  89. }
  90. int board_eth_init(bd_t *bis)
  91. {
  92. int rc = 0;
  93. #ifdef CONFIG_SMC911X
  94. rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
  95. #endif
  96. return rc;
  97. }