blob: b3d8d53e32ef8cd5733d0de3dac98bfffe9a9aef [file] [log] [blame]
Vitaly Wool78818e42006-05-16 11:54:37 +01001/*
2 * arch/arm/mach-pnx4008/pm.c
3 *
4 * Power Management driver for PNX4008
5 *
6 * Authors: Vitaly Wool, Dmitry Chigirev <source@mvista.com>
7 *
8 * 2005 (c) MontaVista Software, Inc. This file is licensed under
9 * the terms of the GNU General Public License version 2. This program
10 * is licensed "as is" without any warranty of any kind, whether express
11 * or implied.
12 */
13
14#include <linux/pm.h>
15#include <linux/rtc.h>
16#include <linux/sched.h>
17#include <linux/proc_fs.h>
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070018#include <linux/suspend.h>
Vitaly Wool78818e42006-05-16 11:54:37 +010019#include <linux/delay.h>
20#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010021#include <linux/io.h>
Vitaly Wool78818e42006-05-16 11:54:37 +010022
Vitaly Wool78818e42006-05-16 11:54:37 +010023#include <asm/cacheflush.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/pm.h>
25#include <mach/clock.h>
Vitaly Wool78818e42006-05-16 11:54:37 +010026
27#define SRAM_VA IO_ADDRESS(PNX4008_IRAM_BASE)
28
29static void *saved_sram;
30
31static struct clk *pll4_clk;
32
33static inline void pnx4008_standby(void)
34{
35 void (*pnx4008_cpu_standby_ptr) (void);
36
37 local_irq_disable();
38 local_fiq_disable();
39
40 clk_disable(pll4_clk);
41
42 /*saving portion of SRAM to be used by suspend function. */
43 memcpy(saved_sram, (void *)SRAM_VA, pnx4008_cpu_standby_sz);
44
45 /*make sure SRAM copy gets physically written into SDRAM.
46 SDRAM will be placed into self-refresh during power down */
47 flush_cache_all();
48
49 /*copy suspend function into SRAM */
50 memcpy((void *)SRAM_VA, pnx4008_cpu_standby, pnx4008_cpu_standby_sz);
51
52 /*do suspend */
53 pnx4008_cpu_standby_ptr = (void *)SRAM_VA;
54 pnx4008_cpu_standby_ptr();
55
56 /*restoring portion of SRAM that was used by suspend function */
57 memcpy((void *)SRAM_VA, saved_sram, pnx4008_cpu_standby_sz);
58
59 clk_enable(pll4_clk);
60
61 local_fiq_enable();
62 local_irq_enable();
63}
64
65static inline void pnx4008_suspend(void)
66{
67 void (*pnx4008_cpu_suspend_ptr) (void);
68
69 local_irq_disable();
70 local_fiq_disable();
71
72 clk_disable(pll4_clk);
73
74 __raw_writel(0xffffffff, START_INT_RSR_REG(SE_PIN_BASE_INT));
75 __raw_writel(0xffffffff, START_INT_RSR_REG(SE_INT_BASE_INT));
76
77 /*saving portion of SRAM to be used by suspend function. */
78 memcpy(saved_sram, (void *)SRAM_VA, pnx4008_cpu_suspend_sz);
79
80 /*make sure SRAM copy gets physically written into SDRAM.
81 SDRAM will be placed into self-refresh during power down */
82 flush_cache_all();
83
84 /*copy suspend function into SRAM */
85 memcpy((void *)SRAM_VA, pnx4008_cpu_suspend, pnx4008_cpu_suspend_sz);
86
87 /*do suspend */
88 pnx4008_cpu_suspend_ptr = (void *)SRAM_VA;
89 pnx4008_cpu_suspend_ptr();
90
91 /*restoring portion of SRAM that was used by suspend function */
92 memcpy((void *)SRAM_VA, saved_sram, pnx4008_cpu_suspend_sz);
93
94 clk_enable(pll4_clk);
95
96 local_fiq_enable();
97 local_irq_enable();
98}
99
100static int pnx4008_pm_enter(suspend_state_t state)
101{
102 switch (state) {
103 case PM_SUSPEND_STANDBY:
104 pnx4008_standby();
105 break;
106 case PM_SUSPEND_MEM:
107 pnx4008_suspend();
108 break;
Vitaly Wool78818e42006-05-16 11:54:37 +0100109 }
110 return 0;
111}
112
Johannes Berge8c9c502007-04-30 15:09:54 -0700113static int pnx4008_pm_valid(suspend_state_t state)
Vitaly Wool78818e42006-05-16 11:54:37 +0100114{
Johannes Berge8c9c502007-04-30 15:09:54 -0700115 return (state == PM_SUSPEND_STANDBY) ||
116 (state == PM_SUSPEND_MEM);
Vitaly Wool78818e42006-05-16 11:54:37 +0100117}
118
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700119static struct platform_suspend_ops pnx4008_pm_ops = {
Vitaly Wool78818e42006-05-16 11:54:37 +0100120 .enter = pnx4008_pm_enter,
Johannes Berge8c9c502007-04-30 15:09:54 -0700121 .valid = pnx4008_pm_valid,
Vitaly Wool78818e42006-05-16 11:54:37 +0100122};
123
124static int __init pnx4008_pm_init(void)
125{
126 u32 sram_size_to_allocate;
127
128 pll4_clk = clk_get(0, "ck_pll4");
129 if (IS_ERR(pll4_clk)) {
130 printk(KERN_ERR
131 "PM Suspend cannot acquire ARM(PLL4) clock control\n");
132 return PTR_ERR(pll4_clk);
133 }
134
135 if (pnx4008_cpu_standby_sz > pnx4008_cpu_suspend_sz)
136 sram_size_to_allocate = pnx4008_cpu_standby_sz;
137 else
138 sram_size_to_allocate = pnx4008_cpu_suspend_sz;
139
140 saved_sram = kmalloc(sram_size_to_allocate, GFP_ATOMIC);
141 if (!saved_sram) {
142 printk(KERN_ERR
143 "PM Suspend: cannot allocate memory to save portion of SRAM\n");
144 clk_put(pll4_clk);
145 return -ENOMEM;
146 }
147
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700148 suspend_set_ops(&pnx4008_pm_ops);
Vitaly Wool78818e42006-05-16 11:54:37 +0100149 return 0;
150}
151
152late_initcall(pnx4008_pm_init);