yosemite.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545
  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. DECLARE_GLOBAL_DATA_PTR;
  26. extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
  27. int board_early_init_f(void)
  28. {
  29. register uint reg;
  30. /*--------------------------------------------------------------------
  31. * Setup the external bus controller/chip selects
  32. *-------------------------------------------------------------------*/
  33. mtdcr(ebccfga, xbcfg);
  34. reg = mfdcr(ebccfgd);
  35. mtdcr(ebccfgd, reg | 0x04000000); /* Set ATC */
  36. /*--------------------------------------------------------------------
  37. * Setup the GPIO pins
  38. *-------------------------------------------------------------------*/
  39. /*CPLD cs */
  40. /*setup Address lines for flash size 64Meg. */
  41. out32(GPIO0_OSRL, in32(GPIO0_OSRL) | 0x50010000);
  42. out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x50010000);
  43. out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x50000000);
  44. /*setup emac */
  45. out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xC080);
  46. out32(GPIO0_TSRL, in32(GPIO0_TSRL) | 0x40);
  47. out32(GPIO0_ISR1L, in32(GPIO0_ISR1L) | 0x55);
  48. out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0x50004000);
  49. out32(GPIO0_ISR1H, in32(GPIO0_ISR1H) | 0x00440000);
  50. /*UART1 */
  51. out32(GPIO1_TCR, in32(GPIO1_TCR) | 0x02000000);
  52. out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x00080000);
  53. out32(GPIO1_ISR2L, in32(GPIO1_ISR2L) | 0x00010000);
  54. /* external interrupts IRQ0...3 */
  55. out32(GPIO1_TCR, in32(GPIO1_TCR) & ~0x00f00000);
  56. out32(GPIO1_TSRL, in32(GPIO1_TSRL) & ~0x0000ff00);
  57. out32(GPIO1_ISR1L, in32(GPIO1_ISR1L) | 0x00005500);
  58. /*setup USB 2.0 */
  59. out32(GPIO1_TCR, in32(GPIO1_TCR) | 0xc0000000);
  60. out32(GPIO1_OSRL, in32(GPIO1_OSRL) | 0x50000000);
  61. out32(GPIO0_TCR, in32(GPIO0_TCR) | 0xf);
  62. out32(GPIO0_OSRH, in32(GPIO0_OSRH) | 0xaa);
  63. out32(GPIO0_ISR2H, in32(GPIO0_ISR2H) | 0x00000500);
  64. /*--------------------------------------------------------------------
  65. * Setup the interrupt controller polarities, triggers, etc.
  66. *-------------------------------------------------------------------*/
  67. mtdcr(uic0sr, 0xffffffff); /* clear all */
  68. mtdcr(uic0er, 0x00000000); /* disable all */
  69. mtdcr(uic0cr, 0x00000009); /* ATI & UIC1 crit are critical */
  70. mtdcr(uic0pr, 0xfffffe13); /* per ref-board manual */
  71. mtdcr(uic0tr, 0x01c00008); /* per ref-board manual */
  72. mtdcr(uic0vr, 0x00000001); /* int31 highest, base=0x000 */
  73. mtdcr(uic0sr, 0xffffffff); /* clear all */
  74. mtdcr(uic1sr, 0xffffffff); /* clear all */
  75. mtdcr(uic1er, 0x00000000); /* disable all */
  76. mtdcr(uic1cr, 0x00000000); /* all non-critical */
  77. mtdcr(uic1pr, 0xffffe0ff); /* per ref-board manual */
  78. mtdcr(uic1tr, 0x00ffc000); /* per ref-board manual */
  79. mtdcr(uic1vr, 0x00000001); /* int31 highest, base=0x000 */
  80. mtdcr(uic1sr, 0xffffffff); /* clear all */
  81. /*--------------------------------------------------------------------
  82. * Setup other serial configuration
  83. *-------------------------------------------------------------------*/
  84. mfsdr(sdr_pci0, reg);
  85. mtsdr(sdr_pci0, 0x80000000 | reg); /* PCI arbiter enabled */
  86. mtsdr(sdr_pfc0, 0x00003e00); /* Pin function */
  87. mtsdr(sdr_pfc1, 0x00048000); /* Pin function: UART0 has 4 pins */
  88. /*clear tmrclk divisor */
  89. *(unsigned char *)(CFG_BCSR_BASE | 0x04) = 0x00;
  90. /*enable ethernet */
  91. *(unsigned char *)(CFG_BCSR_BASE | 0x08) = 0xf0;
  92. /*enable usb 1.1 fs device and remove usb 2.0 reset */
  93. *(unsigned char *)(CFG_BCSR_BASE | 0x09) = 0x00;
  94. /*get rid of flash write protect */
  95. *(unsigned char *)(CFG_BCSR_BASE | 0x07) = 0x00;
  96. return 0;
  97. }
  98. int misc_init_r (void)
  99. {
  100. uint pbcr;
  101. int size_val = 0;
  102. /* Re-do sizing to get full correct info */
  103. mtdcr(ebccfga, pb0cr);
  104. pbcr = mfdcr(ebccfgd);
  105. switch (gd->bd->bi_flashsize) {
  106. case 1 << 20:
  107. size_val = 0;
  108. break;
  109. case 2 << 20:
  110. size_val = 1;
  111. break;
  112. case 4 << 20:
  113. size_val = 2;
  114. break;
  115. case 8 << 20:
  116. size_val = 3;
  117. break;
  118. case 16 << 20:
  119. size_val = 4;
  120. break;
  121. case 32 << 20:
  122. size_val = 5;
  123. break;
  124. case 64 << 20:
  125. size_val = 6;
  126. break;
  127. case 128 << 20:
  128. size_val = 7;
  129. break;
  130. }
  131. pbcr = (pbcr & 0x0001ffff) | gd->bd->bi_flashstart | (size_val << 17);
  132. mtdcr(ebccfga, pb0cr);
  133. mtdcr(ebccfgd, pbcr);
  134. /* adjust flash start and offset */
  135. gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize;
  136. gd->bd->bi_flashoffset = 0;
  137. /* Monitor protection ON by default */
  138. (void)flash_protect(FLAG_PROTECT_SET,
  139. -CFG_MONITOR_LEN,
  140. 0xffffffff,
  141. &flash_info[0]);
  142. return 0;
  143. }
  144. int checkboard(void)
  145. {
  146. char *s = getenv("serial#");
  147. u8 rev;
  148. u8 val;
  149. printf("Board: Yosemite - AMCC PPC440EP Evaluation Board");
  150. rev = *(u8 *)(CFG_CPLD + 0);
  151. val = *(u8 *)(CFG_CPLD + 5) & 0x01;
  152. printf(", Rev. %X, PCI=%d MHz", rev, val ? 66 : 33);
  153. if (s != NULL) {
  154. puts(", serial# ");
  155. puts(s);
  156. }
  157. putc('\n');
  158. return (0);
  159. }
  160. /*************************************************************************
  161. * sdram_init -- doesn't use serial presence detect.
  162. *
  163. * Assumes: 256 MB, ECC, non-registered
  164. * PLB @ 133 MHz
  165. *
  166. ************************************************************************/
  167. #define NUM_TRIES 64
  168. #define NUM_READS 10
  169. void sdram_tr1_set(int ram_address, int* tr1_value)
  170. {
  171. int i;
  172. int j, k;
  173. volatile unsigned int* ram_pointer = (unsigned int*)ram_address;
  174. int first_good = -1, last_bad = 0x1ff;
  175. unsigned long test[NUM_TRIES] = {
  176. 0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF,
  177. 0x00000000, 0x00000000, 0xFFFFFFFF, 0xFFFFFFFF,
  178. 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000,
  179. 0xFFFFFFFF, 0xFFFFFFFF, 0x00000000, 0x00000000,
  180. 0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555,
  181. 0xAAAAAAAA, 0xAAAAAAAA, 0x55555555, 0x55555555,
  182. 0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA,
  183. 0x55555555, 0x55555555, 0xAAAAAAAA, 0xAAAAAAAA,
  184. 0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A,
  185. 0xA5A5A5A5, 0xA5A5A5A5, 0x5A5A5A5A, 0x5A5A5A5A,
  186. 0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5,
  187. 0x5A5A5A5A, 0x5A5A5A5A, 0xA5A5A5A5, 0xA5A5A5A5,
  188. 0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA,
  189. 0xAA55AA55, 0xAA55AA55, 0x55AA55AA, 0x55AA55AA,
  190. 0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55,
  191. 0x55AA55AA, 0x55AA55AA, 0xAA55AA55, 0xAA55AA55 };
  192. /* go through all possible SDRAM0_TR1[RDCT] values */
  193. for (i=0; i<=0x1ff; i++) {
  194. /* set the current value for TR1 */
  195. mtsdram(mem_tr1, (0x80800800 | i));
  196. /* write values */
  197. for (j=0; j<NUM_TRIES; j++) {
  198. ram_pointer[j] = test[j];
  199. /* clear any cache at ram location */
  200. __asm__("dcbf 0,%0": :"r" (&ram_pointer[j]));
  201. }
  202. /* read values back */
  203. for (j=0; j<NUM_TRIES; j++) {
  204. for (k=0; k<NUM_READS; k++) {
  205. /* clear any cache at ram location */
  206. __asm__("dcbf 0,%0": :"r" (&ram_pointer[j]));
  207. if (ram_pointer[j] != test[j])
  208. break;
  209. }
  210. /* read error */
  211. if (k != NUM_READS) {
  212. break;
  213. }
  214. }
  215. /* we have a SDRAM0_TR1[RDCT] that is part of the window */
  216. if (j == NUM_TRIES) {
  217. if (first_good == -1)
  218. first_good = i; /* found beginning of window */
  219. } else { /* bad read */
  220. /* if we have not had a good read then don't care */
  221. if(first_good != -1) {
  222. /* first failure after a good read */
  223. last_bad = i-1;
  224. break;
  225. }
  226. }
  227. }
  228. /* return the current value for TR1 */
  229. *tr1_value = (first_good + last_bad) / 2;
  230. }
  231. void sdram_init(void)
  232. {
  233. register uint reg;
  234. int tr1_bank1, tr1_bank2;
  235. /*--------------------------------------------------------------------
  236. * Setup some default
  237. *------------------------------------------------------------------*/
  238. mtsdram(mem_uabba, 0x00000000); /* ubba=0 (default) */
  239. mtsdram(mem_slio, 0x00000000); /* rdre=0 wrre=0 rarw=0 */
  240. mtsdram(mem_devopt, 0x00000000); /* dll=0 ds=0 (normal) */
  241. mtsdram(mem_clktr, 0x40000000); /* ?? */
  242. mtsdram(mem_wddctr, 0x40000000); /* ?? */
  243. /*clear this first, if the DDR is enabled by a debugger
  244. then you can not make changes. */
  245. mtsdram(mem_cfg0, 0x00000000); /* Disable EEC */
  246. /*--------------------------------------------------------------------
  247. * Setup for board-specific specific mem
  248. *------------------------------------------------------------------*/
  249. /*
  250. * Following for CAS Latency = 2.5 @ 133 MHz PLB
  251. */
  252. mtsdram(mem_b0cr, 0x000a4001); /* SDBA=0x000 128MB, Mode 3, enabled */
  253. mtsdram(mem_b1cr, 0x080a4001); /* SDBA=0x080 128MB, Mode 3, enabled */
  254. mtsdram(mem_tr0, 0x410a4012); /* ?? */
  255. mtsdram(mem_rtr, 0x04080000); /* ?? */
  256. mtsdram(mem_cfg1, 0x00000000); /* Self-refresh exit, disable PM */
  257. mtsdram(mem_cfg0, 0x30000000); /* Disable EEC */
  258. udelay(400); /* Delay 200 usecs (min) */
  259. /*--------------------------------------------------------------------
  260. * Enable the controller, then wait for DCEN to complete
  261. *------------------------------------------------------------------*/
  262. mtsdram(mem_cfg0, 0x80000000); /* Enable */
  263. for (;;) {
  264. mfsdram(mem_mcsts, reg);
  265. if (reg & 0x80000000)
  266. break;
  267. }
  268. sdram_tr1_set(0x00000000, &tr1_bank1);
  269. sdram_tr1_set(0x08000000, &tr1_bank2);
  270. mtsdram(mem_tr1, (((tr1_bank1+tr1_bank2)/2) | 0x80800800) );
  271. }
  272. /*************************************************************************
  273. * long int initdram
  274. *
  275. ************************************************************************/
  276. long int initdram(int board)
  277. {
  278. sdram_init();
  279. return CFG_SDRAM_BANKS * (CFG_KBYTES_SDRAM * 1024); /* return bytes */
  280. }
  281. #if defined(CFG_DRAM_TEST)
  282. int testdram(void)
  283. {
  284. unsigned long *mem = (unsigned long *)0;
  285. const unsigned long kend = (1024 / sizeof(unsigned long));
  286. unsigned long k, n;
  287. mtmsr(0);
  288. for (k = 0; k < CFG_KBYTES_SDRAM;
  289. ++k, mem += (1024 / sizeof(unsigned long))) {
  290. if ((k & 1023) == 0) {
  291. printf("%3d MB\r", k / 1024);
  292. }
  293. memset(mem, 0xaaaaaaaa, 1024);
  294. for (n = 0; n < kend; ++n) {
  295. if (mem[n] != 0xaaaaaaaa) {
  296. printf("SDRAM test fails at: %08x\n",
  297. (uint) & mem[n]);
  298. return 1;
  299. }
  300. }
  301. memset(mem, 0x55555555, 1024);
  302. for (n = 0; n < kend; ++n) {
  303. if (mem[n] != 0x55555555) {
  304. printf("SDRAM test fails at: %08x\n",
  305. (uint) & mem[n]);
  306. return 1;
  307. }
  308. }
  309. }
  310. printf("SDRAM test passes\n");
  311. return 0;
  312. }
  313. #endif
  314. /*************************************************************************
  315. * pci_pre_init
  316. *
  317. * This routine is called just prior to registering the hose and gives
  318. * the board the opportunity to check things. Returning a value of zero
  319. * indicates that things are bad & PCI initialization should be aborted.
  320. *
  321. * Different boards may wish to customize the pci controller structure
  322. * (add regions, override default access routines, etc) or perform
  323. * certain pre-initialization actions.
  324. *
  325. ************************************************************************/
  326. #if defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT)
  327. int pci_pre_init(struct pci_controller *hose)
  328. {
  329. unsigned long addr;
  330. /*-------------------------------------------------------------------------+
  331. | Set priority for all PLB3 devices to 0.
  332. | Set PLB3 arbiter to fair mode.
  333. +-------------------------------------------------------------------------*/
  334. mfsdr(sdr_amp1, addr);
  335. mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00);
  336. addr = mfdcr(plb3_acr);
  337. mtdcr(plb3_acr, addr | 0x80000000);
  338. /*-------------------------------------------------------------------------+
  339. | Set priority for all PLB4 devices to 0.
  340. +-------------------------------------------------------------------------*/
  341. mfsdr(sdr_amp0, addr);
  342. mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00);
  343. addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */
  344. mtdcr(plb4_acr, addr);
  345. /*-------------------------------------------------------------------------+
  346. | Set Nebula PLB4 arbiter to fair mode.
  347. +-------------------------------------------------------------------------*/
  348. /* Segment0 */
  349. addr = (mfdcr(plb0_acr) & ~plb0_acr_ppm_mask) | plb0_acr_ppm_fair;
  350. addr = (addr & ~plb0_acr_hbu_mask) | plb0_acr_hbu_enabled;
  351. addr = (addr & ~plb0_acr_rdp_mask) | plb0_acr_rdp_4deep;
  352. addr = (addr & ~plb0_acr_wrp_mask) | plb0_acr_wrp_2deep;
  353. mtdcr(plb0_acr, addr);
  354. /* Segment1 */
  355. addr = (mfdcr(plb1_acr) & ~plb1_acr_ppm_mask) | plb1_acr_ppm_fair;
  356. addr = (addr & ~plb1_acr_hbu_mask) | plb1_acr_hbu_enabled;
  357. addr = (addr & ~plb1_acr_rdp_mask) | plb1_acr_rdp_4deep;
  358. addr = (addr & ~plb1_acr_wrp_mask) | plb1_acr_wrp_2deep;
  359. mtdcr(plb1_acr, addr);
  360. return 1;
  361. }
  362. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_PRE_INIT) */
  363. /*************************************************************************
  364. * pci_target_init
  365. *
  366. * The bootstrap configuration provides default settings for the pci
  367. * inbound map (PIM). But the bootstrap config choices are limited and
  368. * may not be sufficient for a given board.
  369. *
  370. ************************************************************************/
  371. #if defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT)
  372. void pci_target_init(struct pci_controller *hose)
  373. {
  374. /*--------------------------------------------------------------------------+
  375. * Set up Direct MMIO registers
  376. *--------------------------------------------------------------------------*/
  377. /*--------------------------------------------------------------------------+
  378. | PowerPC440 EP PCI Master configuration.
  379. | Map one 1Gig range of PLB/processor addresses to PCI memory space.
  380. | PLB address 0xA0000000-0xDFFFFFFF ==> PCI address 0xA0000000-0xDFFFFFFF
  381. | Use byte reversed out routines to handle endianess.
  382. | Make this region non-prefetchable.
  383. +--------------------------------------------------------------------------*/
  384. out32r(PCIX0_PMM0MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
  385. out32r(PCIX0_PMM0LA, CFG_PCI_MEMBASE); /* PMM0 Local Address */
  386. out32r(PCIX0_PMM0PCILA, CFG_PCI_MEMBASE); /* PMM0 PCI Low Address */
  387. out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */
  388. out32r(PCIX0_PMM0MA, 0xE0000001); /* 512M + No prefetching, and enable region */
  389. out32r(PCIX0_PMM1MA, 0x00000000); /* PMM0 Mask/Attribute - disabled b4 setting */
  390. out32r(PCIX0_PMM1LA, CFG_PCI_MEMBASE2); /* PMM0 Local Address */
  391. out32r(PCIX0_PMM1PCILA, CFG_PCI_MEMBASE2); /* PMM0 PCI Low Address */
  392. out32r(PCIX0_PMM1PCIHA, 0x00000000); /* PMM0 PCI High Address */
  393. out32r(PCIX0_PMM1MA, 0xE0000001); /* 512M + No prefetching, and enable region */
  394. out32r(PCIX0_PTM1MS, 0x00000001); /* Memory Size/Attribute */
  395. out32r(PCIX0_PTM1LA, 0); /* Local Addr. Reg */
  396. out32r(PCIX0_PTM2MS, 0); /* Memory Size/Attribute */
  397. out32r(PCIX0_PTM2LA, 0); /* Local Addr. Reg */
  398. /*--------------------------------------------------------------------------+
  399. * Set up Configuration registers
  400. *--------------------------------------------------------------------------*/
  401. /* Program the board's subsystem id/vendor id */
  402. pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID,
  403. CFG_PCI_SUBSYS_VENDORID);
  404. pci_write_config_word(0, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_ID);
  405. /* Configure command register as bus master */
  406. pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER);
  407. /* 240nS PCI clock */
  408. pci_write_config_word(0, PCI_LATENCY_TIMER, 1);
  409. /* No error reporting */
  410. pci_write_config_word(0, PCI_ERREN, 0);
  411. pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101);
  412. }
  413. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_TARGET_INIT) */
  414. /*************************************************************************
  415. * pci_master_init
  416. *
  417. ************************************************************************/
  418. #if defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT)
  419. void pci_master_init(struct pci_controller *hose)
  420. {
  421. unsigned short temp_short;
  422. /*--------------------------------------------------------------------------+
  423. | Write the PowerPC440 EP PCI Configuration regs.
  424. | Enable PowerPC440 EP to be a master on the PCI bus (PMM).
  425. | Enable PowerPC440 EP to act as a PCI memory target (PTM).
  426. +--------------------------------------------------------------------------*/
  427. pci_read_config_word(0, PCI_COMMAND, &temp_short);
  428. pci_write_config_word(0, PCI_COMMAND,
  429. temp_short | PCI_COMMAND_MASTER |
  430. PCI_COMMAND_MEMORY);
  431. }
  432. #endif /* defined(CONFIG_PCI) && defined(CFG_PCI_MASTER_INIT) */
  433. /*************************************************************************
  434. * is_pci_host
  435. *
  436. * This routine is called to determine if a pci scan should be
  437. * performed. With various hardware environments (especially cPCI and
  438. * PPMC) it's insufficient to depend on the state of the arbiter enable
  439. * bit in the strap register, or generic host/adapter assumptions.
  440. *
  441. * Rather than hard-code a bad assumption in the general 440 code, the
  442. * 440 pci code requires the board to decide at runtime.
  443. *
  444. * Return 0 for adapter mode, non-zero for host (monarch) mode.
  445. *
  446. *
  447. ************************************************************************/
  448. #if defined(CONFIG_PCI)
  449. int is_pci_host(struct pci_controller *hose)
  450. {
  451. /* Bamboo is always configured as host. */
  452. return (1);
  453. }
  454. #endif /* defined(CONFIG_PCI) */
  455. /*************************************************************************
  456. * hw_watchdog_reset
  457. *
  458. * This routine is called to reset (keep alive) the watchdog timer
  459. *
  460. ************************************************************************/
  461. #if defined(CONFIG_HW_WATCHDOG)
  462. void hw_watchdog_reset(void)
  463. {
  464. }
  465. #endif
  466. void board_reset(void)
  467. {
  468. /* give reset to BCSR */
  469. *(unsigned char *)(CFG_BCSR_BASE | 0x06) = 0x09;
  470. }