Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Generic OPP Interface |
| 3 | * |
| 4 | * Copyright (C) 2009-2010 Texas Instruments Incorporated. |
| 5 | * Nishanth Menon |
| 6 | * Romit Dasgupta |
| 7 | * Kevin Hilman |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
| 14 | #ifndef __LINUX_OPP_H__ |
| 15 | #define __LINUX_OPP_H__ |
| 16 | |
| 17 | #include <linux/err.h> |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 18 | #include <linux/notifier.h> |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 19 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 20 | struct dev_pm_opp; |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 21 | struct device; |
Stephen Boyd | c7a8a0a | 2016-11-30 16:21:25 +0530 | [diff] [blame] | 22 | struct opp_table; |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 23 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 24 | enum dev_pm_opp_event { |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 25 | OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE, |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 26 | }; |
| 27 | |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 28 | #if defined(CONFIG_PM_OPP) |
| 29 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 30 | unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 31 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 32 | unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 33 | |
Bartlomiej Zolnierkiewicz | 19445b2 | 2015-07-09 17:43:35 +0200 | [diff] [blame] | 34 | bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp); |
| 35 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 36 | int dev_pm_opp_get_opp_count(struct device *dev); |
Viresh Kumar | 3ca9bb3 | 2015-07-29 16:23:03 +0530 | [diff] [blame] | 37 | unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev); |
Viresh Kumar | 655c9df | 2016-02-09 10:30:35 +0530 | [diff] [blame] | 38 | unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev); |
Viresh Kumar | 2174344 | 2016-02-09 10:30:36 +0530 | [diff] [blame] | 39 | unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev); |
Bartlomiej Zolnierkiewicz | 4eafbd1 | 2015-09-08 18:41:01 +0200 | [diff] [blame] | 40 | struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 41 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 42 | struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev, |
| 43 | unsigned long freq, |
| 44 | bool available); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 45 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 46 | struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev, |
| 47 | unsigned long *freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 48 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 49 | struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev, |
| 50 | unsigned long *freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 51 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 52 | int dev_pm_opp_add(struct device *dev, unsigned long freq, |
| 53 | unsigned long u_volt); |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 54 | void dev_pm_opp_remove(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 55 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 56 | int dev_pm_opp_enable(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 57 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 58 | int dev_pm_opp_disable(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 59 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 60 | struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev); |
Viresh Kumar | 7de36b0 | 2015-12-09 08:01:46 +0530 | [diff] [blame] | 61 | int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions, |
| 62 | unsigned int count); |
| 63 | void dev_pm_opp_put_supported_hw(struct device *dev); |
Viresh Kumar | 01fb4d3 | 2015-12-09 08:01:47 +0530 | [diff] [blame] | 64 | int dev_pm_opp_set_prop_name(struct device *dev, const char *name); |
| 65 | void dev_pm_opp_put_prop_name(struct device *dev); |
Stephen Boyd | c7a8a0a | 2016-11-30 16:21:25 +0530 | [diff] [blame] | 66 | struct opp_table *dev_pm_opp_set_regulator(struct device *dev, const char *name); |
| 67 | void dev_pm_opp_put_regulator(struct opp_table *opp_table); |
Viresh Kumar | 6a0712f | 2016-02-09 10:30:39 +0530 | [diff] [blame] | 68 | int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq); |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 69 | int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, const struct cpumask *cpumask); |
| 70 | int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask); |
Sudeep Holla | 411466c | 2016-05-03 15:05:04 +0100 | [diff] [blame] | 71 | void dev_pm_opp_remove_table(struct device *dev); |
| 72 | void dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 73 | #else |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 74 | static inline unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 75 | { |
| 76 | return 0; |
| 77 | } |
| 78 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 79 | static inline unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 80 | { |
| 81 | return 0; |
| 82 | } |
| 83 | |
Bartlomiej Zolnierkiewicz | 19445b2 | 2015-07-09 17:43:35 +0200 | [diff] [blame] | 84 | static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp) |
| 85 | { |
| 86 | return false; |
| 87 | } |
| 88 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 89 | static inline int dev_pm_opp_get_opp_count(struct device *dev) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 90 | { |
| 91 | return 0; |
| 92 | } |
| 93 | |
Viresh Kumar | 3ca9bb3 | 2015-07-29 16:23:03 +0530 | [diff] [blame] | 94 | static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev) |
| 95 | { |
| 96 | return 0; |
| 97 | } |
| 98 | |
Viresh Kumar | 655c9df | 2016-02-09 10:30:35 +0530 | [diff] [blame] | 99 | static inline unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev) |
| 100 | { |
| 101 | return 0; |
| 102 | } |
| 103 | |
Viresh Kumar | 2174344 | 2016-02-09 10:30:36 +0530 | [diff] [blame] | 104 | static inline unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev) |
| 105 | { |
| 106 | return 0; |
| 107 | } |
| 108 | |
Bartlomiej Zolnierkiewicz | 4eafbd1 | 2015-09-08 18:41:01 +0200 | [diff] [blame] | 109 | static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev) |
| 110 | { |
| 111 | return NULL; |
| 112 | } |
| 113 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 114 | static inline struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev, |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 115 | unsigned long freq, bool available) |
| 116 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 117 | return ERR_PTR(-ENOTSUPP); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 118 | } |
| 119 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 120 | static inline struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev, |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 121 | unsigned long *freq) |
| 122 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 123 | return ERR_PTR(-ENOTSUPP); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 124 | } |
| 125 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 126 | static inline struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev, |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 127 | unsigned long *freq) |
| 128 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 129 | return ERR_PTR(-ENOTSUPP); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 130 | } |
| 131 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 132 | static inline int dev_pm_opp_add(struct device *dev, unsigned long freq, |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 133 | unsigned long u_volt) |
| 134 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 135 | return -ENOTSUPP; |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 136 | } |
| 137 | |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 138 | static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq) |
| 139 | { |
| 140 | } |
| 141 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 142 | static inline int dev_pm_opp_enable(struct device *dev, unsigned long freq) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 143 | { |
| 144 | return 0; |
| 145 | } |
| 146 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 147 | static inline int dev_pm_opp_disable(struct device *dev, unsigned long freq) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 148 | { |
| 149 | return 0; |
| 150 | } |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 151 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 152 | static inline struct srcu_notifier_head *dev_pm_opp_get_notifier( |
| 153 | struct device *dev) |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 154 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 155 | return ERR_PTR(-ENOTSUPP); |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 156 | } |
Viresh Kumar | 7de36b0 | 2015-12-09 08:01:46 +0530 | [diff] [blame] | 157 | |
| 158 | static inline int dev_pm_opp_set_supported_hw(struct device *dev, |
| 159 | const u32 *versions, |
| 160 | unsigned int count) |
| 161 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 162 | return -ENOTSUPP; |
Viresh Kumar | 7de36b0 | 2015-12-09 08:01:46 +0530 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | static inline void dev_pm_opp_put_supported_hw(struct device *dev) {} |
| 166 | |
Viresh Kumar | 01fb4d3 | 2015-12-09 08:01:47 +0530 | [diff] [blame] | 167 | static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name) |
| 168 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 169 | return -ENOTSUPP; |
Viresh Kumar | 01fb4d3 | 2015-12-09 08:01:47 +0530 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static inline void dev_pm_opp_put_prop_name(struct device *dev) {} |
| 173 | |
Stephen Boyd | c7a8a0a | 2016-11-30 16:21:25 +0530 | [diff] [blame] | 174 | static inline struct opp_table *dev_pm_opp_set_regulator(struct device *dev, const char *name) |
Viresh Kumar | 9f8ea96 | 2016-02-09 10:30:33 +0530 | [diff] [blame] | 175 | { |
Stephen Boyd | c7a8a0a | 2016-11-30 16:21:25 +0530 | [diff] [blame] | 176 | return ERR_PTR(-ENOTSUPP); |
Viresh Kumar | 9f8ea96 | 2016-02-09 10:30:33 +0530 | [diff] [blame] | 177 | } |
| 178 | |
Stephen Boyd | c7a8a0a | 2016-11-30 16:21:25 +0530 | [diff] [blame] | 179 | static inline void dev_pm_opp_put_regulator(struct opp_table *opp_table) {} |
Viresh Kumar | 9f8ea96 | 2016-02-09 10:30:33 +0530 | [diff] [blame] | 180 | |
Viresh Kumar | 6a0712f | 2016-02-09 10:30:39 +0530 | [diff] [blame] | 181 | static inline int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq) |
| 182 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 183 | return -ENOTSUPP; |
Viresh Kumar | 6a0712f | 2016-02-09 10:30:39 +0530 | [diff] [blame] | 184 | } |
| 185 | |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 186 | static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, const struct cpumask *cpumask) |
Viresh Kumar | 642aa8c | 2016-04-21 14:28:55 +0530 | [diff] [blame] | 187 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 188 | return -ENOTSUPP; |
Viresh Kumar | 642aa8c | 2016-04-21 14:28:55 +0530 | [diff] [blame] | 189 | } |
| 190 | |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 191 | static inline int dev_pm_opp_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask) |
Viresh Kumar | 6f707da | 2016-04-27 08:52:23 +0530 | [diff] [blame] | 192 | { |
| 193 | return -EINVAL; |
| 194 | } |
| 195 | |
Sudeep Holla | 411466c | 2016-05-03 15:05:04 +0100 | [diff] [blame] | 196 | static inline void dev_pm_opp_remove_table(struct device *dev) |
| 197 | { |
| 198 | } |
| 199 | |
| 200 | static inline void dev_pm_opp_cpumask_remove_table(const struct cpumask *cpumask) |
| 201 | { |
| 202 | } |
| 203 | |
Tony Lindgren | a96d69d | 2011-11-03 10:12:27 +0100 | [diff] [blame] | 204 | #endif /* CONFIG_PM_OPP */ |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 205 | |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 206 | #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF) |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 207 | int dev_pm_opp_of_add_table(struct device *dev); |
| 208 | void dev_pm_opp_of_remove_table(struct device *dev); |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 209 | int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask); |
| 210 | void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask); |
| 211 | int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask); |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 212 | #else |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 213 | static inline int dev_pm_opp_of_add_table(struct device *dev) |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 214 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 215 | return -ENOTSUPP; |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 216 | } |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 217 | |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 218 | static inline void dev_pm_opp_of_remove_table(struct device *dev) |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 219 | { |
| 220 | } |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 221 | |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 222 | static inline int dev_pm_opp_of_cpumask_add_table(const struct cpumask *cpumask) |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 223 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 224 | return -ENOTSUPP; |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 225 | } |
| 226 | |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 227 | static inline void dev_pm_opp_of_cpumask_remove_table(const struct cpumask *cpumask) |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 228 | { |
| 229 | } |
| 230 | |
Arnd Bergmann | ddbb74b | 2016-04-30 13:33:29 +0200 | [diff] [blame] | 231 | static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, struct cpumask *cpumask) |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 232 | { |
Viresh Kumar | d708b38 | 2016-04-27 08:52:21 +0530 | [diff] [blame] | 233 | return -ENOTSUPP; |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 234 | } |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 235 | #endif |
| 236 | |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 237 | #endif /* __LINUX_OPP_H__ */ |