aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-04-30 18:09:51 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-04-30 19:40:40 -0400
commitfe0c935a6cbf25d72a27c7a345df8a2151de0b74 (patch)
tree841a847412694ee586b0ca7e1e2ce7c45700d9b1 /arch/arm
parent1173a729fc3ce2fa0d698bd39be8ff7bf6c70bf1 (diff)
rework pm_ops pm_disk_mode, kill misuse
This patch series cleans up some misconceptions about pm_ops. Some users of the pm_ops structure attempt to use it to stop the user from entering suspend to disk, this, however, is not possible since the user can always use "shutdown" in /sys/power/disk and then the pm_ops are never invoked. Also, platforms that don't support suspend to disk simply should not allow configuring SOFTWARE_SUSPEND (read the help text on it, it only selects suspend to disk and nothing else, all the other stuff depends on PM). The pm_ops structure is actually intended to provide a way to enter platform-defined sleep states (currently supported states are "standby" and "mem" (suspend to ram)) and additionally (if SOFTWARE_SUSPEND is configured) allows a platform to support a platform specific way to enter low-power mode once everything has been saved to disk. This is currently only used by ACPI (S4). This patch: The pm_ops.pm_disk_mode is used in totally bogus ways since nobody really seems to understand what it actually does. This patch clarifies the pm_disk_mode description. It also removes all the arm and sh users that think they can veto suspend to disk via pm_ops; not so since the user can always do echo shutdown > /sys/power/disk, they need to find a better way involving Kconfig or such. ACPI is the only user left with a non-zero pm_disk_mode. The patch also sets the default mode to shutdown again, but when a new pm_ops is registered its pm_disk_mode is selected as default, that way the default stays for ACPI where it is apparently required. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Cc: David Brownell <david-b@pacbell.net> Acked-by: Pavel Machek <pavel@ucw.cz> Cc: <linux-pm@lists.linux-foundation.org> Cc: Len Brown <lenb@kernel.org> Acked-by: Russell King <rmk@arm.linux.org.uk> Cc: Greg KH <greg@kroah.com> Cc: "Rafael J. Wysocki" <rjw@sisk.pl> Acked-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/common/sharpsl_pm.c1
-rw-r--r--arch/arm/mach-at91/pm.c1
-rw-r--r--arch/arm/mach-omap1/pm.c1
-rw-r--r--arch/arm/mach-omap2/pm.c1
-rw-r--r--arch/arm/mach-pxa/pm.c4
-rw-r--r--arch/arm/mach-sa1100/pm.c7
-rw-r--r--arch/arm/plat-s3c24xx/pm.c9
7 files changed, 0 insertions, 24 deletions
diff --git a/arch/arm/common/sharpsl_pm.c b/arch/arm/common/sharpsl_pm.c
index a9bc5b52218f..4cb895d4ae5b 100644
--- a/arch/arm/common/sharpsl_pm.c
+++ b/arch/arm/common/sharpsl_pm.c
@@ -766,7 +766,6 @@ static void sharpsl_apm_get_power_status(struct apm_power_info *info)
766} 766}
767 767
768static struct pm_ops sharpsl_pm_ops = { 768static struct pm_ops sharpsl_pm_ops = {
769 .pm_disk_mode = PM_DISK_FIRMWARE,
770 .prepare = pxa_pm_prepare, 769 .prepare = pxa_pm_prepare,
771 .enter = corgi_pxa_pm_enter, 770 .enter = corgi_pxa_pm_enter,
772 .finish = pxa_pm_finish, 771 .finish = pxa_pm_finish,
diff --git a/arch/arm/mach-at91/pm.c b/arch/arm/mach-at91/pm.c
index b49bfda53d7f..ff8db29e989e 100644
--- a/arch/arm/mach-at91/pm.c
+++ b/arch/arm/mach-at91/pm.c
@@ -201,7 +201,6 @@ error:
201 201
202 202
203static struct pm_ops at91_pm_ops ={ 203static struct pm_ops at91_pm_ops ={
204 .pm_disk_mode = 0,
205 .valid = at91_pm_valid_state, 204 .valid = at91_pm_valid_state,
206 .prepare = at91_pm_prepare, 205 .prepare = at91_pm_prepare,
207 .enter = at91_pm_enter, 206 .enter = at91_pm_enter,
diff --git a/arch/arm/mach-omap1/pm.c b/arch/arm/mach-omap1/pm.c
index 49efe903dacd..4248117e5e3f 100644
--- a/arch/arm/mach-omap1/pm.c
+++ b/arch/arm/mach-omap1/pm.c
@@ -698,7 +698,6 @@ static struct irqaction omap_wakeup_irq = {
698 698
699 699
700static struct pm_ops omap_pm_ops ={ 700static struct pm_ops omap_pm_ops ={
701 .pm_disk_mode = 0,
702 .prepare = omap_pm_prepare, 701 .prepare = omap_pm_prepare,
703 .enter = omap_pm_enter, 702 .enter = omap_pm_enter,
704 .finish = omap_pm_finish, 703 .finish = omap_pm_finish,
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c
index d7eee99b7e3f..3e9a128feea1 100644
--- a/arch/arm/mach-omap2/pm.c
+++ b/arch/arm/mach-omap2/pm.c
@@ -370,7 +370,6 @@ static int omap2_pm_finish(suspend_state_t state)
370} 370}
371 371
372static struct pm_ops omap_pm_ops = { 372static struct pm_ops omap_pm_ops = {
373 .pm_disk_mode = 0,
374 .prepare = omap2_pm_prepare, 373 .prepare = omap2_pm_prepare,
375 .enter = omap2_pm_enter, 374 .enter = omap2_pm_enter,
376 .finish = omap2_pm_finish, 375 .finish = omap2_pm_finish,
diff --git a/arch/arm/mach-pxa/pm.c b/arch/arm/mach-pxa/pm.c
index b4d8276d6050..0a99ef43b36f 100644
--- a/arch/arm/mach-pxa/pm.c
+++ b/arch/arm/mach-pxa/pm.c
@@ -223,11 +223,7 @@ int pxa_pm_finish(suspend_state_t state)
223 223
224EXPORT_SYMBOL_GPL(pxa_pm_finish); 224EXPORT_SYMBOL_GPL(pxa_pm_finish);
225 225
226/*
227 * Set to PM_DISK_FIRMWARE so we can quickly veto suspend-to-disk.
228 */
229static struct pm_ops pxa_pm_ops = { 226static struct pm_ops pxa_pm_ops = {
230 .pm_disk_mode = PM_DISK_FIRMWARE,
231 .prepare = pxa_pm_prepare, 227 .prepare = pxa_pm_prepare,
232 .enter = pxa_pm_enter, 228 .enter = pxa_pm_enter,
233 .finish = pxa_pm_finish, 229 .finish = pxa_pm_finish,
diff --git a/arch/arm/mach-sa1100/pm.c b/arch/arm/mach-sa1100/pm.c
index 786c8534231f..b0837113b2aa 100644
--- a/arch/arm/mach-sa1100/pm.c
+++ b/arch/arm/mach-sa1100/pm.c
@@ -59,9 +59,6 @@ static int sa11x0_pm_enter(suspend_state_t state)
59 unsigned long gpio, sleep_save[SLEEP_SAVE_SIZE]; 59 unsigned long gpio, sleep_save[SLEEP_SAVE_SIZE];
60 struct timespec delta, rtc; 60 struct timespec delta, rtc;
61 61
62 if (state != PM_SUSPEND_MEM)
63 return -EINVAL;
64
65 /* preserve current time */ 62 /* preserve current time */
66 rtc.tv_sec = RCNR; 63 rtc.tv_sec = RCNR;
67 rtc.tv_nsec = 0; 64 rtc.tv_nsec = 0;
@@ -134,11 +131,7 @@ unsigned long sleep_phys_sp(void *sp)
134 return virt_to_phys(sp); 131 return virt_to_phys(sp);
135} 132}
136 133
137/*
138 * Set to PM_DISK_FIRMWARE so we can quickly veto suspend-to-disk.
139 */
140static struct pm_ops sa11x0_pm_ops = { 134static struct pm_ops sa11x0_pm_ops = {
141 .pm_disk_mode = PM_DISK_FIRMWARE,
142 .enter = sa11x0_pm_enter, 135 .enter = sa11x0_pm_enter,
143}; 136};
144 137
diff --git a/arch/arm/plat-s3c24xx/pm.c b/arch/arm/plat-s3c24xx/pm.c
index ecf68d611904..d6af3082af30 100644
--- a/arch/arm/plat-s3c24xx/pm.c
+++ b/arch/arm/plat-s3c24xx/pm.c
@@ -511,11 +511,6 @@ static int s3c2410_pm_enter(suspend_state_t state)
511 return -EINVAL; 511 return -EINVAL;
512 } 512 }
513 513
514 if (state != PM_SUSPEND_MEM) {
515 printk(KERN_ERR PFX "error: only PM_SUSPEND_MEM supported\n");
516 return -EINVAL;
517 }
518
519 /* check if we have anything to wake-up with... bad things seem 514 /* check if we have anything to wake-up with... bad things seem
520 * to happen if you suspend with no wakeup (system will often 515 * to happen if you suspend with no wakeup (system will often
521 * require a full power-cycle) 516 * require a full power-cycle)
@@ -633,11 +628,7 @@ static int s3c2410_pm_finish(suspend_state_t state)
633 return 0; 628 return 0;
634} 629}
635 630
636/*
637 * Set to PM_DISK_FIRMWARE so we can quickly veto suspend-to-disk.
638 */
639static struct pm_ops s3c2410_pm_ops = { 631static struct pm_ops s3c2410_pm_ops = {
640 .pm_disk_mode = PM_DISK_FIRMWARE,
641 .prepare = s3c2410_pm_prepare, 632 .prepare = s3c2410_pm_prepare,
642 .enter = s3c2410_pm_enter, 633 .enter = s3c2410_pm_enter,
643 .finish = s3c2410_pm_finish, 634 .finish = s3c2410_pm_finish,