core.c 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798
  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. /* Locks held by regulator_put() */
  1181. static void _regulator_put(struct regulator *regulator)
  1182. {
  1183. struct regulator_dev *rdev;
  1184. if (regulator == NULL || IS_ERR(regulator))
  1185. return;
  1186. rdev = regulator->rdev;
  1187. debugfs_remove_recursive(regulator->debugfs);
  1188. /* remove any sysfs entries */
  1189. if (regulator->dev)
  1190. sysfs_remove_link(&rdev->dev.kobj, regulator->supply_name);
  1191. kfree(regulator->supply_name);
  1192. list_del(&regulator->list);
  1193. kfree(regulator);
  1194. rdev->open_count--;
  1195. rdev->exclusive = 0;
  1196. module_put(rdev->owner);
  1197. }
  1198. /**
  1199. * regulator_put - "free" the regulator source
  1200. * @regulator: regulator source
  1201. *
  1202. * Note: drivers must ensure that all regulator_enable calls made on this
  1203. * regulator source are balanced by regulator_disable calls prior to calling
  1204. * this function.
  1205. */
  1206. void regulator_put(struct regulator *regulator)
  1207. {
  1208. mutex_lock(&regulator_list_mutex);
  1209. _regulator_put(regulator);
  1210. mutex_unlock(&regulator_list_mutex);
  1211. }
  1212. EXPORT_SYMBOL_GPL(regulator_put);
  1213. static int devm_regulator_match(struct device *dev, void *res, void *data)
  1214. {
  1215. struct regulator **r = res;
  1216. if (!r || !*r) {
  1217. WARN_ON(!r || !*r);
  1218. return 0;
  1219. }
  1220. return *r == data;
  1221. }
  1222. /**
  1223. * devm_regulator_put - Resource managed regulator_put()
  1224. * @regulator: regulator to free
  1225. *
  1226. * Deallocate a regulator allocated with devm_regulator_get(). Normally
  1227. * this function will not need to be called and the resource management
  1228. * code will ensure that the resource is freed.
  1229. */
  1230. void devm_regulator_put(struct regulator *regulator)
  1231. {
  1232. int rc;
  1233. rc = devres_release(regulator->dev, devm_regulator_release,
  1234. devm_regulator_match, regulator);
  1235. if (rc != 0)
  1236. WARN_ON(rc);
  1237. }
  1238. EXPORT_SYMBOL_GPL(devm_regulator_put);
  1239. static int _regulator_do_enable(struct regulator_dev *rdev)
  1240. {
  1241. int ret, delay;
  1242. /* Query before enabling in case configuration dependent. */
  1243. ret = _regulator_get_enable_time(rdev);
  1244. if (ret >= 0) {
  1245. delay = ret;
  1246. } else {
  1247. rdev_warn(rdev, "enable_time() failed: %d\n", ret);
  1248. delay = 0;
  1249. }
  1250. trace_regulator_enable(rdev_get_name(rdev));
  1251. if (rdev->ena_gpio) {
  1252. gpio_set_value_cansleep(rdev->ena_gpio,
  1253. !rdev->ena_gpio_invert);
  1254. rdev->ena_gpio_state = 1;
  1255. } else if (rdev->desc->ops->enable) {
  1256. ret = rdev->desc->ops->enable(rdev);
  1257. if (ret < 0)
  1258. return ret;
  1259. } else {
  1260. return -EINVAL;
  1261. }
  1262. /* Allow the regulator to ramp; it would be useful to extend
  1263. * this for bulk operations so that the regulators can ramp
  1264. * together. */
  1265. trace_regulator_enable_delay(rdev_get_name(rdev));
  1266. if (delay >= 1000) {
  1267. mdelay(delay / 1000);
  1268. udelay(delay % 1000);
  1269. } else if (delay) {
  1270. udelay(delay);
  1271. }
  1272. trace_regulator_enable_complete(rdev_get_name(rdev));
  1273. return 0;
  1274. }
  1275. /* locks held by regulator_enable() */
  1276. static int _regulator_enable(struct regulator_dev *rdev)
  1277. {
  1278. int ret;
  1279. /* check voltage and requested load before enabling */
  1280. if (rdev->constraints &&
  1281. (rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_DRMS))
  1282. drms_uA_update(rdev);
  1283. if (rdev->use_count == 0) {
  1284. /* The regulator may on if it's not switchable or left on */
  1285. ret = _regulator_is_enabled(rdev);
  1286. if (ret == -EINVAL || ret == 0) {
  1287. if (!_regulator_can_change_status(rdev))
  1288. return -EPERM;
  1289. ret = _regulator_do_enable(rdev);
  1290. if (ret < 0)
  1291. return ret;
  1292. } else if (ret < 0) {
  1293. rdev_err(rdev, "is_enabled() failed: %d\n", ret);
  1294. return ret;
  1295. }
  1296. /* Fallthrough on positive return values - already enabled */
  1297. }
  1298. rdev->use_count++;
  1299. return 0;
  1300. }
  1301. /**
  1302. * regulator_enable - enable regulator output
  1303. * @regulator: regulator source
  1304. *
  1305. * Request that the regulator be enabled with the regulator output at
  1306. * the predefined voltage or current value. Calls to regulator_enable()
  1307. * must be balanced with calls to regulator_disable().
  1308. *
  1309. * NOTE: the output value can be set by other drivers, boot loader or may be
  1310. * hardwired in the regulator.
  1311. */
  1312. int regulator_enable(struct regulator *regulator)
  1313. {
  1314. struct regulator_dev *rdev = regulator->rdev;
  1315. int ret = 0;
  1316. if (regulator->always_on)
  1317. return 0;
  1318. if (rdev->supply) {
  1319. ret = regulator_enable(rdev->supply);
  1320. if (ret != 0)
  1321. return ret;
  1322. }
  1323. mutex_lock(&rdev->mutex);
  1324. ret = _regulator_enable(rdev);
  1325. mutex_unlock(&rdev->mutex);
  1326. if (ret != 0 && rdev->supply)
  1327. regulator_disable(rdev->supply);
  1328. return ret;
  1329. }
  1330. EXPORT_SYMBOL_GPL(regulator_enable);
  1331. static int _regulator_do_disable(struct regulator_dev *rdev)
  1332. {
  1333. int ret;
  1334. trace_regulator_disable(rdev_get_name(rdev));
  1335. if (rdev->ena_gpio) {
  1336. gpio_set_value_cansleep(rdev->ena_gpio,
  1337. rdev->ena_gpio_invert);
  1338. rdev->ena_gpio_state = 0;
  1339. } else if (rdev->desc->ops->disable) {
  1340. ret = rdev->desc->ops->disable(rdev);
  1341. if (ret != 0)
  1342. return ret;
  1343. }
  1344. trace_regulator_disable_complete(rdev_get_name(rdev));
  1345. _notifier_call_chain(rdev, REGULATOR_EVENT_DISABLE,
  1346. NULL);
  1347. return 0;
  1348. }
  1349. /* locks held by regulator_disable() */
  1350. static int _regulator_disable(struct regulator_dev *rdev)
  1351. {
  1352. int ret = 0;
  1353. if (WARN(rdev->use_count <= 0,
  1354. "unbalanced disables for %s\n", rdev_get_name(rdev)))
  1355. return -EIO;
  1356. /* are we the last user and permitted to disable ? */
  1357. if (rdev->use_count == 1 &&
  1358. (rdev->constraints && !rdev->constraints->always_on)) {
  1359. /* we are last user */
  1360. if (_regulator_can_change_status(rdev)) {
  1361. ret = _regulator_do_disable(rdev);
  1362. if (ret < 0) {
  1363. rdev_err(rdev, "failed to disable\n");
  1364. return ret;
  1365. }
  1366. }
  1367. rdev->use_count = 0;
  1368. } else if (rdev->use_count > 1) {
  1369. if (rdev->constraints &&
  1370. (rdev->constraints->valid_ops_mask &
  1371. REGULATOR_CHANGE_DRMS))
  1372. drms_uA_update(rdev);
  1373. rdev->use_count--;
  1374. }
  1375. return ret;
  1376. }
  1377. /**
  1378. * regulator_disable - disable regulator output
  1379. * @regulator: regulator source
  1380. *
  1381. * Disable the regulator output voltage or current. Calls to
  1382. * regulator_enable() must be balanced with calls to
  1383. * regulator_disable().
  1384. *
  1385. * NOTE: this will only disable the regulator output if no other consumer
  1386. * devices have it enabled, the regulator device supports disabling and
  1387. * machine constraints permit this operation.
  1388. */
  1389. int regulator_disable(struct regulator *regulator)
  1390. {
  1391. struct regulator_dev *rdev = regulator->rdev;
  1392. int ret = 0;
  1393. if (regulator->always_on)
  1394. return 0;
  1395. mutex_lock(&rdev->mutex);
  1396. ret = _regulator_disable(rdev);
  1397. mutex_unlock(&rdev->mutex);
  1398. if (ret == 0 && rdev->supply)
  1399. regulator_disable(rdev->supply);
  1400. return ret;
  1401. }
  1402. EXPORT_SYMBOL_GPL(regulator_disable);
  1403. /* locks held by regulator_force_disable() */
  1404. static int _regulator_force_disable(struct regulator_dev *rdev)
  1405. {
  1406. int ret = 0;
  1407. /* force disable */
  1408. if (rdev->desc->ops->disable) {
  1409. /* ah well, who wants to live forever... */
  1410. ret = rdev->desc->ops->disable(rdev);
  1411. if (ret < 0) {
  1412. rdev_err(rdev, "failed to force disable\n");
  1413. return ret;
  1414. }
  1415. /* notify other consumers that power has been forced off */
  1416. _notifier_call_chain(rdev, REGULATOR_EVENT_FORCE_DISABLE |
  1417. REGULATOR_EVENT_DISABLE, NULL);
  1418. }
  1419. return ret;
  1420. }
  1421. /**
  1422. * regulator_force_disable - force disable regulator output
  1423. * @regulator: regulator source
  1424. *
  1425. * Forcibly disable the regulator output voltage or current.
  1426. * NOTE: this *will* disable the regulator output even if other consumer
  1427. * devices have it enabled. This should be used for situations when device
  1428. * damage will likely occur if the regulator is not disabled (e.g. over temp).
  1429. */
  1430. int regulator_force_disable(struct regulator *regulator)
  1431. {
  1432. struct regulator_dev *rdev = regulator->rdev;
  1433. int ret;
  1434. mutex_lock(&rdev->mutex);
  1435. regulator->uA_load = 0;
  1436. ret = _regulator_force_disable(regulator->rdev);
  1437. mutex_unlock(&rdev->mutex);
  1438. if (rdev->supply)
  1439. while (rdev->open_count--)
  1440. regulator_disable(rdev->supply);
  1441. return ret;
  1442. }
  1443. EXPORT_SYMBOL_GPL(regulator_force_disable);
  1444. static void regulator_disable_work(struct work_struct *work)
  1445. {
  1446. struct regulator_dev *rdev = container_of(work, struct regulator_dev,
  1447. disable_work.work);
  1448. int count, i, ret;
  1449. mutex_lock(&rdev->mutex);
  1450. BUG_ON(!rdev->deferred_disables);
  1451. count = rdev->deferred_disables;
  1452. rdev->deferred_disables = 0;
  1453. for (i = 0; i < count; i++) {
  1454. ret = _regulator_disable(rdev);
  1455. if (ret != 0)
  1456. rdev_err(rdev, "Deferred disable failed: %d\n", ret);
  1457. }
  1458. mutex_unlock(&rdev->mutex);
  1459. if (rdev->supply) {
  1460. for (i = 0; i < count; i++) {
  1461. ret = regulator_disable(rdev->supply);
  1462. if (ret != 0) {
  1463. rdev_err(rdev,
  1464. "Supply disable failed: %d\n", ret);
  1465. }
  1466. }
  1467. }
  1468. }
  1469. /**
  1470. * regulator_disable_deferred - disable regulator output with delay
  1471. * @regulator: regulator source
  1472. * @ms: miliseconds until the regulator is disabled
  1473. *
  1474. * Execute regulator_disable() on the regulator after a delay. This
  1475. * is intended for use with devices that require some time to quiesce.
  1476. *
  1477. * NOTE: this will only disable the regulator output if no other consumer
  1478. * devices have it enabled, the regulator device supports disabling and
  1479. * machine constraints permit this operation.
  1480. */
  1481. int regulator_disable_deferred(struct regulator *regulator, int ms)
  1482. {
  1483. struct regulator_dev *rdev = regulator->rdev;
  1484. int ret;
  1485. if (regulator->always_on)
  1486. return 0;
  1487. if (!ms)
  1488. return regulator_disable(regulator);
  1489. mutex_lock(&rdev->mutex);
  1490. rdev->deferred_disables++;
  1491. mutex_unlock(&rdev->mutex);
  1492. ret = schedule_delayed_work(&rdev->disable_work,
  1493. msecs_to_jiffies(ms));
  1494. if (ret < 0)
  1495. return ret;
  1496. else
  1497. return 0;
  1498. }
  1499. EXPORT_SYMBOL_GPL(regulator_disable_deferred);
  1500. /**
  1501. * regulator_is_enabled_regmap - standard is_enabled() for regmap users
  1502. *
  1503. * @rdev: regulator to operate on
  1504. *
  1505. * Regulators that use regmap for their register I/O can set the
  1506. * enable_reg and enable_mask fields in their descriptor and then use
  1507. * this as their is_enabled operation, saving some code.
  1508. */
  1509. int regulator_is_enabled_regmap(struct regulator_dev *rdev)
  1510. {
  1511. unsigned int val;
  1512. int ret;
  1513. ret = regmap_read(rdev->regmap, rdev->desc->enable_reg, &val);
  1514. if (ret != 0)
  1515. return ret;
  1516. return (val & rdev->desc->enable_mask) != 0;
  1517. }
  1518. EXPORT_SYMBOL_GPL(regulator_is_enabled_regmap);
  1519. /**
  1520. * regulator_enable_regmap - standard enable() for regmap users
  1521. *
  1522. * @rdev: regulator to operate on
  1523. *
  1524. * Regulators that use regmap for their register I/O can set the
  1525. * enable_reg and enable_mask fields in their descriptor and then use
  1526. * this as their enable() operation, saving some code.
  1527. */
  1528. int regulator_enable_regmap(struct regulator_dev *rdev)
  1529. {
  1530. return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
  1531. rdev->desc->enable_mask,
  1532. rdev->desc->enable_mask);
  1533. }
  1534. EXPORT_SYMBOL_GPL(regulator_enable_regmap);
  1535. /**
  1536. * regulator_disable_regmap - standard disable() for regmap users
  1537. *
  1538. * @rdev: regulator to operate on
  1539. *
  1540. * Regulators that use regmap for their register I/O can set the
  1541. * enable_reg and enable_mask fields in their descriptor and then use
  1542. * this as their disable() operation, saving some code.
  1543. */
  1544. int regulator_disable_regmap(struct regulator_dev *rdev)
  1545. {
  1546. return regmap_update_bits(rdev->regmap, rdev->desc->enable_reg,
  1547. rdev->desc->enable_mask, 0);
  1548. }
  1549. EXPORT_SYMBOL_GPL(regulator_disable_regmap);
  1550. static int _regulator_is_enabled(struct regulator_dev *rdev)
  1551. {
  1552. /* A GPIO control always takes precedence */
  1553. if (rdev->ena_gpio)
  1554. return rdev->ena_gpio_state;
  1555. /* If we don't know then assume that the regulator is always on */
  1556. if (!rdev->desc->ops->is_enabled)
  1557. return 1;
  1558. return rdev->desc->ops->is_enabled(rdev);
  1559. }
  1560. /**
  1561. * regulator_is_enabled - is the regulator output enabled
  1562. * @regulator: regulator source
  1563. *
  1564. * Returns positive if the regulator driver backing the source/client
  1565. * has requested that the device be enabled, zero if it hasn't, else a
  1566. * negative errno code.
  1567. *
  1568. * Note that the device backing this regulator handle can have multiple
  1569. * users, so it might be enabled even if regulator_enable() was never
  1570. * called for this particular source.
  1571. */
  1572. int regulator_is_enabled(struct regulator *regulator)
  1573. {
  1574. int ret;
  1575. if (regulator->always_on)
  1576. return 1;
  1577. mutex_lock(&regulator->rdev->mutex);
  1578. ret = _regulator_is_enabled(regulator->rdev);
  1579. mutex_unlock(&regulator->rdev->mutex);
  1580. return ret;
  1581. }
  1582. EXPORT_SYMBOL_GPL(regulator_is_enabled);
  1583. /**
  1584. * regulator_count_voltages - count regulator_list_voltage() selectors
  1585. * @regulator: regulator source
  1586. *
  1587. * Returns number of selectors, or negative errno. Selectors are
  1588. * numbered starting at zero, and typically correspond to bitfields
  1589. * in hardware registers.
  1590. */
  1591. int regulator_count_voltages(struct regulator *regulator)
  1592. {
  1593. struct regulator_dev *rdev = regulator->rdev;
  1594. return rdev->desc->n_voltages ? : -EINVAL;
  1595. }
  1596. EXPORT_SYMBOL_GPL(regulator_count_voltages);
  1597. /**
  1598. * regulator_list_voltage_linear - List voltages with simple calculation
  1599. *
  1600. * @rdev: Regulator device
  1601. * @selector: Selector to convert into a voltage
  1602. *
  1603. * Regulators with a simple linear mapping between voltages and
  1604. * selectors can set min_uV and uV_step in the regulator descriptor
  1605. * and then use this function as their list_voltage() operation,
  1606. */
  1607. int regulator_list_voltage_linear(struct regulator_dev *rdev,
  1608. unsigned int selector)
  1609. {
  1610. if (selector >= rdev->desc->n_voltages)
  1611. return -EINVAL;
  1612. return rdev->desc->min_uV + (rdev->desc->uV_step * selector);
  1613. }
  1614. EXPORT_SYMBOL_GPL(regulator_list_voltage_linear);
  1615. /**
  1616. * regulator_list_voltage_table - List voltages with table based mapping
  1617. *
  1618. * @rdev: Regulator device
  1619. * @selector: Selector to convert into a voltage
  1620. *
  1621. * Regulators with table based mapping between voltages and
  1622. * selectors can set volt_table in the regulator descriptor
  1623. * and then use this function as their list_voltage() operation.
  1624. */
  1625. int regulator_list_voltage_table(struct regulator_dev *rdev,
  1626. unsigned int selector)
  1627. {
  1628. if (!rdev->desc->volt_table) {
  1629. BUG_ON(!rdev->desc->volt_table);
  1630. return -EINVAL;
  1631. }
  1632. if (selector >= rdev->desc->n_voltages)
  1633. return -EINVAL;
  1634. return rdev->desc->volt_table[selector];
  1635. }
  1636. EXPORT_SYMBOL_GPL(regulator_list_voltage_table);
  1637. /**
  1638. * regulator_list_voltage - enumerate supported voltages
  1639. * @regulator: regulator source
  1640. * @selector: identify voltage to list
  1641. * Context: can sleep
  1642. *
  1643. * Returns a voltage that can be passed to @regulator_set_voltage(),
  1644. * zero if this selector code can't be used on this system, or a
  1645. * negative errno.
  1646. */
  1647. int regulator_list_voltage(struct regulator *regulator, unsigned selector)
  1648. {
  1649. struct regulator_dev *rdev = regulator->rdev;
  1650. struct regulator_ops *ops = rdev->desc->ops;
  1651. int ret;
  1652. if (!ops->list_voltage || selector >= rdev->desc->n_voltages)
  1653. return -EINVAL;
  1654. mutex_lock(&rdev->mutex);
  1655. ret = ops->list_voltage(rdev, selector);
  1656. mutex_unlock(&rdev->mutex);
  1657. if (ret > 0) {
  1658. if (ret < rdev->constraints->min_uV)
  1659. ret = 0;
  1660. else if (ret > rdev->constraints->max_uV)
  1661. ret = 0;
  1662. }
  1663. return ret;
  1664. }
  1665. EXPORT_SYMBOL_GPL(regulator_list_voltage);
  1666. /**
  1667. * regulator_is_supported_voltage - check if a voltage range can be supported
  1668. *
  1669. * @regulator: Regulator to check.
  1670. * @min_uV: Minimum required voltage in uV.
  1671. * @max_uV: Maximum required voltage in uV.
  1672. *
  1673. * Returns a boolean or a negative error code.
  1674. */
  1675. int regulator_is_supported_voltage(struct regulator *regulator,
  1676. int min_uV, int max_uV)
  1677. {
  1678. struct regulator_dev *rdev = regulator->rdev;
  1679. int i, voltages, ret;
  1680. /* If we can't change voltage check the current voltage */
  1681. if (!(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_VOLTAGE)) {
  1682. ret = regulator_get_voltage(regulator);
  1683. if (ret >= 0)
  1684. return (min_uV <= ret && ret <= max_uV);
  1685. else
  1686. return ret;
  1687. }
  1688. /* Any voltage within constrains range is fine? */
  1689. if (rdev->desc->continuous_voltage_range)
  1690. return min_uV >= rdev->constraints->min_uV &&
  1691. max_uV <= rdev->constraints->max_uV;
  1692. ret = regulator_count_voltages(regulator);
  1693. if (ret < 0)
  1694. return ret;
  1695. voltages = ret;
  1696. for (i = 0; i < voltages; i++) {
  1697. ret = regulator_list_voltage(regulator, i);
  1698. if (ret >= min_uV && ret <= max_uV)
  1699. return 1;
  1700. }
  1701. return 0;
  1702. }
  1703. EXPORT_SYMBOL_GPL(regulator_is_supported_voltage);
  1704. /**
  1705. * regulator_get_voltage_sel_regmap - standard get_voltage_sel for regmap users
  1706. *
  1707. * @rdev: regulator to operate on
  1708. *
  1709. * Regulators that use regmap for their register I/O can set the
  1710. * vsel_reg and vsel_mask fields in their descriptor and then use this
  1711. * as their get_voltage_vsel operation, saving some code.
  1712. */
  1713. int regulator_get_voltage_sel_regmap(struct regulator_dev *rdev)
  1714. {
  1715. unsigned int val;
  1716. int ret;
  1717. ret = regmap_read(rdev->regmap, rdev->desc->vsel_reg, &val);
  1718. if (ret != 0)
  1719. return ret;
  1720. val &= rdev->desc->vsel_mask;
  1721. val >>= ffs(rdev->desc->vsel_mask) - 1;
  1722. return val;
  1723. }
  1724. EXPORT_SYMBOL_GPL(regulator_get_voltage_sel_regmap);
  1725. /**
  1726. * regulator_set_voltage_sel_regmap - standard set_voltage_sel for regmap users
  1727. *
  1728. * @rdev: regulator to operate on
  1729. * @sel: Selector to set
  1730. *
  1731. * Regulators that use regmap for their register I/O can set the
  1732. * vsel_reg and vsel_mask fields in their descriptor and then use this
  1733. * as their set_voltage_vsel operation, saving some code.
  1734. */
  1735. int regulator_set_voltage_sel_regmap(struct regulator_dev *rdev, unsigned sel)
  1736. {
  1737. sel <<= ffs(rdev->desc->vsel_mask) - 1;
  1738. return regmap_update_bits(rdev->regmap, rdev->desc->vsel_reg,
  1739. rdev->desc->vsel_mask, sel);
  1740. }
  1741. EXPORT_SYMBOL_GPL(regulator_set_voltage_sel_regmap);
  1742. /**
  1743. * regulator_map_voltage_iterate - map_voltage() based on list_voltage()
  1744. *
  1745. * @rdev: Regulator to operate on
  1746. * @min_uV: Lower bound for voltage
  1747. * @max_uV: Upper bound for voltage
  1748. *
  1749. * Drivers implementing set_voltage_sel() and list_voltage() can use
  1750. * this as their map_voltage() operation. It will find a suitable
  1751. * voltage by calling list_voltage() until it gets something in bounds
  1752. * for the requested voltages.
  1753. */
  1754. int regulator_map_voltage_iterate(struct regulator_dev *rdev,
  1755. int min_uV, int max_uV)
  1756. {
  1757. int best_val = INT_MAX;
  1758. int selector = 0;
  1759. int i, ret;
  1760. /* Find the smallest voltage that falls within the specified
  1761. * range.
  1762. */
  1763. for (i = 0; i < rdev->desc->n_voltages; i++) {
  1764. ret = rdev->desc->ops->list_voltage(rdev, i);
  1765. if (ret < 0)
  1766. continue;
  1767. if (ret < best_val && ret >= min_uV && ret <= max_uV) {
  1768. best_val = ret;
  1769. selector = i;
  1770. }
  1771. }
  1772. if (best_val != INT_MAX)
  1773. return selector;
  1774. else
  1775. return -EINVAL;
  1776. }
  1777. EXPORT_SYMBOL_GPL(regulator_map_voltage_iterate);
  1778. /**
  1779. * regulator_map_voltage_linear - map_voltage() for simple linear mappings
  1780. *
  1781. * @rdev: Regulator to operate on
  1782. * @min_uV: Lower bound for voltage
  1783. * @max_uV: Upper bound for voltage
  1784. *
  1785. * Drivers providing min_uV and uV_step in their regulator_desc can
  1786. * use this as their map_voltage() operation.
  1787. */
  1788. int regulator_map_voltage_linear(struct regulator_dev *rdev,
  1789. int min_uV, int max_uV)
  1790. {
  1791. int ret, voltage;
  1792. /* Allow uV_step to be 0 for fixed voltage */
  1793. if (rdev->desc->n_voltages == 1 && rdev->desc->uV_step == 0) {
  1794. if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV)
  1795. return 0;
  1796. else
  1797. return -EINVAL;
  1798. }
  1799. if (!rdev->desc->uV_step) {
  1800. BUG_ON(!rdev->desc->uV_step);
  1801. return -EINVAL;
  1802. }
  1803. if (min_uV < rdev->desc->min_uV)
  1804. min_uV = rdev->desc->min_uV;
  1805. ret = DIV_ROUND_UP(min_uV - rdev->desc->min_uV, rdev->desc->uV_step);
  1806. if (ret < 0)
  1807. return ret;
  1808. /* Map back into a voltage to verify we're still in bounds */
  1809. voltage = rdev->desc->ops->list_voltage(rdev, ret);
  1810. if (voltage < min_uV || voltage > max_uV)
  1811. return -EINVAL;
  1812. return ret;
  1813. }
  1814. EXPORT_SYMBOL_GPL(regulator_map_voltage_linear);
  1815. static int _regulator_do_set_voltage(struct regulator_dev *rdev,
  1816. int min_uV, int max_uV)
  1817. {
  1818. int ret;
  1819. int delay = 0;
  1820. int best_val = 0;
  1821. unsigned int selector;
  1822. int old_selector = -1;
  1823. trace_regulator_set_voltage(rdev_get_name(rdev), min_uV, max_uV);
  1824. min_uV += rdev->constraints->uV_offset;
  1825. max_uV += rdev->constraints->uV_offset;
  1826. /*
  1827. * If we can't obtain the old selector there is not enough
  1828. * info to call set_voltage_time_sel().
  1829. */
  1830. if (_regulator_is_enabled(rdev) &&
  1831. rdev->desc->ops->set_voltage_time_sel &&
  1832. rdev->desc->ops->get_voltage_sel) {
  1833. old_selector = rdev->desc->ops->get_voltage_sel(rdev);
  1834. if (old_selector < 0)
  1835. return old_selector;
  1836. }
  1837. if (rdev->desc->ops->set_voltage) {
  1838. ret = rdev->desc->ops->set_voltage(rdev, min_uV, max_uV,
  1839. &selector);
  1840. if (ret >= 0) {
  1841. if (rdev->desc->ops->list_voltage)
  1842. best_val = rdev->desc->ops->list_voltage(rdev,
  1843. selector);
  1844. else
  1845. best_val = _regulator_get_voltage(rdev);
  1846. }
  1847. } else if (rdev->desc->ops->set_voltage_sel) {
  1848. if (rdev->desc->ops->map_voltage) {
  1849. ret = rdev->desc->ops->map_voltage(rdev, min_uV,
  1850. max_uV);
  1851. } else {
  1852. if (rdev->desc->ops->list_voltage ==
  1853. regulator_list_voltage_linear)
  1854. ret = regulator_map_voltage_linear(rdev,
  1855. min_uV, max_uV);
  1856. else
  1857. ret = regulator_map_voltage_iterate(rdev,
  1858. min_uV, max_uV);
  1859. }
  1860. if (ret >= 0) {
  1861. best_val = rdev->desc->ops->list_voltage(rdev, ret);
  1862. if (min_uV <= best_val && max_uV >= best_val) {
  1863. selector = ret;
  1864. ret = rdev->desc->ops->set_voltage_sel(rdev,
  1865. ret);
  1866. } else {
  1867. ret = -EINVAL;
  1868. }
  1869. }
  1870. } else {
  1871. ret = -EINVAL;
  1872. }
  1873. /* Call set_voltage_time_sel if successfully obtained old_selector */
  1874. if (ret == 0 && _regulator_is_enabled(rdev) && old_selector >= 0 &&
  1875. rdev->desc->ops->set_voltage_time_sel) {
  1876. delay = rdev->desc->ops->set_voltage_time_sel(rdev,
  1877. old_selector, selector);
  1878. if (delay < 0) {
  1879. rdev_warn(rdev, "set_voltage_time_sel() failed: %d\n",
  1880. delay);
  1881. delay = 0;
  1882. }
  1883. /* Insert any necessary delays */
  1884. if (delay >= 1000) {
  1885. mdelay(delay / 1000);
  1886. udelay(delay % 1000);
  1887. } else if (delay) {
  1888. udelay(delay);
  1889. }
  1890. }
  1891. if (ret == 0 && best_val >= 0) {
  1892. unsigned long data = best_val;
  1893. _notifier_call_chain(rdev, REGULATOR_EVENT_VOLTAGE_CHANGE,
  1894. (void *)data);
  1895. }
  1896. trace_regulator_set_voltage_complete(rdev_get_name(rdev), best_val);
  1897. return ret;
  1898. }
  1899. /**
  1900. * regulator_set_voltage - set regulator output voltage
  1901. * @regulator: regulator source
  1902. * @min_uV: Minimum required voltage in uV
  1903. * @max_uV: Maximum acceptable voltage in uV
  1904. *
  1905. * Sets a voltage regulator to the desired output voltage. This can be set
  1906. * during any regulator state. IOW, regulator can be disabled or enabled.
  1907. *
  1908. * If the regulator is enabled then the voltage will change to the new value
  1909. * immediately otherwise if the regulator is disabled the regulator will
  1910. * output at the new voltage when enabled.
  1911. *
  1912. * NOTE: If the regulator is shared between several devices then the lowest
  1913. * request voltage that meets the system constraints will be used.
  1914. * Regulator system constraints must be set for this regulator before
  1915. * calling this function otherwise this call will fail.
  1916. */
  1917. int regulator_set_voltage(struct regulator *regulator, int min_uV, int max_uV)
  1918. {
  1919. struct regulator_dev *rdev = regulator->rdev;
  1920. int ret = 0;
  1921. mutex_lock(&rdev->mutex);
  1922. /* If we're setting the same range as last time the change
  1923. * should be a noop (some cpufreq implementations use the same
  1924. * voltage for multiple frequencies, for example).
  1925. */
  1926. if (regulator->min_uV == min_uV && regulator->max_uV == max_uV)
  1927. goto out;
  1928. /* sanity check */
  1929. if (!rdev->desc->ops->set_voltage &&
  1930. !rdev->desc->ops->set_voltage_sel) {
  1931. ret = -EINVAL;
  1932. goto out;
  1933. }
  1934. /* constraints check */
  1935. ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
  1936. if (ret < 0)
  1937. goto out;
  1938. regulator->min_uV = min_uV;
  1939. regulator->max_uV = max_uV;
  1940. ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
  1941. if (ret < 0)
  1942. goto out;
  1943. ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
  1944. out:
  1945. mutex_unlock(&rdev->mutex);
  1946. return ret;
  1947. }
  1948. EXPORT_SYMBOL_GPL(regulator_set_voltage);
  1949. /**
  1950. * regulator_set_voltage_time - get raise/fall time
  1951. * @regulator: regulator source
  1952. * @old_uV: starting voltage in microvolts
  1953. * @new_uV: target voltage in microvolts
  1954. *
  1955. * Provided with the starting and ending voltage, this function attempts to
  1956. * calculate the time in microseconds required to rise or fall to this new
  1957. * voltage.
  1958. */
  1959. int regulator_set_voltage_time(struct regulator *regulator,
  1960. int old_uV, int new_uV)
  1961. {
  1962. struct regulator_dev *rdev = regulator->rdev;
  1963. struct regulator_ops *ops = rdev->desc->ops;
  1964. int old_sel = -1;
  1965. int new_sel = -1;
  1966. int voltage;
  1967. int i;
  1968. /* Currently requires operations to do this */
  1969. if (!ops->list_voltage || !ops->set_voltage_time_sel
  1970. || !rdev->desc->n_voltages)
  1971. return -EINVAL;
  1972. for (i = 0; i < rdev->desc->n_voltages; i++) {
  1973. /* We only look for exact voltage matches here */
  1974. voltage = regulator_list_voltage(regulator, i);
  1975. if (voltage < 0)
  1976. return -EINVAL;
  1977. if (voltage == 0)
  1978. continue;
  1979. if (voltage == old_uV)
  1980. old_sel = i;
  1981. if (voltage == new_uV)
  1982. new_sel = i;
  1983. }
  1984. if (old_sel < 0 || new_sel < 0)
  1985. return -EINVAL;
  1986. return ops->set_voltage_time_sel(rdev, old_sel, new_sel);
  1987. }
  1988. EXPORT_SYMBOL_GPL(regulator_set_voltage_time);
  1989. /**
  1990. * regulator_set_voltage_time_sel - get raise/fall time
  1991. * @rdev: regulator source device
  1992. * @old_selector: selector for starting voltage
  1993. * @new_selector: selector for target voltage
  1994. *
  1995. * Provided with the starting and target voltage selectors, this function
  1996. * returns time in microseconds required to rise or fall to this new voltage
  1997. *
  1998. * Drivers providing ramp_delay in regulation_constraints can use this as their
  1999. * set_voltage_time_sel() operation.
  2000. */
  2001. int regulator_set_voltage_time_sel(struct regulator_dev *rdev,
  2002. unsigned int old_selector,
  2003. unsigned int new_selector)
  2004. {
  2005. unsigned int ramp_delay = 0;
  2006. int old_volt, new_volt;
  2007. if (rdev->constraints->ramp_delay)
  2008. ramp_delay = rdev->constraints->ramp_delay;
  2009. else if (rdev->desc->ramp_delay)
  2010. ramp_delay = rdev->desc->ramp_delay;
  2011. if (ramp_delay == 0) {
  2012. rdev_warn(rdev, "ramp_delay not set\n");
  2013. return 0;
  2014. }
  2015. /* sanity check */
  2016. if (!rdev->desc->ops->list_voltage)
  2017. return -EINVAL;
  2018. old_volt = rdev->desc->ops->list_voltage(rdev, old_selector);
  2019. new_volt = rdev->desc->ops->list_voltage(rdev, new_selector);
  2020. return DIV_ROUND_UP(abs(new_volt - old_volt), ramp_delay);
  2021. }
  2022. EXPORT_SYMBOL_GPL(regulator_set_voltage_time_sel);
  2023. /**
  2024. * regulator_sync_voltage - re-apply last regulator output voltage
  2025. * @regulator: regulator source
  2026. *
  2027. * Re-apply the last configured voltage. This is intended to be used
  2028. * where some external control source the consumer is cooperating with
  2029. * has caused the configured voltage to change.
  2030. */
  2031. int regulator_sync_voltage(struct regulator *regulator)
  2032. {
  2033. struct regulator_dev *rdev = regulator->rdev;
  2034. int ret, min_uV, max_uV;
  2035. mutex_lock(&rdev->mutex);
  2036. if (!rdev->desc->ops->set_voltage &&
  2037. !rdev->desc->ops->set_voltage_sel) {
  2038. ret = -EINVAL;
  2039. goto out;
  2040. }
  2041. /* This is only going to work if we've had a voltage configured. */
  2042. if (!regulator->min_uV && !regulator->max_uV) {
  2043. ret = -EINVAL;
  2044. goto out;
  2045. }
  2046. min_uV = regulator->min_uV;
  2047. max_uV = regulator->max_uV;
  2048. /* This should be a paranoia check... */
  2049. ret = regulator_check_voltage(rdev, &min_uV, &max_uV);
  2050. if (ret < 0)
  2051. goto out;
  2052. ret = regulator_check_consumers(rdev, &min_uV, &max_uV);
  2053. if (ret < 0)
  2054. goto out;
  2055. ret = _regulator_do_set_voltage(rdev, min_uV, max_uV);
  2056. out:
  2057. mutex_unlock(&rdev->mutex);
  2058. return ret;
  2059. }
  2060. EXPORT_SYMBOL_GPL(regulator_sync_voltage);
  2061. static int _regulator_get_voltage(struct regulator_dev *rdev)
  2062. {
  2063. int sel, ret;
  2064. if (rdev->desc->ops->get_voltage_sel) {
  2065. sel = rdev->desc->ops->get_voltage_sel(rdev);
  2066. if (sel < 0)
  2067. return sel;
  2068. ret = rdev->desc->ops->list_voltage(rdev, sel);
  2069. } else if (rdev->desc->ops->get_voltage) {
  2070. ret = rdev->desc->ops->get_voltage(rdev);
  2071. } else if (rdev->desc->ops->list_voltage) {
  2072. ret = rdev->desc->ops->list_voltage(rdev, 0);
  2073. } else {
  2074. return -EINVAL;
  2075. }
  2076. if (ret < 0)
  2077. return ret;
  2078. return ret - rdev->constraints->uV_offset;
  2079. }
  2080. /**
  2081. * regulator_get_voltage - get regulator output voltage
  2082. * @regulator: regulator source
  2083. *
  2084. * This returns the current regulator voltage in uV.
  2085. *
  2086. * NOTE: If the regulator is disabled it will return the voltage value. This
  2087. * function should not be used to determine regulator state.
  2088. */
  2089. int regulator_get_voltage(struct regulator *regulator)
  2090. {
  2091. int ret;
  2092. mutex_lock(&regulator->rdev->mutex);
  2093. ret = _regulator_get_voltage(regulator->rdev);
  2094. mutex_unlock(&regulator->rdev->mutex);
  2095. return ret;
  2096. }
  2097. EXPORT_SYMBOL_GPL(regulator_get_voltage);
  2098. /**
  2099. * regulator_set_current_limit - set regulator output current limit
  2100. * @regulator: regulator source
  2101. * @min_uA: Minimuum supported current in uA
  2102. * @max_uA: Maximum supported current in uA
  2103. *
  2104. * Sets current sink to the desired output current. This can be set during
  2105. * any regulator state. IOW, regulator can be disabled or enabled.
  2106. *
  2107. * If the regulator is enabled then the current will change to the new value
  2108. * immediately otherwise if the regulator is disabled the regulator will
  2109. * output at the new current when enabled.
  2110. *
  2111. * NOTE: Regulator system constraints must be set for this regulator before
  2112. * calling this function otherwise this call will fail.
  2113. */
  2114. int regulator_set_current_limit(struct regulator *regulator,
  2115. int min_uA, int max_uA)
  2116. {
  2117. struct regulator_dev *rdev = regulator->rdev;
  2118. int ret;
  2119. mutex_lock(&rdev->mutex);
  2120. /* sanity check */
  2121. if (!rdev->desc->ops->set_current_limit) {
  2122. ret = -EINVAL;
  2123. goto out;
  2124. }
  2125. /* constraints check */
  2126. ret = regulator_check_current_limit(rdev, &min_uA, &max_uA);
  2127. if (ret < 0)
  2128. goto out;
  2129. ret = rdev->desc->ops->set_current_limit(rdev, min_uA, max_uA);
  2130. out:
  2131. mutex_unlock(&rdev->mutex);
  2132. return ret;
  2133. }
  2134. EXPORT_SYMBOL_GPL(regulator_set_current_limit);
  2135. static int _regulator_get_current_limit(struct regulator_dev *rdev)
  2136. {
  2137. int ret;
  2138. mutex_lock(&rdev->mutex);
  2139. /* sanity check */
  2140. if (!rdev->desc->ops->get_current_limit) {
  2141. ret = -EINVAL;
  2142. goto out;
  2143. }
  2144. ret = rdev->desc->ops->get_current_limit(rdev);
  2145. out:
  2146. mutex_unlock(&rdev->mutex);
  2147. return ret;
  2148. }
  2149. /**
  2150. * regulator_get_current_limit - get regulator output current
  2151. * @regulator: regulator source
  2152. *
  2153. * This returns the current supplied by the specified current sink in uA.
  2154. *
  2155. * NOTE: If the regulator is disabled it will return the current value. This
  2156. * function should not be used to determine regulator state.
  2157. */
  2158. int regulator_get_current_limit(struct regulator *regulator)
  2159. {
  2160. return _regulator_get_current_limit(regulator->rdev);
  2161. }
  2162. EXPORT_SYMBOL_GPL(regulator_get_current_limit);
  2163. /**
  2164. * regulator_set_mode - set regulator operating mode
  2165. * @regulator: regulator source
  2166. * @mode: operating mode - one of the REGULATOR_MODE constants
  2167. *
  2168. * Set regulator operating mode to increase regulator efficiency or improve
  2169. * regulation performance.
  2170. *
  2171. * NOTE: Regulator system constraints must be set for this regulator before
  2172. * calling this function otherwise this call will fail.
  2173. */
  2174. int regulator_set_mode(struct regulator *regulator, unsigned int mode)
  2175. {
  2176. struct regulator_dev *rdev = regulator->rdev;
  2177. int ret;
  2178. int regulator_curr_mode;
  2179. mutex_lock(&rdev->mutex);
  2180. /* sanity check */
  2181. if (!rdev->desc->ops->set_mode) {
  2182. ret = -EINVAL;
  2183. goto out;
  2184. }
  2185. /* return if the same mode is requested */
  2186. if (rdev->desc->ops->get_mode) {
  2187. regulator_curr_mode = rdev->desc->ops->get_mode(rdev);
  2188. if (regulator_curr_mode == mode) {
  2189. ret = 0;
  2190. goto out;
  2191. }
  2192. }
  2193. /* constraints check */
  2194. ret = regulator_mode_constrain(rdev, &mode);
  2195. if (ret < 0)
  2196. goto out;
  2197. ret = rdev->desc->ops->set_mode(rdev, mode);
  2198. out:
  2199. mutex_unlock(&rdev->mutex);
  2200. return ret;
  2201. }
  2202. EXPORT_SYMBOL_GPL(regulator_set_mode);
  2203. static unsigned int _regulator_get_mode(struct regulator_dev *rdev)
  2204. {
  2205. int ret;
  2206. mutex_lock(&rdev->mutex);
  2207. /* sanity check */
  2208. if (!rdev->desc->ops->get_mode) {
  2209. ret = -EINVAL;
  2210. goto out;
  2211. }
  2212. ret = rdev->desc->ops->get_mode(rdev);
  2213. out:
  2214. mutex_unlock(&rdev->mutex);
  2215. return ret;
  2216. }
  2217. /**
  2218. * regulator_get_mode - get regulator operating mode
  2219. * @regulator: regulator source
  2220. *
  2221. * Get the current regulator operating mode.
  2222. */
  2223. unsigned int regulator_get_mode(struct regulator *regulator)
  2224. {
  2225. return _regulator_get_mode(regulator->rdev);
  2226. }
  2227. EXPORT_SYMBOL_GPL(regulator_get_mode);
  2228. /**
  2229. * regulator_set_optimum_mode - set regulator optimum operating mode
  2230. * @regulator: regulator source
  2231. * @uA_load: load current
  2232. *
  2233. * Notifies the regulator core of a new device load. This is then used by
  2234. * DRMS (if enabled by constraints) to set the most efficient regulator
  2235. * operating mode for the new regulator loading.
  2236. *
  2237. * Consumer devices notify their supply regulator of the maximum power
  2238. * they will require (can be taken from device datasheet in the power
  2239. * consumption tables) when they change operational status and hence power
  2240. * state. Examples of operational state changes that can affect power
  2241. * consumption are :-
  2242. *
  2243. * o Device is opened / closed.
  2244. * o Device I/O is about to begin or has just finished.
  2245. * o Device is idling in between work.
  2246. *
  2247. * This information is also exported via sysfs to userspace.
  2248. *
  2249. * DRMS will sum the total requested load on the regulator and change
  2250. * to the most efficient operating mode if platform constraints allow.
  2251. *
  2252. * Returns the new regulator mode or error.
  2253. */
  2254. int regulator_set_optimum_mode(struct regulator *regulator, int uA_load)
  2255. {
  2256. struct regulator_dev *rdev = regulator->rdev;
  2257. struct regulator *consumer;
  2258. int ret, output_uV, input_uV = 0, total_uA_load = 0;
  2259. unsigned int mode;
  2260. if (rdev->supply)
  2261. input_uV = regulator_get_voltage(rdev->supply);
  2262. mutex_lock(&rdev->mutex);
  2263. /*
  2264. * first check to see if we can set modes at all, otherwise just
  2265. * tell the consumer everything is OK.
  2266. */
  2267. regulator->uA_load = uA_load;
  2268. ret = regulator_check_drms(rdev);
  2269. if (ret < 0) {
  2270. ret = 0;
  2271. goto out;
  2272. }
  2273. if (!rdev->desc->ops->get_optimum_mode)
  2274. goto out;
  2275. /*
  2276. * we can actually do this so any errors are indicators of
  2277. * potential real failure.
  2278. */
  2279. ret = -EINVAL;
  2280. if (!rdev->desc->ops->set_mode)
  2281. goto out;
  2282. /* get output voltage */
  2283. output_uV = _regulator_get_voltage(rdev);
  2284. if (output_uV <= 0) {
  2285. rdev_err(rdev, "invalid output voltage found\n");
  2286. goto out;
  2287. }
  2288. /* No supply? Use constraint voltage */
  2289. if (input_uV <= 0)
  2290. input_uV = rdev->constraints->input_uV;
  2291. if (input_uV <= 0) {
  2292. rdev_err(rdev, "invalid input voltage found\n");
  2293. goto out;
  2294. }
  2295. /* calc total requested load for this regulator */
  2296. list_for_each_entry(consumer, &rdev->consumer_list, list)
  2297. total_uA_load += consumer->uA_load;
  2298. mode = rdev->desc->ops->get_optimum_mode(rdev,
  2299. input_uV, output_uV,
  2300. total_uA_load);
  2301. ret = regulator_mode_constrain(rdev, &mode);
  2302. if (ret < 0) {
  2303. rdev_err(rdev, "failed to get optimum mode @ %d uA %d -> %d uV\n",
  2304. total_uA_load, input_uV, output_uV);
  2305. goto out;
  2306. }
  2307. ret = rdev->desc->ops->set_mode(rdev, mode);
  2308. if (ret < 0) {
  2309. rdev_err(rdev, "failed to set optimum mode %x\n", mode);
  2310. goto out;
  2311. }
  2312. ret = mode;
  2313. out:
  2314. mutex_unlock(&rdev->mutex);
  2315. return ret;
  2316. }
  2317. EXPORT_SYMBOL_GPL(regulator_set_optimum_mode);
  2318. /**
  2319. * regulator_set_bypass_regmap - Default set_bypass() using regmap
  2320. *
  2321. * @rdev: device to operate on.
  2322. * @enable: state to set.
  2323. */
  2324. int regulator_set_bypass_regmap(struct regulator_dev *rdev, bool enable)
  2325. {
  2326. unsigned int val;
  2327. if (enable)
  2328. val = rdev->desc->bypass_mask;
  2329. else
  2330. val = 0;
  2331. return regmap_update_bits(rdev->regmap, rdev->desc->bypass_reg,
  2332. rdev->desc->bypass_mask, val);
  2333. }
  2334. EXPORT_SYMBOL_GPL(regulator_set_bypass_regmap);
  2335. /**
  2336. * regulator_get_bypass_regmap - Default get_bypass() using regmap
  2337. *
  2338. * @rdev: device to operate on.
  2339. * @enable: current state.
  2340. */
  2341. int regulator_get_bypass_regmap(struct regulator_dev *rdev, bool *enable)
  2342. {
  2343. unsigned int val;
  2344. int ret;
  2345. ret = regmap_read(rdev->regmap, rdev->desc->bypass_reg, &val);
  2346. if (ret != 0)
  2347. return ret;
  2348. *enable = val & rdev->desc->bypass_mask;
  2349. return 0;
  2350. }
  2351. EXPORT_SYMBOL_GPL(regulator_get_bypass_regmap);
  2352. /**
  2353. * regulator_allow_bypass - allow the regulator to go into bypass mode
  2354. *
  2355. * @regulator: Regulator to configure
  2356. * @allow: enable or disable bypass mode
  2357. *
  2358. * Allow the regulator to go into bypass mode if all other consumers
  2359. * for the regulator also enable bypass mode and the machine
  2360. * constraints allow this. Bypass mode means that the regulator is
  2361. * simply passing the input directly to the output with no regulation.
  2362. */
  2363. int regulator_allow_bypass(struct regulator *regulator, bool enable)
  2364. {
  2365. struct regulator_dev *rdev = regulator->rdev;
  2366. int ret = 0;
  2367. if (!rdev->desc->ops->set_bypass)
  2368. return 0;
  2369. if (rdev->constraints &&
  2370. !(rdev->constraints->valid_ops_mask & REGULATOR_CHANGE_BYPASS))
  2371. return 0;
  2372. mutex_lock(&rdev->mutex);
  2373. if (enable && !regulator->bypass) {
  2374. rdev->bypass_count++;
  2375. if (rdev->bypass_count == rdev->open_count) {
  2376. ret = rdev->desc->ops->set_bypass(rdev, enable);
  2377. if (ret != 0)
  2378. rdev->bypass_count--;
  2379. }
  2380. } else if (!enable && regulator->bypass) {
  2381. rdev->bypass_count--;
  2382. if (rdev->bypass_count != rdev->open_count) {
  2383. ret = rdev->desc->ops->set_bypass(rdev, enable);
  2384. if (ret != 0)
  2385. rdev->bypass_count++;
  2386. }
  2387. }
  2388. if (ret == 0)
  2389. regulator->bypass = enable;
  2390. mutex_unlock(&rdev->mutex);
  2391. return ret;
  2392. }
  2393. EXPORT_SYMBOL_GPL(regulator_allow_bypass);
  2394. /**
  2395. * regulator_register_notifier - register regulator event notifier
  2396. * @regulator: regulator source
  2397. * @nb: notifier block
  2398. *
  2399. * Register notifier block to receive regulator events.
  2400. */
  2401. int regulator_register_notifier(struct regulator *regulator,
  2402. struct notifier_block *nb)
  2403. {
  2404. return blocking_notifier_chain_register(&regulator->rdev->notifier,
  2405. nb);
  2406. }
  2407. EXPORT_SYMBOL_GPL(regulator_register_notifier);
  2408. /**
  2409. * regulator_unregister_notifier - unregister regulator event notifier
  2410. * @regulator: regulator source
  2411. * @nb: notifier block
  2412. *
  2413. * Unregister regulator event notifier block.
  2414. */
  2415. int regulator_unregister_notifier(struct regulator *regulator,
  2416. struct notifier_block *nb)
  2417. {
  2418. return blocking_notifier_chain_unregister(&regulator->rdev->notifier,
  2419. nb);
  2420. }
  2421. EXPORT_SYMBOL_GPL(regulator_unregister_notifier);
  2422. /* notify regulator consumers and downstream regulator consumers.
  2423. * Note mutex must be held by caller.
  2424. */
  2425. static void _notifier_call_chain(struct regulator_dev *rdev,
  2426. unsigned long event, void *data)
  2427. {
  2428. /* call rdev chain first */
  2429. blocking_notifier_call_chain(&rdev->notifier, event, data);
  2430. }
  2431. /**
  2432. * regulator_bulk_get - get multiple regulator consumers
  2433. *
  2434. * @dev: Device to supply
  2435. * @num_consumers: Number of consumers to register
  2436. * @consumers: Configuration of consumers; clients are stored here.
  2437. *
  2438. * @return 0 on success, an errno on failure.
  2439. *
  2440. * This helper function allows drivers to get several regulator
  2441. * consumers in one operation. If any of the regulators cannot be
  2442. * acquired then any regulators that were allocated will be freed
  2443. * before returning to the caller.
  2444. */
  2445. int regulator_bulk_get(struct device *dev, int num_consumers,
  2446. struct regulator_bulk_data *consumers)
  2447. {
  2448. int i;
  2449. int ret;
  2450. for (i = 0; i < num_consumers; i++)
  2451. consumers[i].consumer = NULL;
  2452. for (i = 0; i < num_consumers; i++) {
  2453. consumers[i].consumer = regulator_get(dev,
  2454. consumers[i].supply);
  2455. if (IS_ERR(consumers[i].consumer)) {
  2456. ret = PTR_ERR(consumers[i].consumer);
  2457. dev_err(dev, "Failed to get supply '%s': %d\n",
  2458. consumers[i].supply, ret);
  2459. consumers[i].consumer = NULL;
  2460. goto err;
  2461. }
  2462. }
  2463. return 0;
  2464. err:
  2465. while (--i >= 0)
  2466. regulator_put(consumers[i].consumer);
  2467. return ret;
  2468. }
  2469. EXPORT_SYMBOL_GPL(regulator_bulk_get);
  2470. /**
  2471. * devm_regulator_bulk_get - managed get multiple regulator consumers
  2472. *
  2473. * @dev: Device to supply
  2474. * @num_consumers: Number of consumers to register
  2475. * @consumers: Configuration of consumers; clients are stored here.
  2476. *
  2477. * @return 0 on success, an errno on failure.
  2478. *
  2479. * This helper function allows drivers to get several regulator
  2480. * consumers in one operation with management, the regulators will
  2481. * automatically be freed when the device is unbound. If any of the
  2482. * regulators cannot be acquired then any regulators that were
  2483. * allocated will be freed before returning to the caller.
  2484. */
  2485. int devm_regulator_bulk_get(struct device *dev, int num_consumers,
  2486. struct regulator_bulk_data *consumers)
  2487. {
  2488. int i;
  2489. int ret;
  2490. for (i = 0; i < num_consumers; i++)
  2491. consumers[i].consumer = NULL;
  2492. for (i = 0; i < num_consumers; i++) {
  2493. consumers[i].consumer = devm_regulator_get(dev,
  2494. consumers[i].supply);
  2495. if (IS_ERR(consumers[i].consumer)) {
  2496. ret = PTR_ERR(consumers[i].consumer);
  2497. dev_err(dev, "Failed to get supply '%s': %d\n",
  2498. consumers[i].supply, ret);
  2499. consumers[i].consumer = NULL;
  2500. goto err;
  2501. }
  2502. }
  2503. return 0;
  2504. err:
  2505. for (i = 0; i < num_consumers && consumers[i].consumer; i++)
  2506. devm_regulator_put(consumers[i].consumer);
  2507. return ret;
  2508. }
  2509. EXPORT_SYMBOL_GPL(devm_regulator_bulk_get);
  2510. static void regulator_bulk_enable_async(void *data, async_cookie_t cookie)
  2511. {
  2512. struct regulator_bulk_data *bulk = data;
  2513. bulk->ret = regulator_enable(bulk->consumer);
  2514. }
  2515. /**
  2516. * regulator_bulk_enable - enable multiple regulator consumers
  2517. *
  2518. * @num_consumers: Number of consumers
  2519. * @consumers: Consumer data; clients are stored here.
  2520. * @return 0 on success, an errno on failure
  2521. *
  2522. * This convenience API allows consumers to enable multiple regulator
  2523. * clients in a single API call. If any consumers cannot be enabled
  2524. * then any others that were enabled will be disabled again prior to
  2525. * return.
  2526. */
  2527. int regulator_bulk_enable(int num_consumers,
  2528. struct regulator_bulk_data *consumers)
  2529. {
  2530. ASYNC_DOMAIN_EXCLUSIVE(async_domain);
  2531. int i;
  2532. int ret = 0;
  2533. for (i = 0; i < num_consumers; i++) {
  2534. if (consumers[i].consumer->always_on)
  2535. consumers[i].ret = 0;
  2536. else
  2537. async_schedule_domain(regulator_bulk_enable_async,
  2538. &consumers[i], &async_domain);
  2539. }
  2540. async_synchronize_full_domain(&async_domain);
  2541. /* If any consumer failed we need to unwind any that succeeded */
  2542. for (i = 0; i < num_consumers; i++) {
  2543. if (consumers[i].ret != 0) {
  2544. ret = consumers[i].ret;
  2545. goto err;
  2546. }
  2547. }
  2548. return 0;
  2549. err:
  2550. pr_err("Failed to enable %s: %d\n", consumers[i].supply, ret);
  2551. while (--i >= 0)
  2552. regulator_disable(consumers[i].consumer);
  2553. return ret;
  2554. }
  2555. EXPORT_SYMBOL_GPL(regulator_bulk_enable);
  2556. /**
  2557. * regulator_bulk_disable - disable multiple regulator consumers
  2558. *
  2559. * @num_consumers: Number of consumers
  2560. * @consumers: Consumer data; clients are stored here.
  2561. * @return 0 on success, an errno on failure
  2562. *
  2563. * This convenience API allows consumers to disable multiple regulator
  2564. * clients in a single API call. If any consumers cannot be disabled
  2565. * then any others that were disabled will be enabled again prior to
  2566. * return.
  2567. */
  2568. int regulator_bulk_disable(int num_consumers,
  2569. struct regulator_bulk_data *consumers)
  2570. {
  2571. int i;
  2572. int ret, r;
  2573. for (i = num_consumers - 1; i >= 0; --i) {
  2574. ret = regulator_disable(consumers[i].consumer);
  2575. if (ret != 0)
  2576. goto err;
  2577. }
  2578. return 0;
  2579. err:
  2580. pr_err("Failed to disable %s: %d\n", consumers[i].supply, ret);
  2581. for (++i; i < num_consumers; ++i) {
  2582. r = regulator_enable(consumers[i].consumer);
  2583. if (r != 0)
  2584. pr_err("Failed to reename %s: %d\n",
  2585. consumers[i].supply, r);
  2586. }
  2587. return ret;
  2588. }
  2589. EXPORT_SYMBOL_GPL(regulator_bulk_disable);
  2590. /**
  2591. * regulator_bulk_force_disable - force disable multiple regulator consumers
  2592. *
  2593. * @num_consumers: Number of consumers
  2594. * @consumers: Consumer data; clients are stored here.
  2595. * @return 0 on success, an errno on failure
  2596. *
  2597. * This convenience API allows consumers to forcibly disable multiple regulator
  2598. * clients in a single API call.
  2599. * NOTE: This should be used for situations when device damage will
  2600. * likely occur if the regulators are not disabled (e.g. over temp).
  2601. * Although regulator_force_disable function call for some consumers can
  2602. * return error numbers, the function is called for all consumers.
  2603. */
  2604. int regulator_bulk_force_disable(int num_consumers,
  2605. struct regulator_bulk_data *consumers)
  2606. {
  2607. int i;
  2608. int ret;
  2609. for (i = 0; i < num_consumers; i++)
  2610. consumers[i].ret =
  2611. regulator_force_disable(consumers[i].consumer);
  2612. for (i = 0; i < num_consumers; i++) {
  2613. if (consumers[i].ret != 0) {
  2614. ret = consumers[i].ret;
  2615. goto out;
  2616. }
  2617. }
  2618. return 0;
  2619. out:
  2620. return ret;
  2621. }
  2622. EXPORT_SYMBOL_GPL(regulator_bulk_force_disable);
  2623. /**
  2624. * regulator_bulk_free - free multiple regulator consumers
  2625. *
  2626. * @num_consumers: Number of consumers
  2627. * @consumers: Consumer data; clients are stored here.
  2628. *
  2629. * This convenience API allows consumers to free multiple regulator
  2630. * clients in a single API call.
  2631. */
  2632. void regulator_bulk_free(int num_consumers,
  2633. struct regulator_bulk_data *consumers)
  2634. {
  2635. int i;
  2636. for (i = 0; i < num_consumers; i++) {
  2637. regulator_put(consumers[i].consumer);
  2638. consumers[i].consumer = NULL;
  2639. }
  2640. }
  2641. EXPORT_SYMBOL_GPL(regulator_bulk_free);
  2642. /**
  2643. * regulator_notifier_call_chain - call regulator event notifier
  2644. * @rdev: regulator source
  2645. * @event: notifier block
  2646. * @data: callback-specific data.
  2647. *
  2648. * Called by regulator drivers to notify clients a regulator event has
  2649. * occurred. We also notify regulator clients downstream.
  2650. * Note lock must be held by caller.
  2651. */
  2652. int regulator_notifier_call_chain(struct regulator_dev *rdev,
  2653. unsigned long event, void *data)
  2654. {
  2655. _notifier_call_chain(rdev, event, data);
  2656. return NOTIFY_DONE;
  2657. }
  2658. EXPORT_SYMBOL_GPL(regulator_notifier_call_chain);
  2659. /**
  2660. * regulator_mode_to_status - convert a regulator mode into a status
  2661. *
  2662. * @mode: Mode to convert
  2663. *
  2664. * Convert a regulator mode into a status.
  2665. */
  2666. int regulator_mode_to_status(unsigned int mode)
  2667. {
  2668. switch (mode) {
  2669. case REGULATOR_MODE_FAST:
  2670. return REGULATOR_STATUS_FAST;
  2671. case REGULATOR_MODE_NORMAL:
  2672. return REGULATOR_STATUS_NORMAL;
  2673. case REGULATOR_MODE_IDLE:
  2674. return REGULATOR_STATUS_IDLE;
  2675. case REGULATOR_MODE_STANDBY:
  2676. return REGULATOR_STATUS_STANDBY;
  2677. default:
  2678. return REGULATOR_STATUS_UNDEFINED;
  2679. }
  2680. }
  2681. EXPORT_SYMBOL_GPL(regulator_mode_to_status);
  2682. /*
  2683. * To avoid cluttering sysfs (and memory) with useless state, only
  2684. * create attributes that can be meaningfully displayed.
  2685. */
  2686. static int add_regulator_attributes(struct regulator_dev *rdev)
  2687. {
  2688. struct device *dev = &rdev->dev;
  2689. struct regulator_ops *ops = rdev->desc->ops;
  2690. int status = 0;
  2691. /* some attributes need specific methods to be displayed */
  2692. if ((ops->get_voltage && ops->get_voltage(rdev) >= 0) ||
  2693. (ops->get_voltage_sel && ops->get_voltage_sel(rdev) >= 0) ||
  2694. (ops->list_voltage && ops->list_voltage(rdev, 0) >= 0)) {
  2695. status = device_create_file(dev, &dev_attr_microvolts);
  2696. if (status < 0)
  2697. return status;
  2698. }
  2699. if (ops->get_current_limit) {
  2700. status = device_create_file(dev, &dev_attr_microamps);
  2701. if (status < 0)
  2702. return status;
  2703. }
  2704. if (ops->get_mode) {
  2705. status = device_create_file(dev, &dev_attr_opmode);
  2706. if (status < 0)
  2707. return status;
  2708. }
  2709. if (ops->is_enabled) {
  2710. status = device_create_file(dev, &dev_attr_state);
  2711. if (status < 0)
  2712. return status;
  2713. }
  2714. if (ops->get_status) {
  2715. status = device_create_file(dev, &dev_attr_status);
  2716. if (status < 0)
  2717. return status;
  2718. }
  2719. if (ops->get_bypass) {
  2720. status = device_create_file(dev, &dev_attr_bypass);
  2721. if (status < 0)
  2722. return status;
  2723. }
  2724. /* some attributes are type-specific */
  2725. if (rdev->desc->type == REGULATOR_CURRENT) {
  2726. status = device_create_file(dev, &dev_attr_requested_microamps);
  2727. if (status < 0)
  2728. return status;
  2729. }
  2730. /* all the other attributes exist to support constraints;
  2731. * don't show them if there are no constraints, or if the
  2732. * relevant supporting methods are missing.
  2733. */
  2734. if (!rdev->constraints)
  2735. return status;
  2736. /* constraints need specific supporting methods */
  2737. if (ops->set_voltage || ops->set_voltage_sel) {
  2738. status = device_create_file(dev, &dev_attr_min_microvolts);
  2739. if (status < 0)
  2740. return status;
  2741. status = device_create_file(dev, &dev_attr_max_microvolts);
  2742. if (status < 0)
  2743. return status;
  2744. }
  2745. if (ops->set_current_limit) {
  2746. status = device_create_file(dev, &dev_attr_min_microamps);
  2747. if (status < 0)
  2748. return status;
  2749. status = device_create_file(dev, &dev_attr_max_microamps);
  2750. if (status < 0)
  2751. return status;
  2752. }
  2753. status = device_create_file(dev, &dev_attr_suspend_standby_state);
  2754. if (status < 0)
  2755. return status;
  2756. status = device_create_file(dev, &dev_attr_suspend_mem_state);
  2757. if (status < 0)
  2758. return status;
  2759. status = device_create_file(dev, &dev_attr_suspend_disk_state);
  2760. if (status < 0)
  2761. return status;
  2762. if (ops->set_suspend_voltage) {
  2763. status = device_create_file(dev,
  2764. &dev_attr_suspend_standby_microvolts);
  2765. if (status < 0)
  2766. return status;
  2767. status = device_create_file(dev,
  2768. &dev_attr_suspend_mem_microvolts);
  2769. if (status < 0)
  2770. return status;
  2771. status = device_create_file(dev,
  2772. &dev_attr_suspend_disk_microvolts);
  2773. if (status < 0)
  2774. return status;
  2775. }
  2776. if (ops->set_suspend_mode) {
  2777. status = device_create_file(dev,
  2778. &dev_attr_suspend_standby_mode);
  2779. if (status < 0)
  2780. return status;
  2781. status = device_create_file(dev,
  2782. &dev_attr_suspend_mem_mode);
  2783. if (status < 0)
  2784. return status;
  2785. status = device_create_file(dev,
  2786. &dev_attr_suspend_disk_mode);
  2787. if (status < 0)
  2788. return status;
  2789. }
  2790. return status;
  2791. }
  2792. static void rdev_init_debugfs(struct regulator_dev *rdev)
  2793. {
  2794. rdev->debugfs = debugfs_create_dir(rdev_get_name(rdev), debugfs_root);
  2795. if (!rdev->debugfs) {
  2796. rdev_warn(rdev, "Failed to create debugfs directory\n");
  2797. return;
  2798. }
  2799. debugfs_create_u32("use_count", 0444, rdev->debugfs,
  2800. &rdev->use_count);
  2801. debugfs_create_u32("open_count", 0444, rdev->debugfs,
  2802. &rdev->open_count);
  2803. debugfs_create_u32("bypass_count", 0444, rdev->debugfs,
  2804. &rdev->bypass_count);
  2805. }
  2806. /**
  2807. * regulator_register - register regulator
  2808. * @regulator_desc: regulator to register
  2809. * @config: runtime configuration for regulator
  2810. *
  2811. * Called by regulator drivers to register a regulator.
  2812. * Returns 0 on success.
  2813. */
  2814. struct regulator_dev *
  2815. regulator_register(const struct regulator_desc *regulator_desc,
  2816. const struct regulator_config *config)
  2817. {
  2818. const struct regulation_constraints *constraints = NULL;
  2819. const struct regulator_init_data *init_data;
  2820. static atomic_t regulator_no = ATOMIC_INIT(0);
  2821. struct regulator_dev *rdev;
  2822. struct device *dev;
  2823. int ret, i;
  2824. const char *supply = NULL;
  2825. if (regulator_desc == NULL || config == NULL)
  2826. return ERR_PTR(-EINVAL);
  2827. dev = config->dev;
  2828. WARN_ON(!dev);
  2829. if (regulator_desc->name == NULL || regulator_desc->ops == NULL)
  2830. return ERR_PTR(-EINVAL);
  2831. if (regulator_desc->type != REGULATOR_VOLTAGE &&
  2832. regulator_desc->type != REGULATOR_CURRENT)
  2833. return ERR_PTR(-EINVAL);
  2834. /* Only one of each should be implemented */
  2835. WARN_ON(regulator_desc->ops->get_voltage &&
  2836. regulator_desc->ops->get_voltage_sel);
  2837. WARN_ON(regulator_desc->ops->set_voltage &&
  2838. regulator_desc->ops->set_voltage_sel);
  2839. /* If we're using selectors we must implement list_voltage. */
  2840. if (regulator_desc->ops->get_voltage_sel &&
  2841. !regulator_desc->ops->list_voltage) {
  2842. return ERR_PTR(-EINVAL);
  2843. }
  2844. if (regulator_desc->ops->set_voltage_sel &&
  2845. !regulator_desc->ops->list_voltage) {
  2846. return ERR_PTR(-EINVAL);
  2847. }
  2848. init_data = config->init_data;
  2849. rdev = kzalloc(sizeof(struct regulator_dev), GFP_KERNEL);
  2850. if (rdev == NULL)
  2851. return ERR_PTR(-ENOMEM);
  2852. mutex_lock(&regulator_list_mutex);
  2853. mutex_init(&rdev->mutex);
  2854. rdev->reg_data = config->driver_data;
  2855. rdev->owner = regulator_desc->owner;
  2856. rdev->desc = regulator_desc;
  2857. if (config->regmap)
  2858. rdev->regmap = config->regmap;
  2859. else if (dev_get_regmap(dev, NULL))
  2860. rdev->regmap = dev_get_regmap(dev, NULL);
  2861. else if (dev->parent)
  2862. rdev->regmap = dev_get_regmap(dev->parent, NULL);
  2863. INIT_LIST_HEAD(&rdev->consumer_list);
  2864. INIT_LIST_HEAD(&rdev->list);
  2865. BLOCKING_INIT_NOTIFIER_HEAD(&rdev->notifier);
  2866. INIT_DELAYED_WORK(&rdev->disable_work, regulator_disable_work);
  2867. /* preform any regulator specific init */
  2868. if (init_data && init_data->regulator_init) {
  2869. ret = init_data->regulator_init(rdev->reg_data);
  2870. if (ret < 0)
  2871. goto clean;
  2872. }
  2873. /* register with sysfs */
  2874. rdev->dev.class = &regulator_class;
  2875. rdev->dev.of_node = config->of_node;
  2876. rdev->dev.parent = dev;
  2877. dev_set_name(&rdev->dev, "regulator.%d",
  2878. atomic_inc_return(&regulator_no) - 1);
  2879. ret = device_register(&rdev->dev);
  2880. if (ret != 0) {
  2881. put_device(&rdev->dev);
  2882. goto clean;
  2883. }
  2884. dev_set_drvdata(&rdev->dev, rdev);
  2885. if (config->ena_gpio && gpio_is_valid(config->ena_gpio)) {
  2886. ret = gpio_request_one(config->ena_gpio,
  2887. GPIOF_DIR_OUT | config->ena_gpio_flags,
  2888. rdev_get_name(rdev));
  2889. if (ret != 0) {
  2890. rdev_err(rdev, "Failed to request enable GPIO%d: %d\n",
  2891. config->ena_gpio, ret);
  2892. goto wash;
  2893. }
  2894. rdev->ena_gpio = config->ena_gpio;
  2895. rdev->ena_gpio_invert = config->ena_gpio_invert;
  2896. if (config->ena_gpio_flags & GPIOF_OUT_INIT_HIGH)
  2897. rdev->ena_gpio_state = 1;
  2898. if (rdev->ena_gpio_invert)
  2899. rdev->ena_gpio_state = !rdev->ena_gpio_state;
  2900. }
  2901. /* set regulator constraints */
  2902. if (init_data)
  2903. constraints = &init_data->constraints;
  2904. ret = set_machine_constraints(rdev, constraints);
  2905. if (ret < 0)
  2906. goto scrub;
  2907. /* add attributes supported by this regulator */
  2908. ret = add_regulator_attributes(rdev);
  2909. if (ret < 0)
  2910. goto scrub;
  2911. if (init_data && init_data->supply_regulator)
  2912. supply = init_data->supply_regulator;
  2913. else if (regulator_desc->supply_name)
  2914. supply = regulator_desc->supply_name;
  2915. if (supply) {
  2916. struct regulator_dev *r;
  2917. r = regulator_dev_lookup(dev, supply, &ret);
  2918. if (!r) {
  2919. dev_err(dev, "Failed to find supply %s\n", supply);
  2920. ret = -EPROBE_DEFER;
  2921. goto scrub;
  2922. }
  2923. ret = set_supply(rdev, r);
  2924. if (ret < 0)
  2925. goto scrub;
  2926. /* Enable supply if rail is enabled */
  2927. if (_regulator_is_enabled(rdev)) {
  2928. ret = regulator_enable(rdev->supply);
  2929. if (ret < 0)
  2930. goto scrub;
  2931. }
  2932. }
  2933. /* add consumers devices */
  2934. if (init_data) {
  2935. for (i = 0; i < init_data->num_consumer_supplies; i++) {
  2936. ret = set_consumer_device_supply(rdev,
  2937. init_data->consumer_supplies[i].dev_name,
  2938. init_data->consumer_supplies[i].supply);
  2939. if (ret < 0) {
  2940. dev_err(dev, "Failed to set supply %s\n",
  2941. init_data->consumer_supplies[i].supply);
  2942. goto unset_supplies;
  2943. }
  2944. }
  2945. }
  2946. list_add(&rdev->list, &regulator_list);
  2947. rdev_init_debugfs(rdev);
  2948. out:
  2949. mutex_unlock(&regulator_list_mutex);
  2950. return rdev;
  2951. unset_supplies:
  2952. unset_regulator_supplies(rdev);
  2953. scrub:
  2954. if (rdev->supply)
  2955. _regulator_put(rdev->supply);
  2956. if (rdev->ena_gpio)
  2957. gpio_free(rdev->ena_gpio);
  2958. kfree(rdev->constraints);
  2959. wash:
  2960. device_unregister(&rdev->dev);
  2961. /* device core frees rdev */
  2962. rdev = ERR_PTR(ret);
  2963. goto out;
  2964. clean:
  2965. kfree(rdev);
  2966. rdev = ERR_PTR(ret);
  2967. goto out;
  2968. }
  2969. EXPORT_SYMBOL_GPL(regulator_register);
  2970. /**
  2971. * regulator_unregister - unregister regulator
  2972. * @rdev: regulator to unregister
  2973. *
  2974. * Called by regulator drivers to unregister a regulator.
  2975. */
  2976. void regulator_unregister(struct regulator_dev *rdev)
  2977. {
  2978. if (rdev == NULL)
  2979. return;
  2980. if (rdev->supply)
  2981. regulator_put(rdev->supply);
  2982. mutex_lock(&regulator_list_mutex);
  2983. debugfs_remove_recursive(rdev->debugfs);
  2984. flush_work(&rdev->disable_work.work);
  2985. WARN_ON(rdev->open_count);
  2986. unset_regulator_supplies(rdev);
  2987. list_del(&rdev->list);
  2988. kfree(rdev->constraints);
  2989. if (rdev->ena_gpio)
  2990. gpio_free(rdev->ena_gpio);
  2991. device_unregister(&rdev->dev);
  2992. mutex_unlock(&regulator_list_mutex);
  2993. }
  2994. EXPORT_SYMBOL_GPL(regulator_unregister);
  2995. /**
  2996. * regulator_suspend_prepare - prepare regulators for system wide suspend
  2997. * @state: system suspend state
  2998. *
  2999. * Configure each regulator with it's suspend operating parameters for state.
  3000. * This will usually be called by machine suspend code prior to supending.
  3001. */
  3002. int regulator_suspend_prepare(suspend_state_t state)
  3003. {
  3004. struct regulator_dev *rdev;
  3005. int ret = 0;
  3006. /* ON is handled by regulator active state */
  3007. if (state == PM_SUSPEND_ON)
  3008. return -EINVAL;
  3009. mutex_lock(&regulator_list_mutex);
  3010. list_for_each_entry(rdev, &regulator_list, list) {
  3011. mutex_lock(&rdev->mutex);
  3012. ret = suspend_prepare(rdev, state);
  3013. mutex_unlock(&rdev->mutex);
  3014. if (ret < 0) {
  3015. rdev_err(rdev, "failed to prepare\n");
  3016. goto out;
  3017. }
  3018. }
  3019. out:
  3020. mutex_unlock(&regulator_list_mutex);
  3021. return ret;
  3022. }
  3023. EXPORT_SYMBOL_GPL(regulator_suspend_prepare);
  3024. /**
  3025. * regulator_suspend_finish - resume regulators from system wide suspend
  3026. *
  3027. * Turn on regulators that might be turned off by regulator_suspend_prepare
  3028. * and that should be turned on according to the regulators properties.
  3029. */
  3030. int regulator_suspend_finish(void)
  3031. {
  3032. struct regulator_dev *rdev;
  3033. int ret = 0, error;
  3034. mutex_lock(&regulator_list_mutex);
  3035. list_for_each_entry(rdev, &regulator_list, list) {
  3036. struct regulator_ops *ops = rdev->desc->ops;
  3037. mutex_lock(&rdev->mutex);
  3038. if ((rdev->use_count > 0 || rdev->constraints->always_on) &&
  3039. ops->enable) {
  3040. error = ops->enable(rdev);
  3041. if (error)
  3042. ret = error;
  3043. } else {
  3044. if (!has_full_constraints)
  3045. goto unlock;
  3046. if (!ops->disable)
  3047. goto unlock;
  3048. if (!_regulator_is_enabled(rdev))
  3049. goto unlock;
  3050. error = ops->disable(rdev);
  3051. if (error)
  3052. ret = error;
  3053. }
  3054. unlock:
  3055. mutex_unlock(&rdev->mutex);
  3056. }
  3057. mutex_unlock(&regulator_list_mutex);
  3058. return ret;
  3059. }
  3060. EXPORT_SYMBOL_GPL(regulator_suspend_finish);
  3061. /**
  3062. * regulator_has_full_constraints - the system has fully specified constraints
  3063. *
  3064. * Calling this function will cause the regulator API to disable all
  3065. * regulators which have a zero use count and don't have an always_on
  3066. * constraint in a late_initcall.
  3067. *
  3068. * The intention is that this will become the default behaviour in a
  3069. * future kernel release so users are encouraged to use this facility
  3070. * now.
  3071. */
  3072. void regulator_has_full_constraints(void)
  3073. {
  3074. has_full_constraints = 1;
  3075. }
  3076. EXPORT_SYMBOL_GPL(regulator_has_full_constraints);
  3077. /**
  3078. * regulator_use_dummy_regulator - Provide a dummy regulator when none is found
  3079. *
  3080. * Calling this function will cause the regulator API to provide a
  3081. * dummy regulator to consumers if no physical regulator is found,
  3082. * allowing most consumers to proceed as though a regulator were
  3083. * configured. This allows systems such as those with software
  3084. * controllable regulators for the CPU core only to be brought up more
  3085. * readily.
  3086. */
  3087. void regulator_use_dummy_regulator(void)
  3088. {
  3089. board_wants_dummy_regulator = true;
  3090. }
  3091. EXPORT_SYMBOL_GPL(regulator_use_dummy_regulator);
  3092. /**
  3093. * rdev_get_drvdata - get rdev regulator driver data
  3094. * @rdev: regulator
  3095. *
  3096. * Get rdev regulator driver private data. This call can be used in the
  3097. * regulator driver context.
  3098. */
  3099. void *rdev_get_drvdata(struct regulator_dev *rdev)
  3100. {
  3101. return rdev->reg_data;
  3102. }
  3103. EXPORT_SYMBOL_GPL(rdev_get_drvdata);
  3104. /**
  3105. * regulator_get_drvdata - get regulator driver data
  3106. * @regulator: regulator
  3107. *
  3108. * Get regulator driver private data. This call can be used in the consumer
  3109. * driver context when non API regulator specific functions need to be called.
  3110. */
  3111. void *regulator_get_drvdata(struct regulator *regulator)
  3112. {
  3113. return regulator->rdev->reg_data;
  3114. }
  3115. EXPORT_SYMBOL_GPL(regulator_get_drvdata);
  3116. /**
  3117. * regulator_set_drvdata - set regulator driver data
  3118. * @regulator: regulator
  3119. * @data: data
  3120. */
  3121. void regulator_set_drvdata(struct regulator *regulator, void *data)
  3122. {
  3123. regulator->rdev->reg_data = data;
  3124. }
  3125. EXPORT_SYMBOL_GPL(regulator_set_drvdata);
  3126. /**
  3127. * regulator_get_id - get regulator ID
  3128. * @rdev: regulator
  3129. */
  3130. int rdev_get_id(struct regulator_dev *rdev)
  3131. {
  3132. return rdev->desc->id;
  3133. }
  3134. EXPORT_SYMBOL_GPL(rdev_get_id);
  3135. struct device *rdev_get_dev(struct regulator_dev *rdev)
  3136. {
  3137. return &rdev->dev;
  3138. }
  3139. EXPORT_SYMBOL_GPL(rdev_get_dev);
  3140. void *regulator_get_init_drvdata(struct regulator_init_data *reg_init_data)
  3141. {
  3142. return reg_init_data->driver_data;
  3143. }
  3144. EXPORT_SYMBOL_GPL(regulator_get_init_drvdata);
  3145. #ifdef CONFIG_DEBUG_FS
  3146. static ssize_t supply_map_read_file(struct file *file, char __user *user_buf,
  3147. size_t count, loff_t *ppos)
  3148. {
  3149. char *buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
  3150. ssize_t len, ret = 0;
  3151. struct regulator_map *map;
  3152. if (!buf)
  3153. return -ENOMEM;
  3154. list_for_each_entry(map, &regulator_map_list, list) {
  3155. len = snprintf(buf + ret, PAGE_SIZE - ret,
  3156. "%s -> %s.%s\n",
  3157. rdev_get_name(map->regulator), map->dev_name,
  3158. map->supply);
  3159. if (len >= 0)
  3160. ret += len;
  3161. if (ret > PAGE_SIZE) {
  3162. ret = PAGE_SIZE;
  3163. break;
  3164. }
  3165. }
  3166. ret = simple_read_from_buffer(user_buf, count, ppos, buf, ret);
  3167. kfree(buf);
  3168. return ret;
  3169. }
  3170. #endif
  3171. static const struct file_operations supply_map_fops = {
  3172. #ifdef CONFIG_DEBUG_FS
  3173. .read = supply_map_read_file,
  3174. .llseek = default_llseek,
  3175. #endif
  3176. };
  3177. static int __init regulator_init(void)
  3178. {
  3179. int ret;
  3180. ret = class_register(&regulator_class);
  3181. debugfs_root = debugfs_create_dir("regulator", NULL);
  3182. if (!debugfs_root)
  3183. pr_warn("regulator: Failed to create debugfs directory\n");
  3184. debugfs_create_file("supply_map", 0444, debugfs_root, NULL,
  3185. &supply_map_fops);
  3186. regulator_dummy_init();
  3187. return ret;
  3188. }
  3189. /* init early to allow our consumers to complete system booting */
  3190. core_initcall(regulator_init);
  3191. static int __init regulator_init_complete(void)
  3192. {
  3193. struct regulator_dev *rdev;
  3194. struct regulator_ops *ops;
  3195. struct regulation_constraints *c;
  3196. int enabled, ret;
  3197. /*
  3198. * Since DT doesn't provide an idiomatic mechanism for
  3199. * enabling full constraints and since it's much more natural
  3200. * with DT to provide them just assume that a DT enabled
  3201. * system has full constraints.
  3202. */
  3203. if (of_have_populated_dt())
  3204. has_full_constraints = true;
  3205. mutex_lock(&regulator_list_mutex);
  3206. /* If we have a full configuration then disable any regulators
  3207. * which are not in use or always_on. This will become the
  3208. * default behaviour in the future.
  3209. */
  3210. list_for_each_entry(rdev, &regulator_list, list) {
  3211. ops = rdev->desc->ops;
  3212. c = rdev->constraints;
  3213. if (!ops->disable || (c && c->always_on))
  3214. continue;
  3215. mutex_lock(&rdev->mutex);
  3216. if (rdev->use_count)
  3217. goto unlock;
  3218. /* If we can't read the status assume it's on. */
  3219. if (ops->is_enabled)
  3220. enabled = ops->is_enabled(rdev);
  3221. else
  3222. enabled = 1;
  3223. if (!enabled)
  3224. goto unlock;
  3225. if (has_full_constraints) {
  3226. /* We log since this may kill the system if it
  3227. * goes wrong. */
  3228. rdev_info(rdev, "disabling\n");
  3229. ret = ops->disable(rdev);
  3230. if (ret != 0) {
  3231. rdev_err(rdev, "couldn't disable: %d\n", ret);
  3232. }
  3233. } else {
  3234. /* The intention is that in future we will
  3235. * assume that full constraints are provided
  3236. * so warn even if we aren't going to do
  3237. * anything here.
  3238. */
  3239. rdev_warn(rdev, "incomplete constraints, leaving on\n");
  3240. }
  3241. unlock:
  3242. mutex_unlock(&rdev->mutex);
  3243. }
  3244. mutex_unlock(&regulator_list_mutex);
  3245. return 0;
  3246. }
  3247. late_initcall(regulator_init_complete);