ARM: OMAP: duplicate plat-omap/clock.c into mach-omap[12]/clock.c
[linux-2.6-block.git] / arch / arm / mach-omap1 / pm.c
CommitLineData
670c104a
TL
1/*
2 * linux/arch/arm/mach-omap1/pm.c
3 *
4 * OMAP Power Management Routines
5 *
6 * Original code for the SA11x0:
7 * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com>
8 *
9 * Modified for the PXA250 by Nicolas Pitre:
10 * Copyright (c) 2002 Monta Vista Software, Inc.
11 *
12 * Modified for the OMAP1510 by David Singleton:
13 * Copyright (c) 2002 Monta Vista Software, Inc.
14 *
15 * Cleanup 2004 for OMAP1510/1610 by Dirk Behme <dirk.behme@de.bosch.com>
16 *
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License as published by the
19 * Free Software Foundation; either version 2 of the License, or (at your
20 * option) any later version.
21 *
22 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
23 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
25 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
28 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
29 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 *
33 * You should have received a copy of the GNU General Public License along
34 * with this program; if not, write to the Free Software Foundation, Inc.,
35 * 675 Mass Ave, Cambridge, MA 02139, USA.
36 */
37
95d9ffbe 38#include <linux/suspend.h>
670c104a
TL
39#include <linux/sched.h>
40#include <linux/proc_fs.h>
670c104a
TL
41#include <linux/interrupt.h>
42#include <linux/sysfs.h>
43#include <linux/module.h>
fced80c7 44#include <linux/io.h>
0bcd24b0 45#include <linux/atomic.h>
670c104a 46
335aece5 47#include <asm/system_misc.h>
670c104a 48#include <asm/irq.h>
670c104a
TL
49#include <asm/mach/time.h>
50#include <asm/mach/irq.h>
670c104a 51
ce491cf8 52#include <plat/cpu.h>
ce491cf8 53#include <plat/clock.h>
54b693d4 54#include <mach/tc.h>
70c494c3 55#include <mach/mux.h>
2b6c4e73 56#include <plat-omap/dma-omap.h>
ce491cf8 57#include <plat/dmtimer.h>
670c104a 58
2e3ee9f4
TL
59#include <mach/irqs.h>
60
622297fd
TL
61#include "../plat-omap/sram.h"
62
2e3ee9f4 63#include "iomap.h"
c912f7e1
KH
64#include "pm.h"
65
670c104a
TL
66static unsigned int arm_sleep_save[ARM_SLEEP_SAVE_SIZE];
67static unsigned short dsp_sleep_save[DSP_SLEEP_SAVE_SIZE];
68static unsigned short ulpd_sleep_save[ULPD_SLEEP_SAVE_SIZE];
7c006926 69static unsigned int mpui7xx_sleep_save[MPUI7XX_SLEEP_SAVE_SIZE];
670c104a
TL
70static unsigned int mpui1510_sleep_save[MPUI1510_SLEEP_SAVE_SIZE];
71static unsigned int mpui1610_sleep_save[MPUI1610_SLEEP_SAVE_SIZE];
72
010bb0cf
VK
73#ifdef CONFIG_OMAP_32K_TIMER
74
670c104a
TL
75static unsigned short enable_dyn_sleep = 1;
76
851324c6
GKH
77static ssize_t idle_show(struct kobject *kobj, struct kobj_attribute *attr,
78 char *buf)
670c104a
TL
79{
80 return sprintf(buf, "%hu\n", enable_dyn_sleep);
81}
82
851324c6
GKH
83static ssize_t idle_store(struct kobject *kobj, struct kobj_attribute *attr,
84 const char * buf, size_t n)
670c104a
TL
85{
86 unsigned short value;
87 if (sscanf(buf, "%hu", &value) != 1 ||
88 (value != 0 && value != 1)) {
89 printk(KERN_ERR "idle_sleep_store: Invalid value\n");
90 return -EINVAL;
91 }
92 enable_dyn_sleep = value;
93 return n;
94}
95
851324c6
GKH
96static struct kobj_attribute sleep_while_idle_attr =
97 __ATTR(sleep_while_idle, 0644, idle_show, idle_store);
670c104a 98
010bb0cf
VK
99#endif
100
670c104a
TL
101static void (*omap_sram_suspend)(unsigned long r0, unsigned long r1) = NULL;
102
103/*
104 * Let's power down on idle, but only if we are really
105 * idle, because once we start down the path of
106 * going idle we continue to do idle even if we get
107 * a clock tick interrupt . .
108 */
c912f7e1 109void omap1_pm_idle(void)
670c104a
TL
110{
111 extern __u32 arm_idlect1_mask;
112 __u32 use_idlect1 = arm_idlect1_mask;
010bb0cf 113 int do_sleep = 0;
670c104a 114
670c104a 115 local_fiq_disable();
670c104a 116
be26a008 117#if defined(CONFIG_OMAP_MPU_TIMER) && !defined(CONFIG_OMAP_DM_TIMER)
670c104a
TL
118#warning Enable 32kHz OS timer in order to allow sleep states in idle
119 use_idlect1 = use_idlect1 & ~(1 << 9);
120#else
121
670c104a
TL
122 while (enable_dyn_sleep) {
123
124#ifdef CONFIG_CBUS_TAHVO_USB
125 extern int vbus_active;
126 /* Clock requirements? */
127 if (vbus_active)
128 break;
129#endif
130 do_sleep = 1;
131 break;
132 }
133
010bb0cf
VK
134#endif
135
670c104a
TL
136#ifdef CONFIG_OMAP_DM_TIMER
137 use_idlect1 = omap_dm_timer_modify_idlect_mask(use_idlect1);
138#endif
139
6ea59bb3 140 if (omap_dma_running())
670c104a 141 use_idlect1 &= ~(1 << 6);
670c104a
TL
142
143 /* We should be able to remove the do_sleep variable and multiple
144 * tests above as soon as drivers, timer and DMA code have been fixed.
145 * Even the sleep block count should become obsolete. */
146 if ((use_idlect1 != ~0) || !do_sleep) {
147
148 __u32 saved_idlect1 = omap_readl(ARM_IDLECT1);
149 if (cpu_is_omap15xx())
150 use_idlect1 &= OMAP1510_BIG_SLEEP_REQUEST;
151 else
152 use_idlect1 &= OMAP1610_IDLECT1_SLEEP_VAL;
153 omap_writel(use_idlect1, ARM_IDLECT1);
154 __asm__ volatile ("mcr p15, 0, r0, c7, c0, 4");
155 omap_writel(saved_idlect1, ARM_IDLECT1);
156
157 local_fiq_enable();
670c104a
TL
158 return;
159 }
160 omap_sram_suspend(omap_readl(ARM_IDLECT1),
161 omap_readl(ARM_IDLECT2));
670c104a
TL
162
163 local_fiq_enable();
670c104a
TL
164}
165
166/*
167 * Configuration of the wakeup event is board specific. For the
168 * moment we put it into this helper function. Later it may move
169 * to board specific files.
170 */
171static void omap_pm_wakeup_setup(void)
172{
173 u32 level1_wake = 0;
174 u32 level2_wake = OMAP_IRQ_BIT(INT_UART2);
175
176 /*
177 * Turn off all interrupts except GPIO bank 1, L1-2nd level cascade,
178 * and the L2 wakeup interrupts: keypad and UART2. Note that the
179 * drivers must still separately call omap_set_gpio_wakeup() to
180 * wake up to a GPIO interrupt.
181 */
4b9100dd 182 if (cpu_is_omap7xx())
372b1c32
AB
183 level1_wake = OMAP_IRQ_BIT(INT_7XX_GPIO_BANK1) |
184 OMAP_IRQ_BIT(INT_7XX_IH2_IRQ);
670c104a
TL
185 else if (cpu_is_omap15xx())
186 level1_wake = OMAP_IRQ_BIT(INT_GPIO_BANK1) |
187 OMAP_IRQ_BIT(INT_1510_IH2_IRQ);
188 else if (cpu_is_omap16xx())
189 level1_wake = OMAP_IRQ_BIT(INT_GPIO_BANK1) |
190 OMAP_IRQ_BIT(INT_1610_IH2_IRQ);
191
192 omap_writel(~level1_wake, OMAP_IH1_MIR);
193
4b9100dd 194 if (cpu_is_omap7xx()) {
670c104a 195 omap_writel(~level2_wake, OMAP_IH2_0_MIR);
372b1c32
AB
196 omap_writel(~(OMAP_IRQ_BIT(INT_7XX_WAKE_UP_REQ) |
197 OMAP_IRQ_BIT(INT_7XX_MPUIO_KEYPAD)),
670c104a
TL
198 OMAP_IH2_1_MIR);
199 } else if (cpu_is_omap15xx()) {
200 level2_wake |= OMAP_IRQ_BIT(INT_KEYBOARD);
201 omap_writel(~level2_wake, OMAP_IH2_MIR);
202 } else if (cpu_is_omap16xx()) {
203 level2_wake |= OMAP_IRQ_BIT(INT_KEYBOARD);
204 omap_writel(~level2_wake, OMAP_IH2_0_MIR);
205
206 /* INT_1610_WAKE_UP_REQ is needed for GPIO wakeup... */
207 omap_writel(~OMAP_IRQ_BIT(INT_1610_WAKE_UP_REQ),
208 OMAP_IH2_1_MIR);
209 omap_writel(~0x0, OMAP_IH2_2_MIR);
210 omap_writel(~0x0, OMAP_IH2_3_MIR);
211 }
212
213 /* New IRQ agreement, recalculate in cascade order */
214 omap_writel(1, OMAP_IH2_CONTROL);
215 omap_writel(1, OMAP_IH1_CONTROL);
216}
217
218#define EN_DSPCK 13 /* ARM_CKCTL */
219#define EN_APICK 6 /* ARM_IDLECT2 */
220#define DSP_EN 1 /* ARM_RSTCT1 */
221
c912f7e1 222void omap1_pm_suspend(void)
670c104a
TL
223{
224 unsigned long arg0 = 0, arg1 = 0;
225
84a34344
LL
226 printk(KERN_INFO "PM: OMAP%x is trying to enter deep sleep...\n",
227 omap_rev());
670c104a
TL
228
229 omap_serial_wake_trigger(1);
230
ef557d76
AZ
231 if (!cpu_is_omap15xx())
232 omap_writew(0xffff, ULPD_SOFT_DISABLE_REQ_REG);
670c104a
TL
233
234 /*
235 * Step 1: turn off interrupts (FIXME: NOTE: already disabled)
236 */
237
238 local_irq_disable();
239 local_fiq_disable();
240
241 /*
242 * Step 2: save registers
243 *
244 * The omap is a strange/beautiful device. The caches, memory
245 * and register state are preserved across power saves.
246 * We have to save and restore very little register state to
247 * idle the omap.
248 *
249 * Save interrupt, MPUI, ARM and UPLD control registers.
250 */
251
4b9100dd 252 if (cpu_is_omap7xx()) {
7c006926
AB
253 MPUI7XX_SAVE(OMAP_IH1_MIR);
254 MPUI7XX_SAVE(OMAP_IH2_0_MIR);
255 MPUI7XX_SAVE(OMAP_IH2_1_MIR);
256 MPUI7XX_SAVE(MPUI_CTRL);
257 MPUI7XX_SAVE(MPUI_DSP_BOOT_CONFIG);
258 MPUI7XX_SAVE(MPUI_DSP_API_CONFIG);
259 MPUI7XX_SAVE(EMIFS_CONFIG);
260 MPUI7XX_SAVE(EMIFF_SDRAM_CONFIG);
670c104a
TL
261
262 } else if (cpu_is_omap15xx()) {
263 MPUI1510_SAVE(OMAP_IH1_MIR);
264 MPUI1510_SAVE(OMAP_IH2_MIR);
265 MPUI1510_SAVE(MPUI_CTRL);
266 MPUI1510_SAVE(MPUI_DSP_BOOT_CONFIG);
267 MPUI1510_SAVE(MPUI_DSP_API_CONFIG);
268 MPUI1510_SAVE(EMIFS_CONFIG);
269 MPUI1510_SAVE(EMIFF_SDRAM_CONFIG);
270 } else if (cpu_is_omap16xx()) {
271 MPUI1610_SAVE(OMAP_IH1_MIR);
272 MPUI1610_SAVE(OMAP_IH2_0_MIR);
273 MPUI1610_SAVE(OMAP_IH2_1_MIR);
274 MPUI1610_SAVE(OMAP_IH2_2_MIR);
275 MPUI1610_SAVE(OMAP_IH2_3_MIR);
276 MPUI1610_SAVE(MPUI_CTRL);
277 MPUI1610_SAVE(MPUI_DSP_BOOT_CONFIG);
278 MPUI1610_SAVE(MPUI_DSP_API_CONFIG);
279 MPUI1610_SAVE(EMIFS_CONFIG);
280 MPUI1610_SAVE(EMIFF_SDRAM_CONFIG);
281 }
282
283 ARM_SAVE(ARM_CKCTL);
284 ARM_SAVE(ARM_IDLECT1);
285 ARM_SAVE(ARM_IDLECT2);
286 if (!(cpu_is_omap15xx()))
287 ARM_SAVE(ARM_IDLECT3);
288 ARM_SAVE(ARM_EWUPCT);
289 ARM_SAVE(ARM_RSTCT1);
290 ARM_SAVE(ARM_RSTCT2);
291 ARM_SAVE(ARM_SYSST);
292 ULPD_SAVE(ULPD_CLOCK_CTRL);
293 ULPD_SAVE(ULPD_STATUS_REQ);
294
295 /* (Step 3 removed - we now allow deep sleep by default) */
296
297 /*
298 * Step 4: OMAP DSP Shutdown
299 */
300
301 /* stop DSP */
302 omap_writew(omap_readw(ARM_RSTCT1) & ~(1 << DSP_EN), ARM_RSTCT1);
303
495f71db 304 /* shut down dsp_ck */
4b9100dd 305 if (!cpu_is_omap7xx())
495f71db 306 omap_writew(omap_readw(ARM_CKCTL) & ~(1 << EN_DSPCK), ARM_CKCTL);
670c104a
TL
307
308 /* temporarily enabling api_ck to access DSP registers */
309 omap_writew(omap_readw(ARM_IDLECT2) | 1 << EN_APICK, ARM_IDLECT2);
310
311 /* save DSP registers */
312 DSP_SAVE(DSP_IDLECT2);
313
314 /* Stop all DSP domain clocks */
315 __raw_writew(0, DSP_IDLECT2);
316
317 /*
318 * Step 5: Wakeup Event Setup
319 */
320
321 omap_pm_wakeup_setup();
322
323 /*
324 * Step 6: ARM and Traffic controller shutdown
325 */
326
327 /* disable ARM watchdog */
328 omap_writel(0x00F5, OMAP_WDT_TIMER_MODE);
329 omap_writel(0x00A0, OMAP_WDT_TIMER_MODE);
330
331 /*
332 * Step 6b: ARM and Traffic controller shutdown
333 *
334 * Step 6 continues here. Prepare jump to power management
335 * assembly code in internal SRAM.
336 *
337 * Since the omap_cpu_suspend routine has been copied to
338 * SRAM, we'll do an indirect procedure call to it and pass the
339 * contents of arm_idlect1 and arm_idlect2 so it can restore
340 * them when it wakes up and it will return.
341 */
342
343 arg0 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT1];
344 arg1 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT2];
345
346 /*
347 * Step 6c: ARM and Traffic controller shutdown
348 *
349 * Jump to assembly code. The processor will stay there
350 * until wake up.
351 */
d30c7369 352 omap_sram_suspend(arg0, arg1);
670c104a
TL
353
354 /*
355 * If we are here, processor is woken up!
356 */
357
358 /*
359 * Restore DSP clocks
360 */
361
362 /* again temporarily enabling api_ck to access DSP registers */
363 omap_writew(omap_readw(ARM_IDLECT2) | 1 << EN_APICK, ARM_IDLECT2);
364
365 /* Restore DSP domain clocks */
366 DSP_RESTORE(DSP_IDLECT2);
367
368 /*
369 * Restore ARM state, except ARM_IDLECT1/2 which omap_cpu_suspend did
370 */
371
372 if (!(cpu_is_omap15xx()))
373 ARM_RESTORE(ARM_IDLECT3);
374 ARM_RESTORE(ARM_CKCTL);
375 ARM_RESTORE(ARM_EWUPCT);
376 ARM_RESTORE(ARM_RSTCT1);
377 ARM_RESTORE(ARM_RSTCT2);
378 ARM_RESTORE(ARM_SYSST);
379 ULPD_RESTORE(ULPD_CLOCK_CTRL);
380 ULPD_RESTORE(ULPD_STATUS_REQ);
381
4b9100dd 382 if (cpu_is_omap7xx()) {
7c006926
AB
383 MPUI7XX_RESTORE(EMIFS_CONFIG);
384 MPUI7XX_RESTORE(EMIFF_SDRAM_CONFIG);
385 MPUI7XX_RESTORE(OMAP_IH1_MIR);
386 MPUI7XX_RESTORE(OMAP_IH2_0_MIR);
387 MPUI7XX_RESTORE(OMAP_IH2_1_MIR);
670c104a
TL
388 } else if (cpu_is_omap15xx()) {
389 MPUI1510_RESTORE(MPUI_CTRL);
390 MPUI1510_RESTORE(MPUI_DSP_BOOT_CONFIG);
391 MPUI1510_RESTORE(MPUI_DSP_API_CONFIG);
392 MPUI1510_RESTORE(EMIFS_CONFIG);
393 MPUI1510_RESTORE(EMIFF_SDRAM_CONFIG);
394 MPUI1510_RESTORE(OMAP_IH1_MIR);
395 MPUI1510_RESTORE(OMAP_IH2_MIR);
396 } else if (cpu_is_omap16xx()) {
397 MPUI1610_RESTORE(MPUI_CTRL);
398 MPUI1610_RESTORE(MPUI_DSP_BOOT_CONFIG);
399 MPUI1610_RESTORE(MPUI_DSP_API_CONFIG);
400 MPUI1610_RESTORE(EMIFS_CONFIG);
401 MPUI1610_RESTORE(EMIFF_SDRAM_CONFIG);
402
403 MPUI1610_RESTORE(OMAP_IH1_MIR);
404 MPUI1610_RESTORE(OMAP_IH2_0_MIR);
405 MPUI1610_RESTORE(OMAP_IH2_1_MIR);
406 MPUI1610_RESTORE(OMAP_IH2_2_MIR);
407 MPUI1610_RESTORE(OMAP_IH2_3_MIR);
408 }
409
ef557d76
AZ
410 if (!cpu_is_omap15xx())
411 omap_writew(0, ULPD_SOFT_DISABLE_REQ_REG);
670c104a
TL
412
413 /*
6cbdc8c5 414 * Re-enable interrupts
670c104a
TL
415 */
416
417 local_irq_enable();
418 local_fiq_enable();
419
420 omap_serial_wake_trigger(0);
421
84a34344
LL
422 printk(KERN_INFO "PM: OMAP%x is re-starting from deep sleep...\n",
423 omap_rev());
670c104a
TL
424}
425
426#if defined(DEBUG) && defined(CONFIG_PROC_FS)
427static int g_read_completed;
428
429/*
430 * Read system PM registers for debugging
431 */
432static int omap_pm_read_proc(
433 char *page_buffer,
434 char **my_first_byte,
435 off_t virtual_start,
436 int length,
437 int *eof,
438 void *data)
439{
440 int my_buffer_offset = 0;
441 char * const my_base = page_buffer;
442
443 ARM_SAVE(ARM_CKCTL);
444 ARM_SAVE(ARM_IDLECT1);
445 ARM_SAVE(ARM_IDLECT2);
446 if (!(cpu_is_omap15xx()))
447 ARM_SAVE(ARM_IDLECT3);
448 ARM_SAVE(ARM_EWUPCT);
449 ARM_SAVE(ARM_RSTCT1);
450 ARM_SAVE(ARM_RSTCT2);
451 ARM_SAVE(ARM_SYSST);
452
453 ULPD_SAVE(ULPD_IT_STATUS);
454 ULPD_SAVE(ULPD_CLOCK_CTRL);
455 ULPD_SAVE(ULPD_SOFT_REQ);
456 ULPD_SAVE(ULPD_STATUS_REQ);
457 ULPD_SAVE(ULPD_DPLL_CTRL);
458 ULPD_SAVE(ULPD_POWER_CTRL);
459
4b9100dd 460 if (cpu_is_omap7xx()) {
7c006926
AB
461 MPUI7XX_SAVE(MPUI_CTRL);
462 MPUI7XX_SAVE(MPUI_DSP_STATUS);
463 MPUI7XX_SAVE(MPUI_DSP_BOOT_CONFIG);
464 MPUI7XX_SAVE(MPUI_DSP_API_CONFIG);
465 MPUI7XX_SAVE(EMIFF_SDRAM_CONFIG);
466 MPUI7XX_SAVE(EMIFS_CONFIG);
670c104a
TL
467 } else if (cpu_is_omap15xx()) {
468 MPUI1510_SAVE(MPUI_CTRL);
469 MPUI1510_SAVE(MPUI_DSP_STATUS);
470 MPUI1510_SAVE(MPUI_DSP_BOOT_CONFIG);
471 MPUI1510_SAVE(MPUI_DSP_API_CONFIG);
472 MPUI1510_SAVE(EMIFF_SDRAM_CONFIG);
473 MPUI1510_SAVE(EMIFS_CONFIG);
474 } else if (cpu_is_omap16xx()) {
475 MPUI1610_SAVE(MPUI_CTRL);
476 MPUI1610_SAVE(MPUI_DSP_STATUS);
477 MPUI1610_SAVE(MPUI_DSP_BOOT_CONFIG);
478 MPUI1610_SAVE(MPUI_DSP_API_CONFIG);
479 MPUI1610_SAVE(EMIFF_SDRAM_CONFIG);
480 MPUI1610_SAVE(EMIFS_CONFIG);
481 }
482
483 if (virtual_start == 0) {
484 g_read_completed = 0;
485
486 my_buffer_offset += sprintf(my_base + my_buffer_offset,
487 "ARM_CKCTL_REG: 0x%-8x \n"
488 "ARM_IDLECT1_REG: 0x%-8x \n"
489 "ARM_IDLECT2_REG: 0x%-8x \n"
490 "ARM_IDLECT3_REG: 0x%-8x \n"
491 "ARM_EWUPCT_REG: 0x%-8x \n"
492 "ARM_RSTCT1_REG: 0x%-8x \n"
493 "ARM_RSTCT2_REG: 0x%-8x \n"
494 "ARM_SYSST_REG: 0x%-8x \n"
495 "ULPD_IT_STATUS_REG: 0x%-4x \n"
496 "ULPD_CLOCK_CTRL_REG: 0x%-4x \n"
497 "ULPD_SOFT_REQ_REG: 0x%-4x \n"
498 "ULPD_DPLL_CTRL_REG: 0x%-4x \n"
499 "ULPD_STATUS_REQ_REG: 0x%-4x \n"
500 "ULPD_POWER_CTRL_REG: 0x%-4x \n",
501 ARM_SHOW(ARM_CKCTL),
502 ARM_SHOW(ARM_IDLECT1),
503 ARM_SHOW(ARM_IDLECT2),
504 ARM_SHOW(ARM_IDLECT3),
505 ARM_SHOW(ARM_EWUPCT),
506 ARM_SHOW(ARM_RSTCT1),
507 ARM_SHOW(ARM_RSTCT2),
508 ARM_SHOW(ARM_SYSST),
509 ULPD_SHOW(ULPD_IT_STATUS),
510 ULPD_SHOW(ULPD_CLOCK_CTRL),
511 ULPD_SHOW(ULPD_SOFT_REQ),
512 ULPD_SHOW(ULPD_DPLL_CTRL),
513 ULPD_SHOW(ULPD_STATUS_REQ),
514 ULPD_SHOW(ULPD_POWER_CTRL));
515
4b9100dd 516 if (cpu_is_omap7xx()) {
670c104a 517 my_buffer_offset += sprintf(my_base + my_buffer_offset,
7c006926
AB
518 "MPUI7XX_CTRL_REG 0x%-8x \n"
519 "MPUI7XX_DSP_STATUS_REG: 0x%-8x \n"
520 "MPUI7XX_DSP_BOOT_CONFIG_REG: 0x%-8x \n"
521 "MPUI7XX_DSP_API_CONFIG_REG: 0x%-8x \n"
522 "MPUI7XX_SDRAM_CONFIG_REG: 0x%-8x \n"
523 "MPUI7XX_EMIFS_CONFIG_REG: 0x%-8x \n",
524 MPUI7XX_SHOW(MPUI_CTRL),
525 MPUI7XX_SHOW(MPUI_DSP_STATUS),
526 MPUI7XX_SHOW(MPUI_DSP_BOOT_CONFIG),
527 MPUI7XX_SHOW(MPUI_DSP_API_CONFIG),
528 MPUI7XX_SHOW(EMIFF_SDRAM_CONFIG),
529 MPUI7XX_SHOW(EMIFS_CONFIG));
670c104a
TL
530 } else if (cpu_is_omap15xx()) {
531 my_buffer_offset += sprintf(my_base + my_buffer_offset,
532 "MPUI1510_CTRL_REG 0x%-8x \n"
533 "MPUI1510_DSP_STATUS_REG: 0x%-8x \n"
534 "MPUI1510_DSP_BOOT_CONFIG_REG: 0x%-8x \n"
535 "MPUI1510_DSP_API_CONFIG_REG: 0x%-8x \n"
536 "MPUI1510_SDRAM_CONFIG_REG: 0x%-8x \n"
537 "MPUI1510_EMIFS_CONFIG_REG: 0x%-8x \n",
538 MPUI1510_SHOW(MPUI_CTRL),
539 MPUI1510_SHOW(MPUI_DSP_STATUS),
540 MPUI1510_SHOW(MPUI_DSP_BOOT_CONFIG),
541 MPUI1510_SHOW(MPUI_DSP_API_CONFIG),
542 MPUI1510_SHOW(EMIFF_SDRAM_CONFIG),
543 MPUI1510_SHOW(EMIFS_CONFIG));
544 } else if (cpu_is_omap16xx()) {
545 my_buffer_offset += sprintf(my_base + my_buffer_offset,
546 "MPUI1610_CTRL_REG 0x%-8x \n"
547 "MPUI1610_DSP_STATUS_REG: 0x%-8x \n"
548 "MPUI1610_DSP_BOOT_CONFIG_REG: 0x%-8x \n"
549 "MPUI1610_DSP_API_CONFIG_REG: 0x%-8x \n"
550 "MPUI1610_SDRAM_CONFIG_REG: 0x%-8x \n"
551 "MPUI1610_EMIFS_CONFIG_REG: 0x%-8x \n",
552 MPUI1610_SHOW(MPUI_CTRL),
553 MPUI1610_SHOW(MPUI_DSP_STATUS),
554 MPUI1610_SHOW(MPUI_DSP_BOOT_CONFIG),
555 MPUI1610_SHOW(MPUI_DSP_API_CONFIG),
556 MPUI1610_SHOW(EMIFF_SDRAM_CONFIG),
557 MPUI1610_SHOW(EMIFS_CONFIG));
558 }
559
560 g_read_completed++;
561 } else if (g_read_completed >= 1) {
562 *eof = 1;
563 return 0;
564 }
565 g_read_completed++;
566
567 *my_first_byte = page_buffer;
568 return my_buffer_offset;
569}
570
571static void omap_pm_init_proc(void)
572{
eeb3711b
PW
573 /* XXX Appears to leak memory */
574 create_proc_read_entry("driver/omap_pm",
575 S_IWUSR | S_IRUGO, NULL,
576 omap_pm_read_proc, NULL);
670c104a
TL
577}
578
579#endif /* DEBUG && CONFIG_PROC_FS */
580
670c104a
TL
581/*
582 * omap_pm_prepare - Do preliminary suspend work.
670c104a
TL
583 *
584 */
e6c5eb95 585static int omap_pm_prepare(void)
670c104a 586{
670c104a 587 /* We cannot sleep in idle until we have resumed */
3c0b2cef 588 disable_hlt();
670c104a 589
e6c5eb95 590 return 0;
670c104a
TL
591}
592
593
594/*
595 * omap_pm_enter - Actually enter a sleep state.
596 * @state: State we're entering.
597 *
598 */
599
600static int omap_pm_enter(suspend_state_t state)
601{
602 switch (state)
603 {
604 case PM_SUSPEND_STANDBY:
605 case PM_SUSPEND_MEM:
c912f7e1 606 omap1_pm_suspend();
670c104a 607 break;
670c104a
TL
608 default:
609 return -EINVAL;
610 }
611
612 return 0;
613}
614
615
616/**
617 * omap_pm_finish - Finish up suspend sequence.
670c104a
TL
618 *
619 * This is called after we wake back up (or if entering the sleep state
620 * failed).
621 */
622
e6c5eb95 623static void omap_pm_finish(void)
670c104a 624{
3c0b2cef 625 enable_hlt();
670c104a
TL
626}
627
628
e8f2af17 629static irqreturn_t omap_wakeup_interrupt(int irq, void *dev)
670c104a
TL
630{
631 return IRQ_HANDLED;
632}
633
634static struct irqaction omap_wakeup_irq = {
635 .name = "peripheral wakeup",
52e405ea 636 .flags = IRQF_DISABLED,
670c104a
TL
637 .handler = omap_wakeup_interrupt
638};
639
640
641
2f55ac07 642static const struct platform_suspend_ops omap_pm_ops = {
670c104a
TL
643 .prepare = omap_pm_prepare,
644 .enter = omap_pm_enter,
645 .finish = omap_pm_finish,
26398a70 646 .valid = suspend_valid_only_mem,
670c104a
TL
647};
648
649static int __init omap_pm_init(void)
650{
010bb0cf
VK
651
652#ifdef CONFIG_OMAP_32K_TIMER
2f5c4b6f 653 int error;
010bb0cf 654#endif
2f5c4b6f 655
7f9187c2
TL
656 if (!cpu_class_is_omap1())
657 return -ENODEV;
658
670c104a
TL
659 printk("Power Management for TI OMAP.\n");
660
661 /*
662 * We copy the assembler sleep/wakeup routines to SRAM.
663 * These routines need to be in SRAM as that's the only
664 * memory the MPU can see when it wakes up.
665 */
4b9100dd 666 if (cpu_is_omap7xx()) {
7c006926
AB
667 omap_sram_suspend = omap_sram_push(omap7xx_cpu_suspend,
668 omap7xx_cpu_suspend_sz);
670c104a 669 } else if (cpu_is_omap15xx()) {
670c104a
TL
670 omap_sram_suspend = omap_sram_push(omap1510_cpu_suspend,
671 omap1510_cpu_suspend_sz);
672 } else if (cpu_is_omap16xx()) {
670c104a
TL
673 omap_sram_suspend = omap_sram_push(omap1610_cpu_suspend,
674 omap1610_cpu_suspend_sz);
675 }
676
feb72f3b 677 if (omap_sram_suspend == NULL) {
670c104a
TL
678 printk(KERN_ERR "PM not initialized: Missing SRAM support\n");
679 return -ENODEV;
680 }
681
0bcd24b0 682 arm_pm_idle = omap1_pm_idle;
670c104a 683
4b9100dd 684 if (cpu_is_omap7xx())
372b1c32 685 setup_irq(INT_7XX_WAKE_UP_REQ, &omap_wakeup_irq);
670c104a
TL
686 else if (cpu_is_omap16xx())
687 setup_irq(INT_1610_WAKE_UP_REQ, &omap_wakeup_irq);
688
689 /* Program new power ramp-up time
690 * (0 for most boards since we don't lower voltage when in deep sleep)
691 */
692 omap_writew(ULPD_SETUP_ANALOG_CELL_3_VAL, ULPD_SETUP_ANALOG_CELL_3);
693
694 /* Setup ULPD POWER_CTRL_REG - enter deep sleep whenever possible */
695 omap_writew(ULPD_POWER_CTRL_REG_VAL, ULPD_POWER_CTRL);
696
697 /* Configure IDLECT3 */
4b9100dd 698 if (cpu_is_omap7xx())
7c006926 699 omap_writel(OMAP7XX_IDLECT3_VAL, OMAP7XX_IDLECT3);
670c104a
TL
700 else if (cpu_is_omap16xx())
701 omap_writel(OMAP1610_IDLECT3_VAL, OMAP1610_IDLECT3);
702
26398a70 703 suspend_set_ops(&omap_pm_ops);
670c104a
TL
704
705#if defined(DEBUG) && defined(CONFIG_PROC_FS)
706 omap_pm_init_proc();
707#endif
708
010bb0cf 709#ifdef CONFIG_OMAP_32K_TIMER
02bad5f9 710 error = sysfs_create_file(power_kobj, &sleep_while_idle_attr.attr);
2f5c4b6f 711 if (error)
851324c6 712 printk(KERN_ERR "sysfs_create_file failed: %d\n", error);
010bb0cf 713#endif
670c104a
TL
714
715 if (cpu_is_omap16xx()) {
716 /* configure LOW_PWR pin */
717 omap_cfg_reg(T20_1610_LOW_PWR);
718 }
719
720 return 0;
721}
722__initcall(omap_pm_init);