Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 1 | /* |
| 2 | * cpuidle.h - a generic framework for CPU idle power management |
| 3 | * |
| 4 | * (C) 2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com> |
| 5 | * Shaohua Li <shaohua.li@intel.com> |
| 6 | * Adam Belay <abelay@novell.com> |
| 7 | * |
| 8 | * This code is licenced under the GPL. |
| 9 | */ |
| 10 | |
| 11 | #ifndef _LINUX_CPUIDLE_H |
| 12 | #define _LINUX_CPUIDLE_H |
| 13 | |
| 14 | #include <linux/percpu.h> |
| 15 | #include <linux/list.h> |
Robert Lee | e168979 | 2012-03-20 15:22:42 -0500 | [diff] [blame] | 16 | #include <linux/hrtimer.h> |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 17 | |
Len Brown | 86239ce | 2013-02-27 13:18:50 -0500 | [diff] [blame] | 18 | #define CPUIDLE_STATE_MAX 10 |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 19 | #define CPUIDLE_NAME_LEN 16 |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 20 | #define CPUIDLE_DESC_LEN 32 |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 21 | |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 22 | struct module; |
| 23 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 24 | struct cpuidle_device; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 25 | struct cpuidle_driver; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 26 | |
| 27 | |
| 28 | /**************************** |
| 29 | * CPUIDLE DEVICE INTERFACE * |
| 30 | ****************************/ |
| 31 | |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 32 | struct cpuidle_state_usage { |
ShuoX Liu | dc7fd27 | 2012-07-03 19:05:31 +0200 | [diff] [blame] | 33 | unsigned long long disable; |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 34 | unsigned long long usage; |
| 35 | unsigned long long time; /* in US */ |
Rafael J. Wysocki | 64bdff6 | 2018-03-14 12:27:21 +0100 | [diff] [blame] | 36 | #ifdef CONFIG_SUSPEND |
| 37 | unsigned long long s2idle_usage; |
| 38 | unsigned long long s2idle_time; /* in US */ |
| 39 | #endif |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 40 | }; |
| 41 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 42 | struct cpuidle_state { |
| 43 | char name[CPUIDLE_NAME_LEN]; |
Venkatesh Pallipadi | 4fcb2fc | 2008-02-11 17:46:31 -0800 | [diff] [blame] | 44 | char desc[CPUIDLE_DESC_LEN]; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 45 | |
| 46 | unsigned int flags; |
| 47 | unsigned int exit_latency; /* in US */ |
Boris Ostrovsky | 02401c0 | 2012-03-13 19:55:10 +0100 | [diff] [blame] | 48 | int power_usage; /* in mW */ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 49 | unsigned int target_residency; /* in US */ |
Rafael J. Wysocki | cbc9ef0 | 2012-07-03 19:07:42 +0200 | [diff] [blame] | 50 | bool disabled; /* disabled on all CPUs */ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 51 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 52 | int (*enter) (struct cpuidle_device *dev, |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 53 | struct cpuidle_driver *drv, |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 54 | int index); |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 55 | |
| 56 | int (*enter_dead) (struct cpuidle_device *dev, int index); |
Rafael J. Wysocki | 124cf911 | 2015-02-13 23:50:43 +0100 | [diff] [blame] | 57 | |
| 58 | /* |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 59 | * CPUs execute ->enter_s2idle with the local tick or entire timekeeping |
Rafael J. Wysocki | 124cf911 | 2015-02-13 23:50:43 +0100 | [diff] [blame] | 60 | * suspended, so it must not re-enable interrupts at any point (even |
| 61 | * temporarily) or attempt to change states of clock event devices. |
| 62 | */ |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 63 | void (*enter_s2idle) (struct cpuidle_device *dev, |
Rafael J. Wysocki | 124cf911 | 2015-02-13 23:50:43 +0100 | [diff] [blame] | 64 | struct cpuidle_driver *drv, |
| 65 | int index); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 66 | }; |
| 67 | |
| 68 | /* Idle State Flags */ |
Gautham R. Shenoy | 9e9fc6f | 2017-01-25 14:06:27 +0530 | [diff] [blame] | 69 | #define CPUIDLE_FLAG_NONE (0x00) |
Rafael J. Wysocki | dc2251b | 2017-08-23 23:19:57 +0200 | [diff] [blame] | 70 | #define CPUIDLE_FLAG_POLLING (0x01) /* polling state */ |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 71 | #define CPUIDLE_FLAG_COUPLED (0x02) /* state applies to multiple cpus */ |
Daniel Lezcano | b60e6a0 | 2013-03-21 12:21:31 +0000 | [diff] [blame] | 72 | #define CPUIDLE_FLAG_TIMER_STOP (0x04) /* timer is stopped on this state */ |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 73 | |
| 74 | #define CPUIDLE_DRIVER_FLAGS_MASK (0xFFFF0000) |
| 75 | |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 76 | struct cpuidle_device_kobj; |
Daniel Lezcano | 1a70643 | 2013-06-12 15:08:52 +0200 | [diff] [blame] | 77 | struct cpuidle_state_kobj; |
| 78 | struct cpuidle_driver_kobj; |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 79 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 80 | struct cpuidle_device { |
Venkatesh Pallipadi | dcb84f3 | 2008-05-19 19:09:27 -0400 | [diff] [blame] | 81 | unsigned int registered:1; |
Harvey Harrison | b5556a6 | 2008-02-06 22:39:44 +0100 | [diff] [blame] | 82 | unsigned int enabled:1; |
Jacob Pan | bb8313b | 2016-11-28 23:03:04 -0800 | [diff] [blame] | 83 | unsigned int use_deepest_state:1; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 84 | unsigned int cpu; |
| 85 | |
| 86 | int last_residency; |
Deepthi Dharwar | 4202735 | 2011-10-28 16:20:33 +0530 | [diff] [blame] | 87 | struct cpuidle_state_usage states_usage[CPUIDLE_STATE_MAX]; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 88 | struct cpuidle_state_kobj *kobjs[CPUIDLE_STATE_MAX]; |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 89 | struct cpuidle_driver_kobj *kobj_driver; |
Daniel Lezcano | 728ce22 | 2013-06-12 15:08:51 +0200 | [diff] [blame] | 90 | struct cpuidle_device_kobj *kobj_dev; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 91 | struct list_head device_list; |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 92 | |
| 93 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED |
Colin Cross | 4126c01 | 2012-05-07 17:57:41 -0700 | [diff] [blame] | 94 | cpumask_t coupled_cpus; |
| 95 | struct cpuidle_coupled *coupled; |
| 96 | #endif |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 97 | }; |
| 98 | |
| 99 | DECLARE_PER_CPU(struct cpuidle_device *, cpuidle_devices); |
Paul Burton | f08dbf8 | 2014-01-08 11:23:35 +0000 | [diff] [blame] | 100 | DECLARE_PER_CPU(struct cpuidle_device, cpuidle_dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 101 | |
| 102 | /** |
| 103 | * cpuidle_get_last_residency - retrieves the last state's residency time |
| 104 | * @dev: the target CPU |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 105 | */ |
| 106 | static inline int cpuidle_get_last_residency(struct cpuidle_device *dev) |
| 107 | { |
| 108 | return dev->last_residency; |
| 109 | } |
| 110 | |
| 111 | |
| 112 | /**************************** |
| 113 | * CPUIDLE DRIVER INTERFACE * |
| 114 | ****************************/ |
| 115 | |
| 116 | struct cpuidle_driver { |
Daniel Lezcano | db70b04 | 2012-03-26 14:51:27 +0200 | [diff] [blame] | 117 | const char *name; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 118 | struct module *owner; |
Daniel Lezcano | 42f67f2 | 2012-10-31 16:44:45 +0000 | [diff] [blame] | 119 | int refcnt; |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 120 | |
Daniel Lezcano | a06df06 | 2013-03-27 10:22:10 +0000 | [diff] [blame] | 121 | /* used by the cpuidle framework to setup the broadcast timer */ |
| 122 | unsigned int bctimer:1; |
Daniel Lezcano | 8aef33a | 2013-01-15 14:18:04 +0100 | [diff] [blame] | 123 | /* states array must be ordered in decreasing power consumption */ |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 124 | struct cpuidle_state states[CPUIDLE_STATE_MAX]; |
| 125 | int state_count; |
| 126 | int safe_state_index; |
Daniel Lezcano | 82467a5 | 2013-06-07 21:53:09 +0000 | [diff] [blame] | 127 | |
| 128 | /* the driver handles the cpus in cpumask */ |
Viresh Kumar | 6587fca | 2013-10-03 21:26:40 +0530 | [diff] [blame] | 129 | struct cpumask *cpumask; |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 130 | }; |
| 131 | |
| 132 | #ifdef CONFIG_CPU_IDLE |
Len Brown | d91ee58 | 2011-04-01 18:28:35 -0400 | [diff] [blame] | 133 | extern void disable_cpuidle(void); |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 134 | extern bool cpuidle_not_available(struct cpuidle_driver *drv, |
| 135 | struct cpuidle_device *dev); |
Daniel Lezcano | 907e30f | 2014-03-03 08:48:50 +0100 | [diff] [blame] | 136 | |
Daniel Lezcano | 907e30f | 2014-03-03 08:48:50 +0100 | [diff] [blame] | 137 | extern int cpuidle_select(struct cpuidle_driver *drv, |
Rafael J. Wysocki | 45f1ff5 | 2018-03-22 17:50:49 +0100 | [diff] [blame^] | 138 | struct cpuidle_device *dev, |
| 139 | bool *stop_tick); |
Daniel Lezcano | 907e30f | 2014-03-03 08:48:50 +0100 | [diff] [blame] | 140 | extern int cpuidle_enter(struct cpuidle_driver *drv, |
| 141 | struct cpuidle_device *dev, int index); |
| 142 | extern void cpuidle_reflect(struct cpuidle_device *dev, int index); |
| 143 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 144 | extern int cpuidle_register_driver(struct cpuidle_driver *drv); |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 145 | extern struct cpuidle_driver *cpuidle_get_driver(void); |
| 146 | extern struct cpuidle_driver *cpuidle_driver_ref(void); |
| 147 | extern void cpuidle_driver_unref(void); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 148 | extern void cpuidle_unregister_driver(struct cpuidle_driver *drv); |
| 149 | extern int cpuidle_register_device(struct cpuidle_device *dev); |
| 150 | extern void cpuidle_unregister_device(struct cpuidle_device *dev); |
Daniel Lezcano | 4c637b2 | 2013-04-23 08:54:33 +0000 | [diff] [blame] | 151 | extern int cpuidle_register(struct cpuidle_driver *drv, |
| 152 | const struct cpumask *const coupled_cpus); |
| 153 | extern void cpuidle_unregister(struct cpuidle_driver *drv); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 154 | extern void cpuidle_pause_and_lock(void); |
| 155 | extern void cpuidle_resume_and_unlock(void); |
Preeti U Murthy | 8651f97 | 2012-07-09 10:12:56 +0200 | [diff] [blame] | 156 | extern void cpuidle_pause(void); |
| 157 | extern void cpuidle_resume(void); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 158 | extern int cpuidle_enable_device(struct cpuidle_device *dev); |
| 159 | extern void cpuidle_disable_device(struct cpuidle_device *dev); |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 160 | extern int cpuidle_play_dead(void); |
| 161 | |
Daniel Lezcano | bf4d1b5 | 2012-10-31 16:44:48 +0000 | [diff] [blame] | 162 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); |
Catalin Marinas | 9bd616e | 2016-06-01 18:52:16 +0100 | [diff] [blame] | 163 | static inline struct cpuidle_device *cpuidle_get_device(void) |
| 164 | {return __this_cpu_read(cpuidle_devices); } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 165 | #else |
Len Brown | d91ee58 | 2011-04-01 18:28:35 -0400 | [diff] [blame] | 166 | static inline void disable_cpuidle(void) { } |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 167 | static inline bool cpuidle_not_available(struct cpuidle_driver *drv, |
| 168 | struct cpuidle_device *dev) |
| 169 | {return true; } |
Daniel Lezcano | 907e30f | 2014-03-03 08:48:50 +0100 | [diff] [blame] | 170 | static inline int cpuidle_select(struct cpuidle_driver *drv, |
Rafael J. Wysocki | 45f1ff5 | 2018-03-22 17:50:49 +0100 | [diff] [blame^] | 171 | struct cpuidle_device *dev, bool *stop_tick) |
Daniel Lezcano | 907e30f | 2014-03-03 08:48:50 +0100 | [diff] [blame] | 172 | {return -ENODEV; } |
| 173 | static inline int cpuidle_enter(struct cpuidle_driver *drv, |
| 174 | struct cpuidle_device *dev, int index) |
| 175 | {return -ENODEV; } |
| 176 | static inline void cpuidle_reflect(struct cpuidle_device *dev, int index) { } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 177 | static inline int cpuidle_register_driver(struct cpuidle_driver *drv) |
Len Brown | 6b2c676 | 2010-05-11 16:50:52 -0400 | [diff] [blame] | 178 | {return -ENODEV; } |
Len Brown | 752138d | 2010-05-22 16:57:26 -0400 | [diff] [blame] | 179 | static inline struct cpuidle_driver *cpuidle_get_driver(void) {return NULL; } |
Rafael J. Wysocki | 6e797a0 | 2012-06-16 15:20:11 +0200 | [diff] [blame] | 180 | static inline struct cpuidle_driver *cpuidle_driver_ref(void) {return NULL; } |
| 181 | static inline void cpuidle_driver_unref(void) {} |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 182 | static inline void cpuidle_unregister_driver(struct cpuidle_driver *drv) { } |
| 183 | static inline int cpuidle_register_device(struct cpuidle_device *dev) |
Len Brown | 6b2c676 | 2010-05-11 16:50:52 -0400 | [diff] [blame] | 184 | {return -ENODEV; } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 185 | static inline void cpuidle_unregister_device(struct cpuidle_device *dev) { } |
Daniel Lezcano | 4c637b2 | 2013-04-23 08:54:33 +0000 | [diff] [blame] | 186 | static inline int cpuidle_register(struct cpuidle_driver *drv, |
| 187 | const struct cpumask *const coupled_cpus) |
| 188 | {return -ENODEV; } |
| 189 | static inline void cpuidle_unregister(struct cpuidle_driver *drv) { } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 190 | static inline void cpuidle_pause_and_lock(void) { } |
| 191 | static inline void cpuidle_resume_and_unlock(void) { } |
Preeti U Murthy | 8651f97 | 2012-07-09 10:12:56 +0200 | [diff] [blame] | 192 | static inline void cpuidle_pause(void) { } |
| 193 | static inline void cpuidle_resume(void) { } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 194 | static inline int cpuidle_enable_device(struct cpuidle_device *dev) |
Len Brown | 6b2c676 | 2010-05-11 16:50:52 -0400 | [diff] [blame] | 195 | {return -ENODEV; } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 196 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
Boris Ostrovsky | 1a022e3 | 2012-03-13 19:55:09 +0100 | [diff] [blame] | 197 | static inline int cpuidle_play_dead(void) {return -ENODEV; } |
Rafael J. Wysocki | 87e9b9f | 2015-05-16 01:38:15 +0200 | [diff] [blame] | 198 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( |
| 199 | struct cpuidle_device *dev) {return NULL; } |
Catalin Marinas | 9bd616e | 2016-06-01 18:52:16 +0100 | [diff] [blame] | 200 | static inline struct cpuidle_device *cpuidle_get_device(void) {return NULL; } |
Rafael J. Wysocki | 87e9b9f | 2015-05-16 01:38:15 +0200 | [diff] [blame] | 201 | #endif |
| 202 | |
Jacob Pan | bb8313b | 2016-11-28 23:03:04 -0800 | [diff] [blame] | 203 | #ifdef CONFIG_CPU_IDLE |
Rafael J. Wysocki | 87e9b9f | 2015-05-16 01:38:15 +0200 | [diff] [blame] | 204 | extern int cpuidle_find_deepest_state(struct cpuidle_driver *drv, |
| 205 | struct cpuidle_device *dev); |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 206 | extern int cpuidle_enter_s2idle(struct cpuidle_driver *drv, |
Rafael J. Wysocki | 87e9b9f | 2015-05-16 01:38:15 +0200 | [diff] [blame] | 207 | struct cpuidle_device *dev); |
Jacob Pan | bb8313b | 2016-11-28 23:03:04 -0800 | [diff] [blame] | 208 | extern void cpuidle_use_deepest_state(bool enable); |
Rafael J. Wysocki | 87e9b9f | 2015-05-16 01:38:15 +0200 | [diff] [blame] | 209 | #else |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 210 | static inline int cpuidle_find_deepest_state(struct cpuidle_driver *drv, |
| 211 | struct cpuidle_device *dev) |
| 212 | {return -ENODEV; } |
Rafael J. Wysocki | 28ba086 | 2017-08-10 00:14:45 +0200 | [diff] [blame] | 213 | static inline int cpuidle_enter_s2idle(struct cpuidle_driver *drv, |
Rafael J. Wysocki | ef2b22a | 2015-03-02 22:26:55 +0100 | [diff] [blame] | 214 | struct cpuidle_device *dev) |
| 215 | {return -ENODEV; } |
Jacob Pan | bb8313b | 2016-11-28 23:03:04 -0800 | [diff] [blame] | 216 | static inline void cpuidle_use_deepest_state(bool enable) |
| 217 | { |
| 218 | } |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 219 | #endif |
| 220 | |
Rafael J. Wysocki | faad384 | 2015-05-10 01:18:03 +0200 | [diff] [blame] | 221 | /* kernel/sched/idle.c */ |
| 222 | extern void sched_idle_set_state(struct cpuidle_state *idle_state); |
Rafael J. Wysocki | 827a5ae | 2015-05-10 01:18:46 +0200 | [diff] [blame] | 223 | extern void default_idle_call(void); |
Rafael J. Wysocki | faad384 | 2015-05-10 01:18:03 +0200 | [diff] [blame] | 224 | |
Colin Cross | 20ff51a | 2012-05-07 17:57:42 -0700 | [diff] [blame] | 225 | #ifdef CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED |
| 226 | void cpuidle_coupled_parallel_barrier(struct cpuidle_device *dev, atomic_t *a); |
Arnd Bergmann | c7a9b09 | 2012-08-15 20:51:54 +0000 | [diff] [blame] | 227 | #else |
| 228 | static inline void cpuidle_coupled_parallel_barrier(struct cpuidle_device *dev, atomic_t *a) |
| 229 | { |
| 230 | } |
Colin Cross | 20ff51a | 2012-05-07 17:57:42 -0700 | [diff] [blame] | 231 | #endif |
| 232 | |
Rafael J. Wysocki | d7212cf | 2018-02-12 11:34:22 +0100 | [diff] [blame] | 233 | #if defined(CONFIG_CPU_IDLE) && defined(CONFIG_ARCH_HAS_CPU_RELAX) |
Rafael J. Wysocki | 1b39e3f | 2017-08-29 03:14:37 +0200 | [diff] [blame] | 234 | void cpuidle_poll_state_init(struct cpuidle_driver *drv); |
Rafael J. Wysocki | 34c2f65 | 2017-08-23 23:21:07 +0200 | [diff] [blame] | 235 | #else |
Rafael J. Wysocki | 1b39e3f | 2017-08-29 03:14:37 +0200 | [diff] [blame] | 236 | static inline void cpuidle_poll_state_init(struct cpuidle_driver *drv) {} |
Rafael J. Wysocki | 34c2f65 | 2017-08-23 23:21:07 +0200 | [diff] [blame] | 237 | #endif |
| 238 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 239 | /****************************** |
| 240 | * CPUIDLE GOVERNOR INTERFACE * |
| 241 | ******************************/ |
| 242 | |
| 243 | struct cpuidle_governor { |
| 244 | char name[CPUIDLE_NAME_LEN]; |
| 245 | struct list_head governor_list; |
| 246 | unsigned int rating; |
| 247 | |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 248 | int (*enable) (struct cpuidle_driver *drv, |
| 249 | struct cpuidle_device *dev); |
| 250 | void (*disable) (struct cpuidle_driver *drv, |
| 251 | struct cpuidle_device *dev); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 252 | |
Deepthi Dharwar | 46bcfad | 2011-10-28 16:20:42 +0530 | [diff] [blame] | 253 | int (*select) (struct cpuidle_driver *drv, |
Rafael J. Wysocki | 45f1ff5 | 2018-03-22 17:50:49 +0100 | [diff] [blame^] | 254 | struct cpuidle_device *dev, |
| 255 | bool *stop_tick); |
Deepthi Dharwar | e978aa7 | 2011-10-28 16:20:09 +0530 | [diff] [blame] | 256 | void (*reflect) (struct cpuidle_device *dev, int index); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 257 | }; |
| 258 | |
| 259 | #ifdef CONFIG_CPU_IDLE |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 260 | extern int cpuidle_register_governor(struct cpuidle_governor *gov); |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 261 | #else |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 262 | static inline int cpuidle_register_governor(struct cpuidle_governor *gov) |
| 263 | {return 0;} |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 264 | #endif |
| 265 | |
Prashanth Prakash | db50a74 | 2017-11-15 10:11:49 -0700 | [diff] [blame] | 266 | #define __CPU_PM_CPU_IDLE_ENTER(low_level_idle_enter, idx, is_retention) \ |
| 267 | ({ \ |
| 268 | int __ret = 0; \ |
| 269 | \ |
| 270 | if (!idx) { \ |
| 271 | cpu_do_idle(); \ |
| 272 | return idx; \ |
| 273 | } \ |
| 274 | \ |
| 275 | if (!is_retention) \ |
| 276 | __ret = cpu_pm_enter(); \ |
| 277 | if (!__ret) { \ |
| 278 | __ret = low_level_idle_enter(idx); \ |
| 279 | if (!is_retention) \ |
| 280 | cpu_pm_exit(); \ |
| 281 | } \ |
| 282 | \ |
| 283 | __ret ? -1 : idx; \ |
Sudeep Holla | 220276e | 2016-07-19 18:52:56 +0100 | [diff] [blame] | 284 | }) |
| 285 | |
Prashanth Prakash | db50a74 | 2017-11-15 10:11:49 -0700 | [diff] [blame] | 286 | #define CPU_PM_CPU_IDLE_ENTER(low_level_idle_enter, idx) \ |
| 287 | __CPU_PM_CPU_IDLE_ENTER(low_level_idle_enter, idx, 0) |
| 288 | |
| 289 | #define CPU_PM_CPU_IDLE_ENTER_RETENTION(low_level_idle_enter, idx) \ |
| 290 | __CPU_PM_CPU_IDLE_ENTER(low_level_idle_enter, idx, 1) |
| 291 | |
Len Brown | 4f86d3a | 2007-10-03 18:58:00 -0400 | [diff] [blame] | 292 | #endif /* _LINUX_CPUIDLE_H */ |