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> |
| 18 | #include <linux/cpufreq.h> |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 19 | #include <linux/notifier.h> |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 20 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 21 | struct dev_pm_opp; |
Paul Gortmaker | 313162d | 2012-01-30 11:46:54 -0500 | [diff] [blame] | 22 | struct device; |
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 { |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 25 | OPP_EVENT_ADD, OPP_EVENT_ENABLE, OPP_EVENT_DISABLE, |
| 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 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 34 | int dev_pm_opp_get_opp_count(struct device *dev); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 35 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 36 | struct dev_pm_opp *dev_pm_opp_find_freq_exact(struct device *dev, |
| 37 | unsigned long freq, |
| 38 | bool available); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 39 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 40 | struct dev_pm_opp *dev_pm_opp_find_freq_floor(struct device *dev, |
| 41 | unsigned long *freq); |
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_ceil(struct device *dev, |
| 44 | unsigned long *freq); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 45 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 46 | int dev_pm_opp_add(struct device *dev, unsigned long freq, |
| 47 | unsigned long u_volt); |
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_enable(struct device *dev, 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_disable(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 | struct srcu_notifier_head *dev_pm_opp_get_notifier(struct device *dev); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 54 | #else |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 55 | 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] | 56 | { |
| 57 | return 0; |
| 58 | } |
| 59 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 60 | 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] | 61 | { |
| 62 | return 0; |
| 63 | } |
| 64 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 65 | static inline int dev_pm_opp_get_opp_count(struct device *dev) |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 66 | { |
| 67 | return 0; |
| 68 | } |
| 69 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 70 | 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] | 71 | unsigned long freq, bool available) |
| 72 | { |
| 73 | return ERR_PTR(-EINVAL); |
| 74 | } |
| 75 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 76 | 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] | 77 | unsigned long *freq) |
| 78 | { |
| 79 | return ERR_PTR(-EINVAL); |
| 80 | } |
| 81 | |
Nishanth Menon | 47d43ba | 2013-09-19 16:03:51 -0500 | [diff] [blame] | 82 | 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] | 83 | unsigned long *freq) |
| 84 | { |
| 85 | return ERR_PTR(-EINVAL); |
| 86 | } |
| 87 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 88 | 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] | 89 | unsigned long u_volt) |
| 90 | { |
| 91 | return -EINVAL; |
| 92 | } |
| 93 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 94 | 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] | 95 | { |
| 96 | return 0; |
| 97 | } |
| 98 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 99 | 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] | 100 | { |
| 101 | return 0; |
| 102 | } |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 103 | |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 104 | static inline struct srcu_notifier_head *dev_pm_opp_get_notifier( |
| 105 | struct device *dev) |
MyungJoo Ham | 03ca370 | 2011-09-30 22:35:12 +0200 | [diff] [blame] | 106 | { |
| 107 | return ERR_PTR(-EINVAL); |
| 108 | } |
Tony Lindgren | a96d69d | 2011-11-03 10:12:27 +0100 | [diff] [blame] | 109 | #endif /* CONFIG_PM_OPP */ |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 110 | |
Shawn Guo | d6561bb | 2013-02-21 11:04:45 +0000 | [diff] [blame] | 111 | #if defined(CONFIG_PM_OPP) && defined(CONFIG_OF) |
| 112 | int of_init_opp_table(struct device *dev); |
| 113 | #else |
| 114 | static inline int of_init_opp_table(struct device *dev) |
| 115 | { |
| 116 | return -EINVAL; |
| 117 | } |
| 118 | #endif |
| 119 | |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 120 | #if defined(CONFIG_CPU_FREQ) && defined(CONFIG_PM_OPP) |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 121 | int dev_pm_opp_init_cpufreq_table(struct device *dev, |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 122 | struct cpufreq_frequency_table **table); |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 123 | void dev_pm_opp_free_cpufreq_table(struct device *dev, |
Nishanth Menon | 99f381d | 2011-06-10 20:24:57 +0200 | [diff] [blame] | 124 | struct cpufreq_frequency_table **table); |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 125 | #else |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 126 | static inline int dev_pm_opp_init_cpufreq_table(struct device *dev, |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 127 | struct cpufreq_frequency_table **table) |
| 128 | { |
| 129 | return -EINVAL; |
| 130 | } |
Nishanth Menon | 99f381d | 2011-06-10 20:24:57 +0200 | [diff] [blame] | 131 | |
| 132 | static inline |
Nishanth Menon | 5d4879c | 2013-09-19 16:03:50 -0500 | [diff] [blame] | 133 | void dev_pm_opp_free_cpufreq_table(struct device *dev, |
Nishanth Menon | 99f381d | 2011-06-10 20:24:57 +0200 | [diff] [blame] | 134 | struct cpufreq_frequency_table **table) |
| 135 | { |
| 136 | } |
Nishanth Menon | e1f60b2 | 2010-10-13 00:13:10 +0200 | [diff] [blame] | 137 | #endif /* CONFIG_CPU_FREQ */ |
| 138 | |
| 139 | #endif /* __LINUX_OPP_H__ */ |