cpu_init.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. scm1->mpr = 0x77777777;
  44. scm1->pacra = 0;
  45. scm1->pacrb = 0;
  46. scm1->pacrc = 0;
  47. scm1->pacrd = 0;
  48. scm1->pacre = 0;
  49. scm1->pacrf = 0;
  50. scm1->pacrg = 0;
  51. /* FlexBus */
  52. gpio->par_be =
  53. GPIO_PAR_BE_BE3_BE3 | GPIO_PAR_BE_BE2_BE2 | GPIO_PAR_BE_BE1_BE1 |
  54. GPIO_PAR_BE_BE0_BE0;
  55. gpio->par_fbctl =
  56. GPIO_PAR_FBCTL_OE | GPIO_PAR_FBCTL_TA_TA | GPIO_PAR_FBCTL_RW_RW |
  57. GPIO_PAR_FBCTL_TS_TS;
  58. #if (defined(CFG_CS0_BASE) && defined(CFG_CS0_MASK) && defined(CFG_CS0_CTRL))
  59. fbcs->csar0 = CFG_CS0_BASE;
  60. fbcs->cscr0 = CFG_CS0_CTRL;
  61. fbcs->csmr0 = CFG_CS0_MASK;
  62. #endif
  63. #if (defined(CFG_CS1_BASE) && defined(CFG_CS1_MASK) && defined(CFG_CS1_CTRL))
  64. /* Latch chipselect */
  65. fbcs->csar1 = CFG_CS1_BASE;
  66. fbcs->cscr1 = CFG_CS1_CTRL;
  67. fbcs->csmr1 = CFG_CS1_MASK;
  68. #endif
  69. #if (defined(CFG_CS2_BASE) && defined(CFG_CS2_MASK) && defined(CFG_CS2_CTRL))
  70. fbcs->csar2 = CFG_CS2_BASE;
  71. fbcs->cscr2 = CFG_CS2_CTRL;
  72. fbcs->csmr2 = CFG_CS2_MASK;
  73. #endif
  74. #if (defined(CFG_CS3_BASE) && defined(CFG_CS3_MASK) && defined(CFG_CS3_CTRL))
  75. fbcs->csar3 = CFG_CS3_BASE;
  76. fbcs->cscr3 = CFG_CS3_CTRL;
  77. fbcs->csmr3 = CFG_CS3_MASK;
  78. #endif
  79. #if (defined(CFG_CS4_BASE) && defined(CFG_CS4_MASK) && defined(CFG_CS4_CTRL))
  80. fbcs->csar4 = CFG_CS4_BASE;
  81. fbcs->cscr4 = CFG_CS4_CTRL;
  82. fbcs->csmr4 = CFG_CS4_MASK;
  83. #endif
  84. #if (defined(CFG_CS5_BASE) && defined(CFG_CS5_MASK) && defined(CFG_CS5_CTRL))
  85. fbcs->csar5 = CFG_CS5_BASE;
  86. fbcs->cscr5 = CFG_CS5_CTRL;
  87. fbcs->csmr5 = CFG_CS5_MASK;
  88. #endif
  89. #ifdef CONFIG_FSL_I2C
  90. gpio->par_feci2c = GPIO_PAR_FECI2C_SCL_SCL | GPIO_PAR_FECI2C_SDA_SDA;
  91. #endif
  92. icache_enable();
  93. }
  94. /*
  95. * initialize higher level parts of CPU like timers
  96. */
  97. int cpu_init_r(void)
  98. {
  99. #ifdef CONFIG_MCFTMR
  100. volatile rtc_t *rtc = (volatile rtc_t *)(CFG_MCFRTC_BASE);
  101. volatile rtcex_t *rtcex = (volatile rtcex_t *)&rtc->extended;
  102. u32 oscillator = CFG_RTC_OSCILLATOR;
  103. rtcex->gocu = (CFG_RTC_OSCILLATOR >> 16) & 0xFFFF;
  104. rtcex->gocl = CFG_RTC_OSCILLATOR & 0xFFFF;
  105. #endif
  106. return (0);
  107. }
  108. void uart_port_conf(void)
  109. {
  110. volatile gpio_t *gpio = (gpio_t *) MMAP_GPIO;
  111. /* Setup Ports: */
  112. switch (CFG_UART_PORT) {
  113. case 0:
  114. gpio->par_uart =
  115. (GPIO_PAR_UART_U0TXD_U0TXD | GPIO_PAR_UART_U0RXD_U0RXD);
  116. break;
  117. case 1:
  118. gpio->par_uart =
  119. (GPIO_PAR_UART_U1TXD_U1TXD | GPIO_PAR_UART_U1RXD_U1RXD);
  120. break;
  121. }
  122. }