summaryrefslogtreecommitdiffstats
path: root/cpu
diff options
context:
space:
mode:
authorwdenk <wdenk>2003-06-18 20:22:24 +0000
committerwdenk <wdenk>2003-06-18 20:22:24 +0000
commit15ef8a5d17181ea376fac94579dce0af1cfcdeb7 (patch)
tree2c1b3f24078b0f68b0748b0d493860abe8d432f1 /cpu
parent2abbe0754759f94c79125a2534fbc4be74f416bc (diff)
downloadtalos-obmc-uboot-15ef8a5d17181ea376fac94579dce0af1cfcdeb7.tar.gz
talos-obmc-uboot-15ef8a5d17181ea376fac94579dce0af1cfcdeb7.zip
Add support for DS12887 RTC; add RTC support for ATC board
Diffstat (limited to 'cpu')
-rw-r--r--cpu/mpc8260/pci.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/cpu/mpc8260/pci.c b/cpu/mpc8260/pci.c
index 013d48a6e8..ac77c16832 100644
--- a/cpu/mpc8260/pci.c
+++ b/cpu/mpc8260/pci.c
@@ -252,7 +252,13 @@ void pci_mpc8250_init(struct pci_controller *hose)
* Setting required to enable IRQ1-IRQ7 (SIUMCR [DPPC]),
* and local bus for PCI (SIUMCR [LBPC]).
*/
- immap->im_siu_conf.sc_siumcr = 0x00640000;
+ immap->im_siu_conf.sc_siumcr = (immap->im_siu_conf.sc_siumcr &
+ ~SIUMCR_LBPC11 &
+ ~SIUMCR_CS10PC11 &
+ ~SIUMCR_LBPC11) |
+ SIUMCR_LBPC01 |
+ SIUMCR_CS10PC01 |
+ SIUMCR_LBPC01;
#endif
/* Make PCI lowest priority */
OpenPOWER on IntegriCloud