Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-omap2/pm.c |
| 3 | * |
| 4 | * OMAP2 Power Management Routines |
| 5 | * |
| 6 | * Copyright (C) 2006 Nokia Corporation |
| 7 | * Tony Lindgren <tony@atomide.com> |
| 8 | * |
| 9 | * Copyright (C) 2005 Texas Instruments, Inc. |
| 10 | * Richard Woodruff <r-woodruff2@ti.com> |
| 11 | * |
| 12 | * Based on pm.c for omap1 |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License version 2 as |
| 16 | * published by the Free Software Foundation. |
| 17 | */ |
| 18 | |
Rafael J. Wysocki | 95d9ffb | 2007-10-18 03:04:39 -0700 | [diff] [blame] | 19 | #include <linux/suspend.h> |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 20 | #include <linux/sched.h> |
| 21 | #include <linux/proc_fs.h> |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 22 | #include <linux/interrupt.h> |
| 23 | #include <linux/sysfs.h> |
| 24 | #include <linux/module.h> |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 25 | #include <linux/delay.h> |
Tony Lindgren | b81ad56 | 2008-03-18 10:59:00 +0200 | [diff] [blame] | 26 | #include <linux/clk.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 27 | #include <linux/io.h> |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 28 | |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 29 | #include <asm/irq.h> |
| 30 | #include <asm/atomic.h> |
| 31 | #include <asm/mach/time.h> |
| 32 | #include <asm/mach/irq.h> |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 33 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 34 | #include <mach/irqs.h> |
| 35 | #include <mach/clock.h> |
| 36 | #include <mach/sram.h> |
| 37 | #include <mach/pm.h> |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 38 | |
| 39 | static struct clk *vclk; |
| 40 | static void (*omap2_sram_idle)(void); |
| 41 | static void (*omap2_sram_suspend)(int dllctrl, int cpu_rev); |
| 42 | static void (*saved_idle)(void); |
| 43 | |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 44 | extern void __init pmdomain_init(void); |
| 45 | extern void pmdomain_set_autoidle(void); |
| 46 | |
| 47 | static unsigned int omap24xx_sleep_save[OMAP24XX_SLEEP_SAVE_SIZE]; |
| 48 | |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 49 | void omap2_pm_idle(void) |
| 50 | { |
| 51 | local_irq_disable(); |
| 52 | local_fiq_disable(); |
| 53 | if (need_resched()) { |
| 54 | local_fiq_enable(); |
| 55 | local_irq_enable(); |
| 56 | return; |
| 57 | } |
| 58 | |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 59 | omap2_sram_idle(); |
| 60 | local_fiq_enable(); |
| 61 | local_irq_enable(); |
| 62 | } |
| 63 | |
Rafael J. Wysocki | e6c5eb9 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 64 | static int omap2_pm_prepare(void) |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 65 | { |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 66 | /* We cannot sleep in idle until we have resumed */ |
| 67 | saved_idle = pm_idle; |
| 68 | pm_idle = NULL; |
Rafael J. Wysocki | e6c5eb9 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 69 | return 0; |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 70 | } |
| 71 | |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 72 | static int omap2_pm_suspend(void) |
| 73 | { |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 74 | return 0; |
| 75 | } |
| 76 | |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 77 | static int omap2_pm_enter(suspend_state_t state) |
| 78 | { |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 79 | int ret = 0; |
| 80 | |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 81 | switch (state) |
| 82 | { |
| 83 | case PM_SUSPEND_STANDBY: |
| 84 | case PM_SUSPEND_MEM: |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 85 | ret = omap2_pm_suspend(); |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 86 | break; |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 87 | default: |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 88 | ret = -EINVAL; |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 89 | } |
| 90 | |
Tony Lindgren | 22a16f3 | 2006-06-26 16:16:18 -0700 | [diff] [blame] | 91 | return ret; |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 92 | } |
| 93 | |
Rafael J. Wysocki | e6c5eb9 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 94 | static void omap2_pm_finish(void) |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 95 | { |
| 96 | pm_idle = saved_idle; |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 97 | } |
| 98 | |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 99 | static struct platform_suspend_ops omap_pm_ops = { |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 100 | .prepare = omap2_pm_prepare, |
| 101 | .enter = omap2_pm_enter, |
| 102 | .finish = omap2_pm_finish, |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 103 | .valid = suspend_valid_only_mem, |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 104 | }; |
| 105 | |
Paul Walmsley | fecb494 | 2009-01-27 19:12:50 -0700 | [diff] [blame] | 106 | static int __init omap2_pm_init(void) |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 107 | { |
Tony Lindgren | 670c104 | 2006-04-02 17:46:25 +0100 | [diff] [blame] | 108 | return 0; |
| 109 | } |
| 110 | |
| 111 | __initcall(omap2_pm_init); |