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); |
Bartlomiej Zolnierkiewicz | 4eafbd1 | 2015-09-08 18:41:01 +0200 | [diff] [blame] | 37 | 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] | 38 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 39 | struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev, |
| 40 | unsigned long freq, |
| 41 | bool available); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 42 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 43 | struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev, |
| 44 | unsigned long *freq); |
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_ceil(struct device *dev, |
| 47 | unsigned long *freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 48 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 49 | int dev_pm_opp_add(struct device *dev, unsigned long freq, |
| 50 | unsigned long u_volt); |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 51 | void dev_pm_opp_remove(struct device *dev, unsigned long freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 52 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 53 | int dev_pm_opp_enable(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_disable(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 | struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 58 | #else |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 59 | 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] | 60 | { |
| 61 | return 0; |
| 62 | } |
| 63 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 64 | 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] | 65 | { |
| 66 | return 0; |
| 67 | } |
| 68 | |
Bartlomiej Zolnierkiewicz | 19445b2 | 2015-07-09 17:43:35 +0200 | [diff] [blame] | 69 | static inline bool dev_pm_opp_is_turbo(struct dev_pm_opp *opp) |
| 70 | { |
| 71 | return false; |
| 72 | } |
| 73 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 74 | static inline int dev_pm_opp_get_opp_count(struct device *dev) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 75 | { |
| 76 | return 0; |
| 77 | } |
| 78 | |
Viresh Kumar | 3ca9bb3 | 2015-07-29 16:23:03 +0530 | [diff] [blame] | 79 | static inline unsigned long dev_pm_opp_get_max_clock_latency(struct device *dev) |
| 80 | { |
| 81 | return 0; |
| 82 | } |
| 83 | |
Bartlomiej Zolnierkiewicz | 4eafbd1 | 2015-09-08 18:41:01 +0200 | [diff] [blame] | 84 | static inline struct dev_pm_opp *dev_pm_opp_get_suspend_opp(struct device *dev) |
| 85 | { |
| 86 | return NULL; |
| 87 | } |
| 88 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 89 | 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] | 90 | unsigned long freq, bool available) |
| 91 | { |
| 92 | return ERR_PTR(-EINVAL); |
| 93 | } |
| 94 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 95 | 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] | 96 | unsigned long *freq) |
| 97 | { |
| 98 | return ERR_PTR(-EINVAL); |
| 99 | } |
| 100 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 101 | 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] | 102 | unsigned long *freq) |
| 103 | { |
| 104 | return ERR_PTR(-EINVAL); |
| 105 | } |
| 106 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 107 | 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] | 108 | unsigned long u_volt) |
| 109 | { |
| 110 | return -EINVAL; |
| 111 | } |
| 112 | |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 113 | static inline void dev_pm_opp_remove(struct device *dev, unsigned long freq) |
| 114 | { |
| 115 | } |
| 116 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 117 | 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] | 118 | { |
| 119 | return 0; |
| 120 | } |
| 121 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 122 | 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] | 123 | { |
| 124 | return 0; |
| 125 | } |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 126 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 127 | static inline struct srcu_notifier_head *dev_pm_opp_get_notifier( |
| 128 | struct device *dev) |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 129 | { |
| 130 | return ERR_PTR(-EINVAL); |
| 131 | } |
Tony Lindgren | a96d69d | 2011-11-03 10:12:27 +0100 | [diff] [blame] | 132 | #endif /* CONFIG_PM_OPP */ |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 133 | |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 134 | #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF) |
| 135 | int of_init_opp_table(struct device *dev); |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 136 | void of_free_opp_table(struct device *dev); |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 137 | int of_cpumask_init_opp_table(cpumask_var_t cpumask); |
| 138 | void of_cpumask_free_opp_table(cpumask_var_t cpumask); |
| 139 | int of_get_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask); |
| 140 | int set_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask); |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 141 | #else |
| 142 | static inline int of_init_opp_table(struct device *dev) |
| 143 | { |
| 144 | return -EINVAL; |
| 145 | } |
Viresh Kumar | 129eec5 | 2014-11-27 08:54:06 +0530 | [diff] [blame] | 146 | |
| 147 | static inline void of_free_opp_table(struct device *dev) |
| 148 | { |
| 149 | } |
Viresh Kumar | 8d4d4e9 | 2015-06-12 17:10:38 +0530 | [diff] [blame] | 150 | |
| 151 | static inline int of_cpumask_init_opp_table(cpumask_var_t cpumask) |
| 152 | { |
| 153 | return -ENOSYS; |
| 154 | } |
| 155 | |
| 156 | static inline void of_cpumask_free_opp_table(cpumask_var_t cpumask) |
| 157 | { |
| 158 | } |
| 159 | |
| 160 | static inline int of_get_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask) |
| 161 | { |
| 162 | return -ENOSYS; |
| 163 | } |
| 164 | |
| 165 | static inline int set_cpus_sharing_opps(struct device *cpu_dev, cpumask_var_t cpumask) |
| 166 | { |
| 167 | return -ENOSYS; |
| 168 | } |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 169 | #endif |
| 170 | |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 171 | #endif /* __LINUX_OPP_H__ */ |