cpu_init.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /*
  2. *
  3. * (C) Copyright 2000-2003
  4. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  5. *
  6. * (C) Copyright 2004-2007 Freescale Semiconductor, Inc.
  7. * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <watchdog.h>
  29. #include <asm/immap.h>
  30. #include <asm/rtc.h>
  31. /*
  32. * Breath some life into the CPU...
  33. *
  34. * Set up the memory map,
  35. * initialize a bunch of registers,
  36. * initialize the UPM's
  37. */
  38. void cpu_init_f(void)
  39. {
  40. volatile scm1_t *scm1 = (scm1_t *) MMAP_SCM1;
  41. volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
  42. volatile fbcs_t *fbcs = (fbcs_t *) MMAP_FBCS;
  43. volatile pll_t *pll = (volatile pll_t *)MMAP_PLL;
  44. /* Workaround, must place before fbcs */
  45. pll->psr = 0x12;
  46. scm1->mpr = 0x77777777;
  47. scm1->pacra = 0;
  48. scm1->pacrb = 0;
  49. scm1->pacrc = 0;
  50. scm1->pacrd = 0;
  51. scm1->pacre = 0;
  52. scm1->pacrf = 0;
  53. scm1->pacrg = 0;
  54. scm1->pacri = 0;
  55. #if (defined(CFG_CS0_BASE) && defined(CFG_CS0_MASK) && defined(CFG_CS0_CTRL))
  56. fbcs->csar0 = CFG_CS0_BASE;
  57. fbcs->cscr0 = CFG_CS0_CTRL;
  58. fbcs->csmr0 = CFG_CS0_MASK;
  59. #endif
  60. #if (defined(CFG_CS1_BASE) && defined(CFG_CS1_MASK) && defined(CFG_CS1_CTRL))
  61. fbcs->csar1 = CFG_CS1_BASE;
  62. fbcs->cscr1 = CFG_CS1_CTRL;
  63. fbcs->csmr1 = CFG_CS1_MASK;
  64. #endif
  65. #if (defined(CFG_CS2_BASE) && defined(CFG_CS2_MASK) && defined(CFG_CS2_CTRL))
  66. fbcs->csar2 = CFG_CS2_BASE;
  67. fbcs->cscr2 = CFG_CS2_CTRL;
  68. fbcs->csmr2 = CFG_CS2_MASK;
  69. #endif
  70. #if (defined(CFG_CS3_BASE) && defined(CFG_CS3_MASK) && defined(CFG_CS3_CTRL))
  71. fbcs->csar3 = CFG_CS3_BASE;
  72. fbcs->cscr3 = CFG_CS3_CTRL;
  73. fbcs->csmr3 = CFG_CS3_MASK;
  74. #endif
  75. #if (defined(CFG_CS4_BASE) && defined(CFG_CS4_MASK) && defined(CFG_CS4_CTRL))
  76. fbcs->csar4 = CFG_CS4_BASE;
  77. fbcs->cscr4 = CFG_CS4_CTRL;
  78. fbcs->csmr4 = CFG_CS4_MASK;
  79. #endif
  80. #if (defined(CFG_CS5_BASE) && defined(CFG_CS5_MASK) && defined(CFG_CS5_CTRL))
  81. fbcs->csar5 = CFG_CS5_BASE;
  82. fbcs->cscr5 = CFG_CS5_CTRL;
  83. fbcs->csmr5 = CFG_CS5_MASK;
  84. #endif
  85. #ifdef CONFIG_FSL_I2C
  86. gpio->par_i2c = GPIO_PAR_I2C_SCL_SCL | GPIO_PAR_I2C_SDA_SDA;
  87. #endif
  88. icache_enable();
  89. }
  90. /*
  91. * initialize higher level parts of CPU like timers
  92. */
  93. int cpu_init_r(void)
  94. {
  95. #ifdef CONFIG_MCFTMR
  96. volatile rtc_t *rtc = (volatile rtc_t *)(CFG_MCFRTC_BASE);
  97. volatile rtcex_t *rtcex = (volatile rtcex_t *)&rtc->extended;
  98. u32 oscillator = CFG_RTC_OSCILLATOR;
  99. rtcex->gocu = (CFG_RTC_OSCILLATOR >> 16) & 0xFFFF;
  100. rtcex->gocl = CFG_RTC_OSCILLATOR & 0xFFFF;
  101. #endif
  102. return (0);
  103. }
  104. void uart_port_conf(void)
  105. {
  106. volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
  107. /* Setup Ports: */
  108. switch (CFG_UART_PORT) {
  109. case 0:
  110. gpio->par_uart &=
  111. (GPIO_PAR_UART_U0TXD_MASK & GPIO_PAR_UART_U0RXD_MASK);
  112. gpio->par_uart |=
  113. (GPIO_PAR_UART_U0TXD_U0TXD | GPIO_PAR_UART_U0RXD_U0RXD);
  114. break;
  115. case 1:
  116. gpio->par_uart &=
  117. (GPIO_PAR_UART_U1TXD_MASK & GPIO_PAR_UART_U1RXD_MASK);
  118. gpio->par_uart |=
  119. (GPIO_PAR_UART_U1TXD_U1TXD | GPIO_PAR_UART_U1RXD_U1RXD);
  120. break;
  121. case 2:
  122. gpio->par_dspi &=
  123. (GPIO_PAR_DSPI_SIN_MASK & GPIO_PAR_DSPI_SOUT_MASK);
  124. gpio->par_dspi =
  125. (GPIO_PAR_DSPI_SIN_U2RXD | GPIO_PAR_DSPI_SOUT_U2TXD);
  126. break;
  127. }
  128. }