]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap2/pm.c
16df6d7b565dbf9f350f54a4a57adcbde75c78d7
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap2 / pm.c
1 /*
2  * linux/arch/arm/mach-omap2/pm.c
3  *
4  * OMAP2 Power Management Routines
5  *
6  * Copyright (C) 2005 Texas Instruments, Inc.
7  * Copyright (C) 2006 Nokia Corporation
8  *
9  * Written by:
10  * Richard Woodruff <r-woodruff2@ti.com>
11  * Tony Lindgren
12  * Juha Yrjola
13  * Amit Kucheria <amit.kucheria@nokia.com>
14  * Igor Stoppa <igor.stoppa@nokia.com>
15  *
16  * Based on pm.c for omap1
17  *
18  * This program is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License version 2 as
20  * published by the Free Software Foundation.
21  */
22
23 #include <linux/suspend.h>
24 #include <linux/sched.h>
25 #include <linux/proc_fs.h>
26 #include <linux/interrupt.h>
27 #include <linux/sysfs.h>
28 #include <linux/module.h>
29 #include <linux/delay.h>
30 #include <linux/clk.h>
31
32 #include <asm/io.h>
33 #include <asm/irq.h>
34 #include <asm/atomic.h>
35 #include <asm/mach/time.h>
36 #include <asm/mach/irq.h>
37 #include <asm/mach-types.h>
38
39 #include <asm/arch/irqs.h>
40 #include <asm/arch/clock.h>
41 #include <asm/arch/sram.h>
42 #include <asm/arch/gpio.h>
43 #include <asm/arch/pm.h>
44 #include <asm/arch/mux.h>
45 #include <asm/arch/dma.h>
46 #include <asm/arch/board.h>
47 #include <asm/arch/gpio.h>
48
49 #include "prm.h"
50 #include "prm_regbits_24xx.h"
51 #include "cm.h"
52 #include "cm_regbits_24xx.h"
53 #include "sdrc.h"
54
55 /* These addrs are in assembly language code to be patched at runtime */
56 extern void *omap2_ocs_sdrc_power;
57 extern void *omap2_ocs_sdrc_dlla_ctrl;
58
59 static void (*omap2_sram_idle)(void);
60 static void (*omap2_sram_suspend)(void __iomem *dllctrl);
61 static void (*saved_idle)(void);
62
63 static u32 omap2_read_32k_sync_counter(void)
64 {
65         return omap_readl(OMAP2_32KSYNCT_BASE + 0x0010);
66 }
67
68 #ifdef CONFIG_PM_DEBUG
69 int omap2_pm_debug = 0;
70
71 static int serial_console_clock_disabled;
72 static int serial_console_uart;
73 static unsigned int serial_console_next_disable;
74
75 static struct clk *console_iclk, *console_fclk;
76
77 static void serial_console_kick(void)
78 {
79         serial_console_next_disable = omap2_read_32k_sync_counter();
80         /* Keep the clocks on for 4 secs */
81         serial_console_next_disable += 4 * 32768;
82 }
83
84 static void serial_wait_tx(void)
85 {
86         static const unsigned long uart_bases[3] = {
87                 0x4806a000, 0x4806c000, 0x4806e000
88         };
89         unsigned long lsr_reg;
90         int looped = 0;
91
92         /* Wait for TX FIFO and THR to get empty */
93         lsr_reg = IO_ADDRESS(uart_bases[serial_console_uart - 1] + (5 << 2));
94         while ((__raw_readb(lsr_reg) & 0x60) != 0x60)
95                 looped = 1;
96         if (looped)
97                 serial_console_kick();
98 }
99
100 static void serial_console_fclk_mask(u32 *f1, u32 *f2)
101 {
102         switch (serial_console_uart)  {
103         case 1:
104                 *f1 &= ~(1 << 21);
105                 break;
106         case 2:
107                 *f1 &= ~(1 << 22);
108                 break;
109         case 3:
110                 *f2 &= ~(1 << 2);
111                 break;
112         }
113 }
114
115 static void serial_console_sleep(int enable)
116 {
117         if (console_iclk == NULL || console_fclk == NULL)
118                 return;
119
120         if (enable) {
121                 BUG_ON(serial_console_clock_disabled);
122                 if (clk_get_usecount(console_fclk) == 0)
123                         return;
124                 if ((int) serial_console_next_disable - (int) omap2_read_32k_sync_counter() >= 0)
125                         return;
126                 serial_wait_tx();
127                 clk_disable(console_iclk);
128                 clk_disable(console_fclk);
129                 serial_console_clock_disabled = 1;
130         } else {
131                 int serial_wakeup = 0;
132                 u32 l;
133
134                 switch (serial_console_uart)  {
135                 case 1:
136                         l = prm_read_mod_reg(CORE_MOD, PM_WKST1);
137                         if (l & OMAP24XX_ST_UART1)
138                                 serial_wakeup = 1;
139                         break;
140                 case 2:
141                         l = prm_read_mod_reg(CORE_MOD, PM_WKST1);
142                         if (l & OMAP24XX_ST_UART2)
143                                 serial_wakeup = 1;
144                         break;
145                 case 3:
146                         l = prm_read_mod_reg(CORE_MOD, OMAP24XX_PM_WKST2);
147                         if (l & OMAP24XX_ST_UART3)
148                                 serial_wakeup = 1;
149                         break;
150                 }
151                 if (serial_wakeup)
152                         serial_console_kick();
153                 if (!serial_console_clock_disabled)
154                         return;
155                 clk_enable(console_iclk);
156                 clk_enable(console_fclk);
157                 serial_console_clock_disabled = 0;
158         }
159 }
160
161 static void pm_init_serial_console(void)
162 {
163         const struct omap_serial_console_config *conf;
164         char name[16];
165         u32 l;
166
167         conf = omap_get_config(OMAP_TAG_SERIAL_CONSOLE,
168                                struct omap_serial_console_config);
169         if (conf == NULL)
170                 return;
171         if (conf->console_uart > 3 || conf->console_uart < 1)
172                 return;
173         serial_console_uart = conf->console_uart;
174         sprintf(name, "uart%d_fck", conf->console_uart);
175         console_fclk = clk_get(NULL, name);
176         if (IS_ERR(console_fclk))
177                 console_fclk = NULL;
178         name[6] = 'i';
179         console_iclk = clk_get(NULL, name);
180         if (IS_ERR(console_fclk))
181                 console_iclk = NULL;
182         if (console_fclk == NULL || console_iclk == NULL) {
183                 serial_console_uart = 0;
184                 return;
185         }
186         switch (serial_console_uart) {
187         case 1:
188                 l = prm_read_mod_reg(CORE_MOD, PM_WKEN1);
189                 l |= OMAP24XX_ST_UART1;
190                 prm_write_mod_reg(l, CORE_MOD, PM_WKEN1);
191                 break;
192         case 2:
193                 l = prm_read_mod_reg(CORE_MOD, PM_WKEN1);
194                 l |= OMAP24XX_ST_UART2;
195                 prm_write_mod_reg(l, CORE_MOD, PM_WKEN1);
196                 break;
197         case 3:
198                 l = prm_read_mod_reg(CORE_MOD, OMAP24XX_PM_WKEN2);
199                 l |= OMAP24XX_ST_UART3;
200                 prm_write_mod_reg(l, CORE_MOD, OMAP24XX_PM_WKEN2);
201                 break;
202         }
203 }
204
205 #define DUMP_PRM_MOD_REG(mod, reg)    \
206         regs[reg_count].name = #mod "." #reg; \
207         regs[reg_count++].val = prm_read_mod_reg(mod, reg)
208 #define DUMP_CM_MOD_REG(mod, reg)     \
209         regs[reg_count].name = #mod "." #reg; \
210         regs[reg_count++].val = cm_read_mod_reg(mod, reg)
211 #define DUMP_PRM_REG(reg) \
212         regs[reg_count].name = #reg; \
213         regs[reg_count++].val = prm_read_reg(reg)
214 #define DUMP_CM_REG(reg) \
215         regs[reg_count].name = #reg; \
216         regs[reg_count++].val = cm_read_reg(reg)
217 #define DUMP_INTC_REG(reg, off) \
218         regs[reg_count].name = #reg; \
219         regs[reg_count++].val = __raw_readl(IO_ADDRESS(0x480fe000 + (off)))
220
221 static void omap2_pm_dump(int mode, int resume, unsigned int us)
222 {
223         struct reg {
224                 const char *name;
225                 u32 val;
226         } regs[32];
227         int reg_count = 0, i;
228         const char *s1 = NULL, *s2 = NULL;
229
230         if (!resume) {
231 #if 0
232                 /* MPU */
233                 DUMP_PRM_REG(OMAP24XX_PRCM_IRQENABLE_MPU);
234                 DUMP_CM_MOD_REG(MPU_MOD, CM_CLKSTCTRL);
235                 DUMP_PRM_MOD_REG(MPU_MOD, PM_PWSTCTRL);
236                 DUMP_PRM_MOD_REG(MPU_MOD, PM_PWSTST);
237                 DUMP_PRM_MOD_REG(MPU_MOD, PM_WKDEP);
238 #endif
239 #if 0
240                 /* INTC */
241                 DUMP_INTC_REG(INTC_MIR0, 0x0084);
242                 DUMP_INTC_REG(INTC_MIR1, 0x00a4);
243                 DUMP_INTC_REG(INTC_MIR2, 0x00c4);
244 #endif
245 #if 0
246                 DUMP_CM_MOD_REG(CORE_MOD, CM_FCLKEN1);
247                 DUMP_CM_MOD_REG(CORE_MOD, OMAP24XX_CM_FCLKEN2);
248                 DUMP_CM_MOD_REG(WKUP_MOD, CM_FCLKEN);
249                 DUMP_CM_MOD_REG(CORE_MOD, CM_ICLKEN1);
250                 DUMP_CM_MOD_REG(CORE_MOD, CM_ICLKEN2);
251                 DUMP_CM_MOD_REG(WKUP_MOD, CM_ICLKEN);
252                 DUMP_CM_MOD_REG(PLL_MOD, CM_CLKEN);
253                 DUMP_PRM_REG(OMAP24XX_PRCM_CLKEMUL_CTRL);
254                 DUMP_CM_MOD_REG(PLL_MOD, CM_AUTOIDLE);
255                 DUMP_PRM_MOD_REG(CORE_MOD, PM_PWSTST);
256                 DUMP_PRM_REG(OMAP24XX_PRCM_CLKSRC_CTRL);
257 #endif
258 #if 0
259                 /* DSP */
260                 DUMP_CM_MOD_REG(OMAP24XX_DSP_MOD, CM_FCLKEN);
261                 DUMP_CM_MOD_REG(OMAP24XX_DSP_MOD, CM_ICLKEN);
262                 DUMP_CM_MOD_REG(OMAP24XX_DSP_MOD, CM_IDLEST);
263                 DUMP_CM_MOD_REG(OMAP24XX_DSP_MOD, CM_AUTOIDLE);
264                 DUMP_CM_MOD_REG(OMAP24XX_DSP_MOD, CM_CLKSEL);
265                 DUMP_CM_MOD_REG(OMAP24XX_DSP_MOD, CM_CLKSTCTRL);
266                 DUMP_PRM_MOD_REG(OMAP24XX_DSP_MOD, RM_RSTCTRL);
267                 DUMP_PRM_MOD_REG(OMAP24XX_DSP_MOD, RM_RSTST);
268                 DUMP_PRM_MOD_REG(OMAP24XX_DSP_MOD, PM_PWSTCTRL);
269                 DUMP_PRM_MOD_REG(OMAP24XX_DSP_MOD, PM_PWSTST);
270 #endif
271         } else {
272                 DUMP_PRM_MOD_REG(CORE_MOD, PM_WKST1);
273                 DUMP_PRM_MOD_REG(CORE_MOD, OMAP24XX_PM_WKST2);
274                 DUMP_PRM_MOD_REG(WKUP_MOD, PM_WKST);
275                 DUMP_PRM_REG(OMAP24XX_PRCM_IRQSTATUS_MPU);
276 #if 1
277                 DUMP_INTC_REG(INTC_PENDING_IRQ0, 0x0098);
278                 DUMP_INTC_REG(INTC_PENDING_IRQ1, 0x00b8);
279                 DUMP_INTC_REG(INTC_PENDING_IRQ2, 0x00d8);
280 #endif
281         }
282
283         switch (mode) {
284         case 0:
285                 s1 = "full";
286                 s2 = "retention";
287                 break;
288         case 1:
289                 s1 = "MPU";
290                 s2 = "retention";
291                 break;
292         case 2:
293                 s1 = "MPU";
294                 s2 = "idle";
295                 break;
296         }
297
298         if (!resume)
299 #if defined(CONFIG_NO_IDLE_HZ) || defined(CONFIG_NO_HZ)
300                 printk("--- Going to %s %s (next timer after %u ms)\n", s1, s2,
301                        jiffies_to_msecs(get_next_timer_interrupt(jiffies) - 
302                                         jiffies));
303 #else
304                 printk("--- Going to %s %s\n", s1, s2);
305 #endif
306         else
307                 printk("--- Woke up (slept for %u.%03u ms)\n", us / 1000, us % 1000);
308         for (i = 0; i < reg_count; i++)
309                 printk("%-20s: 0x%08x\n", regs[i].name, regs[i].val);
310 }
311
312 #else
313 static inline void serial_console_sleep(int enable) {}
314 static inline void pm_init_serial_console(void) {}
315 static inline void omap2_pm_dump(int mode, int resume, unsigned int us) {}
316 static inline void serial_console_fclk_mask(u32 *f1, u32 *f2) {}
317
318 #define omap2_pm_debug 0
319
320 #endif
321
322 static unsigned short enable_dyn_sleep = 0; /* disabled till drivers are fixed */
323
324 static ssize_t omap_pm_sleep_while_idle_show(struct kset * subsys, char *buf)
325 {
326         return sprintf(buf, "%hu\n", enable_dyn_sleep);
327 }
328
329 static ssize_t omap_pm_sleep_while_idle_store(struct kset * subsys,
330                                               const char * buf,
331                                               size_t n)
332 {
333         unsigned short value;
334         if (sscanf(buf, "%hu", &value) != 1 ||
335             (value != 0 && value != 1)) {
336                 printk(KERN_ERR "idle_sleep_store: Invalid value\n");
337                 return -EINVAL;
338         }
339         enable_dyn_sleep = value;
340         return n;
341 }
342
343 static struct subsys_attribute sleep_while_idle_attr = {
344         .attr   = {
345                 .name = __stringify(sleep_while_idle),
346                 .mode = 0644,
347         },
348         .show   = omap_pm_sleep_while_idle_show,
349         .store  = omap_pm_sleep_while_idle_store,
350 };
351
352 static struct clk *osc_ck, *emul_ck;
353
354 #define CONTROL_DEVCONF         __REG32(OMAP2_CTRL_BASE + 0x274)
355
356 static int omap2_fclks_active(void)
357 {
358         u32 f1, f2;
359
360         f1 = cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
361         f2 = cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
362         serial_console_fclk_mask(&f1, &f2);
363         if (f1 | f2)
364                 return 1;
365         return 0;
366 }
367
368 static int omap2_irq_pending(void)
369 {
370         u32 pending_reg = IO_ADDRESS(0x480fe098);
371         int i;
372
373         for (i = 0; i < 4; i++) {
374                 if (__raw_readl(pending_reg))
375                         return 1;
376                 pending_reg += 0x20;
377         }
378         return 0;
379 }
380
381 static atomic_t sleep_block = ATOMIC_INIT(0);
382
383 void omap2_block_sleep(void)
384 {
385         atomic_inc(&sleep_block);
386 }
387
388 void omap2_allow_sleep(void)
389 {
390         int i;
391
392         i = atomic_dec_return(&sleep_block);
393         BUG_ON(i < 0);
394 }
395
396 static void omap2_enter_full_retention(void)
397 {
398         u32 sleep_time = 0;
399
400         /* There is 1 reference hold for all children of the oscillator
401          * clock, the following will remove it. If no one else uses the
402          * oscillator itself it will be disabled if/when we enter retention
403          * mode.
404          */
405         clk_disable(osc_ck);
406
407         /* Clear old wake-up events */
408         /* REVISIT: These write to reserved bits? */
409         prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
410         prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
411         prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
412
413         /* Try to enter retention */
414         prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) | OMAP_LOGICRETSTATE,
415                           MPU_MOD, PM_PWSTCTRL);
416
417         /* Workaround to kill USB */
418         CONTROL_DEVCONF |= 0x00008000;
419
420         omap2_gpio_prepare_for_retention();
421
422         if (omap2_pm_debug) {
423                 omap2_pm_dump(0, 0, 0);
424                 sleep_time = omap2_read_32k_sync_counter();
425         }
426
427         /* One last check for pending IRQs to avoid extra latency due
428          * to sleeping unnecessarily. */
429         if (omap2_irq_pending())
430                 goto no_sleep;
431
432         serial_console_sleep(1);
433         /* Jump to SRAM suspend code */
434         omap2_sram_suspend(OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL));
435 no_sleep:
436         serial_console_sleep(0);
437
438         if (omap2_pm_debug) {
439                 unsigned long long tmp;
440                 u32 resume_time;
441
442                 resume_time = omap2_read_32k_sync_counter();
443                 tmp = resume_time - sleep_time;
444                 tmp *= 1000000;
445                 omap2_pm_dump(0, 1, tmp / 32768);
446         }
447         omap2_gpio_resume_after_retention();
448
449         clk_enable(osc_ck);
450
451 }
452
453 static int omap2_i2c_active(void)
454 {
455         u32 l;
456
457         l = cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
458         return l & (OMAP2420_EN_I2C2 | OMAP2420_EN_I2C1);
459 }
460
461 static int sti_console_enabled;
462
463 static int omap2_allow_mpu_retention(void)
464 {
465         u32 l;
466
467         if (atomic_read(&sleep_block))
468                 return 0;
469
470         /* Check for MMC, UART2, UART1, McSPI2, McSPI1 and DSS1. */
471         l = cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
472         if (l & (OMAP2420_EN_MMC | OMAP24XX_EN_UART2 |
473                  OMAP24XX_EN_UART1 | OMAP24XX_EN_MCSPI2 |
474                  OMAP24XX_EN_MCSPI1 | OMAP24XX_EN_DSS1))
475                 return 0;
476         /* Check for UART3. */
477         l = cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);
478         if (l & OMAP24XX_EN_UART3)
479                 return 0;
480         if (sti_console_enabled)
481                 return 0;
482
483         return 1;
484 }
485
486 static void omap2_enter_mpu_retention(void)
487 {
488         u32 sleep_time = 0;
489         int only_idle = 0;
490
491         /* Putting MPU into the WFI state while a transfer is active
492          * seems to cause the I2C block to timeout. Why? Good question. */
493         if (omap2_i2c_active())
494                 return;
495
496         /* The peripherals seem not to be able to wake up the MPU when
497          * it is in retention mode. */
498         if (omap2_allow_mpu_retention()) {
499                 /* REVISIT: These write to reserved bits? */
500                 prm_write_mod_reg(0xffffffff, CORE_MOD, PM_WKST1);
501                 prm_write_mod_reg(0xffffffff, CORE_MOD, OMAP24XX_PM_WKST2);
502                 prm_write_mod_reg(0xffffffff, WKUP_MOD, PM_WKST);
503
504                 /* Try to enter MPU retention */
505                 prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
506                                   OMAP_LOGICRETSTATE,
507                                   MPU_MOD, PM_PWSTCTRL);
508         } else {
509                 /* Block MPU retention */
510
511                 prm_write_mod_reg(OMAP_LOGICRETSTATE, MPU_MOD, PM_PWSTCTRL);
512                 only_idle = 1;
513         }
514
515         if (omap2_pm_debug) {
516                 omap2_pm_dump(only_idle ? 2 : 1, 0, 0);
517                 sleep_time = omap2_read_32k_sync_counter();
518         }
519
520         omap2_sram_idle();
521
522         if (omap2_pm_debug) {
523                 unsigned long long tmp;
524                 u32 resume_time;
525
526                 resume_time = omap2_read_32k_sync_counter();
527                 tmp = resume_time - sleep_time;
528                 tmp *= 1000000;
529                 omap2_pm_dump(only_idle ? 2 : 1, 1, tmp / 32768);
530         }
531 }
532
533 static int omap2_can_sleep(void)
534 {
535         if (!enable_dyn_sleep)
536                 return 0;
537         if (omap2_fclks_active())
538                 return 0;
539         if (atomic_read(&sleep_block) > 0)
540                 return 0;
541         if (clk_get_usecount(osc_ck) > 1)
542                 return 0;
543         if (omap_dma_running())
544                 return 0;
545
546         return 1;
547 }
548
549 static void omap2_pm_idle(void)
550 {
551         local_irq_disable();
552         local_fiq_disable();
553
554         if (!omap2_can_sleep()) {
555                 /* timer_dyn_reprogram() takes about 100-200 us to complete.
556                  * In some contexts (e.g. when waiting for a GPMC-SDRAM DMA
557                  * transfer to complete), the increased latency is too much.
558                  *
559                  * omap2_block_sleep() and omap2_allow_sleep() can be used
560                  * to indicate this.
561                  */
562                 if (atomic_read(&sleep_block) == 0) {
563                         timer_dyn_reprogram();
564                         if (omap2_irq_pending())
565                                 goto out;
566                 }
567                 omap2_enter_mpu_retention();
568                 goto out;
569         }
570
571         /*
572          * Since an interrupt may set up a timer, we don't want to
573          * reprogram the hardware timer with interrupts enabled.
574          * Re-enable interrupts only after returning from idle.
575          */
576         timer_dyn_reprogram();
577
578         if (omap2_irq_pending())
579                 goto out;
580
581         omap2_enter_full_retention();
582
583 out:
584         local_fiq_enable();
585         local_irq_enable();
586 }
587
588 static int omap2_pm_prepare(void)
589 {
590         /* We cannot sleep in idle until we have resumed */
591         saved_idle = pm_idle;
592         pm_idle = NULL;
593
594         return 0;
595 }
596
597 static int omap2_pm_suspend(void)
598 {
599         u32 wken_wkup, mir1;
600
601         wken_wkup = prm_read_mod_reg(WKUP_MOD, PM_WKEN);
602         prm_write_mod_reg(wken_wkup & ~OMAP24XX_EN_GPT1, WKUP_MOD, PM_WKEN);
603
604         /* Mask GPT1 */
605         mir1 = omap_readl(0x480fe0a4);
606         omap_writel(1 << 5, 0x480fe0ac);
607
608         omap2_enter_full_retention();
609
610         omap_writel(mir1, 0x480fe0a4);
611         prm_write_mod_reg(wken_wkup, WKUP_MOD, PM_WKEN);
612
613         return 0;
614 }
615
616 static int omap2_pm_enter(suspend_state_t state)
617 {
618         int ret = 0;
619
620         switch (state) {
621         case PM_SUSPEND_STANDBY:
622         case PM_SUSPEND_MEM:
623                 ret = omap2_pm_suspend();
624                 break;
625         default:
626                 ret = -EINVAL;
627         }
628
629         return ret;
630 }
631
632 static void omap2_pm_finish(void)
633 {
634         pm_idle = saved_idle;
635 }
636
637 static struct platform_suspend_ops omap_pm_ops = {
638         .prepare        = omap2_pm_prepare,
639         .enter          = omap2_pm_enter,
640         .finish         = omap2_pm_finish,
641         .valid          = suspend_valid_only_mem,
642 };
643
644 static void __init prcm_setup_regs(void)
645 {
646         u32 l;
647
648         /* Enable autoidle */
649         prm_write_reg(OMAP24XX_AUTOIDLE, OMAP24XX_PRCM_SYSCONFIG);
650
651         /* Set all domain wakeup dependencies */
652         prm_write_mod_reg(OMAP_EN_WKUP, MPU_MOD, PM_WKDEP);
653         prm_write_mod_reg(0, OMAP24XX_DSP_MOD, PM_WKDEP);
654         prm_write_mod_reg(0, GFX_MOD, PM_WKDEP);
655
656         l = prm_read_mod_reg(CORE_MOD, PM_PWSTCTRL);
657         /* Enable retention for all memory blocks */
658         l |= OMAP24XX_MEM3RETSTATE | OMAP24XX_MEM2RETSTATE |
659                 OMAP24XX_MEM1RETSTATE;
660
661         /* Set power state to RETENTION */
662         l &= ~OMAP_POWERSTATE_MASK;
663         l |= 0x01 << OMAP_POWERSTATE_SHIFT;
664         prm_write_mod_reg(l, CORE_MOD, PM_PWSTCTRL);
665
666         prm_write_mod_reg((0x01 << OMAP_POWERSTATE_SHIFT) |
667                           OMAP_LOGICRETSTATE,
668                           MPU_MOD, PM_PWSTCTRL);
669
670         /* Power down DSP and GFX */
671         prm_write_mod_reg(OMAP24XX_FORCESTATE | (0x3 << OMAP_POWERSTATE_SHIFT),
672                           OMAP24XX_DSP_MOD, PM_PWSTCTRL);
673         prm_write_mod_reg(OMAP24XX_FORCESTATE | (0x3 << OMAP_POWERSTATE_SHIFT),
674                           GFX_MOD, PM_PWSTCTRL);
675
676         /* Enable clock auto control for all domains */
677         cm_write_mod_reg(OMAP24XX_AUTOSTATE_MPU, MPU_MOD, CM_CLKSTCTRL);
678         cm_write_mod_reg(OMAP24XX_AUTOSTATE_DSS | OMAP24XX_AUTOSTATE_L4 |
679                          OMAP24XX_AUTOSTATE_L3,
680                          CORE_MOD, CM_CLKSTCTRL);
681         cm_write_mod_reg(OMAP24XX_AUTOSTATE_GFX, GFX_MOD, CM_CLKSTCTRL);
682         cm_write_mod_reg(OMAP2420_AUTOSTATE_IVA | OMAP24XX_AUTOSTATE_DSP,
683                          OMAP24XX_DSP_MOD, CM_CLKSTCTRL);
684
685         /* Enable clock autoidle for all domains */
686         cm_write_mod_reg(OMAP24XX_AUTO_CAM |
687                          OMAP24XX_AUTO_MAILBOXES |
688                          OMAP24XX_AUTO_WDT4 |
689                          OMAP2420_AUTO_WDT3 |
690                          OMAP24XX_AUTO_MSPRO |
691                          OMAP2420_AUTO_MMC |
692                          OMAP24XX_AUTO_FAC |
693                          OMAP2420_AUTO_EAC |
694                          OMAP24XX_AUTO_HDQ |
695                          OMAP24XX_AUTO_UART2 |
696                          OMAP24XX_AUTO_UART1 |
697                          OMAP24XX_AUTO_I2C2 |
698                          OMAP24XX_AUTO_I2C1 |
699                          OMAP24XX_AUTO_MCSPI2 |
700                          OMAP24XX_AUTO_MCSPI1 |
701                          OMAP24XX_AUTO_MCBSP2 |
702                          OMAP24XX_AUTO_MCBSP1 |
703                          OMAP24XX_AUTO_GPT12 |
704                          OMAP24XX_AUTO_GPT11 |
705                          OMAP24XX_AUTO_GPT10 |
706                          OMAP24XX_AUTO_GPT9 |
707                          OMAP24XX_AUTO_GPT8 |
708                          OMAP24XX_AUTO_GPT7 |
709                          OMAP24XX_AUTO_GPT6 |
710                          OMAP24XX_AUTO_GPT5 |
711                          OMAP24XX_AUTO_GPT4 |
712                          OMAP24XX_AUTO_GPT3 |
713                          OMAP24XX_AUTO_GPT2 |
714                          OMAP2420_AUTO_VLYNQ |
715                          OMAP24XX_AUTO_DSS,
716                          CORE_MOD, CM_AUTOIDLE1);
717         cm_write_mod_reg(OMAP24XX_AUTO_UART3 |
718                          OMAP24XX_AUTO_SSI |
719                          OMAP24XX_AUTO_USB,
720                          CORE_MOD, CM_AUTOIDLE2);
721         cm_write_mod_reg(OMAP24XX_AUTO_SDRC |
722                          OMAP24XX_AUTO_GPMC |
723                          OMAP24XX_AUTO_SDMA,
724                          CORE_MOD, OMAP24XX_CM_AUTOIDLE3);
725         cm_write_mod_reg(OMAP24XX_AUTO_PKA |
726                          OMAP24XX_AUTO_AES |
727                          OMAP24XX_AUTO_RNG |
728                          OMAP24XX_AUTO_SHA |
729                          OMAP24XX_AUTO_DES,
730                          CORE_MOD, OMAP24XX_CM_AUTOIDLE4);
731
732         cm_write_mod_reg(OMAP2420_AUTO_DSP_IPI, OMAP24XX_DSP_MOD, CM_AUTOIDLE);
733
734         /* Put DPLL and both APLLs into autoidle mode */
735         cm_write_mod_reg((0x03 << OMAP24XX_AUTO_DPLL_SHIFT) |
736                          (0x03 << OMAP24XX_AUTO_96M_SHIFT) |
737                          (0x03 << OMAP24XX_AUTO_54M_SHIFT),
738                          PLL_MOD, CM_AUTOIDLE);
739
740         cm_write_mod_reg(OMAP24XX_AUTO_OMAPCTRL |
741                          OMAP24XX_AUTO_WDT1 |
742                          OMAP24XX_AUTO_MPU_WDT |
743                          OMAP24XX_AUTO_GPIOS |
744                          OMAP24XX_AUTO_32KSYNC |
745                          OMAP24XX_AUTO_GPT1,
746                          WKUP_MOD, CM_AUTOIDLE);
747
748         /* REVISIT: Configure number of 32 kHz clock cycles for sys_clk
749          * stabilisation */
750         prm_write_reg(15 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_PRCM_CLKSSETUP);
751
752         /* Configure automatic voltage transition */
753         prm_write_reg(2 << OMAP_SETUP_TIME_SHIFT, OMAP24XX_PRCM_VOLTSETUP);
754         prm_write_reg(OMAP24XX_AUTO_EXTVOLT |
755                       (0x1 << OMAP24XX_SETOFF_LEVEL_SHIFT) |
756                       OMAP24XX_MEMRETCTRL |
757                       (0x1 << OMAP24XX_SETRET_LEVEL_SHIFT) |
758                       (0x0 << OMAP24XX_VOLT_LEVEL_SHIFT),
759                       OMAP24XX_PRCM_VOLTCTRL);
760
761         /* Enable wake-up events */
762         prm_write_mod_reg(OMAP24XX_EN_GPIOS | OMAP24XX_EN_GPT1,
763                           WKUP_MOD, PM_WKEN);
764 }
765
766 int __init omap2_pm_init(void)
767 {
768         u32 l;
769
770         printk(KERN_INFO "Power Management for OMAP2 initializing\n");
771         l = prm_read_reg(OMAP24XX_PRCM_REVISION);
772         printk(KERN_INFO "PRCM revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f);
773
774         osc_ck = clk_get(NULL, "osc_ck");
775         if (IS_ERR(osc_ck)) {
776                 printk(KERN_ERR "could not get osc_ck\n");
777                 return -ENODEV;
778         }
779
780         if (cpu_is_omap242x()) {
781                 emul_ck = clk_get(NULL, "emul_ck");
782                 if (IS_ERR(emul_ck)) {
783                         printk(KERN_ERR "could not get emul_ck\n");
784                         clk_put(osc_ck);
785                         return -ENODEV;
786                 }
787         }
788
789         prcm_setup_regs();
790
791         pm_init_serial_console();
792
793         /* Hack to prevent MPU retention when STI console is enabled. */
794         {
795                 const struct omap_sti_console_config *sti;
796
797                 sti = omap_get_config(OMAP_TAG_STI_CONSOLE,
798                                       struct omap_sti_console_config);
799                 if (sti != NULL && sti->enable)
800                         sti_console_enabled = 1;
801         }
802
803         /*
804          * We copy the assembler sleep/wakeup routines to SRAM.
805          * These routines need to be in SRAM as that's the only
806          * memory the MPU can see when it wakes up.
807          */
808         omap2_sram_idle = omap_sram_push(omap24xx_idle_loop_suspend,
809                                          omap24xx_idle_loop_suspend_sz);
810
811         omap2_sram_suspend = omap_sram_push(omap24xx_cpu_suspend,
812                                             omap24xx_cpu_suspend_sz);
813
814         /* Patch in the correct register addresses for multiboot */
815         omap_sram_patch_va(omap24xx_cpu_suspend, &omap2_ocs_sdrc_power,
816                            omap2_sram_suspend,
817                            OMAP_SDRC_REGADDR(SDRC_POWER));
818         omap_sram_patch_va(omap24xx_cpu_suspend, &omap2_ocs_sdrc_dlla_ctrl,
819                            omap2_sram_suspend,
820                            OMAP_SDRC_REGADDR(SDRC_DLLA_CTRL));
821
822         suspend_set_ops(&omap_pm_ops);
823         pm_idle = omap2_pm_idle;
824
825         l = subsys_create_file(&power_subsys, &sleep_while_idle_attr);
826         if (l)
827                 printk(KERN_ERR "subsys_create_file failed: %d\n", l);
828
829         return 0;
830 }
831
832 late_initcall(omap2_pm_init);