blob: c4661aab22fb5475200b22f584c80755d425b0ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * SA1100 Power Management Routines
3 *
4 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License.
8 *
9 * History:
10 *
11 * 2001-02-06: Cliff Brake Initial code
12 *
13 * 2001-02-25: Sukjae Cho <sjcho@east.isi.edu> &
14 * Chester Kuo <chester@linux.org.tw>
15 * Save more value for the resume function! Support
16 * Bitsy/Assabet/Freebird board
17 *
Nicolas Pitre2f82af02009-09-14 03:25:28 -040018 * 2001-08-29: Nicolas Pitre <nico@fluxnic.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * Cleaned up, pushed platform dependent stuff
20 * in the platform specific files.
21 *
22 * 2002-05-27: Nicolas Pitre Killed sleep.h and the kmalloced save array.
23 * Storage is local on the stack now.
24 */
25#include <linux/init.h>
26#include <linux/suspend.h>
27#include <linux/errno.h>
28#include <linux/time.h>
29
Russell Kinga09e64f2008-08-05 16:14:15 +010030#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/memory.h>
32#include <asm/system.h>
33#include <asm/mach/time.h>
34
Russell King96c20012011-02-06 17:41:40 +000035extern void sa1100_cpu_suspend(long);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#define SAVE(x) sleep_save[SLEEP_SAVE_##x] = x
38#define RESTORE(x) x = sleep_save[SLEEP_SAVE_##x]
39
40/*
41 * List of global SA11x0 peripheral registers to preserve.
42 * More ones like CP and general purpose register values are preserved
43 * on the stack and then the stack pointer is stored last in sleep.S.
44 */
Robert Jarzmik649de512008-05-02 21:17:06 +010045enum { SLEEP_SAVE_GPDR, SLEEP_SAVE_GAFR,
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 SLEEP_SAVE_PPDR, SLEEP_SAVE_PPSR, SLEEP_SAVE_PPAR, SLEEP_SAVE_PSDR,
47
48 SLEEP_SAVE_Ser1SDCR0,
49
Robert Jarzmik649de512008-05-02 21:17:06 +010050 SLEEP_SAVE_COUNT
Linus Torvalds1da177e2005-04-16 15:20:36 -070051};
52
53
54static int sa11x0_pm_enter(suspend_state_t state)
55{
Robert Jarzmik649de512008-05-02 21:17:06 +010056 unsigned long gpio, sleep_save[SLEEP_SAVE_COUNT];
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 gpio = GPLR;
59
60 /* save vital registers */
61 SAVE(GPDR);
62 SAVE(GAFR);
63
64 SAVE(PPDR);
65 SAVE(PPSR);
66 SAVE(PPAR);
67 SAVE(PSDR);
68
69 SAVE(Ser1SDCR0);
70
71 /* Clear previous reset status */
72 RCSR = RCSR_HWR | RCSR_SWR | RCSR_WDR | RCSR_SMR;
73
74 /* set resume return address */
Russell King96c20012011-02-06 17:41:40 +000075 PSPR = virt_to_phys(cpu_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77 /* go zzz */
Russell King96c20012011-02-06 17:41:40 +000078 sa1100_cpu_suspend(PLAT_PHYS_OFFSET - PAGE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Russell King36c5ed22005-06-19 18:39:33 +010080 cpu_init();
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 /*
83 * Ensure not to come back here if it wasn't intended
84 */
85 PSPR = 0;
86
87 /*
88 * Ensure interrupt sources are disabled; we will re-init
89 * the interrupt subsystem via the device manager.
90 */
91 ICLR = 0;
92 ICCR = 1;
93 ICMR = 0;
94
95 /* restore registers */
96 RESTORE(GPDR);
97 RESTORE(GAFR);
98
99 RESTORE(PPDR);
100 RESTORE(PPSR);
101 RESTORE(PPAR);
102 RESTORE(PSDR);
103
104 RESTORE(Ser1SDCR0);
105
106 GPSR = gpio;
107 GPCR = ~gpio;
108
109 /*
110 * Clear the peripheral sleep-hold bit.
111 */
112 PSSR = PSSR_PH;
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 return 0;
115}
116
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100117static const struct platform_suspend_ops sa11x0_pm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .enter = sa11x0_pm_enter,
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700119 .valid = suspend_valid_only_mem,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
122static int __init sa11x0_pm_init(void)
123{
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700124 suspend_set_ops(&sa11x0_pm_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 return 0;
126}
127
128late_initcall(sa11x0_pm_init);