consumer.h 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. /*
  2. * consumer.h -- SoC Regulator consumer support.
  3. *
  4. * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
  5. *
  6. * Author: Liam Girdwood <lg@opensource.wolfsonmicro.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. *
  12. * Regulator Consumer Interface.
  13. *
  14. * A Power Management Regulator framework for SoC based devices.
  15. * Features:-
  16. * o Voltage and current level control.
  17. * o Operating mode control.
  18. * o Regulator status.
  19. * o sysfs entries for showing client devices and status
  20. *
  21. * EXPERIMENTAL FEATURES:
  22. * Dynamic Regulator operating Mode Switching (DRMS) - allows regulators
  23. * to use most efficient operating mode depending upon voltage and load and
  24. * is transparent to client drivers.
  25. *
  26. * e.g. Devices x,y,z share regulator r. Device x and y draw 20mA each during
  27. * IO and 1mA at idle. Device z draws 100mA when under load and 5mA when
  28. * idling. Regulator r has > 90% efficiency in NORMAL mode at loads > 100mA
  29. * but this drops rapidly to 60% when below 100mA. Regulator r has > 90%
  30. * efficiency in IDLE mode at loads < 10mA. Thus regulator r will operate
  31. * in normal mode for loads > 10mA and in IDLE mode for load <= 10mA.
  32. *
  33. */
  34. #ifndef __LINUX_REGULATOR_CONSUMER_H_
  35. #define __LINUX_REGULATOR_CONSUMER_H_
  36. /*
  37. * Regulator operating modes.
  38. *
  39. * Regulators can run in a variety of different operating modes depending on
  40. * output load. This allows further system power savings by selecting the
  41. * best (and most efficient) regulator mode for a desired load.
  42. *
  43. * Most drivers will only care about NORMAL. The modes below are generic and
  44. * will probably not match the naming convention of your regulator data sheet
  45. * but should match the use cases in the datasheet.
  46. *
  47. * In order of power efficiency (least efficient at top).
  48. *
  49. * Mode Description
  50. * FAST Regulator can handle fast changes in it's load.
  51. * e.g. useful in CPU voltage & frequency scaling where
  52. * load can quickly increase with CPU frequency increases.
  53. *
  54. * NORMAL Normal regulator power supply mode. Most drivers will
  55. * use this mode.
  56. *
  57. * IDLE Regulator runs in a more efficient mode for light
  58. * loads. Can be used for devices that have a low power
  59. * requirement during periods of inactivity. This mode
  60. * may be more noisy than NORMAL and may not be able
  61. * to handle fast load switching.
  62. *
  63. * STANDBY Regulator runs in the most efficient mode for very
  64. * light loads. Can be used by devices when they are
  65. * in a sleep/standby state. This mode is likely to be
  66. * the most noisy and may not be able to handle fast load
  67. * switching.
  68. *
  69. * NOTE: Most regulators will only support a subset of these modes. Some
  70. * will only just support NORMAL.
  71. *
  72. * These modes can be OR'ed together to make up a mask of valid register modes.
  73. */
  74. #define REGULATOR_MODE_FAST 0x1
  75. #define REGULATOR_MODE_NORMAL 0x2
  76. #define REGULATOR_MODE_IDLE 0x4
  77. #define REGULATOR_MODE_STANDBY 0x8
  78. /*
  79. * Regulator notifier events.
  80. *
  81. * UNDER_VOLTAGE Regulator output is under voltage.
  82. * OVER_CURRENT Regulator output current is too high.
  83. * REGULATION_OUT Regulator output is out of regulation.
  84. * FAIL Regulator output has failed.
  85. * OVER_TEMP Regulator over temp.
  86. * FORCE_DISABLE Regulator shut down by software.
  87. *
  88. * NOTE: These events can be OR'ed together when passed into handler.
  89. */
  90. #define REGULATOR_EVENT_UNDER_VOLTAGE 0x01
  91. #define REGULATOR_EVENT_OVER_CURRENT 0x02
  92. #define REGULATOR_EVENT_REGULATION_OUT 0x04
  93. #define REGULATOR_EVENT_FAIL 0x08
  94. #define REGULATOR_EVENT_OVER_TEMP 0x10
  95. #define REGULATOR_EVENT_FORCE_DISABLE 0x20
  96. struct regulator;
  97. /**
  98. * struct regulator_bulk_data - Data used for bulk regulator operations.
  99. *
  100. * @supply The name of the supply. Initialised by the user before
  101. * using the bulk regulator APIs.
  102. * @consumer The regulator consumer for the supply. This will be managed
  103. * by the bulk API.
  104. *
  105. * The regulator APIs provide a series of regulator_bulk_() API calls as
  106. * a convenience to consumers which require multiple supplies. This
  107. * structure is used to manage data for these calls.
  108. */
  109. struct regulator_bulk_data {
  110. const char *supply;
  111. struct regulator *consumer;
  112. };
  113. #if defined(CONFIG_REGULATOR)
  114. /* regulator get and put */
  115. struct regulator *__must_check regulator_get(struct device *dev,
  116. const char *id);
  117. void regulator_put(struct regulator *regulator);
  118. /* regulator output control and status */
  119. int regulator_enable(struct regulator *regulator);
  120. int regulator_disable(struct regulator *regulator);
  121. int regulator_force_disable(struct regulator *regulator);
  122. int regulator_is_enabled(struct regulator *regulator);
  123. int regulator_bulk_get(struct device *dev, int num_consumers,
  124. struct regulator_bulk_data *consumers);
  125. int regulator_bulk_enable(int num_consumers,
  126. struct regulator_bulk_data *consumers);
  127. int regulator_bulk_disable(int num_consumers,
  128. struct regulator_bulk_data *consumers);
  129. void regulator_bulk_free(int num_consumers,
  130. struct regulator_bulk_data *consumers);
  131. int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV);
  132. int regulator_get_voltage(struct regulator *regulator);
  133. int regulator_set_current_limit(struct regulator *regulator,
  134. int min_uA, int max_uA);
  135. int regulator_get_current_limit(struct regulator *regulator);
  136. int regulator_set_mode(struct regulator *regulator, unsigned int mode);
  137. unsigned int regulator_get_mode(struct regulator *regulator);
  138. int regulator_set_optimum_mode(struct regulator *regulator, int load_uA);
  139. /* regulator notifier block */
  140. int regulator_register_notifier(struct regulator *regulator,
  141. struct notifier_block *nb);
  142. int regulator_unregister_notifier(struct regulator *regulator,
  143. struct notifier_block *nb);
  144. /* driver data - core doesn't touch */
  145. void *regulator_get_drvdata(struct regulator *regulator);
  146. void regulator_set_drvdata(struct regulator *regulator, void *data);
  147. #else
  148. /*
  149. * Make sure client drivers will still build on systems with no software
  150. * controllable voltage or current regulators.
  151. */
  152. static inline struct regulator *__must_check regulator_get(struct device *dev,
  153. const char *id)
  154. {
  155. /* Nothing except the stubbed out regulator API should be
  156. * looking at the value except to check if it is an error
  157. * value so the actual return value doesn't matter.
  158. */
  159. return (struct regulator *)id;
  160. }
  161. static inline void regulator_put(struct regulator *regulator)
  162. {
  163. }
  164. static inline int regulator_enable(struct regulator *regulator)
  165. {
  166. return 0;
  167. }
  168. static inline int regulator_disable(struct regulator *regulator)
  169. {
  170. return 0;
  171. }
  172. static inline int regulator_is_enabled(struct regulator *regulator)
  173. {
  174. return 1;
  175. }
  176. static inline int regulator_bulk_get(struct device *dev,
  177. int num_consumers,
  178. struct regulator_bulk_data *consumers)
  179. {
  180. return 0;
  181. }
  182. static inline int regulator_bulk_enable(int num_consumers,
  183. struct regulator_bulk_data *consumers)
  184. {
  185. return 0;
  186. }
  187. static inline int regulator_bulk_disable(int num_consumers,
  188. struct regulator_bulk_data *consumers)
  189. {
  190. return 0;
  191. }
  192. static inline void regulator_bulk_free(int num_consumers,
  193. struct regulator_bulk_data *consumers)
  194. {
  195. }
  196. static inline int regulator_set_voltage(struct regulator *regulator,
  197. int min_uV, int max_uV)
  198. {
  199. return 0;
  200. }
  201. static inline int regulator_get_voltage(struct regulator *regulator)
  202. {
  203. return 0;
  204. }
  205. static inline int regulator_set_current_limit(struct regulator *regulator,
  206. int min_uA, int max_uA)
  207. {
  208. return 0;
  209. }
  210. static inline int regulator_get_current_limit(struct regulator *regulator)
  211. {
  212. return 0;
  213. }
  214. static inline int regulator_set_mode(struct regulator *regulator,
  215. unsigned int mode)
  216. {
  217. return 0;
  218. }
  219. static inline unsigned int regulator_get_mode(struct regulator *regulator)
  220. {
  221. return REGULATOR_MODE_NORMAL;
  222. }
  223. static inline int regulator_set_optimum_mode(struct regulator *regulator,
  224. int load_uA)
  225. {
  226. return REGULATOR_MODE_NORMAL;
  227. }
  228. static inline int regulator_register_notifier(struct regulator *regulator,
  229. struct notifier_block *nb)
  230. {
  231. return 0;
  232. }
  233. static inline int regulator_unregister_notifier(struct regulator *regulator,
  234. struct notifier_block *nb)
  235. {
  236. return 0;
  237. }
  238. static inline void *regulator_get_drvdata(struct regulator *regulator)
  239. {
  240. return NULL;
  241. }
  242. static inline void regulator_set_drvdata(struct regulator *regulator,
  243. void *data)
  244. {
  245. }
  246. #endif
  247. #endif