core.c 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786
  1. /*
  2. * core.c -- Voltage/Current Regulator framework.
  3. *
  4. * Copyright 2007, 2008 Wolfson Microelectronics PLC.
  5. * Copyright 2008 SlimLogic Ltd.
  6. *
  7. * Author: Liam Girdwood <lrg@slimlogic.co.uk>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the
  11. * Free Software Foundation; either version 2 of the License, or (at your
  12. * option) any later version.
  13. *
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/init.h>
  17. #include <linux/debugfs.h>
  18. #include <linux/device.h>
  19. #include <linux/slab.h>
  20. #include <linux/async.h>
  21. #include <linux/err.h>
  22. #include <linux/mutex.h>
  23. #include <linux/suspend.h>
  24. #include <linux/delay.h>
  25. #include <linux/gpio.h>
  26. #include <linux/of.h>
  27. #include <linux/regmap.h>
  28. #include <linux/regulator/of_regulator.h>
  29. #include <linux/regulator/consumer.h>
  30. #include <linux/regulator/driver.h>
  31. #include <linux/regulator/machine.h>
  32. #include <linux/module.h>
  33. #define CREATE_TRACE_POINTS
  34. #include <trace/events/regulator.h>
  35. #include "dummy.h"
  36. #define rdev_crit(rdev, fmt, ...) \
  37. pr_crit("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
  38. #define rdev_err(rdev, fmt, ...) \
  39. pr_err("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
  40. #define rdev_warn(rdev, fmt, ...) \
  41. pr_warn("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
  42. #define rdev_info(rdev, fmt, ...) \
  43. pr_info("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
  44. #define rdev_dbg(rdev, fmt, ...) \
  45. pr_debug("%s: " fmt, rdev_get_name(rdev), ##__VA_ARGS__)
  46. static DEFINE_MUTEX(regulator_list_mutex);
  47. static LIST_HEAD(regulator_list);
  48. static LIST_HEAD(regulator_map_list);
  49. static bool has_full_constraints;
  50. static bool board_wants_dummy_regulator;
  51. static struct dentry *debugfs_root;
  52. /*
  53. * struct regulator_map
  54. *
  55. * Used to provide symbolic supply names to devices.
  56. */
  57. struct regulator_map {
  58. struct list_head list;
  59. const char *dev_name; /* The dev_name() for the consumer */
  60. const char *supply;
  61. struct regulator_dev *regulator;
  62. };
  63. /*
  64. * struct regulator
  65. *
  66. * One for each consumer device.
  67. */
  68. struct regulator {
  69. struct device *dev;
  70. struct list_head list;
  71. unsigned int always_on:1;
  72. unsigned int bypass:1;
  73. int uA_load;
  74. int min_uV;
  75. int max_uV;
  76. char *supply_name;
  77. struct device_attribute dev_attr;
  78. struct regulator_dev *rdev;
  79. struct dentry *debugfs;
  80. };
  81. static int _regulator_is_enabled(struct regulator_dev *rdev);
  82. static int _regulator_disable(struct regulator_dev *rdev);
  83. static int _regulator_get_voltage(struct regulator_dev *rdev);
  84. static int _regulator_get_current_limit(struct regulator_dev *rdev);
  85. static unsigned int _regulator_get_mode(struct regulator_dev *rdev);
  86. static void _notifier_call_chain(struct regulator_dev *rdev,
  87. unsigned long event, void *data);
  88. static int _regulator_do_set_voltage(struct regulator_dev *rdev,
  89. int min_uV, int max_uV);
  90. static struct regulator *create_regulator(struct regulator_dev *rdev,
  91. struct device *dev,
  92. const char *supply_name);
  93. static const char *rdev_get_name(struct regulator_dev *rdev)
  94. {
  95. if (rdev->constraints && rdev->constraints->name)
  96. return rdev->constraints->name;
  97. else if (rdev->desc->name)
  98. return rdev->desc->name;
  99. else
  100. return "";
  101. }
  102. /**
  103. * of_get_regulator - get a regulator device node based on supply name
  104. * @dev: Device pointer for the consumer (of regulator) device
  105. * @supply: regulator supply name
  106. *
  107. * Extract the regulator device node corresponding to the supply name.
  108. * retruns the device node corresponding to the regulator if found, else
  109. * returns NULL.
  110. */
  111. static struct device_node *of_get_regulator(struct device *dev, const char *supply)
  112. {
  113. struct device_node *regnode = NULL;
  114. char prop_name[32]; /* 32 is max size of property name */
  115. dev_dbg(dev, "Looking up %s-supply from device tree\n", supply);
  116. snprintf(prop_name, 32, "%s-supply", supply);
  117. regnode = of_parse_phandle(dev->of_node, prop_name, 0);
  118. if (!regnode) {
  119. dev_dbg(dev, "Looking up %s property in node %s failed",
  120. prop_name, dev->of_node->full_name);
  121. return NULL;
  122. }
  123. return regnode;
  124. }
  125. static int _regulator_can_change_status(struct regulator_dev *rdev)
  126. {
  127. if (!rdev->constraints)
  128. return 0;
  129. if (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_STATUS)
  130. return 1;
  131. else
  132. return 0;
  133. }
  134. /* Platform voltage constraint check */
  135. static int regulator_check_voltage(struct regulator_dev *rdev,
  136. int *min_uV, int *max_uV)
  137. {
  138. BUG_ON(*min_uV > *max_uV);
  139. if (!rdev->constraints) {
  140. rdev_err(rdev, "no constraints\n");
  141. return -ENODEV;
  142. }
  143. if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
  144. rdev_err(rdev, "operation not allowed\n");
  145. return -EPERM;
  146. }
  147. if (*max_uV > rdev->constraints->max_uV)
  148. *max_uV = rdev->constraints->max_uV;
  149. if (*min_uV < rdev->constraints->min_uV)
  150. *min_uV = rdev->constraints->min_uV;
  151. if (*min_uV > *max_uV) {
  152. rdev_err(rdev, "unsupportable voltage range: %d-%duV\n",
  153. *min_uV, *max_uV);
  154. return -EINVAL;
  155. }
  156. return 0;
  157. }
  158. /* Make sure we select a voltage that suits the needs of all
  159. * regulator consumers
  160. */
  161. static int regulator_check_consumers(struct regulator_dev *rdev,
  162. int *min_uV, int *max_uV)
  163. {
  164. struct regulator *regulator;
  165. list_for_each_entry(regulator, &rdev->consumer_list, list) {
  166. /*
  167. * Assume consumers that didn't say anything are OK
  168. * with anything in the constraint range.
  169. */
  170. if (!regulator->min_uV && !regulator->max_uV)
  171. continue;
  172. if (*max_uV > regulator->max_uV)
  173. *max_uV = regulator->max_uV;
  174. if (*min_uV < regulator->min_uV)
  175. *min_uV = regulator->min_uV;
  176. }
  177. if (*min_uV > *max_uV)
  178. return -EINVAL;
  179. return 0;
  180. }
  181. /* current constraint check */
  182. static int regulator_check_current_limit(struct regulator_dev *rdev,
  183. int *min_uA, int *max_uA)
  184. {
  185. BUG_ON(*min_uA > *max_uA);
  186. if (!rdev->constraints) {
  187. rdev_err(rdev, "no constraints\n");
  188. return -ENODEV;
  189. }
  190. if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_CURRENT)) {
  191. rdev_err(rdev, "operation not allowed\n");
  192. return -EPERM;
  193. }
  194. if (*max_uA > rdev->constraints->max_uA)
  195. *max_uA = rdev->constraints->max_uA;
  196. if (*min_uA < rdev->constraints->min_uA)
  197. *min_uA = rdev->constraints->min_uA;
  198. if (*min_uA > *max_uA) {
  199. rdev_err(rdev, "unsupportable current range: %d-%duA\n",
  200. *min_uA, *max_uA);
  201. return -EINVAL;
  202. }
  203. return 0;
  204. }
  205. /* operating mode constraint check */
  206. static int regulator_mode_constrain(struct regulator_dev *rdev, int *mode)
  207. {
  208. switch (*mode) {
  209. case REGULATOR_MODE_FAST:
  210. case REGULATOR_MODE_NORMAL:
  211. case REGULATOR_MODE_IDLE:
  212. case REGULATOR_MODE_STANDBY:
  213. break;
  214. default:
  215. rdev_err(rdev, "invalid mode %x specified\n", *mode);
  216. return -EINVAL;
  217. }
  218. if (!rdev->constraints) {
  219. rdev_err(rdev, "no constraints\n");
  220. return -ENODEV;
  221. }
  222. if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_MODE)) {
  223. rdev_err(rdev, "operation not allowed\n");
  224. return -EPERM;
  225. }
  226. /* The modes are bitmasks, the most power hungry modes having
  227. * the lowest values. If the requested mode isn't supported
  228. * try higher modes. */
  229. while (*mode) {
  230. if (rdev->constraints->valid_modes_mask & *mode)
  231. return 0;
  232. *mode /= 2;
  233. }
  234. return -EINVAL;
  235. }
  236. /* dynamic regulator mode switching constraint check */
  237. static int regulator_check_drms(struct regulator_dev *rdev)
  238. {
  239. if (!rdev->constraints) {
  240. rdev_err(rdev, "no constraints\n");
  241. return -ENODEV;
  242. }
  243. if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS)) {
  244. rdev_err(rdev, "operation not allowed\n");
  245. return -EPERM;
  246. }
  247. return 0;
  248. }
  249. static ssize_t regulator_uV_show(struct device *dev,
  250. struct device_attribute *attr, char *buf)
  251. {
  252. struct regulator_dev *rdev = dev_get_drvdata(dev);
  253. ssize_t ret;
  254. mutex_lock(&rdev->mutex);
  255. ret = sprintf(buf, "%d\n", _regulator_get_voltage(rdev));
  256. mutex_unlock(&rdev->mutex);
  257. return ret;
  258. }
  259. static DEVICE_ATTR(microvolts, 0444, regulator_uV_show, NULL);
  260. static ssize_t regulator_uA_show(struct device *dev,
  261. struct device_attribute *attr, char *buf)
  262. {
  263. struct regulator_dev *rdev = dev_get_drvdata(dev);
  264. return sprintf(buf, "%d\n", _regulator_get_current_limit(rdev));
  265. }
  266. static DEVICE_ATTR(microamps, 0444, regulator_uA_show, NULL);
  267. static ssize_t regulator_name_show(struct device *dev,
  268. struct device_attribute *attr, char *buf)
  269. {
  270. struct regulator_dev *rdev = dev_get_drvdata(dev);
  271. return sprintf(buf, "%s\n", rdev_get_name(rdev));
  272. }
  273. static ssize_t regulator_print_opmode(char *buf, int mode)
  274. {
  275. switch (mode) {
  276. case REGULATOR_MODE_FAST:
  277. return sprintf(buf, "fast\n");
  278. case REGULATOR_MODE_NORMAL:
  279. return sprintf(buf, "normal\n");
  280. case REGULATOR_MODE_IDLE:
  281. return sprintf(buf, "idle\n");
  282. case REGULATOR_MODE_STANDBY:
  283. return sprintf(buf, "standby\n");
  284. }
  285. return sprintf(buf, "unknown\n");
  286. }
  287. static ssize_t regulator_opmode_show(struct device *dev,
  288. struct device_attribute *attr, char *buf)
  289. {
  290. struct regulator_dev *rdev = dev_get_drvdata(dev);
  291. return regulator_print_opmode(buf, _regulator_get_mode(rdev));
  292. }
  293. static DEVICE_ATTR(opmode, 0444, regulator_opmode_show, NULL);
  294. static ssize_t regulator_print_state(char *buf, int state)
  295. {
  296. if (state > 0)
  297. return sprintf(buf, "enabled\n");
  298. else if (state == 0)
  299. return sprintf(buf, "disabled\n");
  300. else
  301. return sprintf(buf, "unknown\n");
  302. }
  303. static ssize_t regulator_state_show(struct device *dev,
  304. struct device_attribute *attr, char *buf)
  305. {
  306. struct regulator_dev *rdev = dev_get_drvdata(dev);
  307. ssize_t ret;
  308. mutex_lock(&rdev->mutex);
  309. ret = regulator_print_state(buf, _regulator_is_enabled(rdev));
  310. mutex_unlock(&rdev->mutex);
  311. return ret;
  312. }
  313. static DEVICE_ATTR(state, 0444, regulator_state_show, NULL);
  314. static ssize_t regulator_status_show(struct device *dev,
  315. struct device_attribute *attr, char *buf)
  316. {
  317. struct regulator_dev *rdev = dev_get_drvdata(dev);
  318. int status;
  319. char *label;
  320. status = rdev->desc->ops->get_status(rdev);
  321. if (status < 0)
  322. return status;
  323. switch (status) {
  324. case REGULATOR_STATUS_OFF:
  325. label = "off";
  326. break;
  327. case REGULATOR_STATUS_ON:
  328. label = "on";
  329. break;
  330. case REGULATOR_STATUS_ERROR:
  331. label = "error";
  332. break;
  333. case REGULATOR_STATUS_FAST:
  334. label = "fast";
  335. break;
  336. case REGULATOR_STATUS_NORMAL:
  337. label = "normal";
  338. break;
  339. case REGULATOR_STATUS_IDLE:
  340. label = "idle";
  341. break;
  342. case REGULATOR_STATUS_STANDBY:
  343. label = "standby";
  344. break;
  345. case REGULATOR_STATUS_BYPASS:
  346. label = "bypass";
  347. break;
  348. case REGULATOR_STATUS_UNDEFINED:
  349. label = "undefined";
  350. break;
  351. default:
  352. return -ERANGE;
  353. }
  354. return sprintf(buf, "%s\n", label);
  355. }
  356. static DEVICE_ATTR(status, 0444, regulator_status_show, NULL);
  357. static ssize_t regulator_min_uA_show(struct device *dev,
  358. struct device_attribute *attr, char *buf)
  359. {
  360. struct regulator_dev *rdev = dev_get_drvdata(dev);
  361. if (!rdev->constraints)
  362. return sprintf(buf, "constraint not defined\n");
  363. return sprintf(buf, "%d\n", rdev->constraints->min_uA);
  364. }
  365. static DEVICE_ATTR(min_microamps, 0444, regulator_min_uA_show, NULL);
  366. static ssize_t regulator_max_uA_show(struct device *dev,
  367. struct device_attribute *attr, char *buf)
  368. {
  369. struct regulator_dev *rdev = dev_get_drvdata(dev);
  370. if (!rdev->constraints)
  371. return sprintf(buf, "constraint not defined\n");
  372. return sprintf(buf, "%d\n", rdev->constraints->max_uA);
  373. }
  374. static DEVICE_ATTR(max_microamps, 0444, regulator_max_uA_show, NULL);
  375. static ssize_t regulator_min_uV_show(struct device *dev,
  376. struct device_attribute *attr, char *buf)
  377. {
  378. struct regulator_dev *rdev = dev_get_drvdata(dev);
  379. if (!rdev->constraints)
  380. return sprintf(buf, "constraint not defined\n");
  381. return sprintf(buf, "%d\n", rdev->constraints->min_uV);
  382. }
  383. static DEVICE_ATTR(min_microvolts, 0444, regulator_min_uV_show, NULL);
  384. static ssize_t regulator_max_uV_show(struct device *dev,
  385. struct device_attribute *attr, char *buf)
  386. {
  387. struct regulator_dev *rdev = dev_get_drvdata(dev);
  388. if (!rdev->constraints)
  389. return sprintf(buf, "constraint not defined\n");
  390. return sprintf(buf, "%d\n", rdev->constraints->max_uV);
  391. }
  392. static DEVICE_ATTR(max_microvolts, 0444, regulator_max_uV_show, NULL);
  393. static ssize_t regulator_total_uA_show(struct device *dev,
  394. struct device_attribute *attr, char *buf)
  395. {
  396. struct regulator_dev *rdev = dev_get_drvdata(dev);
  397. struct regulator *regulator;
  398. int uA = 0;
  399. mutex_lock(&rdev->mutex);
  400. list_for_each_entry(regulator, &rdev->consumer_list, list)
  401. uA += regulator->uA_load;
  402. mutex_unlock(&rdev->mutex);
  403. return sprintf(buf, "%d\n", uA);
  404. }
  405. static DEVICE_ATTR(requested_microamps, 0444, regulator_total_uA_show, NULL);
  406. static ssize_t regulator_num_users_show(struct device *dev,
  407. struct device_attribute *attr, char *buf)
  408. {
  409. struct regulator_dev *rdev = dev_get_drvdata(dev);
  410. return sprintf(buf, "%d\n", rdev->use_count);
  411. }
  412. static ssize_t regulator_type_show(struct device *dev,
  413. struct device_attribute *attr, char *buf)
  414. {
  415. struct regulator_dev *rdev = dev_get_drvdata(dev);
  416. switch (rdev->desc->type) {
  417. case REGULATOR_VOLTAGE:
  418. return sprintf(buf, "voltage\n");
  419. case REGULATOR_CURRENT:
  420. return sprintf(buf, "current\n");
  421. }
  422. return sprintf(buf, "unknown\n");
  423. }
  424. static ssize_t regulator_suspend_mem_uV_show(struct device *dev,
  425. struct device_attribute *attr, char *buf)
  426. {
  427. struct regulator_dev *rdev = dev_get_drvdata(dev);
  428. return sprintf(buf, "%d\n", rdev->constraints->state_mem.uV);
  429. }
  430. static DEVICE_ATTR(suspend_mem_microvolts, 0444,
  431. regulator_suspend_mem_uV_show, NULL);
  432. static ssize_t regulator_suspend_disk_uV_show(struct device *dev,
  433. struct device_attribute *attr, char *buf)
  434. {
  435. struct regulator_dev *rdev = dev_get_drvdata(dev);
  436. return sprintf(buf, "%d\n", rdev->constraints->state_disk.uV);
  437. }
  438. static DEVICE_ATTR(suspend_disk_microvolts, 0444,
  439. regulator_suspend_disk_uV_show, NULL);
  440. static ssize_t regulator_suspend_standby_uV_show(struct device *dev,
  441. struct device_attribute *attr, char *buf)
  442. {
  443. struct regulator_dev *rdev = dev_get_drvdata(dev);
  444. return sprintf(buf, "%d\n", rdev->constraints->state_standby.uV);
  445. }
  446. static DEVICE_ATTR(suspend_standby_microvolts, 0444,
  447. regulator_suspend_standby_uV_show, NULL);
  448. static ssize_t regulator_suspend_mem_mode_show(struct device *dev,
  449. struct device_attribute *attr, char *buf)
  450. {
  451. struct regulator_dev *rdev = dev_get_drvdata(dev);
  452. return regulator_print_opmode(buf,
  453. rdev->constraints->state_mem.mode);
  454. }
  455. static DEVICE_ATTR(suspend_mem_mode, 0444,
  456. regulator_suspend_mem_mode_show, NULL);
  457. static ssize_t regulator_suspend_disk_mode_show(struct device *dev,
  458. struct device_attribute *attr, char *buf)
  459. {
  460. struct regulator_dev *rdev = dev_get_drvdata(dev);
  461. return regulator_print_opmode(buf,
  462. rdev->constraints->state_disk.mode);
  463. }
  464. static DEVICE_ATTR(suspend_disk_mode, 0444,
  465. regulator_suspend_disk_mode_show, NULL);
  466. static ssize_t regulator_suspend_standby_mode_show(struct device *dev,
  467. struct device_attribute *attr, char *buf)
  468. {
  469. struct regulator_dev *rdev = dev_get_drvdata(dev);
  470. return regulator_print_opmode(buf,
  471. rdev->constraints->state_standby.mode);
  472. }
  473. static DEVICE_ATTR(suspend_standby_mode, 0444,
  474. regulator_suspend_standby_mode_show, NULL);
  475. static ssize_t regulator_suspend_mem_state_show(struct device *dev,
  476. struct device_attribute *attr, char *buf)
  477. {
  478. struct regulator_dev *rdev = dev_get_drvdata(dev);
  479. return regulator_print_state(buf,
  480. rdev->constraints->state_mem.enabled);
  481. }
  482. static DEVICE_ATTR(suspend_mem_state, 0444,
  483. regulator_suspend_mem_state_show, NULL);
  484. static ssize_t regulator_suspend_disk_state_show(struct device *dev,
  485. struct device_attribute *attr, char *buf)
  486. {
  487. struct regulator_dev *rdev = dev_get_drvdata(dev);
  488. return regulator_print_state(buf,
  489. rdev->constraints->state_disk.enabled);
  490. }
  491. static DEVICE_ATTR(suspend_disk_state, 0444,
  492. regulator_suspend_disk_state_show, NULL);
  493. static ssize_t regulator_suspend_standby_state_show(struct device *dev,
  494. struct device_attribute *attr, char *buf)
  495. {
  496. struct regulator_dev *rdev = dev_get_drvdata(dev);
  497. return regulator_print_state(buf,
  498. rdev->constraints->state_standby.enabled);
  499. }
  500. static DEVICE_ATTR(suspend_standby_state, 0444,
  501. regulator_suspend_standby_state_show, NULL);
  502. static ssize_t regulator_bypass_show(struct device *dev,
  503. struct device_attribute *attr, char *buf)
  504. {
  505. struct regulator_dev *rdev = dev_get_drvdata(dev);
  506. const char *report;
  507. bool bypass;
  508. int ret;
  509. ret = rdev->desc->ops->get_bypass(rdev, &bypass);
  510. if (ret != 0)
  511. report = "unknown";
  512. else if (bypass)
  513. report = "enabled";
  514. else
  515. report = "disabled";
  516. return sprintf(buf, "%s\n", report);
  517. }
  518. static DEVICE_ATTR(bypass, 0444,
  519. regulator_bypass_show, NULL);
  520. /*
  521. * These are the only attributes are present for all regulators.
  522. * Other attributes are a function of regulator functionality.
  523. */
  524. static struct device_attribute regulator_dev_attrs[] = {
  525. __ATTR(name, 0444, regulator_name_show, NULL),
  526. __ATTR(num_users, 0444, regulator_num_users_show, NULL),
  527. __ATTR(type, 0444, regulator_type_show, NULL),
  528. __ATTR_NULL,
  529. };
  530. static void regulator_dev_release(struct device *dev)
  531. {
  532. struct regulator_dev *rdev = dev_get_drvdata(dev);
  533. kfree(rdev);
  534. }
  535. static struct class regulator_class = {
  536. .name = "regulator",
  537. .dev_release = regulator_dev_release,
  538. .dev_attrs = regulator_dev_attrs,
  539. };
  540. /* Calculate the new optimum regulator operating mode based on the new total
  541. * consumer load. All locks held by caller */
  542. static void drms_uA_update(struct regulator_dev *rdev)
  543. {
  544. struct regulator *sibling;
  545. int current_uA = 0, output_uV, input_uV, err;
  546. unsigned int mode;
  547. err = regulator_check_drms(rdev);
  548. if (err < 0 || !rdev->desc->ops->get_optimum_mode ||
  549. (!rdev->desc->ops->get_voltage &&
  550. !rdev->desc->ops->get_voltage_sel) ||
  551. !rdev->desc->ops->set_mode)
  552. return;
  553. /* get output voltage */
  554. output_uV = _regulator_get_voltage(rdev);
  555. if (output_uV <= 0)
  556. return;
  557. /* get input voltage */
  558. input_uV = 0;
  559. if (rdev->supply)
  560. input_uV = regulator_get_voltage(rdev->supply);
  561. if (input_uV <= 0)
  562. input_uV = rdev->constraints->input_uV;
  563. if (input_uV <= 0)
  564. return;
  565. /* calc total requested load */
  566. list_for_each_entry(sibling, &rdev->consumer_list, list)
  567. current_uA += sibling->uA_load;
  568. /* now get the optimum mode for our new total regulator load */
  569. mode = rdev->desc->ops->get_optimum_mode(rdev, input_uV,
  570. output_uV, current_uA);
  571. /* check the new mode is allowed */
  572. err = regulator_mode_constrain(rdev, &mode);
  573. if (err == 0)
  574. rdev->desc->ops->set_mode(rdev, mode);
  575. }
  576. static int suspend_set_state(struct regulator_dev *rdev,
  577. struct regulator_state *rstate)
  578. {
  579. int ret = 0;
  580. /* If we have no suspend mode configration don't set anything;
  581. * only warn if the driver implements set_suspend_voltage or
  582. * set_suspend_mode callback.
  583. */
  584. if (!rstate->enabled && !rstate->disabled) {
  585. if (rdev->desc->ops->set_suspend_voltage ||
  586. rdev->desc->ops->set_suspend_mode)
  587. rdev_warn(rdev, "No configuration\n");
  588. return 0;
  589. }
  590. if (rstate->enabled && rstate->disabled) {
  591. rdev_err(rdev, "invalid configuration\n");
  592. return -EINVAL;
  593. }
  594. if (rstate->enabled && rdev->desc->ops->set_suspend_enable)
  595. ret = rdev->desc->ops->set_suspend_enable(rdev);
  596. else if (rstate->disabled && rdev->desc->ops->set_suspend_disable)
  597. ret = rdev->desc->ops->set_suspend_disable(rdev);
  598. else /* OK if set_suspend_enable or set_suspend_disable is NULL */
  599. ret = 0;
  600. if (ret < 0) {
  601. rdev_err(rdev, "failed to enabled/disable\n");
  602. return ret;
  603. }
  604. if (rdev->desc->ops->set_suspend_voltage && rstate->uV > 0) {
  605. ret = rdev->desc->ops->set_suspend_voltage(rdev, rstate->uV);
  606. if (ret < 0) {
  607. rdev_err(rdev, "failed to set voltage\n");
  608. return ret;
  609. }
  610. }
  611. if (rdev->desc->ops->set_suspend_mode && rstate->mode > 0) {
  612. ret = rdev->desc->ops->set_suspend_mode(rdev, rstate->mode);
  613. if (ret < 0) {
  614. rdev_err(rdev, "failed to set mode\n");
  615. return ret;
  616. }
  617. }
  618. return ret;
  619. }
  620. /* locks held by caller */
  621. static int suspend_prepare(struct regulator_dev *rdev, suspend_state_t state)
  622. {
  623. if (!rdev->constraints)
  624. return -EINVAL;
  625. switch (state) {
  626. case PM_SUSPEND_STANDBY:
  627. return suspend_set_state(rdev,
  628. &rdev->constraints->state_standby);
  629. case PM_SUSPEND_MEM:
  630. return suspend_set_state(rdev,
  631. &rdev->constraints->state_mem);
  632. case PM_SUSPEND_MAX:
  633. return suspend_set_state(rdev,
  634. &rdev->constraints->state_disk);
  635. default:
  636. return -EINVAL;
  637. }
  638. }
  639. static void print_constraints(struct regulator_dev *rdev)
  640. {
  641. struct regulation_constraints *constraints = rdev->constraints;
  642. char buf[80] = "";
  643. int count = 0;
  644. int ret;
  645. if (constraints->min_uV && constraints->max_uV) {
  646. if (constraints->min_uV == constraints->max_uV)
  647. count += sprintf(buf + count, "%d mV ",
  648. constraints->min_uV / 1000);
  649. else
  650. count += sprintf(buf + count, "%d <--> %d mV ",
  651. constraints->min_uV / 1000,
  652. constraints->max_uV / 1000);
  653. }
  654. if (!constraints->min_uV ||
  655. constraints->min_uV != constraints->max_uV) {
  656. ret = _regulator_get_voltage(rdev);
  657. if (ret > 0)
  658. count += sprintf(buf + count, "at %d mV ", ret / 1000);
  659. }
  660. if (constraints->uV_offset)
  661. count += sprintf(buf, "%dmV offset ",
  662. constraints->uV_offset / 1000);
  663. if (constraints->min_uA && constraints->max_uA) {
  664. if (constraints->min_uA == constraints->max_uA)
  665. count += sprintf(buf + count, "%d mA ",
  666. constraints->min_uA / 1000);
  667. else
  668. count += sprintf(buf + count, "%d <--> %d mA ",
  669. constraints->min_uA / 1000,
  670. constraints->max_uA / 1000);
  671. }
  672. if (!constraints->min_uA ||
  673. constraints->min_uA != constraints->max_uA) {
  674. ret = _regulator_get_current_limit(rdev);
  675. if (ret > 0)
  676. count += sprintf(buf + count, "at %d mA ", ret / 1000);
  677. }
  678. if (constraints->valid_modes_mask & REGULATOR_MODE_FAST)
  679. count += sprintf(buf + count, "fast ");
  680. if (constraints->valid_modes_mask & REGULATOR_MODE_NORMAL)
  681. count += sprintf(buf + count, "normal ");
  682. if (constraints->valid_modes_mask & REGULATOR_MODE_IDLE)
  683. count += sprintf(buf + count, "idle ");
  684. if (constraints->valid_modes_mask & REGULATOR_MODE_STANDBY)
  685. count += sprintf(buf + count, "standby");
  686. if (!count)
  687. sprintf(buf, "no parameters");
  688. rdev_info(rdev, "%s\n", buf);
  689. if ((constraints->min_uV != constraints->max_uV) &&
  690. !(constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE))
  691. rdev_warn(rdev,
  692. "Voltage range but no REGULATOR_CHANGE_VOLTAGE\n");
  693. }
  694. static int machine_constraints_voltage(struct regulator_dev *rdev,
  695. struct regulation_constraints *constraints)
  696. {
  697. struct regulator_ops *ops = rdev->desc->ops;
  698. int ret;
  699. /* do we need to apply the constraint voltage */
  700. if (rdev->constraints->apply_uV &&
  701. rdev->constraints->min_uV == rdev->constraints->max_uV) {
  702. ret = _regulator_do_set_voltage(rdev,
  703. rdev->constraints->min_uV,
  704. rdev->constraints->max_uV);
  705. if (ret < 0) {
  706. rdev_err(rdev, "failed to apply %duV constraint\n",
  707. rdev->constraints->min_uV);
  708. return ret;
  709. }
  710. }
  711. /* constrain machine-level voltage specs to fit
  712. * the actual range supported by this regulator.
  713. */
  714. if (ops->list_voltage && rdev->desc->n_voltages) {
  715. int count = rdev->desc->n_voltages;
  716. int i;
  717. int min_uV = INT_MAX;
  718. int max_uV = INT_MIN;
  719. int cmin = constraints->min_uV;
  720. int cmax = constraints->max_uV;
  721. /* it's safe to autoconfigure fixed-voltage supplies
  722. and the constraints are used by list_voltage. */
  723. if (count == 1 && !cmin) {
  724. cmin = 1;
  725. cmax = INT_MAX;
  726. constraints->min_uV = cmin;
  727. constraints->max_uV = cmax;
  728. }
  729. /* voltage constraints are optional */
  730. if ((cmin == 0) && (cmax == 0))
  731. return 0;
  732. /* else require explicit machine-level constraints */
  733. if (cmin <= 0 || cmax <= 0 || cmax < cmin) {
  734. rdev_err(rdev, "invalid voltage constraints\n");
  735. return -EINVAL;
  736. }
  737. /* initial: [cmin..cmax] valid, [min_uV..max_uV] not */
  738. for (i = 0; i < count; i++) {
  739. int value;
  740. value = ops->list_voltage(rdev, i);
  741. if (value <= 0)
  742. continue;
  743. /* maybe adjust [min_uV..max_uV] */
  744. if (value >= cmin && value < min_uV)
  745. min_uV = value;
  746. if (value <= cmax && value > max_uV)
  747. max_uV = value;
  748. }
  749. /* final: [min_uV..max_uV] valid iff constraints valid */
  750. if (max_uV < min_uV) {
  751. rdev_err(rdev, "unsupportable voltage constraints\n");
  752. return -EINVAL;
  753. }
  754. /* use regulator's subset of machine constraints */
  755. if (constraints->min_uV < min_uV) {
  756. rdev_dbg(rdev, "override min_uV, %d -> %d\n",
  757. constraints->min_uV, min_uV);
  758. constraints->min_uV = min_uV;
  759. }
  760. if (constraints->max_uV > max_uV) {
  761. rdev_dbg(rdev, "override max_uV, %d -> %d\n",
  762. constraints->max_uV, max_uV);
  763. constraints->max_uV = max_uV;
  764. }
  765. }
  766. return 0;
  767. }
  768. /**
  769. * set_machine_constraints - sets regulator constraints
  770. * @rdev: regulator source
  771. * @constraints: constraints to apply
  772. *
  773. * Allows platform initialisation code to define and constrain
  774. * regulator circuits e.g. valid voltage/current ranges, etc. NOTE:
  775. * Constraints *must* be set by platform code in order for some
  776. * regulator operations to proceed i.e. set_voltage, set_current_limit,
  777. * set_mode.
  778. */
  779. static int set_machine_constraints(struct regulator_dev *rdev,
  780. const struct regulation_constraints *constraints)
  781. {
  782. int ret = 0;
  783. struct regulator_ops *ops = rdev->desc->ops;
  784. if (constraints)
  785. rdev->constraints = kmemdup(constraints, sizeof(*constraints),
  786. GFP_KERNEL);
  787. else
  788. rdev->constraints = kzalloc(sizeof(*constraints),
  789. GFP_KERNEL);
  790. if (!rdev->constraints)
  791. return -ENOMEM;
  792. ret = machine_constraints_voltage(rdev, rdev->constraints);
  793. if (ret != 0)
  794. goto out;
  795. /* do we need to setup our suspend state */
  796. if (rdev->constraints->initial_state) {
  797. ret = suspend_prepare(rdev, rdev->constraints->initial_state);
  798. if (ret < 0) {
  799. rdev_err(rdev, "failed to set suspend state\n");
  800. goto out;
  801. }
  802. }
  803. if (rdev->constraints->initial_mode) {
  804. if (!ops->set_mode) {
  805. rdev_err(rdev, "no set_mode operation\n");
  806. ret = -EINVAL;
  807. goto out;
  808. }
  809. ret = ops->set_mode(rdev, rdev->constraints->initial_mode);
  810. if (ret < 0) {
  811. rdev_err(rdev, "failed to set initial mode: %d\n", ret);
  812. goto out;
  813. }
  814. }
  815. /* If the constraints say the regulator should be on at this point
  816. * and we have control then make sure it is enabled.
  817. */
  818. if ((rdev->constraints->always_on || rdev->constraints->boot_on) &&
  819. ops->enable) {
  820. ret = ops->enable(rdev);
  821. if (ret < 0) {
  822. rdev_err(rdev, "failed to enable\n");
  823. goto out;
  824. }
  825. }
  826. if (rdev->constraints->ramp_delay && ops->set_ramp_delay) {
  827. ret = ops->set_ramp_delay(rdev, rdev->constraints->ramp_delay);
  828. if (ret < 0) {
  829. rdev_err(rdev, "failed to set ramp_delay\n");
  830. goto out;
  831. }
  832. }
  833. print_constraints(rdev);
  834. return 0;
  835. out:
  836. kfree(rdev->constraints);
  837. rdev->constraints = NULL;
  838. return ret;
  839. }
  840. /**
  841. * set_supply - set regulator supply regulator
  842. * @rdev: regulator name
  843. * @supply_rdev: supply regulator name
  844. *
  845. * Called by platform initialisation code to set the supply regulator for this
  846. * regulator. This ensures that a regulators supply will also be enabled by the
  847. * core if it's child is enabled.
  848. */
  849. static int set_supply(struct regulator_dev *rdev,
  850. struct regulator_dev *supply_rdev)
  851. {
  852. int err;
  853. rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev));
  854. rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY");
  855. if (rdev->supply == NULL) {
  856. err = -ENOMEM;
  857. return err;
  858. }
  859. supply_rdev->open_count++;
  860. return 0;
  861. }
  862. /**
  863. * set_consumer_device_supply - Bind a regulator to a symbolic supply
  864. * @rdev: regulator source
  865. * @consumer_dev_name: dev_name() string for device supply applies to
  866. * @supply: symbolic name for supply
  867. *
  868. * Allows platform initialisation code to map physical regulator
  869. * sources to symbolic names for supplies for use by devices. Devices
  870. * should use these symbolic names to request regulators, avoiding the
  871. * need to provide board-specific regulator names as platform data.
  872. */
  873. static int set_consumer_device_supply(struct regulator_dev *rdev,
  874. const char *consumer_dev_name,
  875. const char *supply)
  876. {
  877. struct regulator_map *node;
  878. int has_dev;
  879. if (supply == NULL)
  880. return -EINVAL;
  881. if (consumer_dev_name != NULL)
  882. has_dev = 1;
  883. else
  884. has_dev = 0;
  885. list_for_each_entry(node, &regulator_map_list, list) {
  886. if (node->dev_name && consumer_dev_name) {
  887. if (strcmp(node->dev_name, consumer_dev_name) != 0)
  888. continue;
  889. } else if (node->dev_name || consumer_dev_name) {
  890. continue;
  891. }
  892. if (strcmp(node->supply, supply) != 0)
  893. continue;
  894. pr_debug("%s: %s/%s is '%s' supply; fail %s/%s\n",
  895. consumer_dev_name,
  896. dev_name(&node->regulator->dev),
  897. node->regulator->desc->name,
  898. supply,
  899. dev_name(&rdev->dev), rdev_get_name(rdev));
  900. return -EBUSY;
  901. }
  902. node = kzalloc(sizeof(struct regulator_map), GFP_KERNEL);
  903. if (node == NULL)
  904. return -ENOMEM;
  905. node->regulator = rdev;
  906. node->supply = supply;
  907. if (has_dev) {
  908. node->dev_name = kstrdup(consumer_dev_name, GFP_KERNEL);
  909. if (node->dev_name == NULL) {
  910. kfree(node);
  911. return -ENOMEM;
  912. }
  913. }
  914. list_add(&node->list, &regulator_map_list);
  915. return 0;
  916. }
  917. static void unset_regulator_supplies(struct regulator_dev *rdev)
  918. {
  919. struct regulator_map *node, *n;
  920. list_for_each_entry_safe(node, n, &regulator_map_list, list) {
  921. if (rdev == node->regulator) {
  922. list_del(&node->list);
  923. kfree(node->dev_name);
  924. kfree(node);
  925. }
  926. }
  927. }
  928. #define REG_STR_SIZE 64
  929. static struct regulator *create_regulator(struct regulator_dev *rdev,
  930. struct device *dev,
  931. const char *supply_name)
  932. {
  933. struct regulator *regulator;
  934. char buf[REG_STR_SIZE];
  935. int err, size;
  936. regulator = kzalloc(sizeof(*regulator), GFP_KERNEL);
  937. if (regulator == NULL)
  938. return NULL;
  939. mutex_lock(&rdev->mutex);
  940. regulator->rdev = rdev;
  941. list_add(&regulator->list, &rdev->consumer_list);
  942. if (dev) {
  943. regulator->dev = dev;
  944. /* Add a link to the device sysfs entry */
  945. size = scnprintf(buf, REG_STR_SIZE, "%s-%s",
  946. dev->kobj.name, supply_name);
  947. if (size >= REG_STR_SIZE)
  948. goto overflow_err;
  949. regulator->supply_name = kstrdup(buf, GFP_KERNEL);
  950. if (regulator->supply_name == NULL)
  951. goto overflow_err;
  952. err = sysfs_create_link(&rdev->dev.kobj, &dev->kobj,
  953. buf);
  954. if (err) {
  955. rdev_warn(rdev, "could not add device link %s err %d\n",
  956. dev->kobj.name, err);
  957. /* non-fatal */
  958. }
  959. } else {
  960. regulator->supply_name = kstrdup(supply_name, GFP_KERNEL);
  961. if (regulator->supply_name == NULL)
  962. goto overflow_err;
  963. }
  964. regulator->debugfs = debugfs_create_dir(regulator->supply_name,
  965. rdev->debugfs);
  966. if (!regulator->debugfs) {
  967. rdev_warn(rdev, "Failed to create debugfs directory\n");
  968. } else {
  969. debugfs_create_u32("uA_load", 0444, regulator->debugfs,
  970. &regulator->uA_load);
  971. debugfs_create_u32("min_uV", 0444, regulator->debugfs,
  972. &regulator->min_uV);
  973. debugfs_create_u32("max_uV", 0444, regulator->debugfs,
  974. &regulator->max_uV);
  975. }
  976. /*
  977. * Check now if the regulator is an always on regulator - if
  978. * it is then we don't need to do nearly so much work for
  979. * enable/disable calls.
  980. */
  981. if (!_regulator_can_change_status(rdev) &&
  982. _regulator_is_enabled(rdev))
  983. regulator->always_on = true;
  984. mutex_unlock(&rdev->mutex);
  985. return regulator;
  986. overflow_err:
  987. list_del(&regulator->list);
  988. kfree(regulator);
  989. mutex_unlock(&rdev->mutex);
  990. return NULL;
  991. }
  992. static int _regulator_get_enable_time(struct regulator_dev *rdev)
  993. {
  994. if (!rdev->desc->ops->enable_time)
  995. return rdev->desc->enable_time;
  996. return rdev->desc->ops->enable_time(rdev);
  997. }
  998. static struct regulator_dev *regulator_dev_lookup(struct device *dev,
  999. const char *supply,
  1000. int *ret)
  1001. {
  1002. struct regulator_dev *r;
  1003. struct device_node *node;
  1004. struct regulator_map *map;
  1005. const char *devname = NULL;
  1006. /* first do a dt based lookup */
  1007. if (dev && dev->of_node) {
  1008. node = of_get_regulator(dev, supply);
  1009. if (node) {
  1010. list_for_each_entry(r, &regulator_list, list)
  1011. if (r->dev.parent &&
  1012. node == r->dev.of_node)
  1013. return r;
  1014. } else {
  1015. /*
  1016. * If we couldn't even get the node then it's
  1017. * not just that the device didn't register
  1018. * yet, there's no node and we'll never
  1019. * succeed.
  1020. */
  1021. *ret = -ENODEV;
  1022. }
  1023. }
  1024. /* if not found, try doing it non-dt way */
  1025. if (dev)
  1026. devname = dev_name(dev);
  1027. list_for_each_entry(r, &regulator_list, list)
  1028. if (strcmp(rdev_get_name(r), supply) == 0)
  1029. return r;
  1030. list_for_each_entry(map, &regulator_map_list, list) {
  1031. /* If the mapping has a device set up it must match */
  1032. if (map->dev_name &&
  1033. (!devname || strcmp(map->dev_name, devname)))
  1034. continue;
  1035. if (strcmp(map->supply, supply) == 0)
  1036. return map->regulator;
  1037. }
  1038. return NULL;
  1039. }
  1040. /* Internal regulator request function */
  1041. static struct regulator *_regulator_get(struct device *dev, const char *id,
  1042. int exclusive)
  1043. {
  1044. struct regulator_dev *rdev;
  1045. struct regulator *regulator = ERR_PTR(-EPROBE_DEFER);
  1046. const char *devname = NULL;
  1047. int ret;
  1048. if (id == NULL) {
  1049. pr_err("get() with no identifier\n");
  1050. return regulator;
  1051. }
  1052. if (dev)
  1053. devname = dev_name(dev);
  1054. mutex_lock(&regulator_list_mutex);
  1055. rdev = regulator_dev_lookup(dev, id, &ret);
  1056. if (rdev)
  1057. goto found;
  1058. if (board_wants_dummy_regulator) {
  1059. rdev = dummy_regulator_rdev;
  1060. goto found;
  1061. }
  1062. #ifdef CONFIG_REGULATOR_DUMMY
  1063. if (!devname)
  1064. devname = "deviceless";
  1065. /* If the board didn't flag that it was fully constrained then
  1066. * substitute in a dummy regulator so consumers can continue.
  1067. */
  1068. if (!has_full_constraints) {
  1069. pr_warn("%s supply %s not found, using dummy regulator\n",
  1070. devname, id);
  1071. rdev = dummy_regulator_rdev;
  1072. goto found;
  1073. }
  1074. #endif
  1075. mutex_unlock(&regulator_list_mutex);
  1076. return regulator;
  1077. found:
  1078. if (rdev->exclusive) {
  1079. regulator = ERR_PTR(-EPERM);
  1080. goto out;
  1081. }
  1082. if (exclusive && rdev->open_count) {
  1083. regulator = ERR_PTR(-EBUSY);
  1084. goto out;
  1085. }
  1086. if (!try_module_get(rdev->owner))
  1087. goto out;
  1088. regulator = create_regulator(rdev, dev, id);
  1089. if (regulator == NULL) {
  1090. regulator = ERR_PTR(-ENOMEM);
  1091. module_put(rdev->owner);
  1092. goto out;
  1093. }
  1094. rdev->open_count++;
  1095. if (exclusive) {
  1096. rdev->exclusive = 1;
  1097. ret = _regulator_is_enabled(rdev);
  1098. if (ret > 0)
  1099. rdev->use_count = 1;
  1100. else
  1101. rdev->use_count = 0;
  1102. }
  1103. out:
  1104. mutex_unlock(&regulator_list_mutex);
  1105. return regulator;
  1106. }
  1107. /**
  1108. * regulator_get - lookup and obtain a reference to a regulator.
  1109. * @dev: device for regulator "consumer"
  1110. * @id: Supply name or regulator ID.
  1111. *
  1112. * Returns a struct regulator corresponding to the regulator producer,
  1113. * or IS_ERR() condition containing errno.
  1114. *
  1115. * Use of supply names configured via regulator_set_device_supply() is
  1116. * strongly encouraged. It is recommended that the supply name used
  1117. * should match the name used for the supply and/or the relevant
  1118. * device pins in the datasheet.
  1119. */
  1120. struct regulator *regulator_get(struct device *dev, const char *id)
  1121. {
  1122. return _regulator_get(dev, id, 0);
  1123. }
  1124. EXPORT_SYMBOL_GPL(regulator_get);
  1125. static void devm_regulator_release(struct device *dev, void *res)
  1126. {
  1127. regulator_put(*(struct regulator **)res);
  1128. }
  1129. /**
  1130. * devm_regulator_get - Resource managed regulator_get()
  1131. * @dev: device for regulator "consumer"
  1132. * @id: Supply name or regulator ID.
  1133. *
  1134. * Managed regulator_get(). Regulators returned from this function are
  1135. * automatically regulator_put() on driver detach. See regulator_get() for more
  1136. * information.
  1137. */
  1138. struct regulator *devm_regulator_get(struct device *dev, const char *id)
  1139. {
  1140. struct regulator **ptr, *regulator;
  1141. ptr = devres_alloc(devm_regulator_release, sizeof(*ptr), GFP_KERNEL);
  1142. if (!ptr)
  1143. return ERR_PTR(-ENOMEM);
  1144. regulator = regulator_get(dev, id);
  1145. if (!IS_ERR(regulator)) {
  1146. *ptr = regulator;
  1147. devres_add(dev, ptr);
  1148. } else {
  1149. devres_free(ptr);
  1150. }
  1151. return regulator;
  1152. }
  1153. EXPORT_SYMBOL_GPL(devm_regulator_get);
  1154. /**
  1155. * regulator_get_exclusive - obtain exclusive access to a regulator.
  1156. * @dev: device for regulator "consumer"
  1157. * @id: Supply name or regulator ID.
  1158. *
  1159. * Returns a struct regulator corresponding to the regulator producer,
  1160. * or IS_ERR() condition containing errno. Other consumers will be
  1161. * unable to obtain this reference is held and the use count for the
  1162. * regulator will be initialised to reflect the current state of the
  1163. * regulator.
  1164. *
  1165. * This is intended for use by consumers which cannot tolerate shared
  1166. * use of the regulator such as those which need to force the
  1167. * regulator off for correct operation of the hardware they are
  1168. * controlling.
  1169. *
  1170. * Use of supply names configured via regulator_set_device_supply() is
  1171. * strongly encouraged. It is recommended that the supply name used
  1172. * should match the name used for the supply and/or the relevant
  1173. * device pins in the datasheet.
  1174. */
  1175. struct regulator *regulator_get_exclusive(struct device *dev, const char *id)
  1176. {
  1177. return _regulator_get(dev, id, 1);
  1178. }
  1179. EXPORT_SYMBOL_GPL(regulator_get_exclusive);
  1180. /**
  1181. * regulator_put - "free" the regulator source
  1182. * @regulator: regulator source
  1183. *
  1184. * Note: drivers must ensure that all regulator_enable calls made on this
  1185. * regulator source are balanced by regulator_disable calls prior to calling
  1186. * this function.
  1187. */
  1188. void regulator_put(struct regulator *regulator)
  1189. {
  1190. struct regulator_dev *rdev;
  1191. if (regulator == NULL || IS_ERR(regulator))
  1192. return;
  1193. mutex_lock(&regulator_list_mutex);
  1194. rdev = regulator->rdev;
  1195. debugfs_remove_recursive(regulator->debugfs);
  1196. /* remove any sysfs entries */
  1197. if (regulator->dev)
  1198. sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
  1199. kfree(regulator->supply_name);
  1200. list_del(&regulator->list);
  1201. kfree(regulator);
  1202. rdev->open_count--;
  1203. rdev->exclusive = 0;
  1204. module_put(rdev->owner);
  1205. mutex_unlock(&regulator_list_mutex);
  1206. }
  1207. EXPORT_SYMBOL_GPL(regulator_put);
  1208. static int devm_regulator_match(struct device *dev, void *res, void *data)
  1209. {
  1210. struct regulator **r = res;
  1211. if (!r || !*r) {
  1212. WARN_ON(!r || !*r);
  1213. return 0;
  1214. }
  1215. return *r == data;
  1216. }
  1217. /**
  1218. * devm_regulator_put - Resource managed regulator_put()
  1219. * @regulator: regulator to free
  1220. *
  1221. * Deallocate a regulator allocated with devm_regulator_get(). Normally
  1222. * this function will not need to be called and the resource management
  1223. * code will ensure that the resource is freed.
  1224. */
  1225. void devm_regulator_put(struct regulator *regulator)
  1226. {
  1227. int rc;
  1228. rc = devres_release(regulator->dev, devm_regulator_release,
  1229. devm_regulator_match, regulator);
  1230. if (rc != 0)
  1231. WARN_ON(rc);
  1232. }
  1233. EXPORT_SYMBOL_GPL(devm_regulator_put);
  1234. static int _regulator_do_enable(struct regulator_dev *rdev)
  1235. {
  1236. int ret, delay;
  1237. /* Query before enabling in case configuration dependent. */
  1238. ret = _regulator_get_enable_time(rdev);
  1239. if (ret >= 0) {
  1240. delay = ret;
  1241. } else {
  1242. rdev_warn(rdev, "enable_time() failed: %d\n", ret);
  1243. delay = 0;
  1244. }
  1245. trace_regulator_enable(rdev_get_name(rdev));
  1246. if (rdev->ena_gpio) {
  1247. gpio_set_value_cansleep(rdev->ena_gpio,
  1248. !rdev->ena_gpio_invert);
  1249. rdev->ena_gpio_state = 1;
  1250. } else if (rdev->desc->ops->enable) {
  1251. ret = rdev->desc->ops->enable(rdev);
  1252. if (ret < 0)
  1253. return ret;
  1254. } else {
  1255. return -EINVAL;
  1256. }
  1257. /* Allow the regulator to ramp; it would be useful to extend
  1258. * this for bulk operations so that the regulators can ramp
  1259. * together. */
  1260. trace_regulator_enable_delay(rdev_get_name(rdev));
  1261. if (delay >= 1000) {
  1262. mdelay(delay / 1000);
  1263. udelay(delay % 1000);
  1264. } else if (delay) {
  1265. udelay(delay);
  1266. }
  1267. trace_regulator_enable_complete(rdev_get_name(rdev));
  1268. return 0;
  1269. }
  1270. /* locks held by regulator_enable() */
  1271. static int _regulator_enable(struct regulator_dev *rdev)
  1272. {
  1273. int ret;
  1274. /* check voltage and requested load before enabling */
  1275. if (rdev->constraints &&
  1276. (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
  1277. drms_uA_update(rdev);
  1278. if (rdev->use_count == 0) {
  1279. /* The regulator may on if it's not switchable or left on */
  1280. ret = _regulator_is_enabled(rdev);
  1281. if (ret == -EINVAL || ret == 0) {
  1282. if (!_regulator_can_change_status(rdev))
  1283. return -EPERM;
  1284. ret = _regulator_do_enable(rdev);
  1285. if (ret < 0)
  1286. return ret;
  1287. } else if (ret < 0) {
  1288. rdev_err(rdev, "is_enabled() failed: %d\n", ret);
  1289. return ret;
  1290. }
  1291. /* Fallthrough on positive return values - already enabled */
  1292. }
  1293. rdev->use_count++;
  1294. return 0;
  1295. }
  1296. /**
  1297. * regulator_enable - enable regulator output
  1298. * @regulator: regulator source
  1299. *
  1300. * Request that the regulator be enabled with the regulator output at
  1301. * the predefined voltage or current value. Calls to regulator_enable()
  1302. * must be balanced with calls to regulator_disable().
  1303. *
  1304. * NOTE: the output value can be set by other drivers, boot loader or may be
  1305. * hardwired in the regulator.
  1306. */
  1307. int regulator_enable(struct regulator *regulator)
  1308. {
  1309. struct regulator_dev *rdev = regulator->rdev;
  1310. int ret = 0;
  1311. if (regulator->always_on)
  1312. return 0;
  1313. if (rdev->supply) {
  1314. ret = regulator_enable(rdev->supply);
  1315. if (ret != 0)
  1316. return ret;
  1317. }
  1318. mutex_lock(&rdev->mutex);
  1319. ret = _regulator_enable(rdev);
  1320. mutex_unlock(&rdev->mutex);
  1321. if (ret != 0 && rdev->supply)
  1322. regulator_disable(rdev->supply);
  1323. return ret;
  1324. }
  1325. EXPORT_SYMBOL_GPL(regulator_enable);
  1326. static int _regulator_do_disable(struct regulator_dev *rdev)
  1327. {
  1328. int ret;
  1329. trace_regulator_disable(rdev_get_name(rdev));
  1330. if (rdev->ena_gpio) {
  1331. gpio_set_value_cansleep(rdev->ena_gpio,
  1332. rdev->ena_gpio_invert);
  1333. rdev->ena_gpio_state = 0;
  1334. } else if (rdev->desc->ops->disable) {
  1335. ret = rdev->desc->ops->disable(rdev);
  1336. if (ret != 0)
  1337. return ret;
  1338. }
  1339. trace_regulator_disable_complete(rdev_get_name(rdev));
  1340. _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
  1341. NULL);
  1342. return 0;
  1343. }
  1344. /* locks held by regulator_disable() */
  1345. static int _regulator_disable(struct regulator_dev *rdev)
  1346. {
  1347. int ret = 0;
  1348. if (WARN(rdev->use_count <= 0,
  1349. "unbalanced disables for %s\n", rdev_get_name(rdev)))
  1350. return -EIO;
  1351. /* are we the last user and permitted to disable ? */
  1352. if (rdev->use_count == 1 &&
  1353. (rdev->constraints && !rdev->constraints->always_on)) {
  1354. /* we are last user */
  1355. if (_regulator_can_change_status(rdev)) {
  1356. ret = _regulator_do_disable(rdev);
  1357. if (ret < 0) {
  1358. rdev_err(rdev, "failed to disable\n");
  1359. return ret;
  1360. }
  1361. }
  1362. rdev->use_count = 0;
  1363. } else if (rdev->use_count > 1) {
  1364. if (rdev->constraints &&
  1365. (rdev->constraints->valid_ops_mask &
  1366. REGULATOR_CHANGE_DRMS))
  1367. drms_uA_update(rdev);
  1368. rdev->use_count--;
  1369. }
  1370. return ret;
  1371. }
  1372. /**
  1373. * regulator_disable - disable regulator output
  1374. * @regulator: regulator source
  1375. *
  1376. * Disable the regulator output voltage or current. Calls to
  1377. * regulator_enable() must be balanced with calls to
  1378. * regulator_disable().
  1379. *
  1380. * NOTE: this will only disable the regulator output if no other consumer
  1381. * devices have it enabled, the regulator device supports disabling and
  1382. * machine constraints permit this operation.
  1383. */
  1384. int regulator_disable(struct regulator *regulator)
  1385. {
  1386. struct regulator_dev *rdev = regulator->rdev;
  1387. int ret = 0;
  1388. if (regulator->always_on)
  1389. return 0;
  1390. mutex_lock(&rdev->mutex);
  1391. ret = _regulator_disable(rdev);
  1392. mutex_unlock(&rdev->mutex);
  1393. if (ret == 0 && rdev->supply)
  1394. regulator_disable(rdev->supply);
  1395. return ret;
  1396. }
  1397. EXPORT_SYMBOL_GPL(regulator_disable);
  1398. /* locks held by regulator_force_disable() */
  1399. static int _regulator_force_disable(struct regulator_dev *rdev)
  1400. {
  1401. int ret = 0;
  1402. /* force disable */
  1403. if (rdev->desc->ops->disable) {
  1404. /* ah well, who wants to live forever... */
  1405. ret = rdev->desc->ops->disable(rdev);
  1406. if (ret < 0) {
  1407. rdev_err(rdev, "failed to force disable\n");
  1408. return ret;
  1409. }
  1410. /* notify other consumers that power has been forced off */
  1411. _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
  1412. REGULATOR_EVENT_DISABLE, NULL);
  1413. }
  1414. return ret;
  1415. }
  1416. /**
  1417. * regulator_force_disable - force disable regulator output
  1418. * @regulator: regulator source
  1419. *
  1420. * Forcibly disable the regulator output voltage or current.
  1421. * NOTE: this *will* disable the regulator output even if other consumer
  1422. * devices have it enabled. This should be used for situations when device
  1423. * damage will likely occur if the regulator is not disabled (e.g. over temp).
  1424. */
  1425. int regulator_force_disable(struct regulator *regulator)
  1426. {
  1427. struct regulator_dev *rdev = regulator->rdev;
  1428. int ret;
  1429. mutex_lock(&rdev->mutex);
  1430. regulator->uA_load = 0;
  1431. ret = _regulator_force_disable(regulator->rdev);
  1432. mutex_unlock(&rdev->mutex);
  1433. if (rdev->supply)
  1434. while (rdev->open_count--)
  1435. regulator_disable(rdev->supply);
  1436. return ret;
  1437. }
  1438. EXPORT_SYMBOL_GPL(regulator_force_disable);
  1439. static void regulator_disable_work(struct work_struct *work)
  1440. {
  1441. struct regulator_dev *rdev = container_of(work, struct regulator_dev,
  1442. disable_work.work);
  1443. int count, i, ret;
  1444. mutex_lock(&rdev->mutex);
  1445. BUG_ON(!rdev->deferred_disables);
  1446. count = rdev->deferred_disables;
  1447. rdev->deferred_disables = 0;
  1448. for (i = 0; i < count; i++) {
  1449. ret = _regulator_disable(rdev);
  1450. if (ret != 0)
  1451. rdev_err(rdev, "Deferred disable failed: %d\n", ret);
  1452. }
  1453. mutex_unlock(&rdev->mutex);
  1454. if (rdev->supply) {
  1455. for (i = 0; i < count; i++) {
  1456. ret = regulator_disable(rdev->supply);
  1457. if (ret != 0) {
  1458. rdev_err(rdev,
  1459. "Supply disable failed: %d\n", ret);
  1460. }
  1461. }
  1462. }
  1463. }
  1464. /**
  1465. * regulator_disable_deferred - disable regulator output with delay
  1466. * @regulator: regulator source
  1467. * @ms: miliseconds until the regulator is disabled
  1468. *
  1469. * Execute regulator_disable() on the regulator after a delay. This
  1470. * is intended for use with devices that require some time to quiesce.
  1471. *
  1472. * NOTE: this will only disable the regulator output if no other consumer
  1473. * devices have it enabled, the regulator device supports disabling and
  1474. * machine constraints permit this operation.
  1475. */
  1476. int regulator_disable_deferred(struct regulator *regulator, int ms)
  1477. {
  1478. struct regulator_dev *rdev = regulator->rdev;
  1479. int ret;
  1480. if (regulator->always_on)
  1481. return 0;
  1482. if (!ms)
  1483. return regulator_disable(regulator);
  1484. mutex_lock(&rdev->mutex);
  1485. rdev->deferred_disables++;
  1486. mutex_unlock(&rdev->mutex);
  1487. ret = schedule_delayed_work(&rdev->disable_work,
  1488. msecs_to_jiffies(ms));
  1489. if (ret < 0)
  1490. return ret;
  1491. else
  1492. return 0;
  1493. }
  1494. EXPORT_SYMBOL_GPL(regulator_disable_deferred);
  1495. /**
  1496. * regulator_is_enabled_regmap - standard is_enabled() for regmap users
  1497. *
  1498. * @rdev: regulator to operate on
  1499. *
  1500. * Regulators that use regmap for their register I/O can set the
  1501. * enable_reg and enable_mask fields in their descriptor and then use
  1502. * this as their is_enabled operation, saving some code.
  1503. */
  1504. int regulator_is_enabled_regmap(struct regulator_dev *rdev)
  1505. {
  1506. unsigned int val;
  1507. int ret;
  1508. ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
  1509. if (ret != 0)
  1510. return ret;
  1511. return (val & rdev->desc->enable_mask) != 0;
  1512. }
  1513. EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap);
  1514. /**
  1515. * regulator_enable_regmap - standard enable() for regmap users
  1516. *
  1517. * @rdev: regulator to operate on
  1518. *
  1519. * Regulators that use regmap for their register I/O can set the
  1520. * enable_reg and enable_mask fields in their descriptor and then use
  1521. * this as their enable() operation, saving some code.
  1522. */
  1523. int regulator_enable_regmap(struct regulator_dev *rdev)
  1524. {
  1525. return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
  1526. rdev->desc->enable_mask,
  1527. rdev->desc->enable_mask);
  1528. }
  1529. EXPORT_SYMBOL_GPL(regulator_enable_regmap);
  1530. /**
  1531. * regulator_disable_regmap - standard disable() for regmap users
  1532. *
  1533. * @rdev: regulator to operate on
  1534. *
  1535. * Regulators that use regmap for their register I/O can set the
  1536. * enable_reg and enable_mask fields in their descriptor and then use
  1537. * this as their disable() operation, saving some code.
  1538. */
  1539. int regulator_disable_regmap(struct regulator_dev *rdev)
  1540. {
  1541. return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
  1542. rdev->desc->enable_mask, 0);
  1543. }
  1544. EXPORT_SYMBOL_GPL(regulator_disable_regmap);
  1545. static int _regulator_is_enabled(struct regulator_dev *rdev)
  1546. {
  1547. /* A GPIO control always takes precedence */
  1548. if (rdev->ena_gpio)
  1549. return rdev->ena_gpio_state;
  1550. /* If we don't know then assume that the regulator is always on */
  1551. if (!rdev->desc->ops->is_enabled)
  1552. return 1;
  1553. return rdev->desc->ops->is_enabled(rdev);
  1554. }
  1555. /**
  1556. * regulator_is_enabled - is the regulator output enabled
  1557. * @regulator: regulator source
  1558. *
  1559. * Returns positive if the regulator driver backing the source/client
  1560. * has requested that the device be enabled, zero if it hasn't, else a
  1561. * negative errno code.
  1562. *
  1563. * Note that the device backing this regulator handle can have multiple
  1564. * users, so it might be enabled even if regulator_enable() was never
  1565. * called for this particular source.
  1566. */
  1567. int regulator_is_enabled(struct regulator *regulator)
  1568. {
  1569. int ret;
  1570. if (regulator->always_on)
  1571. return 1;
  1572. mutex_lock(&regulator->rdev->mutex);
  1573. ret = _regulator_is_enabled(regulator->rdev);
  1574. mutex_unlock(&regulator->rdev->mutex);
  1575. return ret;
  1576. }
  1577. EXPORT_SYMBOL_GPL(regulator_is_enabled);
  1578. /**
  1579. * regulator_count_voltages - count regulator_list_voltage() selectors
  1580. * @regulator: regulator source
  1581. *
  1582. * Returns number of selectors, or negative errno. Selectors are
  1583. * numbered starting at zero, and typically correspond to bitfields
  1584. * in hardware registers.
  1585. */
  1586. int regulator_count_voltages(struct regulator *regulator)
  1587. {
  1588. struct regulator_dev *rdev = regulator->rdev;
  1589. return rdev->desc->n_voltages ? : -EINVAL;
  1590. }
  1591. EXPORT_SYMBOL_GPL(regulator_count_voltages);
  1592. /**
  1593. * regulator_list_voltage_linear - List voltages with simple calculation
  1594. *
  1595. * @rdev: Regulator device
  1596. * @selector: Selector to convert into a voltage
  1597. *
  1598. * Regulators with a simple linear mapping between voltages and
  1599. * selectors can set min_uV and uV_step in the regulator descriptor
  1600. * and then use this function as their list_voltage() operation,
  1601. */
  1602. int regulator_list_voltage_linear(struct regulator_dev *rdev,
  1603. unsigned int selector)
  1604. {
  1605. if (selector >= rdev->desc->n_voltages)
  1606. return -EINVAL;
  1607. return rdev->desc->min_uV + (rdev->desc->uV_step * selector);
  1608. }
  1609. EXPORT_SYMBOL_GPL(regulator_list_voltage_linear);
  1610. /**
  1611. * regulator_list_voltage_table - List voltages with table based mapping
  1612. *
  1613. * @rdev: Regulator device
  1614. * @selector: Selector to convert into a voltage
  1615. *
  1616. * Regulators with table based mapping between voltages and
  1617. * selectors can set volt_table in the regulator descriptor
  1618. * and then use this function as their list_voltage() operation.
  1619. */
  1620. int regulator_list_voltage_table(struct regulator_dev *rdev,
  1621. unsigned int selector)
  1622. {
  1623. if (!rdev->desc->volt_table) {
  1624. BUG_ON(!rdev->desc->volt_table);
  1625. return -EINVAL;
  1626. }
  1627. if (selector >= rdev->desc->n_voltages)
  1628. return -EINVAL;
  1629. return rdev->desc->volt_table[selector];
  1630. }
  1631. EXPORT_SYMBOL_GPL(regulator_list_voltage_table);
  1632. /**
  1633. * regulator_list_voltage - enumerate supported voltages
  1634. * @regulator: regulator source
  1635. * @selector: identify voltage to list
  1636. * Context: can sleep
  1637. *
  1638. * Returns a voltage that can be passed to @regulator_set_voltage(),
  1639. * zero if this selector code can't be used on this system, or a
  1640. * negative errno.
  1641. */
  1642. int regulator_list_voltage(struct regulator *regulator, unsigned selector)
  1643. {
  1644. struct regulator_dev *rdev = regulator->rdev;
  1645. struct regulator_ops *ops = rdev->desc->ops;
  1646. int ret;
  1647. if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
  1648. return -EINVAL;
  1649. mutex_lock(&rdev->mutex);
  1650. ret = ops->list_voltage(rdev, selector);
  1651. mutex_unlock(&rdev->mutex);
  1652. if (ret > 0) {
  1653. if (ret < rdev->constraints->min_uV)
  1654. ret = 0;
  1655. else if (ret > rdev->constraints->max_uV)
  1656. ret = 0;
  1657. }
  1658. return ret;
  1659. }
  1660. EXPORT_SYMBOL_GPL(regulator_list_voltage);
  1661. /**
  1662. * regulator_is_supported_voltage - check if a voltage range can be supported
  1663. *
  1664. * @regulator: Regulator to check.
  1665. * @min_uV: Minimum required voltage in uV.
  1666. * @max_uV: Maximum required voltage in uV.
  1667. *
  1668. * Returns a boolean or a negative error code.
  1669. */
  1670. int regulator_is_supported_voltage(struct regulator *regulator,
  1671. int min_uV, int max_uV)
  1672. {
  1673. struct regulator_dev *rdev = regulator->rdev;
  1674. int i, voltages, ret;
  1675. /* If we can't change voltage check the current voltage */
  1676. if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
  1677. ret = regulator_get_voltage(regulator);
  1678. if (ret >= 0)
  1679. return (min_uV >= ret && ret <= max_uV);
  1680. else
  1681. return ret;
  1682. }
  1683. ret = regulator_count_voltages(regulator);
  1684. if (ret < 0)
  1685. return ret;
  1686. voltages = ret;
  1687. for (i = 0; i < voltages; i++) {
  1688. ret = regulator_list_voltage(regulator, i);
  1689. if (ret >= min_uV && ret <= max_uV)
  1690. return 1;
  1691. }
  1692. return 0;
  1693. }
  1694. EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
  1695. /**
  1696. * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users
  1697. *
  1698. * @rdev: regulator to operate on
  1699. *
  1700. * Regulators that use regmap for their register I/O can set the
  1701. * vsel_reg and vsel_mask fields in their descriptor and then use this
  1702. * as their get_voltage_vsel operation, saving some code.
  1703. */
  1704. int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev)
  1705. {
  1706. unsigned int val;
  1707. int ret;
  1708. ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val);
  1709. if (ret != 0)
  1710. return ret;
  1711. val &= rdev->desc->vsel_mask;
  1712. val >>= ffs(rdev->desc->vsel_mask) - 1;
  1713. return val;
  1714. }
  1715. EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap);
  1716. /**
  1717. * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users
  1718. *
  1719. * @rdev: regulator to operate on
  1720. * @sel: Selector to set
  1721. *
  1722. * Regulators that use regmap for their register I/O can set the
  1723. * vsel_reg and vsel_mask fields in their descriptor and then use this
  1724. * as their set_voltage_vsel operation, saving some code.
  1725. */
  1726. int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel)
  1727. {
  1728. sel <<= ffs(rdev->desc->vsel_mask) - 1;
  1729. return regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg,
  1730. rdev->desc->vsel_mask, sel);
  1731. }
  1732. EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap);
  1733. /**
  1734. * regulator_map_voltage_iterate - map_voltage() based on list_voltage()
  1735. *
  1736. * @rdev: Regulator to operate on
  1737. * @min_uV: Lower bound for voltage
  1738. * @max_uV: Upper bound for voltage
  1739. *
  1740. * Drivers implementing set_voltage_sel() and list_voltage() can use
  1741. * this as their map_voltage() operation. It will find a suitable
  1742. * voltage by calling list_voltage() until it gets something in bounds
  1743. * for the requested voltages.
  1744. */
  1745. int regulator_map_voltage_iterate(struct regulator_dev *rdev,
  1746. int min_uV, int max_uV)
  1747. {
  1748. int best_val = INT_MAX;
  1749. int selector = 0;
  1750. int i, ret;
  1751. /* Find the smallest voltage that falls within the specified
  1752. * range.
  1753. */
  1754. for (i = 0; i < rdev->desc->n_voltages; i++) {
  1755. ret = rdev->desc->ops->list_voltage(rdev, i);
  1756. if (ret < 0)
  1757. continue;
  1758. if (ret < best_val && ret >= min_uV && ret <= max_uV) {
  1759. best_val = ret;
  1760. selector = i;
  1761. }
  1762. }
  1763. if (best_val != INT_MAX)
  1764. return selector;
  1765. else
  1766. return -EINVAL;
  1767. }
  1768. EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate);
  1769. /**
  1770. * regulator_map_voltage_linear - map_voltage() for simple linear mappings
  1771. *
  1772. * @rdev: Regulator to operate on
  1773. * @min_uV: Lower bound for voltage
  1774. * @max_uV: Upper bound for voltage
  1775. *
  1776. * Drivers providing min_uV and uV_step in their regulator_desc can
  1777. * use this as their map_voltage() operation.
  1778. */
  1779. int regulator_map_voltage_linear(struct regulator_dev *rdev,
  1780. int min_uV, int max_uV)
  1781. {
  1782. int ret, voltage;
  1783. /* Allow uV_step to be 0 for fixed voltage */
  1784. if (rdev->desc->n_voltages == 1 && rdev->desc->uV_step == 0) {
  1785. if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV)
  1786. return 0;
  1787. else
  1788. return -EINVAL;
  1789. }
  1790. if (!rdev->desc->uV_step) {
  1791. BUG_ON(!rdev->desc->uV_step);
  1792. return -EINVAL;
  1793. }
  1794. if (min_uV < rdev->desc->min_uV)
  1795. min_uV = rdev->desc->min_uV;
  1796. ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
  1797. if (ret < 0)
  1798. return ret;
  1799. /* Map back into a voltage to verify we're still in bounds */
  1800. voltage = rdev->desc->ops->list_voltage(rdev, ret);
  1801. if (voltage < min_uV || voltage > max_uV)
  1802. return -EINVAL;
  1803. return ret;
  1804. }
  1805. EXPORT_SYMBOL_GPL(regulator_map_voltage_linear);
  1806. static int _regulator_do_set_voltage(struct regulator_dev *rdev,
  1807. int min_uV, int max_uV)
  1808. {
  1809. int ret;
  1810. int delay = 0;
  1811. int best_val = 0;
  1812. unsigned int selector;
  1813. int old_selector = -1;
  1814. trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
  1815. min_uV += rdev->constraints->uV_offset;
  1816. max_uV += rdev->constraints->uV_offset;
  1817. /*
  1818. * If we can't obtain the old selector there is not enough
  1819. * info to call set_voltage_time_sel().
  1820. */
  1821. if (_regulator_is_enabled(rdev) &&
  1822. rdev->desc->ops->set_voltage_time_sel &&
  1823. rdev->desc->ops->get_voltage_sel) {
  1824. old_selector = rdev->desc->ops->get_voltage_sel(rdev);
  1825. if (old_selector < 0)
  1826. return old_selector;
  1827. }
  1828. if (rdev->desc->ops->set_voltage) {
  1829. ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
  1830. &selector);
  1831. if (ret >= 0) {
  1832. if (rdev->desc->ops->list_voltage)
  1833. best_val = rdev->desc->ops->list_voltage(rdev,
  1834. selector);
  1835. else
  1836. best_val = _regulator_get_voltage(rdev);
  1837. }
  1838. } else if (rdev->desc->ops->set_voltage_sel) {
  1839. if (rdev->desc->ops->map_voltage) {
  1840. ret = rdev->desc->ops->map_voltage(rdev, min_uV,
  1841. max_uV);
  1842. } else {
  1843. if (rdev->desc->ops->list_voltage ==
  1844. regulator_list_voltage_linear)
  1845. ret = regulator_map_voltage_linear(rdev,
  1846. min_uV, max_uV);
  1847. else
  1848. ret = regulator_map_voltage_iterate(rdev,
  1849. min_uV, max_uV);
  1850. }
  1851. if (ret >= 0) {
  1852. best_val = rdev->desc->ops->list_voltage(rdev, ret);
  1853. if (min_uV <= best_val && max_uV >= best_val) {
  1854. selector = ret;
  1855. ret = rdev->desc->ops->set_voltage_sel(rdev,
  1856. ret);
  1857. } else {
  1858. ret = -EINVAL;
  1859. }
  1860. }
  1861. } else {
  1862. ret = -EINVAL;
  1863. }
  1864. /* Call set_voltage_time_sel if successfully obtained old_selector */
  1865. if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 &&
  1866. rdev->desc->ops->set_voltage_time_sel) {
  1867. delay = rdev->desc->ops->set_voltage_time_sel(rdev,
  1868. old_selector, selector);
  1869. if (delay < 0) {
  1870. rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
  1871. delay);
  1872. delay = 0;
  1873. }
  1874. /* Insert any necessary delays */
  1875. if (delay >= 1000) {
  1876. mdelay(delay / 1000);
  1877. udelay(delay % 1000);
  1878. } else if (delay) {
  1879. udelay(delay);
  1880. }
  1881. }
  1882. if (ret == 0 && best_val >= 0) {
  1883. unsigned long data = best_val;
  1884. _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
  1885. (void *)data);
  1886. }
  1887. trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
  1888. return ret;
  1889. }
  1890. /**
  1891. * regulator_set_voltage - set regulator output voltage
  1892. * @regulator: regulator source
  1893. * @min_uV: Minimum required voltage in uV
  1894. * @max_uV: Maximum acceptable voltage in uV
  1895. *
  1896. * Sets a voltage regulator to the desired output voltage. This can be set
  1897. * during any regulator state. IOW, regulator can be disabled or enabled.
  1898. *
  1899. * If the regulator is enabled then the voltage will change to the new value
  1900. * immediately otherwise if the regulator is disabled the regulator will
  1901. * output at the new voltage when enabled.
  1902. *
  1903. * NOTE: If the regulator is shared between several devices then the lowest
  1904. * request voltage that meets the system constraints will be used.
  1905. * Regulator system constraints must be set for this regulator before
  1906. * calling this function otherwise this call will fail.
  1907. */
  1908. int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
  1909. {
  1910. struct regulator_dev *rdev = regulator->rdev;
  1911. int ret = 0;
  1912. mutex_lock(&rdev->mutex);
  1913. /* If we're setting the same range as last time the change
  1914. * should be a noop (some cpufreq implementations use the same
  1915. * voltage for multiple frequencies, for example).
  1916. */
  1917. if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
  1918. goto out;
  1919. /* sanity check */
  1920. if (!rdev->desc->ops->set_voltage &&
  1921. !rdev->desc->ops->set_voltage_sel) {
  1922. ret = -EINVAL;
  1923. goto out;
  1924. }
  1925. /* constraints check */
  1926. ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
  1927. if (ret < 0)
  1928. goto out;
  1929. regulator->min_uV = min_uV;
  1930. regulator->max_uV = max_uV;
  1931. ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
  1932. if (ret < 0)
  1933. goto out;
  1934. ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
  1935. out:
  1936. mutex_unlock(&rdev->mutex);
  1937. return ret;
  1938. }
  1939. EXPORT_SYMBOL_GPL(regulator_set_voltage);
  1940. /**
  1941. * regulator_set_voltage_time - get raise/fall time
  1942. * @regulator: regulator source
  1943. * @old_uV: starting voltage in microvolts
  1944. * @new_uV: target voltage in microvolts
  1945. *
  1946. * Provided with the starting and ending voltage, this function attempts to
  1947. * calculate the time in microseconds required to rise or fall to this new
  1948. * voltage.
  1949. */
  1950. int regulator_set_voltage_time(struct regulator *regulator,
  1951. int old_uV, int new_uV)
  1952. {
  1953. struct regulator_dev *rdev = regulator->rdev;
  1954. struct regulator_ops *ops = rdev->desc->ops;
  1955. int old_sel = -1;
  1956. int new_sel = -1;
  1957. int voltage;
  1958. int i;
  1959. /* Currently requires operations to do this */
  1960. if (!ops->list_voltage || !ops->set_voltage_time_sel
  1961. || !rdev->desc->n_voltages)
  1962. return -EINVAL;
  1963. for (i = 0; i < rdev->desc->n_voltages; i++) {
  1964. /* We only look for exact voltage matches here */
  1965. voltage = regulator_list_voltage(regulator, i);
  1966. if (voltage < 0)
  1967. return -EINVAL;
  1968. if (voltage == 0)
  1969. continue;
  1970. if (voltage == old_uV)
  1971. old_sel = i;
  1972. if (voltage == new_uV)
  1973. new_sel = i;
  1974. }
  1975. if (old_sel < 0 || new_sel < 0)
  1976. return -EINVAL;
  1977. return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
  1978. }
  1979. EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
  1980. /**
  1981. * regulator_set_voltage_time_sel - get raise/fall time
  1982. * @rdev: regulator source device
  1983. * @old_selector: selector for starting voltage
  1984. * @new_selector: selector for target voltage
  1985. *
  1986. * Provided with the starting and target voltage selectors, this function
  1987. * returns time in microseconds required to rise or fall to this new voltage
  1988. *
  1989. * Drivers providing ramp_delay in regulation_constraints can use this as their
  1990. * set_voltage_time_sel() operation.
  1991. */
  1992. int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
  1993. unsigned int old_selector,
  1994. unsigned int new_selector)
  1995. {
  1996. unsigned int ramp_delay = 0;
  1997. int old_volt, new_volt;
  1998. if (rdev->constraints->ramp_delay)
  1999. ramp_delay = rdev->constraints->ramp_delay;
  2000. else if (rdev->desc->ramp_delay)
  2001. ramp_delay = rdev->desc->ramp_delay;
  2002. if (ramp_delay == 0) {
  2003. rdev_warn(rdev, "ramp_delay not set\n");
  2004. return 0;
  2005. }
  2006. /* sanity check */
  2007. if (!rdev->desc->ops->list_voltage)
  2008. return -EINVAL;
  2009. old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
  2010. new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
  2011. return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
  2012. }
  2013. EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
  2014. /**
  2015. * regulator_sync_voltage - re-apply last regulator output voltage
  2016. * @regulator: regulator source
  2017. *
  2018. * Re-apply the last configured voltage. This is intended to be used
  2019. * where some external control source the consumer is cooperating with
  2020. * has caused the configured voltage to change.
  2021. */
  2022. int regulator_sync_voltage(struct regulator *regulator)
  2023. {
  2024. struct regulator_dev *rdev = regulator->rdev;
  2025. int ret, min_uV, max_uV;
  2026. mutex_lock(&rdev->mutex);
  2027. if (!rdev->desc->ops->set_voltage &&
  2028. !rdev->desc->ops->set_voltage_sel) {
  2029. ret = -EINVAL;
  2030. goto out;
  2031. }
  2032. /* This is only going to work if we've had a voltage configured. */
  2033. if (!regulator->min_uV && !regulator->max_uV) {
  2034. ret = -EINVAL;
  2035. goto out;
  2036. }
  2037. min_uV = regulator->min_uV;
  2038. max_uV = regulator->max_uV;
  2039. /* This should be a paranoia check... */
  2040. ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
  2041. if (ret < 0)
  2042. goto out;
  2043. ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
  2044. if (ret < 0)
  2045. goto out;
  2046. ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
  2047. out:
  2048. mutex_unlock(&rdev->mutex);
  2049. return ret;
  2050. }
  2051. EXPORT_SYMBOL_GPL(regulator_sync_voltage);
  2052. static int _regulator_get_voltage(struct regulator_dev *rdev)
  2053. {
  2054. int sel, ret;
  2055. if (rdev->desc->ops->get_voltage_sel) {
  2056. sel = rdev->desc->ops->get_voltage_sel(rdev);
  2057. if (sel < 0)
  2058. return sel;
  2059. ret = rdev->desc->ops->list_voltage(rdev, sel);
  2060. } else if (rdev->desc->ops->get_voltage) {
  2061. ret = rdev->desc->ops->get_voltage(rdev);
  2062. } else if (rdev->desc->ops->list_voltage) {
  2063. ret = rdev->desc->ops->list_voltage(rdev, 0);
  2064. } else {
  2065. return -EINVAL;
  2066. }
  2067. if (ret < 0)
  2068. return ret;
  2069. return ret - rdev->constraints->uV_offset;
  2070. }
  2071. /**
  2072. * regulator_get_voltage - get regulator output voltage
  2073. * @regulator: regulator source
  2074. *
  2075. * This returns the current regulator voltage in uV.
  2076. *
  2077. * NOTE: If the regulator is disabled it will return the voltage value. This
  2078. * function should not be used to determine regulator state.
  2079. */
  2080. int regulator_get_voltage(struct regulator *regulator)
  2081. {
  2082. int ret;
  2083. mutex_lock(&regulator->rdev->mutex);
  2084. ret = _regulator_get_voltage(regulator->rdev);
  2085. mutex_unlock(&regulator->rdev->mutex);
  2086. return ret;
  2087. }
  2088. EXPORT_SYMBOL_GPL(regulator_get_voltage);
  2089. /**
  2090. * regulator_set_current_limit - set regulator output current limit
  2091. * @regulator: regulator source
  2092. * @min_uA: Minimuum supported current in uA
  2093. * @max_uA: Maximum supported current in uA
  2094. *
  2095. * Sets current sink to the desired output current. This can be set during
  2096. * any regulator state. IOW, regulator can be disabled or enabled.
  2097. *
  2098. * If the regulator is enabled then the current will change to the new value
  2099. * immediately otherwise if the regulator is disabled the regulator will
  2100. * output at the new current when enabled.
  2101. *
  2102. * NOTE: Regulator system constraints must be set for this regulator before
  2103. * calling this function otherwise this call will fail.
  2104. */
  2105. int regulator_set_current_limit(struct regulator *regulator,
  2106. int min_uA, int max_uA)
  2107. {
  2108. struct regulator_dev *rdev = regulator->rdev;
  2109. int ret;
  2110. mutex_lock(&rdev->mutex);
  2111. /* sanity check */
  2112. if (!rdev->desc->ops->set_current_limit) {
  2113. ret = -EINVAL;
  2114. goto out;
  2115. }
  2116. /* constraints check */
  2117. ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
  2118. if (ret < 0)
  2119. goto out;
  2120. ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
  2121. out:
  2122. mutex_unlock(&rdev->mutex);
  2123. return ret;
  2124. }
  2125. EXPORT_SYMBOL_GPL(regulator_set_current_limit);
  2126. static int _regulator_get_current_limit(struct regulator_dev *rdev)
  2127. {
  2128. int ret;
  2129. mutex_lock(&rdev->mutex);
  2130. /* sanity check */
  2131. if (!rdev->desc->ops->get_current_limit) {
  2132. ret = -EINVAL;
  2133. goto out;
  2134. }
  2135. ret = rdev->desc->ops->get_current_limit(rdev);
  2136. out:
  2137. mutex_unlock(&rdev->mutex);
  2138. return ret;
  2139. }
  2140. /**
  2141. * regulator_get_current_limit - get regulator output current
  2142. * @regulator: regulator source
  2143. *
  2144. * This returns the current supplied by the specified current sink in uA.
  2145. *
  2146. * NOTE: If the regulator is disabled it will return the current value. This
  2147. * function should not be used to determine regulator state.
  2148. */
  2149. int regulator_get_current_limit(struct regulator *regulator)
  2150. {
  2151. return _regulator_get_current_limit(regulator->rdev);
  2152. }
  2153. EXPORT_SYMBOL_GPL(regulator_get_current_limit);
  2154. /**
  2155. * regulator_set_mode - set regulator operating mode
  2156. * @regulator: regulator source
  2157. * @mode: operating mode - one of the REGULATOR_MODE constants
  2158. *
  2159. * Set regulator operating mode to increase regulator efficiency or improve
  2160. * regulation performance.
  2161. *
  2162. * NOTE: Regulator system constraints must be set for this regulator before
  2163. * calling this function otherwise this call will fail.
  2164. */
  2165. int regulator_set_mode(struct regulator *regulator, unsigned int mode)
  2166. {
  2167. struct regulator_dev *rdev = regulator->rdev;
  2168. int ret;
  2169. int regulator_curr_mode;
  2170. mutex_lock(&rdev->mutex);
  2171. /* sanity check */
  2172. if (!rdev->desc->ops->set_mode) {
  2173. ret = -EINVAL;
  2174. goto out;
  2175. }
  2176. /* return if the same mode is requested */
  2177. if (rdev->desc->ops->get_mode) {
  2178. regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
  2179. if (regulator_curr_mode == mode) {
  2180. ret = 0;
  2181. goto out;
  2182. }
  2183. }
  2184. /* constraints check */
  2185. ret = regulator_mode_constrain(rdev, &mode);
  2186. if (ret < 0)
  2187. goto out;
  2188. ret = rdev->desc->ops->set_mode(rdev, mode);
  2189. out:
  2190. mutex_unlock(&rdev->mutex);
  2191. return ret;
  2192. }
  2193. EXPORT_SYMBOL_GPL(regulator_set_mode);
  2194. static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
  2195. {
  2196. int ret;
  2197. mutex_lock(&rdev->mutex);
  2198. /* sanity check */
  2199. if (!rdev->desc->ops->get_mode) {
  2200. ret = -EINVAL;
  2201. goto out;
  2202. }
  2203. ret = rdev->desc->ops->get_mode(rdev);
  2204. out:
  2205. mutex_unlock(&rdev->mutex);
  2206. return ret;
  2207. }
  2208. /**
  2209. * regulator_get_mode - get regulator operating mode
  2210. * @regulator: regulator source
  2211. *
  2212. * Get the current regulator operating mode.
  2213. */
  2214. unsigned int regulator_get_mode(struct regulator *regulator)
  2215. {
  2216. return _regulator_get_mode(regulator->rdev);
  2217. }
  2218. EXPORT_SYMBOL_GPL(regulator_get_mode);
  2219. /**
  2220. * regulator_set_optimum_mode - set regulator optimum operating mode
  2221. * @regulator: regulator source
  2222. * @uA_load: load current
  2223. *
  2224. * Notifies the regulator core of a new device load. This is then used by
  2225. * DRMS (if enabled by constraints) to set the most efficient regulator
  2226. * operating mode for the new regulator loading.
  2227. *
  2228. * Consumer devices notify their supply regulator of the maximum power
  2229. * they will require (can be taken from device datasheet in the power
  2230. * consumption tables) when they change operational status and hence power
  2231. * state. Examples of operational state changes that can affect power
  2232. * consumption are :-
  2233. *
  2234. * o Device is opened / closed.
  2235. * o Device I/O is about to begin or has just finished.
  2236. * o Device is idling in between work.
  2237. *
  2238. * This information is also exported via sysfs to userspace.
  2239. *
  2240. * DRMS will sum the total requested load on the regulator and change
  2241. * to the most efficient operating mode if platform constraints allow.
  2242. *
  2243. * Returns the new regulator mode or error.
  2244. */
  2245. int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
  2246. {
  2247. struct regulator_dev *rdev = regulator->rdev;
  2248. struct regulator *consumer;
  2249. int ret, output_uV, input_uV = 0, total_uA_load = 0;
  2250. unsigned int mode;
  2251. if (rdev->supply)
  2252. input_uV = regulator_get_voltage(rdev->supply);
  2253. mutex_lock(&rdev->mutex);
  2254. /*
  2255. * first check to see if we can set modes at all, otherwise just
  2256. * tell the consumer everything is OK.
  2257. */
  2258. regulator->uA_load = uA_load;
  2259. ret = regulator_check_drms(rdev);
  2260. if (ret < 0) {
  2261. ret = 0;
  2262. goto out;
  2263. }
  2264. if (!rdev->desc->ops->get_optimum_mode)
  2265. goto out;
  2266. /*
  2267. * we can actually do this so any errors are indicators of
  2268. * potential real failure.
  2269. */
  2270. ret = -EINVAL;
  2271. if (!rdev->desc->ops->set_mode)
  2272. goto out;
  2273. /* get output voltage */
  2274. output_uV = _regulator_get_voltage(rdev);
  2275. if (output_uV <= 0) {
  2276. rdev_err(rdev, "invalid output voltage found\n");
  2277. goto out;
  2278. }
  2279. /* No supply? Use constraint voltage */
  2280. if (input_uV <= 0)
  2281. input_uV = rdev->constraints->input_uV;
  2282. if (input_uV <= 0) {
  2283. rdev_err(rdev, "invalid input voltage found\n");
  2284. goto out;
  2285. }
  2286. /* calc total requested load for this regulator */
  2287. list_for_each_entry(consumer, &rdev->consumer_list, list)
  2288. total_uA_load += consumer->uA_load;
  2289. mode = rdev->desc->ops->get_optimum_mode(rdev,
  2290. input_uV, output_uV,
  2291. total_uA_load);
  2292. ret = regulator_mode_constrain(rdev, &mode);
  2293. if (ret < 0) {
  2294. rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
  2295. total_uA_load, input_uV, output_uV);
  2296. goto out;
  2297. }
  2298. ret = rdev->desc->ops->set_mode(rdev, mode);
  2299. if (ret < 0) {
  2300. rdev_err(rdev, "failed to set optimum mode %x\n", mode);
  2301. goto out;
  2302. }
  2303. ret = mode;
  2304. out:
  2305. mutex_unlock(&rdev->mutex);
  2306. return ret;
  2307. }
  2308. EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
  2309. /**
  2310. * regulator_set_bypass_regmap - Default set_bypass() using regmap
  2311. *
  2312. * @rdev: device to operate on.
  2313. * @enable: state to set.
  2314. */
  2315. int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable)
  2316. {
  2317. unsigned int val;
  2318. if (enable)
  2319. val = rdev->desc->bypass_mask;
  2320. else
  2321. val = 0;
  2322. return regmap_update_bits(rdev->regmap, rdev->desc->bypass_reg,
  2323. rdev->desc->bypass_mask, val);
  2324. }
  2325. EXPORT_SYMBOL_GPL(regulator_set_bypass_regmap);
  2326. /**
  2327. * regulator_get_bypass_regmap - Default get_bypass() using regmap
  2328. *
  2329. * @rdev: device to operate on.
  2330. * @enable: current state.
  2331. */
  2332. int regulator_get_bypass_regmap(struct regulator_dev *rdev, bool *enable)
  2333. {
  2334. unsigned int val;
  2335. int ret;
  2336. ret = regmap_read(rdev->regmap, rdev->desc->bypass_reg, &val);
  2337. if (ret != 0)
  2338. return ret;
  2339. *enable = val & rdev->desc->bypass_mask;
  2340. return 0;
  2341. }
  2342. EXPORT_SYMBOL_GPL(regulator_get_bypass_regmap);
  2343. /**
  2344. * regulator_allow_bypass - allow the regulator to go into bypass mode
  2345. *
  2346. * @regulator: Regulator to configure
  2347. * @allow: enable or disable bypass mode
  2348. *
  2349. * Allow the regulator to go into bypass mode if all other consumers
  2350. * for the regulator also enable bypass mode and the machine
  2351. * constraints allow this. Bypass mode means that the regulator is
  2352. * simply passing the input directly to the output with no regulation.
  2353. */
  2354. int regulator_allow_bypass(struct regulator *regulator, bool enable)
  2355. {
  2356. struct regulator_dev *rdev = regulator->rdev;
  2357. int ret = 0;
  2358. if (!rdev->desc->ops->set_bypass)
  2359. return 0;
  2360. if (rdev->constraints &&
  2361. !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
  2362. return 0;
  2363. mutex_lock(&rdev->mutex);
  2364. if (enable && !regulator->bypass) {
  2365. rdev->bypass_count++;
  2366. if (rdev->bypass_count == rdev->open_count) {
  2367. ret = rdev->desc->ops->set_bypass(rdev, enable);
  2368. if (ret != 0)
  2369. rdev->bypass_count--;
  2370. }
  2371. } else if (!enable && regulator->bypass) {
  2372. rdev->bypass_count--;
  2373. if (rdev->bypass_count != rdev->open_count) {
  2374. ret = rdev->desc->ops->set_bypass(rdev, enable);
  2375. if (ret != 0)
  2376. rdev->bypass_count++;
  2377. }
  2378. }
  2379. if (ret == 0)
  2380. regulator->bypass = enable;
  2381. mutex_unlock(&rdev->mutex);
  2382. return ret;
  2383. }
  2384. EXPORT_SYMBOL_GPL(regulator_allow_bypass);
  2385. /**
  2386. * regulator_register_notifier - register regulator event notifier
  2387. * @regulator: regulator source
  2388. * @nb: notifier block
  2389. *
  2390. * Register notifier block to receive regulator events.
  2391. */
  2392. int regulator_register_notifier(struct regulator *regulator,
  2393. struct notifier_block *nb)
  2394. {
  2395. return blocking_notifier_chain_register(&regulator->rdev->notifier,
  2396. nb);
  2397. }
  2398. EXPORT_SYMBOL_GPL(regulator_register_notifier);
  2399. /**
  2400. * regulator_unregister_notifier - unregister regulator event notifier
  2401. * @regulator: regulator source
  2402. * @nb: notifier block
  2403. *
  2404. * Unregister regulator event notifier block.
  2405. */
  2406. int regulator_unregister_notifier(struct regulator *regulator,
  2407. struct notifier_block *nb)
  2408. {
  2409. return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
  2410. nb);
  2411. }
  2412. EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
  2413. /* notify regulator consumers and downstream regulator consumers.
  2414. * Note mutex must be held by caller.
  2415. */
  2416. static void _notifier_call_chain(struct regulator_dev *rdev,
  2417. unsigned long event, void *data)
  2418. {
  2419. /* call rdev chain first */
  2420. blocking_notifier_call_chain(&rdev->notifier, event, data);
  2421. }
  2422. /**
  2423. * regulator_bulk_get - get multiple regulator consumers
  2424. *
  2425. * @dev: Device to supply
  2426. * @num_consumers: Number of consumers to register
  2427. * @consumers: Configuration of consumers; clients are stored here.
  2428. *
  2429. * @return 0 on success, an errno on failure.
  2430. *
  2431. * This helper function allows drivers to get several regulator
  2432. * consumers in one operation. If any of the regulators cannot be
  2433. * acquired then any regulators that were allocated will be freed
  2434. * before returning to the caller.
  2435. */
  2436. int regulator_bulk_get(struct device *dev, int num_consumers,
  2437. struct regulator_bulk_data *consumers)
  2438. {
  2439. int i;
  2440. int ret;
  2441. for (i = 0; i < num_consumers; i++)
  2442. consumers[i].consumer = NULL;
  2443. for (i = 0; i < num_consumers; i++) {
  2444. consumers[i].consumer = regulator_get(dev,
  2445. consumers[i].supply);
  2446. if (IS_ERR(consumers[i].consumer)) {
  2447. ret = PTR_ERR(consumers[i].consumer);
  2448. dev_err(dev, "Failed to get supply '%s': %d\n",
  2449. consumers[i].supply, ret);
  2450. consumers[i].consumer = NULL;
  2451. goto err;
  2452. }
  2453. }
  2454. return 0;
  2455. err:
  2456. while (--i >= 0)
  2457. regulator_put(consumers[i].consumer);
  2458. return ret;
  2459. }
  2460. EXPORT_SYMBOL_GPL(regulator_bulk_get);
  2461. /**
  2462. * devm_regulator_bulk_get - managed get multiple regulator consumers
  2463. *
  2464. * @dev: Device to supply
  2465. * @num_consumers: Number of consumers to register
  2466. * @consumers: Configuration of consumers; clients are stored here.
  2467. *
  2468. * @return 0 on success, an errno on failure.
  2469. *
  2470. * This helper function allows drivers to get several regulator
  2471. * consumers in one operation with management, the regulators will
  2472. * automatically be freed when the device is unbound. If any of the
  2473. * regulators cannot be acquired then any regulators that were
  2474. * allocated will be freed before returning to the caller.
  2475. */
  2476. int devm_regulator_bulk_get(struct device *dev, int num_consumers,
  2477. struct regulator_bulk_data *consumers)
  2478. {
  2479. int i;
  2480. int ret;
  2481. for (i = 0; i < num_consumers; i++)
  2482. consumers[i].consumer = NULL;
  2483. for (i = 0; i < num_consumers; i++) {
  2484. consumers[i].consumer = devm_regulator_get(dev,
  2485. consumers[i].supply);
  2486. if (IS_ERR(consumers[i].consumer)) {
  2487. ret = PTR_ERR(consumers[i].consumer);
  2488. dev_err(dev, "Failed to get supply '%s': %d\n",
  2489. consumers[i].supply, ret);
  2490. consumers[i].consumer = NULL;
  2491. goto err;
  2492. }
  2493. }
  2494. return 0;
  2495. err:
  2496. for (i = 0; i < num_consumers && consumers[i].consumer; i++)
  2497. devm_regulator_put(consumers[i].consumer);
  2498. return ret;
  2499. }
  2500. EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
  2501. static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
  2502. {
  2503. struct regulator_bulk_data *bulk = data;
  2504. bulk->ret = regulator_enable(bulk->consumer);
  2505. }
  2506. /**
  2507. * regulator_bulk_enable - enable multiple regulator consumers
  2508. *
  2509. * @num_consumers: Number of consumers
  2510. * @consumers: Consumer data; clients are stored here.
  2511. * @return 0 on success, an errno on failure
  2512. *
  2513. * This convenience API allows consumers to enable multiple regulator
  2514. * clients in a single API call. If any consumers cannot be enabled
  2515. * then any others that were enabled will be disabled again prior to
  2516. * return.
  2517. */
  2518. int regulator_bulk_enable(int num_consumers,
  2519. struct regulator_bulk_data *consumers)
  2520. {
  2521. ASYNC_DOMAIN_EXCLUSIVE(async_domain);
  2522. int i;
  2523. int ret = 0;
  2524. for (i = 0; i < num_consumers; i++) {
  2525. if (consumers[i].consumer->always_on)
  2526. consumers[i].ret = 0;
  2527. else
  2528. async_schedule_domain(regulator_bulk_enable_async,
  2529. &consumers[i], &async_domain);
  2530. }
  2531. async_synchronize_full_domain(&async_domain);
  2532. /* If any consumer failed we need to unwind any that succeeded */
  2533. for (i = 0; i < num_consumers; i++) {
  2534. if (consumers[i].ret != 0) {
  2535. ret = consumers[i].ret;
  2536. goto err;
  2537. }
  2538. }
  2539. return 0;
  2540. err:
  2541. pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
  2542. while (--i >= 0)
  2543. regulator_disable(consumers[i].consumer);
  2544. return ret;
  2545. }
  2546. EXPORT_SYMBOL_GPL(regulator_bulk_enable);
  2547. /**
  2548. * regulator_bulk_disable - disable multiple regulator consumers
  2549. *
  2550. * @num_consumers: Number of consumers
  2551. * @consumers: Consumer data; clients are stored here.
  2552. * @return 0 on success, an errno on failure
  2553. *
  2554. * This convenience API allows consumers to disable multiple regulator
  2555. * clients in a single API call. If any consumers cannot be disabled
  2556. * then any others that were disabled will be enabled again prior to
  2557. * return.
  2558. */
  2559. int regulator_bulk_disable(int num_consumers,
  2560. struct regulator_bulk_data *consumers)
  2561. {
  2562. int i;
  2563. int ret, r;
  2564. for (i = num_consumers - 1; i >= 0; --i) {
  2565. ret = regulator_disable(consumers[i].consumer);
  2566. if (ret != 0)
  2567. goto err;
  2568. }
  2569. return 0;
  2570. err:
  2571. pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
  2572. for (++i; i < num_consumers; ++i) {
  2573. r = regulator_enable(consumers[i].consumer);
  2574. if (r != 0)
  2575. pr_err("Failed to reename %s: %d\n",
  2576. consumers[i].supply, r);
  2577. }
  2578. return ret;
  2579. }
  2580. EXPORT_SYMBOL_GPL(regulator_bulk_disable);
  2581. /**
  2582. * regulator_bulk_force_disable - force disable multiple regulator consumers
  2583. *
  2584. * @num_consumers: Number of consumers
  2585. * @consumers: Consumer data; clients are stored here.
  2586. * @return 0 on success, an errno on failure
  2587. *
  2588. * This convenience API allows consumers to forcibly disable multiple regulator
  2589. * clients in a single API call.
  2590. * NOTE: This should be used for situations when device damage will
  2591. * likely occur if the regulators are not disabled (e.g. over temp).
  2592. * Although regulator_force_disable function call for some consumers can
  2593. * return error numbers, the function is called for all consumers.
  2594. */
  2595. int regulator_bulk_force_disable(int num_consumers,
  2596. struct regulator_bulk_data *consumers)
  2597. {
  2598. int i;
  2599. int ret;
  2600. for (i = 0; i < num_consumers; i++)
  2601. consumers[i].ret =
  2602. regulator_force_disable(consumers[i].consumer);
  2603. for (i = 0; i < num_consumers; i++) {
  2604. if (consumers[i].ret != 0) {
  2605. ret = consumers[i].ret;
  2606. goto out;
  2607. }
  2608. }
  2609. return 0;
  2610. out:
  2611. return ret;
  2612. }
  2613. EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
  2614. /**
  2615. * regulator_bulk_free - free multiple regulator consumers
  2616. *
  2617. * @num_consumers: Number of consumers
  2618. * @consumers: Consumer data; clients are stored here.
  2619. *
  2620. * This convenience API allows consumers to free multiple regulator
  2621. * clients in a single API call.
  2622. */
  2623. void regulator_bulk_free(int num_consumers,
  2624. struct regulator_bulk_data *consumers)
  2625. {
  2626. int i;
  2627. for (i = 0; i < num_consumers; i++) {
  2628. regulator_put(consumers[i].consumer);
  2629. consumers[i].consumer = NULL;
  2630. }
  2631. }
  2632. EXPORT_SYMBOL_GPL(regulator_bulk_free);
  2633. /**
  2634. * regulator_notifier_call_chain - call regulator event notifier
  2635. * @rdev: regulator source
  2636. * @event: notifier block
  2637. * @data: callback-specific data.
  2638. *
  2639. * Called by regulator drivers to notify clients a regulator event has
  2640. * occurred. We also notify regulator clients downstream.
  2641. * Note lock must be held by caller.
  2642. */
  2643. int regulator_notifier_call_chain(struct regulator_dev *rdev,
  2644. unsigned long event, void *data)
  2645. {
  2646. _notifier_call_chain(rdev, event, data);
  2647. return NOTIFY_DONE;
  2648. }
  2649. EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
  2650. /**
  2651. * regulator_mode_to_status - convert a regulator mode into a status
  2652. *
  2653. * @mode: Mode to convert
  2654. *
  2655. * Convert a regulator mode into a status.
  2656. */
  2657. int regulator_mode_to_status(unsigned int mode)
  2658. {
  2659. switch (mode) {
  2660. case REGULATOR_MODE_FAST:
  2661. return REGULATOR_STATUS_FAST;
  2662. case REGULATOR_MODE_NORMAL:
  2663. return REGULATOR_STATUS_NORMAL;
  2664. case REGULATOR_MODE_IDLE:
  2665. return REGULATOR_STATUS_IDLE;
  2666. case REGULATOR_MODE_STANDBY:
  2667. return REGULATOR_STATUS_STANDBY;
  2668. default:
  2669. return REGULATOR_STATUS_UNDEFINED;
  2670. }
  2671. }
  2672. EXPORT_SYMBOL_GPL(regulator_mode_to_status);
  2673. /*
  2674. * To avoid cluttering sysfs (and memory) with useless state, only
  2675. * create attributes that can be meaningfully displayed.
  2676. */
  2677. static int add_regulator_attributes(struct regulator_dev *rdev)
  2678. {
  2679. struct device *dev = &rdev->dev;
  2680. struct regulator_ops *ops = rdev->desc->ops;
  2681. int status = 0;
  2682. /* some attributes need specific methods to be displayed */
  2683. if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
  2684. (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
  2685. (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0)) {
  2686. status = device_create_file(dev, &dev_attr_microvolts);
  2687. if (status < 0)
  2688. return status;
  2689. }
  2690. if (ops->get_current_limit) {
  2691. status = device_create_file(dev, &dev_attr_microamps);
  2692. if (status < 0)
  2693. return status;
  2694. }
  2695. if (ops->get_mode) {
  2696. status = device_create_file(dev, &dev_attr_opmode);
  2697. if (status < 0)
  2698. return status;
  2699. }
  2700. if (ops->is_enabled) {
  2701. status = device_create_file(dev, &dev_attr_state);
  2702. if (status < 0)
  2703. return status;
  2704. }
  2705. if (ops->get_status) {
  2706. status = device_create_file(dev, &dev_attr_status);
  2707. if (status < 0)
  2708. return status;
  2709. }
  2710. if (ops->get_bypass) {
  2711. status = device_create_file(dev, &dev_attr_bypass);
  2712. if (status < 0)
  2713. return status;
  2714. }
  2715. /* some attributes are type-specific */
  2716. if (rdev->desc->type == REGULATOR_CURRENT) {
  2717. status = device_create_file(dev, &dev_attr_requested_microamps);
  2718. if (status < 0)
  2719. return status;
  2720. }
  2721. /* all the other attributes exist to support constraints;
  2722. * don't show them if there are no constraints, or if the
  2723. * relevant supporting methods are missing.
  2724. */
  2725. if (!rdev->constraints)
  2726. return status;
  2727. /* constraints need specific supporting methods */
  2728. if (ops->set_voltage || ops->set_voltage_sel) {
  2729. status = device_create_file(dev, &dev_attr_min_microvolts);
  2730. if (status < 0)
  2731. return status;
  2732. status = device_create_file(dev, &dev_attr_max_microvolts);
  2733. if (status < 0)
  2734. return status;
  2735. }
  2736. if (ops->set_current_limit) {
  2737. status = device_create_file(dev, &dev_attr_min_microamps);
  2738. if (status < 0)
  2739. return status;
  2740. status = device_create_file(dev, &dev_attr_max_microamps);
  2741. if (status < 0)
  2742. return status;
  2743. }
  2744. status = device_create_file(dev, &dev_attr_suspend_standby_state);
  2745. if (status < 0)
  2746. return status;
  2747. status = device_create_file(dev, &dev_attr_suspend_mem_state);
  2748. if (status < 0)
  2749. return status;
  2750. status = device_create_file(dev, &dev_attr_suspend_disk_state);
  2751. if (status < 0)
  2752. return status;
  2753. if (ops->set_suspend_voltage) {
  2754. status = device_create_file(dev,
  2755. &dev_attr_suspend_standby_microvolts);
  2756. if (status < 0)
  2757. return status;
  2758. status = device_create_file(dev,
  2759. &dev_attr_suspend_mem_microvolts);
  2760. if (status < 0)
  2761. return status;
  2762. status = device_create_file(dev,
  2763. &dev_attr_suspend_disk_microvolts);
  2764. if (status < 0)
  2765. return status;
  2766. }
  2767. if (ops->set_suspend_mode) {
  2768. status = device_create_file(dev,
  2769. &dev_attr_suspend_standby_mode);
  2770. if (status < 0)
  2771. return status;
  2772. status = device_create_file(dev,
  2773. &dev_attr_suspend_mem_mode);
  2774. if (status < 0)
  2775. return status;
  2776. status = device_create_file(dev,
  2777. &dev_attr_suspend_disk_mode);
  2778. if (status < 0)
  2779. return status;
  2780. }
  2781. return status;
  2782. }
  2783. static void rdev_init_debugfs(struct regulator_dev *rdev)
  2784. {
  2785. rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
  2786. if (!rdev->debugfs) {
  2787. rdev_warn(rdev, "Failed to create debugfs directory\n");
  2788. return;
  2789. }
  2790. debugfs_create_u32("use_count", 0444, rdev->debugfs,
  2791. &rdev->use_count);
  2792. debugfs_create_u32("open_count", 0444, rdev->debugfs,
  2793. &rdev->open_count);
  2794. debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
  2795. &rdev->bypass_count);
  2796. }
  2797. /**
  2798. * regulator_register - register regulator
  2799. * @regulator_desc: regulator to register
  2800. * @config: runtime configuration for regulator
  2801. *
  2802. * Called by regulator drivers to register a regulator.
  2803. * Returns 0 on success.
  2804. */
  2805. struct regulator_dev *
  2806. regulator_register(const struct regulator_desc *regulator_desc,
  2807. const struct regulator_config *config)
  2808. {
  2809. const struct regulation_constraints *constraints = NULL;
  2810. const struct regulator_init_data *init_data;
  2811. static atomic_t regulator_no = ATOMIC_INIT(0);
  2812. struct regulator_dev *rdev;
  2813. struct device *dev;
  2814. int ret, i;
  2815. const char *supply = NULL;
  2816. if (regulator_desc == NULL || config == NULL)
  2817. return ERR_PTR(-EINVAL);
  2818. dev = config->dev;
  2819. WARN_ON(!dev);
  2820. if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
  2821. return ERR_PTR(-EINVAL);
  2822. if (regulator_desc->type != REGULATOR_VOLTAGE &&
  2823. regulator_desc->type != REGULATOR_CURRENT)
  2824. return ERR_PTR(-EINVAL);
  2825. /* Only one of each should be implemented */
  2826. WARN_ON(regulator_desc->ops->get_voltage &&
  2827. regulator_desc->ops->get_voltage_sel);
  2828. WARN_ON(regulator_desc->ops->set_voltage &&
  2829. regulator_desc->ops->set_voltage_sel);
  2830. /* If we're using selectors we must implement list_voltage. */
  2831. if (regulator_desc->ops->get_voltage_sel &&
  2832. !regulator_desc->ops->list_voltage) {
  2833. return ERR_PTR(-EINVAL);
  2834. }
  2835. if (regulator_desc->ops->set_voltage_sel &&
  2836. !regulator_desc->ops->list_voltage) {
  2837. return ERR_PTR(-EINVAL);
  2838. }
  2839. init_data = config->init_data;
  2840. rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
  2841. if (rdev == NULL)
  2842. return ERR_PTR(-ENOMEM);
  2843. mutex_lock(&regulator_list_mutex);
  2844. mutex_init(&rdev->mutex);
  2845. rdev->reg_data = config->driver_data;
  2846. rdev->owner = regulator_desc->owner;
  2847. rdev->desc = regulator_desc;
  2848. if (config->regmap)
  2849. rdev->regmap = config->regmap;
  2850. else if (dev_get_regmap(dev, NULL))
  2851. rdev->regmap = dev_get_regmap(dev, NULL);
  2852. else if (dev->parent)
  2853. rdev->regmap = dev_get_regmap(dev->parent, NULL);
  2854. INIT_LIST_HEAD(&rdev->consumer_list);
  2855. INIT_LIST_HEAD(&rdev->list);
  2856. BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
  2857. INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
  2858. /* preform any regulator specific init */
  2859. if (init_data && init_data->regulator_init) {
  2860. ret = init_data->regulator_init(rdev->reg_data);
  2861. if (ret < 0)
  2862. goto clean;
  2863. }
  2864. /* register with sysfs */
  2865. rdev->dev.class = &regulator_class;
  2866. rdev->dev.of_node = config->of_node;
  2867. rdev->dev.parent = dev;
  2868. dev_set_name(&rdev->dev, "regulator.%d",
  2869. atomic_inc_return(&regulator_no) - 1);
  2870. ret = device_register(&rdev->dev);
  2871. if (ret != 0) {
  2872. put_device(&rdev->dev);
  2873. goto clean;
  2874. }
  2875. dev_set_drvdata(&rdev->dev, rdev);
  2876. if (config->ena_gpio && gpio_is_valid(config->ena_gpio)) {
  2877. ret = gpio_request_one(config->ena_gpio,
  2878. GPIOF_DIR_OUT | config->ena_gpio_flags,
  2879. rdev_get_name(rdev));
  2880. if (ret != 0) {
  2881. rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
  2882. config->ena_gpio, ret);
  2883. goto clean;
  2884. }
  2885. rdev->ena_gpio = config->ena_gpio;
  2886. rdev->ena_gpio_invert = config->ena_gpio_invert;
  2887. if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
  2888. rdev->ena_gpio_state = 1;
  2889. if (rdev->ena_gpio_invert)
  2890. rdev->ena_gpio_state = !rdev->ena_gpio_state;
  2891. }
  2892. /* set regulator constraints */
  2893. if (init_data)
  2894. constraints = &init_data->constraints;
  2895. ret = set_machine_constraints(rdev, constraints);
  2896. if (ret < 0)
  2897. goto scrub;
  2898. /* add attributes supported by this regulator */
  2899. ret = add_regulator_attributes(rdev);
  2900. if (ret < 0)
  2901. goto scrub;
  2902. if (init_data && init_data->supply_regulator)
  2903. supply = init_data->supply_regulator;
  2904. else if (regulator_desc->supply_name)
  2905. supply = regulator_desc->supply_name;
  2906. if (supply) {
  2907. struct regulator_dev *r;
  2908. r = regulator_dev_lookup(dev, supply, &ret);
  2909. if (!r) {
  2910. dev_err(dev, "Failed to find supply %s\n", supply);
  2911. ret = -EPROBE_DEFER;
  2912. goto scrub;
  2913. }
  2914. ret = set_supply(rdev, r);
  2915. if (ret < 0)
  2916. goto scrub;
  2917. /* Enable supply if rail is enabled */
  2918. if (_regulator_is_enabled(rdev)) {
  2919. ret = regulator_enable(rdev->supply);
  2920. if (ret < 0)
  2921. goto scrub;
  2922. }
  2923. }
  2924. /* add consumers devices */
  2925. if (init_data) {
  2926. for (i = 0; i < init_data->num_consumer_supplies; i++) {
  2927. ret = set_consumer_device_supply(rdev,
  2928. init_data->consumer_supplies[i].dev_name,
  2929. init_data->consumer_supplies[i].supply);
  2930. if (ret < 0) {
  2931. dev_err(dev, "Failed to set supply %s\n",
  2932. init_data->consumer_supplies[i].supply);
  2933. goto unset_supplies;
  2934. }
  2935. }
  2936. }
  2937. list_add(&rdev->list, &regulator_list);
  2938. rdev_init_debugfs(rdev);
  2939. out:
  2940. mutex_unlock(&regulator_list_mutex);
  2941. return rdev;
  2942. unset_supplies:
  2943. unset_regulator_supplies(rdev);
  2944. scrub:
  2945. if (rdev->supply)
  2946. regulator_put(rdev->supply);
  2947. if (rdev->ena_gpio)
  2948. gpio_free(rdev->ena_gpio);
  2949. kfree(rdev->constraints);
  2950. device_unregister(&rdev->dev);
  2951. /* device core frees rdev */
  2952. rdev = ERR_PTR(ret);
  2953. goto out;
  2954. clean:
  2955. kfree(rdev);
  2956. rdev = ERR_PTR(ret);
  2957. goto out;
  2958. }
  2959. EXPORT_SYMBOL_GPL(regulator_register);
  2960. /**
  2961. * regulator_unregister - unregister regulator
  2962. * @rdev: regulator to unregister
  2963. *
  2964. * Called by regulator drivers to unregister a regulator.
  2965. */
  2966. void regulator_unregister(struct regulator_dev *rdev)
  2967. {
  2968. if (rdev == NULL)
  2969. return;
  2970. if (rdev->supply)
  2971. regulator_put(rdev->supply);
  2972. mutex_lock(&regulator_list_mutex);
  2973. debugfs_remove_recursive(rdev->debugfs);
  2974. flush_work(&rdev->disable_work.work);
  2975. WARN_ON(rdev->open_count);
  2976. unset_regulator_supplies(rdev);
  2977. list_del(&rdev->list);
  2978. kfree(rdev->constraints);
  2979. if (rdev->ena_gpio)
  2980. gpio_free(rdev->ena_gpio);
  2981. device_unregister(&rdev->dev);
  2982. mutex_unlock(&regulator_list_mutex);
  2983. }
  2984. EXPORT_SYMBOL_GPL(regulator_unregister);
  2985. /**
  2986. * regulator_suspend_prepare - prepare regulators for system wide suspend
  2987. * @state: system suspend state
  2988. *
  2989. * Configure each regulator with it's suspend operating parameters for state.
  2990. * This will usually be called by machine suspend code prior to supending.
  2991. */
  2992. int regulator_suspend_prepare(suspend_state_t state)
  2993. {
  2994. struct regulator_dev *rdev;
  2995. int ret = 0;
  2996. /* ON is handled by regulator active state */
  2997. if (state == PM_SUSPEND_ON)
  2998. return -EINVAL;
  2999. mutex_lock(&regulator_list_mutex);
  3000. list_for_each_entry(rdev, &regulator_list, list) {
  3001. mutex_lock(&rdev->mutex);
  3002. ret = suspend_prepare(rdev, state);
  3003. mutex_unlock(&rdev->mutex);
  3004. if (ret < 0) {
  3005. rdev_err(rdev, "failed to prepare\n");
  3006. goto out;
  3007. }
  3008. }
  3009. out:
  3010. mutex_unlock(&regulator_list_mutex);
  3011. return ret;
  3012. }
  3013. EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
  3014. /**
  3015. * regulator_suspend_finish - resume regulators from system wide suspend
  3016. *
  3017. * Turn on regulators that might be turned off by regulator_suspend_prepare
  3018. * and that should be turned on according to the regulators properties.
  3019. */
  3020. int regulator_suspend_finish(void)
  3021. {
  3022. struct regulator_dev *rdev;
  3023. int ret = 0, error;
  3024. mutex_lock(&regulator_list_mutex);
  3025. list_for_each_entry(rdev, &regulator_list, list) {
  3026. struct regulator_ops *ops = rdev->desc->ops;
  3027. mutex_lock(&rdev->mutex);
  3028. if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
  3029. ops->enable) {
  3030. error = ops->enable(rdev);
  3031. if (error)
  3032. ret = error;
  3033. } else {
  3034. if (!has_full_constraints)
  3035. goto unlock;
  3036. if (!ops->disable)
  3037. goto unlock;
  3038. if (!_regulator_is_enabled(rdev))
  3039. goto unlock;
  3040. error = ops->disable(rdev);
  3041. if (error)
  3042. ret = error;
  3043. }
  3044. unlock:
  3045. mutex_unlock(&rdev->mutex);
  3046. }
  3047. mutex_unlock(&regulator_list_mutex);
  3048. return ret;
  3049. }
  3050. EXPORT_SYMBOL_GPL(regulator_suspend_finish);
  3051. /**
  3052. * regulator_has_full_constraints - the system has fully specified constraints
  3053. *
  3054. * Calling this function will cause the regulator API to disable all
  3055. * regulators which have a zero use count and don't have an always_on
  3056. * constraint in a late_initcall.
  3057. *
  3058. * The intention is that this will become the default behaviour in a
  3059. * future kernel release so users are encouraged to use this facility
  3060. * now.
  3061. */
  3062. void regulator_has_full_constraints(void)
  3063. {
  3064. has_full_constraints = 1;
  3065. }
  3066. EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
  3067. /**
  3068. * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
  3069. *
  3070. * Calling this function will cause the regulator API to provide a
  3071. * dummy regulator to consumers if no physical regulator is found,
  3072. * allowing most consumers to proceed as though a regulator were
  3073. * configured. This allows systems such as those with software
  3074. * controllable regulators for the CPU core only to be brought up more
  3075. * readily.
  3076. */
  3077. void regulator_use_dummy_regulator(void)
  3078. {
  3079. board_wants_dummy_regulator = true;
  3080. }
  3081. EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
  3082. /**
  3083. * rdev_get_drvdata - get rdev regulator driver data
  3084. * @rdev: regulator
  3085. *
  3086. * Get rdev regulator driver private data. This call can be used in the
  3087. * regulator driver context.
  3088. */
  3089. void *rdev_get_drvdata(struct regulator_dev *rdev)
  3090. {
  3091. return rdev->reg_data;
  3092. }
  3093. EXPORT_SYMBOL_GPL(rdev_get_drvdata);
  3094. /**
  3095. * regulator_get_drvdata - get regulator driver data
  3096. * @regulator: regulator
  3097. *
  3098. * Get regulator driver private data. This call can be used in the consumer
  3099. * driver context when non API regulator specific functions need to be called.
  3100. */
  3101. void *regulator_get_drvdata(struct regulator *regulator)
  3102. {
  3103. return regulator->rdev->reg_data;
  3104. }
  3105. EXPORT_SYMBOL_GPL(regulator_get_drvdata);
  3106. /**
  3107. * regulator_set_drvdata - set regulator driver data
  3108. * @regulator: regulator
  3109. * @data: data
  3110. */
  3111. void regulator_set_drvdata(struct regulator *regulator, void *data)
  3112. {
  3113. regulator->rdev->reg_data = data;
  3114. }
  3115. EXPORT_SYMBOL_GPL(regulator_set_drvdata);
  3116. /**
  3117. * regulator_get_id - get regulator ID
  3118. * @rdev: regulator
  3119. */
  3120. int rdev_get_id(struct regulator_dev *rdev)
  3121. {
  3122. return rdev->desc->id;
  3123. }
  3124. EXPORT_SYMBOL_GPL(rdev_get_id);
  3125. struct device *rdev_get_dev(struct regulator_dev *rdev)
  3126. {
  3127. return &rdev->dev;
  3128. }
  3129. EXPORT_SYMBOL_GPL(rdev_get_dev);
  3130. void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
  3131. {
  3132. return reg_init_data->driver_data;
  3133. }
  3134. EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
  3135. #ifdef CONFIG_DEBUG_FS
  3136. static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
  3137. size_t count, loff_t *ppos)
  3138. {
  3139. char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
  3140. ssize_t len, ret = 0;
  3141. struct regulator_map *map;
  3142. if (!buf)
  3143. return -ENOMEM;
  3144. list_for_each_entry(map, &regulator_map_list, list) {
  3145. len = snprintf(buf + ret, PAGE_SIZE - ret,
  3146. "%s -> %s.%s\n",
  3147. rdev_get_name(map->regulator), map->dev_name,
  3148. map->supply);
  3149. if (len >= 0)
  3150. ret += len;
  3151. if (ret > PAGE_SIZE) {
  3152. ret = PAGE_SIZE;
  3153. break;
  3154. }
  3155. }
  3156. ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
  3157. kfree(buf);
  3158. return ret;
  3159. }
  3160. #endif
  3161. static const struct file_operations supply_map_fops = {
  3162. #ifdef CONFIG_DEBUG_FS
  3163. .read = supply_map_read_file,
  3164. .llseek = default_llseek,
  3165. #endif
  3166. };
  3167. static int __init regulator_init(void)
  3168. {
  3169. int ret;
  3170. ret = class_register(&regulator_class);
  3171. debugfs_root = debugfs_create_dir("regulator", NULL);
  3172. if (!debugfs_root)
  3173. pr_warn("regulator: Failed to create debugfs directory\n");
  3174. debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
  3175. &supply_map_fops);
  3176. regulator_dummy_init();
  3177. return ret;
  3178. }
  3179. /* init early to allow our consumers to complete system booting */
  3180. core_initcall(regulator_init);
  3181. static int __init regulator_init_complete(void)
  3182. {
  3183. struct regulator_dev *rdev;
  3184. struct regulator_ops *ops;
  3185. struct regulation_constraints *c;
  3186. int enabled, ret;
  3187. /*
  3188. * Since DT doesn't provide an idiomatic mechanism for
  3189. * enabling full constraints and since it's much more natural
  3190. * with DT to provide them just assume that a DT enabled
  3191. * system has full constraints.
  3192. */
  3193. if (of_have_populated_dt())
  3194. has_full_constraints = true;
  3195. mutex_lock(&regulator_list_mutex);
  3196. /* If we have a full configuration then disable any regulators
  3197. * which are not in use or always_on. This will become the
  3198. * default behaviour in the future.
  3199. */
  3200. list_for_each_entry(rdev, &regulator_list, list) {
  3201. ops = rdev->desc->ops;
  3202. c = rdev->constraints;
  3203. if (!ops->disable || (c && c->always_on))
  3204. continue;
  3205. mutex_lock(&rdev->mutex);
  3206. if (rdev->use_count)
  3207. goto unlock;
  3208. /* If we can't read the status assume it's on. */
  3209. if (ops->is_enabled)
  3210. enabled = ops->is_enabled(rdev);
  3211. else
  3212. enabled = 1;
  3213. if (!enabled)
  3214. goto unlock;
  3215. if (has_full_constraints) {
  3216. /* We log since this may kill the system if it
  3217. * goes wrong. */
  3218. rdev_info(rdev, "disabling\n");
  3219. ret = ops->disable(rdev);
  3220. if (ret != 0) {
  3221. rdev_err(rdev, "couldn't disable: %d\n", ret);
  3222. }
  3223. } else {
  3224. /* The intention is that in future we will
  3225. * assume that full constraints are provided
  3226. * so warn even if we aren't going to do
  3227. * anything here.
  3228. */
  3229. rdev_warn(rdev, "incomplete constraints, leaving on\n");
  3230. }
  3231. unlock:
  3232. mutex_unlock(&rdev->mutex);
  3233. }
  3234. mutex_unlock(&regulator_list_mutex);
  3235. return 0;
  3236. }
  3237. late_initcall(regulator_init_complete);