2 * DaVinci Power Management Routines
4 * Copyright (C) 2009 Texas Instruments, Inc. http://www.ti.com/
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #include <linux/suspend.h>
13 #include <linux/module.h>
14 #include <linux/platform_device.h>
15 #include <linux/clk.h>
16 #include <linux/spinlock.h>
18 #include <asm/cacheflush.h>
19 #include <asm/delay.h>
21 #include <mach/da8xx.h>
22 #include <mach/sram.h>
27 #define DEEPSLEEP_SLEEPCOUNT_MASK 0xFFFF
29 static void (*davinci_sram_suspend
) (struct davinci_pm_config
*);
30 static struct davinci_pm_config
*pdata
;
32 static void davinci_sram_push(void *dest
, void *src
, unsigned int size
)
34 memcpy(dest
, src
, size
);
35 flush_icache_range((unsigned long)dest
, (unsigned long)(dest
+ size
));
38 static void davinci_pm_suspend(void)
42 if (pdata
->cpupll_reg_base
!= pdata
->ddrpll_reg_base
) {
44 /* Switch CPU PLL to bypass mode */
45 val
= __raw_readl(pdata
->cpupll_reg_base
+ PLLCTL
);
46 val
&= ~(PLLCTL_PLLENSRC
| PLLCTL_PLLEN
);
47 __raw_writel(val
, pdata
->cpupll_reg_base
+ PLLCTL
);
49 udelay(PLL_BYPASS_TIME
);
51 /* Powerdown CPU PLL */
52 val
= __raw_readl(pdata
->cpupll_reg_base
+ PLLCTL
);
53 val
|= PLLCTL_PLLPWRDN
;
54 __raw_writel(val
, pdata
->cpupll_reg_base
+ PLLCTL
);
57 /* Configure sleep count in deep sleep register */
58 val
= __raw_readl(pdata
->deepsleep_reg
);
59 val
&= ~DEEPSLEEP_SLEEPCOUNT_MASK
,
60 val
|= pdata
->sleepcount
;
61 __raw_writel(val
, pdata
->deepsleep_reg
);
63 /* System goes to sleep in this call */
64 davinci_sram_suspend(pdata
);
66 if (pdata
->cpupll_reg_base
!= pdata
->ddrpll_reg_base
) {
68 /* put CPU PLL in reset */
69 val
= __raw_readl(pdata
->cpupll_reg_base
+ PLLCTL
);
70 val
&= ~PLLCTL_PLLRST
;
71 __raw_writel(val
, pdata
->cpupll_reg_base
+ PLLCTL
);
73 /* put CPU PLL in power down */
74 val
= __raw_readl(pdata
->cpupll_reg_base
+ PLLCTL
);
75 val
&= ~PLLCTL_PLLPWRDN
;
76 __raw_writel(val
, pdata
->cpupll_reg_base
+ PLLCTL
);
78 /* wait for CPU PLL reset */
79 udelay(PLL_RESET_TIME
);
81 /* bring CPU PLL out of reset */
82 val
= __raw_readl(pdata
->cpupll_reg_base
+ PLLCTL
);
84 __raw_writel(val
, pdata
->cpupll_reg_base
+ PLLCTL
);
86 /* Wait for CPU PLL to lock */
87 udelay(PLL_LOCK_TIME
);
89 /* Remove CPU PLL from bypass mode */
90 val
= __raw_readl(pdata
->cpupll_reg_base
+ PLLCTL
);
91 val
&= ~PLLCTL_PLLENSRC
;
93 __raw_writel(val
, pdata
->cpupll_reg_base
+ PLLCTL
);
97 static int davinci_pm_enter(suspend_state_t state
)
102 case PM_SUSPEND_STANDBY
:
104 davinci_pm_suspend();
113 static struct platform_suspend_ops davinci_pm_ops
= {
114 .enter
= davinci_pm_enter
,
115 .valid
= suspend_valid_only_mem
,
118 static int __init
davinci_pm_probe(struct platform_device
*pdev
)
120 pdata
= pdev
->dev
.platform_data
;
122 dev_err(&pdev
->dev
, "cannot get platform data\n");
126 davinci_sram_suspend
= sram_alloc(davinci_cpu_suspend_sz
, NULL
);
127 if (!davinci_sram_suspend
) {
128 dev_err(&pdev
->dev
, "cannot allocate SRAM memory\n");
132 davinci_sram_push(davinci_sram_suspend
, davinci_cpu_suspend
,
133 davinci_cpu_suspend_sz
);
135 suspend_set_ops(&davinci_pm_ops
);
140 static int __exit
davinci_pm_remove(struct platform_device
*pdev
)
142 sram_free(davinci_sram_suspend
, davinci_cpu_suspend_sz
);
146 static struct platform_driver davinci_pm_driver
= {
148 .name
= "pm-davinci",
149 .owner
= THIS_MODULE
,
151 .remove
= __exit_p(davinci_pm_remove
),
154 static int __init
davinci_pm_init(void)
156 return platform_driver_probe(&davinci_pm_driver
, davinci_pm_probe
);
158 late_initcall(davinci_pm_init
);