consumer.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. /*
  2. * consumer.h -- SoC Regulator consumer support.
  3. *
  4. * Copyright (C) 2007, 2008 Wolfson Microelectronics PLC.
  5. *
  6. * Author: Liam Girdwood <lrg@slimlogic.co.uk>
  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. #include <linux/compiler.h>
  37. struct device;
  38. struct notifier_block;
  39. /*
  40. * Regulator operating modes.
  41. *
  42. * Regulators can run in a variety of different operating modes depending on
  43. * output load. This allows further system power savings by selecting the
  44. * best (and most efficient) regulator mode for a desired load.
  45. *
  46. * Most drivers will only care about NORMAL. The modes below are generic and
  47. * will probably not match the naming convention of your regulator data sheet
  48. * but should match the use cases in the datasheet.
  49. *
  50. * In order of power efficiency (least efficient at top).
  51. *
  52. * Mode Description
  53. * FAST Regulator can handle fast changes in it's load.
  54. * e.g. useful in CPU voltage & frequency scaling where
  55. * load can quickly increase with CPU frequency increases.
  56. *
  57. * NORMAL Normal regulator power supply mode. Most drivers will
  58. * use this mode.
  59. *
  60. * IDLE Regulator runs in a more efficient mode for light
  61. * loads. Can be used for devices that have a low power
  62. * requirement during periods of inactivity. This mode
  63. * may be more noisy than NORMAL and may not be able
  64. * to handle fast load switching.
  65. *
  66. * STANDBY Regulator runs in the most efficient mode for very
  67. * light loads. Can be used by devices when they are
  68. * in a sleep/standby state. This mode is likely to be
  69. * the most noisy and may not be able to handle fast load
  70. * switching.
  71. *
  72. * NOTE: Most regulators will only support a subset of these modes. Some
  73. * will only just support NORMAL.
  74. *
  75. * These modes can be OR'ed together to make up a mask of valid register modes.
  76. */
  77. #define REGULATOR_MODE_FAST 0x1
  78. #define REGULATOR_MODE_NORMAL 0x2
  79. #define REGULATOR_MODE_IDLE 0x4
  80. #define REGULATOR_MODE_STANDBY 0x8
  81. /*
  82. * Regulator notifier events.
  83. *
  84. * UNDER_VOLTAGE Regulator output is under voltage.
  85. * OVER_CURRENT Regulator output current is too high.
  86. * REGULATION_OUT Regulator output is out of regulation.
  87. * FAIL Regulator output has failed.
  88. * OVER_TEMP Regulator over temp.
  89. * FORCE_DISABLE Regulator forcibly shut down by software.
  90. * VOLTAGE_CHANGE Regulator voltage changed.
  91. * DISABLE Regulator was disabled.
  92. *
  93. * NOTE: These events can be OR'ed together when passed into handler.
  94. */
  95. #define REGULATOR_EVENT_UNDER_VOLTAGE 0x01
  96. #define REGULATOR_EVENT_OVER_CURRENT 0x02
  97. #define REGULATOR_EVENT_REGULATION_OUT 0x04
  98. #define REGULATOR_EVENT_FAIL 0x08
  99. #define REGULATOR_EVENT_OVER_TEMP 0x10
  100. #define REGULATOR_EVENT_FORCE_DISABLE 0x20
  101. #define REGULATOR_EVENT_VOLTAGE_CHANGE 0x40
  102. #define REGULATOR_EVENT_DISABLE 0x80
  103. struct regulator;
  104. /**
  105. * struct regulator_bulk_data - Data used for bulk regulator operations.
  106. *
  107. * @supply: The name of the supply. Initialised by the user before
  108. * using the bulk regulator APIs.
  109. * @consumer: The regulator consumer for the supply. This will be managed
  110. * by the bulk API.
  111. * @min_uV: The minimum requested voltage for the regulator (in microvolts),
  112. * or 0 to not set a voltage.
  113. * @max_uV: The maximum requested voltage for the regulator (in microvolts),
  114. * or 0 to use @min_uV.
  115. *
  116. * The regulator APIs provide a series of regulator_bulk_() API calls as
  117. * a convenience to consumers which require multiple supplies. This
  118. * structure is used to manage data for these calls.
  119. */
  120. struct regulator_bulk_data {
  121. const char *supply;
  122. struct regulator *consumer;
  123. int min_uV;
  124. int max_uV;
  125. /* private: Internal use */
  126. int ret;
  127. };
  128. #if defined(CONFIG_REGULATOR)
  129. /* regulator get and put */
  130. struct regulator *__must_check regulator_get(struct device *dev,
  131. const char *id);
  132. struct regulator *__must_check devm_regulator_get(struct device *dev,
  133. const char *id);
  134. struct regulator *__must_check regulator_get_exclusive(struct device *dev,
  135. const char *id);
  136. void regulator_put(struct regulator *regulator);
  137. void devm_regulator_put(struct regulator *regulator);
  138. /* regulator output control and status */
  139. int regulator_enable(struct regulator *regulator);
  140. int regulator_disable(struct regulator *regulator);
  141. int regulator_force_disable(struct regulator *regulator);
  142. int regulator_is_enabled(struct regulator *regulator);
  143. int regulator_disable_deferred(struct regulator *regulator, int ms);
  144. int regulator_bulk_get(struct device *dev, int num_consumers,
  145. struct regulator_bulk_data *consumers);
  146. int devm_regulator_bulk_get(struct device *dev, int num_consumers,
  147. struct regulator_bulk_data *consumers);
  148. int regulator_bulk_enable(int num_consumers,
  149. struct regulator_bulk_data *consumers);
  150. int regulator_bulk_set_voltage(int num_consumers,
  151. struct regulator_bulk_data *consumers);
  152. int regulator_bulk_disable(int num_consumers,
  153. struct regulator_bulk_data *consumers);
  154. int regulator_bulk_force_disable(int num_consumers,
  155. struct regulator_bulk_data *consumers);
  156. void regulator_bulk_free(int num_consumers,
  157. struct regulator_bulk_data *consumers);
  158. int regulator_count_voltages(struct regulator *regulator);
  159. int regulator_list_voltage(struct regulator *regulator, unsigned selector);
  160. int regulator_is_supported_voltage(struct regulator *regulator,
  161. int min_uV, int max_uV);
  162. int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV);
  163. int regulator_set_voltage_time(struct regulator *regulator,
  164. int old_uV, int new_uV);
  165. int regulator_get_voltage(struct regulator *regulator);
  166. int regulator_sync_voltage(struct regulator *regulator);
  167. int regulator_set_current_limit(struct regulator *regulator,
  168. int min_uA, int max_uA);
  169. int regulator_get_current_limit(struct regulator *regulator);
  170. int regulator_set_mode(struct regulator *regulator, unsigned int mode);
  171. unsigned int regulator_get_mode(struct regulator *regulator);
  172. int regulator_set_optimum_mode(struct regulator *regulator, int load_uA);
  173. /* regulator notifier block */
  174. int regulator_register_notifier(struct regulator *regulator,
  175. struct notifier_block *nb);
  176. int regulator_unregister_notifier(struct regulator *regulator,
  177. struct notifier_block *nb);
  178. /* driver data - core doesn't touch */
  179. void *regulator_get_drvdata(struct regulator *regulator);
  180. void regulator_set_drvdata(struct regulator *regulator, void *data);
  181. void regulator_showall_enabled(void);
  182. #else
  183. /*
  184. * Make sure client drivers will still build on systems with no software
  185. * controllable voltage or current regulators.
  186. */
  187. static inline struct regulator *__must_check regulator_get(struct device *dev,
  188. const char *id)
  189. {
  190. /* Nothing except the stubbed out regulator API should be
  191. * looking at the value except to check if it is an error
  192. * value. Drivers are free to handle NULL specifically by
  193. * skipping all regulator API calls, but they don't have to.
  194. * Drivers which don't, should make sure they properly handle
  195. * corner cases of the API, such as regulator_get_voltage()
  196. * returning 0.
  197. */
  198. return NULL;
  199. }
  200. static inline struct regulator *__must_check
  201. devm_regulator_get(struct device *dev, const char *id)
  202. {
  203. return NULL;
  204. }
  205. static inline void regulator_put(struct regulator *regulator)
  206. {
  207. }
  208. static inline void devm_regulator_put(struct regulator *regulator)
  209. {
  210. }
  211. static inline int regulator_enable(struct regulator *regulator)
  212. {
  213. return 0;
  214. }
  215. static inline int regulator_disable(struct regulator *regulator)
  216. {
  217. return 0;
  218. }
  219. static inline int regulator_force_disable(struct regulator *regulator)
  220. {
  221. return 0;
  222. }
  223. static inline int regulator_disable_deferred(struct regulator *regulator,
  224. int ms)
  225. {
  226. return 0;
  227. }
  228. static inline int regulator_is_enabled(struct regulator *regulator)
  229. {
  230. return 1;
  231. }
  232. static inline int regulator_bulk_get(struct device *dev,
  233. int num_consumers,
  234. struct regulator_bulk_data *consumers)
  235. {
  236. return 0;
  237. }
  238. static inline int devm_regulator_bulk_get(struct device *dev, int num_consumers,
  239. struct regulator_bulk_data *consumers)
  240. {
  241. return 0;
  242. }
  243. static inline int regulator_bulk_enable(int num_consumers,
  244. struct regulator_bulk_data *consumers)
  245. {
  246. return 0;
  247. }
  248. static inline int regulator_bulk_disable(int num_consumers,
  249. struct regulator_bulk_data *consumers)
  250. {
  251. return 0;
  252. }
  253. static inline int regulator_bulk_force_disable(int num_consumers,
  254. struct regulator_bulk_data *consumers)
  255. {
  256. return 0;
  257. }
  258. static inline void regulator_bulk_free(int num_consumers,
  259. struct regulator_bulk_data *consumers)
  260. {
  261. }
  262. static inline int regulator_count_voltages(struct regulator *regulator)
  263. {
  264. return 0;
  265. }
  266. static inline int regulator_set_voltage(struct regulator *regulator,
  267. int min_uV, int max_uV)
  268. {
  269. return 0;
  270. }
  271. static inline int regulator_get_voltage(struct regulator *regulator)
  272. {
  273. return 0;
  274. }
  275. static inline int regulator_set_current_limit(struct regulator *regulator,
  276. int min_uA, int max_uA)
  277. {
  278. return 0;
  279. }
  280. static inline int regulator_get_current_limit(struct regulator *regulator)
  281. {
  282. return 0;
  283. }
  284. static inline int regulator_set_mode(struct regulator *regulator,
  285. unsigned int mode)
  286. {
  287. return 0;
  288. }
  289. static inline unsigned int regulator_get_mode(struct regulator *regulator)
  290. {
  291. return REGULATOR_MODE_NORMAL;
  292. }
  293. static inline int regulator_set_optimum_mode(struct regulator *regulator,
  294. int load_uA)
  295. {
  296. return REGULATOR_MODE_NORMAL;
  297. }
  298. static inline int regulator_register_notifier(struct regulator *regulator,
  299. struct notifier_block *nb)
  300. {
  301. return 0;
  302. }
  303. static inline int regulator_unregister_notifier(struct regulator *regulator,
  304. struct notifier_block *nb)
  305. {
  306. return 0;
  307. }
  308. static inline void *regulator_get_drvdata(struct regulator *regulator)
  309. {
  310. return NULL;
  311. }
  312. static inline void regulator_set_drvdata(struct regulator *regulator,
  313. void *data)
  314. {
  315. }
  316. #endif
  317. #endif