blob: 23ddfb693b2d01f606612dbe8b7eaf146aad8da1 [file] [log] [blame]
Shawn Guo12bb34402012-12-04 22:55:14 +08001/*
2 * Copyright (C) 2012 Freescale Semiconductor, Inc.
3 *
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.
7 */
8
9#include <linux/cpuidle.h>
10#include <linux/module.h>
11#include <asm/cpuidle.h>
Shawn Guoe5f9dec2012-12-04 22:55:15 +080012#include <asm/proc-fns.h>
Shawn Guo12bb34402012-12-04 22:55:14 +080013
Shawn Guoe5f9dec2012-12-04 22:55:15 +080014#include "common.h"
Shawn Guo12bb34402012-12-04 22:55:14 +080015#include "cpuidle.h"
16
Shawn Guoe5f9dec2012-12-04 22:55:15 +080017static atomic_t master = ATOMIC_INIT(0);
18static DEFINE_SPINLOCK(master_lock);
19
20static int imx6q_enter_wait(struct cpuidle_device *dev,
21 struct cpuidle_driver *drv, int index)
22{
Shawn Guoe5f9dec2012-12-04 22:55:15 +080023 if (atomic_inc_return(&master) == num_online_cpus()) {
24 /*
25 * With this lock, we prevent other cpu to exit and enter
26 * this function again and become the master.
27 */
28 if (!spin_trylock(&master_lock))
29 goto idle;
30 imx6q_set_lpm(WAIT_UNCLOCKED);
31 cpu_do_idle();
32 imx6q_set_lpm(WAIT_CLOCKED);
33 spin_unlock(&master_lock);
34 goto done;
35 }
36
37idle:
38 cpu_do_idle();
39done:
40 atomic_dec(&master);
Shawn Guoe5f9dec2012-12-04 22:55:15 +080041
42 return index;
43}
44
Shawn Guo12bb34402012-12-04 22:55:14 +080045static struct cpuidle_driver imx6q_cpuidle_driver = {
46 .name = "imx6q_cpuidle",
47 .owner = THIS_MODULE,
Shawn Guoe5f9dec2012-12-04 22:55:15 +080048 .states = {
49 /* WFI */
50 ARM_CPUIDLE_WFI_STATE,
51 /* WAIT */
52 {
53 .exit_latency = 50,
54 .target_residency = 75,
Daniel Lezcano8de46ef2013-03-21 12:21:33 +000055 .flags = CPUIDLE_FLAG_TIME_VALID |
56 CPUIDLE_FLAG_TIMER_STOP,
Shawn Guoe5f9dec2012-12-04 22:55:15 +080057 .enter = imx6q_enter_wait,
58 .name = "WAIT",
59 .desc = "Clock off",
60 },
61 },
62 .state_count = 2,
63 .safe_state_index = 0,
Shawn Guo12bb34402012-12-04 22:55:14 +080064};
65
66int __init imx6q_cpuidle_init(void)
67{
Shawn Guoe5f9dec2012-12-04 22:55:15 +080068 /* Need to enable SCU standby for entering WAIT modes */
69 imx_scu_standby_enable();
70
71 /* Set chicken bit to get a reliable WAIT mode support */
72 imx6q_set_chicken_bit();
73
Daniel Lezcano54a46442013-04-23 08:54:45 +000074 return cpuidle_register(&imx6q_cpuidle_driver, NULL);
Shawn Guo12bb34402012-12-04 22:55:14 +080075}