yellowstone.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. /*
  2. *
  3. * See file CREDITS for list of people who contributed to this
  4. * project.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License as
  8. * published by the Free Software Foundation; either version 2 of
  9. * the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  19. * MA 02111-1307 USA
  20. */
  21. #include <common.h>
  22. #include <ppc4xx.h>
  23. #include <asm/processor.h>
  24. #include <spd_sdram.h>
  25. extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
  26. int board_early_init_f(void)
  27. {
  28. register uint reg;
  29. /*--------------------------------------------------------------------
  30. * Setup the external bus controller/chip selects
  31. *-------------------------------------------------------------------*/
  32. mtdcr(ebccfga, xbcfg);
  33. reg = mfdcr(ebccfgd);
  34. mtdcr(ebccfgd, reg | 0x04000000); /* Set ATC */
  35. mtebc(pb0ap, 0x03017300); /* FLASH/SRAM */
  36. mtebc(pb0cr, 0xfc0da000); /* BAS=0xfc0 64MB r/w 16-bit */
  37. mtebc(pb1ap, 0x00000000);
  38. mtebc(pb1cr, 0x00000000);
  39. mtebc(pb2ap, 0x04814500);
  40. /*CPLD*/ mtebc(pb2cr, 0x80018000); /*BAS=0x800 1MB r/w 8-bit */
  41. mtebc(pb3ap, 0x00000000);
  42. mtebc(pb3cr, 0x00000000);
  43. mtebc(pb4ap, 0x00000000);
  44. mtebc(pb4cr, 0x00000000);
  45. mtebc(pb5ap, 0x00000000);
  46. mtebc(pb5cr, 0x00000000);
  47. /*--------------------------------------------------------------------
  48. * Setup the interrupt controller polarities, triggers, etc.
  49. *-------------------------------------------------------------------*/
  50. mtdcr(uic0sr, 0xffffffff); /* clear all */
  51. mtdcr(uic0er, 0x00000000); /* disable all */
  52. mtdcr(uic0cr, 0x00000009); /* ATI & UIC1 crit are critical */
  53. mtdcr(uic0pr, 0xfffffe13); /* per ref-board manual */
  54. mtdcr(uic0tr, 0x01c00008); /* per ref-board manual */
  55. mtdcr(uic0vr, 0x00000001); /* int31 highest, base=0x000 */
  56. mtdcr(uic0sr, 0xffffffff); /* clear all */
  57. mtdcr(uic1sr, 0xffffffff); /* clear all */
  58. mtdcr(uic1er, 0x00000000); /* disable all */
  59. mtdcr(uic1cr, 0x00000000); /* all non-critical */
  60. mtdcr(uic1pr, 0xffffe0ff); /* per ref-board manual */
  61. mtdcr(uic1tr, 0x00ffc000); /* per ref-board manual */
  62. mtdcr(uic1vr, 0x00000001); /* int31 highest, base=0x000 */
  63. mtdcr(uic1sr, 0xffffffff); /* clear all */
  64. /*--------------------------------------------------------------------
  65. * Setup the GPIO pins
  66. *-------------------------------------------------------------------*/
  67. /*CPLD cs */
  68. /*setup Address lines for flash sizes larger than 16Meg. */
  69. out32(GPIO0_OSRL, in32(GPIO0_OSRL) | 0x40010000);
  70. out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40010000);
  71. out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x40000000);
  72. /*setup emac */
  73. out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xC080);
  74. out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40);
  75. out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x55);
  76. out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0x50004000);
  77. out32(GPIO0_ISR1H, in32(GPIO0_ISR1H) | 0x00440000);
  78. /*UART1 */
  79. out32(GPIO1_TCR, in32(GPIO1_TCR) | 0x02000000);
  80. out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x00080000);
  81. out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x00010000);
  82. /* external interrupts IRQ0...3 */
  83. out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x0f000000);
  84. out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x00005500);
  85. out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00005500);
  86. #if 0 /* test-only */
  87. /*setup USB 2.0 */
  88. out32(GPIO1_TCR, in32(GPIO1_TCR) | 0xc0000000);
  89. out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x50000000);
  90. out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xf);
  91. out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0xaa);
  92. out32(GPIO0_ISR2H, in32(GPIO0_ISR2H) | 0x00000500);
  93. #endif
  94. /*--------------------------------------------------------------------
  95. * Setup other serial configuration
  96. *-------------------------------------------------------------------*/
  97. mfsdr(sdr_pci0, reg);
  98. mtsdr(sdr_pci0, 0x80000000 | reg); /* PCI arbiter enabled */
  99. mtsdr(sdr_pfc0, 0x00003e00); /* Pin function */
  100. mtsdr(sdr_pfc1, 0x00048000); /* Pin function: UART0 has 4 pins */
  101. /*clear tmrclk divisor */
  102. *(unsigned char *)(CFG_BCSR_BASE | 0x04) = 0x00;
  103. /*enable ethernet */
  104. *(unsigned char *)(CFG_BCSR_BASE | 0x08) = 0xf0;
  105. #if 0 /* test-only */
  106. /*enable usb 1.1 fs device and remove usb 2.0 reset */
  107. *(unsigned char *)(CFG_BCSR_BASE | 0x09) = 0x00;
  108. #endif
  109. /*get rid of flash write protect */
  110. *(unsigned char *)(CFG_BCSR_BASE | 0x07) = 0x40;
  111. return 0;
  112. }
  113. int misc_init_r (void)
  114. {
  115. DECLARE_GLOBAL_DATA_PTR;
  116. uint pbcr;
  117. int size_val = 0;
  118. /* Re-do sizing to get full correct info */
  119. mtdcr(ebccfga, pb0cr);
  120. pbcr = mfdcr(ebccfgd);
  121. switch (gd->bd->bi_flashsize) {
  122. case 1 << 20:
  123. size_val = 0;
  124. break;
  125. case 2 << 20:
  126. size_val = 1;
  127. break;
  128. case 4 << 20:
  129. size_val = 2;
  130. break;
  131. case 8 << 20:
  132. size_val = 3;
  133. break;
  134. case 16 << 20:
  135. size_val = 4;
  136. break;
  137. case 32 << 20:
  138. size_val = 5;
  139. break;
  140. case 64 << 20:
  141. size_val = 6;
  142. break;
  143. case 128 << 20:
  144. size_val = 7;
  145. break;
  146. }
  147. pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
  148. mtdcr(ebccfga, pb0cr);
  149. mtdcr(ebccfgd, pbcr);
  150. /* Monitor protection ON by default */
  151. (void)flash_protect(FLAG_PROTECT_SET,
  152. -CFG_MONITOR_LEN,
  153. 0xffffffff,
  154. &flash_info[0]);
  155. return 0;
  156. }
  157. int checkboard(void)
  158. {
  159. sys_info_t sysinfo;
  160. unsigned char *s = getenv("serial#");
  161. get_sys_info(&sysinfo);
  162. printf("Board: Yellowstone - AMCC PPC440GR Evaluation Board");
  163. if (s != NULL) {
  164. puts(", serial# ");
  165. puts(s);
  166. }
  167. putc('\n');
  168. printf("\tVCO: %lu MHz\n", sysinfo.freqVCOMhz / 1000000);
  169. printf("\tCPU: %lu MHz\n", sysinfo.freqProcessor / 1000000);
  170. printf("\tPLB: %lu MHz\n", sysinfo.freqPLB / 1000000);
  171. printf("\tOPB: %lu MHz\n", sysinfo.freqOPB / 1000000);
  172. printf("\tEPB: %lu MHz\n", sysinfo.freqEPB / 1000000);
  173. printf("\tPCI: %lu MHz\n", sysinfo.freqPCI / 1000000);
  174. return (0);
  175. }
  176. /*************************************************************************
  177. * sdram_init -- doesn't use serial presence detect.
  178. *
  179. * Assumes: 256 MB, ECC, non-registered
  180. * PLB @ 133 MHz
  181. *
  182. ************************************************************************/
  183. void sdram_init(void)
  184. {
  185. register uint reg;
  186. /*--------------------------------------------------------------------
  187. * Setup some default
  188. *------------------------------------------------------------------*/
  189. mtsdram(mem_uabba, 0x00000000); /* ubba=0 (default) */
  190. mtsdram(mem_slio, 0x00000000); /* rdre=0 wrre=0 rarw=0 */
  191. mtsdram(mem_devopt, 0x00000000); /* dll=0 ds=0 (normal) */
  192. mtsdram(mem_clktr, 0x40000000); /* ?? */
  193. mtsdram(mem_wddctr, 0x40000000); /* ?? */
  194. /*clear this first, if the DDR is enabled by a debugger
  195. then you can not make changes. */
  196. mtsdram(mem_cfg0, 0x00000000); /* Disable EEC */
  197. /*--------------------------------------------------------------------
  198. * Setup for board-specific specific mem
  199. *------------------------------------------------------------------*/
  200. /*
  201. * Following for CAS Latency = 2.5 @ 133 MHz PLB
  202. */
  203. mtsdram(mem_b0cr, 0x000a4001); /* SDBA=0x000 128MB, Mode 3, enabled */
  204. mtsdram(mem_b1cr, 0x080a4001); /* SDBA=0x080 128MB, Mode 3, enabled */
  205. mtsdram(mem_tr0, 0x410a4012); /* ?? */
  206. mtsdram(mem_tr1, 0x8080080b); /* ?? */
  207. mtsdram(mem_rtr, 0x04080000); /* ?? */
  208. mtsdram(mem_cfg1, 0x00000000); /* Self-refresh exit, disable PM */
  209. mtsdram(mem_cfg0, 0x34000000); /* Disable EEC */
  210. udelay(400); /* Delay 200 usecs (min) */
  211. /*--------------------------------------------------------------------
  212. * Enable the controller, then wait for DCEN to complete
  213. *------------------------------------------------------------------*/
  214. mtsdram(mem_cfg0, 0x84000000); /* Enable */
  215. for (;;) {
  216. mfsdram(mem_mcsts, reg);
  217. if (reg & 0x80000000)
  218. break;
  219. }
  220. }
  221. /*************************************************************************
  222. * long int initdram
  223. *
  224. ************************************************************************/
  225. long int initdram(int board)
  226. {
  227. sdram_init();
  228. return CFG_SDRAM_BANKS * (CFG_KBYTES_SDRAM * 1024); /* return bytes */
  229. }
  230. #if defined(CFG_DRAM_TEST)
  231. int testdram(void)
  232. {
  233. unsigned long *mem = (unsigned long *)0;
  234. const unsigned long kend = (1024 / sizeof(unsigned long));
  235. unsigned long k, n;
  236. mtmsr(0);
  237. for (k = 0; k < CFG_KBYTES_SDRAM;
  238. ++k, mem += (1024 / sizeof(unsigned long))) {
  239. if ((k & 1023) == 0) {
  240. printf("%3d MB\r", k / 1024);
  241. }
  242. memset(mem, 0xaaaaaaaa, 1024);
  243. for (n = 0; n < kend; ++n) {
  244. if (mem[n] != 0xaaaaaaaa) {
  245. printf("SDRAM test fails at: %08x\n",
  246. (uint) & mem[n]);
  247. return 1;
  248. }
  249. }
  250. memset(mem, 0x55555555, 1024);
  251. for (n = 0; n < kend; ++n) {
  252. if (mem[n] != 0x55555555) {
  253. printf("SDRAM test fails at: %08x\n",
  254. (uint) & mem[n]);
  255. return 1;
  256. }
  257. }
  258. }
  259. printf("SDRAM test passes\n");
  260. return 0;
  261. }
  262. #endif
  263. /*************************************************************************
  264. * pci_pre_init
  265. *
  266. * This routine is called just prior to registering the hose and gives
  267. * the board the opportunity to check things. Returning a value of zero
  268. * indicates that things are bad & PCI initialization should be aborted.
  269. *
  270. * Different boards may wish to customize the pci controller structure
  271. * (add regions, override default access routines, etc) or perform
  272. * certain pre-initialization actions.
  273. *
  274. ************************************************************************/
  275. #if defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT)
  276. int pci_pre_init(struct pci_controller *hose)
  277. {
  278. unsigned long strap;
  279. unsigned long addr;
  280. /*--------------------------------------------------------------------------+
  281. * Bamboo is always configured as the host & requires the
  282. * PCI arbiter to be enabled.
  283. *--------------------------------------------------------------------------*/
  284. mfsdr(sdr_sdstp1, strap);
  285. if ((strap & SDR0_SDSTP1_PAE_MASK) == 0) {
  286. printf("PCI: SDR0_STRP1[PAE] not set.\n");
  287. printf("PCI: Configuration aborted.\n");
  288. return 0;
  289. }
  290. /*-------------------------------------------------------------------------+
  291. | Set priority for all PLB3 devices to 0.
  292. | Set PLB3 arbiter to fair mode.
  293. +-------------------------------------------------------------------------*/
  294. mfsdr(sdr_amp1, addr);
  295. mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00);
  296. addr = mfdcr(plb3_acr);
  297. mtdcr(plb3_acr, addr | 0x80000000);
  298. /*-------------------------------------------------------------------------+
  299. | Set priority for all PLB4 devices to 0.
  300. +-------------------------------------------------------------------------*/
  301. mfsdr(sdr_amp0, addr);
  302. mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00);
  303. addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */
  304. mtdcr(plb4_acr, addr);
  305. /*-------------------------------------------------------------------------+
  306. | Set Nebula PLB4 arbiter to fair mode.
  307. +-------------------------------------------------------------------------*/
  308. /* Segment0 */
  309. addr = (mfdcr(plb0_acr) & ~plb0_acr_ppm_mask) | plb0_acr_ppm_fair;
  310. addr = (addr & ~plb0_acr_hbu_mask) | plb0_acr_hbu_enabled;
  311. addr = (addr & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
  312. addr = (addr & ~plb0_acr_wrp_mask) | plb0_acr_wrp_2deep;
  313. mtdcr(plb0_acr, addr);
  314. /* Segment1 */
  315. addr = (mfdcr(plb1_acr) & ~plb1_acr_ppm_mask) | plb1_acr_ppm_fair;
  316. addr = (addr & ~plb1_acr_hbu_mask) | plb1_acr_hbu_enabled;
  317. addr = (addr & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
  318. addr = (addr & ~plb1_acr_wrp_mask) | plb1_acr_wrp_2deep;
  319. mtdcr(plb1_acr, addr);
  320. return 1;
  321. }
  322. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT) */
  323. /*************************************************************************
  324. * pci_target_init
  325. *
  326. * The bootstrap configuration provides default settings for the pci
  327. * inbound map (PIM). But the bootstrap config choices are limited and
  328. * may not be sufficient for a given board.
  329. *
  330. ************************************************************************/
  331. #if defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT)
  332. void pci_target_init(struct pci_controller *hose)
  333. {
  334. /*--------------------------------------------------------------------------+
  335. * Set up Direct MMIO registers
  336. *--------------------------------------------------------------------------*/
  337. /*--------------------------------------------------------------------------+
  338. | PowerPC440 EP PCI Master configuration.
  339. | Map one 1Gig range of PLB/processor addresses to PCI memory space.
  340. | PLB address 0xA0000000-0xDFFFFFFF ==> PCI address 0xA0000000-0xDFFFFFFF
  341. | Use byte reversed out routines to handle endianess.
  342. | Make this region non-prefetchable.
  343. +--------------------------------------------------------------------------*/
  344. out32r(PCIX0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
  345. out32r(PCIX0_PMM0LA, CFG_PCI_MEMBASE); /* PMM0 Local Address */
  346. out32r(PCIX0_PMM0PCILA, CFG_PCI_MEMBASE); /* PMM0 PCI Low Address */
  347. out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
  348. out32r(PCIX0_PMM0MA, 0xE0000001); /* 512M + No prefetching, and enable region */
  349. out32r(PCIX0_PMM1MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
  350. out32r(PCIX0_PMM1LA, CFG_PCI_MEMBASE2); /* PMM0 Local Address */
  351. out32r(PCIX0_PMM1PCILA, CFG_PCI_MEMBASE2); /* PMM0 PCI Low Address */
  352. out32r(PCIX0_PMM1PCIHA, 0x00000000); /* PMM0 PCI High Address */
  353. out32r(PCIX0_PMM1MA, 0xE0000001); /* 512M + No prefetching, and enable region */
  354. out32r(PCIX0_PTM1MS, 0x00000001); /* Memory Size/Attribute */
  355. out32r(PCIX0_PTM1LA, 0); /* Local Addr. Reg */
  356. out32r(PCIX0_PTM2MS, 0); /* Memory Size/Attribute */
  357. out32r(PCIX0_PTM2LA, 0); /* Local Addr. Reg */
  358. /*--------------------------------------------------------------------------+
  359. * Set up Configuration registers
  360. *--------------------------------------------------------------------------*/
  361. /* Program the board's subsystem id/vendor id */
  362. pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID,
  363. CFG_PCI_SUBSYS_VENDORID);
  364. pci_write_config_word(0, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_ID);
  365. /* Configure command register as bus master */
  366. pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER);
  367. /* 240nS PCI clock */
  368. pci_write_config_word(0, PCI_LATENCY_TIMER, 1);
  369. /* No error reporting */
  370. pci_write_config_word(0, PCI_ERREN, 0);
  371. pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101);
  372. }
  373. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT) */
  374. /*************************************************************************
  375. * pci_master_init
  376. *
  377. ************************************************************************/
  378. #if defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT)
  379. void pci_master_init(struct pci_controller *hose)
  380. {
  381. unsigned short temp_short;
  382. /*--------------------------------------------------------------------------+
  383. | Write the PowerPC440 EP PCI Configuration regs.
  384. | Enable PowerPC440 EP to be a master on the PCI bus (PMM).
  385. | Enable PowerPC440 EP to act as a PCI memory target (PTM).
  386. +--------------------------------------------------------------------------*/
  387. pci_read_config_word(0, PCI_COMMAND, &temp_short);
  388. pci_write_config_word(0, PCI_COMMAND,
  389. temp_short | PCI_COMMAND_MASTER |
  390. PCI_COMMAND_MEMORY);
  391. }
  392. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT) */
  393. /*************************************************************************
  394. * is_pci_host
  395. *
  396. * This routine is called to determine if a pci scan should be
  397. * performed. With various hardware environments (especially cPCI and
  398. * PPMC) it's insufficient to depend on the state of the arbiter enable
  399. * bit in the strap register, or generic host/adapter assumptions.
  400. *
  401. * Rather than hard-code a bad assumption in the general 440 code, the
  402. * 440 pci code requires the board to decide at runtime.
  403. *
  404. * Return 0 for adapter mode, non-zero for host (monarch) mode.
  405. *
  406. *
  407. ************************************************************************/
  408. #if defined(CONFIG_PCI)
  409. int is_pci_host(struct pci_controller *hose)
  410. {
  411. /* Bamboo is always configured as host. */
  412. return (1);
  413. }
  414. #endif /* defined(CONFIG_PCI) */
  415. /*************************************************************************
  416. * hw_watchdog_reset
  417. *
  418. * This routine is called to reset (keep alive) the watchdog timer
  419. *
  420. ************************************************************************/
  421. #if defined(CONFIG_HW_WATCHDOG)
  422. void hw_watchdog_reset(void)
  423. {
  424. }
  425. #endif