blob: 849d77e5631cfebcc1ff9a0f16146bf2ad997ac3 [file] [log] [blame]
Steven Miao93f89512012-05-16 18:26:10 +08001/*
2 * Blackfin bf609 power management
3 *
4 * Copyright 2011 Analog Devices Inc.
5 *
6 * Licensed under the GPL-2
7 */
8
9#include <linux/suspend.h>
10#include <linux/io.h>
11#include <linux/interrupt.h>
12#include <linux/gpio.h>
13#include <linux/irq.h>
14
15#include <linux/delay.h>
16
17#include <asm/dpmc.h>
18#include <asm/pm.h>
19#include <mach/pm.h>
20#include <asm/blackfin.h>
21
22/***********************************************************/
23/* */
24/* Wakeup Actions for DPM_RESTORE */
25/* */
26/***********************************************************/
27#define BITP_ROM_WUA_CHKHDR 24
28#define BITP_ROM_WUA_DDRLOCK 7
29#define BITP_ROM_WUA_DDRDLLEN 6
30#define BITP_ROM_WUA_DDR 5
31#define BITP_ROM_WUA_CGU 4
32#define BITP_ROM_WUA_MEMBOOT 2
33#define BITP_ROM_WUA_EN 1
34
35#define BITM_ROM_WUA_CHKHDR (0xFF000000)
36#define ENUM_ROM_WUA_CHKHDR_AD 0xAD000000
37
38#define BITM_ROM_WUA_DDRLOCK (0x00000080)
39#define BITM_ROM_WUA_DDRDLLEN (0x00000040)
40#define BITM_ROM_WUA_DDR (0x00000020)
41#define BITM_ROM_WUA_CGU (0x00000010)
42#define BITM_ROM_WUA_MEMBOOT (0x00000002)
43#define BITM_ROM_WUA_EN (0x00000001)
44
45/***********************************************************/
46/* */
47/* Syscontrol */
48/* */
49/***********************************************************/
50#define BITP_ROM_SYSCTRL_CGU_LOCKINGEN 28 /* unlocks CGU_CTL register */
51#define BITP_ROM_SYSCTRL_WUA_OVERRIDE 24
52#define BITP_ROM_SYSCTRL_WUA_DDRDLLEN 20 /* Saves the DDR DLL and PADS registers to the DPM registers */
53#define BITP_ROM_SYSCTRL_WUA_DDR 19 /* Saves the DDR registers to the DPM registers */
54#define BITP_ROM_SYSCTRL_WUA_CGU 18 /* Saves the CGU registers into DPM registers */
55#define BITP_ROM_SYSCTRL_WUA_DPMWRITE 17 /* Saves the Syscontrol structure structure contents into DPM registers */
56#define BITP_ROM_SYSCTRL_WUA_EN 16 /* reads current PLL and DDR configuration into structure */
57#define BITP_ROM_SYSCTRL_DDR_WRITE 13 /* writes the DDR registers from Syscontrol structure for wakeup initialization of DDR */
58#define BITP_ROM_SYSCTRL_DDR_READ 12 /* Read the DDR registers into the Syscontrol structure for storing prior to hibernate */
59#define BITP_ROM_SYSCTRL_CGU_AUTODIS 11 /* Disables auto handling of UPDT and ALGN fields */
60#define BITP_ROM_SYSCTRL_CGU_CLKOUTSEL 7 /* access CGU_CLKOUTSEL register */
61#define BITP_ROM_SYSCTRL_CGU_DIV 6 /* access CGU_DIV register */
62#define BITP_ROM_SYSCTRL_CGU_STAT 5 /* access CGU_STAT register */
63#define BITP_ROM_SYSCTRL_CGU_CTL 4 /* access CGU_CTL register */
64#define BITP_ROM_SYSCTRL_CGU_RTNSTAT 2 /* Update structure STAT field upon error */
65#define BITP_ROM_SYSCTRL_WRITE 1 /* write registers */
66#define BITP_ROM_SYSCTRL_READ 0 /* read registers */
67
68#define BITM_ROM_SYSCTRL_CGU_READ (0x00000001) /* Read CGU registers */
69#define BITM_ROM_SYSCTRL_CGU_WRITE (0x00000002) /* Write registers */
70#define BITM_ROM_SYSCTRL_CGU_RTNSTAT (0x00000004) /* Update structure STAT field upon error or after a write operation */
71#define BITM_ROM_SYSCTRL_CGU_CTL (0x00000010) /* Access CGU_CTL register */
72#define BITM_ROM_SYSCTRL_CGU_STAT (0x00000020) /* Access CGU_STAT register */
73#define BITM_ROM_SYSCTRL_CGU_DIV (0x00000040) /* Access CGU_DIV register */
74#define BITM_ROM_SYSCTRL_CGU_CLKOUTSEL (0x00000080) /* Access CGU_CLKOUTSEL register */
75#define BITM_ROM_SYSCTRL_CGU_AUTODIS (0x00000800) /* Disables auto handling of UPDT and ALGN fields */
76#define BITM_ROM_SYSCTRL_DDR_READ (0x00001000) /* Reads the contents of the DDR registers and stores them into the structure */
77#define BITM_ROM_SYSCTRL_DDR_WRITE (0x00002000) /* Writes the DDR registers from the structure, only really intented for wakeup functionality and not for full DDR configuration */
78#define BITM_ROM_SYSCTRL_WUA_EN (0x00010000) /* Wakeup entry or exit opertation enable */
79#define BITM_ROM_SYSCTRL_WUA_DPMWRITE (0x00020000) /* When set indicates a restore of the PLL and DDR is to be performed otherwise a save is required */
80#define BITM_ROM_SYSCTRL_WUA_CGU (0x00040000) /* Only applicable for a PLL and DDR save operation to the DPM, saves the current settings if cleared or the contents of the structure if set */
81#define BITM_ROM_SYSCTRL_WUA_DDR (0x00080000) /* Only applicable for a PLL and DDR save operation to the DPM, saves the current settings if cleared or the contents of the structure if set */
82#define BITM_ROM_SYSCTRL_WUA_DDRDLLEN (0x00100000) /* Enables saving/restoring of the DDR DLLCTL register */
83#define BITM_ROM_SYSCTRL_WUA_OVERRIDE (0x01000000)
84#define BITM_ROM_SYSCTRL_CGU_LOCKINGEN (0x10000000) /* Unlocks the CGU_CTL register */
85
86
87/* Structures for the syscontrol() function */
88struct STRUCT_ROM_SYSCTRL {
89 uint32_t ulCGU_CTL;
90 uint32_t ulCGU_STAT;
91 uint32_t ulCGU_DIV;
92 uint32_t ulCGU_CLKOUTSEL;
93 uint32_t ulWUA_Flags;
94 uint32_t ulWUA_BootAddr;
95 uint32_t ulWUA_User;
96 uint32_t ulDDR_CTL;
97 uint32_t ulDDR_CFG;
98 uint32_t ulDDR_TR0;
99 uint32_t ulDDR_TR1;
100 uint32_t ulDDR_TR2;
101 uint32_t ulDDR_MR;
102 uint32_t ulDDR_EMR1;
103 uint32_t ulDDR_EMR2;
104 uint32_t ulDDR_PADCTL;
105 uint32_t ulDDR_DLLCTL;
106 uint32_t ulReserved;
107};
108
109struct bfin_pm_data {
110 uint32_t magic;
111 uint32_t resume_addr;
112 uint32_t sp;
113};
114
115struct bfin_pm_data bf609_pm_data;
116
117struct STRUCT_ROM_SYSCTRL configvalues;
118uint32_t dactionflags;
119
120#define FUNC_ROM_SYSCONTROL 0xC8000080
121__attribute__((l1_data))
122static uint32_t (* const bfrom_SysControl)(uint32_t action_flags, struct STRUCT_ROM_SYSCTRL *settings, void *reserved) = (void *)FUNC_ROM_SYSCONTROL;
123
124__attribute__((l1_text))
125void bfin_cpu_suspend(void)
126{
127 __asm__ __volatile__( \
128 ".align 8;" \
129 "idle;" \
130 : : \
131 );
132}
133
134__attribute__((l1_text))
135void bfin_deepsleep(unsigned long mask)
136{
137 uint32_t dpm0_ctl;
138
139 bfin_write32(DPM0_WAKE_EN, 0x10);
140 bfin_write32(DPM0_WAKE_POL, 0x10);
141 dpm0_ctl = bfin_read32(DPM0_CTL);
142 dpm0_ctl = 0x00000008;
143 bfin_write32(DPM0_CTL, dpm0_ctl);
144 SSYNC();
145 __asm__ __volatile__( \
146 ".align 8;" \
147 "idle;" \
148 : : \
149 );
Sonic Zhang72b099e2012-05-17 17:33:00 +0800150#ifdef CONFIG_BFIN_PM_WAKEUP_TIME_BENCH
151 __asm__ __volatile__(
152 "%0 = 0;"
153 "CYCLES = %0;"
154 "CYCLES2 = %0;"
155 "%0 = SYSCFG;"
156 "BITSET(%0, 1);"
157 "SYSCFG = %0;"
158 : "=d,a" (dpm0_ctl) :
159 );
160#endif
161
Steven Miao93f89512012-05-16 18:26:10 +0800162}
163
164__attribute__((l1_text))
165void bf609_ddr_sr(void)
166{
167 uint32_t reg;
168
169 reg = bfin_read_DDR0_CTL();
170 reg |= 0x8;
171 bfin_write_DDR0_CTL(reg);
172
173 while (!(bfin_read_DDR0_STAT() & 0x8))
174 continue;
175}
176
177__attribute__((l1_text))
178void bf609_ddr_sr_exit(void)
179{
180 uint32_t reg;
181 while (!(bfin_read_DDR0_STAT() & 0x1))
182 continue;
183
184 reg = bfin_read_DDR0_CTL();
185 reg &= ~0x8;
186 bfin_write_DDR0_CTL(reg);
187
188 while ((bfin_read_DDR0_STAT() & 0x8))
189 continue;
190}
191
192__attribute__((l1_text))
193void bfin_hibernate_syscontrol(void)
194{
195 configvalues.ulWUA_Flags = (0xAD000000 | BITM_ROM_WUA_EN
196 | BITM_ROM_WUA_CGU | BITM_ROM_WUA_DDR | BITM_ROM_WUA_DDRDLLEN);
197
198 dactionflags = (BITM_ROM_SYSCTRL_WUA_EN
199 | BITM_ROM_SYSCTRL_WUA_DPMWRITE | BITM_ROM_SYSCTRL_WUA_CGU
200 | BITM_ROM_SYSCTRL_WUA_DDR | BITM_ROM_SYSCTRL_WUA_DDRDLLEN);
201
202 bfrom_SysControl(dactionflags, &configvalues, NULL);
203
204 bfin_write32(DPM0_RESTORE5, bfin_read32(DPM0_RESTORE5) | 4);
205}
206
207#ifndef CONFIG_BF60x
208# define SIC_SYSIRQ(irq) (irq - (IRQ_CORETMR + 1))
209#else
210# define SIC_SYSIRQ(irq) ((irq) - IVG15)
211#endif
212void bfin_hibernate(unsigned long mask)
213{
214 bfin_write32(DPM0_WAKE_EN, 0x10);
215 bfin_write32(DPM0_WAKE_POL, 0x10);
216 bfin_write32(DPM0_PGCNTR, 0x0000FFFF);
217 bfin_write32(DPM0_HIB_DIS, 0xFFFF);
218
219 printk(KERN_DEBUG "hibernate: restore %x pgcnt %x\n", bfin_read32(DPM0_RESTORE0), bfin_read32(DPM0_PGCNTR));
220
221 bf609_hibernate();
222}
223
224void bf609_cpu_pm_enter(suspend_state_t state)
225{
226 int error;
Steven Miao0fbd88c2012-05-17 17:29:54 +0800227 unsigned long wakeup = 0;
228 unsigned long wakeup_pol = 0;
229
230#ifdef CONFIG_PM_BFIN_WAKE_PA15
231 wakeup |= PA15WE;
232# if CONFIG_PM_BFIN_WAKE_PA15_POL
233 wakeup_pol |= PA15WE;
234# endif
235#endif
236
237#ifdef CONFIG_PM_BFIN_WAKE_PB15
238 wakeup |= PB15WE;
239# if CONFIG_PM_BFIN_WAKE_PA15_POL
240 wakeup_pol |= PB15WE;
241# endif
242#endif
243
244#ifdef CONFIG_PM_BFIN_WAKE_PC15
245 wakeup |= PC15WE;
246# if CONFIG_PM_BFIN_WAKE_PC15_POL
247 wakeup_pol |= PC15WE;
248# endif
249#endif
250
251#ifdef CONFIG_PM_BFIN_WAKE_PD06
252 wakeup |= PD06WE;
253# if CONFIG_PM_BFIN_WAKE_PD06_POL
254 wakeup_pol |= PD06WE;
255# endif
256#endif
257
258#ifdef CONFIG_PM_BFIN_WAKE_PE12
259 wakeup |= PE12WE;
260# if CONFIG_PM_BFIN_WAKE_PE12_POL
261 wakeup_pol |= PE12WE;
262# endif
263#endif
264
265#ifdef CONFIG_PM_BFIN_WAKE_PG04
266 wakeup |= PG04WE;
267# if CONFIG_PM_BFIN_WAKE_PG04_POL
268 wakeup_pol |= PG04WE;
269# endif
270#endif
271
272#ifdef CONFIG_PM_BFIN_WAKE_PG13
273 wakeup |= PG13WE;
274# if CONFIG_PM_BFIN_WAKE_PG13_POL
275 wakeup_pol |= PG13WE;
276# endif
277#endif
278
279#ifdef CONFIG_PM_BFIN_WAKE_USB
280 wakeup |= USBWE;
281# if CONFIG_PM_BFIN_WAKE_USB_POL
282 wakeup_pol |= USBWE;
283# endif
284#endif
285
Steven Miao93f89512012-05-16 18:26:10 +0800286 error = irq_set_irq_wake(255, 1);
287 if(error < 0)
288 printk(KERN_DEBUG "Unable to get irq wake\n");
289 error = irq_set_irq_wake(231, 1);
290 if (error < 0)
291 printk(KERN_DEBUG "Unable to get irq wake\n");
292
293 if (state == PM_SUSPEND_STANDBY)
Steven Miao0fbd88c2012-05-17 17:29:54 +0800294 bfin_deepsleep(wakeup);
Steven Miao93f89512012-05-16 18:26:10 +0800295 else {
Steven Miao0fbd88c2012-05-17 17:29:54 +0800296 bfin_hibernate(wakeup);
Steven Miao93f89512012-05-16 18:26:10 +0800297 }
298}
299
300int bf609_cpu_pm_prepare(void)
301{
302 return 0;
303}
304
305void bf609_cpu_pm_finish(void)
306{
307
308}
309
310static struct bfin_cpu_pm_fns bf609_cpu_pm = {
311 .enter = bf609_cpu_pm_enter,
312 .prepare = bf609_cpu_pm_prepare,
313 .finish = bf609_cpu_pm_finish,
314};
315
316static irqreturn_t test_isr(int irq, void *dev_id)
317{
318 printk(KERN_DEBUG "gpio irq %d\n", irq);
319 return IRQ_HANDLED;
320}
321
322static irqreturn_t dpm0_isr(int irq, void *dev_id)
323{
324 uint32_t wake_stat;
325
326 wake_stat = bfin_read32(DPM0_WAKE_STAT);
327 printk(KERN_DEBUG "enter %s wake stat %08x\n", __func__, wake_stat);
328
329 bfin_write32(DPM0_WAKE_STAT, wake_stat);
330 return IRQ_HANDLED;
331}
332
333static int __init bf609_init_pm(void)
334{
335 int irq;
336 int error;
Steven Miao93f89512012-05-16 18:26:10 +0800337
Steven Miao0fbd88c2012-05-17 17:29:54 +0800338#if CONFIG_PM_BFIN_WAKE_PE12
Steven Miao93f89512012-05-16 18:26:10 +0800339 irq = gpio_to_irq(GPIO_PE12);
340 if (irq < 0) {
341 error = irq;
342 printk(KERN_DEBUG "Unable to get irq number for GPIO %d, error %d\n",
343 GPIO_PE12, error);
344 }
345
346 error = request_irq(irq, test_isr, IRQF_TRIGGER_RISING | IRQF_NO_SUSPEND, "gpiope12", NULL);
347 if(error < 0)
348 printk(KERN_DEBUG "Unable to get irq\n");
349#endif
350
351 error = request_irq(IRQ_CGU_EVT, dpm0_isr, IRQF_NO_SUSPEND, "cgu0 event", NULL);
352 if(error < 0)
353 printk(KERN_DEBUG "Unable to get irq\n");
354
355 error = request_irq(IRQ_DPM, dpm0_isr, IRQF_NO_SUSPEND, "dpm0 event", NULL);
356 if (error < 0)
357 printk(KERN_DEBUG "Unable to get irq\n");
358
359 bfin_cpu_pm = &bf609_cpu_pm;
360 return 0;
361}
362
363late_initcall(bf609_init_pm);