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; |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 22 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 23 | enum dev_pm_opp_event { |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 24 | OPP_EVENT_ADD, OPP_EVENT_REMOVE, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE, |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 25 | }; |
| 26 | |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 27 | #if defined(CONFIG_PM_OPP) |
| 28 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 29 | unsigned long dev_pm_opp_get_voltage(struct dev_pm_opp *opp); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 30 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 31 | unsigned long dev_pm_opp_get_freq(struct dev_pm_opp *opp); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 32 | |
Bartlomiej Zolnierkiewicz | 19445b2 | 2015-07-09 17:43:35 +0200 | [diff] [blame] | 33 | bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp); |
| 34 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 35 | int dev_pm_opp_get_opp_count(struct device *dev); |
Viresh Kumar | 3ca9bb3 | 2015-07-29 16:23:03 +0530 | [diff] [blame] | 36 | unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev); |
Viresh Kumar | 655c9df | 2016-02-09 10:30:35 +0530 | [diff] [blame] | 37 | unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev); |
Viresh Kumar | 2174344 | 2016-02-09 10:30:36 +0530 | [diff] [blame] | 38 | unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev); |
Bartlomiej Zolnierkiewicz | 4eafbd1 | 2015-09-08 18:41:01 +0200 | [diff] [blame] | 39 | 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] | 40 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 41 | struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev, |
| 42 | unsigned long freq, |
| 43 | bool available); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 44 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 45 | struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev, |
| 46 | unsigned long *freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 47 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 48 | struct dev_pm_opp *dev_pm_opp_find_freq_ceil(struct device *dev, |
| 49 | unsigned long *freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 50 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 51 | int dev_pm_opp_add(struct device *dev, unsigned long freq, |
| 52 | unsigned long u_volt); |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 53 | void dev_pm_opp_remove(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 54 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 55 | int dev_pm_opp_enable(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 56 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 57 | int dev_pm_opp_disable(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 58 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 59 | struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev); |
Viresh Kumar | 7de36b0 | 2015-12-09 08:01:46 +0530 | [diff] [blame] | 60 | int dev_pm_opp_set_supported_hw(struct device *dev, const u32 *versions, |
| 61 | unsigned int count); |
| 62 | void dev_pm_opp_put_supported_hw(struct device *dev); |
Viresh Kumar | 01fb4d3 | 2015-12-09 08:01:47 +0530 | [diff] [blame] | 63 | int dev_pm_opp_set_prop_name(struct device *dev, const char *name); |
| 64 | void dev_pm_opp_put_prop_name(struct device *dev); |
Viresh Kumar | 9f8ea96 | 2016-02-09 10:30:33 +0530 | [diff] [blame] | 65 | int dev_pm_opp_set_regulator(struct device *dev, const char *name); |
| 66 | void dev_pm_opp_put_regulator(struct device *dev); |
Viresh Kumar | 6a0712f | 2016-02-09 10:30:39 +0530 | [diff] [blame] | 67 | int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq); |
Viresh Kumar | 642aa8c | 2016-04-21 14:28:55 +0530 | [diff] [blame^] | 68 | int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 69 | #else |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 70 | 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] | 71 | { |
| 72 | return 0; |
| 73 | } |
| 74 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 75 | 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] | 76 | { |
| 77 | return 0; |
| 78 | } |
| 79 | |
Bartlomiej Zolnierkiewicz | 19445b2 | 2015-07-09 17:43:35 +0200 | [diff] [blame] | 80 | static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp) |
| 81 | { |
| 82 | return false; |
| 83 | } |
| 84 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 85 | static inline int dev_pm_opp_get_opp_count(struct device *dev) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 86 | { |
| 87 | return 0; |
| 88 | } |
| 89 | |
Viresh Kumar | 3ca9bb3 | 2015-07-29 16:23:03 +0530 | [diff] [blame] | 90 | static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev) |
| 91 | { |
| 92 | return 0; |
| 93 | } |
| 94 | |
Viresh Kumar | 655c9df | 2016-02-09 10:30:35 +0530 | [diff] [blame] | 95 | static inline unsigned long dev_pm_opp_get_max_volt_latency(struct device *dev) |
| 96 | { |
| 97 | return 0; |
| 98 | } |
| 99 | |
Viresh Kumar | 2174344 | 2016-02-09 10:30:36 +0530 | [diff] [blame] | 100 | static inline unsigned long dev_pm_opp_get_max_transition_latency(struct device *dev) |
| 101 | { |
| 102 | return 0; |
| 103 | } |
| 104 | |
Bartlomiej Zolnierkiewicz | 4eafbd1 | 2015-09-08 18:41:01 +0200 | [diff] [blame] | 105 | static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev) |
| 106 | { |
| 107 | return NULL; |
| 108 | } |
| 109 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 110 | 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] | 111 | unsigned long freq, bool available) |
| 112 | { |
| 113 | return ERR_PTR(-EINVAL); |
| 114 | } |
| 115 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 116 | 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] | 117 | unsigned long *freq) |
| 118 | { |
| 119 | return ERR_PTR(-EINVAL); |
| 120 | } |
| 121 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 122 | 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] | 123 | unsigned long *freq) |
| 124 | { |
| 125 | return ERR_PTR(-EINVAL); |
| 126 | } |
| 127 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 128 | 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] | 129 | unsigned long u_volt) |
| 130 | { |
| 131 | return -EINVAL; |
| 132 | } |
| 133 | |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 134 | static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq) |
| 135 | { |
| 136 | } |
| 137 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 138 | 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] | 139 | { |
| 140 | return 0; |
| 141 | } |
| 142 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 143 | 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] | 144 | { |
| 145 | return 0; |
| 146 | } |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 147 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 148 | static inline struct srcu_notifier_head *dev_pm_opp_get_notifier( |
| 149 | struct device *dev) |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 150 | { |
| 151 | return ERR_PTR(-EINVAL); |
| 152 | } |
Viresh Kumar | 7de36b0 | 2015-12-09 08:01:46 +0530 | [diff] [blame] | 153 | |
| 154 | static inline int dev_pm_opp_set_supported_hw(struct device *dev, |
| 155 | const u32 *versions, |
| 156 | unsigned int count) |
| 157 | { |
| 158 | return -EINVAL; |
| 159 | } |
| 160 | |
| 161 | static inline void dev_pm_opp_put_supported_hw(struct device *dev) {} |
| 162 | |
Viresh Kumar | 01fb4d3 | 2015-12-09 08:01:47 +0530 | [diff] [blame] | 163 | static inline int dev_pm_opp_set_prop_name(struct device *dev, const char *name) |
| 164 | { |
| 165 | return -EINVAL; |
| 166 | } |
| 167 | |
| 168 | static inline void dev_pm_opp_put_prop_name(struct device *dev) {} |
| 169 | |
Viresh Kumar | 9f8ea96 | 2016-02-09 10:30:33 +0530 | [diff] [blame] | 170 | static inline int dev_pm_opp_set_regulator(struct device *dev, const char *name) |
| 171 | { |
| 172 | return -EINVAL; |
| 173 | } |
| 174 | |
| 175 | static inline void dev_pm_opp_put_regulator(struct device *dev) {} |
| 176 | |
Viresh Kumar | 6a0712f | 2016-02-09 10:30:39 +0530 | [diff] [blame] | 177 | static inline int dev_pm_opp_set_rate(struct device *dev, unsigned long target_freq) |
| 178 | { |
| 179 | return -EINVAL; |
| 180 | } |
| 181 | |
Viresh Kumar | 642aa8c | 2016-04-21 14:28:55 +0530 | [diff] [blame^] | 182 | static inline int dev_pm_opp_set_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask) |
| 183 | { |
| 184 | return -ENOSYS; |
| 185 | } |
| 186 | |
Tony Lindgren | a96d69d | 2011-11-03 10:12:27 +0100 | [diff] [blame] | 187 | #endif /* CONFIG_PM_OPP */ |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 188 | |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 189 | #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF) |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 190 | int dev_pm_opp_of_add_table(struct device *dev); |
| 191 | void dev_pm_opp_of_remove_table(struct device *dev); |
| 192 | int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask); |
| 193 | void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask); |
| 194 | int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask); |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 195 | #else |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 196 | static inline int dev_pm_opp_of_add_table(struct device *dev) |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 197 | { |
| 198 | return -EINVAL; |
| 199 | } |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 200 | |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 201 | static inline void dev_pm_opp_of_remove_table(struct device *dev) |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 202 | { |
| 203 | } |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 204 | |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 205 | static inline int dev_pm_opp_of_cpumask_add_table(cpumask_var_t cpumask) |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 206 | { |
| 207 | return -ENOSYS; |
| 208 | } |
| 209 | |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 210 | static inline void dev_pm_opp_of_cpumask_remove_table(cpumask_var_t cpumask) |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 211 | { |
| 212 | } |
| 213 | |
Viresh Kumar | 8f8d37b | 2015-09-04 13:47:24 +0530 | [diff] [blame] | 214 | static inline int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask) |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 215 | { |
| 216 | return -ENOSYS; |
| 217 | } |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 218 | #endif |
| 219 | |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 220 | #endif /* __LINUX_OPP_H__ */ |