Merge 2.6.38-rc5 into staging-next
[deliverable/linux.git] / arch / arm / mach-pxa / pm.c
CommitLineData
1da177e4
LT
1/*
2 * PXA250/210 Power Management Routines
3 *
4 * Original code for the SA11x0:
5 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
6 *
7 * Modified for the PXA250 by Nicolas Pitre:
8 * Copyright (c) 2002 Monta Vista Software, Inc.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License.
12 */
1da177e4 13#include <linux/init.h>
756c7b74 14#include <linux/module.h>
1da177e4
LT
15#include <linux/suspend.h>
16#include <linux/errno.h>
5a0e3ad6 17#include <linux/slab.h>
1da177e4 18
a09e64fb 19#include <mach/pm.h>
1da177e4 20
711be5cc
EM
21struct pxa_cpu_pm_fns *pxa_cpu_pm_fns;
22static unsigned long *sleep_save;
1da177e4 23
756c7b74 24int pxa_pm_enter(suspend_state_t state)
1da177e4 25{
711be5cc 26 unsigned long sleep_save_checksum = 0, checksum = 0;
1da177e4 27 int i;
1da177e4
LT
28
29#ifdef CONFIG_IWMMXT
30 /* force any iWMMXt context to ram **/
afe4b25e
LB
31 if (elf_hwcap & HWCAP_IWMMXT)
32 iwmmxt_task_disable(NULL);
1da177e4
LT
33#endif
34
512f03fd 35 /* skip registers saving for standby */
3d9cb0ea 36 if (state != PM_SUSPEND_STANDBY && pxa_cpu_pm_fns->save) {
512f03fd 37 pxa_cpu_pm_fns->save(sleep_save);
38 /* before sleeping, calculate and save a checksum */
649de51b 39 for (i = 0; i < pxa_cpu_pm_fns->save_count - 1; i++)
512f03fd 40 sleep_save_checksum += sleep_save[i];
41 }
1da177e4 42
1da177e4 43 /* *** go zzz *** */
711be5cc 44 pxa_cpu_pm_fns->enter(state);
36c5ed23
RK
45 cpu_init();
46
3d9cb0ea 47 if (state != PM_SUSPEND_STANDBY && pxa_cpu_pm_fns->restore) {
512f03fd 48 /* after sleeping, validate the checksum */
649de51b 49 for (i = 0; i < pxa_cpu_pm_fns->save_count - 1; i++)
512f03fd 50 checksum += sleep_save[i];
1da177e4 51
512f03fd 52 /* if invalid, display message and wait for a hardware reset */
53 if (checksum != sleep_save_checksum) {
54386145
EM
54
55 lubbock_set_hexled(0xbadbadc5);
56
512f03fd 57 while (1)
58 pxa_cpu_pm_fns->enter(state);
59 }
60 pxa_cpu_pm_fns->restore(sleep_save);
1da177e4
LT
61 }
62
711be5cc 63 pr_debug("*** made it back from resume\n");
1da177e4
LT
64
65 return 0;
66}
67
756c7b74
RP
68EXPORT_SYMBOL_GPL(pxa_pm_enter);
69
1da177e4
LT
70unsigned long sleep_phys_sp(void *sp)
71{
72 return virt_to_phys(sp);
73}
711be5cc
EM
74
75static int pxa_pm_valid(suspend_state_t state)
76{
77 if (pxa_cpu_pm_fns)
78 return pxa_cpu_pm_fns->valid(state);
79
80 return -EINVAL;
81}
82
51cdd928 83int pxa_pm_prepare(void)
4104980a
RK
84{
85 int ret = 0;
86
87 if (pxa_cpu_pm_fns && pxa_cpu_pm_fns->prepare)
88 ret = pxa_cpu_pm_fns->prepare();
89
90 return ret;
91}
92
51cdd928 93void pxa_pm_finish(void)
4104980a
RK
94{
95 if (pxa_cpu_pm_fns && pxa_cpu_pm_fns->finish)
96 pxa_cpu_pm_fns->finish();
97}
98
2f55ac07 99static const struct platform_suspend_ops pxa_pm_ops = {
711be5cc
EM
100 .valid = pxa_pm_valid,
101 .enter = pxa_pm_enter,
4104980a
RK
102 .prepare = pxa_pm_prepare,
103 .finish = pxa_pm_finish,
711be5cc
EM
104};
105
106static int __init pxa_pm_init(void)
107{
108 if (!pxa_cpu_pm_fns) {
109 printk(KERN_ERR "no valid pxa_cpu_pm_fns defined\n");
110 return -EINVAL;
111 }
112
649de51b
RJ
113 sleep_save = kmalloc(pxa_cpu_pm_fns->save_count * sizeof(unsigned long),
114 GFP_KERNEL);
711be5cc
EM
115 if (!sleep_save) {
116 printk(KERN_ERR "failed to alloc memory for pm save\n");
117 return -ENOMEM;
118 }
119
26398a70 120 suspend_set_ops(&pxa_pm_ops);
711be5cc
EM
121 return 0;
122}
123
124device_initcall(pxa_pm_init);
This page took 0.480465 seconds and 5 git commands to generate.