summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/sysdev/Makefile
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2008-04-28 17:38:13 +0200
committerPaul Mackerras <paulus@samba.org>2008-05-16 15:22:28 +0200
commit0b2cca804ee40495bc92449c3e22f3c3a3f2977a (patch)
tree201f219b4063b0a976bd7ea8e45cff0faa818602 /arch/powerpc/sysdev/Makefile
parent[POWERPC] Defer processing of interrupts when the CPU wakes from sleep mode (diff)
downloadlinux-0b2cca804ee40495bc92449c3e22f3c3a3f2977a.tar.xz
linux-0b2cca804ee40495bc92449c3e22f3c3a3f2977a.zip
[POWERPC] Add 6xx-style HID0_SLEEP support.
This adds a function to put a 6xx/7xx/7xxx/83xx family CPU into sleep mode, and return after an interrupt has occurred. It expects to be called with interrupts disabled, and returns with interrupts disabled. Interrupts are enabled while the processor is asleep, but the interrupt that wakes the processor is not handled; it is still pending when this function returns. Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/sysdev/Makefile')
-rw-r--r--arch/powerpc/sysdev/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile
index 6d386d0071a0..2cc50520a698 100644
--- a/arch/powerpc/sysdev/Makefile
+++ b/arch/powerpc/sysdev/Makefile
@@ -44,3 +44,7 @@ obj-$(CONFIG_PPC_DCR) += dcr.o
obj-$(CONFIG_8xx) += mpc8xx_pic.o cpm1.o
obj-$(CONFIG_UCODE_PATCH) += micropatch.o
endif
+
+ifeq ($(CONFIG_SUSPEND),y)
+obj-$(CONFIG_6xx) += 6xx-suspend.o
+endif