Merge remote-tracking branch 'battery/for-next'
[deliverable/linux.git] / arch / arm / mach-imx / cpuidle-imx6q.c
CommitLineData
12bb3440
SG
1/*
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>
12
47096103
BD
13#include <soc/imx/cpuidle.h>
14
e5f9dec8 15#include "common.h"
12bb3440 16#include "cpuidle.h"
a25d67a4 17#include "hardware.h"
12bb3440 18
e5f9dec8
SG
19static atomic_t master = ATOMIC_INIT(0);
20static DEFINE_SPINLOCK(master_lock);
21
22static int imx6q_enter_wait(struct cpuidle_device *dev,
23 struct cpuidle_driver *drv, int index)
24{
e5f9dec8
SG
25 if (atomic_inc_return(&master) == num_online_cpus()) {
26 /*
27 * With this lock, we prevent other cpu to exit and enter
28 * this function again and become the master.
29 */
30 if (!spin_trylock(&master_lock))
31 goto idle;
8fb76a07 32 imx6_set_lpm(WAIT_UNCLOCKED);
e5f9dec8 33 cpu_do_idle();
8fb76a07 34 imx6_set_lpm(WAIT_CLOCKED);
e5f9dec8
SG
35 spin_unlock(&master_lock);
36 goto done;
37 }
38
39idle:
40 cpu_do_idle();
41done:
42 atomic_dec(&master);
e5f9dec8
SG
43
44 return index;
45}
46
12bb3440
SG
47static struct cpuidle_driver imx6q_cpuidle_driver = {
48 .name = "imx6q_cpuidle",
49 .owner = THIS_MODULE,
e5f9dec8
SG
50 .states = {
51 /* WFI */
52 ARM_CPUIDLE_WFI_STATE,
53 /* WAIT */
54 {
55 .exit_latency = 50,
56 .target_residency = 75,
b82b6cca 57 .flags = CPUIDLE_FLAG_TIMER_STOP,
e5f9dec8
SG
58 .enter = imx6q_enter_wait,
59 .name = "WAIT",
60 .desc = "Clock off",
61 },
62 },
63 .state_count = 2,
64 .safe_state_index = 0,
12bb3440
SG
65};
66
29380905
LS
67/*
68 * i.MX6 Q/DL has an erratum (ERR006687) that prevents the FEC from waking the
69 * CPUs when they are in wait(unclocked) state. As the hardware workaround isn't
70 * applicable to all boards, disable the deeper idle state when the workaround
71 * isn't present and the FEC is in use.
72 */
73void imx6q_cpuidle_fec_irqs_used(void)
74{
75 imx6q_cpuidle_driver.states[1].disabled = true;
76}
2cb9caa4 77EXPORT_SYMBOL_GPL(imx6q_cpuidle_fec_irqs_used);
29380905
LS
78
79void imx6q_cpuidle_fec_irqs_unused(void)
80{
81 imx6q_cpuidle_driver.states[1].disabled = false;
82}
2cb9caa4 83EXPORT_SYMBOL_GPL(imx6q_cpuidle_fec_irqs_unused);
29380905 84
12bb3440
SG
85int __init imx6q_cpuidle_init(void)
86{
fa6be65e 87 /* Set INT_MEM_CLK_LPM bit to get a reliable WAIT mode support */
8765caa5 88 imx6_set_int_mem_clk_lpm(true);
e5f9dec8 89
54a4644b 90 return cpuidle_register(&imx6q_cpuidle_driver, NULL);
12bb3440 91}
This page took 0.170356 seconds and 5 git commands to generate.