]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
[PATCH] ppc32: Fix might_sleep() warning with clock spreading
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 2 May 2005 06:12:00 +0000 (16:12 +1000)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 2 May 2005 15:15:22 +0000 (08:15 -0700)
The clock spreading disable/enable code was called to late/early during
the suspend/resume code on some laptops and would trigger a
might_sleep() warning due to the down() call in the low level i2c code.

This fixes it by calling those functions earlier/later when interrupts
are still enabled.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
arch/ppc/platforms/pmac_feature.c
drivers/macintosh/via-pmu.c
include/asm-ppc/pmac_feature.h

index f0bb3d39b6866de1237e583d74824d1c2425beec..867336ad5d36b284b12d0d682f9fd28b7867a3ac 100644 (file)
@@ -1591,8 +1591,10 @@ intrepid_shutdown(struct macio_chip* macio, int sleep_mode)
 }
 
 
-static void __pmac pmac_tweak_clock_spreading(struct macio_chip* macio, int enable)
+void __pmac pmac_tweak_clock_spreading(int enable)
 {
+       struct macio_chip* macio = &macio_chips[0];
+
        /* Hack for doing clock spreading on some machines PowerBooks and
         * iBooks. This implements the "platform-do-clockspreading" OF
         * property as decoded manually on various models. For safety, we also
@@ -1707,9 +1709,6 @@ core99_sleep(void)
            macio->type != macio_intrepid)
                return -ENODEV;
 
-       /* Disable clock spreading */
-       pmac_tweak_clock_spreading(macio, 0);
-
        /* We power off the wireless slot in case it was not done
         * by the driver. We don't power it on automatically however
         */
@@ -1852,9 +1851,6 @@ core99_wake_up(void)
        UN_OUT(UNI_N_CLOCK_CNTL, save_unin_clock_ctl);
        udelay(100);
 
-       /* Enable clock spreading */
-       pmac_tweak_clock_spreading(macio, 1);
-
        return 0;
 }
 
@@ -2822,7 +2818,7 @@ set_initial_features(void)
         * clock spreading now. This should be a platform function but we
         * don't do these at the moment
         */
-       pmac_tweak_clock_spreading(&macio_chips[0], 1);
+       pmac_tweak_clock_spreading(1);
 
 #endif /* CONFIG_POWER4 */
 
index fdea1a3a631dc122b1e220d2b59f5c120174aec5..e654aa5eecd4946aa822b36659a5be8df8ced43f 100644 (file)
@@ -2351,6 +2351,10 @@ pmac_suspend_devices(void)
                return -EBUSY;
        }
 
+       /* Disable clock spreading on some machines */
+       pmac_tweak_clock_spreading(0);
+
+       /* Stop preemption */
        preempt_disable();
 
        /* Make sure the decrementer won't interrupt us */
@@ -2417,11 +2421,12 @@ pmac_wakeup_devices(void)
 
        /* Re-enable local CPU interrupts */
        local_irq_enable();
-
        mdelay(100);
-
        preempt_enable();
 
+       /* Re-enable clock spreading on some machines */
+       pmac_tweak_clock_spreading(1);
+
        /* Resume devices */
        device_resume();
 
index 639b690ce6f7ec88c6a1c177344a5b48d58f4965..8beb162873f4d07fc331b0319baf649f5c685a36 100644 (file)
@@ -316,6 +316,9 @@ extern void pmac_register_agp_pm(struct pci_dev *bridge,
 extern void pmac_suspend_agp_for_card(struct pci_dev *dev);
 extern void pmac_resume_agp_for_card(struct pci_dev *dev);
 
+/* Used by the via-pmu driver for suspend/resume
+ */
+extern void pmac_tweak_clock_spreading(int enable);
 
 /*
  * The part below is for use by macio_asic.c only, do not rely