2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
9 #include <linux/cpuidle.h>
10 #include <linux/module.h>
11 #include <asm/cpuidle.h>
12 #include <asm/proc-fns.h>
17 static atomic_t master
= ATOMIC_INIT(0);
18 static DEFINE_SPINLOCK(master_lock
);
20 static int imx6q_enter_wait(struct cpuidle_device
*dev
,
21 struct cpuidle_driver
*drv
, int index
)
23 if (atomic_inc_return(&master
) == num_online_cpus()) {
25 * With this lock, we prevent other cpu to exit and enter
26 * this function again and become the master.
28 if (!spin_trylock(&master_lock
))
30 imx6q_set_lpm(WAIT_UNCLOCKED
);
32 imx6q_set_lpm(WAIT_CLOCKED
);
33 spin_unlock(&master_lock
);
45 static struct cpuidle_driver imx6q_cpuidle_driver
= {
46 .name
= "imx6q_cpuidle",
50 ARM_CPUIDLE_WFI_STATE
,
54 .target_residency
= 75,
55 .flags
= CPUIDLE_FLAG_TIME_VALID
|
56 CPUIDLE_FLAG_TIMER_STOP
,
57 .enter
= imx6q_enter_wait
,
63 .safe_state_index
= 0,
66 int __init
imx6q_cpuidle_init(void)
68 /* Need to enable SCU standby for entering WAIT modes */
69 imx_scu_standby_enable();
71 /* Set chicken bit to get a reliable WAIT mode support */
72 imx6q_set_chicken_bit();
74 return cpuidle_register(&imx6q_cpuidle_driver
, NULL
);