Priyanka Mathur | 269e154 | 2013-01-17 10:58:04 -0800 | [diff] [blame^] | 1 | /* Copyright (c) 2010-2013, The Linux Foundation. All rights reserved. |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/cpuidle.h> |
Ashwin Chaugule | 464983a | 2011-11-21 14:51:51 -0500 | [diff] [blame] | 17 | #include <linux/cpu_pm.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 18 | |
Abhijeet Dharmapurikar | efaca4f | 2011-12-27 16:24:07 -0800 | [diff] [blame] | 19 | #include <mach/cpuidle.h> |
Matt Wagantall | 7cca464 | 2012-02-01 16:43:24 -0800 | [diff] [blame] | 20 | |
| 21 | #include "pm.h" |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 22 | |
| 23 | static DEFINE_PER_CPU_SHARED_ALIGNED(struct cpuidle_device, msm_cpuidle_devs); |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 24 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 25 | static struct cpuidle_driver msm_cpuidle_driver = { |
| 26 | .name = "msm_idle", |
| 27 | .owner = THIS_MODULE, |
| 28 | }; |
| 29 | |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 30 | static struct msm_cpuidle_state msm_cstates[] = { |
| 31 | {0, 0, "C0", "WFI", |
| 32 | MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT}, |
| 33 | |
Praveen Chidambaram | d3d844d | 2012-04-24 09:47:38 -0600 | [diff] [blame] | 34 | {0, 1, "C1", "RETENTION", |
| 35 | MSM_PM_SLEEP_MODE_RETENTION}, |
| 36 | |
| 37 | {0, 2, "C2", "STANDALONE_POWER_COLLAPSE", |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 38 | MSM_PM_SLEEP_MODE_POWER_COLLAPSE_STANDALONE}, |
| 39 | |
Praveen Chidambaram | d3d844d | 2012-04-24 09:47:38 -0600 | [diff] [blame] | 40 | {0, 3, "C3", "POWER_COLLAPSE", |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 41 | MSM_PM_SLEEP_MODE_POWER_COLLAPSE}, |
| 42 | |
| 43 | {1, 0, "C0", "WFI", |
| 44 | MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT}, |
| 45 | |
Praveen Chidambaram | d3d844d | 2012-04-24 09:47:38 -0600 | [diff] [blame] | 46 | {1, 1, "C1", "RETENTION", |
| 47 | MSM_PM_SLEEP_MODE_RETENTION}, |
| 48 | |
| 49 | {1, 2, "C2", "STANDALONE_POWER_COLLAPSE", |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 50 | MSM_PM_SLEEP_MODE_POWER_COLLAPSE_STANDALONE}, |
| 51 | |
| 52 | {2, 0, "C0", "WFI", |
| 53 | MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT}, |
| 54 | |
Praveen Chidambaram | d3d844d | 2012-04-24 09:47:38 -0600 | [diff] [blame] | 55 | {2, 1, "C1", "RETENTION", |
| 56 | MSM_PM_SLEEP_MODE_RETENTION}, |
| 57 | |
| 58 | {2, 2, "C2", "STANDALONE_POWER_COLLAPSE", |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 59 | MSM_PM_SLEEP_MODE_POWER_COLLAPSE_STANDALONE}, |
| 60 | |
| 61 | {3, 0, "C0", "WFI", |
| 62 | MSM_PM_SLEEP_MODE_WAIT_FOR_INTERRUPT}, |
| 63 | |
Praveen Chidambaram | d3d844d | 2012-04-24 09:47:38 -0600 | [diff] [blame] | 64 | {3, 1, "C1", "RETENTION", |
| 65 | MSM_PM_SLEEP_MODE_RETENTION}, |
| 66 | |
| 67 | {3, 2, "C2", "STANDALONE_POWER_COLLAPSE", |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 68 | MSM_PM_SLEEP_MODE_POWER_COLLAPSE_STANDALONE}, |
| 69 | }; |
| 70 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 71 | static int msm_cpuidle_enter( |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 72 | struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 73 | { |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 74 | int ret = 0; |
| 75 | int i = 0; |
| 76 | enum msm_pm_sleep_mode pm_mode; |
| 77 | struct cpuidle_state_usage *st_usage = NULL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 78 | |
Ashwin Chaugule | 464983a | 2011-11-21 14:51:51 -0500 | [diff] [blame] | 79 | #ifdef CONFIG_CPU_PM |
| 80 | cpu_pm_enter(); |
| 81 | #endif |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 82 | |
Priyanka Mathur | 269e154 | 2013-01-17 10:58:04 -0800 | [diff] [blame^] | 83 | pm_mode = msm_pm_idle_enter(dev, drv, index); |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 84 | for (i = 0; i < dev->state_count; i++) { |
| 85 | st_usage = &dev->states_usage[i]; |
| 86 | if ((enum msm_pm_sleep_mode) cpuidle_get_statedata(st_usage) |
| 87 | == pm_mode) { |
| 88 | ret = i; |
| 89 | break; |
| 90 | } |
| 91 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 92 | |
Ashwin Chaugule | 464983a | 2011-11-21 14:51:51 -0500 | [diff] [blame] | 93 | #ifdef CONFIG_CPU_PM |
| 94 | cpu_pm_exit(); |
| 95 | #endif |
| 96 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 97 | local_irq_enable(); |
| 98 | |
| 99 | return ret; |
| 100 | } |
| 101 | |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 102 | static void __init msm_cpuidle_set_states(void) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 103 | { |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 104 | int i = 0; |
| 105 | int state_count = 0; |
| 106 | struct msm_cpuidle_state *cstate = NULL; |
| 107 | struct cpuidle_state *state = NULL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 108 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 109 | for (i = 0; i < ARRAY_SIZE(msm_cstates); i++) { |
| 110 | cstate = &msm_cstates[i]; |
| 111 | /* We have an asymmetric CPU C-State in MSMs. |
| 112 | * The primary CPU can do PC while all secondary cpus |
| 113 | * can only do standalone PC as part of their idle LPM. |
| 114 | * However, the secondary cpus can do PC when hotplugged |
| 115 | * We do not care about the hotplug here. |
| 116 | * Register the C-States available for Core0. |
| 117 | */ |
| 118 | if (cstate->cpu) |
| 119 | continue; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 120 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 121 | state = &msm_cpuidle_driver.states[state_count]; |
| 122 | snprintf(state->name, CPUIDLE_NAME_LEN, cstate->name); |
| 123 | snprintf(state->desc, CPUIDLE_DESC_LEN, cstate->desc); |
| 124 | state->flags = 0; |
| 125 | state->exit_latency = 0; |
| 126 | state->power_usage = 0; |
| 127 | state->target_residency = 0; |
| 128 | state->enter = msm_cpuidle_enter; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 129 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 130 | state_count++; |
| 131 | BUG_ON(state_count >= CPUIDLE_STATE_MAX); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 132 | } |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 133 | msm_cpuidle_driver.state_count = state_count; |
| 134 | msm_cpuidle_driver.safe_state_index = 0; |
| 135 | } |
| 136 | |
| 137 | static void __init msm_cpuidle_set_cpu_statedata(struct cpuidle_device *dev) |
| 138 | { |
| 139 | int i = 0; |
| 140 | int state_count = 0; |
| 141 | struct cpuidle_state_usage *st_usage = NULL; |
| 142 | struct msm_cpuidle_state *cstate = NULL; |
| 143 | |
| 144 | for (i = 0; i < ARRAY_SIZE(msm_cstates); i++) { |
| 145 | cstate = &msm_cstates[i]; |
| 146 | if (cstate->cpu != dev->cpu) |
| 147 | continue; |
| 148 | |
| 149 | st_usage = &dev->states_usage[state_count]; |
| 150 | cpuidle_set_statedata(st_usage, (void *)cstate->mode_nr); |
| 151 | state_count++; |
| 152 | BUG_ON(state_count > msm_cpuidle_driver.state_count); |
| 153 | } |
| 154 | |
| 155 | dev->state_count = state_count; /* Per cpu state count */ |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 156 | } |
| 157 | |
| 158 | int __init msm_cpuidle_init(void) |
| 159 | { |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 160 | unsigned int cpu = 0; |
| 161 | int ret = 0; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 162 | |
Praveen Chidambaram | 42da9d2 | 2012-03-30 12:16:34 -0600 | [diff] [blame] | 163 | msm_cpuidle_set_states(); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 164 | ret = cpuidle_register_driver(&msm_cpuidle_driver); |
| 165 | if (ret) |
| 166 | pr_err("%s: failed to register cpuidle driver: %d\n", |
| 167 | __func__, ret); |
| 168 | |
| 169 | for_each_possible_cpu(cpu) { |
| 170 | struct cpuidle_device *dev = &per_cpu(msm_cpuidle_devs, cpu); |
| 171 | |
Steve Muckle | f132c6c | 2012-06-06 18:30:57 -0700 | [diff] [blame] | 172 | dev->cpu = cpu; |
| 173 | msm_cpuidle_set_cpu_statedata(dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 174 | ret = cpuidle_register_device(dev); |
| 175 | if (ret) { |
| 176 | pr_err("%s: failed to register cpuidle device for " |
| 177 | "cpu %u: %d\n", __func__, cpu, ret); |
| 178 | return ret; |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | return 0; |
| 183 | } |