backlight: constify backlight_ops
[deliverable/linux.git] / arch / blackfin / mach-common / pm.c
CommitLineData
1394f032 1/*
96f1050d 2 * Blackfin power management
1394f032 3 *
96f1050d 4 * Copyright 2006-2009 Analog Devices Inc.
1394f032 5 *
96f1050d
RG
6 * Licensed under the GPL-2
7 * based on arm/mach-omap/pm.c
8 * Copyright 2001, Cliff Brake <cbrake@accelent.com> and others
1394f032
BW
9 */
10
95d9ffbe 11#include <linux/suspend.h>
1394f032
BW
12#include <linux/sched.h>
13#include <linux/proc_fs.h>
5a0e3ad6 14#include <linux/slab.h>
1f83b8f1
MF
15#include <linux/io.h>
16#include <linux/irq.h>
1394f032 17
eb7bd9c4 18#include <asm/cplb.h>
fd92348e 19#include <asm/gpio.h>
1efc80b5
MH
20#include <asm/dma.h>
21#include <asm/dpmc.h>
1394f032 22
1efc80b5 23
1394f032
BW
24void bfin_pm_suspend_standby_enter(void)
25{
1efc80b5
MH
26 unsigned long flags;
27
3b139cdb 28 flags = hard_local_irq_save();
1efc80b5 29 bfin_pm_standby_setup();
1394f032 30
cfefe3c6
MH
31#ifdef CONFIG_PM_BFIN_SLEEP_DEEPER
32 sleep_deeper(bfin_sic_iwr[0], bfin_sic_iwr[1], bfin_sic_iwr[2]);
fb5f0049 33#else
cfefe3c6 34 sleep_mode(bfin_sic_iwr[0], bfin_sic_iwr[1], bfin_sic_iwr[2]);
fb5f0049 35#endif
1394f032 36
1efc80b5 37 bfin_pm_standby_restore();
1394f032 38
be1d8543 39#ifdef SIC_IWR0
56f5f590 40 bfin_write_SIC_IWR0(IWR_DISABLE_ALL);
be1d8543 41# ifdef SIC_IWR1
55546ac4
MH
42 /* BF52x system reset does not properly reset SIC_IWR1 which
43 * will screw up the bootrom as it relies on MDMA0/1 waking it
44 * up from IDLE instructions. See this report for more info:
45 * http://blackfin.uclinux.org/gf/tracker/4323
46 */
b7e11293
MF
47 if (ANOMALY_05000435)
48 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
49 else
50 bfin_write_SIC_IWR1(IWR_DISABLE_ALL);
be1d8543
MF
51# endif
52# ifdef SIC_IWR2
56f5f590 53 bfin_write_SIC_IWR2(IWR_DISABLE_ALL);
fb5f0049 54# endif
cfefe3c6 55#else
56f5f590 56 bfin_write_SIC_IWR(IWR_DISABLE_ALL);
cfefe3c6
MH
57#endif
58
3b139cdb 59 hard_local_irq_restore(flags);
1394f032
BW
60}
61
1efc80b5
MH
62int bf53x_suspend_l1_mem(unsigned char *memptr)
63{
d1401e1d
MH
64 dma_memcpy_nocache(memptr, (const void *) L1_CODE_START,
65 L1_CODE_LENGTH);
66 dma_memcpy_nocache(memptr + L1_CODE_LENGTH,
67 (const void *) L1_DATA_A_START, L1_DATA_A_LENGTH);
68 dma_memcpy_nocache(memptr + L1_CODE_LENGTH + L1_DATA_A_LENGTH,
1efc80b5
MH
69 (const void *) L1_DATA_B_START, L1_DATA_B_LENGTH);
70 memcpy(memptr + L1_CODE_LENGTH + L1_DATA_A_LENGTH +
71 L1_DATA_B_LENGTH, (const void *) L1_SCRATCH_START,
72 L1_SCRATCH_LENGTH);
73
74 return 0;
75}
76
77int bf53x_resume_l1_mem(unsigned char *memptr)
78{
d1401e1d
MH
79 dma_memcpy_nocache((void *) L1_CODE_START, memptr, L1_CODE_LENGTH);
80 dma_memcpy_nocache((void *) L1_DATA_A_START, memptr + L1_CODE_LENGTH,
1efc80b5 81 L1_DATA_A_LENGTH);
d1401e1d 82 dma_memcpy_nocache((void *) L1_DATA_B_START, memptr + L1_CODE_LENGTH +
1efc80b5
MH
83 L1_DATA_A_LENGTH, L1_DATA_B_LENGTH);
84 memcpy((void *) L1_SCRATCH_START, memptr + L1_CODE_LENGTH +
85 L1_DATA_A_LENGTH + L1_DATA_B_LENGTH, L1_SCRATCH_LENGTH);
86
87 return 0;
88}
89
41ba653f 90#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK) || defined(CONFIG_BFIN_L2_WRITEBACK)
1efc80b5
MH
91static void flushinv_all_dcache(void)
92{
93 u32 way, bank, subbank, set;
94 u32 status, addr;
95 u32 dmem_ctl = bfin_read_DMEM_CONTROL();
96
97 for (bank = 0; bank < 2; ++bank) {
98 if (!(dmem_ctl & (1 << (DMC1_P - bank))))
99 continue;
100
101 for (way = 0; way < 2; ++way)
102 for (subbank = 0; subbank < 4; ++subbank)
103 for (set = 0; set < 64; ++set) {
104
105 bfin_write_DTEST_COMMAND(
106 way << 26 |
107 bank << 23 |
108 subbank << 16 |
109 set << 5
110 );
111 CSYNC();
112 status = bfin_read_DTEST_DATA0();
113
114 /* only worry about valid/dirty entries */
115 if ((status & 0x3) != 0x3)
116 continue;
117
118 /* construct the address using the tag */
119 addr = (status & 0xFFFFC800) | (subbank << 12) | (set << 5);
120
121 /* flush it */
122 __asm__ __volatile__("FLUSHINV[%0];" : : "a"(addr));
123 }
124 }
125}
126#endif
127
1efc80b5
MH
128int bfin_pm_suspend_mem_enter(void)
129{
130 unsigned long flags;
131 int wakeup, ret;
132
133 unsigned char *memptr = kmalloc(L1_CODE_LENGTH + L1_DATA_A_LENGTH
134 + L1_DATA_B_LENGTH + L1_SCRATCH_LENGTH,
135 GFP_KERNEL);
136
137 if (memptr == NULL) {
138 panic("bf53x_suspend_l1_mem malloc failed");
139 return -ENOMEM;
140 }
141
142 wakeup = bfin_read_VR_CTL() & ~FREQ;
143 wakeup |= SCKELOW;
144
1efc80b5
MH
145#ifdef CONFIG_PM_BFIN_WAKE_PH6
146 wakeup |= PHYWE;
147#endif
1efc80b5
MH
148#ifdef CONFIG_PM_BFIN_WAKE_GP
149 wakeup |= GPWE;
150#endif
1efc80b5 151
3b139cdb 152 flags = hard_local_irq_save();
1efc80b5
MH
153
154 ret = blackfin_dma_suspend();
155
156 if (ret) {
3b139cdb 157 hard_local_irq_restore(flags);
1efc80b5
MH
158 kfree(memptr);
159 return ret;
160 }
161
162 bfin_gpio_pm_hibernate_suspend();
163
eb7bd9c4
YL
164#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK) || defined(CONFIG_BFIN_L2_WRITEBACK)
165 flushinv_all_dcache();
166#endif
167 _disable_dcplb();
168 _disable_icplb();
1efc80b5
MH
169 bf53x_suspend_l1_mem(memptr);
170
d1401e1d 171 do_hibernate(wakeup | vr_wakeup); /* See you later! */
1efc80b5
MH
172
173 bf53x_resume_l1_mem(memptr);
174
eb7bd9c4
YL
175 _enable_icplb();
176 _enable_dcplb();
1efc80b5
MH
177
178 bfin_gpio_pm_hibernate_restore();
179 blackfin_dma_resume();
180
3b139cdb 181 hard_local_irq_restore(flags);
1efc80b5
MH
182 kfree(memptr);
183
184 return 0;
185}
186
1394f032 187/*
e6c5eb95
RW
188 * bfin_pm_valid - Tell the PM core that we only support the standby sleep
189 * state
190 * @state: suspend state we're checking.
1394f032
BW
191 *
192 */
e6c5eb95 193static int bfin_pm_valid(suspend_state_t state)
1394f032 194{
1efc80b5 195 return (state == PM_SUSPEND_STANDBY
b89df504 196#if !(defined(BF533_FAMILY) || defined(CONFIG_BF561))
1efc80b5
MH
197 /*
198 * On BF533/2/1:
199 * If we enter Hibernate the SCKE Pin is driven Low,
200 * so that the SDRAM enters Self Refresh Mode.
201 * However when the reset sequence that follows hibernate
202 * state is executed, SCKE is driven High, taking the
203 * SDRAM out of Self Refresh.
204 *
205 * If you reconfigure and access the SDRAM "very quickly",
206 * you are likely to avoid errors, otherwise the SDRAM
207 * start losing its contents.
208 * An external HW workaround is possible using logic gates.
209 */
210 || state == PM_SUSPEND_MEM
211#endif
212 );
1394f032
BW
213}
214
215/*
216 * bfin_pm_enter - Actually enter a sleep state.
217 * @state: State we're entering.
218 *
219 */
220static int bfin_pm_enter(suspend_state_t state)
221{
222 switch (state) {
223 case PM_SUSPEND_STANDBY:
224 bfin_pm_suspend_standby_enter();
225 break;
9d7b6677 226 case PM_SUSPEND_MEM:
1efc80b5
MH
227 bfin_pm_suspend_mem_enter();
228 break;
1394f032
BW
229 default:
230 return -EINVAL;
231 }
232
233 return 0;
234}
235
26398a70 236struct platform_suspend_ops bfin_pm_ops = {
1394f032 237 .enter = bfin_pm_enter,
4bbd10fd 238 .valid = bfin_pm_valid,
1394f032
BW
239};
240
241static int __init bfin_pm_init(void)
242{
26398a70 243 suspend_set_ops(&bfin_pm_ops);
1394f032
BW
244 return 0;
245}
246
247__initcall(bfin_pm_init);
This page took 0.447649 seconds and 5 git commands to generate.