blob: c77f6db8a63d469fe376a632353d379c3514a7c0 [file] [log] [blame]
Kevin Hilman8bd22942009-05-28 10:56:16 -07001/*
2 * OMAP3 Power Management Routines
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation
5 * Tony Lindgren <tony@atomide.com>
6 * Jouni Hogander
7 *
Rajendra Nayak2f5939c2008-09-26 17:50:07 +05308 * Copyright (C) 2007 Texas Instruments, Inc.
9 * Rajendra Nayak <rnayak@ti.com>
10 *
Kevin Hilman8bd22942009-05-28 10:56:16 -070011 * Copyright (C) 2005 Texas Instruments, Inc.
12 * Richard Woodruff <r-woodruff2@ti.com>
13 *
14 * Based on pm.c for omap1
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
19 */
20
21#include <linux/pm.h>
22#include <linux/suspend.h>
23#include <linux/interrupt.h>
24#include <linux/module.h>
25#include <linux/list.h>
26#include <linux/err.h>
27#include <linux/gpio.h>
Kevin Hilmanc40552b2009-10-06 14:25:09 -070028#include <linux/clk.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070029
Tony Lindgrence491cf2009-10-20 09:40:47 -070030#include <plat/sram.h>
31#include <plat/clockdomain.h>
32#include <plat/powerdomain.h>
33#include <plat/control.h>
34#include <plat/serial.h>
Rajendra Nayak61255ab2008-09-26 17:49:56 +053035#include <plat/sdrc.h>
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053036#include <plat/prcm.h>
37#include <plat/gpmc.h>
Tero Kristof2d11852008-08-28 13:13:31 +000038#include <plat/dma.h>
Kevin Hilmand7814e42009-10-06 14:30:23 -070039#include <plat/dmtimer.h>
Kevin Hilman8bd22942009-05-28 10:56:16 -070040
Rajendra Nayak57f277b2008-09-26 17:49:34 +053041#include <asm/tlbflush.h>
42
Kevin Hilman8bd22942009-05-28 10:56:16 -070043#include "cm.h"
44#include "cm-regbits-34xx.h"
45#include "prm-regbits-34xx.h"
46
47#include "prm.h"
48#include "pm.h"
Tero Kristo13a6fe02008-10-13 13:17:06 +030049#include "sdrc.h"
50
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053051/* Scratchpad offsets */
52#define OMAP343X_TABLE_ADDRESS_OFFSET 0x31
53#define OMAP343X_TABLE_VALUE_OFFSET 0x30
54#define OMAP343X_CONTROL_REG_VALUE_OFFSET 0x32
55
Kevin Hilmanc40552b2009-10-06 14:25:09 -070056u32 enable_off_mode;
57u32 sleep_while_idle;
Kevin Hilmand7814e42009-10-06 14:30:23 -070058u32 wakeup_timer_seconds;
Kevin Hilmanc40552b2009-10-06 14:25:09 -070059
Kevin Hilman8bd22942009-05-28 10:56:16 -070060struct power_state {
61 struct powerdomain *pwrdm;
62 u32 next_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070063#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -070064 u32 saved_state;
Kevin Hilman10f90ed2009-06-24 11:39:18 -070065#endif
Kevin Hilman8bd22942009-05-28 10:56:16 -070066 struct list_head node;
67};
68
69static LIST_HEAD(pwrst_list);
70
71static void (*_omap_sram_idle)(u32 *addr, int save_state);
72
Tero Kristo27d59a42008-10-13 13:15:00 +030073static int (*_omap_save_secure_sram)(u32 *addr);
74
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053075static struct powerdomain *mpu_pwrdm, *neon_pwrdm;
76static struct powerdomain *core_pwrdm, *per_pwrdm;
Tero Kristoc16c3f62008-12-11 16:46:57 +020077static struct powerdomain *cam_pwrdm;
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +053078
Rajendra Nayak2f5939c2008-09-26 17:50:07 +053079static inline void omap3_per_save_context(void)
80{
81 omap_gpio_save_context();
82}
83
84static inline void omap3_per_restore_context(void)
85{
86 omap_gpio_restore_context();
87}
88
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +020089static void omap3_enable_io_chain(void)
90{
91 int timeout = 0;
92
93 if (omap_rev() >= OMAP3430_REV_ES3_1) {
94 prm_set_mod_reg_bits(OMAP3430_EN_IO_CHAIN, WKUP_MOD, PM_WKEN);
95 /* Do a readback to assure write has been done */
96 prm_read_mod_reg(WKUP_MOD, PM_WKEN);
97
98 while (!(prm_read_mod_reg(WKUP_MOD, PM_WKST) &
99 OMAP3430_ST_IO_CHAIN)) {
100 timeout++;
101 if (timeout > 1000) {
102 printk(KERN_ERR "Wake up daisy chain "
103 "activation failed.\n");
104 return;
105 }
106 prm_set_mod_reg_bits(OMAP3430_ST_IO_CHAIN,
107 WKUP_MOD, PM_WKST);
108 }
109 }
110}
111
112static void omap3_disable_io_chain(void)
113{
114 if (omap_rev() >= OMAP3430_REV_ES3_1)
115 prm_clear_mod_reg_bits(OMAP3430_EN_IO_CHAIN, WKUP_MOD, PM_WKEN);
116}
117
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530118static void omap3_core_save_context(void)
119{
120 u32 control_padconf_off;
121
122 /* Save the padconf registers */
123 control_padconf_off = omap_ctrl_readl(OMAP343X_CONTROL_PADCONF_OFF);
124 control_padconf_off |= START_PADCONF_SAVE;
125 omap_ctrl_writel(control_padconf_off, OMAP343X_CONTROL_PADCONF_OFF);
126 /* wait for the save to complete */
127 while (!omap_ctrl_readl(OMAP343X_CONTROL_GENERAL_PURPOSE_STATUS)
128 & PADCONF_SAVE_DONE)
129 ;
130 /* Save the Interrupt controller context */
131 omap_intc_save_context();
132 /* Save the GPMC context */
133 omap3_gpmc_save_context();
134 /* Save the system control module context, padconf already save above*/
135 omap3_control_save_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000136 omap_dma_global_context_save();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530137}
138
139static void omap3_core_restore_context(void)
140{
141 /* Restore the control module context, padconf restored by h/w */
142 omap3_control_restore_context();
143 /* Restore the GPMC context */
144 omap3_gpmc_restore_context();
145 /* Restore the interrupt controller context */
146 omap_intc_restore_context();
Tero Kristof2d11852008-08-28 13:13:31 +0000147 omap_dma_global_context_restore();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530148}
149
Tero Kristo9d971402008-12-12 11:20:05 +0200150/*
151 * FIXME: This function should be called before entering off-mode after
152 * OMAP3 secure services have been accessed. Currently it is only called
153 * once during boot sequence, but this works as we are not using secure
154 * services.
155 */
Tero Kristo27d59a42008-10-13 13:15:00 +0300156static void omap3_save_secure_ram_context(u32 target_mpu_state)
157{
158 u32 ret;
159
160 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
Tero Kristo27d59a42008-10-13 13:15:00 +0300161 /*
162 * MPU next state must be set to POWER_ON temporarily,
163 * otherwise the WFI executed inside the ROM code
164 * will hang the system.
165 */
166 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_ON);
167 ret = _omap_save_secure_sram((u32 *)
168 __pa(omap3_secure_ram_storage));
169 pwrdm_set_next_pwrst(mpu_pwrdm, target_mpu_state);
170 /* Following is for error tracking, it should not happen */
171 if (ret) {
172 printk(KERN_ERR "save_secure_sram() returns %08x\n",
173 ret);
174 while (1)
175 ;
176 }
177 }
178}
179
Jon Hunter77da2d92009-06-27 00:07:25 -0500180/*
181 * PRCM Interrupt Handler Helper Function
182 *
183 * The purpose of this function is to clear any wake-up events latched
184 * in the PRCM PM_WKST_x registers. It is possible that a wake-up event
185 * may occur whilst attempting to clear a PM_WKST_x register and thus
186 * set another bit in this register. A while loop is used to ensure
187 * that any peripheral wake-up events occurring while attempting to
188 * clear the PM_WKST_x are detected and cleared.
189 */
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700190static int prcm_clear_mod_irqs(s16 module, u8 regs)
Jon Hunter77da2d92009-06-27 00:07:25 -0500191{
Vikram Pandita71a80772009-07-17 19:33:09 -0500192 u32 wkst, fclk, iclk, clken;
Jon Hunter77da2d92009-06-27 00:07:25 -0500193 u16 wkst_off = (regs == 3) ? OMAP3430ES2_PM_WKST3 : PM_WKST1;
194 u16 fclk_off = (regs == 3) ? OMAP3430ES2_CM_FCLKEN3 : CM_FCLKEN1;
195 u16 iclk_off = (regs == 3) ? CM_ICLKEN3 : CM_ICLKEN1;
Paul Walmsley5d805972009-07-22 10:18:07 -0700196 u16 grpsel_off = (regs == 3) ?
197 OMAP3430ES2_PM_MPUGRPSEL3 : OMAP3430_PM_MPUGRPSEL;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700198 int c = 0;
Jon Hunter77da2d92009-06-27 00:07:25 -0500199
200 wkst = prm_read_mod_reg(module, wkst_off);
Paul Walmsley5d805972009-07-22 10:18:07 -0700201 wkst &= prm_read_mod_reg(module, grpsel_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500202 if (wkst) {
203 iclk = cm_read_mod_reg(module, iclk_off);
204 fclk = cm_read_mod_reg(module, fclk_off);
205 while (wkst) {
Vikram Pandita71a80772009-07-17 19:33:09 -0500206 clken = wkst;
207 cm_set_mod_reg_bits(clken, module, iclk_off);
208 /*
209 * For USBHOST, we don't know whether HOST1 or
210 * HOST2 woke us up, so enable both f-clocks
211 */
212 if (module == OMAP3430ES2_USBHOST_MOD)
213 clken |= 1 << OMAP3430ES2_EN_USBHOST2_SHIFT;
214 cm_set_mod_reg_bits(clken, module, fclk_off);
Jon Hunter77da2d92009-06-27 00:07:25 -0500215 prm_write_mod_reg(wkst, module, wkst_off);
216 wkst = prm_read_mod_reg(module, wkst_off);
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700217 c++;
Jon Hunter77da2d92009-06-27 00:07:25 -0500218 }
219 cm_write_mod_reg(iclk, module, iclk_off);
220 cm_write_mod_reg(fclk, module, fclk_off);
221 }
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700222
223 return c;
224}
225
226static int _prcm_int_handle_wakeup(void)
227{
228 int c;
229
230 c = prcm_clear_mod_irqs(WKUP_MOD, 1);
231 c += prcm_clear_mod_irqs(CORE_MOD, 1);
232 c += prcm_clear_mod_irqs(OMAP3430_PER_MOD, 1);
233 if (omap_rev() > OMAP3430_REV_ES1_0) {
234 c += prcm_clear_mod_irqs(CORE_MOD, 3);
235 c += prcm_clear_mod_irqs(OMAP3430ES2_USBHOST_MOD, 1);
236 }
237
238 return c;
Jon Hunter77da2d92009-06-27 00:07:25 -0500239}
240
241/*
242 * PRCM Interrupt Handler
243 *
244 * The PRM_IRQSTATUS_MPU register indicates if there are any pending
245 * interrupts from the PRCM for the MPU. These bits must be cleared in
246 * order to clear the PRCM interrupt. The PRCM interrupt handler is
247 * implemented to simply clear the PRM_IRQSTATUS_MPU in order to clear
248 * the PRCM interrupt. Please note that bit 0 of the PRM_IRQSTATUS_MPU
249 * register indicates that a wake-up event is pending for the MPU and
250 * this bit can only be cleared if the all the wake-up events latched
251 * in the various PM_WKST_x registers have been cleared. The interrupt
252 * handler is implemented using a do-while loop so that if a wake-up
253 * event occurred during the processing of the prcm interrupt handler
254 * (setting a bit in the corresponding PM_WKST_x register and thus
255 * preventing us from clearing bit 0 of the PRM_IRQSTATUS_MPU register)
256 * this would be handled.
257 */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700258static irqreturn_t prcm_interrupt_handler (int irq, void *dev_id)
259{
Jon Hunter77da2d92009-06-27 00:07:25 -0500260 u32 irqstatus_mpu;
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700261 int c = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700262
Jon Hunter77da2d92009-06-27 00:07:25 -0500263 do {
Jon Hunter77da2d92009-06-27 00:07:25 -0500264 irqstatus_mpu = prm_read_mod_reg(OCP_MOD,
265 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
Paul Walmsley8cb0ac92009-07-22 10:29:02 -0700266
267 if (irqstatus_mpu & (OMAP3430_WKUP_ST | OMAP3430_IO_ST)) {
268 c = _prcm_int_handle_wakeup();
269
270 /*
271 * Is the MPU PRCM interrupt handler racing with the
272 * IVA2 PRCM interrupt handler ?
273 */
274 WARN(c == 0, "prcm: WARNING: PRCM indicated MPU wakeup "
275 "but no wakeup sources are marked\n");
276 } else {
277 /* XXX we need to expand our PRCM interrupt handler */
278 WARN(1, "prcm: WARNING: PRCM interrupt received, but "
279 "no code to handle it (%08x)\n", irqstatus_mpu);
280 }
281
Jon Hunter77da2d92009-06-27 00:07:25 -0500282 prm_write_mod_reg(irqstatus_mpu, OCP_MOD,
283 OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700284
Jon Hunter77da2d92009-06-27 00:07:25 -0500285 } while (prm_read_mod_reg(OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET));
Kevin Hilman8bd22942009-05-28 10:56:16 -0700286
287 return IRQ_HANDLED;
288}
289
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530290static void restore_control_register(u32 val)
291{
292 __asm__ __volatile__ ("mcr p15, 0, %0, c1, c0, 0" : : "r" (val));
293}
294
295/* Function to restore the table entry that was modified for enabling MMU */
296static void restore_table_entry(void)
297{
298 u32 *scratchpad_address;
299 u32 previous_value, control_reg_value;
300 u32 *address;
301
302 scratchpad_address = OMAP2_L4_IO_ADDRESS(OMAP343X_SCRATCHPAD);
303
304 /* Get address of entry that was modified */
305 address = (u32 *)__raw_readl(scratchpad_address +
306 OMAP343X_TABLE_ADDRESS_OFFSET);
307 /* Get the previous value which needs to be restored */
308 previous_value = __raw_readl(scratchpad_address +
309 OMAP343X_TABLE_VALUE_OFFSET);
310 address = __va(address);
311 *address = previous_value;
312 flush_tlb_all();
313 control_reg_value = __raw_readl(scratchpad_address
314 + OMAP343X_CONTROL_REG_VALUE_OFFSET);
315 /* This will enable caches and prediction */
316 restore_control_register(control_reg_value);
317}
318
Rajendra Nayak99e6a4d2008-10-08 17:30:58 +0530319void omap_sram_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700320{
321 /* Variable to tell what needs to be saved and restored
322 * in omap_sram_idle*/
323 /* save_state = 0 => Nothing to save and restored */
324 /* save_state = 1 => Only L1 and logic lost */
325 /* save_state = 2 => Only L2 lost */
326 /* save_state = 3 => L1, L2 and logic lost */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530327 int save_state = 0;
328 int mpu_next_state = PWRDM_POWER_ON;
329 int per_next_state = PWRDM_POWER_ON;
330 int core_next_state = PWRDM_POWER_ON;
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530331 int core_prev_state, per_prev_state;
Tero Kristo13a6fe02008-10-13 13:17:06 +0300332 u32 sdrc_pwr = 0;
Tero Kristoecf157d2008-12-01 13:17:29 +0200333 int per_state_modified = 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700334
335 if (!_omap_sram_idle)
336 return;
337
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530338 pwrdm_clear_all_prev_pwrst(mpu_pwrdm);
339 pwrdm_clear_all_prev_pwrst(neon_pwrdm);
340 pwrdm_clear_all_prev_pwrst(core_pwrdm);
341 pwrdm_clear_all_prev_pwrst(per_pwrdm);
342
Kevin Hilman8bd22942009-05-28 10:56:16 -0700343 mpu_next_state = pwrdm_read_next_pwrst(mpu_pwrdm);
344 switch (mpu_next_state) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530345 case PWRDM_POWER_ON:
Kevin Hilman8bd22942009-05-28 10:56:16 -0700346 case PWRDM_POWER_RET:
347 /* No need to save context */
348 save_state = 0;
349 break;
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530350 case PWRDM_POWER_OFF:
351 save_state = 3;
352 break;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700353 default:
354 /* Invalid state */
355 printk(KERN_ERR "Invalid mpu state in sram_idle\n");
356 return;
357 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300358 pwrdm_pre_transition();
359
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530360 /* NEON control */
361 if (pwrdm_read_pwrst(neon_pwrdm) == PWRDM_POWER_ON)
Jouni Hogander71391782008-10-28 10:59:05 +0200362 pwrdm_set_next_pwrst(neon_pwrdm, mpu_next_state);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530363
Kevin Hilman658ce972008-11-04 20:50:52 -0800364 /* PER */
365 per_next_state = pwrdm_read_next_pwrst(per_pwrdm);
Tero Kristoecf157d2008-12-01 13:17:29 +0200366 core_next_state = pwrdm_read_next_pwrst(core_pwrdm);
Kevin Hilman658ce972008-11-04 20:50:52 -0800367 if (per_next_state < PWRDM_POWER_ON) {
Kevin Hilman658ce972008-11-04 20:50:52 -0800368 omap_uart_prepare_idle(2);
Tero Kristoecf157d2008-12-01 13:17:29 +0200369 omap2_gpio_prepare_for_retention();
370 if (per_next_state == PWRDM_POWER_OFF) {
371 if (core_next_state == PWRDM_POWER_ON) {
372 per_next_state = PWRDM_POWER_RET;
373 pwrdm_set_next_pwrst(per_pwrdm, per_next_state);
374 per_state_modified = 1;
375 } else
376 omap3_per_save_context();
377 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800378 }
379
Tero Kristoc16c3f62008-12-11 16:46:57 +0200380 if (pwrdm_read_pwrst(cam_pwrdm) == PWRDM_POWER_ON)
381 omap2_clkdm_deny_idle(mpu_pwrdm->pwrdm_clkdms[0]);
382
Kevin Hilman658ce972008-11-04 20:50:52 -0800383 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530384 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530385 omap_uart_prepare_idle(0);
386 omap_uart_prepare_idle(1);
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530387 if (core_next_state == PWRDM_POWER_OFF) {
388 omap3_core_save_context();
389 omap3_prcm_save_context();
390 }
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200391 /* Enable IO-PAD and IO-CHAIN wakeups */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530392 prm_set_mod_reg_bits(OMAP3430_EN_IO, WKUP_MOD, PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200393 omap3_enable_io_chain();
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530394 }
Kevin Hilman8bd22942009-05-28 10:56:16 -0700395
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530396 /*
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530397 * On EMU/HS devices ROM code restores a SRDC value
398 * from scratchpad which has automatic self refresh on timeout
399 * of AUTO_CNT = 1 enabled. This takes care of errata 1.142.
400 * Hence store/restore the SDRC_POWER register here.
401 */
Tero Kristo13a6fe02008-10-13 13:17:06 +0300402 if (omap_rev() >= OMAP3430_REV_ES3_0 &&
403 omap_type() != OMAP2_DEVICE_TYPE_GP &&
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530404 core_next_state == PWRDM_POWER_OFF)
Tero Kristo13a6fe02008-10-13 13:17:06 +0300405 sdrc_pwr = sdrc_read_reg(SDRC_POWER);
Tero Kristo13a6fe02008-10-13 13:17:06 +0300406
407 /*
Rajendra Nayak61255ab2008-09-26 17:49:56 +0530408 * omap3_arm_context is the location where ARM registers
409 * get saved. The restore path then reads from this
410 * location and restores them back.
411 */
412 _omap_sram_idle(omap3_arm_context, save_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700413 cpu_init();
414
Rajendra Nayakf265dc42009-06-09 22:30:41 +0530415 /* Restore normal SDRC POWER settings */
Tero Kristo13a6fe02008-10-13 13:17:06 +0300416 if (omap_rev() >= OMAP3430_REV_ES3_0 &&
417 omap_type() != OMAP2_DEVICE_TYPE_GP &&
418 core_next_state == PWRDM_POWER_OFF)
419 sdrc_write_reg(sdrc_pwr, SDRC_POWER);
420
Rajendra Nayak57f277b2008-09-26 17:49:34 +0530421 /* Restore table entry modified during MMU restoration */
422 if (pwrdm_read_prev_pwrst(mpu_pwrdm) == PWRDM_POWER_OFF)
423 restore_table_entry();
424
Kevin Hilman658ce972008-11-04 20:50:52 -0800425 /* CORE */
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530426 if (core_next_state < PWRDM_POWER_ON) {
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530427 core_prev_state = pwrdm_read_prev_pwrst(core_pwrdm);
428 if (core_prev_state == PWRDM_POWER_OFF) {
429 omap3_core_restore_context();
430 omap3_prcm_restore_context();
431 omap3_sram_restore_context();
Kalle Jokiniemi8a917d22009-05-13 13:32:11 +0300432 omap2_sms_restore_context();
Rajendra Nayak2f5939c2008-09-26 17:50:07 +0530433 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800434 omap_uart_resume_idle(0);
435 omap_uart_resume_idle(1);
436 if (core_next_state == PWRDM_POWER_OFF)
437 prm_clear_mod_reg_bits(OMAP3430_AUTO_OFF,
438 OMAP3430_GR_MOD,
439 OMAP3_PRM_VOLTCTRL_OFFSET);
440 }
441
442 /* PER */
443 if (per_next_state < PWRDM_POWER_ON) {
444 per_prev_state = pwrdm_read_prev_pwrst(per_pwrdm);
Kevin Hilman658ce972008-11-04 20:50:52 -0800445 if (per_prev_state == PWRDM_POWER_OFF)
446 omap3_per_restore_context();
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530447 omap2_gpio_resume_after_retention();
Tero Kristoecf157d2008-12-01 13:17:29 +0200448 omap_uart_resume_idle(2);
449 if (per_state_modified)
450 pwrdm_set_next_pwrst(per_pwrdm, PWRDM_POWER_OFF);
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +0530451 }
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300452
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200453 /* Disable IO-PAD and IO-CHAIN wakeup */
454 if (core_next_state < PWRDM_POWER_ON) {
Kevin Hilman658ce972008-11-04 20:50:52 -0800455 prm_clear_mod_reg_bits(OMAP3430_EN_IO, WKUP_MOD, PM_WKEN);
Kalle Jokiniemi3a7ec262009-03-26 15:59:01 +0200456 omap3_disable_io_chain();
457 }
Kevin Hilman658ce972008-11-04 20:50:52 -0800458
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300459 pwrdm_post_transition();
460
Tero Kristoc16c3f62008-12-11 16:46:57 +0200461 omap2_clkdm_allow_idle(mpu_pwrdm->pwrdm_clkdms[0]);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700462}
463
464/*
465 * Check if functional clocks are enabled before entering
466 * sleep. This function could be behind CONFIG_PM_DEBUG
467 * when all drivers are configuring their sysconfig registers
468 * properly and using their clocks properly.
469 */
470static int omap3_fclks_active(void)
471{
472 u32 fck_core1 = 0, fck_core3 = 0, fck_sgx = 0, fck_dss = 0,
473 fck_cam = 0, fck_per = 0, fck_usbhost = 0;
474
475 fck_core1 = cm_read_mod_reg(CORE_MOD,
476 CM_FCLKEN1);
477 if (omap_rev() > OMAP3430_REV_ES1_0) {
478 fck_core3 = cm_read_mod_reg(CORE_MOD,
479 OMAP3430ES2_CM_FCLKEN3);
480 fck_sgx = cm_read_mod_reg(OMAP3430ES2_SGX_MOD,
481 CM_FCLKEN);
482 fck_usbhost = cm_read_mod_reg(OMAP3430ES2_USBHOST_MOD,
483 CM_FCLKEN);
484 } else
485 fck_sgx = cm_read_mod_reg(GFX_MOD,
486 OMAP3430ES2_CM_FCLKEN3);
487 fck_dss = cm_read_mod_reg(OMAP3430_DSS_MOD,
488 CM_FCLKEN);
489 fck_cam = cm_read_mod_reg(OMAP3430_CAM_MOD,
490 CM_FCLKEN);
491 fck_per = cm_read_mod_reg(OMAP3430_PER_MOD,
492 CM_FCLKEN);
Kevin Hilman4af40162009-02-04 10:51:40 -0800493
494 /* Ignore UART clocks. These are handled by UART core (serial.c) */
495 fck_core1 &= ~(OMAP3430_EN_UART1 | OMAP3430_EN_UART2);
496 fck_per &= ~OMAP3430_EN_UART3;
497
Kevin Hilman8bd22942009-05-28 10:56:16 -0700498 if (fck_core1 | fck_core3 | fck_sgx | fck_dss |
499 fck_cam | fck_per | fck_usbhost)
500 return 1;
501 return 0;
502}
503
Rajendra Nayak20b01662008-10-08 17:31:22 +0530504int omap3_can_sleep(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700505{
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700506 if (!sleep_while_idle)
507 return 0;
Kevin Hilman4af40162009-02-04 10:51:40 -0800508 if (!omap_uart_can_sleep())
509 return 0;
Kevin Hilman8bd22942009-05-28 10:56:16 -0700510 if (omap3_fclks_active())
511 return 0;
512 return 1;
513}
514
515/* This sets pwrdm state (other than mpu & core. Currently only ON &
516 * RET are supported. Function is assuming that clkdm doesn't have
517 * hw_sup mode enabled. */
Rajendra Nayak20b01662008-10-08 17:31:22 +0530518int set_pwrdm_state(struct powerdomain *pwrdm, u32 state)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700519{
520 u32 cur_state;
521 int sleep_switch = 0;
522 int ret = 0;
523
524 if (pwrdm == NULL || IS_ERR(pwrdm))
525 return -EINVAL;
526
527 while (!(pwrdm->pwrsts & (1 << state))) {
528 if (state == PWRDM_POWER_OFF)
529 return ret;
530 state--;
531 }
532
533 cur_state = pwrdm_read_next_pwrst(pwrdm);
534 if (cur_state == state)
535 return ret;
536
537 if (pwrdm_read_pwrst(pwrdm) < PWRDM_POWER_ON) {
538 omap2_clkdm_wakeup(pwrdm->pwrdm_clkdms[0]);
539 sleep_switch = 1;
540 pwrdm_wait_transition(pwrdm);
541 }
542
543 ret = pwrdm_set_next_pwrst(pwrdm, state);
544 if (ret) {
545 printk(KERN_ERR "Unable to set state of powerdomain: %s\n",
546 pwrdm->name);
547 goto err;
548 }
549
550 if (sleep_switch) {
551 omap2_clkdm_allow_idle(pwrdm->pwrdm_clkdms[0]);
552 pwrdm_wait_transition(pwrdm);
Peter 'p2' De Schrijverfe617af2008-10-15 17:48:44 +0300553 pwrdm_state_switch(pwrdm);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700554 }
555
556err:
557 return ret;
558}
559
560static void omap3_pm_idle(void)
561{
562 local_irq_disable();
563 local_fiq_disable();
564
565 if (!omap3_can_sleep())
566 goto out;
567
568 if (omap_irq_pending())
569 goto out;
570
571 omap_sram_idle();
572
573out:
574 local_fiq_enable();
575 local_irq_enable();
576}
577
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700578#ifdef CONFIG_SUSPEND
Tero Kristo24662112009-03-05 16:32:23 +0200579static suspend_state_t suspend_state;
580
Kevin Hilmand7814e42009-10-06 14:30:23 -0700581static void omap2_pm_wakeup_on_timer(u32 seconds)
582{
583 u32 tick_rate, cycles;
584
585 if (!seconds)
586 return;
587
588 tick_rate = clk_get_rate(omap_dm_timer_get_fclk(gptimer_wakeup));
589 cycles = tick_rate * seconds;
590 omap_dm_timer_stop(gptimer_wakeup);
591 omap_dm_timer_set_load_start(gptimer_wakeup, 0, 0xffffffff - cycles);
592
593 pr_info("PM: Resume timer in %d secs (%d ticks at %d ticks/sec.)\n",
594 seconds, cycles, tick_rate);
595}
596
Kevin Hilman8bd22942009-05-28 10:56:16 -0700597static int omap3_pm_prepare(void)
598{
599 disable_hlt();
600 return 0;
601}
602
603static int omap3_pm_suspend(void)
604{
605 struct power_state *pwrst;
606 int state, ret = 0;
607
Kevin Hilmand7814e42009-10-06 14:30:23 -0700608 if (wakeup_timer_seconds)
609 omap2_pm_wakeup_on_timer(wakeup_timer_seconds);
610
Kevin Hilman8bd22942009-05-28 10:56:16 -0700611 /* Read current next_pwrsts */
612 list_for_each_entry(pwrst, &pwrst_list, node)
613 pwrst->saved_state = pwrdm_read_next_pwrst(pwrst->pwrdm);
614 /* Set ones wanted by suspend */
615 list_for_each_entry(pwrst, &pwrst_list, node) {
616 if (set_pwrdm_state(pwrst->pwrdm, pwrst->next_state))
617 goto restore;
618 if (pwrdm_clear_all_prev_pwrst(pwrst->pwrdm))
619 goto restore;
620 }
621
Kevin Hilman4af40162009-02-04 10:51:40 -0800622 omap_uart_prepare_suspend();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700623 omap_sram_idle();
624
625restore:
626 /* Restore next_pwrsts */
627 list_for_each_entry(pwrst, &pwrst_list, node) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700628 state = pwrdm_read_prev_pwrst(pwrst->pwrdm);
629 if (state > pwrst->next_state) {
630 printk(KERN_INFO "Powerdomain (%s) didn't enter "
631 "target state %d\n",
632 pwrst->pwrdm->name, pwrst->next_state);
633 ret = -1;
634 }
Jouni Hogander6c5f8032008-10-29 12:06:04 +0200635 set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state);
Kevin Hilman8bd22942009-05-28 10:56:16 -0700636 }
637 if (ret)
638 printk(KERN_ERR "Could not enter target state in pm_suspend\n");
639 else
640 printk(KERN_INFO "Successfully put all powerdomains "
641 "to target state\n");
642
643 return ret;
644}
645
Tero Kristo24662112009-03-05 16:32:23 +0200646static int omap3_pm_enter(suspend_state_t unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700647{
648 int ret = 0;
649
Tero Kristo24662112009-03-05 16:32:23 +0200650 switch (suspend_state) {
Kevin Hilman8bd22942009-05-28 10:56:16 -0700651 case PM_SUSPEND_STANDBY:
652 case PM_SUSPEND_MEM:
653 ret = omap3_pm_suspend();
654 break;
655 default:
656 ret = -EINVAL;
657 }
658
659 return ret;
660}
661
662static void omap3_pm_finish(void)
663{
664 enable_hlt();
665}
666
Tero Kristo24662112009-03-05 16:32:23 +0200667/* Hooks to enable / disable UART interrupts during suspend */
668static int omap3_pm_begin(suspend_state_t state)
669{
670 suspend_state = state;
671 omap_uart_enable_irqs(0);
672 return 0;
673}
674
675static void omap3_pm_end(void)
676{
677 suspend_state = PM_SUSPEND_ON;
678 omap_uart_enable_irqs(1);
679 return;
680}
681
Kevin Hilman8bd22942009-05-28 10:56:16 -0700682static struct platform_suspend_ops omap_pm_ops = {
Tero Kristo24662112009-03-05 16:32:23 +0200683 .begin = omap3_pm_begin,
684 .end = omap3_pm_end,
Kevin Hilman8bd22942009-05-28 10:56:16 -0700685 .prepare = omap3_pm_prepare,
686 .enter = omap3_pm_enter,
687 .finish = omap3_pm_finish,
688 .valid = suspend_valid_only_mem,
689};
Kevin Hilman10f90ed2009-06-24 11:39:18 -0700690#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -0700691
Kevin Hilman1155e422008-11-25 11:48:24 -0800692
693/**
694 * omap3_iva_idle(): ensure IVA is in idle so it can be put into
695 * retention
696 *
697 * In cases where IVA2 is activated by bootcode, it may prevent
698 * full-chip retention or off-mode because it is not idle. This
699 * function forces the IVA2 into idle state so it can go
700 * into retention/off and thus allow full-chip retention/off.
701 *
702 **/
703static void __init omap3_iva_idle(void)
704{
705 /* ensure IVA2 clock is disabled */
706 cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
707
708 /* if no clock activity, nothing else to do */
709 if (!(cm_read_mod_reg(OMAP3430_IVA2_MOD, OMAP3430_CM_CLKSTST) &
710 OMAP3430_CLKACTIVITY_IVA2_MASK))
711 return;
712
713 /* Reset IVA2 */
714 prm_write_mod_reg(OMAP3430_RST1_IVA2 |
715 OMAP3430_RST2_IVA2 |
716 OMAP3430_RST3_IVA2,
717 OMAP3430_IVA2_MOD, RM_RSTCTRL);
718
719 /* Enable IVA2 clock */
720 cm_write_mod_reg(OMAP3430_CM_FCLKEN_IVA2_EN_IVA2,
721 OMAP3430_IVA2_MOD, CM_FCLKEN);
722
723 /* Set IVA2 boot mode to 'idle' */
724 omap_ctrl_writel(OMAP3_IVA2_BOOTMOD_IDLE,
725 OMAP343X_CONTROL_IVA2_BOOTMOD);
726
727 /* Un-reset IVA2 */
728 prm_write_mod_reg(0, OMAP3430_IVA2_MOD, RM_RSTCTRL);
729
730 /* Disable IVA2 clock */
731 cm_write_mod_reg(0, OMAP3430_IVA2_MOD, CM_FCLKEN);
732
733 /* Reset IVA2 */
734 prm_write_mod_reg(OMAP3430_RST1_IVA2 |
735 OMAP3430_RST2_IVA2 |
736 OMAP3430_RST3_IVA2,
737 OMAP3430_IVA2_MOD, RM_RSTCTRL);
738}
739
Kevin Hilman8111b222009-04-28 15:27:44 -0700740static void __init omap3_d2d_idle(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -0700741{
Kevin Hilman8111b222009-04-28 15:27:44 -0700742 u16 mask, padconf;
743
744 /* In a stand alone OMAP3430 where there is not a stacked
745 * modem for the D2D Idle Ack and D2D MStandby must be pulled
746 * high. S CONTROL_PADCONF_SAD2D_IDLEACK and
747 * CONTROL_PADCONF_SAD2D_MSTDBY to have a pull up. */
748 mask = (1 << 4) | (1 << 3); /* pull-up, enabled */
749 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_MSTANDBY);
750 padconf |= mask;
751 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_MSTANDBY);
752
753 padconf = omap_ctrl_readw(OMAP3_PADCONF_SAD2D_IDLEACK);
754 padconf |= mask;
755 omap_ctrl_writew(padconf, OMAP3_PADCONF_SAD2D_IDLEACK);
756
Kevin Hilman8bd22942009-05-28 10:56:16 -0700757 /* reset modem */
758 prm_write_mod_reg(OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RSTPWRON |
759 OMAP3430_RM_RSTCTRL_CORE_MODEM_SW_RST,
760 CORE_MOD, RM_RSTCTRL);
761 prm_write_mod_reg(0, CORE_MOD, RM_RSTCTRL);
Kevin Hilman8111b222009-04-28 15:27:44 -0700762}
Kevin Hilman8bd22942009-05-28 10:56:16 -0700763
Kevin Hilman8111b222009-04-28 15:27:44 -0700764static void __init prcm_setup_regs(void)
765{
Kevin Hilman8bd22942009-05-28 10:56:16 -0700766 /* XXX Reset all wkdeps. This should be done when initializing
767 * powerdomains */
768 prm_write_mod_reg(0, OMAP3430_IVA2_MOD, PM_WKDEP);
769 prm_write_mod_reg(0, MPU_MOD, PM_WKDEP);
770 prm_write_mod_reg(0, OMAP3430_DSS_MOD, PM_WKDEP);
771 prm_write_mod_reg(0, OMAP3430_NEON_MOD, PM_WKDEP);
772 prm_write_mod_reg(0, OMAP3430_CAM_MOD, PM_WKDEP);
773 prm_write_mod_reg(0, OMAP3430_PER_MOD, PM_WKDEP);
774 if (omap_rev() > OMAP3430_REV_ES1_0) {
775 prm_write_mod_reg(0, OMAP3430ES2_SGX_MOD, PM_WKDEP);
776 prm_write_mod_reg(0, OMAP3430ES2_USBHOST_MOD, PM_WKDEP);
777 } else
778 prm_write_mod_reg(0, GFX_MOD, PM_WKDEP);
779
780 /*
781 * Enable interface clock autoidle for all modules.
782 * Note that in the long run this should be done by clockfw
783 */
784 cm_write_mod_reg(
Kevin Hilman8111b222009-04-28 15:27:44 -0700785 OMAP3430_AUTO_MODEM |
Kevin Hilman8bd22942009-05-28 10:56:16 -0700786 OMAP3430ES2_AUTO_MMC3 |
787 OMAP3430ES2_AUTO_ICR |
788 OMAP3430_AUTO_AES2 |
789 OMAP3430_AUTO_SHA12 |
790 OMAP3430_AUTO_DES2 |
791 OMAP3430_AUTO_MMC2 |
792 OMAP3430_AUTO_MMC1 |
793 OMAP3430_AUTO_MSPRO |
794 OMAP3430_AUTO_HDQ |
795 OMAP3430_AUTO_MCSPI4 |
796 OMAP3430_AUTO_MCSPI3 |
797 OMAP3430_AUTO_MCSPI2 |
798 OMAP3430_AUTO_MCSPI1 |
799 OMAP3430_AUTO_I2C3 |
800 OMAP3430_AUTO_I2C2 |
801 OMAP3430_AUTO_I2C1 |
802 OMAP3430_AUTO_UART2 |
803 OMAP3430_AUTO_UART1 |
804 OMAP3430_AUTO_GPT11 |
805 OMAP3430_AUTO_GPT10 |
806 OMAP3430_AUTO_MCBSP5 |
807 OMAP3430_AUTO_MCBSP1 |
808 OMAP3430ES1_AUTO_FAC | /* This is es1 only */
809 OMAP3430_AUTO_MAILBOXES |
810 OMAP3430_AUTO_OMAPCTRL |
811 OMAP3430ES1_AUTO_FSHOSTUSB |
812 OMAP3430_AUTO_HSOTGUSB |
Kevin Hilman8111b222009-04-28 15:27:44 -0700813 OMAP3430_AUTO_SAD2D |
Kevin Hilman8bd22942009-05-28 10:56:16 -0700814 OMAP3430_AUTO_SSI,
815 CORE_MOD, CM_AUTOIDLE1);
816
817 cm_write_mod_reg(
818 OMAP3430_AUTO_PKA |
819 OMAP3430_AUTO_AES1 |
820 OMAP3430_AUTO_RNG |
821 OMAP3430_AUTO_SHA11 |
822 OMAP3430_AUTO_DES1,
823 CORE_MOD, CM_AUTOIDLE2);
824
825 if (omap_rev() > OMAP3430_REV_ES1_0) {
826 cm_write_mod_reg(
Kevin Hilman8111b222009-04-28 15:27:44 -0700827 OMAP3430_AUTO_MAD2D |
Kevin Hilman8bd22942009-05-28 10:56:16 -0700828 OMAP3430ES2_AUTO_USBTLL,
829 CORE_MOD, CM_AUTOIDLE3);
830 }
831
832 cm_write_mod_reg(
833 OMAP3430_AUTO_WDT2 |
834 OMAP3430_AUTO_WDT1 |
835 OMAP3430_AUTO_GPIO1 |
836 OMAP3430_AUTO_32KSYNC |
837 OMAP3430_AUTO_GPT12 |
838 OMAP3430_AUTO_GPT1 ,
839 WKUP_MOD, CM_AUTOIDLE);
840
841 cm_write_mod_reg(
842 OMAP3430_AUTO_DSS,
843 OMAP3430_DSS_MOD,
844 CM_AUTOIDLE);
845
846 cm_write_mod_reg(
847 OMAP3430_AUTO_CAM,
848 OMAP3430_CAM_MOD,
849 CM_AUTOIDLE);
850
851 cm_write_mod_reg(
852 OMAP3430_AUTO_GPIO6 |
853 OMAP3430_AUTO_GPIO5 |
854 OMAP3430_AUTO_GPIO4 |
855 OMAP3430_AUTO_GPIO3 |
856 OMAP3430_AUTO_GPIO2 |
857 OMAP3430_AUTO_WDT3 |
858 OMAP3430_AUTO_UART3 |
859 OMAP3430_AUTO_GPT9 |
860 OMAP3430_AUTO_GPT8 |
861 OMAP3430_AUTO_GPT7 |
862 OMAP3430_AUTO_GPT6 |
863 OMAP3430_AUTO_GPT5 |
864 OMAP3430_AUTO_GPT4 |
865 OMAP3430_AUTO_GPT3 |
866 OMAP3430_AUTO_GPT2 |
867 OMAP3430_AUTO_MCBSP4 |
868 OMAP3430_AUTO_MCBSP3 |
869 OMAP3430_AUTO_MCBSP2,
870 OMAP3430_PER_MOD,
871 CM_AUTOIDLE);
872
873 if (omap_rev() > OMAP3430_REV_ES1_0) {
874 cm_write_mod_reg(
875 OMAP3430ES2_AUTO_USBHOST,
876 OMAP3430ES2_USBHOST_MOD,
877 CM_AUTOIDLE);
878 }
879
880 /*
881 * Set all plls to autoidle. This is needed until autoidle is
882 * enabled by clockfw
883 */
884 cm_write_mod_reg(1 << OMAP3430_AUTO_IVA2_DPLL_SHIFT,
885 OMAP3430_IVA2_MOD, CM_AUTOIDLE2);
886 cm_write_mod_reg(1 << OMAP3430_AUTO_MPU_DPLL_SHIFT,
887 MPU_MOD,
888 CM_AUTOIDLE2);
889 cm_write_mod_reg((1 << OMAP3430_AUTO_PERIPH_DPLL_SHIFT) |
890 (1 << OMAP3430_AUTO_CORE_DPLL_SHIFT),
891 PLL_MOD,
892 CM_AUTOIDLE);
893 cm_write_mod_reg(1 << OMAP3430ES2_AUTO_PERIPH2_DPLL_SHIFT,
894 PLL_MOD,
895 CM_AUTOIDLE2);
896
897 /*
898 * Enable control of expternal oscillator through
899 * sys_clkreq. In the long run clock framework should
900 * take care of this.
901 */
902 prm_rmw_mod_reg_bits(OMAP_AUTOEXTCLKMODE_MASK,
903 1 << OMAP_AUTOEXTCLKMODE_SHIFT,
904 OMAP3430_GR_MOD,
905 OMAP3_PRM_CLKSRC_CTRL_OFFSET);
906
907 /* setup wakup source */
908 prm_write_mod_reg(OMAP3430_EN_IO | OMAP3430_EN_GPIO1 |
909 OMAP3430_EN_GPT1 | OMAP3430_EN_GPT12,
910 WKUP_MOD, PM_WKEN);
911 /* No need to write EN_IO, that is always enabled */
912 prm_write_mod_reg(OMAP3430_EN_GPIO1 | OMAP3430_EN_GPT1 |
913 OMAP3430_EN_GPT12,
914 WKUP_MOD, OMAP3430_PM_MPUGRPSEL);
915 /* For some reason IO doesn't generate wakeup event even if
916 * it is selected to mpu wakeup goup */
917 prm_write_mod_reg(OMAP3430_IO_EN | OMAP3430_WKUP_EN,
918 OCP_MOD, OMAP3_PRM_IRQENABLE_MPU_OFFSET);
Kevin Hilman1155e422008-11-25 11:48:24 -0800919
Kevin Hilmanb427f922009-10-22 14:48:13 -0700920 /* Enable wakeups in PER */
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000921 prm_write_mod_reg(OMAP3430_EN_GPIO2 | OMAP3430_EN_GPIO3 |
922 OMAP3430_EN_GPIO4 | OMAP3430_EN_GPIO5 |
Kevin Hilmanb427f922009-10-22 14:48:13 -0700923 OMAP3430_EN_GPIO6 | OMAP3430_EN_UART3,
924 OMAP3430_PER_MOD, PM_WKEN);
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000925 /* and allow them to wake up MPU */
926 prm_write_mod_reg(OMAP3430_GRPSEL_GPIO2 | OMAP3430_EN_GPIO3 |
927 OMAP3430_GRPSEL_GPIO4 | OMAP3430_EN_GPIO5 |
Kevin Hilmanb427f922009-10-22 14:48:13 -0700928 OMAP3430_GRPSEL_GPIO6 | OMAP3430_EN_UART3,
Kevin Hilmaneb350f72009-09-10 15:53:08 +0000929 OMAP3430_PER_MOD, OMAP3430_PM_MPUGRPSEL);
930
Kevin Hilmand3fd3292009-05-05 16:34:25 -0700931 /* Don't attach IVA interrupts */
932 prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
933 prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
934 prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
935 prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
936
Kevin Hilmanb1340d12009-04-27 16:14:54 -0700937 /* Clear any pending 'reset' flags */
938 prm_write_mod_reg(0xffffffff, MPU_MOD, RM_RSTST);
939 prm_write_mod_reg(0xffffffff, CORE_MOD, RM_RSTST);
940 prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, RM_RSTST);
941 prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, RM_RSTST);
942 prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, RM_RSTST);
943 prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, RM_RSTST);
944 prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, RM_RSTST);
945
Kevin Hilman014c46d2009-04-27 07:50:23 -0700946 /* Clear any pending PRCM interrupts */
947 prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
948
Kevin Hilman040fed02009-05-05 16:34:25 -0700949 /* Don't attach IVA interrupts */
950 prm_write_mod_reg(0, WKUP_MOD, OMAP3430_PM_IVAGRPSEL);
951 prm_write_mod_reg(0, CORE_MOD, OMAP3430_PM_IVAGRPSEL1);
952 prm_write_mod_reg(0, CORE_MOD, OMAP3430ES2_PM_IVAGRPSEL3);
953 prm_write_mod_reg(0, OMAP3430_PER_MOD, OMAP3430_PM_IVAGRPSEL);
954
Kevin Hilman3a07ae32009-04-27 16:14:54 -0700955 /* Clear any pending 'reset' flags */
956 prm_write_mod_reg(0xffffffff, MPU_MOD, RM_RSTST);
957 prm_write_mod_reg(0xffffffff, CORE_MOD, RM_RSTST);
958 prm_write_mod_reg(0xffffffff, OMAP3430_PER_MOD, RM_RSTST);
959 prm_write_mod_reg(0xffffffff, OMAP3430_EMU_MOD, RM_RSTST);
960 prm_write_mod_reg(0xffffffff, OMAP3430_NEON_MOD, RM_RSTST);
961 prm_write_mod_reg(0xffffffff, OMAP3430_DSS_MOD, RM_RSTST);
962 prm_write_mod_reg(0xffffffff, OMAP3430ES2_USBHOST_MOD, RM_RSTST);
963
Kevin Hilman3a6667a2009-04-27 07:50:23 -0700964 /* Clear any pending PRCM interrupts */
965 prm_write_mod_reg(0, OCP_MOD, OMAP3_PRM_IRQSTATUS_MPU_OFFSET);
966
Kevin Hilman1155e422008-11-25 11:48:24 -0800967 omap3_iva_idle();
Kevin Hilman8111b222009-04-28 15:27:44 -0700968 omap3_d2d_idle();
Kevin Hilman8bd22942009-05-28 10:56:16 -0700969}
970
Kevin Hilmanc40552b2009-10-06 14:25:09 -0700971void omap3_pm_off_mode_enable(int enable)
972{
973 struct power_state *pwrst;
974 u32 state;
975
976 if (enable)
977 state = PWRDM_POWER_OFF;
978 else
979 state = PWRDM_POWER_RET;
980
981 list_for_each_entry(pwrst, &pwrst_list, node) {
982 pwrst->next_state = state;
983 set_pwrdm_state(pwrst->pwrdm, state);
984 }
985}
986
Tero Kristo68d47782008-11-26 12:26:24 +0200987int omap3_pm_get_suspend_state(struct powerdomain *pwrdm)
988{
989 struct power_state *pwrst;
990
991 list_for_each_entry(pwrst, &pwrst_list, node) {
992 if (pwrst->pwrdm == pwrdm)
993 return pwrst->next_state;
994 }
995 return -EINVAL;
996}
997
998int omap3_pm_set_suspend_state(struct powerdomain *pwrdm, int state)
999{
1000 struct power_state *pwrst;
1001
1002 list_for_each_entry(pwrst, &pwrst_list, node) {
1003 if (pwrst->pwrdm == pwrdm) {
1004 pwrst->next_state = state;
1005 return 0;
1006 }
1007 }
1008 return -EINVAL;
1009}
1010
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +03001011static int __init pwrdms_setup(struct powerdomain *pwrdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -07001012{
1013 struct power_state *pwrst;
1014
1015 if (!pwrdm->pwrsts)
1016 return 0;
1017
Ming Leid3d381c2009-08-22 21:20:26 +08001018 pwrst = kmalloc(sizeof(struct power_state), GFP_ATOMIC);
Kevin Hilman8bd22942009-05-28 10:56:16 -07001019 if (!pwrst)
1020 return -ENOMEM;
1021 pwrst->pwrdm = pwrdm;
1022 pwrst->next_state = PWRDM_POWER_RET;
1023 list_add(&pwrst->node, &pwrst_list);
1024
1025 if (pwrdm_has_hdwr_sar(pwrdm))
1026 pwrdm_enable_hdwr_sar(pwrdm);
1027
1028 return set_pwrdm_state(pwrst->pwrdm, pwrst->next_state);
1029}
1030
1031/*
1032 * Enable hw supervised mode for all clockdomains if it's
1033 * supported. Initiate sleep transition for other clockdomains, if
1034 * they are not used
1035 */
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +03001036static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
Kevin Hilman8bd22942009-05-28 10:56:16 -07001037{
1038 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
1039 omap2_clkdm_allow_idle(clkdm);
1040 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
1041 atomic_read(&clkdm->usecount) == 0)
1042 omap2_clkdm_sleep(clkdm);
1043 return 0;
1044}
1045
Rajendra Nayak3231fc82008-09-26 17:49:14 +05301046void omap_push_sram_idle(void)
1047{
1048 _omap_sram_idle = omap_sram_push(omap34xx_cpu_suspend,
1049 omap34xx_cpu_suspend_sz);
Tero Kristo27d59a42008-10-13 13:15:00 +03001050 if (omap_type() != OMAP2_DEVICE_TYPE_GP)
1051 _omap_save_secure_sram = omap_sram_push(save_secure_ram_context,
1052 save_secure_ram_context_sz);
Rajendra Nayak3231fc82008-09-26 17:49:14 +05301053}
1054
Kevin Hilman7cc515f2009-06-10 09:02:25 -07001055static int __init omap3_pm_init(void)
Kevin Hilman8bd22942009-05-28 10:56:16 -07001056{
1057 struct power_state *pwrst, *tmp;
1058 int ret;
1059
1060 if (!cpu_is_omap34xx())
1061 return -ENODEV;
1062
1063 printk(KERN_ERR "Power Management for TI OMAP3.\n");
1064
1065 /* XXX prcm_setup_regs needs to be before enabling hw
1066 * supervised mode for powerdomains */
1067 prcm_setup_regs();
1068
1069 ret = request_irq(INT_34XX_PRCM_MPU_IRQ,
1070 (irq_handler_t)prcm_interrupt_handler,
1071 IRQF_DISABLED, "prcm", NULL);
1072 if (ret) {
1073 printk(KERN_ERR "request_irq failed to register for 0x%x\n",
1074 INT_34XX_PRCM_MPU_IRQ);
1075 goto err1;
1076 }
1077
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +03001078 ret = pwrdm_for_each(pwrdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -07001079 if (ret) {
1080 printk(KERN_ERR "Failed to setup powerdomains\n");
1081 goto err2;
1082 }
1083
Peter 'p2' De Schrijvera23456e2008-10-15 18:13:47 +03001084 (void) clkdm_for_each(clkdms_setup, NULL);
Kevin Hilman8bd22942009-05-28 10:56:16 -07001085
1086 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
1087 if (mpu_pwrdm == NULL) {
1088 printk(KERN_ERR "Failed to get mpu_pwrdm\n");
1089 goto err2;
1090 }
1091
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +05301092 neon_pwrdm = pwrdm_lookup("neon_pwrdm");
1093 per_pwrdm = pwrdm_lookup("per_pwrdm");
1094 core_pwrdm = pwrdm_lookup("core_pwrdm");
Tero Kristoc16c3f62008-12-11 16:46:57 +02001095 cam_pwrdm = pwrdm_lookup("cam_pwrdm");
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +05301096
Rajendra Nayak3231fc82008-09-26 17:49:14 +05301097 omap_push_sram_idle();
Kevin Hilman10f90ed2009-06-24 11:39:18 -07001098#ifdef CONFIG_SUSPEND
Kevin Hilman8bd22942009-05-28 10:56:16 -07001099 suspend_set_ops(&omap_pm_ops);
Kevin Hilman10f90ed2009-06-24 11:39:18 -07001100#endif /* CONFIG_SUSPEND */
Kevin Hilman8bd22942009-05-28 10:56:16 -07001101
1102 pm_idle = omap3_pm_idle;
Kalle Jokiniemi03433712008-09-26 11:04:20 +03001103 omap3_idle_init();
Kevin Hilman8bd22942009-05-28 10:56:16 -07001104
Rajendra Nayakfa3c2a42008-09-26 17:49:22 +05301105 pwrdm_add_wkdep(neon_pwrdm, mpu_pwrdm);
1106 /*
1107 * REVISIT: This wkdep is only necessary when GPIO2-6 are enabled for
1108 * IO-pad wakeup. Otherwise it will unnecessarily waste power
1109 * waking up PER with every CORE wakeup - see
1110 * http://marc.info/?l=linux-omap&m=121852150710062&w=2
1111 */
1112 pwrdm_add_wkdep(per_pwrdm, core_pwrdm);
1113
Tero Kristo27d59a42008-10-13 13:15:00 +03001114 if (omap_type() != OMAP2_DEVICE_TYPE_GP) {
1115 omap3_secure_ram_storage =
1116 kmalloc(0x803F, GFP_KERNEL);
1117 if (!omap3_secure_ram_storage)
1118 printk(KERN_ERR "Memory allocation failed when"
1119 "allocating for secure sram context\n");
Tero Kristo27d59a42008-10-13 13:15:00 +03001120
Tero Kristo9d971402008-12-12 11:20:05 +02001121 local_irq_disable();
1122 local_fiq_disable();
1123
1124 omap_dma_global_context_save();
1125 omap3_save_secure_ram_context(PWRDM_POWER_ON);
1126 omap_dma_global_context_restore();
1127
1128 local_irq_enable();
1129 local_fiq_enable();
1130 }
1131
1132 omap3_save_scratchpad_contents();
Kevin Hilman8bd22942009-05-28 10:56:16 -07001133err1:
1134 return ret;
1135err2:
1136 free_irq(INT_34XX_PRCM_MPU_IRQ, NULL);
1137 list_for_each_entry_safe(pwrst, tmp, &pwrst_list, node) {
1138 list_del(&pwrst->node);
1139 kfree(pwrst);
1140 }
1141 return ret;
1142}
1143
1144late_initcall(omap3_pm_init);