nfsd: link returns nfserr_delay when breaking lease
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / arm / mach-omap2 / pm24xx.c
blobdf3ded6fe194cf4afee80382064e62a04a01dd38
1 /*
2 * OMAP2 Power Management Routines
4 * Copyright (C) 2005 Texas Instruments, Inc.
5 * Copyright (C) 2006-2008 Nokia Corporation
7 * Written by:
8 * Richard Woodruff <r-woodruff2@ti.com>
9 * Tony Lindgren
10 * Juha Yrjola
11 * Amit Kucheria <amit.kucheria@nokia.com>
12 * Igor Stoppa <igor.stoppa@nokia.com>
14 * Based on pm.c for omap1
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.
21 #include <linux/suspend.h>
22 #include <linux/sched.h>
23 #include <linux/proc_fs.h>
24 #include <linux/interrupt.h>
25 #include <linux/sysfs.h>
26 #include <linux/module.h>
27 #include <linux/delay.h>
28 #include <linux/clk.h>
29 #include <linux/io.h>
30 #include <linux/irq.h>
31 #include <linux/time.h>
32 #include <linux/gpio.h>
33 #include <linux/console.h>
35 #include <asm/mach/time.h>
36 #include <asm/mach/irq.h>
37 #include <asm/mach-types.h>
39 #include <mach/irqs.h>
40 #include <plat/clock.h>
41 #include <plat/sram.h>
42 #include <plat/dma.h>
43 #include <plat/board.h>
45 #include "prm2xxx_3xxx.h"
46 #include "prm-regbits-24xx.h"
47 #include "cm2xxx_3xxx.h"
48 #include "cm-regbits-24xx.h"
49 #include "sdrc.h"
50 #include "pm.h"
51 #include "control.h"
53 #include "powerdomain.h"
54 #include "clockdomain.h"
56 #ifdef CONFIG_SUSPEND
57 static suspend_state_t suspend_state = PM_SUSPEND_ON;
58 static inline bool is_suspending(void)
60 return (suspend_state != PM_SUSPEND_ON);
62 #else
63 static inline bool is_suspending(void)
65 return false;
67 #endif
69 static void (*omap2_sram_idle)(void);
70 static void (*omap2_sram_suspend)(u32 dllctrl, void __iomem *sdrc_dlla_ctrl,
71 void __iomem *sdrc_power);
73 static struct powerdomain *mpu_pwrdm, *core_pwrdm;
74 static struct clockdomain *dsp_clkdm, *mpu_clkdm, *wkup_clkdm, *gfx_clkdm;
76 static struct clk *osc_ck, *emul_ck;
78 static int omap2_fclks_active(void)
80 u32 f1, f2;
82 f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
83 f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
85 /* Ignore UART clocks. These are handled by UART core (serial.c) */
86 f1 &= ~(OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_UART2_MASK);
87 f2 &= ~OMAP24XX_EN_UART3_MASK;
89 if (f1 | f2)
90 return 1;
91 return 0;
94 static void omap2_enter_full_retention(void)
96 u32 l;
97 struct timespec ts_preidle, ts_postidle, ts_idle;
99 /* There is 1 reference hold for all children of the oscillator
100 * clock, the following will remove it. If no one else uses the
101 * oscillator itself it will be disabled if/when we enter retention
102 * mode.
104 clk_disable(osc_ck);
106 /* Clear old wake-up events */
107 /* REVISIT: These write to reserved bits? */
108 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
109 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
110 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
113 * Set MPU powerdomain's next power state to RETENTION;
114 * preserve logic state during retention
116 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
117 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
119 /* Workaround to kill USB */
120 l = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0) | OMAP24XX_USBSTANDBYCTRL;
121 omap_ctrl_writel(l, OMAP2_CONTROL_DEVCONF0);
123 omap2_gpio_prepare_for_idle(0);
125 if (omap2_pm_debug) {
126 omap2_pm_dump(0, 0, 0);
127 getnstimeofday(&ts_preidle);
130 /* One last check for pending IRQs to avoid extra latency due
131 * to sleeping unnecessarily. */
132 if (omap_irq_pending())
133 goto no_sleep;
135 /* Block console output in case it is on one of the OMAP UARTs */
136 if (!is_suspending())
137 if (!console_trylock())
138 goto no_sleep;
140 omap_uart_prepare_idle(0);
141 omap_uart_prepare_idle(1);
142 omap_uart_prepare_idle(2);
144 /* Jump to SRAM suspend code */
145 omap2_sram_suspend(sdrc_read_reg(SDRC_DLLA_CTRL),
146 OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL),
147 OMAP_SDRC_REGADDR(SDRC_POWER));
149 omap_uart_resume_idle(2);
150 omap_uart_resume_idle(1);
151 omap_uart_resume_idle(0);
153 if (!is_suspending())
154 console_unlock();
156 no_sleep:
157 if (omap2_pm_debug) {
158 unsigned long long tmp;
160 getnstimeofday(&ts_postidle);
161 ts_idle = timespec_sub(ts_postidle, ts_preidle);
162 tmp = timespec_to_ns(&ts_idle) * NSEC_PER_USEC;
163 omap2_pm_dump(0, 1, tmp);
165 omap2_gpio_resume_after_idle();
167 clk_enable(osc_ck);
169 /* clear CORE wake-up events */
170 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
171 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
173 /* wakeup domain events - bit 1: GPT1, bit5 GPIO */
174 omap2_prm_clear_mod_reg_bits(0x4 | 0x1, WKUP_MOD, PM_WKST);
176 /* MPU domain wake events */
177 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
178 if (l & 0x01)
179 omap2_prm_write_mod_reg(0x01, OCP_MOD,
180 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
181 if (l & 0x20)
182 omap2_prm_write_mod_reg(0x20, OCP_MOD,
183 OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
185 /* Mask future PRCM-to-MPU interrupts */
186 omap2_prm_write_mod_reg(0x0, OCP_MOD, OMAP2_PRCM_IRQSTATUS_MPU_OFFSET);
189 static int omap2_i2c_active(void)
191 u32 l;
193 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
194 return l & (OMAP2420_EN_I2C2_MASK | OMAP2420_EN_I2C1_MASK);
197 static int sti_console_enabled;
199 static int omap2_allow_mpu_retention(void)
201 u32 l;
203 /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
204 l = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
205 if (l & (OMAP2420_EN_MMC_MASK | OMAP24XX_EN_UART2_MASK |
206 OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_MCSPI2_MASK |
207 OMAP24XX_EN_MCSPI1_MASK | OMAP24XX_EN_DSS1_MASK))
208 return 0;
209 /* Check for UART3. */
210 l = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
211 if (l & OMAP24XX_EN_UART3_MASK)
212 return 0;
213 if (sti_console_enabled)
214 return 0;
216 return 1;
219 static void omap2_enter_mpu_retention(void)
221 int only_idle = 0;
222 struct timespec ts_preidle, ts_postidle, ts_idle;
224 /* Putting MPU into the WFI state while a transfer is active
225 * seems to cause the I2C block to timeout. Why? Good question. */
226 if (omap2_i2c_active())
227 return;
229 /* The peripherals seem not to be able to wake up the MPU when
230 * it is in retention mode. */
231 if (omap2_allow_mpu_retention()) {
232 /* REVISIT: These write to reserved bits? */
233 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
234 omap2_prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
235 omap2_prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
237 /* Try to enter MPU retention */
238 omap2_prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
239 OMAP_LOGICRETSTATE_MASK,
240 MPU_MOD, OMAP2_PM_PWSTCTRL);
241 } else {
242 /* Block MPU retention */
244 omap2_prm_write_mod_reg(OMAP_LOGICRETSTATE_MASK, MPU_MOD,
245 OMAP2_PM_PWSTCTRL);
246 only_idle = 1;
249 if (omap2_pm_debug) {
250 omap2_pm_dump(only_idle ? 2 : 1, 0, 0);
251 getnstimeofday(&ts_preidle);
254 omap2_sram_idle();
256 if (omap2_pm_debug) {
257 unsigned long long tmp;
259 getnstimeofday(&ts_postidle);
260 ts_idle = timespec_sub(ts_postidle, ts_preidle);
261 tmp = timespec_to_ns(&ts_idle) * NSEC_PER_USEC;
262 omap2_pm_dump(only_idle ? 2 : 1, 1, tmp);
266 static int omap2_can_sleep(void)
268 if (omap2_fclks_active())
269 return 0;
270 if (!omap_uart_can_sleep())
271 return 0;
272 if (osc_ck->usecount > 1)
273 return 0;
274 if (omap_dma_running())
275 return 0;
277 return 1;
280 static void omap2_pm_idle(void)
282 local_irq_disable();
283 local_fiq_disable();
285 if (!omap2_can_sleep()) {
286 if (omap_irq_pending())
287 goto out;
288 omap2_enter_mpu_retention();
289 goto out;
292 if (omap_irq_pending())
293 goto out;
295 omap2_enter_full_retention();
297 out:
298 local_fiq_enable();
299 local_irq_enable();
302 #ifdef CONFIG_SUSPEND
303 static int omap2_pm_begin(suspend_state_t state)
305 disable_hlt();
306 suspend_state = state;
307 return 0;
310 static int omap2_pm_suspend(void)
312 u32 wken_wkup, mir1;
314 wken_wkup = omap2_prm_read_mod_reg(WKUP_MOD, PM_WKEN);
315 wken_wkup &= ~OMAP24XX_EN_GPT1_MASK;
316 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
318 /* Mask GPT1 */
319 mir1 = omap_readl(0x480fe0a4);
320 omap_writel(1 << 5, 0x480fe0ac);
322 omap_uart_prepare_suspend();
323 omap2_enter_full_retention();
325 omap_writel(mir1, 0x480fe0a4);
326 omap2_prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
328 return 0;
331 static int omap2_pm_enter(suspend_state_t state)
333 int ret = 0;
335 switch (state) {
336 case PM_SUSPEND_STANDBY:
337 case PM_SUSPEND_MEM:
338 ret = omap2_pm_suspend();
339 break;
340 default:
341 ret = -EINVAL;
344 return ret;
347 static void omap2_pm_end(void)
349 suspend_state = PM_SUSPEND_ON;
350 enable_hlt();
353 static const struct platform_suspend_ops omap_pm_ops = {
354 .begin = omap2_pm_begin,
355 .enter = omap2_pm_enter,
356 .end = omap2_pm_end,
357 .valid = suspend_valid_only_mem,
359 #else
360 static const struct platform_suspend_ops __initdata omap_pm_ops;
361 #endif /* CONFIG_SUSPEND */
363 /* XXX This function should be shareable between OMAP2xxx and OMAP3 */
364 static int __init clkdms_setup(struct clockdomain *clkdm, void *unused)
366 if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO)
367 clkdm_allow_idle(clkdm);
368 else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP &&
369 atomic_read(&clkdm->usecount) == 0)
370 clkdm_sleep(clkdm);
371 return 0;
374 static void __init prcm_setup_regs(void)
376 int i, num_mem_banks;
377 struct powerdomain *pwrdm;
380 * Enable autoidle
381 * XXX This should be handled by hwmod code or PRCM init code
383 omap2_prm_write_mod_reg(OMAP24XX_AUTOIDLE_MASK, OCP_MOD,
384 OMAP2_PRCM_SYSCONFIG_OFFSET);
387 * Set CORE powerdomain memory banks to retain their contents
388 * during RETENTION
390 num_mem_banks = pwrdm_get_mem_bank_count(core_pwrdm);
391 for (i = 0; i < num_mem_banks; i++)
392 pwrdm_set_mem_retst(core_pwrdm, i, PWRDM_POWER_RET);
394 /* Set CORE powerdomain's next power state to RETENTION */
395 pwrdm_set_next_pwrst(core_pwrdm, PWRDM_POWER_RET);
398 * Set MPU powerdomain's next power state to RETENTION;
399 * preserve logic state during retention
401 pwrdm_set_logic_retst(mpu_pwrdm, PWRDM_POWER_RET);
402 pwrdm_set_next_pwrst(mpu_pwrdm, PWRDM_POWER_RET);
404 /* Force-power down DSP, GFX powerdomains */
406 pwrdm = clkdm_get_pwrdm(dsp_clkdm);
407 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
408 clkdm_sleep(dsp_clkdm);
410 pwrdm = clkdm_get_pwrdm(gfx_clkdm);
411 pwrdm_set_next_pwrst(pwrdm, PWRDM_POWER_OFF);
412 clkdm_sleep(gfx_clkdm);
414 /* Enable hardware-supervised idle for all clkdms */
415 clkdm_for_each(clkdms_setup, NULL);
416 clkdm_add_wkdep(mpu_clkdm, wkup_clkdm);
418 /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
419 * stabilisation */
420 omap2_prm_write_mod_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
421 OMAP2_PRCM_CLKSSETUP_OFFSET);
423 /* Configure automatic voltage transition */
424 omap2_prm_write_mod_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_GR_MOD,
425 OMAP2_PRCM_VOLTSETUP_OFFSET);
426 omap2_prm_write_mod_reg(OMAP24XX_AUTO_EXTVOLT_MASK |
427 (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
428 OMAP24XX_MEMRETCTRL_MASK |
429 (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
430 (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
431 OMAP24XX_GR_MOD, OMAP2_PRCM_VOLTCTRL_OFFSET);
433 /* Enable wake-up events */
434 omap2_prm_write_mod_reg(OMAP24XX_EN_GPIOS_MASK | OMAP24XX_EN_GPT1_MASK,
435 WKUP_MOD, PM_WKEN);
438 static int __init omap2_pm_init(void)
440 u32 l;
442 if (!cpu_is_omap24xx())
443 return -ENODEV;
445 printk(KERN_INFO "Power Management for OMAP2 initializing\n");
446 l = omap2_prm_read_mod_reg(OCP_MOD, OMAP2_PRCM_REVISION_OFFSET);
447 printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
449 /* Look up important powerdomains */
451 mpu_pwrdm = pwrdm_lookup("mpu_pwrdm");
452 if (!mpu_pwrdm)
453 pr_err("PM: mpu_pwrdm not found\n");
455 core_pwrdm = pwrdm_lookup("core_pwrdm");
456 if (!core_pwrdm)
457 pr_err("PM: core_pwrdm not found\n");
459 /* Look up important clockdomains */
461 mpu_clkdm = clkdm_lookup("mpu_clkdm");
462 if (!mpu_clkdm)
463 pr_err("PM: mpu_clkdm not found\n");
465 wkup_clkdm = clkdm_lookup("wkup_clkdm");
466 if (!wkup_clkdm)
467 pr_err("PM: wkup_clkdm not found\n");
469 dsp_clkdm = clkdm_lookup("dsp_clkdm");
470 if (!dsp_clkdm)
471 pr_err("PM: dsp_clkdm not found\n");
473 gfx_clkdm = clkdm_lookup("gfx_clkdm");
474 if (!gfx_clkdm)
475 pr_err("PM: gfx_clkdm not found\n");
478 osc_ck = clk_get(NULL, "osc_ck");
479 if (IS_ERR(osc_ck)) {
480 printk(KERN_ERR "could not get osc_ck\n");
481 return -ENODEV;
484 if (cpu_is_omap242x()) {
485 emul_ck = clk_get(NULL, "emul_ck");
486 if (IS_ERR(emul_ck)) {
487 printk(KERN_ERR "could not get emul_ck\n");
488 clk_put(osc_ck);
489 return -ENODEV;
493 prcm_setup_regs();
495 /* Hack to prevent MPU retention when STI console is enabled. */
497 const struct omap_sti_console_config *sti;
499 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
500 struct omap_sti_console_config);
501 if (sti != NULL && sti->enable)
502 sti_console_enabled = 1;
506 * We copy the assembler sleep/wakeup routines to SRAM.
507 * These routines need to be in SRAM as that's the only
508 * memory the MPU can see when it wakes up.
510 if (cpu_is_omap24xx()) {
511 omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
512 omap24xx_idle_loop_suspend_sz);
514 omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
515 omap24xx_cpu_suspend_sz);
518 suspend_set_ops(&omap_pm_ops);
519 pm_idle = omap2_pm_idle;
521 return 0;
524 late_initcall(omap2_pm_init);