Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 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 | |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 13 | #include "common.h" |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 14 | #include "cpuidle.h" |
Anson Huang | a25d67a | 2014-06-20 13:44:05 +0800 | [diff] [blame] | 15 | #include "hardware.h" |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 16 | |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 17 | static atomic_t master = ATOMIC_INIT(0); |
| 18 | static DEFINE_SPINLOCK(master_lock); |
| 19 | |
| 20 | static int imx6q_enter_wait(struct cpuidle_device *dev, |
| 21 | struct cpuidle_driver *drv, int index) |
| 22 | { |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 23 | 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; |
Shawn Guo | 8fb76a0 | 2015-04-25 22:59:19 +0800 | [diff] [blame] | 30 | imx6_set_lpm(WAIT_UNCLOCKED); |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 31 | cpu_do_idle(); |
Shawn Guo | 8fb76a0 | 2015-04-25 22:59:19 +0800 | [diff] [blame] | 32 | imx6_set_lpm(WAIT_CLOCKED); |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 33 | spin_unlock(&master_lock); |
| 34 | goto done; |
| 35 | } |
| 36 | |
| 37 | idle: |
| 38 | cpu_do_idle(); |
| 39 | done: |
| 40 | atomic_dec(&master); |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 41 | |
| 42 | return index; |
| 43 | } |
| 44 | |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 45 | static struct cpuidle_driver imx6q_cpuidle_driver = { |
| 46 | .name = "imx6q_cpuidle", |
| 47 | .owner = THIS_MODULE, |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 48 | .states = { |
| 49 | /* WFI */ |
| 50 | ARM_CPUIDLE_WFI_STATE, |
| 51 | /* WAIT */ |
| 52 | { |
| 53 | .exit_latency = 50, |
| 54 | .target_residency = 75, |
Daniel Lezcano | b82b6cc | 2014-11-12 16:03:50 +0100 | [diff] [blame] | 55 | .flags = CPUIDLE_FLAG_TIMER_STOP, |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 56 | .enter = imx6q_enter_wait, |
| 57 | .name = "WAIT", |
| 58 | .desc = "Clock off", |
| 59 | }, |
| 60 | }, |
| 61 | .state_count = 2, |
| 62 | .safe_state_index = 0, |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | int __init imx6q_cpuidle_init(void) |
| 66 | { |
Fabio Estevam | fa6be65 | 2014-01-07 08:00:40 -0200 | [diff] [blame] | 67 | /* Set INT_MEM_CLK_LPM bit to get a reliable WAIT mode support */ |
Anson Huang | dfea953 | 2014-06-23 16:42:43 +0800 | [diff] [blame] | 68 | imx6q_set_int_mem_clk_lpm(true); |
Shawn Guo | e5f9dec | 2012-12-04 22:55:15 +0800 | [diff] [blame] | 69 | |
Daniel Lezcano | 54a4644 | 2013-04-23 08:54:45 +0000 | [diff] [blame] | 70 | return cpuidle_register(&imx6q_cpuidle_driver, NULL); |
Shawn Guo | 12bb3440 | 2012-12-04 22:55:14 +0800 | [diff] [blame] | 71 | } |