blob: 40a1ae31961027a5383123cca4da2f672003cd92 [file] [log] [blame]
Tony Lindgren670c1042006-04-02 17:46:25 +01001/*
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
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070038#include <linux/suspend.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010039#include <linux/sched.h>
Tony Lindgrenf9368c12013-04-11 11:03:41 -070040#include <linux/debugfs.h>
41#include <linux/seq_file.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010042#include <linux/interrupt.h>
43#include <linux/sysfs.h>
44#include <linux/module.h>
Russell Kingfced80c2008-09-06 12:10:45 +010045#include <linux/io.h>
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -050046#include <linux/atomic.h>
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +010047#include <linux/cpu.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010048
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070049#include <asm/fncpy.h>
Govindraj.R335aece2012-03-29 09:30:28 -070050#include <asm/system_misc.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010051#include <asm/irq.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010052#include <asm/mach/time.h>
53#include <asm/mach/irq.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010054
Tony Lindgren54b693d2012-10-02 13:39:28 -070055#include <mach/tc.h>
Tony Lindgren70c494c2012-09-19 10:46:56 -070056#include <mach/mux.h>
Tony Lindgren45c3eb72012-11-30 08:41:50 -080057#include <linux/omap-dma.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070058#include <plat/dmtimer.h>
Tony Lindgren670c1042006-04-02 17:46:25 +010059
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080060#include <mach/irqs.h>
61
62#include "iomap.h"
Paul Walmsleya135eaa2012-09-27 10:33:34 -060063#include "clock.h"
Kevin Hilmanc912f7e2009-05-15 11:29:28 -070064#include "pm.h"
Tony Lindgrenbf027ca2012-10-29 13:54:06 -070065#include "sram.h"
Kevin Hilmanc912f7e2009-05-15 11:29:28 -070066
Tony Lindgren670c1042006-04-02 17:46:25 +010067static unsigned int arm_sleep_save[ARM_SLEEP_SAVE_SIZE];
68static unsigned short dsp_sleep_save[DSP_SLEEP_SAVE_SIZE];
69static unsigned short ulpd_sleep_save[ULPD_SLEEP_SAVE_SIZE];
Alistair Buxton7c006922009-09-22 10:02:58 +010070static unsigned int mpui7xx_sleep_save[MPUI7XX_SLEEP_SAVE_SIZE];
Tony Lindgren670c1042006-04-02 17:46:25 +010071static unsigned int mpui1510_sleep_save[MPUI1510_SLEEP_SAVE_SIZE];
72static unsigned int mpui1610_sleep_save[MPUI1610_SLEEP_SAVE_SIZE];
73
Vivek Kutal010bb0c2007-12-11 21:46:31 +053074#ifdef CONFIG_OMAP_32K_TIMER
75
Tony Lindgren670c1042006-04-02 17:46:25 +010076static unsigned short enable_dyn_sleep = 1;
77
Greg Kroah-Hartman851324c2007-11-02 13:20:40 -070078static ssize_t idle_show(struct kobject *kobj, struct kobj_attribute *attr,
79 char *buf)
Tony Lindgren670c1042006-04-02 17:46:25 +010080{
81 return sprintf(buf, "%hu\n", enable_dyn_sleep);
82}
83
Greg Kroah-Hartman851324c2007-11-02 13:20:40 -070084static ssize_t idle_store(struct kobject *kobj, struct kobj_attribute *attr,
85 const char * buf, size_t n)
Tony Lindgren670c1042006-04-02 17:46:25 +010086{
87 unsigned short value;
88 if (sscanf(buf, "%hu", &value) != 1 ||
89 (value != 0 && value != 1)) {
90 printk(KERN_ERR "idle_sleep_store: Invalid value\n");
91 return -EINVAL;
92 }
93 enable_dyn_sleep = value;
94 return n;
95}
96
Greg Kroah-Hartman851324c2007-11-02 13:20:40 -070097static struct kobj_attribute sleep_while_idle_attr =
98 __ATTR(sleep_while_idle, 0644, idle_show, idle_store);
Tony Lindgren670c1042006-04-02 17:46:25 +010099
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530100#endif
101
Tony Lindgren670c1042006-04-02 17:46:25 +0100102static void (*omap_sram_suspend)(unsigned long r0, unsigned long r1) = NULL;
103
104/*
105 * Let's power down on idle, but only if we are really
106 * idle, because once we start down the path of
107 * going idle we continue to do idle even if we get
108 * a clock tick interrupt . .
109 */
Kevin Hilmanc912f7e2009-05-15 11:29:28 -0700110void omap1_pm_idle(void)
Tony Lindgren670c1042006-04-02 17:46:25 +0100111{
112 extern __u32 arm_idlect1_mask;
113 __u32 use_idlect1 = arm_idlect1_mask;
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530114 int do_sleep = 0;
Tony Lindgren670c1042006-04-02 17:46:25 +0100115
Tony Lindgren670c1042006-04-02 17:46:25 +0100116 local_fiq_disable();
Tony Lindgren670c1042006-04-02 17:46:25 +0100117
Tony Lindgrenbe26a002011-10-06 17:05:51 -0700118#if defined(CONFIG_OMAP_MPU_TIMER) && !defined(CONFIG_OMAP_DM_TIMER)
Tony Lindgren670c1042006-04-02 17:46:25 +0100119#warning Enable 32kHz OS timer in order to allow sleep states in idle
120 use_idlect1 = use_idlect1 & ~(1 << 9);
121#else
122
Tony Lindgren670c1042006-04-02 17:46:25 +0100123 while (enable_dyn_sleep) {
124
125#ifdef CONFIG_CBUS_TAHVO_USB
126 extern int vbus_active;
127 /* Clock requirements? */
128 if (vbus_active)
129 break;
130#endif
131 do_sleep = 1;
132 break;
133 }
134
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530135#endif
136
Tony Lindgren670c1042006-04-02 17:46:25 +0100137#ifdef CONFIG_OMAP_DM_TIMER
138 use_idlect1 = omap_dm_timer_modify_idlect_mask(use_idlect1);
139#endif
140
Imre Deak6ea59bb2007-03-05 17:34:05 +0200141 if (omap_dma_running())
Tony Lindgren670c1042006-04-02 17:46:25 +0100142 use_idlect1 &= ~(1 << 6);
Tony Lindgren670c1042006-04-02 17:46:25 +0100143
144 /* We should be able to remove the do_sleep variable and multiple
145 * tests above as soon as drivers, timer and DMA code have been fixed.
146 * Even the sleep block count should become obsolete. */
147 if ((use_idlect1 != ~0) || !do_sleep) {
148
149 __u32 saved_idlect1 = omap_readl(ARM_IDLECT1);
150 if (cpu_is_omap15xx())
151 use_idlect1 &= OMAP1510_BIG_SLEEP_REQUEST;
152 else
153 use_idlect1 &= OMAP1610_IDLECT1_SLEEP_VAL;
154 omap_writel(use_idlect1, ARM_IDLECT1);
155 __asm__ volatile ("mcr p15, 0, r0, c7, c0, 4");
156 omap_writel(saved_idlect1, ARM_IDLECT1);
157
158 local_fiq_enable();
Tony Lindgren670c1042006-04-02 17:46:25 +0100159 return;
160 }
161 omap_sram_suspend(omap_readl(ARM_IDLECT1),
162 omap_readl(ARM_IDLECT2));
Tony Lindgren670c1042006-04-02 17:46:25 +0100163
164 local_fiq_enable();
Tony Lindgren670c1042006-04-02 17:46:25 +0100165}
166
167/*
168 * Configuration of the wakeup event is board specific. For the
169 * moment we put it into this helper function. Later it may move
170 * to board specific files.
171 */
172static void omap_pm_wakeup_setup(void)
173{
174 u32 level1_wake = 0;
175 u32 level2_wake = OMAP_IRQ_BIT(INT_UART2);
176
177 /*
178 * Turn off all interrupts except GPIO bank 1, L1-2nd level cascade,
179 * and the L2 wakeup interrupts: keypad and UART2. Note that the
180 * drivers must still separately call omap_set_gpio_wakeup() to
181 * wake up to a GPIO interrupt.
182 */
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100183 if (cpu_is_omap7xx())
Alistair Buxton372b1c32009-09-18 04:09:39 +0100184 level1_wake = OMAP_IRQ_BIT(INT_7XX_GPIO_BANK1) |
185 OMAP_IRQ_BIT(INT_7XX_IH2_IRQ);
Tony Lindgren670c1042006-04-02 17:46:25 +0100186 else if (cpu_is_omap15xx())
187 level1_wake = OMAP_IRQ_BIT(INT_GPIO_BANK1) |
188 OMAP_IRQ_BIT(INT_1510_IH2_IRQ);
189 else if (cpu_is_omap16xx())
190 level1_wake = OMAP_IRQ_BIT(INT_GPIO_BANK1) |
191 OMAP_IRQ_BIT(INT_1610_IH2_IRQ);
192
193 omap_writel(~level1_wake, OMAP_IH1_MIR);
194
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100195 if (cpu_is_omap7xx()) {
Tony Lindgren670c1042006-04-02 17:46:25 +0100196 omap_writel(~level2_wake, OMAP_IH2_0_MIR);
Alistair Buxton372b1c32009-09-18 04:09:39 +0100197 omap_writel(~(OMAP_IRQ_BIT(INT_7XX_WAKE_UP_REQ) |
198 OMAP_IRQ_BIT(INT_7XX_MPUIO_KEYPAD)),
Tony Lindgren670c1042006-04-02 17:46:25 +0100199 OMAP_IH2_1_MIR);
200 } else if (cpu_is_omap15xx()) {
201 level2_wake |= OMAP_IRQ_BIT(INT_KEYBOARD);
202 omap_writel(~level2_wake, OMAP_IH2_MIR);
203 } else if (cpu_is_omap16xx()) {
204 level2_wake |= OMAP_IRQ_BIT(INT_KEYBOARD);
205 omap_writel(~level2_wake, OMAP_IH2_0_MIR);
206
207 /* INT_1610_WAKE_UP_REQ is needed for GPIO wakeup... */
208 omap_writel(~OMAP_IRQ_BIT(INT_1610_WAKE_UP_REQ),
209 OMAP_IH2_1_MIR);
210 omap_writel(~0x0, OMAP_IH2_2_MIR);
211 omap_writel(~0x0, OMAP_IH2_3_MIR);
212 }
213
214 /* New IRQ agreement, recalculate in cascade order */
215 omap_writel(1, OMAP_IH2_CONTROL);
216 omap_writel(1, OMAP_IH1_CONTROL);
217}
218
219#define EN_DSPCK 13 /* ARM_CKCTL */
220#define EN_APICK 6 /* ARM_IDLECT2 */
221#define DSP_EN 1 /* ARM_RSTCT1 */
222
Kevin Hilmanc912f7e2009-05-15 11:29:28 -0700223void omap1_pm_suspend(void)
Tony Lindgren670c1042006-04-02 17:46:25 +0100224{
225 unsigned long arg0 = 0, arg1 = 0;
226
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800227 printk(KERN_INFO "PM: OMAP%x is trying to enter deep sleep...\n",
228 omap_rev());
Tony Lindgren670c1042006-04-02 17:46:25 +0100229
230 omap_serial_wake_trigger(1);
231
Andrzej Zaborowskief557d72006-12-06 17:13:48 -0800232 if (!cpu_is_omap15xx())
233 omap_writew(0xffff, ULPD_SOFT_DISABLE_REQ_REG);
Tony Lindgren670c1042006-04-02 17:46:25 +0100234
235 /*
236 * Step 1: turn off interrupts (FIXME: NOTE: already disabled)
237 */
238
239 local_irq_disable();
240 local_fiq_disable();
241
242 /*
243 * Step 2: save registers
244 *
245 * The omap is a strange/beautiful device. The caches, memory
246 * and register state are preserved across power saves.
247 * We have to save and restore very little register state to
248 * idle the omap.
249 *
250 * Save interrupt, MPUI, ARM and UPLD control registers.
251 */
252
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100253 if (cpu_is_omap7xx()) {
Alistair Buxton7c006922009-09-22 10:02:58 +0100254 MPUI7XX_SAVE(OMAP_IH1_MIR);
255 MPUI7XX_SAVE(OMAP_IH2_0_MIR);
256 MPUI7XX_SAVE(OMAP_IH2_1_MIR);
257 MPUI7XX_SAVE(MPUI_CTRL);
258 MPUI7XX_SAVE(MPUI_DSP_BOOT_CONFIG);
259 MPUI7XX_SAVE(MPUI_DSP_API_CONFIG);
260 MPUI7XX_SAVE(EMIFS_CONFIG);
261 MPUI7XX_SAVE(EMIFF_SDRAM_CONFIG);
Tony Lindgren670c1042006-04-02 17:46:25 +0100262
263 } else if (cpu_is_omap15xx()) {
264 MPUI1510_SAVE(OMAP_IH1_MIR);
265 MPUI1510_SAVE(OMAP_IH2_MIR);
266 MPUI1510_SAVE(MPUI_CTRL);
267 MPUI1510_SAVE(MPUI_DSP_BOOT_CONFIG);
268 MPUI1510_SAVE(MPUI_DSP_API_CONFIG);
269 MPUI1510_SAVE(EMIFS_CONFIG);
270 MPUI1510_SAVE(EMIFF_SDRAM_CONFIG);
271 } else if (cpu_is_omap16xx()) {
272 MPUI1610_SAVE(OMAP_IH1_MIR);
273 MPUI1610_SAVE(OMAP_IH2_0_MIR);
274 MPUI1610_SAVE(OMAP_IH2_1_MIR);
275 MPUI1610_SAVE(OMAP_IH2_2_MIR);
276 MPUI1610_SAVE(OMAP_IH2_3_MIR);
277 MPUI1610_SAVE(MPUI_CTRL);
278 MPUI1610_SAVE(MPUI_DSP_BOOT_CONFIG);
279 MPUI1610_SAVE(MPUI_DSP_API_CONFIG);
280 MPUI1610_SAVE(EMIFS_CONFIG);
281 MPUI1610_SAVE(EMIFF_SDRAM_CONFIG);
282 }
283
284 ARM_SAVE(ARM_CKCTL);
285 ARM_SAVE(ARM_IDLECT1);
286 ARM_SAVE(ARM_IDLECT2);
287 if (!(cpu_is_omap15xx()))
288 ARM_SAVE(ARM_IDLECT3);
289 ARM_SAVE(ARM_EWUPCT);
290 ARM_SAVE(ARM_RSTCT1);
291 ARM_SAVE(ARM_RSTCT2);
292 ARM_SAVE(ARM_SYSST);
293 ULPD_SAVE(ULPD_CLOCK_CTRL);
294 ULPD_SAVE(ULPD_STATUS_REQ);
295
296 /* (Step 3 removed - we now allow deep sleep by default) */
297
298 /*
299 * Step 4: OMAP DSP Shutdown
300 */
301
302 /* stop DSP */
303 omap_writew(omap_readw(ARM_RSTCT1) & ~(1 << DSP_EN), ARM_RSTCT1);
304
Brian Swetland495f71d2006-06-26 16:16:03 -0700305 /* shut down dsp_ck */
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100306 if (!cpu_is_omap7xx())
Brian Swetland495f71d2006-06-26 16:16:03 -0700307 omap_writew(omap_readw(ARM_CKCTL) & ~(1 << EN_DSPCK), ARM_CKCTL);
Tony Lindgren670c1042006-04-02 17:46:25 +0100308
309 /* temporarily enabling api_ck to access DSP registers */
310 omap_writew(omap_readw(ARM_IDLECT2) | 1 << EN_APICK, ARM_IDLECT2);
311
312 /* save DSP registers */
313 DSP_SAVE(DSP_IDLECT2);
314
315 /* Stop all DSP domain clocks */
316 __raw_writew(0, DSP_IDLECT2);
317
318 /*
319 * Step 5: Wakeup Event Setup
320 */
321
322 omap_pm_wakeup_setup();
323
324 /*
325 * Step 6: ARM and Traffic controller shutdown
326 */
327
328 /* disable ARM watchdog */
329 omap_writel(0x00F5, OMAP_WDT_TIMER_MODE);
330 omap_writel(0x00A0, OMAP_WDT_TIMER_MODE);
331
332 /*
333 * Step 6b: ARM and Traffic controller shutdown
334 *
335 * Step 6 continues here. Prepare jump to power management
336 * assembly code in internal SRAM.
337 *
338 * Since the omap_cpu_suspend routine has been copied to
339 * SRAM, we'll do an indirect procedure call to it and pass the
340 * contents of arm_idlect1 and arm_idlect2 so it can restore
341 * them when it wakes up and it will return.
342 */
343
344 arg0 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT1];
345 arg1 = arm_sleep_save[ARM_SLEEP_SAVE_ARM_IDLECT2];
346
347 /*
348 * Step 6c: ARM and Traffic controller shutdown
349 *
350 * Jump to assembly code. The processor will stay there
351 * until wake up.
352 */
Tony Lindgrend30c7362007-05-10 15:50:16 -0700353 omap_sram_suspend(arg0, arg1);
Tony Lindgren670c1042006-04-02 17:46:25 +0100354
355 /*
356 * If we are here, processor is woken up!
357 */
358
359 /*
360 * Restore DSP clocks
361 */
362
363 /* again temporarily enabling api_ck to access DSP registers */
364 omap_writew(omap_readw(ARM_IDLECT2) | 1 << EN_APICK, ARM_IDLECT2);
365
366 /* Restore DSP domain clocks */
367 DSP_RESTORE(DSP_IDLECT2);
368
369 /*
370 * Restore ARM state, except ARM_IDLECT1/2 which omap_cpu_suspend did
371 */
372
373 if (!(cpu_is_omap15xx()))
374 ARM_RESTORE(ARM_IDLECT3);
375 ARM_RESTORE(ARM_CKCTL);
376 ARM_RESTORE(ARM_EWUPCT);
377 ARM_RESTORE(ARM_RSTCT1);
378 ARM_RESTORE(ARM_RSTCT2);
379 ARM_RESTORE(ARM_SYSST);
380 ULPD_RESTORE(ULPD_CLOCK_CTRL);
381 ULPD_RESTORE(ULPD_STATUS_REQ);
382
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100383 if (cpu_is_omap7xx()) {
Alistair Buxton7c006922009-09-22 10:02:58 +0100384 MPUI7XX_RESTORE(EMIFS_CONFIG);
385 MPUI7XX_RESTORE(EMIFF_SDRAM_CONFIG);
386 MPUI7XX_RESTORE(OMAP_IH1_MIR);
387 MPUI7XX_RESTORE(OMAP_IH2_0_MIR);
388 MPUI7XX_RESTORE(OMAP_IH2_1_MIR);
Tony Lindgren670c1042006-04-02 17:46:25 +0100389 } else if (cpu_is_omap15xx()) {
390 MPUI1510_RESTORE(MPUI_CTRL);
391 MPUI1510_RESTORE(MPUI_DSP_BOOT_CONFIG);
392 MPUI1510_RESTORE(MPUI_DSP_API_CONFIG);
393 MPUI1510_RESTORE(EMIFS_CONFIG);
394 MPUI1510_RESTORE(EMIFF_SDRAM_CONFIG);
395 MPUI1510_RESTORE(OMAP_IH1_MIR);
396 MPUI1510_RESTORE(OMAP_IH2_MIR);
397 } else if (cpu_is_omap16xx()) {
398 MPUI1610_RESTORE(MPUI_CTRL);
399 MPUI1610_RESTORE(MPUI_DSP_BOOT_CONFIG);
400 MPUI1610_RESTORE(MPUI_DSP_API_CONFIG);
401 MPUI1610_RESTORE(EMIFS_CONFIG);
402 MPUI1610_RESTORE(EMIFF_SDRAM_CONFIG);
403
404 MPUI1610_RESTORE(OMAP_IH1_MIR);
405 MPUI1610_RESTORE(OMAP_IH2_0_MIR);
406 MPUI1610_RESTORE(OMAP_IH2_1_MIR);
407 MPUI1610_RESTORE(OMAP_IH2_2_MIR);
408 MPUI1610_RESTORE(OMAP_IH2_3_MIR);
409 }
410
Andrzej Zaborowskief557d72006-12-06 17:13:48 -0800411 if (!cpu_is_omap15xx())
412 omap_writew(0, ULPD_SOFT_DISABLE_REQ_REG);
Tony Lindgren670c1042006-04-02 17:46:25 +0100413
414 /*
Simon Arlott6cbdc8c2007-05-11 20:40:30 +0100415 * Re-enable interrupts
Tony Lindgren670c1042006-04-02 17:46:25 +0100416 */
417
418 local_irq_enable();
419 local_fiq_enable();
420
421 omap_serial_wake_trigger(0);
422
Lauri Leukkunen84a34342008-12-10 17:36:31 -0800423 printk(KERN_INFO "PM: OMAP%x is re-starting from deep sleep...\n",
424 omap_rev());
Tony Lindgren670c1042006-04-02 17:46:25 +0100425}
426
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700427#ifdef CONFIG_DEBUG_FS
Tony Lindgren670c1042006-04-02 17:46:25 +0100428/*
429 * Read system PM registers for debugging
430 */
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700431static int omap_pm_debug_show(struct seq_file *m, void *v)
Tony Lindgren670c1042006-04-02 17:46:25 +0100432{
Tony Lindgren670c1042006-04-02 17:46:25 +0100433 ARM_SAVE(ARM_CKCTL);
434 ARM_SAVE(ARM_IDLECT1);
435 ARM_SAVE(ARM_IDLECT2);
436 if (!(cpu_is_omap15xx()))
437 ARM_SAVE(ARM_IDLECT3);
438 ARM_SAVE(ARM_EWUPCT);
439 ARM_SAVE(ARM_RSTCT1);
440 ARM_SAVE(ARM_RSTCT2);
441 ARM_SAVE(ARM_SYSST);
442
443 ULPD_SAVE(ULPD_IT_STATUS);
444 ULPD_SAVE(ULPD_CLOCK_CTRL);
445 ULPD_SAVE(ULPD_SOFT_REQ);
446 ULPD_SAVE(ULPD_STATUS_REQ);
447 ULPD_SAVE(ULPD_DPLL_CTRL);
448 ULPD_SAVE(ULPD_POWER_CTRL);
449
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100450 if (cpu_is_omap7xx()) {
Alistair Buxton7c006922009-09-22 10:02:58 +0100451 MPUI7XX_SAVE(MPUI_CTRL);
452 MPUI7XX_SAVE(MPUI_DSP_STATUS);
453 MPUI7XX_SAVE(MPUI_DSP_BOOT_CONFIG);
454 MPUI7XX_SAVE(MPUI_DSP_API_CONFIG);
455 MPUI7XX_SAVE(EMIFF_SDRAM_CONFIG);
456 MPUI7XX_SAVE(EMIFS_CONFIG);
Tony Lindgren670c1042006-04-02 17:46:25 +0100457 } else if (cpu_is_omap15xx()) {
458 MPUI1510_SAVE(MPUI_CTRL);
459 MPUI1510_SAVE(MPUI_DSP_STATUS);
460 MPUI1510_SAVE(MPUI_DSP_BOOT_CONFIG);
461 MPUI1510_SAVE(MPUI_DSP_API_CONFIG);
462 MPUI1510_SAVE(EMIFF_SDRAM_CONFIG);
463 MPUI1510_SAVE(EMIFS_CONFIG);
464 } else if (cpu_is_omap16xx()) {
465 MPUI1610_SAVE(MPUI_CTRL);
466 MPUI1610_SAVE(MPUI_DSP_STATUS);
467 MPUI1610_SAVE(MPUI_DSP_BOOT_CONFIG);
468 MPUI1610_SAVE(MPUI_DSP_API_CONFIG);
469 MPUI1610_SAVE(EMIFF_SDRAM_CONFIG);
470 MPUI1610_SAVE(EMIFS_CONFIG);
471 }
472
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700473 seq_printf(m,
Tony Lindgren670c1042006-04-02 17:46:25 +0100474 "ARM_CKCTL_REG: 0x%-8x \n"
475 "ARM_IDLECT1_REG: 0x%-8x \n"
476 "ARM_IDLECT2_REG: 0x%-8x \n"
477 "ARM_IDLECT3_REG: 0x%-8x \n"
478 "ARM_EWUPCT_REG: 0x%-8x \n"
479 "ARM_RSTCT1_REG: 0x%-8x \n"
480 "ARM_RSTCT2_REG: 0x%-8x \n"
481 "ARM_SYSST_REG: 0x%-8x \n"
482 "ULPD_IT_STATUS_REG: 0x%-4x \n"
483 "ULPD_CLOCK_CTRL_REG: 0x%-4x \n"
484 "ULPD_SOFT_REQ_REG: 0x%-4x \n"
485 "ULPD_DPLL_CTRL_REG: 0x%-4x \n"
486 "ULPD_STATUS_REQ_REG: 0x%-4x \n"
487 "ULPD_POWER_CTRL_REG: 0x%-4x \n",
488 ARM_SHOW(ARM_CKCTL),
489 ARM_SHOW(ARM_IDLECT1),
490 ARM_SHOW(ARM_IDLECT2),
491 ARM_SHOW(ARM_IDLECT3),
492 ARM_SHOW(ARM_EWUPCT),
493 ARM_SHOW(ARM_RSTCT1),
494 ARM_SHOW(ARM_RSTCT2),
495 ARM_SHOW(ARM_SYSST),
496 ULPD_SHOW(ULPD_IT_STATUS),
497 ULPD_SHOW(ULPD_CLOCK_CTRL),
498 ULPD_SHOW(ULPD_SOFT_REQ),
499 ULPD_SHOW(ULPD_DPLL_CTRL),
500 ULPD_SHOW(ULPD_STATUS_REQ),
501 ULPD_SHOW(ULPD_POWER_CTRL));
502
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700503 if (cpu_is_omap7xx()) {
504 seq_printf(m,
Alistair Buxton7c006922009-09-22 10:02:58 +0100505 "MPUI7XX_CTRL_REG 0x%-8x \n"
506 "MPUI7XX_DSP_STATUS_REG: 0x%-8x \n"
507 "MPUI7XX_DSP_BOOT_CONFIG_REG: 0x%-8x \n"
508 "MPUI7XX_DSP_API_CONFIG_REG: 0x%-8x \n"
509 "MPUI7XX_SDRAM_CONFIG_REG: 0x%-8x \n"
510 "MPUI7XX_EMIFS_CONFIG_REG: 0x%-8x \n",
511 MPUI7XX_SHOW(MPUI_CTRL),
512 MPUI7XX_SHOW(MPUI_DSP_STATUS),
513 MPUI7XX_SHOW(MPUI_DSP_BOOT_CONFIG),
514 MPUI7XX_SHOW(MPUI_DSP_API_CONFIG),
515 MPUI7XX_SHOW(EMIFF_SDRAM_CONFIG),
516 MPUI7XX_SHOW(EMIFS_CONFIG));
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700517 } else if (cpu_is_omap15xx()) {
518 seq_printf(m,
Tony Lindgren670c1042006-04-02 17:46:25 +0100519 "MPUI1510_CTRL_REG 0x%-8x \n"
520 "MPUI1510_DSP_STATUS_REG: 0x%-8x \n"
521 "MPUI1510_DSP_BOOT_CONFIG_REG: 0x%-8x \n"
522 "MPUI1510_DSP_API_CONFIG_REG: 0x%-8x \n"
523 "MPUI1510_SDRAM_CONFIG_REG: 0x%-8x \n"
524 "MPUI1510_EMIFS_CONFIG_REG: 0x%-8x \n",
525 MPUI1510_SHOW(MPUI_CTRL),
526 MPUI1510_SHOW(MPUI_DSP_STATUS),
527 MPUI1510_SHOW(MPUI_DSP_BOOT_CONFIG),
528 MPUI1510_SHOW(MPUI_DSP_API_CONFIG),
529 MPUI1510_SHOW(EMIFF_SDRAM_CONFIG),
530 MPUI1510_SHOW(EMIFS_CONFIG));
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700531 } else if (cpu_is_omap16xx()) {
532 seq_printf(m,
Tony Lindgren670c1042006-04-02 17:46:25 +0100533 "MPUI1610_CTRL_REG 0x%-8x \n"
534 "MPUI1610_DSP_STATUS_REG: 0x%-8x \n"
535 "MPUI1610_DSP_BOOT_CONFIG_REG: 0x%-8x \n"
536 "MPUI1610_DSP_API_CONFIG_REG: 0x%-8x \n"
537 "MPUI1610_SDRAM_CONFIG_REG: 0x%-8x \n"
538 "MPUI1610_EMIFS_CONFIG_REG: 0x%-8x \n",
539 MPUI1610_SHOW(MPUI_CTRL),
540 MPUI1610_SHOW(MPUI_DSP_STATUS),
541 MPUI1610_SHOW(MPUI_DSP_BOOT_CONFIG),
542 MPUI1610_SHOW(MPUI_DSP_API_CONFIG),
543 MPUI1610_SHOW(EMIFF_SDRAM_CONFIG),
544 MPUI1610_SHOW(EMIFS_CONFIG));
Tony Lindgren670c1042006-04-02 17:46:25 +0100545 }
Tony Lindgren670c1042006-04-02 17:46:25 +0100546
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700547 return 0;
Tony Lindgren670c1042006-04-02 17:46:25 +0100548}
549
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700550static int omap_pm_debug_open(struct inode *inode, struct file *file)
Tony Lindgren670c1042006-04-02 17:46:25 +0100551{
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700552 return single_open(file, omap_pm_debug_show,
553 &inode->i_private);
Tony Lindgren670c1042006-04-02 17:46:25 +0100554}
555
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700556static const struct file_operations omap_pm_debug_fops = {
557 .open = omap_pm_debug_open,
558 .read = seq_read,
559 .llseek = seq_lseek,
Al Virob11ac202013-05-05 00:07:22 -0400560 .release = single_release,
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700561};
562
563static void omap_pm_init_debugfs(void)
564{
565 struct dentry *d;
566
567 d = debugfs_create_dir("pm_debug", NULL);
568 if (!d)
569 return;
570
571 (void) debugfs_create_file("omap_pm", S_IWUSR | S_IRUGO,
572 d, NULL, &omap_pm_debug_fops);
573}
574
575#endif /* CONFIG_DEBUG_FS */
Tony Lindgren670c1042006-04-02 17:46:25 +0100576
Tony Lindgren670c1042006-04-02 17:46:25 +0100577/*
578 * omap_pm_prepare - Do preliminary suspend work.
Tony Lindgren670c1042006-04-02 17:46:25 +0100579 *
580 */
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700581static int omap_pm_prepare(void)
Tony Lindgren670c1042006-04-02 17:46:25 +0100582{
Tony Lindgren670c1042006-04-02 17:46:25 +0100583 /* We cannot sleep in idle until we have resumed */
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +0100584 cpu_idle_poll_ctrl(true);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700585 return 0;
Tony Lindgren670c1042006-04-02 17:46:25 +0100586}
587
588
589/*
590 * omap_pm_enter - Actually enter a sleep state.
591 * @state: State we're entering.
592 *
593 */
594
595static int omap_pm_enter(suspend_state_t state)
596{
597 switch (state)
598 {
599 case PM_SUSPEND_STANDBY:
600 case PM_SUSPEND_MEM:
Kevin Hilmanc912f7e2009-05-15 11:29:28 -0700601 omap1_pm_suspend();
Tony Lindgren670c1042006-04-02 17:46:25 +0100602 break;
Tony Lindgren670c1042006-04-02 17:46:25 +0100603 default:
604 return -EINVAL;
605 }
606
607 return 0;
608}
609
610
611/**
612 * omap_pm_finish - Finish up suspend sequence.
Tony Lindgren670c1042006-04-02 17:46:25 +0100613 *
614 * This is called after we wake back up (or if entering the sleep state
615 * failed).
616 */
617
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700618static void omap_pm_finish(void)
Tony Lindgren670c1042006-04-02 17:46:25 +0100619{
Thomas Gleixnerf7b861b2013-03-21 22:49:38 +0100620 cpu_idle_poll_ctrl(false);
Tony Lindgren670c1042006-04-02 17:46:25 +0100621}
622
623
Jeff Garzike8f2af12007-10-26 05:40:25 -0400624static irqreturn_t omap_wakeup_interrupt(int irq, void *dev)
Tony Lindgren670c1042006-04-02 17:46:25 +0100625{
626 return IRQ_HANDLED;
627}
628
629static struct irqaction omap_wakeup_irq = {
630 .name = "peripheral wakeup",
Tony Lindgren670c1042006-04-02 17:46:25 +0100631 .handler = omap_wakeup_interrupt
632};
633
634
635
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100636static const struct platform_suspend_ops omap_pm_ops = {
Tony Lindgren670c1042006-04-02 17:46:25 +0100637 .prepare = omap_pm_prepare,
638 .enter = omap_pm_enter,
639 .finish = omap_pm_finish,
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700640 .valid = suspend_valid_only_mem,
Tony Lindgren670c1042006-04-02 17:46:25 +0100641};
642
643static int __init omap_pm_init(void)
644{
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530645
646#ifdef CONFIG_OMAP_32K_TIMER
Dirk Behme2f5c4b62006-12-06 17:14:04 -0800647 int error;
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530648#endif
Dirk Behme2f5c4b62006-12-06 17:14:04 -0800649
Tony Lindgren7f9187c2010-12-10 09:46:24 -0800650 if (!cpu_class_is_omap1())
651 return -ENODEV;
652
Tony Lindgren670c1042006-04-02 17:46:25 +0100653 printk("Power Management for TI OMAP.\n");
654
655 /*
656 * We copy the assembler sleep/wakeup routines to SRAM.
657 * These routines need to be in SRAM as that's the only
658 * memory the MPU can see when it wakes up.
659 */
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100660 if (cpu_is_omap7xx()) {
Alistair Buxton7c006922009-09-22 10:02:58 +0100661 omap_sram_suspend = omap_sram_push(omap7xx_cpu_suspend,
662 omap7xx_cpu_suspend_sz);
Tony Lindgren670c1042006-04-02 17:46:25 +0100663 } else if (cpu_is_omap15xx()) {
Tony Lindgren670c1042006-04-02 17:46:25 +0100664 omap_sram_suspend = omap_sram_push(omap1510_cpu_suspend,
665 omap1510_cpu_suspend_sz);
666 } else if (cpu_is_omap16xx()) {
Tony Lindgren670c1042006-04-02 17:46:25 +0100667 omap_sram_suspend = omap_sram_push(omap1610_cpu_suspend,
668 omap1610_cpu_suspend_sz);
669 }
670
Vivek Kutalfeb72f32007-12-17 01:56:33 -0800671 if (omap_sram_suspend == NULL) {
Tony Lindgren670c1042006-04-02 17:46:25 +0100672 printk(KERN_ERR "PM not initialized: Missing SRAM support\n");
673 return -ENODEV;
674 }
675
Nicolas Pitre0bcd24b2012-01-04 16:27:48 -0500676 arm_pm_idle = omap1_pm_idle;
Tony Lindgren670c1042006-04-02 17:46:25 +0100677
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100678 if (cpu_is_omap7xx())
Alistair Buxton372b1c32009-09-18 04:09:39 +0100679 setup_irq(INT_7XX_WAKE_UP_REQ, &omap_wakeup_irq);
Tony Lindgren670c1042006-04-02 17:46:25 +0100680 else if (cpu_is_omap16xx())
681 setup_irq(INT_1610_WAKE_UP_REQ, &omap_wakeup_irq);
682
683 /* Program new power ramp-up time
684 * (0 for most boards since we don't lower voltage when in deep sleep)
685 */
686 omap_writew(ULPD_SETUP_ANALOG_CELL_3_VAL, ULPD_SETUP_ANALOG_CELL_3);
687
688 /* Setup ULPD POWER_CTRL_REG - enter deep sleep whenever possible */
689 omap_writew(ULPD_POWER_CTRL_REG_VAL, ULPD_POWER_CTRL);
690
691 /* Configure IDLECT3 */
Alistair Buxton4b9100d2009-09-22 06:41:09 +0100692 if (cpu_is_omap7xx())
Alistair Buxton7c006922009-09-22 10:02:58 +0100693 omap_writel(OMAP7XX_IDLECT3_VAL, OMAP7XX_IDLECT3);
Tony Lindgren670c1042006-04-02 17:46:25 +0100694 else if (cpu_is_omap16xx())
695 omap_writel(OMAP1610_IDLECT3_VAL, OMAP1610_IDLECT3);
696
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700697 suspend_set_ops(&omap_pm_ops);
Tony Lindgren670c1042006-04-02 17:46:25 +0100698
Tony Lindgrenf9368c12013-04-11 11:03:41 -0700699#ifdef CONFIG_DEBUG_FS
700 omap_pm_init_debugfs();
Tony Lindgren670c1042006-04-02 17:46:25 +0100701#endif
702
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530703#ifdef CONFIG_OMAP_32K_TIMER
David Brownell02bad5f2008-02-24 19:08:26 -0800704 error = sysfs_create_file(power_kobj, &sleep_while_idle_attr.attr);
Dirk Behme2f5c4b62006-12-06 17:14:04 -0800705 if (error)
Greg Kroah-Hartman851324c2007-11-02 13:20:40 -0700706 printk(KERN_ERR "sysfs_create_file failed: %d\n", error);
Vivek Kutal010bb0c2007-12-11 21:46:31 +0530707#endif
Tony Lindgren670c1042006-04-02 17:46:25 +0100708
709 if (cpu_is_omap16xx()) {
710 /* configure LOW_PWR pin */
711 omap_cfg_reg(T20_1610_LOW_PWR);
712 }
713
714 return 0;
715}
716__initcall(omap_pm_init);