consumer.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  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. struct device;
  37. struct notifier_block;
  38. /*
  39. * Regulator operating modes.
  40. *
  41. * Regulators can run in a variety of different operating modes depending on
  42. * output load. This allows further system power savings by selecting the
  43. * best (and most efficient) regulator mode for a desired load.
  44. *
  45. * Most drivers will only care about NORMAL. The modes below are generic and
  46. * will probably not match the naming convention of your regulator data sheet
  47. * but should match the use cases in the datasheet.
  48. *
  49. * In order of power efficiency (least efficient at top).
  50. *
  51. * Mode Description
  52. * FAST Regulator can handle fast changes in it's load.
  53. * e.g. useful in CPU voltage & frequency scaling where
  54. * load can quickly increase with CPU frequency increases.
  55. *
  56. * NORMAL Normal regulator power supply mode. Most drivers will
  57. * use this mode.
  58. *
  59. * IDLE Regulator runs in a more efficient mode for light
  60. * loads. Can be used for devices that have a low power
  61. * requirement during periods of inactivity. This mode
  62. * may be more noisy than NORMAL and may not be able
  63. * to handle fast load switching.
  64. *
  65. * STANDBY Regulator runs in the most efficient mode for very
  66. * light loads. Can be used by devices when they are
  67. * in a sleep/standby state. This mode is likely to be
  68. * the most noisy and may not be able to handle fast load
  69. * switching.
  70. *
  71. * NOTE: Most regulators will only support a subset of these modes. Some
  72. * will only just support NORMAL.
  73. *
  74. * These modes can be OR'ed together to make up a mask of valid register modes.
  75. */
  76. #define REGULATOR_MODE_FAST 0x1
  77. #define REGULATOR_MODE_NORMAL 0x2
  78. #define REGULATOR_MODE_IDLE 0x4
  79. #define REGULATOR_MODE_STANDBY 0x8
  80. /*
  81. * Regulator notifier events.
  82. *
  83. * UNDER_VOLTAGE Regulator output is under voltage.
  84. * OVER_CURRENT Regulator output current is too high.
  85. * REGULATION_OUT Regulator output is out of regulation.
  86. * FAIL Regulator output has failed.
  87. * OVER_TEMP Regulator over temp.
  88. * FORCE_DISABLE Regulator forcibly shut down by software.
  89. * VOLTAGE_CHANGE Regulator voltage changed.
  90. * DISABLE Regulator was disabled.
  91. *
  92. * NOTE: These events can be OR'ed together when passed into handler.
  93. */
  94. #define REGULATOR_EVENT_UNDER_VOLTAGE 0x01
  95. #define REGULATOR_EVENT_OVER_CURRENT 0x02
  96. #define REGULATOR_EVENT_REGULATION_OUT 0x04
  97. #define REGULATOR_EVENT_FAIL 0x08
  98. #define REGULATOR_EVENT_OVER_TEMP 0x10
  99. #define REGULATOR_EVENT_FORCE_DISABLE 0x20
  100. #define REGULATOR_EVENT_VOLTAGE_CHANGE 0x40
  101. #define REGULATOR_EVENT_DISABLE 0x80
  102. struct regulator;
  103. /**
  104. * struct regulator_bulk_data - Data used for bulk regulator operations.
  105. *
  106. * @supply: The name of the supply. Initialised by the user before
  107. * using the bulk regulator APIs.
  108. * @consumer: The regulator consumer for the supply. This will be managed
  109. * by the bulk API.
  110. *
  111. * The regulator APIs provide a series of regulator_bulk_() API calls as
  112. * a convenience to consumers which require multiple supplies. This
  113. * structure is used to manage data for these calls.
  114. */
  115. struct regulator_bulk_data {
  116. const char *supply;
  117. struct regulator *consumer;
  118. /* private: Internal use */
  119. int ret;
  120. };
  121. #if defined(CONFIG_REGULATOR)
  122. /* regulator get and put */
  123. struct regulator *__must_check regulator_get(struct device *dev,
  124. const char *id);
  125. struct regulator *__must_check devm_regulator_get(struct device *dev,
  126. const char *id);
  127. struct regulator *__must_check regulator_get_exclusive(struct device *dev,
  128. const char *id);
  129. struct regulator *__must_check devm_regulator_get_exclusive(struct device *dev,
  130. const char *id);
  131. struct regulator *__must_check regulator_get_optional(struct device *dev,
  132. const char *id);
  133. struct regulator *__must_check devm_regulator_get_optional(struct device *dev,
  134. const char *id);
  135. void regulator_put(struct regulator *regulator);
  136. void devm_regulator_put(struct regulator *regulator);
  137. int regulator_register_supply_alias(struct device *dev, const char *id,
  138. struct device *alias_dev,
  139. const char *alias_id);
  140. void regulator_unregister_supply_alias(struct device *dev, const char *id);
  141. int regulator_bulk_register_supply_alias(struct device *dev,
  142. const char *const *id,
  143. struct device *alias_dev,
  144. const char *const *alias_id,
  145. int num_id);
  146. void regulator_bulk_unregister_supply_alias(struct device *dev,
  147. const char * const *id, int num_id);
  148. int devm_regulator_register_supply_alias(struct device *dev, const char *id,
  149. struct device *alias_dev,
  150. const char *alias_id);
  151. void devm_regulator_unregister_supply_alias(struct device *dev,
  152. const char *id);
  153. int devm_regulator_bulk_register_supply_alias(struct device *dev,
  154. const char *const *id,
  155. struct device *alias_dev,
  156. const char *const *alias_id,
  157. int num_id);
  158. void devm_regulator_bulk_unregister_supply_alias(struct device *dev,
  159. const char *const *id,
  160. int num_id);
  161. /* regulator output control and status */
  162. int __must_check regulator_enable(struct regulator *regulator);
  163. int regulator_disable(struct regulator *regulator);
  164. int regulator_force_disable(struct regulator *regulator);
  165. int regulator_is_enabled(struct regulator *regulator);
  166. int regulator_disable_deferred(struct regulator *regulator, int ms);
  167. int __must_check regulator_bulk_get(struct device *dev, int num_consumers,
  168. struct regulator_bulk_data *consumers);
  169. int __must_check devm_regulator_bulk_get(struct device *dev, int num_consumers,
  170. struct regulator_bulk_data *consumers);
  171. int __must_check regulator_bulk_enable(int num_consumers,
  172. struct regulator_bulk_data *consumers);
  173. int regulator_bulk_disable(int num_consumers,
  174. struct regulator_bulk_data *consumers);
  175. int regulator_bulk_force_disable(int num_consumers,
  176. struct regulator_bulk_data *consumers);
  177. void regulator_bulk_free(int num_consumers,
  178. struct regulator_bulk_data *consumers);
  179. int regulator_can_change_voltage(struct regulator *regulator);
  180. int regulator_count_voltages(struct regulator *regulator);
  181. int regulator_list_voltage(struct regulator *regulator, unsigned selector);
  182. int regulator_is_supported_voltage(struct regulator *regulator,
  183. int min_uV, int max_uV);
  184. unsigned int regulator_get_linear_step(struct regulator *regulator);
  185. int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV);
  186. int regulator_set_voltage_time(struct regulator *regulator,
  187. int old_uV, int new_uV);
  188. int regulator_get_voltage(struct regulator *regulator);
  189. int regulator_sync_voltage(struct regulator *regulator);
  190. int regulator_set_current_limit(struct regulator *regulator,
  191. int min_uA, int max_uA);
  192. int regulator_get_current_limit(struct regulator *regulator);
  193. int regulator_set_mode(struct regulator *regulator, unsigned int mode);
  194. unsigned int regulator_get_mode(struct regulator *regulator);
  195. int regulator_set_optimum_mode(struct regulator *regulator, int load_uA);
  196. int regulator_allow_bypass(struct regulator *regulator, bool allow);
  197. /* regulator notifier block */
  198. int regulator_register_notifier(struct regulator *regulator,
  199. struct notifier_block *nb);
  200. int regulator_unregister_notifier(struct regulator *regulator,
  201. struct notifier_block *nb);
  202. /* driver data - core doesn't touch */
  203. void *regulator_get_drvdata(struct regulator *regulator);
  204. void regulator_set_drvdata(struct regulator *regulator, void *data);
  205. #else
  206. /*
  207. * Make sure client drivers will still build on systems with no software
  208. * controllable voltage or current regulators.
  209. */
  210. static inline struct regulator *__must_check regulator_get(struct device *dev,
  211. const char *id)
  212. {
  213. /* Nothing except the stubbed out regulator API should be
  214. * looking at the value except to check if it is an error
  215. * value. Drivers are free to handle NULL specifically by
  216. * skipping all regulator API calls, but they don't have to.
  217. * Drivers which don't, should make sure they properly handle
  218. * corner cases of the API, such as regulator_get_voltage()
  219. * returning 0.
  220. */
  221. return NULL;
  222. }
  223. static inline struct regulator *__must_check
  224. devm_regulator_get(struct device *dev, const char *id)
  225. {
  226. return NULL;
  227. }
  228. static inline struct regulator *__must_check
  229. regulator_get_exclusive(struct device *dev, const char *id)
  230. {
  231. return NULL;
  232. }
  233. static inline struct regulator *__must_check
  234. regulator_get_optional(struct device *dev, const char *id)
  235. {
  236. return ERR_PTR(-ENODEV);
  237. }
  238. static inline struct regulator *__must_check
  239. devm_regulator_get_optional(struct device *dev, const char *id)
  240. {
  241. return ERR_PTR(-ENODEV);
  242. }
  243. static inline void regulator_put(struct regulator *regulator)
  244. {
  245. }
  246. static inline void devm_regulator_put(struct regulator *regulator)
  247. {
  248. }
  249. static inline int regulator_register_supply_alias(struct device *dev,
  250. const char *id,
  251. struct device *alias_dev,
  252. const char *alias_id)
  253. {
  254. return 0;
  255. }
  256. static inline void regulator_unregister_supply_alias(struct device *dev,
  257. const char *id)
  258. {
  259. }
  260. static inline int regulator_bulk_register_supply_alias(struct device *dev,
  261. const char *const *id,
  262. struct device *alias_dev,
  263. const char * const *alias_id,
  264. int num_id)
  265. {
  266. return 0;
  267. }
  268. static inline void regulator_bulk_unregister_supply_alias(struct device *dev,
  269. const char * const *id,
  270. int num_id)
  271. {
  272. }
  273. static inline int devm_regulator_register_supply_alias(struct device *dev,
  274. const char *id,
  275. struct device *alias_dev,
  276. const char *alias_id)
  277. {
  278. return 0;
  279. }
  280. static inline void devm_regulator_unregister_supply_alias(struct device *dev,
  281. const char *id)
  282. {
  283. }
  284. static inline int devm_regulator_bulk_register_supply_alias(struct device *dev,
  285. const char *const *id,
  286. struct device *alias_dev,
  287. const char *const *alias_id,
  288. int num_id)
  289. {
  290. return 0;
  291. }
  292. static inline void devm_regulator_bulk_unregister_supply_alias(
  293. struct device *dev, const char *const *id, int num_id)
  294. {
  295. }
  296. static inline int regulator_enable(struct regulator *regulator)
  297. {
  298. return 0;
  299. }
  300. static inline int regulator_disable(struct regulator *regulator)
  301. {
  302. return 0;
  303. }
  304. static inline int regulator_force_disable(struct regulator *regulator)
  305. {
  306. return 0;
  307. }
  308. static inline int regulator_disable_deferred(struct regulator *regulator,
  309. int ms)
  310. {
  311. return 0;
  312. }
  313. static inline int regulator_is_enabled(struct regulator *regulator)
  314. {
  315. return 1;
  316. }
  317. static inline int regulator_bulk_get(struct device *dev,
  318. int num_consumers,
  319. struct regulator_bulk_data *consumers)
  320. {
  321. return 0;
  322. }
  323. static inline int devm_regulator_bulk_get(struct device *dev, int num_consumers,
  324. struct regulator_bulk_data *consumers)
  325. {
  326. return 0;
  327. }
  328. static inline int regulator_bulk_enable(int num_consumers,
  329. struct regulator_bulk_data *consumers)
  330. {
  331. return 0;
  332. }
  333. static inline int regulator_bulk_disable(int num_consumers,
  334. struct regulator_bulk_data *consumers)
  335. {
  336. return 0;
  337. }
  338. static inline int regulator_bulk_force_disable(int num_consumers,
  339. struct regulator_bulk_data *consumers)
  340. {
  341. return 0;
  342. }
  343. static inline void regulator_bulk_free(int num_consumers,
  344. struct regulator_bulk_data *consumers)
  345. {
  346. }
  347. static inline int regulator_can_change_voltage(struct regulator *regulator)
  348. {
  349. return 0;
  350. }
  351. static inline int regulator_set_voltage(struct regulator *regulator,
  352. int min_uV, int max_uV)
  353. {
  354. return 0;
  355. }
  356. static inline int regulator_set_voltage_time(struct regulator *regulator,
  357. int old_uV, int new_uV)
  358. {
  359. return 0;
  360. }
  361. static inline int regulator_get_voltage(struct regulator *regulator)
  362. {
  363. return -EINVAL;
  364. }
  365. static inline int regulator_is_supported_voltage(struct regulator *regulator,
  366. int min_uV, int max_uV)
  367. {
  368. return 0;
  369. }
  370. static inline int regulator_set_current_limit(struct regulator *regulator,
  371. int min_uA, int max_uA)
  372. {
  373. return 0;
  374. }
  375. static inline int regulator_get_current_limit(struct regulator *regulator)
  376. {
  377. return 0;
  378. }
  379. static inline int regulator_set_mode(struct regulator *regulator,
  380. unsigned int mode)
  381. {
  382. return 0;
  383. }
  384. static inline unsigned int regulator_get_mode(struct regulator *regulator)
  385. {
  386. return REGULATOR_MODE_NORMAL;
  387. }
  388. static inline int regulator_set_optimum_mode(struct regulator *regulator,
  389. int load_uA)
  390. {
  391. return REGULATOR_MODE_NORMAL;
  392. }
  393. static inline int regulator_allow_bypass(struct regulator *regulator,
  394. bool allow)
  395. {
  396. return 0;
  397. }
  398. static inline int regulator_register_notifier(struct regulator *regulator,
  399. struct notifier_block *nb)
  400. {
  401. return 0;
  402. }
  403. static inline int regulator_unregister_notifier(struct regulator *regulator,
  404. struct notifier_block *nb)
  405. {
  406. return 0;
  407. }
  408. static inline void *regulator_get_drvdata(struct regulator *regulator)
  409. {
  410. return NULL;
  411. }
  412. static inline void regulator_set_drvdata(struct regulator *regulator,
  413. void *data)
  414. {
  415. }
  416. static inline int regulator_count_voltages(struct regulator *regulator)
  417. {
  418. return 0;
  419. }
  420. #endif
  421. static inline int regulator_set_voltage_tol(struct regulator *regulator,
  422. int new_uV, int tol_uV)
  423. {
  424. if (regulator_set_voltage(regulator, new_uV, new_uV + tol_uV) == 0)
  425. return 0;
  426. else
  427. return regulator_set_voltage(regulator,
  428. new_uV - tol_uV, new_uV + tol_uV);
  429. }
  430. static inline int regulator_is_supported_voltage_tol(struct regulator *regulator,
  431. int target_uV, int tol_uV)
  432. {
  433. return regulator_is_supported_voltage(regulator,
  434. target_uV - tol_uV,
  435. target_uV + tol_uV);
  436. }
  437. #endif