blob: 1387a94bcfd5a30e68fb00d9e293eea7db710d98 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
Robin Getz96f10502009-09-24 14:11:24 +00002 * Blackfin power management
Bryan Wu1394f032007-05-06 14:50:22 -07003 *
Robin Getz96f10502009-09-24 14:11:24 +00004 * Copyright 2006-2009 Analog Devices Inc.
Bryan Wu1394f032007-05-06 14:50:22 -07005 *
Robin Getz96f10502009-09-24 14:11:24 +00006 * Licensed under the GPL-2
7 * based on arm/mach-omap/pm.c
8 * Copyright 2001, Cliff Brake <cbrake@accelent.com> and others
Bryan Wu1394f032007-05-06 14:50:22 -07009 */
10
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070011#include <linux/suspend.h>
Bryan Wu1394f032007-05-06 14:50:22 -070012#include <linux/sched.h>
13#include <linux/proc_fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080015#include <linux/io.h>
16#include <linux/irq.h>
Bryan Wu1394f032007-05-06 14:50:22 -070017
Yi Lieb7bd9c2009-08-07 01:20:58 +000018#include <asm/cplb.h>
Michael Hennerichfd923482007-06-11 16:39:40 +080019#include <asm/gpio.h>
Michael Hennerich1efc80b2008-07-19 16:57:32 +080020#include <asm/dma.h>
21#include <asm/dpmc.h>
Steven Miao93f89512012-05-16 18:26:10 +080022#include <asm/pm.h>
Bryan Wu1394f032007-05-06 14:50:22 -070023
Steven Miao93f89512012-05-16 18:26:10 +080024#ifdef CONFIG_BF60x
25struct bfin_cpu_pm_fns *bfin_cpu_pm;
26#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +080027
Bryan Wu1394f032007-05-06 14:50:22 -070028void bfin_pm_suspend_standby_enter(void)
29{
Sonic Zhang54e4ff42013-05-30 18:37:28 +080030#if !BFIN_GPIO_PINT
Michael Hennerich1efc80b2008-07-19 16:57:32 +080031 bfin_pm_standby_setup();
Sonic Zhangfb5f0042007-12-23 23:02:13 +080032#endif
Bryan Wu1394f032007-05-06 14:50:22 -070033
Steven Miao93f89512012-05-16 18:26:10 +080034#ifdef CONFIG_BF60x
35 bfin_cpu_pm->enter(PM_SUSPEND_STANDBY);
36#else
37# ifdef CONFIG_PM_BFIN_SLEEP_DEEPER
38 sleep_deeper(bfin_sic_iwr[0], bfin_sic_iwr[1], bfin_sic_iwr[2]);
39# else
40 sleep_mode(bfin_sic_iwr[0], bfin_sic_iwr[1], bfin_sic_iwr[2]);
41# endif
42#endif
Bryan Wu1394f032007-05-06 14:50:22 -070043
Sonic Zhang54e4ff42013-05-30 18:37:28 +080044#if !BFIN_GPIO_PINT
Steven Miao93f89512012-05-16 18:26:10 +080045 bfin_pm_standby_restore();
46#endif
47
48#ifndef CONFIG_BF60x
Mike Frysingerbe1d8542009-02-04 16:49:45 +080049#ifdef SIC_IWR0
Michael Hennerich56f5f592008-08-06 17:55:32 +080050 bfin_write_SIC_IWR0(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +080051# ifdef SIC_IWR1
Michael Hennerich55546ac2008-08-13 17:41:13 +080052 /* BF52x system reset does not properly reset SIC_IWR1 which
53 * will screw up the bootrom as it relies on MDMA0/1 waking it
54 * up from IDLE instructions. See this report for more info:
55 * http://blackfin.uclinux.org/gf/tracker/4323
56 */
Mike Frysingerb7e11292008-11-18 17:48:22 +080057 if (ANOMALY_05000435)
58 bfin_write_SIC_IWR1(IWR_ENABLE(10) | IWR_ENABLE(11));
59 else
60 bfin_write_SIC_IWR1(IWR_DISABLE_ALL);
Mike Frysingerbe1d8542009-02-04 16:49:45 +080061# endif
62# ifdef SIC_IWR2
Michael Hennerich56f5f592008-08-06 17:55:32 +080063 bfin_write_SIC_IWR2(IWR_DISABLE_ALL);
Sonic Zhangfb5f0042007-12-23 23:02:13 +080064# endif
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080065#else
Michael Hennerich56f5f592008-08-06 17:55:32 +080066 bfin_write_SIC_IWR(IWR_DISABLE_ALL);
Michael Hennerichcfefe3c2008-02-09 04:12:37 +080067#endif
Steven Miao93f89512012-05-16 18:26:10 +080068
69#endif
Bryan Wu1394f032007-05-06 14:50:22 -070070}
71
Michael Hennerich1efc80b2008-07-19 16:57:32 +080072int bf53x_suspend_l1_mem(unsigned char *memptr)
73{
Michael Hennerichd1401e12010-06-16 09:12:10 +000074 dma_memcpy_nocache(memptr, (const void *) L1_CODE_START,
75 L1_CODE_LENGTH);
76 dma_memcpy_nocache(memptr + L1_CODE_LENGTH,
77 (const void *) L1_DATA_A_START, L1_DATA_A_LENGTH);
78 dma_memcpy_nocache(memptr + L1_CODE_LENGTH + L1_DATA_A_LENGTH,
Michael Hennerich1efc80b2008-07-19 16:57:32 +080079 (const void *) L1_DATA_B_START, L1_DATA_B_LENGTH);
80 memcpy(memptr + L1_CODE_LENGTH + L1_DATA_A_LENGTH +
81 L1_DATA_B_LENGTH, (const void *) L1_SCRATCH_START,
82 L1_SCRATCH_LENGTH);
83
84 return 0;
85}
86
87int bf53x_resume_l1_mem(unsigned char *memptr)
88{
Michael Hennerichd1401e12010-06-16 09:12:10 +000089 dma_memcpy_nocache((void *) L1_CODE_START, memptr, L1_CODE_LENGTH);
90 dma_memcpy_nocache((void *) L1_DATA_A_START, memptr + L1_CODE_LENGTH,
Michael Hennerich1efc80b2008-07-19 16:57:32 +080091 L1_DATA_A_LENGTH);
Michael Hennerichd1401e12010-06-16 09:12:10 +000092 dma_memcpy_nocache((void *) L1_DATA_B_START, memptr + L1_CODE_LENGTH +
Michael Hennerich1efc80b2008-07-19 16:57:32 +080093 L1_DATA_A_LENGTH, L1_DATA_B_LENGTH);
94 memcpy((void *) L1_SCRATCH_START, memptr + L1_CODE_LENGTH +
95 L1_DATA_A_LENGTH + L1_DATA_B_LENGTH, L1_SCRATCH_LENGTH);
96
97 return 0;
98}
99
Jie Zhang41ba6532009-06-16 09:48:33 +0000100#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK) || defined(CONFIG_BFIN_L2_WRITEBACK)
Steven Miao93f89512012-05-16 18:26:10 +0800101# ifdef CONFIG_BF60x
102__attribute__((l1_text))
103# endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800104static void flushinv_all_dcache(void)
105{
Steven Miao93f89512012-05-16 18:26:10 +0800106 register u32 way, bank, subbank, set;
107 register u32 status, addr;
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800108 u32 dmem_ctl = bfin_read_DMEM_CONTROL();
109
110 for (bank = 0; bank < 2; ++bank) {
111 if (!(dmem_ctl & (1 << (DMC1_P - bank))))
112 continue;
113
114 for (way = 0; way < 2; ++way)
115 for (subbank = 0; subbank < 4; ++subbank)
116 for (set = 0; set < 64; ++set) {
117
118 bfin_write_DTEST_COMMAND(
119 way << 26 |
120 bank << 23 |
121 subbank << 16 |
122 set << 5
123 );
124 CSYNC();
125 status = bfin_read_DTEST_DATA0();
126
127 /* only worry about valid/dirty entries */
128 if ((status & 0x3) != 0x3)
129 continue;
130
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800131
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800132 /* construct the address using the tag */
133 addr = (status & 0xFFFFC800) | (subbank << 12) | (set << 5);
134
135 /* flush it */
136 __asm__ __volatile__("FLUSHINV[%0];" : : "a"(addr));
137 }
138 }
139}
140#endif
141
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800142int bfin_pm_suspend_mem_enter(void)
143{
Steven Miao36855dc2013-11-14 17:41:30 +0800144 int ret;
145#ifndef CONFIG_BF60x
146 int wakeup;
147#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800148
149 unsigned char *memptr = kmalloc(L1_CODE_LENGTH + L1_DATA_A_LENGTH
150 + L1_DATA_B_LENGTH + L1_SCRATCH_LENGTH,
Scott Jiangaefefe92013-09-16 00:53:09 -0400151 GFP_ATOMIC);
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800152
153 if (memptr == NULL) {
154 panic("bf53x_suspend_l1_mem malloc failed");
155 return -ENOMEM;
156 }
157
Steven Miao93f89512012-05-16 18:26:10 +0800158#ifndef CONFIG_BF60x
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800159 wakeup = bfin_read_VR_CTL() & ~FREQ;
160 wakeup |= SCKELOW;
161
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800162#ifdef CONFIG_PM_BFIN_WAKE_PH6
163 wakeup |= PHYWE;
164#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800165#ifdef CONFIG_PM_BFIN_WAKE_GP
166 wakeup |= GPWE;
167#endif
Steven Miao0fbd88c2012-05-17 17:29:54 +0800168#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800169
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800170 ret = blackfin_dma_suspend();
171
172 if (ret) {
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800173 kfree(memptr);
174 return ret;
175 }
176
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800177#ifdef CONFIG_GPIO_ADI
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800178 bfin_gpio_pm_hibernate_suspend();
Steven Miaoba4691a2012-06-15 11:40:48 +0800179#endif
Steven Miaod49cdf8402012-06-14 18:04:01 +0800180
Yi Lieb7bd9c2009-08-07 01:20:58 +0000181#if defined(CONFIG_BFIN_EXTMEM_WRITEBACK) || defined(CONFIG_BFIN_L2_WRITEBACK)
182 flushinv_all_dcache();
183#endif
184 _disable_dcplb();
185 _disable_icplb();
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800186 bf53x_suspend_l1_mem(memptr);
187
Steven Miao93f89512012-05-16 18:26:10 +0800188#ifndef CONFIG_BF60x
Michael Hennerichd1401e12010-06-16 09:12:10 +0000189 do_hibernate(wakeup | vr_wakeup); /* See you later! */
Steven Miao93f89512012-05-16 18:26:10 +0800190#else
191 bfin_cpu_pm->enter(PM_SUSPEND_MEM);
192#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800193
194 bf53x_resume_l1_mem(memptr);
195
Yi Lieb7bd9c2009-08-07 01:20:58 +0000196 _enable_icplb();
197 _enable_dcplb();
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800198
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800199#ifdef CONFIG_GPIO_ADI
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800200 bfin_gpio_pm_hibernate_restore();
Sonic Zhang54e4ff42013-05-30 18:37:28 +0800201#endif
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800202 blackfin_dma_resume();
203
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800204 kfree(memptr);
205
206 return 0;
207}
208
Bryan Wu1394f032007-05-06 14:50:22 -0700209/*
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700210 * bfin_pm_valid - Tell the PM core that we only support the standby sleep
211 * state
212 * @state: suspend state we're checking.
Bryan Wu1394f032007-05-06 14:50:22 -0700213 *
214 */
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700215static int bfin_pm_valid(suspend_state_t state)
Bryan Wu1394f032007-05-06 14:50:22 -0700216{
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800217 return (state == PM_SUSPEND_STANDBY
Michael Hennerichb89df502009-03-28 23:14:41 +0800218#if !(defined(BF533_FAMILY) || defined(CONFIG_BF561))
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800219 /*
220 * On BF533/2/1:
221 * If we enter Hibernate the SCKE Pin is driven Low,
222 * so that the SDRAM enters Self Refresh Mode.
223 * However when the reset sequence that follows hibernate
224 * state is executed, SCKE is driven High, taking the
225 * SDRAM out of Self Refresh.
226 *
227 * If you reconfigure and access the SDRAM "very quickly",
228 * you are likely to avoid errors, otherwise the SDRAM
229 * start losing its contents.
230 * An external HW workaround is possible using logic gates.
231 */
232 || state == PM_SUSPEND_MEM
233#endif
234 );
Bryan Wu1394f032007-05-06 14:50:22 -0700235}
236
237/*
238 * bfin_pm_enter - Actually enter a sleep state.
239 * @state: State we're entering.
240 *
241 */
242static int bfin_pm_enter(suspend_state_t state)
243{
244 switch (state) {
245 case PM_SUSPEND_STANDBY:
246 bfin_pm_suspend_standby_enter();
247 break;
Bryan Wu9d7b6672007-05-21 18:09:37 +0800248 case PM_SUSPEND_MEM:
Michael Hennerich1efc80b2008-07-19 16:57:32 +0800249 bfin_pm_suspend_mem_enter();
250 break;
Bryan Wu1394f032007-05-06 14:50:22 -0700251 default:
252 return -EINVAL;
253 }
254
255 return 0;
256}
257
Sonic Zhang72b099e2012-05-17 17:33:00 +0800258#ifdef CONFIG_BFIN_PM_WAKEUP_TIME_BENCH
259void bfin_pm_end(void)
260{
261 u32 cycle, cycle2;
262 u64 usec64;
263 u32 usec;
264
265 __asm__ __volatile__ (
266 "1: %0 = CYCLES2\n"
267 "%1 = CYCLES\n"
268 "%2 = CYCLES2\n"
269 "CC = %2 == %0\n"
270 "if ! CC jump 1b\n"
271 : "=d,a" (cycle2), "=d,a" (cycle), "=d,a" (usec) : : "CC"
272 );
273
274 usec64 = ((u64)cycle2 << 32) + cycle;
275 do_div(usec64, get_cclk() / USEC_PER_SEC);
276 usec = usec64;
277 if (usec == 0)
278 usec = 1;
279
280 pr_info("PM: resume of kernel completes after %ld msec %03ld usec\n",
281 usec / USEC_PER_MSEC, usec % USEC_PER_MSEC);
282}
283#endif
284
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100285static const struct platform_suspend_ops bfin_pm_ops = {
Bryan Wu1394f032007-05-06 14:50:22 -0700286 .enter = bfin_pm_enter,
Michael Hennerich4bbd10f2007-08-27 17:29:10 +0800287 .valid = bfin_pm_valid,
Sonic Zhang72b099e2012-05-17 17:33:00 +0800288#ifdef CONFIG_BFIN_PM_WAKEUP_TIME_BENCH
289 .end = bfin_pm_end,
290#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700291};
292
293static int __init bfin_pm_init(void)
294{
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700295 suspend_set_ops(&bfin_pm_ops);
Bryan Wu1394f032007-05-06 14:50:22 -0700296 return 0;
297}
298
299__initcall(bfin_pm_init);