Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 1 | /* |
| 2 | * i.MX27 Power Management Routines |
| 3 | * |
| 4 | * Based on Freescale's BSP |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License. |
| 8 | */ |
| 9 | |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/suspend.h> |
| 12 | #include <linux/io.h> |
Shawn Guo | 50f2de6 | 2012-09-14 14:14:45 +0800 | [diff] [blame] | 13 | |
| 14 | #include "hardware.h" |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 15 | |
| 16 | static int mx27_suspend_enter(suspend_state_t state) |
| 17 | { |
| 18 | u32 cscr; |
| 19 | switch (state) { |
| 20 | case PM_SUSPEND_MEM: |
| 21 | /* Clear MPEN and SPEN to disable MPLL/SPLL */ |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 22 | cscr = imx_readl(MX27_IO_ADDRESS(MX27_CCM_BASE_ADDR)); |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 23 | cscr &= 0xFFFFFFFC; |
Johannes Berg | c553138 | 2016-01-27 17:59:35 +0100 | [diff] [blame] | 24 | imx_writel(cscr, MX27_IO_ADDRESS(MX27_CCM_BASE_ADDR)); |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 25 | /* Executes WFI */ |
Nicolas Pitre | 4a3ea24 | 2011-08-03 11:34:59 -0400 | [diff] [blame] | 26 | cpu_do_idle(); |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 27 | break; |
| 28 | |
| 29 | default: |
| 30 | return -EINVAL; |
| 31 | } |
| 32 | return 0; |
| 33 | } |
| 34 | |
Lionel Debroux | 2f55ac0 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 35 | static const struct platform_suspend_ops mx27_suspend_ops = { |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 36 | .enter = mx27_suspend_enter, |
| 37 | .valid = suspend_valid_only_mem, |
| 38 | }; |
| 39 | |
Arnd Bergmann | 48e076d | 2016-06-28 10:22:16 +0800 | [diff] [blame] | 40 | void __init imx27_pm_init(void) |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 41 | { |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 42 | suspend_set_ops(&mx27_suspend_ops); |
Eric Bénard | f42ae0e | 2010-06-01 21:57:44 +0200 | [diff] [blame] | 43 | } |