diff options
author | wdenk <wdenk> | 2003-06-18 20:22:24 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-18 20:22:24 +0000 |
commit | 15ef8a5d17181ea376fac94579dce0af1cfcdeb7 (patch) | |
tree | 2c1b3f24078b0f68b0748b0d493860abe8d432f1 /cpu | |
parent | 2abbe0754759f94c79125a2534fbc4be74f416bc (diff) |
Add support for DS12887 RTC; add RTC support for ATC board
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc8260/pci.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cpu/mpc8260/pci.c b/cpu/mpc8260/pci.c index 013d48a6e8d..ac77c168323 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 */ |