2 * Copyright 2012 Calxeda, Inc.
4 * Based on arch/arm/plat-mxc/cpuidle.c:
5 * Copyright 2012 Freescale Semiconductor, Inc.
6 * Copyright 2012 Linaro Ltd.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2, as published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
21 #include <linux/cpuidle.h>
22 #include <linux/init.h>
25 #include <linux/time.h>
26 #include <linux/delay.h>
27 #include <linux/suspend.h>
28 #include <asm/cpuidle.h>
29 #include <asm/proc-fns.h>
30 #include <asm/smp_scu.h>
31 #include <asm/suspend.h>
32 #include <asm/cacheflush.h>
35 extern void highbank_set_cpu_jump(int cpu
, void *jump_addr
);
36 extern void *scu_base_addr
;
38 static struct cpuidle_device __percpu
*calxeda_idle_cpuidle_devices
;
40 static inline unsigned int get_auxcr(void)
43 asm("mrc p15, 0, %0, c1, c0, 1 @ get AUXCR" : "=r" (val
) : : "cc");
47 static inline void set_auxcr(unsigned int val
)
49 asm volatile("mcr p15, 0, %0, c1, c0, 1 @ set AUXCR"
50 : : "r" (val
) : "cc");
54 static noinline
void calxeda_idle_restore(void)
56 set_cr(get_cr() | CR_C
);
57 set_auxcr(get_auxcr() | 0x40);
58 scu_power_mode(scu_base_addr
, SCU_PM_NORMAL
);
61 static int calxeda_idle_finish(unsigned long val
)
63 /* Already flushed cache, but do it again as the outer cache functions
64 * dirty the cache with spinlocks */
67 set_auxcr(get_auxcr() & ~0x40);
68 set_cr(get_cr() & ~CR_C
);
70 scu_power_mode(scu_base_addr
, SCU_PM_DORMANT
);
74 /* Restore things if we didn't enter power-gating */
75 calxeda_idle_restore();
79 static int calxeda_pwrdown_idle(struct cpuidle_device
*dev
,
80 struct cpuidle_driver
*drv
,
83 highbank_set_cpu_jump(smp_processor_id(), cpu_resume
);
84 cpu_suspend(0, calxeda_idle_finish
);
88 static void calxeda_idle_cpuidle_devices_uninit(void)
91 struct cpuidle_device
*dev
;
93 for_each_possible_cpu(i
) {
94 dev
= per_cpu_ptr(calxeda_idle_cpuidle_devices
, i
);
95 cpuidle_unregister_device(dev
);
98 free_percpu(calxeda_idle_cpuidle_devices
);
101 static struct cpuidle_driver calxeda_idle_driver
= {
102 .name
= "calxeda_idle",
103 .en_core_tk_irqen
= 1,
105 ARM_CPUIDLE_WFI_STATE
,
108 .desc
= "Power Gate",
109 .flags
= CPUIDLE_FLAG_TIME_VALID
,
112 .target_residency
= 200,
113 .enter
= calxeda_pwrdown_idle
,
119 static int __init
calxeda_cpuidle_init(void)
123 struct cpuidle_device
*dev
;
124 struct cpuidle_driver
*drv
= &calxeda_idle_driver
;
126 if (!of_machine_is_compatible("calxeda,highbank"))
129 ret
= cpuidle_register_driver(drv
);
133 calxeda_idle_cpuidle_devices
= alloc_percpu(struct cpuidle_device
);
134 if (calxeda_idle_cpuidle_devices
== NULL
) {
139 /* initialize state data for each cpuidle_device */
140 for_each_possible_cpu(cpu_id
) {
141 dev
= per_cpu_ptr(calxeda_idle_cpuidle_devices
, cpu_id
);
143 dev
->state_count
= drv
->state_count
;
145 ret
= cpuidle_register_device(dev
);
147 pr_err("Failed to register cpu %u, error: %d\n",
156 calxeda_idle_cpuidle_devices_uninit();
158 cpuidle_unregister_driver(drv
);
161 module_init(calxeda_cpuidle_init
);