cpu_init.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. /*
  2. * Copyright (C) 2004-2007 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. #include <common.h>
  23. #include <mpc83xx.h>
  24. #include <ioports.h>
  25. DECLARE_GLOBAL_DATA_PTR;
  26. #ifdef CONFIG_QE
  27. extern qe_iop_conf_t qe_iop_conf_tab[];
  28. extern void qe_config_iopin(u8 port, u8 pin, int dir,
  29. int open_drain, int assign);
  30. extern void qe_init(uint qe_base);
  31. extern void qe_reset(void);
  32. static void config_qe_ioports(void)
  33. {
  34. u8 port, pin;
  35. int dir, open_drain, assign;
  36. int i;
  37. for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) {
  38. port = qe_iop_conf_tab[i].port;
  39. pin = qe_iop_conf_tab[i].pin;
  40. dir = qe_iop_conf_tab[i].dir;
  41. open_drain = qe_iop_conf_tab[i].open_drain;
  42. assign = qe_iop_conf_tab[i].assign;
  43. qe_config_iopin(port, pin, dir, open_drain, assign);
  44. }
  45. }
  46. #endif
  47. /*
  48. * Breathe some life into the CPU...
  49. *
  50. * Set up the memory map,
  51. * initialize a bunch of registers,
  52. * initialize the UPM's
  53. */
  54. void cpu_init_f (volatile immap_t * im)
  55. {
  56. /* Pointer is writable since we allocated a register for it */
  57. gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET);
  58. /* Clear initial global data */
  59. memset ((void *) gd, 0, sizeof (gd_t));
  60. /* system performance tweaking */
  61. #ifdef CFG_ACR_PIPE_DEP
  62. /* Arbiter pipeline depth */
  63. im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) |
  64. (CFG_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT);
  65. #endif
  66. #ifdef CFG_SPCR_TSECEP
  67. /* eTSEC Emergency priority */
  68. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSECEP) | (CFG_SPCR_TSECEP << SPCR_TSECEP_SHIFT);
  69. #endif
  70. #ifdef CFG_ACR_RPTCNT
  71. /* Arbiter repeat count */
  72. im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) |
  73. (CFG_ACR_RPTCNT << ACR_RPTCNT_SHIFT);
  74. #endif
  75. #ifdef CFG_SPCR_TSECEP
  76. /* all TSEC's Emergency priority */
  77. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSECEP) |
  78. (CFG_SPCR_TSECEP << SPCR_TSECEP_SHIFT);
  79. #endif
  80. #ifdef CFG_SPCR_TSEC1EP
  81. /* TSEC1 Emergency priority */
  82. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC1EP) |
  83. (CFG_SPCR_TSEC1EP << SPCR_TSEC1EP_SHIFT);
  84. #endif
  85. #ifdef CFG_SPCR_TSEC2EP
  86. /* TSEC2 Emergency priority */
  87. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC2EP) |
  88. (CFG_SPCR_TSEC2EP << SPCR_TSEC2EP_SHIFT);
  89. #endif
  90. #ifdef CFG_SCCR_ENCCM
  91. /* Encryption clock mode */
  92. im->clk.sccr = (im->clk.sccr & ~SCCR_ENCCM) |
  93. (CFG_SCCR_ENCCM << SCCR_PCICM_SHIFT);
  94. #endif
  95. #ifdef CFG_SCCR_PCICM
  96. /* PCI & DMA clock mode */
  97. im->clk.sccr = (im->clk.sccr & ~SCCR_PCICM) |
  98. (CFG_SCCR_PCICM << SCCR_PCICM_SHIFT);
  99. #endif
  100. #ifdef CFG_SCCR_TSECCM
  101. /* all TSEC's clock mode */
  102. im->clk.sccr = (im->clk.sccr & ~SCCR_TSECCM) |
  103. (CFG_SCCR_TSECCM << SCCR_TSECCM_SHIFT);
  104. #endif
  105. #ifdef CFG_SCCR_TSEC1CM
  106. /* TSEC1 clock mode */
  107. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC1CM) |
  108. (CFG_SCCR_TSEC1CM << SCCR_TSEC1CM_SHIFT);
  109. #endif
  110. #ifdef CFG_SCCR_TSEC2CM
  111. /* TSEC2 clock mode */
  112. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC2CM) |
  113. (CFG_SCCR_TSEC2CM << SCCR_TSEC2CM_SHIFT);
  114. #endif
  115. #ifdef CFG_SCCR_TSEC1ON
  116. /* TSEC1 clock switch */
  117. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC1ON) |
  118. (CFG_SCCR_TSEC1ON << SCCR_TSEC1ON_SHIFT);
  119. #endif
  120. #ifdef CFG_SCCR_TSEC2ON
  121. /* TSEC2 clock switch */
  122. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC2ON) |
  123. (CFG_SCCR_TSEC2ON << SCCR_TSEC2ON_SHIFT);
  124. #endif
  125. #ifdef CFG_SCCR_USBMPHCM
  126. /* USB MPH clock mode */
  127. im->clk.sccr = (im->clk.sccr & ~SCCR_USBMPHCM) |
  128. (CFG_SCCR_USBMPHCM << SCCR_USBMPHCM_SHIFT);
  129. #endif
  130. #ifdef CFG_SCCR_USBDRCM
  131. /* USB DR clock mode */
  132. im->clk.sccr = (im->clk.sccr & ~SCCR_USBDRCM) |
  133. (CFG_SCCR_USBDRCM << SCCR_USBDRCM_SHIFT);
  134. #endif
  135. #ifdef CFG_SCCR_SATACM
  136. /* SATA controller clock mode */
  137. im->clk.sccr = (im->clk.sccr & ~SCCR_SATACM) |
  138. (CFG_SCCR_SATACM << SCCR_SATACM_SHIFT);
  139. #endif
  140. /* RSR - Reset Status Register - clear all status (4.6.1.3) */
  141. gd->reset_status = im->reset.rsr;
  142. im->reset.rsr = ~(RSR_RES);
  143. /*
  144. * RMR - Reset Mode Register
  145. * contains checkstop reset enable (4.6.1.4)
  146. */
  147. im->reset.rmr = (RMR_CSRE & (1<<RMR_CSRE_SHIFT));
  148. /* LCRR - Clock Ratio Register (10.3.1.16) */
  149. im->lbus.lcrr = CFG_LCRR;
  150. /* Enable Time Base & Decrimenter ( so we will have udelay() )*/
  151. im->sysconf.spcr |= SPCR_TBEN;
  152. /* System General Purpose Register */
  153. #ifdef CFG_SICRH
  154. im->sysconf.sicrh = CFG_SICRH;
  155. #endif
  156. #ifdef CFG_SICRL
  157. im->sysconf.sicrl = CFG_SICRL;
  158. #endif
  159. /* DDR control driver register */
  160. #ifdef CFG_DDRCDR
  161. im->sysconf.ddrcdr = CFG_DDRCDR;
  162. #endif
  163. /* Output buffer impedance register */
  164. #ifdef CFG_OBIR
  165. im->sysconf.obir = CFG_OBIR;
  166. #endif
  167. #ifdef CONFIG_QE
  168. /* Config QE ioports */
  169. config_qe_ioports();
  170. #endif
  171. /*
  172. * Memory Controller:
  173. */
  174. /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary
  175. * addresses - these have to be modified later when FLASH size
  176. * has been determined
  177. */
  178. #if defined(CFG_BR0_PRELIM) \
  179. && defined(CFG_OR0_PRELIM) \
  180. && defined(CFG_LBLAWBAR0_PRELIM) \
  181. && defined(CFG_LBLAWAR0_PRELIM)
  182. im->lbus.bank[0].br = CFG_BR0_PRELIM;
  183. im->lbus.bank[0].or = CFG_OR0_PRELIM;
  184. im->sysconf.lblaw[0].bar = CFG_LBLAWBAR0_PRELIM;
  185. im->sysconf.lblaw[0].ar = CFG_LBLAWAR0_PRELIM;
  186. #else
  187. #error CFG_BR0_PRELIM, CFG_OR0_PRELIM, CFG_LBLAWBAR0_PRELIM & CFG_LBLAWAR0_PRELIM must be defined
  188. #endif
  189. #if defined(CFG_BR1_PRELIM) && defined(CFG_OR1_PRELIM)
  190. im->lbus.bank[1].br = CFG_BR1_PRELIM;
  191. im->lbus.bank[1].or = CFG_OR1_PRELIM;
  192. #endif
  193. #if defined(CFG_LBLAWBAR1_PRELIM) && defined(CFG_LBLAWAR1_PRELIM)
  194. im->sysconf.lblaw[1].bar = CFG_LBLAWBAR1_PRELIM;
  195. im->sysconf.lblaw[1].ar = CFG_LBLAWAR1_PRELIM;
  196. #endif
  197. #if defined(CFG_BR2_PRELIM) && defined(CFG_OR2_PRELIM)
  198. im->lbus.bank[2].br = CFG_BR2_PRELIM;
  199. im->lbus.bank[2].or = CFG_OR2_PRELIM;
  200. #endif
  201. #if defined(CFG_LBLAWBAR2_PRELIM) && defined(CFG_LBLAWAR2_PRELIM)
  202. im->sysconf.lblaw[2].bar = CFG_LBLAWBAR2_PRELIM;
  203. im->sysconf.lblaw[2].ar = CFG_LBLAWAR2_PRELIM;
  204. #endif
  205. #if defined(CFG_BR3_PRELIM) && defined(CFG_OR3_PRELIM)
  206. im->lbus.bank[3].br = CFG_BR3_PRELIM;
  207. im->lbus.bank[3].or = CFG_OR3_PRELIM;
  208. #endif
  209. #if defined(CFG_LBLAWBAR3_PRELIM) && defined(CFG_LBLAWAR3_PRELIM)
  210. im->sysconf.lblaw[3].bar = CFG_LBLAWBAR3_PRELIM;
  211. im->sysconf.lblaw[3].ar = CFG_LBLAWAR3_PRELIM;
  212. #endif
  213. #if defined(CFG_BR4_PRELIM) && defined(CFG_OR4_PRELIM)
  214. im->lbus.bank[4].br = CFG_BR4_PRELIM;
  215. im->lbus.bank[4].or = CFG_OR4_PRELIM;
  216. #endif
  217. #if defined(CFG_LBLAWBAR4_PRELIM) && defined(CFG_LBLAWAR4_PRELIM)
  218. im->sysconf.lblaw[4].bar = CFG_LBLAWBAR4_PRELIM;
  219. im->sysconf.lblaw[4].ar = CFG_LBLAWAR4_PRELIM;
  220. #endif
  221. #if defined(CFG_BR5_PRELIM) && defined(CFG_OR5_PRELIM)
  222. im->lbus.bank[5].br = CFG_BR5_PRELIM;
  223. im->lbus.bank[5].or = CFG_OR5_PRELIM;
  224. #endif
  225. #if defined(CFG_LBLAWBAR5_PRELIM) && defined(CFG_LBLAWAR5_PRELIM)
  226. im->sysconf.lblaw[5].bar = CFG_LBLAWBAR5_PRELIM;
  227. im->sysconf.lblaw[5].ar = CFG_LBLAWAR5_PRELIM;
  228. #endif
  229. #if defined(CFG_BR6_PRELIM) && defined(CFG_OR6_PRELIM)
  230. im->lbus.bank[6].br = CFG_BR6_PRELIM;
  231. im->lbus.bank[6].or = CFG_OR6_PRELIM;
  232. #endif
  233. #if defined(CFG_LBLAWBAR6_PRELIM) && defined(CFG_LBLAWAR6_PRELIM)
  234. im->sysconf.lblaw[6].bar = CFG_LBLAWBAR6_PRELIM;
  235. im->sysconf.lblaw[6].ar = CFG_LBLAWAR6_PRELIM;
  236. #endif
  237. #if defined(CFG_BR7_PRELIM) && defined(CFG_OR7_PRELIM)
  238. im->lbus.bank[7].br = CFG_BR7_PRELIM;
  239. im->lbus.bank[7].or = CFG_OR7_PRELIM;
  240. #endif
  241. #if defined(CFG_LBLAWBAR7_PRELIM) && defined(CFG_LBLAWAR7_PRELIM)
  242. im->sysconf.lblaw[7].bar = CFG_LBLAWBAR7_PRELIM;
  243. im->sysconf.lblaw[7].ar = CFG_LBLAWAR7_PRELIM;
  244. #endif
  245. #ifdef CFG_GPIO1_PRELIM
  246. im->gpio[0].dir = CFG_GPIO1_DIR;
  247. im->gpio[0].dat = CFG_GPIO1_DAT;
  248. #endif
  249. #ifdef CFG_GPIO2_PRELIM
  250. im->gpio[1].dir = CFG_GPIO2_DIR;
  251. im->gpio[1].dat = CFG_GPIO2_DAT;
  252. #endif
  253. }
  254. int cpu_init_r (void)
  255. {
  256. #ifdef CONFIG_QE
  257. uint qe_base = CFG_IMMR + 0x00100000; /* QE immr base */
  258. qe_init(qe_base);
  259. qe_reset();
  260. #endif
  261. return 0;
  262. }
  263. /*
  264. * Figure out the cause of the reset
  265. */
  266. int prt_83xx_rsr(void)
  267. {
  268. static struct {
  269. ulong mask;
  270. char *desc;
  271. } bits[] = {
  272. {
  273. RSR_SWSR, "Software Soft"}, {
  274. RSR_SWHR, "Software Hard"}, {
  275. RSR_JSRS, "JTAG Soft"}, {
  276. RSR_CSHR, "Check Stop"}, {
  277. RSR_SWRS, "Software Watchdog"}, {
  278. RSR_BMRS, "Bus Monitor"}, {
  279. RSR_SRS, "External/Internal Soft"}, {
  280. RSR_HRS, "External/Internal Hard"}
  281. };
  282. static int n = sizeof bits / sizeof bits[0];
  283. ulong rsr = gd->reset_status;
  284. int i;
  285. char *sep;
  286. puts("Reset Status:");
  287. sep = " ";
  288. for (i = 0; i < n; i++)
  289. if (rsr & bits[i].mask) {
  290. printf("%s%s", sep, bits[i].desc);
  291. sep = ", ";
  292. }
  293. puts("\n\n");
  294. return 0;
  295. }