USB: serial: option: reimplement interface masking
[linux/fpc-iii.git] / arch / arm / mach-imx / pm-imx27.c
blobd943535566c84146b7877a790bb2718cf8672d45
1 /*
2 * i.MX27 Power Management Routines
4 * Based on Freescale's BSP
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 */
10 #include <linux/kernel.h>
11 #include <linux/suspend.h>
12 #include <linux/io.h>
14 #include "hardware.h"
16 static int mx27_suspend_enter(suspend_state_t state)
18 u32 cscr;
19 switch (state) {
20 case PM_SUSPEND_MEM:
21 /* Clear MPEN and SPEN to disable MPLL/SPLL */
22 cscr = imx_readl(MX27_IO_ADDRESS(MX27_CCM_BASE_ADDR));
23 cscr &= 0xFFFFFFFC;
24 imx_writel(cscr, MX27_IO_ADDRESS(MX27_CCM_BASE_ADDR));
25 /* Executes WFI */
26 cpu_do_idle();
27 break;
29 default:
30 return -EINVAL;
32 return 0;
35 static const struct platform_suspend_ops mx27_suspend_ops = {
36 .enter = mx27_suspend_enter,
37 .valid = suspend_valid_only_mem,
40 void __init imx27_pm_init(void)
42 suspend_set_ops(&mx27_suspend_ops);