cpu_init.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. /*
  2. * Copyright 2004 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. *
  22. * Change log:
  23. *
  24. * 20050101: Eran Liberty (liberty@freescale.com)
  25. * Initial file creating (porting from 85XX & 8260)
  26. */
  27. #include <common.h>
  28. #include <mpc83xx.h>
  29. #include <ioports.h>
  30. /*
  31. * Breathe some life into the CPU...
  32. *
  33. * Set up the memory map,
  34. * initialize a bunch of registers,
  35. * initialize the UPM's
  36. */
  37. void cpu_init_f (volatile immap_t * im)
  38. {
  39. DECLARE_GLOBAL_DATA_PTR;
  40. /* Pointer is writable since we allocated a register for it */
  41. gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
  42. /* Clear initial global data */
  43. memset ((void *) gd, 0, sizeof (gd_t));
  44. /* RSR - Reset Status Register - clear all status (4.6.1.3) */
  45. gd->reset_status = im->reset.rsr;
  46. im->reset.rsr = ~(RSR_RES);
  47. /*
  48. * RMR - Reset Mode Register
  49. * contains checkstop reset enable (4.6.1.4)
  50. */
  51. im->reset.rmr = (RMR_CSRE & (1<<RMR_CSRE_SHIFT));
  52. /* LCRR - Clock Ratio Register (10.3.1.16) */
  53. im->lbus.lcrr = CFG_LCRR;
  54. /* Enable Time Base & Decrimenter ( so we will have udelay() )*/
  55. im->sysconf.spcr |= SPCR_TBEN;
  56. /* System General Purpose Register */
  57. im->sysconf.sicrh = SICRH_TSOBI1;
  58. im->sysconf.sicrl = SICRL_LDP_A;
  59. /*
  60. * Memory Controller:
  61. */
  62. /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary
  63. * addresses - these have to be modified later when FLASH size
  64. * has been determined
  65. */
  66. #if defined(CFG_BR0_PRELIM) \
  67. && defined(CFG_OR0_PRELIM) \
  68. && defined(CFG_LBLAWBAR0_PRELIM) \
  69. && defined(CFG_LBLAWAR0_PRELIM)
  70. im->lbus.bank[0].br = CFG_BR0_PRELIM;
  71. im->lbus.bank[0].or = CFG_OR0_PRELIM;
  72. im->sysconf.lblaw[0].bar = CFG_LBLAWBAR0_PRELIM;
  73. im->sysconf.lblaw[0].ar = CFG_LBLAWAR0_PRELIM;
  74. #else
  75. #error CFG_BR0_PRELIM, CFG_OR0_PRELIM, CFG_LBLAWBAR0_PRELIM & CFG_LBLAWAR0_PRELIM must be defined
  76. #endif
  77. #if defined(CFG_BR1_PRELIM) \
  78. && defined(CFG_OR1_PRELIM) \
  79. && defined(CFG_LBLAWBAR1_PRELIM) \
  80. && defined(CFG_LBLAWAR1_PRELIM)
  81. im->lbus.bank[1].br = CFG_BR1_PRELIM;
  82. im->lbus.bank[1].or = CFG_OR1_PRELIM;
  83. im->sysconf.lblaw[1].bar = CFG_LBLAWBAR1_PRELIM;
  84. im->sysconf.lblaw[1].ar = CFG_LBLAWAR1_PRELIM;
  85. #endif
  86. #if defined(CFG_BR2_PRELIM) \
  87. && defined(CFG_OR2_PRELIM) \
  88. && defined(CFG_LBLAWBAR2_PRELIM) \
  89. && defined(CFG_LBLAWAR2_PRELIM)
  90. im->lbus.bank[2].br = CFG_BR2_PRELIM;
  91. im->lbus.bank[2].or = CFG_OR2_PRELIM;
  92. im->sysconf.lblaw[2].bar = CFG_LBLAWBAR2_PRELIM;
  93. im->sysconf.lblaw[2].ar = CFG_LBLAWAR2_PRELIM;
  94. #endif
  95. #if defined(CFG_BR3_PRELIM) \
  96. && defined(CFG_OR3_PRELIM) \
  97. && defined(CFG_LBLAWBAR3_PRELIM) \
  98. && defined(CFG_LBLAWAR3_PRELIM)
  99. im->lbus.bank[3].br = CFG_BR3_PRELIM;
  100. im->lbus.bank[3].or = CFG_OR3_PRELIM;
  101. im->sysconf.lblaw[3].bar = CFG_LBLAWBAR3_PRELIM;
  102. im->sysconf.lblaw[3].ar = CFG_LBLAWAR3_PRELIM;
  103. #endif
  104. #if defined(CFG_BR4_PRELIM) \
  105. && defined(CFG_OR4_PRELIM) \
  106. && defined(CFG_LBLAWBAR4_PRELIM) \
  107. && defined(CFG_LBLAWAR4_PRELIM)
  108. im->lbus.bank[4].br = CFG_BR4_PRELIM;
  109. im->lbus.bank[4].or = CFG_OR4_PRELIM;
  110. im->sysconf.lblaw[4].bar = CFG_LBLAWBAR4_PRELIM;
  111. im->sysconf.lblaw[4].ar = CFG_LBLAWAR4_PRELIM;
  112. #endif
  113. #if defined(CFG_BR5_PRELIM) \
  114. && defined(CFG_OR5_PRELIM) \
  115. && defined(CFG_LBLAWBAR5_PRELIM) \
  116. && defined(CFG_LBLAWAR5_PRELIM)
  117. im->lbus.bank[5].br = CFG_BR5_PRELIM;
  118. im->lbus.bank[5].or = CFG_OR5_PRELIM;
  119. im->sysconf.lblaw[5].bar = CFG_LBLAWBAR5_PRELIM;
  120. im->sysconf.lblaw[5].ar = CFG_LBLAWAR5_PRELIM;
  121. #endif
  122. #if defined(CFG_BR6_PRELIM) \
  123. && defined(CFG_OR6_PRELIM) \
  124. && defined(CFG_LBLAWBAR6_PRELIM) \
  125. && defined(CFG_LBLAWAR6_PRELIM)
  126. im->lbus.bank[6].br = CFG_BR6_PRELIM;
  127. im->lbus.bank[6].or = CFG_OR6_PRELIM;
  128. im->sysconf.lblaw[6].bar = CFG_LBLAWBAR6_PRELIM;
  129. im->sysconf.lblaw[6].ar = CFG_LBLAWAR6_PRELIM;
  130. #endif
  131. #if defined(CFG_BR7_PRELIM) \
  132. && defined(CFG_OR7_PRELIM) \
  133. && defined(CFG_LBLAWBAR7_PRELIM) \
  134. && defined(CFG_LBLAWAR7_PRELIM)
  135. im->lbus.bank[7].br = CFG_BR7_PRELIM;
  136. im->lbus.bank[7].or = CFG_OR7_PRELIM;
  137. im->sysconf.lblaw[7].bar = CFG_LBLAWBAR7_PRELIM;
  138. im->sysconf.lblaw[7].ar = CFG_LBLAWAR7_PRELIM;
  139. #endif
  140. }
  141. /*
  142. * Initialize higher level parts of CPU like time base and timers.
  143. */
  144. int cpu_init_r (void)
  145. {
  146. return 0;
  147. }