diff options
-rw-r--r-- | arch/ppc/platforms/pmac_feature.c | 12 | ||||
-rw-r--r-- | drivers/macintosh/via-pmu.c | 9 | ||||
-rw-r--r-- | include/asm-ppc/pmac_feature.h | 3 |
3 files changed, 14 insertions, 10 deletions
diff --git a/arch/ppc/platforms/pmac_feature.c b/arch/ppc/platforms/pmac_feature.c index f0bb3d39b686..867336ad5d36 100644 --- a/arch/ppc/platforms/pmac_feature.c +++ b/arch/ppc/platforms/pmac_feature.c | |||
@@ -1591,8 +1591,10 @@ intrepid_shutdown(struct macio_chip* macio, int sleep_mode) | |||
1591 | } | 1591 | } |
1592 | 1592 | ||
1593 | 1593 | ||
1594 | static void __pmac pmac_tweak_clock_spreading(struct macio_chip* macio, int enable) | 1594 | void __pmac pmac_tweak_clock_spreading(int enable) |
1595 | { | 1595 | { |
1596 | struct macio_chip* macio = &macio_chips[0]; | ||
1597 | |||
1596 | /* Hack for doing clock spreading on some machines PowerBooks and | 1598 | /* Hack for doing clock spreading on some machines PowerBooks and |
1597 | * iBooks. This implements the "platform-do-clockspreading" OF | 1599 | * iBooks. This implements the "platform-do-clockspreading" OF |
1598 | * property as decoded manually on various models. For safety, we also | 1600 | * property as decoded manually on various models. For safety, we also |
@@ -1707,9 +1709,6 @@ core99_sleep(void) | |||
1707 | macio->type != macio_intrepid) | 1709 | macio->type != macio_intrepid) |
1708 | return -ENODEV; | 1710 | return -ENODEV; |
1709 | 1711 | ||
1710 | /* Disable clock spreading */ | ||
1711 | pmac_tweak_clock_spreading(macio, 0); | ||
1712 | |||
1713 | /* We power off the wireless slot in case it was not done | 1712 | /* We power off the wireless slot in case it was not done |
1714 | * by the driver. We don't power it on automatically however | 1713 | * by the driver. We don't power it on automatically however |
1715 | */ | 1714 | */ |
@@ -1852,9 +1851,6 @@ core99_wake_up(void) | |||
1852 | UN_OUT(UNI_N_CLOCK_CNTL, save_unin_clock_ctl); | 1851 | UN_OUT(UNI_N_CLOCK_CNTL, save_unin_clock_ctl); |
1853 | udelay(100); | 1852 | udelay(100); |
1854 | 1853 | ||
1855 | /* Enable clock spreading */ | ||
1856 | pmac_tweak_clock_spreading(macio, 1); | ||
1857 | |||
1858 | return 0; | 1854 | return 0; |
1859 | } | 1855 | } |
1860 | 1856 | ||
@@ -2822,7 +2818,7 @@ set_initial_features(void) | |||
2822 | * clock spreading now. This should be a platform function but we | 2818 | * clock spreading now. This should be a platform function but we |
2823 | * don't do these at the moment | 2819 | * don't do these at the moment |
2824 | */ | 2820 | */ |
2825 | pmac_tweak_clock_spreading(&macio_chips[0], 1); | 2821 | pmac_tweak_clock_spreading(1); |
2826 | 2822 | ||
2827 | #endif /* CONFIG_POWER4 */ | 2823 | #endif /* CONFIG_POWER4 */ |
2828 | 2824 | ||
diff --git a/drivers/macintosh/via-pmu.c b/drivers/macintosh/via-pmu.c index fdea1a3a631d..e654aa5eecd4 100644 --- a/drivers/macintosh/via-pmu.c +++ b/drivers/macintosh/via-pmu.c | |||
@@ -2351,6 +2351,10 @@ pmac_suspend_devices(void) | |||
2351 | return -EBUSY; | 2351 | return -EBUSY; |
2352 | } | 2352 | } |
2353 | 2353 | ||
2354 | /* Disable clock spreading on some machines */ | ||
2355 | pmac_tweak_clock_spreading(0); | ||
2356 | |||
2357 | /* Stop preemption */ | ||
2354 | preempt_disable(); | 2358 | preempt_disable(); |
2355 | 2359 | ||
2356 | /* Make sure the decrementer won't interrupt us */ | 2360 | /* Make sure the decrementer won't interrupt us */ |
@@ -2417,11 +2421,12 @@ pmac_wakeup_devices(void) | |||
2417 | 2421 | ||
2418 | /* Re-enable local CPU interrupts */ | 2422 | /* Re-enable local CPU interrupts */ |
2419 | local_irq_enable(); | 2423 | local_irq_enable(); |
2420 | |||
2421 | mdelay(100); | 2424 | mdelay(100); |
2422 | |||
2423 | preempt_enable(); | 2425 | preempt_enable(); |
2424 | 2426 | ||
2427 | /* Re-enable clock spreading on some machines */ | ||
2428 | pmac_tweak_clock_spreading(1); | ||
2429 | |||
2425 | /* Resume devices */ | 2430 | /* Resume devices */ |
2426 | device_resume(); | 2431 | device_resume(); |
2427 | 2432 | ||
diff --git a/include/asm-ppc/pmac_feature.h b/include/asm-ppc/pmac_feature.h index 639b690ce6f7..8beb162873f4 100644 --- a/include/asm-ppc/pmac_feature.h +++ b/include/asm-ppc/pmac_feature.h | |||
@@ -316,6 +316,9 @@ extern void pmac_register_agp_pm(struct pci_dev *bridge, | |||
316 | extern void pmac_suspend_agp_for_card(struct pci_dev *dev); | 316 | extern void pmac_suspend_agp_for_card(struct pci_dev *dev); |
317 | extern void pmac_resume_agp_for_card(struct pci_dev *dev); | 317 | extern void pmac_resume_agp_for_card(struct pci_dev *dev); |
318 | 318 | ||
319 | /* Used by the via-pmu driver for suspend/resume | ||
320 | */ | ||
321 | extern void pmac_tweak_clock_spreading(int enable); | ||
319 | 322 | ||
320 | /* | 323 | /* |
321 | * The part below is for use by macio_asic.c only, do not rely | 324 | * The part below is for use by macio_asic.c only, do not rely |