cpu_init.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. /*
  2. * Copyright (C) 2004-2009 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. #ifdef CONFIG_USB_EHCI_FSL
  26. #include <asm/io.h>
  27. #include <usb/ehci-fsl.h>
  28. #endif
  29. DECLARE_GLOBAL_DATA_PTR;
  30. #ifdef CONFIG_QE
  31. extern qe_iop_conf_t qe_iop_conf_tab[];
  32. extern void qe_config_iopin(u8 port, u8 pin, int dir,
  33. int open_drain, int assign);
  34. extern void qe_init(uint qe_base);
  35. extern void qe_reset(void);
  36. static void config_qe_ioports(void)
  37. {
  38. u8 port, pin;
  39. int dir, open_drain, assign;
  40. int i;
  41. for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) {
  42. port = qe_iop_conf_tab[i].port;
  43. pin = qe_iop_conf_tab[i].pin;
  44. dir = qe_iop_conf_tab[i].dir;
  45. open_drain = qe_iop_conf_tab[i].open_drain;
  46. assign = qe_iop_conf_tab[i].assign;
  47. qe_config_iopin(port, pin, dir, open_drain, assign);
  48. }
  49. }
  50. #endif
  51. /*
  52. * Breathe some life into the CPU...
  53. *
  54. * Set up the memory map,
  55. * initialize a bunch of registers,
  56. * initialize the UPM's
  57. */
  58. void cpu_init_f (volatile immap_t * im)
  59. {
  60. /* Pointer is writable since we allocated a register for it */
  61. gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
  62. /* Clear initial global data */
  63. memset ((void *) gd, 0, sizeof (gd_t));
  64. /* system performance tweaking */
  65. #ifdef CONFIG_SYS_ACR_PIPE_DEP
  66. /* Arbiter pipeline depth */
  67. im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) |
  68. (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT);
  69. #endif
  70. #ifdef CONFIG_SYS_ACR_RPTCNT
  71. /* Arbiter repeat count */
  72. im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) |
  73. (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT);
  74. #endif
  75. #ifdef CONFIG_SYS_SPCR_OPT
  76. /* Optimize transactions between CSB and other devices */
  77. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_OPT) |
  78. (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT);
  79. #endif
  80. #ifdef CONFIG_SYS_SPCR_TSECEP
  81. /* all eTSEC's Emergency priority */
  82. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSECEP) |
  83. (CONFIG_SYS_SPCR_TSECEP << SPCR_TSECEP_SHIFT);
  84. #endif
  85. #ifdef CONFIG_SYS_SPCR_TSEC1EP
  86. /* TSEC1 Emergency priority */
  87. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC1EP) |
  88. (CONFIG_SYS_SPCR_TSEC1EP << SPCR_TSEC1EP_SHIFT);
  89. #endif
  90. #ifdef CONFIG_SYS_SPCR_TSEC2EP
  91. /* TSEC2 Emergency priority */
  92. im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC2EP) |
  93. (CONFIG_SYS_SPCR_TSEC2EP << SPCR_TSEC2EP_SHIFT);
  94. #endif
  95. #ifdef CONFIG_SYS_SCCR_ENCCM
  96. /* Encryption clock mode */
  97. im->clk.sccr = (im->clk.sccr & ~SCCR_ENCCM) |
  98. (CONFIG_SYS_SCCR_ENCCM << SCCR_ENCCM_SHIFT);
  99. #endif
  100. #ifdef CONFIG_SYS_SCCR_PCICM
  101. /* PCI & DMA clock mode */
  102. im->clk.sccr = (im->clk.sccr & ~SCCR_PCICM) |
  103. (CONFIG_SYS_SCCR_PCICM << SCCR_PCICM_SHIFT);
  104. #endif
  105. #ifdef CONFIG_SYS_SCCR_TSECCM
  106. /* all TSEC's clock mode */
  107. im->clk.sccr = (im->clk.sccr & ~SCCR_TSECCM) |
  108. (CONFIG_SYS_SCCR_TSECCM << SCCR_TSECCM_SHIFT);
  109. #endif
  110. #ifdef CONFIG_SYS_SCCR_TSEC1CM
  111. /* TSEC1 clock mode */
  112. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC1CM) |
  113. (CONFIG_SYS_SCCR_TSEC1CM << SCCR_TSEC1CM_SHIFT);
  114. #endif
  115. #ifdef CONFIG_SYS_SCCR_TSEC2CM
  116. /* TSEC2 clock mode */
  117. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC2CM) |
  118. (CONFIG_SYS_SCCR_TSEC2CM << SCCR_TSEC2CM_SHIFT);
  119. #endif
  120. #ifdef CONFIG_SYS_SCCR_TSEC1ON
  121. /* TSEC1 clock switch */
  122. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC1ON) |
  123. (CONFIG_SYS_SCCR_TSEC1ON << SCCR_TSEC1ON_SHIFT);
  124. #endif
  125. #ifdef CONFIG_SYS_SCCR_TSEC2ON
  126. /* TSEC2 clock switch */
  127. im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC2ON) |
  128. (CONFIG_SYS_SCCR_TSEC2ON << SCCR_TSEC2ON_SHIFT);
  129. #endif
  130. #ifdef CONFIG_SYS_SCCR_USBMPHCM
  131. /* USB MPH clock mode */
  132. im->clk.sccr = (im->clk.sccr & ~SCCR_USBMPHCM) |
  133. (CONFIG_SYS_SCCR_USBMPHCM << SCCR_USBMPHCM_SHIFT);
  134. #endif
  135. #ifdef CONFIG_SYS_SCCR_USBDRCM
  136. /* USB DR clock mode */
  137. im->clk.sccr = (im->clk.sccr & ~SCCR_USBDRCM) |
  138. (CONFIG_SYS_SCCR_USBDRCM << SCCR_USBDRCM_SHIFT);
  139. #endif
  140. #ifdef CONFIG_SYS_SCCR_SATACM
  141. /* SATA controller clock mode */
  142. im->clk.sccr = (im->clk.sccr & ~SCCR_SATACM) |
  143. (CONFIG_SYS_SCCR_SATACM << SCCR_SATACM_SHIFT);
  144. #endif
  145. /* RSR - Reset Status Register - clear all status (4.6.1.3) */
  146. gd->reset_status = im->reset.rsr;
  147. im->reset.rsr = ~(RSR_RES);
  148. /* AER - Arbiter Event Register - store status */
  149. gd->arbiter_event_attributes = im->arbiter.aeatr;
  150. gd->arbiter_event_address = im->arbiter.aeadr;
  151. /*
  152. * RMR - Reset Mode Register
  153. * contains checkstop reset enable (4.6.1.4)
  154. */
  155. im->reset.rmr = (RMR_CSRE & (1<<RMR_CSRE_SHIFT));
  156. /* LCRR - Clock Ratio Register (10.3.1.16) */
  157. im->lbus.lcrr = CONFIG_SYS_LCRR;
  158. /* Enable Time Base & Decrimenter ( so we will have udelay() )*/
  159. im->sysconf.spcr |= SPCR_TBEN;
  160. /* System General Purpose Register */
  161. #ifdef CONFIG_SYS_SICRH
  162. #if defined(CONFIG_MPC834x) || defined(CONFIG_MPC8313)
  163. /* regarding to MPC34x manual rev.1 bits 28..29 must be preserved */
  164. im->sysconf.sicrh = (im->sysconf.sicrh & 0x0000000C) | CONFIG_SYS_SICRH;
  165. #else
  166. im->sysconf.sicrh = CONFIG_SYS_SICRH;
  167. #endif
  168. #endif
  169. #ifdef CONFIG_SYS_SICRL
  170. im->sysconf.sicrl = CONFIG_SYS_SICRL;
  171. #endif
  172. /* DDR control driver register */
  173. #ifdef CONFIG_SYS_DDRCDR
  174. im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR;
  175. #endif
  176. /* Output buffer impedance register */
  177. #ifdef CONFIG_SYS_OBIR
  178. im->sysconf.obir = CONFIG_SYS_OBIR;
  179. #endif
  180. #ifdef CONFIG_QE
  181. /* Config QE ioports */
  182. config_qe_ioports();
  183. #endif
  184. /*
  185. * Memory Controller:
  186. */
  187. /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary
  188. * addresses - these have to be modified later when FLASH size
  189. * has been determined
  190. */
  191. #if defined(CONFIG_SYS_BR0_PRELIM) \
  192. && defined(CONFIG_SYS_OR0_PRELIM) \
  193. && defined(CONFIG_SYS_LBLAWBAR0_PRELIM) \
  194. && defined(CONFIG_SYS_LBLAWAR0_PRELIM)
  195. im->lbus.bank[0].br = CONFIG_SYS_BR0_PRELIM;
  196. im->lbus.bank[0].or = CONFIG_SYS_OR0_PRELIM;
  197. im->sysconf.lblaw[0].bar = CONFIG_SYS_LBLAWBAR0_PRELIM;
  198. im->sysconf.lblaw[0].ar = CONFIG_SYS_LBLAWAR0_PRELIM;
  199. #else
  200. #error CONFIG_SYS_BR0_PRELIM, CONFIG_SYS_OR0_PRELIM, CONFIG_SYS_LBLAWBAR0_PRELIM & CONFIG_SYS_LBLAWAR0_PRELIM must be defined
  201. #endif
  202. #if defined(CONFIG_SYS_BR1_PRELIM) && defined(CONFIG_SYS_OR1_PRELIM)
  203. im->lbus.bank[1].br = CONFIG_SYS_BR1_PRELIM;
  204. im->lbus.bank[1].or = CONFIG_SYS_OR1_PRELIM;
  205. #endif
  206. #if defined(CONFIG_SYS_LBLAWBAR1_PRELIM) && defined(CONFIG_SYS_LBLAWAR1_PRELIM)
  207. im->sysconf.lblaw[1].bar = CONFIG_SYS_LBLAWBAR1_PRELIM;
  208. im->sysconf.lblaw[1].ar = CONFIG_SYS_LBLAWAR1_PRELIM;
  209. #endif
  210. #if defined(CONFIG_SYS_BR2_PRELIM) && defined(CONFIG_SYS_OR2_PRELIM)
  211. im->lbus.bank[2].br = CONFIG_SYS_BR2_PRELIM;
  212. im->lbus.bank[2].or = CONFIG_SYS_OR2_PRELIM;
  213. #endif
  214. #if defined(CONFIG_SYS_LBLAWBAR2_PRELIM) && defined(CONFIG_SYS_LBLAWAR2_PRELIM)
  215. im->sysconf.lblaw[2].bar = CONFIG_SYS_LBLAWBAR2_PRELIM;
  216. im->sysconf.lblaw[2].ar = CONFIG_SYS_LBLAWAR2_PRELIM;
  217. #endif
  218. #if defined(CONFIG_SYS_BR3_PRELIM) && defined(CONFIG_SYS_OR3_PRELIM)
  219. im->lbus.bank[3].br = CONFIG_SYS_BR3_PRELIM;
  220. im->lbus.bank[3].or = CONFIG_SYS_OR3_PRELIM;
  221. #endif
  222. #if defined(CONFIG_SYS_LBLAWBAR3_PRELIM) && defined(CONFIG_SYS_LBLAWAR3_PRELIM)
  223. im->sysconf.lblaw[3].bar = CONFIG_SYS_LBLAWBAR3_PRELIM;
  224. im->sysconf.lblaw[3].ar = CONFIG_SYS_LBLAWAR3_PRELIM;
  225. #endif
  226. #if defined(CONFIG_SYS_BR4_PRELIM) && defined(CONFIG_SYS_OR4_PRELIM)
  227. im->lbus.bank[4].br = CONFIG_SYS_BR4_PRELIM;
  228. im->lbus.bank[4].or = CONFIG_SYS_OR4_PRELIM;
  229. #endif
  230. #if defined(CONFIG_SYS_LBLAWBAR4_PRELIM) && defined(CONFIG_SYS_LBLAWAR4_PRELIM)
  231. im->sysconf.lblaw[4].bar = CONFIG_SYS_LBLAWBAR4_PRELIM;
  232. im->sysconf.lblaw[4].ar = CONFIG_SYS_LBLAWAR4_PRELIM;
  233. #endif
  234. #if defined(CONFIG_SYS_BR5_PRELIM) && defined(CONFIG_SYS_OR5_PRELIM)
  235. im->lbus.bank[5].br = CONFIG_SYS_BR5_PRELIM;
  236. im->lbus.bank[5].or = CONFIG_SYS_OR5_PRELIM;
  237. #endif
  238. #if defined(CONFIG_SYS_LBLAWBAR5_PRELIM) && defined(CONFIG_SYS_LBLAWAR5_PRELIM)
  239. im->sysconf.lblaw[5].bar = CONFIG_SYS_LBLAWBAR5_PRELIM;
  240. im->sysconf.lblaw[5].ar = CONFIG_SYS_LBLAWAR5_PRELIM;
  241. #endif
  242. #if defined(CONFIG_SYS_BR6_PRELIM) && defined(CONFIG_SYS_OR6_PRELIM)
  243. im->lbus.bank[6].br = CONFIG_SYS_BR6_PRELIM;
  244. im->lbus.bank[6].or = CONFIG_SYS_OR6_PRELIM;
  245. #endif
  246. #if defined(CONFIG_SYS_LBLAWBAR6_PRELIM) && defined(CONFIG_SYS_LBLAWAR6_PRELIM)
  247. im->sysconf.lblaw[6].bar = CONFIG_SYS_LBLAWBAR6_PRELIM;
  248. im->sysconf.lblaw[6].ar = CONFIG_SYS_LBLAWAR6_PRELIM;
  249. #endif
  250. #if defined(CONFIG_SYS_BR7_PRELIM) && defined(CONFIG_SYS_OR7_PRELIM)
  251. im->lbus.bank[7].br = CONFIG_SYS_BR7_PRELIM;
  252. im->lbus.bank[7].or = CONFIG_SYS_OR7_PRELIM;
  253. #endif
  254. #if defined(CONFIG_SYS_LBLAWBAR7_PRELIM) && defined(CONFIG_SYS_LBLAWAR7_PRELIM)
  255. im->sysconf.lblaw[7].bar = CONFIG_SYS_LBLAWBAR7_PRELIM;
  256. im->sysconf.lblaw[7].ar = CONFIG_SYS_LBLAWAR7_PRELIM;
  257. #endif
  258. #ifdef CONFIG_SYS_GPIO1_PRELIM
  259. im->gpio[0].dat = CONFIG_SYS_GPIO1_DAT;
  260. im->gpio[0].dir = CONFIG_SYS_GPIO1_DIR;
  261. #endif
  262. #ifdef CONFIG_SYS_GPIO2_PRELIM
  263. im->gpio[1].dat = CONFIG_SYS_GPIO2_DAT;
  264. im->gpio[1].dir = CONFIG_SYS_GPIO2_DIR;
  265. #endif
  266. #ifdef CONFIG_USB_EHCI_FSL
  267. uint32_t temp;
  268. struct usb_ehci *ehci = (struct usb_ehci *)CONFIG_SYS_MPC8xxx_USB_ADDR;
  269. /* Configure interface. */
  270. setbits_be32((void *)ehci->control, REFSEL_16MHZ | UTMI_PHY_EN);
  271. /* Wait for clock to stabilize */
  272. do {
  273. temp = in_be32((void *)ehci->control);
  274. udelay(1000);
  275. } while (!(temp & PHY_CLK_VALID));
  276. #endif
  277. }
  278. int cpu_init_r (void)
  279. {
  280. #ifdef CONFIG_QE
  281. uint qe_base = CONFIG_SYS_IMMR + 0x00100000; /* QE immr base */
  282. qe_init(qe_base);
  283. qe_reset();
  284. #endif
  285. return 0;
  286. }
  287. /*
  288. * Print out the bus arbiter event
  289. */
  290. #if defined(CONFIG_DISPLAY_AER_FULL)
  291. static int print_83xx_arb_event(int force)
  292. {
  293. static char* event[] = {
  294. "Address Time Out",
  295. "Data Time Out",
  296. "Address Only Transfer Type",
  297. "External Control Word Transfer Type",
  298. "Reserved Transfer Type",
  299. "Transfer Error",
  300. "reserved",
  301. "reserved"
  302. };
  303. static char* master[] = {
  304. "e300 Core Data Transaction",
  305. "reserved",
  306. "e300 Core Instruction Fetch",
  307. "reserved",
  308. "TSEC1",
  309. "TSEC2",
  310. "USB MPH",
  311. "USB DR",
  312. "Encryption Core",
  313. "I2C Boot Sequencer",
  314. "JTAG",
  315. "reserved",
  316. "eSDHC",
  317. "PCI1",
  318. "PCI2",
  319. "DMA",
  320. "QUICC Engine 00",
  321. "QUICC Engine 01",
  322. "QUICC Engine 10",
  323. "QUICC Engine 11",
  324. "reserved",
  325. "reserved",
  326. "reserved",
  327. "reserved",
  328. "SATA1",
  329. "SATA2",
  330. "SATA3",
  331. "SATA4",
  332. "reserved",
  333. "PCI Express 1",
  334. "PCI Express 2",
  335. "TDM-DMAC"
  336. };
  337. static char *transfer[] = {
  338. "Address-only, Clean Block",
  339. "Address-only, lwarx reservation set",
  340. "Single-beat or Burst write",
  341. "reserved",
  342. "Address-only, Flush Block",
  343. "reserved",
  344. "Burst write",
  345. "reserved",
  346. "Address-only, sync",
  347. "Address-only, tlbsync",
  348. "Single-beat or Burst read",
  349. "Single-beat or Burst read",
  350. "Address-only, Kill Block",
  351. "Address-only, icbi",
  352. "Burst read",
  353. "reserved",
  354. "Address-only, eieio",
  355. "reserved",
  356. "Single-beat write",
  357. "reserved",
  358. "ecowx - Illegal single-beat write",
  359. "reserved",
  360. "reserved",
  361. "reserved",
  362. "Address-only, TLB Invalidate",
  363. "reserved",
  364. "Single-beat or Burst read",
  365. "reserved",
  366. "eciwx - Illegal single-beat read",
  367. "reserved",
  368. "Burst read",
  369. "reserved"
  370. };
  371. int etype = (gd->arbiter_event_attributes & AEATR_EVENT)
  372. >> AEATR_EVENT_SHIFT;
  373. int mstr_id = (gd->arbiter_event_attributes & AEATR_MSTR_ID)
  374. >> AEATR_MSTR_ID_SHIFT;
  375. int tbst = (gd->arbiter_event_attributes & AEATR_TBST)
  376. >> AEATR_TBST_SHIFT;
  377. int tsize = (gd->arbiter_event_attributes & AEATR_TSIZE)
  378. >> AEATR_TSIZE_SHIFT;
  379. int ttype = (gd->arbiter_event_attributes & AEATR_TTYPE)
  380. >> AEATR_TTYPE_SHIFT;
  381. if (!force && !gd->arbiter_event_address)
  382. return 0;
  383. puts("Arbiter Event Status:\n");
  384. printf(" Event Address: 0x%08lX\n", gd->arbiter_event_address);
  385. printf(" Event Type: 0x%1x = %s\n", etype, event[etype]);
  386. printf(" Master ID: 0x%02x = %s\n", mstr_id, master[mstr_id]);
  387. printf(" Transfer Size: 0x%1x = %d bytes\n", (tbst<<3) | tsize,
  388. tbst ? (tsize ? tsize : 8) : 16 + 8 * tsize);
  389. printf(" Transfer Type: 0x%02x = %s\n", ttype, transfer[ttype]);
  390. return gd->arbiter_event_address;
  391. }
  392. #elif defined(CONFIG_DISPLAY_AER_BRIEF)
  393. static int print_83xx_arb_event(int force)
  394. {
  395. if (!force && !gd->arbiter_event_address)
  396. return 0;
  397. printf("Arbiter Event Status: AEATR=0x%08lX, AEADR=0x%08lX\n",
  398. gd->arbiter_event_attributes, gd->arbiter_event_address);
  399. return gd->arbiter_event_address;
  400. }
  401. #endif /* CONFIG_DISPLAY_AER_xxxx */
  402. /*
  403. * Figure out the cause of the reset
  404. */
  405. int prt_83xx_rsr(void)
  406. {
  407. static struct {
  408. ulong mask;
  409. char *desc;
  410. } bits[] = {
  411. {
  412. RSR_SWSR, "Software Soft"}, {
  413. RSR_SWHR, "Software Hard"}, {
  414. RSR_JSRS, "JTAG Soft"}, {
  415. RSR_CSHR, "Check Stop"}, {
  416. RSR_SWRS, "Software Watchdog"}, {
  417. RSR_BMRS, "Bus Monitor"}, {
  418. RSR_SRS, "External/Internal Soft"}, {
  419. RSR_HRS, "External/Internal Hard"}
  420. };
  421. static int n = sizeof bits / sizeof bits[0];
  422. ulong rsr = gd->reset_status;
  423. int i;
  424. char *sep;
  425. puts("Reset Status:");
  426. sep = " ";
  427. for (i = 0; i < n; i++)
  428. if (rsr & bits[i].mask) {
  429. printf("%s%s", sep, bits[i].desc);
  430. sep = ", ";
  431. }
  432. puts("\n");
  433. #if defined(CONFIG_DISPLAY_AER_FULL) || defined(CONFIG_DISPLAY_AER_BRIEF)
  434. print_83xx_arb_event(rsr & RSR_BMRS);
  435. #endif
  436. puts("\n");
  437. return 0;
  438. }