omap_hwmod.c 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963
  1. /*
  2. * omap_hwmod implementation for OMAP2/3/4
  3. *
  4. * Copyright (C) 2009-2011 Nokia Corporation
  5. * Copyright (C) 2011-2012 Texas Instruments, Inc.
  6. *
  7. * Paul Walmsley, Benoît Cousson, Kevin Hilman
  8. *
  9. * Created in collaboration with (alphabetical order): Thara Gopinath,
  10. * Tony Lindgren, Rajendra Nayak, Vikram Pandita, Sakari Poussa, Anand
  11. * Sawant, Santosh Shilimkar, Richard Woodruff
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License version 2 as
  15. * published by the Free Software Foundation.
  16. *
  17. * Introduction
  18. * ------------
  19. * One way to view an OMAP SoC is as a collection of largely unrelated
  20. * IP blocks connected by interconnects. The IP blocks include
  21. * devices such as ARM processors, audio serial interfaces, UARTs,
  22. * etc. Some of these devices, like the DSP, are created by TI;
  23. * others, like the SGX, largely originate from external vendors. In
  24. * TI's documentation, on-chip devices are referred to as "OMAP
  25. * modules." Some of these IP blocks are identical across several
  26. * OMAP versions. Others are revised frequently.
  27. *
  28. * These OMAP modules are tied together by various interconnects.
  29. * Most of the address and data flow between modules is via OCP-based
  30. * interconnects such as the L3 and L4 buses; but there are other
  31. * interconnects that distribute the hardware clock tree, handle idle
  32. * and reset signaling, supply power, and connect the modules to
  33. * various pads or balls on the OMAP package.
  34. *
  35. * OMAP hwmod provides a consistent way to describe the on-chip
  36. * hardware blocks and their integration into the rest of the chip.
  37. * This description can be automatically generated from the TI
  38. * hardware database. OMAP hwmod provides a standard, consistent API
  39. * to reset, enable, idle, and disable these hardware blocks. And
  40. * hwmod provides a way for other core code, such as the Linux device
  41. * code or the OMAP power management and address space mapping code,
  42. * to query the hardware database.
  43. *
  44. * Using hwmod
  45. * -----------
  46. * Drivers won't call hwmod functions directly. That is done by the
  47. * omap_device code, and in rare occasions, by custom integration code
  48. * in arch/arm/ *omap*. The omap_device code includes functions to
  49. * build a struct platform_device using omap_hwmod data, and that is
  50. * currently how hwmod data is communicated to drivers and to the
  51. * Linux driver model. Most drivers will call omap_hwmod functions only
  52. * indirectly, via pm_runtime*() functions.
  53. *
  54. * From a layering perspective, here is where the OMAP hwmod code
  55. * fits into the kernel software stack:
  56. *
  57. * +-------------------------------+
  58. * | Device driver code |
  59. * | (e.g., drivers/) |
  60. * +-------------------------------+
  61. * | Linux driver model |
  62. * | (platform_device / |
  63. * | platform_driver data/code) |
  64. * +-------------------------------+
  65. * | OMAP core-driver integration |
  66. * |(arch/arm/mach-omap2/devices.c)|
  67. * +-------------------------------+
  68. * | omap_device code |
  69. * | (../plat-omap/omap_device.c) |
  70. * +-------------------------------+
  71. * ----> | omap_hwmod code/data | <-----
  72. * | (../mach-omap2/omap_hwmod*) |
  73. * +-------------------------------+
  74. * | OMAP clock/PRCM/register fns |
  75. * | ({read,write}l_relaxed, clk*) |
  76. * +-------------------------------+
  77. *
  78. * Device drivers should not contain any OMAP-specific code or data in
  79. * them. They should only contain code to operate the IP block that
  80. * the driver is responsible for. This is because these IP blocks can
  81. * also appear in other SoCs, either from TI (such as DaVinci) or from
  82. * other manufacturers; and drivers should be reusable across other
  83. * platforms.
  84. *
  85. * The OMAP hwmod code also will attempt to reset and idle all on-chip
  86. * devices upon boot. The goal here is for the kernel to be
  87. * completely self-reliant and independent from bootloaders. This is
  88. * to ensure a repeatable configuration, both to ensure consistent
  89. * runtime behavior, and to make it easier for others to reproduce
  90. * bugs.
  91. *
  92. * OMAP module activity states
  93. * ---------------------------
  94. * The hwmod code considers modules to be in one of several activity
  95. * states. IP blocks start out in an UNKNOWN state, then once they
  96. * are registered via the hwmod code, proceed to the REGISTERED state.
  97. * Once their clock names are resolved to clock pointers, the module
  98. * enters the CLKS_INITED state; and finally, once the module has been
  99. * reset and the integration registers programmed, the INITIALIZED state
  100. * is entered. The hwmod code will then place the module into either
  101. * the IDLE state to save power, or in the case of a critical system
  102. * module, the ENABLED state.
  103. *
  104. * OMAP core integration code can then call omap_hwmod*() functions
  105. * directly to move the module between the IDLE, ENABLED, and DISABLED
  106. * states, as needed. This is done during both the PM idle loop, and
  107. * in the OMAP core integration code's implementation of the PM runtime
  108. * functions.
  109. *
  110. * References
  111. * ----------
  112. * This is a partial list.
  113. * - OMAP2420 Multimedia Processor Silicon Revision 2.1.1, 2.2 (SWPU064)
  114. * - OMAP2430 Multimedia Device POP Silicon Revision 2.1 (SWPU090)
  115. * - OMAP34xx Multimedia Device Silicon Revision 3.1 (SWPU108)
  116. * - OMAP4430 Multimedia Device Silicon Revision 1.0 (SWPU140)
  117. * - Open Core Protocol Specification 2.2
  118. *
  119. * To do:
  120. * - handle IO mapping
  121. * - bus throughput & module latency measurement code
  122. *
  123. * XXX add tests at the beginning of each function to ensure the hwmod is
  124. * in the appropriate state
  125. * XXX error return values should be checked to ensure that they are
  126. * appropriate
  127. */
  128. #undef DEBUG
  129. #include <linux/kernel.h>
  130. #include <linux/errno.h>
  131. #include <linux/io.h>
  132. #include <linux/clk.h>
  133. #include <linux/clk-provider.h>
  134. #include <linux/delay.h>
  135. #include <linux/err.h>
  136. #include <linux/list.h>
  137. #include <linux/mutex.h>
  138. #include <linux/spinlock.h>
  139. #include <linux/slab.h>
  140. #include <linux/cpu.h>
  141. #include <linux/of.h>
  142. #include <linux/of_address.h>
  143. #include <linux/bootmem.h>
  144. #include <linux/platform_data/ti-sysc.h>
  145. #include <dt-bindings/bus/ti-sysc.h>
  146. #include <asm/system_misc.h>
  147. #include "clock.h"
  148. #include "omap_hwmod.h"
  149. #include "soc.h"
  150. #include "common.h"
  151. #include "clockdomain.h"
  152. #include "powerdomain.h"
  153. #include "cm2xxx.h"
  154. #include "cm3xxx.h"
  155. #include "cm33xx.h"
  156. #include "prm.h"
  157. #include "prm3xxx.h"
  158. #include "prm44xx.h"
  159. #include "prm33xx.h"
  160. #include "prminst44xx.h"
  161. #include "pm.h"
  162. /* Name of the OMAP hwmod for the MPU */
  163. #define MPU_INITIATOR_NAME "mpu"
  164. /*
  165. * Number of struct omap_hwmod_link records per struct
  166. * omap_hwmod_ocp_if record (master->slave and slave->master)
  167. */
  168. #define LINKS_PER_OCP_IF 2
  169. /*
  170. * Address offset (in bytes) between the reset control and the reset
  171. * status registers: 4 bytes on OMAP4
  172. */
  173. #define OMAP4_RST_CTRL_ST_OFFSET 4
  174. /*
  175. * Maximum length for module clock handle names
  176. */
  177. #define MOD_CLK_MAX_NAME_LEN 32
  178. /**
  179. * struct clkctrl_provider - clkctrl provider mapping data
  180. * @addr: base address for the provider
  181. * @size: size of the provider address space
  182. * @offset: offset of the provider from PRCM instance base
  183. * @node: device node associated with the provider
  184. * @link: list link
  185. */
  186. struct clkctrl_provider {
  187. u32 addr;
  188. u32 size;
  189. u16 offset;
  190. struct device_node *node;
  191. struct list_head link;
  192. };
  193. static LIST_HEAD(clkctrl_providers);
  194. /**
  195. * struct omap_hwmod_soc_ops - fn ptrs for some SoC-specific operations
  196. * @enable_module: function to enable a module (via MODULEMODE)
  197. * @disable_module: function to disable a module (via MODULEMODE)
  198. *
  199. * XXX Eventually this functionality will be hidden inside the PRM/CM
  200. * device drivers. Until then, this should avoid huge blocks of cpu_is_*()
  201. * conditionals in this code.
  202. */
  203. struct omap_hwmod_soc_ops {
  204. void (*enable_module)(struct omap_hwmod *oh);
  205. int (*disable_module)(struct omap_hwmod *oh);
  206. int (*wait_target_ready)(struct omap_hwmod *oh);
  207. int (*assert_hardreset)(struct omap_hwmod *oh,
  208. struct omap_hwmod_rst_info *ohri);
  209. int (*deassert_hardreset)(struct omap_hwmod *oh,
  210. struct omap_hwmod_rst_info *ohri);
  211. int (*is_hardreset_asserted)(struct omap_hwmod *oh,
  212. struct omap_hwmod_rst_info *ohri);
  213. int (*init_clkdm)(struct omap_hwmod *oh);
  214. void (*update_context_lost)(struct omap_hwmod *oh);
  215. int (*get_context_lost)(struct omap_hwmod *oh);
  216. int (*disable_direct_prcm)(struct omap_hwmod *oh);
  217. u32 (*xlate_clkctrl)(struct omap_hwmod *oh);
  218. };
  219. /* soc_ops: adapts the omap_hwmod code to the currently-booted SoC */
  220. static struct omap_hwmod_soc_ops soc_ops;
  221. /* omap_hwmod_list contains all registered struct omap_hwmods */
  222. static LIST_HEAD(omap_hwmod_list);
  223. /* mpu_oh: used to add/remove MPU initiator from sleepdep list */
  224. static struct omap_hwmod *mpu_oh;
  225. /* inited: set to true once the hwmod code is initialized */
  226. static bool inited;
  227. /* Private functions */
  228. /**
  229. * _update_sysc_cache - return the module OCP_SYSCONFIG register, keep copy
  230. * @oh: struct omap_hwmod *
  231. *
  232. * Load the current value of the hwmod OCP_SYSCONFIG register into the
  233. * struct omap_hwmod for later use. Returns -EINVAL if the hwmod has no
  234. * OCP_SYSCONFIG register or 0 upon success.
  235. */
  236. static int _update_sysc_cache(struct omap_hwmod *oh)
  237. {
  238. if (!oh->class->sysc) {
  239. WARN(1, "omap_hwmod: %s: cannot read OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
  240. return -EINVAL;
  241. }
  242. /* XXX ensure module interface clock is up */
  243. oh->_sysc_cache = omap_hwmod_read(oh, oh->class->sysc->sysc_offs);
  244. if (!(oh->class->sysc->sysc_flags & SYSC_NO_CACHE))
  245. oh->_int_flags |= _HWMOD_SYSCONFIG_LOADED;
  246. return 0;
  247. }
  248. /**
  249. * _write_sysconfig - write a value to the module's OCP_SYSCONFIG register
  250. * @v: OCP_SYSCONFIG value to write
  251. * @oh: struct omap_hwmod *
  252. *
  253. * Write @v into the module class' OCP_SYSCONFIG register, if it has
  254. * one. No return value.
  255. */
  256. static void _write_sysconfig(u32 v, struct omap_hwmod *oh)
  257. {
  258. if (!oh->class->sysc) {
  259. WARN(1, "omap_hwmod: %s: cannot write OCP_SYSCONFIG: not defined on hwmod's class\n", oh->name);
  260. return;
  261. }
  262. /* XXX ensure module interface clock is up */
  263. /* Module might have lost context, always update cache and register */
  264. oh->_sysc_cache = v;
  265. /*
  266. * Some IP blocks (such as RTC) require unlocking of IP before
  267. * accessing its registers. If a function pointer is present
  268. * to unlock, then call it before accessing sysconfig and
  269. * call lock after writing sysconfig.
  270. */
  271. if (oh->class->unlock)
  272. oh->class->unlock(oh);
  273. omap_hwmod_write(v, oh, oh->class->sysc->sysc_offs);
  274. if (oh->class->lock)
  275. oh->class->lock(oh);
  276. }
  277. /**
  278. * _set_master_standbymode: set the OCP_SYSCONFIG MIDLEMODE field in @v
  279. * @oh: struct omap_hwmod *
  280. * @standbymode: MIDLEMODE field bits
  281. * @v: pointer to register contents to modify
  282. *
  283. * Update the master standby mode bits in @v to be @standbymode for
  284. * the @oh hwmod. Does not write to the hardware. Returns -EINVAL
  285. * upon error or 0 upon success.
  286. */
  287. static int _set_master_standbymode(struct omap_hwmod *oh, u8 standbymode,
  288. u32 *v)
  289. {
  290. u32 mstandby_mask;
  291. u8 mstandby_shift;
  292. if (!oh->class->sysc ||
  293. !(oh->class->sysc->sysc_flags & SYSC_HAS_MIDLEMODE))
  294. return -EINVAL;
  295. if (!oh->class->sysc->sysc_fields) {
  296. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  297. return -EINVAL;
  298. }
  299. mstandby_shift = oh->class->sysc->sysc_fields->midle_shift;
  300. mstandby_mask = (0x3 << mstandby_shift);
  301. *v &= ~mstandby_mask;
  302. *v |= __ffs(standbymode) << mstandby_shift;
  303. return 0;
  304. }
  305. /**
  306. * _set_slave_idlemode: set the OCP_SYSCONFIG SIDLEMODE field in @v
  307. * @oh: struct omap_hwmod *
  308. * @idlemode: SIDLEMODE field bits
  309. * @v: pointer to register contents to modify
  310. *
  311. * Update the slave idle mode bits in @v to be @idlemode for the @oh
  312. * hwmod. Does not write to the hardware. Returns -EINVAL upon error
  313. * or 0 upon success.
  314. */
  315. static int _set_slave_idlemode(struct omap_hwmod *oh, u8 idlemode, u32 *v)
  316. {
  317. u32 sidle_mask;
  318. u8 sidle_shift;
  319. if (!oh->class->sysc ||
  320. !(oh->class->sysc->sysc_flags & SYSC_HAS_SIDLEMODE))
  321. return -EINVAL;
  322. if (!oh->class->sysc->sysc_fields) {
  323. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  324. return -EINVAL;
  325. }
  326. sidle_shift = oh->class->sysc->sysc_fields->sidle_shift;
  327. sidle_mask = (0x3 << sidle_shift);
  328. *v &= ~sidle_mask;
  329. *v |= __ffs(idlemode) << sidle_shift;
  330. return 0;
  331. }
  332. /**
  333. * _set_clockactivity: set OCP_SYSCONFIG.CLOCKACTIVITY bits in @v
  334. * @oh: struct omap_hwmod *
  335. * @clockact: CLOCKACTIVITY field bits
  336. * @v: pointer to register contents to modify
  337. *
  338. * Update the clockactivity mode bits in @v to be @clockact for the
  339. * @oh hwmod. Used for additional powersaving on some modules. Does
  340. * not write to the hardware. Returns -EINVAL upon error or 0 upon
  341. * success.
  342. */
  343. static int _set_clockactivity(struct omap_hwmod *oh, u8 clockact, u32 *v)
  344. {
  345. u32 clkact_mask;
  346. u8 clkact_shift;
  347. if (!oh->class->sysc ||
  348. !(oh->class->sysc->sysc_flags & SYSC_HAS_CLOCKACTIVITY))
  349. return -EINVAL;
  350. if (!oh->class->sysc->sysc_fields) {
  351. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  352. return -EINVAL;
  353. }
  354. clkact_shift = oh->class->sysc->sysc_fields->clkact_shift;
  355. clkact_mask = (0x3 << clkact_shift);
  356. *v &= ~clkact_mask;
  357. *v |= clockact << clkact_shift;
  358. return 0;
  359. }
  360. /**
  361. * _set_softreset: set OCP_SYSCONFIG.SOFTRESET bit in @v
  362. * @oh: struct omap_hwmod *
  363. * @v: pointer to register contents to modify
  364. *
  365. * Set the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
  366. * error or 0 upon success.
  367. */
  368. static int _set_softreset(struct omap_hwmod *oh, u32 *v)
  369. {
  370. u32 softrst_mask;
  371. if (!oh->class->sysc ||
  372. !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
  373. return -EINVAL;
  374. if (!oh->class->sysc->sysc_fields) {
  375. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  376. return -EINVAL;
  377. }
  378. softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
  379. *v |= softrst_mask;
  380. return 0;
  381. }
  382. /**
  383. * _clear_softreset: clear OCP_SYSCONFIG.SOFTRESET bit in @v
  384. * @oh: struct omap_hwmod *
  385. * @v: pointer to register contents to modify
  386. *
  387. * Clear the SOFTRESET bit in @v for hwmod @oh. Returns -EINVAL upon
  388. * error or 0 upon success.
  389. */
  390. static int _clear_softreset(struct omap_hwmod *oh, u32 *v)
  391. {
  392. u32 softrst_mask;
  393. if (!oh->class->sysc ||
  394. !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
  395. return -EINVAL;
  396. if (!oh->class->sysc->sysc_fields) {
  397. WARN(1,
  398. "omap_hwmod: %s: sysc_fields absent for sysconfig class\n",
  399. oh->name);
  400. return -EINVAL;
  401. }
  402. softrst_mask = (0x1 << oh->class->sysc->sysc_fields->srst_shift);
  403. *v &= ~softrst_mask;
  404. return 0;
  405. }
  406. /**
  407. * _wait_softreset_complete - wait for an OCP softreset to complete
  408. * @oh: struct omap_hwmod * to wait on
  409. *
  410. * Wait until the IP block represented by @oh reports that its OCP
  411. * softreset is complete. This can be triggered by software (see
  412. * _ocp_softreset()) or by hardware upon returning from off-mode (one
  413. * example is HSMMC). Waits for up to MAX_MODULE_SOFTRESET_WAIT
  414. * microseconds. Returns the number of microseconds waited.
  415. */
  416. static int _wait_softreset_complete(struct omap_hwmod *oh)
  417. {
  418. struct omap_hwmod_class_sysconfig *sysc;
  419. u32 softrst_mask;
  420. int c = 0;
  421. sysc = oh->class->sysc;
  422. if (sysc->sysc_flags & SYSS_HAS_RESET_STATUS)
  423. omap_test_timeout((omap_hwmod_read(oh, sysc->syss_offs)
  424. & SYSS_RESETDONE_MASK),
  425. MAX_MODULE_SOFTRESET_WAIT, c);
  426. else if (sysc->sysc_flags & SYSC_HAS_RESET_STATUS) {
  427. softrst_mask = (0x1 << sysc->sysc_fields->srst_shift);
  428. omap_test_timeout(!(omap_hwmod_read(oh, sysc->sysc_offs)
  429. & softrst_mask),
  430. MAX_MODULE_SOFTRESET_WAIT, c);
  431. }
  432. return c;
  433. }
  434. /**
  435. * _set_dmadisable: set OCP_SYSCONFIG.DMADISABLE bit in @v
  436. * @oh: struct omap_hwmod *
  437. *
  438. * The DMADISABLE bit is a semi-automatic bit present in sysconfig register
  439. * of some modules. When the DMA must perform read/write accesses, the
  440. * DMADISABLE bit is cleared by the hardware. But when the DMA must stop
  441. * for power management, software must set the DMADISABLE bit back to 1.
  442. *
  443. * Set the DMADISABLE bit in @v for hwmod @oh. Returns -EINVAL upon
  444. * error or 0 upon success.
  445. */
  446. static int _set_dmadisable(struct omap_hwmod *oh)
  447. {
  448. u32 v;
  449. u32 dmadisable_mask;
  450. if (!oh->class->sysc ||
  451. !(oh->class->sysc->sysc_flags & SYSC_HAS_DMADISABLE))
  452. return -EINVAL;
  453. if (!oh->class->sysc->sysc_fields) {
  454. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  455. return -EINVAL;
  456. }
  457. /* clocks must be on for this operation */
  458. if (oh->_state != _HWMOD_STATE_ENABLED) {
  459. pr_warn("omap_hwmod: %s: dma can be disabled only from enabled state\n", oh->name);
  460. return -EINVAL;
  461. }
  462. pr_debug("omap_hwmod: %s: setting DMADISABLE\n", oh->name);
  463. v = oh->_sysc_cache;
  464. dmadisable_mask =
  465. (0x1 << oh->class->sysc->sysc_fields->dmadisable_shift);
  466. v |= dmadisable_mask;
  467. _write_sysconfig(v, oh);
  468. return 0;
  469. }
  470. /**
  471. * _set_module_autoidle: set the OCP_SYSCONFIG AUTOIDLE field in @v
  472. * @oh: struct omap_hwmod *
  473. * @autoidle: desired AUTOIDLE bitfield value (0 or 1)
  474. * @v: pointer to register contents to modify
  475. *
  476. * Update the module autoidle bit in @v to be @autoidle for the @oh
  477. * hwmod. The autoidle bit controls whether the module can gate
  478. * internal clocks automatically when it isn't doing anything; the
  479. * exact function of this bit varies on a per-module basis. This
  480. * function does not write to the hardware. Returns -EINVAL upon
  481. * error or 0 upon success.
  482. */
  483. static int _set_module_autoidle(struct omap_hwmod *oh, u8 autoidle,
  484. u32 *v)
  485. {
  486. u32 autoidle_mask;
  487. u8 autoidle_shift;
  488. if (!oh->class->sysc ||
  489. !(oh->class->sysc->sysc_flags & SYSC_HAS_AUTOIDLE))
  490. return -EINVAL;
  491. if (!oh->class->sysc->sysc_fields) {
  492. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  493. return -EINVAL;
  494. }
  495. autoidle_shift = oh->class->sysc->sysc_fields->autoidle_shift;
  496. autoidle_mask = (0x1 << autoidle_shift);
  497. *v &= ~autoidle_mask;
  498. *v |= autoidle << autoidle_shift;
  499. return 0;
  500. }
  501. /**
  502. * _enable_wakeup: set OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
  503. * @oh: struct omap_hwmod *
  504. *
  505. * Allow the hardware module @oh to send wakeups. Returns -EINVAL
  506. * upon error or 0 upon success.
  507. */
  508. static int _enable_wakeup(struct omap_hwmod *oh, u32 *v)
  509. {
  510. if (!oh->class->sysc ||
  511. !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
  512. (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
  513. (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
  514. return -EINVAL;
  515. if (!oh->class->sysc->sysc_fields) {
  516. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  517. return -EINVAL;
  518. }
  519. if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
  520. *v |= 0x1 << oh->class->sysc->sysc_fields->enwkup_shift;
  521. if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
  522. _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
  523. if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
  524. _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART_WKUP, v);
  525. /* XXX test pwrdm_get_wken for this hwmod's subsystem */
  526. return 0;
  527. }
  528. /**
  529. * _disable_wakeup: clear OCP_SYSCONFIG.ENAWAKEUP bit in the hardware
  530. * @oh: struct omap_hwmod *
  531. *
  532. * Prevent the hardware module @oh to send wakeups. Returns -EINVAL
  533. * upon error or 0 upon success.
  534. */
  535. static int _disable_wakeup(struct omap_hwmod *oh, u32 *v)
  536. {
  537. if (!oh->class->sysc ||
  538. !((oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP) ||
  539. (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP) ||
  540. (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)))
  541. return -EINVAL;
  542. if (!oh->class->sysc->sysc_fields) {
  543. WARN(1, "omap_hwmod: %s: offset struct for sysconfig not provided in class\n", oh->name);
  544. return -EINVAL;
  545. }
  546. if (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)
  547. *v &= ~(0x1 << oh->class->sysc->sysc_fields->enwkup_shift);
  548. if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
  549. _set_slave_idlemode(oh, HWMOD_IDLEMODE_SMART, v);
  550. if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
  551. _set_master_standbymode(oh, HWMOD_IDLEMODE_SMART, v);
  552. /* XXX test pwrdm_get_wken for this hwmod's subsystem */
  553. return 0;
  554. }
  555. static struct clockdomain *_get_clkdm(struct omap_hwmod *oh)
  556. {
  557. struct clk_hw_omap *clk;
  558. if (oh->clkdm) {
  559. return oh->clkdm;
  560. } else if (oh->_clk) {
  561. if (__clk_get_flags(oh->_clk) & CLK_IS_BASIC)
  562. return NULL;
  563. clk = to_clk_hw_omap(__clk_get_hw(oh->_clk));
  564. return clk->clkdm;
  565. }
  566. return NULL;
  567. }
  568. /**
  569. * _add_initiator_dep: prevent @oh from smart-idling while @init_oh is active
  570. * @oh: struct omap_hwmod *
  571. *
  572. * Prevent the hardware module @oh from entering idle while the
  573. * hardare module initiator @init_oh is active. Useful when a module
  574. * will be accessed by a particular initiator (e.g., if a module will
  575. * be accessed by the IVA, there should be a sleepdep between the IVA
  576. * initiator and the module). Only applies to modules in smart-idle
  577. * mode. If the clockdomain is marked as not needing autodeps, return
  578. * 0 without doing anything. Otherwise, returns -EINVAL upon error or
  579. * passes along clkdm_add_sleepdep() value upon success.
  580. */
  581. static int _add_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
  582. {
  583. struct clockdomain *clkdm, *init_clkdm;
  584. clkdm = _get_clkdm(oh);
  585. init_clkdm = _get_clkdm(init_oh);
  586. if (!clkdm || !init_clkdm)
  587. return -EINVAL;
  588. if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
  589. return 0;
  590. return clkdm_add_sleepdep(clkdm, init_clkdm);
  591. }
  592. /**
  593. * _del_initiator_dep: allow @oh to smart-idle even if @init_oh is active
  594. * @oh: struct omap_hwmod *
  595. *
  596. * Allow the hardware module @oh to enter idle while the hardare
  597. * module initiator @init_oh is active. Useful when a module will not
  598. * be accessed by a particular initiator (e.g., if a module will not
  599. * be accessed by the IVA, there should be no sleepdep between the IVA
  600. * initiator and the module). Only applies to modules in smart-idle
  601. * mode. If the clockdomain is marked as not needing autodeps, return
  602. * 0 without doing anything. Returns -EINVAL upon error or passes
  603. * along clkdm_del_sleepdep() value upon success.
  604. */
  605. static int _del_initiator_dep(struct omap_hwmod *oh, struct omap_hwmod *init_oh)
  606. {
  607. struct clockdomain *clkdm, *init_clkdm;
  608. clkdm = _get_clkdm(oh);
  609. init_clkdm = _get_clkdm(init_oh);
  610. if (!clkdm || !init_clkdm)
  611. return -EINVAL;
  612. if (clkdm && clkdm->flags & CLKDM_NO_AUTODEPS)
  613. return 0;
  614. return clkdm_del_sleepdep(clkdm, init_clkdm);
  615. }
  616. static const struct of_device_id ti_clkctrl_match_table[] __initconst = {
  617. { .compatible = "ti,clkctrl" },
  618. { }
  619. };
  620. static int __init _setup_clkctrl_provider(struct device_node *np)
  621. {
  622. const __be32 *addrp;
  623. struct clkctrl_provider *provider;
  624. u64 size;
  625. provider = memblock_virt_alloc(sizeof(*provider), 0);
  626. if (!provider)
  627. return -ENOMEM;
  628. addrp = of_get_address(np, 0, &size, NULL);
  629. provider->addr = (u32)of_translate_address(np, addrp);
  630. addrp = of_get_address(np->parent, 0, NULL, NULL);
  631. provider->offset = provider->addr -
  632. (u32)of_translate_address(np->parent, addrp);
  633. provider->addr &= ~0xff;
  634. provider->size = size | 0xff;
  635. provider->node = np;
  636. pr_debug("%s: %s: %x...%x [+%x]\n", __func__, np->parent->name,
  637. provider->addr, provider->addr + provider->size,
  638. provider->offset);
  639. list_add(&provider->link, &clkctrl_providers);
  640. return 0;
  641. }
  642. static int __init _init_clkctrl_providers(void)
  643. {
  644. struct device_node *np;
  645. int ret = 0;
  646. for_each_matching_node(np, ti_clkctrl_match_table) {
  647. ret = _setup_clkctrl_provider(np);
  648. if (ret)
  649. break;
  650. }
  651. return ret;
  652. }
  653. static u32 _omap4_xlate_clkctrl(struct omap_hwmod *oh)
  654. {
  655. if (!oh->prcm.omap4.modulemode)
  656. return 0;
  657. return omap_cm_xlate_clkctrl(oh->clkdm->prcm_partition,
  658. oh->clkdm->cm_inst,
  659. oh->prcm.omap4.clkctrl_offs);
  660. }
  661. static struct clk *_lookup_clkctrl_clk(struct omap_hwmod *oh)
  662. {
  663. struct clkctrl_provider *provider;
  664. struct clk *clk;
  665. u32 addr;
  666. if (!soc_ops.xlate_clkctrl)
  667. return NULL;
  668. addr = soc_ops.xlate_clkctrl(oh);
  669. if (!addr)
  670. return NULL;
  671. pr_debug("%s: %s: addr=%x\n", __func__, oh->name, addr);
  672. list_for_each_entry(provider, &clkctrl_providers, link) {
  673. if (provider->addr <= addr &&
  674. provider->addr + provider->size >= addr) {
  675. struct of_phandle_args clkspec;
  676. clkspec.np = provider->node;
  677. clkspec.args_count = 2;
  678. clkspec.args[0] = addr - provider->addr -
  679. provider->offset;
  680. clkspec.args[1] = 0;
  681. clk = of_clk_get_from_provider(&clkspec);
  682. pr_debug("%s: %s got %p (offset=%x, provider=%s)\n",
  683. __func__, oh->name, clk, clkspec.args[0],
  684. provider->node->parent->name);
  685. return clk;
  686. }
  687. }
  688. return NULL;
  689. }
  690. /**
  691. * _init_main_clk - get a struct clk * for the the hwmod's main functional clk
  692. * @oh: struct omap_hwmod *
  693. *
  694. * Called from _init_clocks(). Populates the @oh _clk (main
  695. * functional clock pointer) if a clock matching the hwmod name is found,
  696. * or a main_clk is present. Returns 0 on success or -EINVAL on error.
  697. */
  698. static int _init_main_clk(struct omap_hwmod *oh)
  699. {
  700. int ret = 0;
  701. struct clk *clk = NULL;
  702. clk = _lookup_clkctrl_clk(oh);
  703. if (!IS_ERR_OR_NULL(clk)) {
  704. pr_debug("%s: mapped main_clk %s for %s\n", __func__,
  705. __clk_get_name(clk), oh->name);
  706. oh->main_clk = __clk_get_name(clk);
  707. oh->_clk = clk;
  708. soc_ops.disable_direct_prcm(oh);
  709. } else {
  710. if (!oh->main_clk)
  711. return 0;
  712. oh->_clk = clk_get(NULL, oh->main_clk);
  713. }
  714. if (IS_ERR(oh->_clk)) {
  715. pr_warn("omap_hwmod: %s: cannot clk_get main_clk %s\n",
  716. oh->name, oh->main_clk);
  717. return -EINVAL;
  718. }
  719. /*
  720. * HACK: This needs a re-visit once clk_prepare() is implemented
  721. * to do something meaningful. Today its just a no-op.
  722. * If clk_prepare() is used at some point to do things like
  723. * voltage scaling etc, then this would have to be moved to
  724. * some point where subsystems like i2c and pmic become
  725. * available.
  726. */
  727. clk_prepare(oh->_clk);
  728. if (!_get_clkdm(oh))
  729. pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n",
  730. oh->name, oh->main_clk);
  731. return ret;
  732. }
  733. /**
  734. * _init_interface_clks - get a struct clk * for the the hwmod's interface clks
  735. * @oh: struct omap_hwmod *
  736. *
  737. * Called from _init_clocks(). Populates the @oh OCP slave interface
  738. * clock pointers. Returns 0 on success or -EINVAL on error.
  739. */
  740. static int _init_interface_clks(struct omap_hwmod *oh)
  741. {
  742. struct omap_hwmod_ocp_if *os;
  743. struct clk *c;
  744. int ret = 0;
  745. list_for_each_entry(os, &oh->slave_ports, node) {
  746. if (!os->clk)
  747. continue;
  748. c = clk_get(NULL, os->clk);
  749. if (IS_ERR(c)) {
  750. pr_warn("omap_hwmod: %s: cannot clk_get interface_clk %s\n",
  751. oh->name, os->clk);
  752. ret = -EINVAL;
  753. continue;
  754. }
  755. os->_clk = c;
  756. /*
  757. * HACK: This needs a re-visit once clk_prepare() is implemented
  758. * to do something meaningful. Today its just a no-op.
  759. * If clk_prepare() is used at some point to do things like
  760. * voltage scaling etc, then this would have to be moved to
  761. * some point where subsystems like i2c and pmic become
  762. * available.
  763. */
  764. clk_prepare(os->_clk);
  765. }
  766. return ret;
  767. }
  768. /**
  769. * _init_opt_clk - get a struct clk * for the the hwmod's optional clocks
  770. * @oh: struct omap_hwmod *
  771. *
  772. * Called from _init_clocks(). Populates the @oh omap_hwmod_opt_clk
  773. * clock pointers. Returns 0 on success or -EINVAL on error.
  774. */
  775. static int _init_opt_clks(struct omap_hwmod *oh)
  776. {
  777. struct omap_hwmod_opt_clk *oc;
  778. struct clk *c;
  779. int i;
  780. int ret = 0;
  781. for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) {
  782. c = clk_get(NULL, oc->clk);
  783. if (IS_ERR(c)) {
  784. pr_warn("omap_hwmod: %s: cannot clk_get opt_clk %s\n",
  785. oh->name, oc->clk);
  786. ret = -EINVAL;
  787. continue;
  788. }
  789. oc->_clk = c;
  790. /*
  791. * HACK: This needs a re-visit once clk_prepare() is implemented
  792. * to do something meaningful. Today its just a no-op.
  793. * If clk_prepare() is used at some point to do things like
  794. * voltage scaling etc, then this would have to be moved to
  795. * some point where subsystems like i2c and pmic become
  796. * available.
  797. */
  798. clk_prepare(oc->_clk);
  799. }
  800. return ret;
  801. }
  802. static void _enable_optional_clocks(struct omap_hwmod *oh)
  803. {
  804. struct omap_hwmod_opt_clk *oc;
  805. int i;
  806. pr_debug("omap_hwmod: %s: enabling optional clocks\n", oh->name);
  807. for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
  808. if (oc->_clk) {
  809. pr_debug("omap_hwmod: enable %s:%s\n", oc->role,
  810. __clk_get_name(oc->_clk));
  811. clk_enable(oc->_clk);
  812. }
  813. }
  814. static void _disable_optional_clocks(struct omap_hwmod *oh)
  815. {
  816. struct omap_hwmod_opt_clk *oc;
  817. int i;
  818. pr_debug("omap_hwmod: %s: disabling optional clocks\n", oh->name);
  819. for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++)
  820. if (oc->_clk) {
  821. pr_debug("omap_hwmod: disable %s:%s\n", oc->role,
  822. __clk_get_name(oc->_clk));
  823. clk_disable(oc->_clk);
  824. }
  825. }
  826. /**
  827. * _enable_clocks - enable hwmod main clock and interface clocks
  828. * @oh: struct omap_hwmod *
  829. *
  830. * Enables all clocks necessary for register reads and writes to succeed
  831. * on the hwmod @oh. Returns 0.
  832. */
  833. static int _enable_clocks(struct omap_hwmod *oh)
  834. {
  835. struct omap_hwmod_ocp_if *os;
  836. pr_debug("omap_hwmod: %s: enabling clocks\n", oh->name);
  837. if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
  838. _enable_optional_clocks(oh);
  839. if (oh->_clk)
  840. clk_enable(oh->_clk);
  841. list_for_each_entry(os, &oh->slave_ports, node) {
  842. if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
  843. clk_enable(os->_clk);
  844. }
  845. /* The opt clocks are controlled by the device driver. */
  846. return 0;
  847. }
  848. /**
  849. * _omap4_clkctrl_managed_by_clkfwk - true if clkctrl managed by clock framework
  850. * @oh: struct omap_hwmod *
  851. */
  852. static bool _omap4_clkctrl_managed_by_clkfwk(struct omap_hwmod *oh)
  853. {
  854. if (oh->prcm.omap4.flags & HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK)
  855. return true;
  856. return false;
  857. }
  858. /**
  859. * _omap4_has_clkctrl_clock - returns true if a module has clkctrl clock
  860. * @oh: struct omap_hwmod *
  861. */
  862. static bool _omap4_has_clkctrl_clock(struct omap_hwmod *oh)
  863. {
  864. if (oh->prcm.omap4.clkctrl_offs)
  865. return true;
  866. if (!oh->prcm.omap4.clkctrl_offs &&
  867. oh->prcm.omap4.flags & HWMOD_OMAP4_ZERO_CLKCTRL_OFFSET)
  868. return true;
  869. return false;
  870. }
  871. /**
  872. * _disable_clocks - disable hwmod main clock and interface clocks
  873. * @oh: struct omap_hwmod *
  874. *
  875. * Disables the hwmod @oh main functional and interface clocks. Returns 0.
  876. */
  877. static int _disable_clocks(struct omap_hwmod *oh)
  878. {
  879. struct omap_hwmod_ocp_if *os;
  880. pr_debug("omap_hwmod: %s: disabling clocks\n", oh->name);
  881. if (oh->_clk)
  882. clk_disable(oh->_clk);
  883. list_for_each_entry(os, &oh->slave_ports, node) {
  884. if (os->_clk && (os->flags & OCPIF_SWSUP_IDLE))
  885. clk_disable(os->_clk);
  886. }
  887. if (oh->flags & HWMOD_OPT_CLKS_NEEDED)
  888. _disable_optional_clocks(oh);
  889. /* The opt clocks are controlled by the device driver. */
  890. return 0;
  891. }
  892. /**
  893. * _omap4_enable_module - enable CLKCTRL modulemode on OMAP4
  894. * @oh: struct omap_hwmod *
  895. *
  896. * Enables the PRCM module mode related to the hwmod @oh.
  897. * No return value.
  898. */
  899. static void _omap4_enable_module(struct omap_hwmod *oh)
  900. {
  901. if (!oh->clkdm || !oh->prcm.omap4.modulemode ||
  902. _omap4_clkctrl_managed_by_clkfwk(oh))
  903. return;
  904. pr_debug("omap_hwmod: %s: %s: %d\n",
  905. oh->name, __func__, oh->prcm.omap4.modulemode);
  906. omap_cm_module_enable(oh->prcm.omap4.modulemode,
  907. oh->clkdm->prcm_partition,
  908. oh->clkdm->cm_inst, oh->prcm.omap4.clkctrl_offs);
  909. }
  910. /**
  911. * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4
  912. * @oh: struct omap_hwmod *
  913. *
  914. * Wait for a module @oh to enter slave idle. Returns 0 if the module
  915. * does not have an IDLEST bit or if the module successfully enters
  916. * slave idle; otherwise, pass along the return value of the
  917. * appropriate *_cm*_wait_module_idle() function.
  918. */
  919. static int _omap4_wait_target_disable(struct omap_hwmod *oh)
  920. {
  921. if (!oh)
  922. return -EINVAL;
  923. if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm)
  924. return 0;
  925. if (oh->flags & HWMOD_NO_IDLEST)
  926. return 0;
  927. if (_omap4_clkctrl_managed_by_clkfwk(oh))
  928. return 0;
  929. if (!_omap4_has_clkctrl_clock(oh))
  930. return 0;
  931. return omap_cm_wait_module_idle(oh->clkdm->prcm_partition,
  932. oh->clkdm->cm_inst,
  933. oh->prcm.omap4.clkctrl_offs, 0);
  934. }
  935. /**
  936. * _save_mpu_port_index - find and save the index to @oh's MPU port
  937. * @oh: struct omap_hwmod *
  938. *
  939. * Determines the array index of the OCP slave port that the MPU uses
  940. * to address the device, and saves it into the struct omap_hwmod.
  941. * Intended to be called during hwmod registration only. No return
  942. * value.
  943. */
  944. static void __init _save_mpu_port_index(struct omap_hwmod *oh)
  945. {
  946. struct omap_hwmod_ocp_if *os = NULL;
  947. if (!oh)
  948. return;
  949. oh->_int_flags |= _HWMOD_NO_MPU_PORT;
  950. list_for_each_entry(os, &oh->slave_ports, node) {
  951. if (os->user & OCP_USER_MPU) {
  952. oh->_mpu_port = os;
  953. oh->_int_flags &= ~_HWMOD_NO_MPU_PORT;
  954. break;
  955. }
  956. }
  957. return;
  958. }
  959. /**
  960. * _find_mpu_rt_port - return omap_hwmod_ocp_if accessible by the MPU
  961. * @oh: struct omap_hwmod *
  962. *
  963. * Given a pointer to a struct omap_hwmod record @oh, return a pointer
  964. * to the struct omap_hwmod_ocp_if record that is used by the MPU to
  965. * communicate with the IP block. This interface need not be directly
  966. * connected to the MPU (and almost certainly is not), but is directly
  967. * connected to the IP block represented by @oh. Returns a pointer
  968. * to the struct omap_hwmod_ocp_if * upon success, or returns NULL upon
  969. * error or if there does not appear to be a path from the MPU to this
  970. * IP block.
  971. */
  972. static struct omap_hwmod_ocp_if *_find_mpu_rt_port(struct omap_hwmod *oh)
  973. {
  974. if (!oh || oh->_int_flags & _HWMOD_NO_MPU_PORT || oh->slaves_cnt == 0)
  975. return NULL;
  976. return oh->_mpu_port;
  977. };
  978. /**
  979. * _enable_sysc - try to bring a module out of idle via OCP_SYSCONFIG
  980. * @oh: struct omap_hwmod *
  981. *
  982. * Ensure that the OCP_SYSCONFIG register for the IP block represented
  983. * by @oh is set to indicate to the PRCM that the IP block is active.
  984. * Usually this means placing the module into smart-idle mode and
  985. * smart-standby, but if there is a bug in the automatic idle handling
  986. * for the IP block, it may need to be placed into the force-idle or
  987. * no-idle variants of these modes. No return value.
  988. */
  989. static void _enable_sysc(struct omap_hwmod *oh)
  990. {
  991. u8 idlemode, sf;
  992. u32 v;
  993. bool clkdm_act;
  994. struct clockdomain *clkdm;
  995. if (!oh->class->sysc)
  996. return;
  997. /*
  998. * Wait until reset has completed, this is needed as the IP
  999. * block is reset automatically by hardware in some cases
  1000. * (off-mode for example), and the drivers require the
  1001. * IP to be ready when they access it
  1002. */
  1003. if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
  1004. _enable_optional_clocks(oh);
  1005. _wait_softreset_complete(oh);
  1006. if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
  1007. _disable_optional_clocks(oh);
  1008. v = oh->_sysc_cache;
  1009. sf = oh->class->sysc->sysc_flags;
  1010. clkdm = _get_clkdm(oh);
  1011. if (sf & SYSC_HAS_SIDLEMODE) {
  1012. if (oh->flags & HWMOD_SWSUP_SIDLE ||
  1013. oh->flags & HWMOD_SWSUP_SIDLE_ACT) {
  1014. idlemode = HWMOD_IDLEMODE_NO;
  1015. } else {
  1016. if (sf & SYSC_HAS_ENAWAKEUP)
  1017. _enable_wakeup(oh, &v);
  1018. if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
  1019. idlemode = HWMOD_IDLEMODE_SMART_WKUP;
  1020. else
  1021. idlemode = HWMOD_IDLEMODE_SMART;
  1022. }
  1023. /*
  1024. * This is special handling for some IPs like
  1025. * 32k sync timer. Force them to idle!
  1026. */
  1027. clkdm_act = (clkdm && clkdm->flags & CLKDM_ACTIVE_WITH_MPU);
  1028. if (clkdm_act && !(oh->class->sysc->idlemodes &
  1029. (SIDLE_SMART | SIDLE_SMART_WKUP)))
  1030. idlemode = HWMOD_IDLEMODE_FORCE;
  1031. _set_slave_idlemode(oh, idlemode, &v);
  1032. }
  1033. if (sf & SYSC_HAS_MIDLEMODE) {
  1034. if (oh->flags & HWMOD_FORCE_MSTANDBY) {
  1035. idlemode = HWMOD_IDLEMODE_FORCE;
  1036. } else if (oh->flags & HWMOD_SWSUP_MSTANDBY) {
  1037. idlemode = HWMOD_IDLEMODE_NO;
  1038. } else {
  1039. if (sf & SYSC_HAS_ENAWAKEUP)
  1040. _enable_wakeup(oh, &v);
  1041. if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
  1042. idlemode = HWMOD_IDLEMODE_SMART_WKUP;
  1043. else
  1044. idlemode = HWMOD_IDLEMODE_SMART;
  1045. }
  1046. _set_master_standbymode(oh, idlemode, &v);
  1047. }
  1048. /*
  1049. * XXX The clock framework should handle this, by
  1050. * calling into this code. But this must wait until the
  1051. * clock structures are tagged with omap_hwmod entries
  1052. */
  1053. if ((oh->flags & HWMOD_SET_DEFAULT_CLOCKACT) &&
  1054. (sf & SYSC_HAS_CLOCKACTIVITY))
  1055. _set_clockactivity(oh, CLOCKACT_TEST_ICLK, &v);
  1056. _write_sysconfig(v, oh);
  1057. /*
  1058. * Set the autoidle bit only after setting the smartidle bit
  1059. * Setting this will not have any impact on the other modules.
  1060. */
  1061. if (sf & SYSC_HAS_AUTOIDLE) {
  1062. idlemode = (oh->flags & HWMOD_NO_OCP_AUTOIDLE) ?
  1063. 0 : 1;
  1064. _set_module_autoidle(oh, idlemode, &v);
  1065. _write_sysconfig(v, oh);
  1066. }
  1067. }
  1068. /**
  1069. * _idle_sysc - try to put a module into idle via OCP_SYSCONFIG
  1070. * @oh: struct omap_hwmod *
  1071. *
  1072. * If module is marked as SWSUP_SIDLE, force the module into slave
  1073. * idle; otherwise, configure it for smart-idle. If module is marked
  1074. * as SWSUP_MSUSPEND, force the module into master standby; otherwise,
  1075. * configure it for smart-standby. No return value.
  1076. */
  1077. static void _idle_sysc(struct omap_hwmod *oh)
  1078. {
  1079. u8 idlemode, sf;
  1080. u32 v;
  1081. if (!oh->class->sysc)
  1082. return;
  1083. v = oh->_sysc_cache;
  1084. sf = oh->class->sysc->sysc_flags;
  1085. if (sf & SYSC_HAS_SIDLEMODE) {
  1086. if (oh->flags & HWMOD_SWSUP_SIDLE) {
  1087. idlemode = HWMOD_IDLEMODE_FORCE;
  1088. } else {
  1089. if (sf & SYSC_HAS_ENAWAKEUP)
  1090. _enable_wakeup(oh, &v);
  1091. if (oh->class->sysc->idlemodes & SIDLE_SMART_WKUP)
  1092. idlemode = HWMOD_IDLEMODE_SMART_WKUP;
  1093. else
  1094. idlemode = HWMOD_IDLEMODE_SMART;
  1095. }
  1096. _set_slave_idlemode(oh, idlemode, &v);
  1097. }
  1098. if (sf & SYSC_HAS_MIDLEMODE) {
  1099. if ((oh->flags & HWMOD_SWSUP_MSTANDBY) ||
  1100. (oh->flags & HWMOD_FORCE_MSTANDBY)) {
  1101. idlemode = HWMOD_IDLEMODE_FORCE;
  1102. } else {
  1103. if (sf & SYSC_HAS_ENAWAKEUP)
  1104. _enable_wakeup(oh, &v);
  1105. if (oh->class->sysc->idlemodes & MSTANDBY_SMART_WKUP)
  1106. idlemode = HWMOD_IDLEMODE_SMART_WKUP;
  1107. else
  1108. idlemode = HWMOD_IDLEMODE_SMART;
  1109. }
  1110. _set_master_standbymode(oh, idlemode, &v);
  1111. }
  1112. /* If the cached value is the same as the new value, skip the write */
  1113. if (oh->_sysc_cache != v)
  1114. _write_sysconfig(v, oh);
  1115. }
  1116. /**
  1117. * _shutdown_sysc - force a module into idle via OCP_SYSCONFIG
  1118. * @oh: struct omap_hwmod *
  1119. *
  1120. * Force the module into slave idle and master suspend. No return
  1121. * value.
  1122. */
  1123. static void _shutdown_sysc(struct omap_hwmod *oh)
  1124. {
  1125. u32 v;
  1126. u8 sf;
  1127. if (!oh->class->sysc)
  1128. return;
  1129. v = oh->_sysc_cache;
  1130. sf = oh->class->sysc->sysc_flags;
  1131. if (sf & SYSC_HAS_SIDLEMODE)
  1132. _set_slave_idlemode(oh, HWMOD_IDLEMODE_FORCE, &v);
  1133. if (sf & SYSC_HAS_MIDLEMODE)
  1134. _set_master_standbymode(oh, HWMOD_IDLEMODE_FORCE, &v);
  1135. if (sf & SYSC_HAS_AUTOIDLE)
  1136. _set_module_autoidle(oh, 1, &v);
  1137. _write_sysconfig(v, oh);
  1138. }
  1139. /**
  1140. * _lookup - find an omap_hwmod by name
  1141. * @name: find an omap_hwmod by name
  1142. *
  1143. * Return a pointer to an omap_hwmod by name, or NULL if not found.
  1144. */
  1145. static struct omap_hwmod *_lookup(const char *name)
  1146. {
  1147. struct omap_hwmod *oh, *temp_oh;
  1148. oh = NULL;
  1149. list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
  1150. if (!strcmp(name, temp_oh->name)) {
  1151. oh = temp_oh;
  1152. break;
  1153. }
  1154. }
  1155. return oh;
  1156. }
  1157. /**
  1158. * _init_clkdm - look up a clockdomain name, store pointer in omap_hwmod
  1159. * @oh: struct omap_hwmod *
  1160. *
  1161. * Convert a clockdomain name stored in a struct omap_hwmod into a
  1162. * clockdomain pointer, and save it into the struct omap_hwmod.
  1163. * Return -EINVAL if the clkdm_name lookup failed.
  1164. */
  1165. static int _init_clkdm(struct omap_hwmod *oh)
  1166. {
  1167. if (!oh->clkdm_name) {
  1168. pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name);
  1169. return 0;
  1170. }
  1171. oh->clkdm = clkdm_lookup(oh->clkdm_name);
  1172. if (!oh->clkdm) {
  1173. pr_warn("omap_hwmod: %s: could not associate to clkdm %s\n",
  1174. oh->name, oh->clkdm_name);
  1175. return 0;
  1176. }
  1177. pr_debug("omap_hwmod: %s: associated to clkdm %s\n",
  1178. oh->name, oh->clkdm_name);
  1179. return 0;
  1180. }
  1181. /**
  1182. * _init_clocks - clk_get() all clocks associated with this hwmod. Retrieve as
  1183. * well the clockdomain.
  1184. * @oh: struct omap_hwmod *
  1185. * @np: device_node mapped to this hwmod
  1186. *
  1187. * Called by omap_hwmod_setup_*() (after omap2_clk_init()).
  1188. * Resolves all clock names embedded in the hwmod. Returns 0 on
  1189. * success, or a negative error code on failure.
  1190. */
  1191. static int _init_clocks(struct omap_hwmod *oh, struct device_node *np)
  1192. {
  1193. int ret = 0;
  1194. if (oh->_state != _HWMOD_STATE_REGISTERED)
  1195. return 0;
  1196. pr_debug("omap_hwmod: %s: looking up clocks\n", oh->name);
  1197. if (soc_ops.init_clkdm)
  1198. ret |= soc_ops.init_clkdm(oh);
  1199. ret |= _init_main_clk(oh);
  1200. ret |= _init_interface_clks(oh);
  1201. ret |= _init_opt_clks(oh);
  1202. if (!ret)
  1203. oh->_state = _HWMOD_STATE_CLKS_INITED;
  1204. else
  1205. pr_warn("omap_hwmod: %s: cannot _init_clocks\n", oh->name);
  1206. return ret;
  1207. }
  1208. /**
  1209. * _lookup_hardreset - fill register bit info for this hwmod/reset line
  1210. * @oh: struct omap_hwmod *
  1211. * @name: name of the reset line in the context of this hwmod
  1212. * @ohri: struct omap_hwmod_rst_info * that this function will fill in
  1213. *
  1214. * Return the bit position of the reset line that match the
  1215. * input name. Return -ENOENT if not found.
  1216. */
  1217. static int _lookup_hardreset(struct omap_hwmod *oh, const char *name,
  1218. struct omap_hwmod_rst_info *ohri)
  1219. {
  1220. int i;
  1221. for (i = 0; i < oh->rst_lines_cnt; i++) {
  1222. const char *rst_line = oh->rst_lines[i].name;
  1223. if (!strcmp(rst_line, name)) {
  1224. ohri->rst_shift = oh->rst_lines[i].rst_shift;
  1225. ohri->st_shift = oh->rst_lines[i].st_shift;
  1226. pr_debug("omap_hwmod: %s: %s: %s: rst %d st %d\n",
  1227. oh->name, __func__, rst_line, ohri->rst_shift,
  1228. ohri->st_shift);
  1229. return 0;
  1230. }
  1231. }
  1232. return -ENOENT;
  1233. }
  1234. /**
  1235. * _assert_hardreset - assert the HW reset line of submodules
  1236. * contained in the hwmod module.
  1237. * @oh: struct omap_hwmod *
  1238. * @name: name of the reset line to lookup and assert
  1239. *
  1240. * Some IP like dsp, ipu or iva contain processor that require an HW
  1241. * reset line to be assert / deassert in order to enable fully the IP.
  1242. * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
  1243. * asserting the hardreset line on the currently-booted SoC, or passes
  1244. * along the return value from _lookup_hardreset() or the SoC's
  1245. * assert_hardreset code.
  1246. */
  1247. static int _assert_hardreset(struct omap_hwmod *oh, const char *name)
  1248. {
  1249. struct omap_hwmod_rst_info ohri;
  1250. int ret = -EINVAL;
  1251. if (!oh)
  1252. return -EINVAL;
  1253. if (!soc_ops.assert_hardreset)
  1254. return -ENOSYS;
  1255. ret = _lookup_hardreset(oh, name, &ohri);
  1256. if (ret < 0)
  1257. return ret;
  1258. ret = soc_ops.assert_hardreset(oh, &ohri);
  1259. return ret;
  1260. }
  1261. /**
  1262. * _deassert_hardreset - deassert the HW reset line of submodules contained
  1263. * in the hwmod module.
  1264. * @oh: struct omap_hwmod *
  1265. * @name: name of the reset line to look up and deassert
  1266. *
  1267. * Some IP like dsp, ipu or iva contain processor that require an HW
  1268. * reset line to be assert / deassert in order to enable fully the IP.
  1269. * Returns -EINVAL if @oh is null, -ENOSYS if we have no way of
  1270. * deasserting the hardreset line on the currently-booted SoC, or passes
  1271. * along the return value from _lookup_hardreset() or the SoC's
  1272. * deassert_hardreset code.
  1273. */
  1274. static int _deassert_hardreset(struct omap_hwmod *oh, const char *name)
  1275. {
  1276. struct omap_hwmod_rst_info ohri;
  1277. int ret = -EINVAL;
  1278. if (!oh)
  1279. return -EINVAL;
  1280. if (!soc_ops.deassert_hardreset)
  1281. return -ENOSYS;
  1282. ret = _lookup_hardreset(oh, name, &ohri);
  1283. if (ret < 0)
  1284. return ret;
  1285. if (oh->clkdm) {
  1286. /*
  1287. * A clockdomain must be in SW_SUP otherwise reset
  1288. * might not be completed. The clockdomain can be set
  1289. * in HW_AUTO only when the module become ready.
  1290. */
  1291. clkdm_deny_idle(oh->clkdm);
  1292. ret = clkdm_hwmod_enable(oh->clkdm, oh);
  1293. if (ret) {
  1294. WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
  1295. oh->name, oh->clkdm->name, ret);
  1296. return ret;
  1297. }
  1298. }
  1299. _enable_clocks(oh);
  1300. if (soc_ops.enable_module)
  1301. soc_ops.enable_module(oh);
  1302. ret = soc_ops.deassert_hardreset(oh, &ohri);
  1303. if (soc_ops.disable_module)
  1304. soc_ops.disable_module(oh);
  1305. _disable_clocks(oh);
  1306. if (ret == -EBUSY)
  1307. pr_warn("omap_hwmod: %s: failed to hardreset\n", oh->name);
  1308. if (oh->clkdm) {
  1309. /*
  1310. * Set the clockdomain to HW_AUTO, assuming that the
  1311. * previous state was HW_AUTO.
  1312. */
  1313. clkdm_allow_idle(oh->clkdm);
  1314. clkdm_hwmod_disable(oh->clkdm, oh);
  1315. }
  1316. return ret;
  1317. }
  1318. /**
  1319. * _read_hardreset - read the HW reset line state of submodules
  1320. * contained in the hwmod module
  1321. * @oh: struct omap_hwmod *
  1322. * @name: name of the reset line to look up and read
  1323. *
  1324. * Return the state of the reset line. Returns -EINVAL if @oh is
  1325. * null, -ENOSYS if we have no way of reading the hardreset line
  1326. * status on the currently-booted SoC, or passes along the return
  1327. * value from _lookup_hardreset() or the SoC's is_hardreset_asserted
  1328. * code.
  1329. */
  1330. static int _read_hardreset(struct omap_hwmod *oh, const char *name)
  1331. {
  1332. struct omap_hwmod_rst_info ohri;
  1333. int ret = -EINVAL;
  1334. if (!oh)
  1335. return -EINVAL;
  1336. if (!soc_ops.is_hardreset_asserted)
  1337. return -ENOSYS;
  1338. ret = _lookup_hardreset(oh, name, &ohri);
  1339. if (ret < 0)
  1340. return ret;
  1341. return soc_ops.is_hardreset_asserted(oh, &ohri);
  1342. }
  1343. /**
  1344. * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset
  1345. * @oh: struct omap_hwmod *
  1346. *
  1347. * If all hardreset lines associated with @oh are asserted, then return true.
  1348. * Otherwise, if part of @oh is out hardreset or if no hardreset lines
  1349. * associated with @oh are asserted, then return false.
  1350. * This function is used to avoid executing some parts of the IP block
  1351. * enable/disable sequence if its hardreset line is set.
  1352. */
  1353. static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh)
  1354. {
  1355. int i, rst_cnt = 0;
  1356. if (oh->rst_lines_cnt == 0)
  1357. return false;
  1358. for (i = 0; i < oh->rst_lines_cnt; i++)
  1359. if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
  1360. rst_cnt++;
  1361. if (oh->rst_lines_cnt == rst_cnt)
  1362. return true;
  1363. return false;
  1364. }
  1365. /**
  1366. * _are_any_hardreset_lines_asserted - return true if any part of @oh is
  1367. * hard-reset
  1368. * @oh: struct omap_hwmod *
  1369. *
  1370. * If any hardreset lines associated with @oh are asserted, then
  1371. * return true. Otherwise, if no hardreset lines associated with @oh
  1372. * are asserted, or if @oh has no hardreset lines, then return false.
  1373. * This function is used to avoid executing some parts of the IP block
  1374. * enable/disable sequence if any hardreset line is set.
  1375. */
  1376. static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh)
  1377. {
  1378. int rst_cnt = 0;
  1379. int i;
  1380. for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++)
  1381. if (_read_hardreset(oh, oh->rst_lines[i].name) > 0)
  1382. rst_cnt++;
  1383. return (rst_cnt) ? true : false;
  1384. }
  1385. /**
  1386. * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4
  1387. * @oh: struct omap_hwmod *
  1388. *
  1389. * Disable the PRCM module mode related to the hwmod @oh.
  1390. * Return EINVAL if the modulemode is not supported and 0 in case of success.
  1391. */
  1392. static int _omap4_disable_module(struct omap_hwmod *oh)
  1393. {
  1394. int v;
  1395. if (!oh->clkdm || !oh->prcm.omap4.modulemode ||
  1396. _omap4_clkctrl_managed_by_clkfwk(oh))
  1397. return -EINVAL;
  1398. /*
  1399. * Since integration code might still be doing something, only
  1400. * disable if all lines are under hardreset.
  1401. */
  1402. if (_are_any_hardreset_lines_asserted(oh))
  1403. return 0;
  1404. pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__);
  1405. omap_cm_module_disable(oh->clkdm->prcm_partition, oh->clkdm->cm_inst,
  1406. oh->prcm.omap4.clkctrl_offs);
  1407. v = _omap4_wait_target_disable(oh);
  1408. if (v)
  1409. pr_warn("omap_hwmod: %s: _wait_target_disable failed\n",
  1410. oh->name);
  1411. return 0;
  1412. }
  1413. /**
  1414. * _ocp_softreset - reset an omap_hwmod via the OCP_SYSCONFIG bit
  1415. * @oh: struct omap_hwmod *
  1416. *
  1417. * Resets an omap_hwmod @oh via the OCP_SYSCONFIG bit. hwmod must be
  1418. * enabled for this to work. Returns -ENOENT if the hwmod cannot be
  1419. * reset this way, -EINVAL if the hwmod is in the wrong state,
  1420. * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
  1421. *
  1422. * In OMAP3 a specific SYSSTATUS register is used to get the reset status.
  1423. * Starting in OMAP4, some IPs do not have SYSSTATUS registers and instead
  1424. * use the SYSCONFIG softreset bit to provide the status.
  1425. *
  1426. * Note that some IP like McBSP do have reset control but don't have
  1427. * reset status.
  1428. */
  1429. static int _ocp_softreset(struct omap_hwmod *oh)
  1430. {
  1431. u32 v;
  1432. int c = 0;
  1433. int ret = 0;
  1434. if (!oh->class->sysc ||
  1435. !(oh->class->sysc->sysc_flags & SYSC_HAS_SOFTRESET))
  1436. return -ENOENT;
  1437. /* clocks must be on for this operation */
  1438. if (oh->_state != _HWMOD_STATE_ENABLED) {
  1439. pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n",
  1440. oh->name);
  1441. return -EINVAL;
  1442. }
  1443. /* For some modules, all optionnal clocks need to be enabled as well */
  1444. if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
  1445. _enable_optional_clocks(oh);
  1446. pr_debug("omap_hwmod: %s: resetting via OCP SOFTRESET\n", oh->name);
  1447. v = oh->_sysc_cache;
  1448. ret = _set_softreset(oh, &v);
  1449. if (ret)
  1450. goto dis_opt_clks;
  1451. _write_sysconfig(v, oh);
  1452. if (oh->class->sysc->srst_udelay)
  1453. udelay(oh->class->sysc->srst_udelay);
  1454. c = _wait_softreset_complete(oh);
  1455. if (c == MAX_MODULE_SOFTRESET_WAIT) {
  1456. pr_warn("omap_hwmod: %s: softreset failed (waited %d usec)\n",
  1457. oh->name, MAX_MODULE_SOFTRESET_WAIT);
  1458. ret = -ETIMEDOUT;
  1459. goto dis_opt_clks;
  1460. } else {
  1461. pr_debug("omap_hwmod: %s: softreset in %d usec\n", oh->name, c);
  1462. }
  1463. ret = _clear_softreset(oh, &v);
  1464. if (ret)
  1465. goto dis_opt_clks;
  1466. _write_sysconfig(v, oh);
  1467. /*
  1468. * XXX add _HWMOD_STATE_WEDGED for modules that don't come back from
  1469. * _wait_target_ready() or _reset()
  1470. */
  1471. dis_opt_clks:
  1472. if (oh->flags & HWMOD_CONTROL_OPT_CLKS_IN_RESET)
  1473. _disable_optional_clocks(oh);
  1474. return ret;
  1475. }
  1476. /**
  1477. * _reset - reset an omap_hwmod
  1478. * @oh: struct omap_hwmod *
  1479. *
  1480. * Resets an omap_hwmod @oh. If the module has a custom reset
  1481. * function pointer defined, then call it to reset the IP block, and
  1482. * pass along its return value to the caller. Otherwise, if the IP
  1483. * block has an OCP_SYSCONFIG register with a SOFTRESET bitfield
  1484. * associated with it, call a function to reset the IP block via that
  1485. * method, and pass along the return value to the caller. Finally, if
  1486. * the IP block has some hardreset lines associated with it, assert
  1487. * all of those, but do _not_ deassert them. (This is because driver
  1488. * authors have expressed an apparent requirement to control the
  1489. * deassertion of the hardreset lines themselves.)
  1490. *
  1491. * The default software reset mechanism for most OMAP IP blocks is
  1492. * triggered via the OCP_SYSCONFIG.SOFTRESET bit. However, some
  1493. * hwmods cannot be reset via this method. Some are not targets and
  1494. * therefore have no OCP header registers to access. Others (like the
  1495. * IVA) have idiosyncratic reset sequences. So for these relatively
  1496. * rare cases, custom reset code can be supplied in the struct
  1497. * omap_hwmod_class .reset function pointer.
  1498. *
  1499. * _set_dmadisable() is called to set the DMADISABLE bit so that it
  1500. * does not prevent idling of the system. This is necessary for cases
  1501. * where ROMCODE/BOOTLOADER uses dma and transfers control to the
  1502. * kernel without disabling dma.
  1503. *
  1504. * Passes along the return value from either _ocp_softreset() or the
  1505. * custom reset function - these must return -EINVAL if the hwmod
  1506. * cannot be reset this way or if the hwmod is in the wrong state,
  1507. * -ETIMEDOUT if the module did not reset in time, or 0 upon success.
  1508. */
  1509. static int _reset(struct omap_hwmod *oh)
  1510. {
  1511. int i, r;
  1512. pr_debug("omap_hwmod: %s: resetting\n", oh->name);
  1513. if (oh->class->reset) {
  1514. r = oh->class->reset(oh);
  1515. } else {
  1516. if (oh->rst_lines_cnt > 0) {
  1517. for (i = 0; i < oh->rst_lines_cnt; i++)
  1518. _assert_hardreset(oh, oh->rst_lines[i].name);
  1519. return 0;
  1520. } else {
  1521. r = _ocp_softreset(oh);
  1522. if (r == -ENOENT)
  1523. r = 0;
  1524. }
  1525. }
  1526. _set_dmadisable(oh);
  1527. /*
  1528. * OCP_SYSCONFIG bits need to be reprogrammed after a
  1529. * softreset. The _enable() function should be split to avoid
  1530. * the rewrite of the OCP_SYSCONFIG register.
  1531. */
  1532. if (oh->class->sysc) {
  1533. _update_sysc_cache(oh);
  1534. _enable_sysc(oh);
  1535. }
  1536. return r;
  1537. }
  1538. /**
  1539. * _omap4_update_context_lost - increment hwmod context loss counter if
  1540. * hwmod context was lost, and clear hardware context loss reg
  1541. * @oh: hwmod to check for context loss
  1542. *
  1543. * If the PRCM indicates that the hwmod @oh lost context, increment
  1544. * our in-memory context loss counter, and clear the RM_*_CONTEXT
  1545. * bits. No return value.
  1546. */
  1547. static void _omap4_update_context_lost(struct omap_hwmod *oh)
  1548. {
  1549. if (oh->prcm.omap4.flags & HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT)
  1550. return;
  1551. if (!prm_was_any_context_lost_old(oh->clkdm->pwrdm.ptr->prcm_partition,
  1552. oh->clkdm->pwrdm.ptr->prcm_offs,
  1553. oh->prcm.omap4.context_offs))
  1554. return;
  1555. oh->prcm.omap4.context_lost_counter++;
  1556. prm_clear_context_loss_flags_old(oh->clkdm->pwrdm.ptr->prcm_partition,
  1557. oh->clkdm->pwrdm.ptr->prcm_offs,
  1558. oh->prcm.omap4.context_offs);
  1559. }
  1560. /**
  1561. * _omap4_get_context_lost - get context loss counter for a hwmod
  1562. * @oh: hwmod to get context loss counter for
  1563. *
  1564. * Returns the in-memory context loss counter for a hwmod.
  1565. */
  1566. static int _omap4_get_context_lost(struct omap_hwmod *oh)
  1567. {
  1568. return oh->prcm.omap4.context_lost_counter;
  1569. }
  1570. /**
  1571. * _enable_preprogram - Pre-program an IP block during the _enable() process
  1572. * @oh: struct omap_hwmod *
  1573. *
  1574. * Some IP blocks (such as AESS) require some additional programming
  1575. * after enable before they can enter idle. If a function pointer to
  1576. * do so is present in the hwmod data, then call it and pass along the
  1577. * return value; otherwise, return 0.
  1578. */
  1579. static int _enable_preprogram(struct omap_hwmod *oh)
  1580. {
  1581. if (!oh->class->enable_preprogram)
  1582. return 0;
  1583. return oh->class->enable_preprogram(oh);
  1584. }
  1585. /**
  1586. * _enable - enable an omap_hwmod
  1587. * @oh: struct omap_hwmod *
  1588. *
  1589. * Enables an omap_hwmod @oh such that the MPU can access the hwmod's
  1590. * register target. Returns -EINVAL if the hwmod is in the wrong
  1591. * state or passes along the return value of _wait_target_ready().
  1592. */
  1593. static int _enable(struct omap_hwmod *oh)
  1594. {
  1595. int r;
  1596. pr_debug("omap_hwmod: %s: enabling\n", oh->name);
  1597. /*
  1598. * hwmods with HWMOD_INIT_NO_IDLE flag set are left in enabled
  1599. * state at init.
  1600. */
  1601. if (oh->_int_flags & _HWMOD_SKIP_ENABLE) {
  1602. oh->_int_flags &= ~_HWMOD_SKIP_ENABLE;
  1603. return 0;
  1604. }
  1605. if (oh->_state != _HWMOD_STATE_INITIALIZED &&
  1606. oh->_state != _HWMOD_STATE_IDLE &&
  1607. oh->_state != _HWMOD_STATE_DISABLED) {
  1608. WARN(1, "omap_hwmod: %s: enabled state can only be entered from initialized, idle, or disabled state\n",
  1609. oh->name);
  1610. return -EINVAL;
  1611. }
  1612. /*
  1613. * If an IP block contains HW reset lines and all of them are
  1614. * asserted, we let integration code associated with that
  1615. * block handle the enable. We've received very little
  1616. * information on what those driver authors need, and until
  1617. * detailed information is provided and the driver code is
  1618. * posted to the public lists, this is probably the best we
  1619. * can do.
  1620. */
  1621. if (_are_all_hardreset_lines_asserted(oh))
  1622. return 0;
  1623. _add_initiator_dep(oh, mpu_oh);
  1624. if (oh->clkdm) {
  1625. /*
  1626. * A clockdomain must be in SW_SUP before enabling
  1627. * completely the module. The clockdomain can be set
  1628. * in HW_AUTO only when the module become ready.
  1629. */
  1630. clkdm_deny_idle(oh->clkdm);
  1631. r = clkdm_hwmod_enable(oh->clkdm, oh);
  1632. if (r) {
  1633. WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n",
  1634. oh->name, oh->clkdm->name, r);
  1635. return r;
  1636. }
  1637. }
  1638. _enable_clocks(oh);
  1639. if (soc_ops.enable_module)
  1640. soc_ops.enable_module(oh);
  1641. if (oh->flags & HWMOD_BLOCK_WFI)
  1642. cpu_idle_poll_ctrl(true);
  1643. if (soc_ops.update_context_lost)
  1644. soc_ops.update_context_lost(oh);
  1645. r = (soc_ops.wait_target_ready) ? soc_ops.wait_target_ready(oh) :
  1646. -EINVAL;
  1647. if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO))
  1648. clkdm_allow_idle(oh->clkdm);
  1649. if (!r) {
  1650. oh->_state = _HWMOD_STATE_ENABLED;
  1651. /* Access the sysconfig only if the target is ready */
  1652. if (oh->class->sysc) {
  1653. if (!(oh->_int_flags & _HWMOD_SYSCONFIG_LOADED))
  1654. _update_sysc_cache(oh);
  1655. _enable_sysc(oh);
  1656. }
  1657. r = _enable_preprogram(oh);
  1658. } else {
  1659. if (soc_ops.disable_module)
  1660. soc_ops.disable_module(oh);
  1661. _disable_clocks(oh);
  1662. pr_err("omap_hwmod: %s: _wait_target_ready failed: %d\n",
  1663. oh->name, r);
  1664. if (oh->clkdm)
  1665. clkdm_hwmod_disable(oh->clkdm, oh);
  1666. }
  1667. return r;
  1668. }
  1669. /**
  1670. * _idle - idle an omap_hwmod
  1671. * @oh: struct omap_hwmod *
  1672. *
  1673. * Idles an omap_hwmod @oh. This should be called once the hwmod has
  1674. * no further work. Returns -EINVAL if the hwmod is in the wrong
  1675. * state or returns 0.
  1676. */
  1677. static int _idle(struct omap_hwmod *oh)
  1678. {
  1679. if (oh->flags & HWMOD_NO_IDLE) {
  1680. oh->_int_flags |= _HWMOD_SKIP_ENABLE;
  1681. return 0;
  1682. }
  1683. pr_debug("omap_hwmod: %s: idling\n", oh->name);
  1684. if (_are_all_hardreset_lines_asserted(oh))
  1685. return 0;
  1686. if (oh->_state != _HWMOD_STATE_ENABLED) {
  1687. WARN(1, "omap_hwmod: %s: idle state can only be entered from enabled state\n",
  1688. oh->name);
  1689. return -EINVAL;
  1690. }
  1691. if (oh->class->sysc)
  1692. _idle_sysc(oh);
  1693. _del_initiator_dep(oh, mpu_oh);
  1694. /*
  1695. * If HWMOD_CLKDM_NOAUTO is set then we don't
  1696. * deny idle the clkdm again since idle was already denied
  1697. * in _enable()
  1698. */
  1699. if (oh->clkdm && !(oh->flags & HWMOD_CLKDM_NOAUTO))
  1700. clkdm_deny_idle(oh->clkdm);
  1701. if (oh->flags & HWMOD_BLOCK_WFI)
  1702. cpu_idle_poll_ctrl(false);
  1703. if (soc_ops.disable_module)
  1704. soc_ops.disable_module(oh);
  1705. /*
  1706. * The module must be in idle mode before disabling any parents
  1707. * clocks. Otherwise, the parent clock might be disabled before
  1708. * the module transition is done, and thus will prevent the
  1709. * transition to complete properly.
  1710. */
  1711. _disable_clocks(oh);
  1712. if (oh->clkdm) {
  1713. clkdm_allow_idle(oh->clkdm);
  1714. clkdm_hwmod_disable(oh->clkdm, oh);
  1715. }
  1716. oh->_state = _HWMOD_STATE_IDLE;
  1717. return 0;
  1718. }
  1719. /**
  1720. * _shutdown - shutdown an omap_hwmod
  1721. * @oh: struct omap_hwmod *
  1722. *
  1723. * Shut down an omap_hwmod @oh. This should be called when the driver
  1724. * used for the hwmod is removed or unloaded or if the driver is not
  1725. * used by the system. Returns -EINVAL if the hwmod is in the wrong
  1726. * state or returns 0.
  1727. */
  1728. static int _shutdown(struct omap_hwmod *oh)
  1729. {
  1730. int ret, i;
  1731. u8 prev_state;
  1732. if (_are_all_hardreset_lines_asserted(oh))
  1733. return 0;
  1734. if (oh->_state != _HWMOD_STATE_IDLE &&
  1735. oh->_state != _HWMOD_STATE_ENABLED) {
  1736. WARN(1, "omap_hwmod: %s: disabled state can only be entered from idle, or enabled state\n",
  1737. oh->name);
  1738. return -EINVAL;
  1739. }
  1740. pr_debug("omap_hwmod: %s: disabling\n", oh->name);
  1741. if (oh->class->pre_shutdown) {
  1742. prev_state = oh->_state;
  1743. if (oh->_state == _HWMOD_STATE_IDLE)
  1744. _enable(oh);
  1745. ret = oh->class->pre_shutdown(oh);
  1746. if (ret) {
  1747. if (prev_state == _HWMOD_STATE_IDLE)
  1748. _idle(oh);
  1749. return ret;
  1750. }
  1751. }
  1752. if (oh->class->sysc) {
  1753. if (oh->_state == _HWMOD_STATE_IDLE)
  1754. _enable(oh);
  1755. _shutdown_sysc(oh);
  1756. }
  1757. /* clocks and deps are already disabled in idle */
  1758. if (oh->_state == _HWMOD_STATE_ENABLED) {
  1759. _del_initiator_dep(oh, mpu_oh);
  1760. /* XXX what about the other system initiators here? dma, dsp */
  1761. if (oh->flags & HWMOD_BLOCK_WFI)
  1762. cpu_idle_poll_ctrl(false);
  1763. if (soc_ops.disable_module)
  1764. soc_ops.disable_module(oh);
  1765. _disable_clocks(oh);
  1766. if (oh->clkdm)
  1767. clkdm_hwmod_disable(oh->clkdm, oh);
  1768. }
  1769. /* XXX Should this code also force-disable the optional clocks? */
  1770. for (i = 0; i < oh->rst_lines_cnt; i++)
  1771. _assert_hardreset(oh, oh->rst_lines[i].name);
  1772. oh->_state = _HWMOD_STATE_DISABLED;
  1773. return 0;
  1774. }
  1775. static int of_dev_find_hwmod(struct device_node *np,
  1776. struct omap_hwmod *oh)
  1777. {
  1778. int count, i, res;
  1779. const char *p;
  1780. count = of_property_count_strings(np, "ti,hwmods");
  1781. if (count < 1)
  1782. return -ENODEV;
  1783. for (i = 0; i < count; i++) {
  1784. res = of_property_read_string_index(np, "ti,hwmods",
  1785. i, &p);
  1786. if (res)
  1787. continue;
  1788. if (!strcmp(p, oh->name)) {
  1789. pr_debug("omap_hwmod: dt %s[%i] uses hwmod %s\n",
  1790. np->name, i, oh->name);
  1791. return i;
  1792. }
  1793. }
  1794. return -ENODEV;
  1795. }
  1796. /**
  1797. * of_dev_hwmod_lookup - look up needed hwmod from dt blob
  1798. * @np: struct device_node *
  1799. * @oh: struct omap_hwmod *
  1800. * @index: index of the entry found
  1801. * @found: struct device_node * found or NULL
  1802. *
  1803. * Parse the dt blob and find out needed hwmod. Recursive function is
  1804. * implemented to take care hierarchical dt blob parsing.
  1805. * Return: Returns 0 on success, -ENODEV when not found.
  1806. */
  1807. static int of_dev_hwmod_lookup(struct device_node *np,
  1808. struct omap_hwmod *oh,
  1809. int *index,
  1810. struct device_node **found)
  1811. {
  1812. struct device_node *np0 = NULL;
  1813. int res;
  1814. res = of_dev_find_hwmod(np, oh);
  1815. if (res >= 0) {
  1816. *found = np;
  1817. *index = res;
  1818. return 0;
  1819. }
  1820. for_each_child_of_node(np, np0) {
  1821. struct device_node *fc;
  1822. int i;
  1823. res = of_dev_hwmod_lookup(np0, oh, &i, &fc);
  1824. if (res == 0) {
  1825. *found = fc;
  1826. *index = i;
  1827. return 0;
  1828. }
  1829. }
  1830. *found = NULL;
  1831. *index = 0;
  1832. return -ENODEV;
  1833. }
  1834. /**
  1835. * omap_hwmod_parse_module_range - map module IO range from device tree
  1836. * @oh: struct omap_hwmod *
  1837. * @np: struct device_node *
  1838. *
  1839. * Parse the device tree range an interconnect target module provides
  1840. * for it's child device IP blocks. This way we can support the old
  1841. * "ti,hwmods" property with just dts data without a need for platform
  1842. * data for IO resources. And we don't need all the child IP device
  1843. * nodes available in the dts.
  1844. */
  1845. int omap_hwmod_parse_module_range(struct omap_hwmod *oh,
  1846. struct device_node *np,
  1847. struct resource *res)
  1848. {
  1849. struct property *prop;
  1850. const __be32 *ranges;
  1851. const char *name;
  1852. u32 nr_addr, nr_size;
  1853. u64 base, size;
  1854. int len, error;
  1855. if (!res)
  1856. return -EINVAL;
  1857. ranges = of_get_property(np, "ranges", &len);
  1858. if (!ranges)
  1859. return -ENOENT;
  1860. len /= sizeof(*ranges);
  1861. if (len < 3)
  1862. return -EINVAL;
  1863. of_property_for_each_string(np, "compatible", prop, name)
  1864. if (!strncmp("ti,sysc-", name, 8))
  1865. break;
  1866. if (!name)
  1867. return -ENOENT;
  1868. error = of_property_read_u32(np, "#address-cells", &nr_addr);
  1869. if (error)
  1870. return -ENOENT;
  1871. error = of_property_read_u32(np, "#size-cells", &nr_size);
  1872. if (error)
  1873. return -ENOENT;
  1874. if (nr_addr != 1 || nr_size != 1) {
  1875. pr_err("%s: invalid range for %s->%s\n", __func__,
  1876. oh->name, np->name);
  1877. return -EINVAL;
  1878. }
  1879. ranges++;
  1880. base = of_translate_address(np, ranges++);
  1881. size = be32_to_cpup(ranges);
  1882. pr_debug("omap_hwmod: %s %s at 0x%llx size 0x%llx\n",
  1883. oh->name, np->name, base, size);
  1884. res->start = base;
  1885. res->end = base + size - 1;
  1886. res->flags = IORESOURCE_MEM;
  1887. return 0;
  1888. }
  1889. /**
  1890. * _init_mpu_rt_base - populate the virtual address for a hwmod
  1891. * @oh: struct omap_hwmod * to locate the virtual address
  1892. * @data: (unused, caller should pass NULL)
  1893. * @index: index of the reg entry iospace in device tree
  1894. * @np: struct device_node * of the IP block's device node in the DT data
  1895. *
  1896. * Cache the virtual address used by the MPU to access this IP block's
  1897. * registers. This address is needed early so the OCP registers that
  1898. * are part of the device's address space can be ioremapped properly.
  1899. *
  1900. * If SYSC access is not needed, the registers will not be remapped
  1901. * and non-availability of MPU access is not treated as an error.
  1902. *
  1903. * Returns 0 on success, -EINVAL if an invalid hwmod is passed, and
  1904. * -ENXIO on absent or invalid register target address space.
  1905. */
  1906. static int __init _init_mpu_rt_base(struct omap_hwmod *oh, void *data,
  1907. int index, struct device_node *np)
  1908. {
  1909. void __iomem *va_start = NULL;
  1910. struct resource res;
  1911. int error;
  1912. if (!oh)
  1913. return -EINVAL;
  1914. _save_mpu_port_index(oh);
  1915. /* if we don't need sysc access we don't need to ioremap */
  1916. if (!oh->class->sysc)
  1917. return 0;
  1918. /* we can't continue without MPU PORT if we need sysc access */
  1919. if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
  1920. return -ENXIO;
  1921. if (!np) {
  1922. pr_err("omap_hwmod: %s: no dt node\n", oh->name);
  1923. return -ENXIO;
  1924. }
  1925. /* Do we have a dts range for the interconnect target module? */
  1926. error = omap_hwmod_parse_module_range(oh, np, &res);
  1927. if (!error)
  1928. va_start = ioremap(res.start, resource_size(&res));
  1929. /* No ranges, rely on device reg entry */
  1930. if (!va_start)
  1931. va_start = of_iomap(np, index + oh->mpu_rt_idx);
  1932. if (!va_start) {
  1933. pr_err("omap_hwmod: %s: Missing dt reg%i for %pOF\n",
  1934. oh->name, index, np);
  1935. return -ENXIO;
  1936. }
  1937. pr_debug("omap_hwmod: %s: MPU register target at va %p\n",
  1938. oh->name, va_start);
  1939. oh->_mpu_rt_va = va_start;
  1940. return 0;
  1941. }
  1942. /**
  1943. * _init - initialize internal data for the hwmod @oh
  1944. * @oh: struct omap_hwmod *
  1945. * @n: (unused)
  1946. *
  1947. * Look up the clocks and the address space used by the MPU to access
  1948. * registers belonging to the hwmod @oh. @oh must already be
  1949. * registered at this point. This is the first of two phases for
  1950. * hwmod initialization. Code called here does not touch any hardware
  1951. * registers, it simply prepares internal data structures. Returns 0
  1952. * upon success or if the hwmod isn't registered or if the hwmod's
  1953. * address space is not defined, or -EINVAL upon failure.
  1954. */
  1955. static int __init _init(struct omap_hwmod *oh, void *data)
  1956. {
  1957. int r, index;
  1958. struct device_node *np = NULL;
  1959. struct device_node *bus;
  1960. if (oh->_state != _HWMOD_STATE_REGISTERED)
  1961. return 0;
  1962. bus = of_find_node_by_name(NULL, "ocp");
  1963. if (!bus)
  1964. return -ENODEV;
  1965. r = of_dev_hwmod_lookup(bus, oh, &index, &np);
  1966. if (r)
  1967. pr_debug("omap_hwmod: %s missing dt data\n", oh->name);
  1968. else if (np && index)
  1969. pr_warn("omap_hwmod: %s using broken dt data from %s\n",
  1970. oh->name, np->name);
  1971. r = _init_mpu_rt_base(oh, NULL, index, np);
  1972. if (r < 0) {
  1973. WARN(1, "omap_hwmod: %s: doesn't have mpu register target base\n",
  1974. oh->name);
  1975. return 0;
  1976. }
  1977. r = _init_clocks(oh, np);
  1978. if (r < 0) {
  1979. WARN(1, "omap_hwmod: %s: couldn't init clocks\n", oh->name);
  1980. return -EINVAL;
  1981. }
  1982. if (np) {
  1983. if (of_find_property(np, "ti,no-reset-on-init", NULL))
  1984. oh->flags |= HWMOD_INIT_NO_RESET;
  1985. if (of_find_property(np, "ti,no-idle-on-init", NULL))
  1986. oh->flags |= HWMOD_INIT_NO_IDLE;
  1987. if (of_find_property(np, "ti,no-idle", NULL))
  1988. oh->flags |= HWMOD_NO_IDLE;
  1989. }
  1990. oh->_state = _HWMOD_STATE_INITIALIZED;
  1991. return 0;
  1992. }
  1993. /**
  1994. * _setup_iclk_autoidle - configure an IP block's interface clocks
  1995. * @oh: struct omap_hwmod *
  1996. *
  1997. * Set up the module's interface clocks. XXX This function is still mostly
  1998. * a stub; implementing this properly requires iclk autoidle usecounting in
  1999. * the clock code. No return value.
  2000. */
  2001. static void __init _setup_iclk_autoidle(struct omap_hwmod *oh)
  2002. {
  2003. struct omap_hwmod_ocp_if *os;
  2004. if (oh->_state != _HWMOD_STATE_INITIALIZED)
  2005. return;
  2006. list_for_each_entry(os, &oh->slave_ports, node) {
  2007. if (!os->_clk)
  2008. continue;
  2009. if (os->flags & OCPIF_SWSUP_IDLE) {
  2010. /* XXX omap_iclk_deny_idle(c); */
  2011. } else {
  2012. /* XXX omap_iclk_allow_idle(c); */
  2013. clk_enable(os->_clk);
  2014. }
  2015. }
  2016. return;
  2017. }
  2018. /**
  2019. * _setup_reset - reset an IP block during the setup process
  2020. * @oh: struct omap_hwmod *
  2021. *
  2022. * Reset the IP block corresponding to the hwmod @oh during the setup
  2023. * process. The IP block is first enabled so it can be successfully
  2024. * reset. Returns 0 upon success or a negative error code upon
  2025. * failure.
  2026. */
  2027. static int __init _setup_reset(struct omap_hwmod *oh)
  2028. {
  2029. int r;
  2030. if (oh->_state != _HWMOD_STATE_INITIALIZED)
  2031. return -EINVAL;
  2032. if (oh->flags & HWMOD_EXT_OPT_MAIN_CLK)
  2033. return -EPERM;
  2034. if (oh->rst_lines_cnt == 0) {
  2035. r = _enable(oh);
  2036. if (r) {
  2037. pr_warn("omap_hwmod: %s: cannot be enabled for reset (%d)\n",
  2038. oh->name, oh->_state);
  2039. return -EINVAL;
  2040. }
  2041. }
  2042. if (!(oh->flags & HWMOD_INIT_NO_RESET))
  2043. r = _reset(oh);
  2044. return r;
  2045. }
  2046. /**
  2047. * _setup_postsetup - transition to the appropriate state after _setup
  2048. * @oh: struct omap_hwmod *
  2049. *
  2050. * Place an IP block represented by @oh into a "post-setup" state --
  2051. * either IDLE, ENABLED, or DISABLED. ("post-setup" simply means that
  2052. * this function is called at the end of _setup().) The postsetup
  2053. * state for an IP block can be changed by calling
  2054. * omap_hwmod_enter_postsetup_state() early in the boot process,
  2055. * before one of the omap_hwmod_setup*() functions are called for the
  2056. * IP block.
  2057. *
  2058. * The IP block stays in this state until a PM runtime-based driver is
  2059. * loaded for that IP block. A post-setup state of IDLE is
  2060. * appropriate for almost all IP blocks with runtime PM-enabled
  2061. * drivers, since those drivers are able to enable the IP block. A
  2062. * post-setup state of ENABLED is appropriate for kernels with PM
  2063. * runtime disabled. The DISABLED state is appropriate for unusual IP
  2064. * blocks such as the MPU WDTIMER on kernels without WDTIMER drivers
  2065. * included, since the WDTIMER starts running on reset and will reset
  2066. * the MPU if left active.
  2067. *
  2068. * This post-setup mechanism is deprecated. Once all of the OMAP
  2069. * drivers have been converted to use PM runtime, and all of the IP
  2070. * block data and interconnect data is available to the hwmod code, it
  2071. * should be possible to replace this mechanism with a "lazy reset"
  2072. * arrangement. In a "lazy reset" setup, each IP block is enabled
  2073. * when the driver first probes, then all remaining IP blocks without
  2074. * drivers are either shut down or enabled after the drivers have
  2075. * loaded. However, this cannot take place until the above
  2076. * preconditions have been met, since otherwise the late reset code
  2077. * has no way of knowing which IP blocks are in use by drivers, and
  2078. * which ones are unused.
  2079. *
  2080. * No return value.
  2081. */
  2082. static void __init _setup_postsetup(struct omap_hwmod *oh)
  2083. {
  2084. u8 postsetup_state;
  2085. if (oh->rst_lines_cnt > 0)
  2086. return;
  2087. postsetup_state = oh->_postsetup_state;
  2088. if (postsetup_state == _HWMOD_STATE_UNKNOWN)
  2089. postsetup_state = _HWMOD_STATE_ENABLED;
  2090. /*
  2091. * XXX HWMOD_INIT_NO_IDLE does not belong in hwmod data -
  2092. * it should be set by the core code as a runtime flag during startup
  2093. */
  2094. if ((oh->flags & (HWMOD_INIT_NO_IDLE | HWMOD_NO_IDLE)) &&
  2095. (postsetup_state == _HWMOD_STATE_IDLE)) {
  2096. oh->_int_flags |= _HWMOD_SKIP_ENABLE;
  2097. postsetup_state = _HWMOD_STATE_ENABLED;
  2098. }
  2099. if (postsetup_state == _HWMOD_STATE_IDLE)
  2100. _idle(oh);
  2101. else if (postsetup_state == _HWMOD_STATE_DISABLED)
  2102. _shutdown(oh);
  2103. else if (postsetup_state != _HWMOD_STATE_ENABLED)
  2104. WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
  2105. oh->name, postsetup_state);
  2106. return;
  2107. }
  2108. /**
  2109. * _setup - prepare IP block hardware for use
  2110. * @oh: struct omap_hwmod *
  2111. * @n: (unused, pass NULL)
  2112. *
  2113. * Configure the IP block represented by @oh. This may include
  2114. * enabling the IP block, resetting it, and placing it into a
  2115. * post-setup state, depending on the type of IP block and applicable
  2116. * flags. IP blocks are reset to prevent any previous configuration
  2117. * by the bootloader or previous operating system from interfering
  2118. * with power management or other parts of the system. The reset can
  2119. * be avoided; see omap_hwmod_no_setup_reset(). This is the second of
  2120. * two phases for hwmod initialization. Code called here generally
  2121. * affects the IP block hardware, or system integration hardware
  2122. * associated with the IP block. Returns 0.
  2123. */
  2124. static int _setup(struct omap_hwmod *oh, void *data)
  2125. {
  2126. if (oh->_state != _HWMOD_STATE_INITIALIZED)
  2127. return 0;
  2128. if (oh->parent_hwmod) {
  2129. int r;
  2130. r = _enable(oh->parent_hwmod);
  2131. WARN(r, "hwmod: %s: setup: failed to enable parent hwmod %s\n",
  2132. oh->name, oh->parent_hwmod->name);
  2133. }
  2134. _setup_iclk_autoidle(oh);
  2135. if (!_setup_reset(oh))
  2136. _setup_postsetup(oh);
  2137. if (oh->parent_hwmod) {
  2138. u8 postsetup_state;
  2139. postsetup_state = oh->parent_hwmod->_postsetup_state;
  2140. if (postsetup_state == _HWMOD_STATE_IDLE)
  2141. _idle(oh->parent_hwmod);
  2142. else if (postsetup_state == _HWMOD_STATE_DISABLED)
  2143. _shutdown(oh->parent_hwmod);
  2144. else if (postsetup_state != _HWMOD_STATE_ENABLED)
  2145. WARN(1, "hwmod: %s: unknown postsetup state %d! defaulting to enabled\n",
  2146. oh->parent_hwmod->name, postsetup_state);
  2147. }
  2148. return 0;
  2149. }
  2150. /**
  2151. * _register - register a struct omap_hwmod
  2152. * @oh: struct omap_hwmod *
  2153. *
  2154. * Registers the omap_hwmod @oh. Returns -EEXIST if an omap_hwmod
  2155. * already has been registered by the same name; -EINVAL if the
  2156. * omap_hwmod is in the wrong state, if @oh is NULL, if the
  2157. * omap_hwmod's class field is NULL; if the omap_hwmod is missing a
  2158. * name, or if the omap_hwmod's class is missing a name; or 0 upon
  2159. * success.
  2160. *
  2161. * XXX The data should be copied into bootmem, so the original data
  2162. * should be marked __initdata and freed after init. This would allow
  2163. * unneeded omap_hwmods to be freed on multi-OMAP configurations. Note
  2164. * that the copy process would be relatively complex due to the large number
  2165. * of substructures.
  2166. */
  2167. static int __init _register(struct omap_hwmod *oh)
  2168. {
  2169. if (!oh || !oh->name || !oh->class || !oh->class->name ||
  2170. (oh->_state != _HWMOD_STATE_UNKNOWN))
  2171. return -EINVAL;
  2172. pr_debug("omap_hwmod: %s: registering\n", oh->name);
  2173. if (_lookup(oh->name))
  2174. return -EEXIST;
  2175. list_add_tail(&oh->node, &omap_hwmod_list);
  2176. INIT_LIST_HEAD(&oh->slave_ports);
  2177. spin_lock_init(&oh->_lock);
  2178. lockdep_set_class(&oh->_lock, &oh->hwmod_key);
  2179. oh->_state = _HWMOD_STATE_REGISTERED;
  2180. /*
  2181. * XXX Rather than doing a strcmp(), this should test a flag
  2182. * set in the hwmod data, inserted by the autogenerator code.
  2183. */
  2184. if (!strcmp(oh->name, MPU_INITIATOR_NAME))
  2185. mpu_oh = oh;
  2186. return 0;
  2187. }
  2188. /**
  2189. * _add_link - add an interconnect between two IP blocks
  2190. * @oi: pointer to a struct omap_hwmod_ocp_if record
  2191. *
  2192. * Add struct omap_hwmod_link records connecting the slave IP block
  2193. * specified in @oi->slave to @oi. This code is assumed to run before
  2194. * preemption or SMP has been enabled, thus avoiding the need for
  2195. * locking in this code. Changes to this assumption will require
  2196. * additional locking. Returns 0.
  2197. */
  2198. static int __init _add_link(struct omap_hwmod_ocp_if *oi)
  2199. {
  2200. pr_debug("omap_hwmod: %s -> %s: adding link\n", oi->master->name,
  2201. oi->slave->name);
  2202. list_add(&oi->node, &oi->slave->slave_ports);
  2203. oi->slave->slaves_cnt++;
  2204. return 0;
  2205. }
  2206. /**
  2207. * _register_link - register a struct omap_hwmod_ocp_if
  2208. * @oi: struct omap_hwmod_ocp_if *
  2209. *
  2210. * Registers the omap_hwmod_ocp_if record @oi. Returns -EEXIST if it
  2211. * has already been registered; -EINVAL if @oi is NULL or if the
  2212. * record pointed to by @oi is missing required fields; or 0 upon
  2213. * success.
  2214. *
  2215. * XXX The data should be copied into bootmem, so the original data
  2216. * should be marked __initdata and freed after init. This would allow
  2217. * unneeded omap_hwmods to be freed on multi-OMAP configurations.
  2218. */
  2219. static int __init _register_link(struct omap_hwmod_ocp_if *oi)
  2220. {
  2221. if (!oi || !oi->master || !oi->slave || !oi->user)
  2222. return -EINVAL;
  2223. if (oi->_int_flags & _OCPIF_INT_FLAGS_REGISTERED)
  2224. return -EEXIST;
  2225. pr_debug("omap_hwmod: registering link from %s to %s\n",
  2226. oi->master->name, oi->slave->name);
  2227. /*
  2228. * Register the connected hwmods, if they haven't been
  2229. * registered already
  2230. */
  2231. if (oi->master->_state != _HWMOD_STATE_REGISTERED)
  2232. _register(oi->master);
  2233. if (oi->slave->_state != _HWMOD_STATE_REGISTERED)
  2234. _register(oi->slave);
  2235. _add_link(oi);
  2236. oi->_int_flags |= _OCPIF_INT_FLAGS_REGISTERED;
  2237. return 0;
  2238. }
  2239. /* Static functions intended only for use in soc_ops field function pointers */
  2240. /**
  2241. * _omap2xxx_3xxx_wait_target_ready - wait for a module to leave slave idle
  2242. * @oh: struct omap_hwmod *
  2243. *
  2244. * Wait for a module @oh to leave slave idle. Returns 0 if the module
  2245. * does not have an IDLEST bit or if the module successfully leaves
  2246. * slave idle; otherwise, pass along the return value of the
  2247. * appropriate *_cm*_wait_module_ready() function.
  2248. */
  2249. static int _omap2xxx_3xxx_wait_target_ready(struct omap_hwmod *oh)
  2250. {
  2251. if (!oh)
  2252. return -EINVAL;
  2253. if (oh->flags & HWMOD_NO_IDLEST)
  2254. return 0;
  2255. if (!_find_mpu_rt_port(oh))
  2256. return 0;
  2257. /* XXX check module SIDLEMODE, hardreset status, enabled clocks */
  2258. return omap_cm_wait_module_ready(0, oh->prcm.omap2.module_offs,
  2259. oh->prcm.omap2.idlest_reg_id,
  2260. oh->prcm.omap2.idlest_idle_bit);
  2261. }
  2262. /**
  2263. * _omap4_wait_target_ready - wait for a module to leave slave idle
  2264. * @oh: struct omap_hwmod *
  2265. *
  2266. * Wait for a module @oh to leave slave idle. Returns 0 if the module
  2267. * does not have an IDLEST bit or if the module successfully leaves
  2268. * slave idle; otherwise, pass along the return value of the
  2269. * appropriate *_cm*_wait_module_ready() function.
  2270. */
  2271. static int _omap4_wait_target_ready(struct omap_hwmod *oh)
  2272. {
  2273. if (!oh)
  2274. return -EINVAL;
  2275. if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm)
  2276. return 0;
  2277. if (!_find_mpu_rt_port(oh))
  2278. return 0;
  2279. if (_omap4_clkctrl_managed_by_clkfwk(oh))
  2280. return 0;
  2281. if (!_omap4_has_clkctrl_clock(oh))
  2282. return 0;
  2283. /* XXX check module SIDLEMODE, hardreset status */
  2284. return omap_cm_wait_module_ready(oh->clkdm->prcm_partition,
  2285. oh->clkdm->cm_inst,
  2286. oh->prcm.omap4.clkctrl_offs, 0);
  2287. }
  2288. /**
  2289. * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
  2290. * @oh: struct omap_hwmod * to assert hardreset
  2291. * @ohri: hardreset line data
  2292. *
  2293. * Call omap2_prm_assert_hardreset() with parameters extracted from
  2294. * the hwmod @oh and the hardreset line data @ohri. Only intended for
  2295. * use as an soc_ops function pointer. Passes along the return value
  2296. * from omap2_prm_assert_hardreset(). XXX This function is scheduled
  2297. * for removal when the PRM code is moved into drivers/.
  2298. */
  2299. static int _omap2_assert_hardreset(struct omap_hwmod *oh,
  2300. struct omap_hwmod_rst_info *ohri)
  2301. {
  2302. return omap_prm_assert_hardreset(ohri->rst_shift, 0,
  2303. oh->prcm.omap2.module_offs, 0);
  2304. }
  2305. /**
  2306. * _omap2_deassert_hardreset - call OMAP2 PRM hardreset fn with hwmod args
  2307. * @oh: struct omap_hwmod * to deassert hardreset
  2308. * @ohri: hardreset line data
  2309. *
  2310. * Call omap2_prm_deassert_hardreset() with parameters extracted from
  2311. * the hwmod @oh and the hardreset line data @ohri. Only intended for
  2312. * use as an soc_ops function pointer. Passes along the return value
  2313. * from omap2_prm_deassert_hardreset(). XXX This function is
  2314. * scheduled for removal when the PRM code is moved into drivers/.
  2315. */
  2316. static int _omap2_deassert_hardreset(struct omap_hwmod *oh,
  2317. struct omap_hwmod_rst_info *ohri)
  2318. {
  2319. return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift, 0,
  2320. oh->prcm.omap2.module_offs, 0, 0);
  2321. }
  2322. /**
  2323. * _omap2_is_hardreset_asserted - call OMAP2 PRM hardreset fn with hwmod args
  2324. * @oh: struct omap_hwmod * to test hardreset
  2325. * @ohri: hardreset line data
  2326. *
  2327. * Call omap2_prm_is_hardreset_asserted() with parameters extracted
  2328. * from the hwmod @oh and the hardreset line data @ohri. Only
  2329. * intended for use as an soc_ops function pointer. Passes along the
  2330. * return value from omap2_prm_is_hardreset_asserted(). XXX This
  2331. * function is scheduled for removal when the PRM code is moved into
  2332. * drivers/.
  2333. */
  2334. static int _omap2_is_hardreset_asserted(struct omap_hwmod *oh,
  2335. struct omap_hwmod_rst_info *ohri)
  2336. {
  2337. return omap_prm_is_hardreset_asserted(ohri->st_shift, 0,
  2338. oh->prcm.omap2.module_offs, 0);
  2339. }
  2340. /**
  2341. * _omap4_assert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
  2342. * @oh: struct omap_hwmod * to assert hardreset
  2343. * @ohri: hardreset line data
  2344. *
  2345. * Call omap4_prminst_assert_hardreset() with parameters extracted
  2346. * from the hwmod @oh and the hardreset line data @ohri. Only
  2347. * intended for use as an soc_ops function pointer. Passes along the
  2348. * return value from omap4_prminst_assert_hardreset(). XXX This
  2349. * function is scheduled for removal when the PRM code is moved into
  2350. * drivers/.
  2351. */
  2352. static int _omap4_assert_hardreset(struct omap_hwmod *oh,
  2353. struct omap_hwmod_rst_info *ohri)
  2354. {
  2355. if (!oh->clkdm)
  2356. return -EINVAL;
  2357. return omap_prm_assert_hardreset(ohri->rst_shift,
  2358. oh->clkdm->pwrdm.ptr->prcm_partition,
  2359. oh->clkdm->pwrdm.ptr->prcm_offs,
  2360. oh->prcm.omap4.rstctrl_offs);
  2361. }
  2362. /**
  2363. * _omap4_deassert_hardreset - call OMAP4 PRM hardreset fn with hwmod args
  2364. * @oh: struct omap_hwmod * to deassert hardreset
  2365. * @ohri: hardreset line data
  2366. *
  2367. * Call omap4_prminst_deassert_hardreset() with parameters extracted
  2368. * from the hwmod @oh and the hardreset line data @ohri. Only
  2369. * intended for use as an soc_ops function pointer. Passes along the
  2370. * return value from omap4_prminst_deassert_hardreset(). XXX This
  2371. * function is scheduled for removal when the PRM code is moved into
  2372. * drivers/.
  2373. */
  2374. static int _omap4_deassert_hardreset(struct omap_hwmod *oh,
  2375. struct omap_hwmod_rst_info *ohri)
  2376. {
  2377. if (!oh->clkdm)
  2378. return -EINVAL;
  2379. if (ohri->st_shift)
  2380. pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n",
  2381. oh->name, ohri->name);
  2382. return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->rst_shift,
  2383. oh->clkdm->pwrdm.ptr->prcm_partition,
  2384. oh->clkdm->pwrdm.ptr->prcm_offs,
  2385. oh->prcm.omap4.rstctrl_offs,
  2386. oh->prcm.omap4.rstctrl_offs +
  2387. OMAP4_RST_CTRL_ST_OFFSET);
  2388. }
  2389. /**
  2390. * _omap4_is_hardreset_asserted - call OMAP4 PRM hardreset fn with hwmod args
  2391. * @oh: struct omap_hwmod * to test hardreset
  2392. * @ohri: hardreset line data
  2393. *
  2394. * Call omap4_prminst_is_hardreset_asserted() with parameters
  2395. * extracted from the hwmod @oh and the hardreset line data @ohri.
  2396. * Only intended for use as an soc_ops function pointer. Passes along
  2397. * the return value from omap4_prminst_is_hardreset_asserted(). XXX
  2398. * This function is scheduled for removal when the PRM code is moved
  2399. * into drivers/.
  2400. */
  2401. static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh,
  2402. struct omap_hwmod_rst_info *ohri)
  2403. {
  2404. if (!oh->clkdm)
  2405. return -EINVAL;
  2406. return omap_prm_is_hardreset_asserted(ohri->rst_shift,
  2407. oh->clkdm->pwrdm.ptr->
  2408. prcm_partition,
  2409. oh->clkdm->pwrdm.ptr->prcm_offs,
  2410. oh->prcm.omap4.rstctrl_offs);
  2411. }
  2412. /**
  2413. * _omap4_disable_direct_prcm - disable direct PRCM control for hwmod
  2414. * @oh: struct omap_hwmod * to disable control for
  2415. *
  2416. * Disables direct PRCM clkctrl done by hwmod core. Instead, the hwmod
  2417. * will be using its main_clk to enable/disable the module. Returns
  2418. * 0 if successful.
  2419. */
  2420. static int _omap4_disable_direct_prcm(struct omap_hwmod *oh)
  2421. {
  2422. if (!oh)
  2423. return -EINVAL;
  2424. oh->prcm.omap4.flags |= HWMOD_OMAP4_CLKFWK_CLKCTR_CLOCK;
  2425. return 0;
  2426. }
  2427. /**
  2428. * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args
  2429. * @oh: struct omap_hwmod * to deassert hardreset
  2430. * @ohri: hardreset line data
  2431. *
  2432. * Call am33xx_prminst_deassert_hardreset() with parameters extracted
  2433. * from the hwmod @oh and the hardreset line data @ohri. Only
  2434. * intended for use as an soc_ops function pointer. Passes along the
  2435. * return value from am33xx_prminst_deassert_hardreset(). XXX This
  2436. * function is scheduled for removal when the PRM code is moved into
  2437. * drivers/.
  2438. */
  2439. static int _am33xx_deassert_hardreset(struct omap_hwmod *oh,
  2440. struct omap_hwmod_rst_info *ohri)
  2441. {
  2442. return omap_prm_deassert_hardreset(ohri->rst_shift, ohri->st_shift,
  2443. oh->clkdm->pwrdm.ptr->prcm_partition,
  2444. oh->clkdm->pwrdm.ptr->prcm_offs,
  2445. oh->prcm.omap4.rstctrl_offs,
  2446. oh->prcm.omap4.rstst_offs);
  2447. }
  2448. /* Public functions */
  2449. u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs)
  2450. {
  2451. if (oh->flags & HWMOD_16BIT_REG)
  2452. return readw_relaxed(oh->_mpu_rt_va + reg_offs);
  2453. else
  2454. return readl_relaxed(oh->_mpu_rt_va + reg_offs);
  2455. }
  2456. void omap_hwmod_write(u32 v, struct omap_hwmod *oh, u16 reg_offs)
  2457. {
  2458. if (oh->flags & HWMOD_16BIT_REG)
  2459. writew_relaxed(v, oh->_mpu_rt_va + reg_offs);
  2460. else
  2461. writel_relaxed(v, oh->_mpu_rt_va + reg_offs);
  2462. }
  2463. /**
  2464. * omap_hwmod_softreset - reset a module via SYSCONFIG.SOFTRESET bit
  2465. * @oh: struct omap_hwmod *
  2466. *
  2467. * This is a public function exposed to drivers. Some drivers may need to do
  2468. * some settings before and after resetting the device. Those drivers after
  2469. * doing the necessary settings could use this function to start a reset by
  2470. * setting the SYSCONFIG.SOFTRESET bit.
  2471. */
  2472. int omap_hwmod_softreset(struct omap_hwmod *oh)
  2473. {
  2474. u32 v;
  2475. int ret;
  2476. if (!oh || !(oh->_sysc_cache))
  2477. return -EINVAL;
  2478. v = oh->_sysc_cache;
  2479. ret = _set_softreset(oh, &v);
  2480. if (ret)
  2481. goto error;
  2482. _write_sysconfig(v, oh);
  2483. ret = _clear_softreset(oh, &v);
  2484. if (ret)
  2485. goto error;
  2486. _write_sysconfig(v, oh);
  2487. error:
  2488. return ret;
  2489. }
  2490. /**
  2491. * omap_hwmod_lookup - look up a registered omap_hwmod by name
  2492. * @name: name of the omap_hwmod to look up
  2493. *
  2494. * Given a @name of an omap_hwmod, return a pointer to the registered
  2495. * struct omap_hwmod *, or NULL upon error.
  2496. */
  2497. struct omap_hwmod *omap_hwmod_lookup(const char *name)
  2498. {
  2499. struct omap_hwmod *oh;
  2500. if (!name)
  2501. return NULL;
  2502. oh = _lookup(name);
  2503. return oh;
  2504. }
  2505. /**
  2506. * omap_hwmod_for_each - call function for each registered omap_hwmod
  2507. * @fn: pointer to a callback function
  2508. * @data: void * data to pass to callback function
  2509. *
  2510. * Call @fn for each registered omap_hwmod, passing @data to each
  2511. * function. @fn must return 0 for success or any other value for
  2512. * failure. If @fn returns non-zero, the iteration across omap_hwmods
  2513. * will stop and the non-zero return value will be passed to the
  2514. * caller of omap_hwmod_for_each(). @fn is called with
  2515. * omap_hwmod_for_each() held.
  2516. */
  2517. int omap_hwmod_for_each(int (*fn)(struct omap_hwmod *oh, void *data),
  2518. void *data)
  2519. {
  2520. struct omap_hwmod *temp_oh;
  2521. int ret = 0;
  2522. if (!fn)
  2523. return -EINVAL;
  2524. list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
  2525. ret = (*fn)(temp_oh, data);
  2526. if (ret)
  2527. break;
  2528. }
  2529. return ret;
  2530. }
  2531. /**
  2532. * omap_hwmod_register_links - register an array of hwmod links
  2533. * @ois: pointer to an array of omap_hwmod_ocp_if to register
  2534. *
  2535. * Intended to be called early in boot before the clock framework is
  2536. * initialized. If @ois is not null, will register all omap_hwmods
  2537. * listed in @ois that are valid for this chip. Returns -EINVAL if
  2538. * omap_hwmod_init() hasn't been called before calling this function,
  2539. * -ENOMEM if the link memory area can't be allocated, or 0 upon
  2540. * success.
  2541. */
  2542. int __init omap_hwmod_register_links(struct omap_hwmod_ocp_if **ois)
  2543. {
  2544. int r, i;
  2545. if (!inited)
  2546. return -EINVAL;
  2547. if (!ois)
  2548. return 0;
  2549. if (ois[0] == NULL) /* Empty list */
  2550. return 0;
  2551. i = 0;
  2552. do {
  2553. r = _register_link(ois[i]);
  2554. WARN(r && r != -EEXIST,
  2555. "omap_hwmod: _register_link(%s -> %s) returned %d\n",
  2556. ois[i]->master->name, ois[i]->slave->name, r);
  2557. } while (ois[++i]);
  2558. return 0;
  2559. }
  2560. /**
  2561. * _ensure_mpu_hwmod_is_setup - ensure the MPU SS hwmod is init'ed and set up
  2562. * @oh: pointer to the hwmod currently being set up (usually not the MPU)
  2563. *
  2564. * If the hwmod data corresponding to the MPU subsystem IP block
  2565. * hasn't been initialized and set up yet, do so now. This must be
  2566. * done first since sleep dependencies may be added from other hwmods
  2567. * to the MPU. Intended to be called only by omap_hwmod_setup*(). No
  2568. * return value.
  2569. */
  2570. static void __init _ensure_mpu_hwmod_is_setup(struct omap_hwmod *oh)
  2571. {
  2572. if (!mpu_oh || mpu_oh->_state == _HWMOD_STATE_UNKNOWN)
  2573. pr_err("omap_hwmod: %s: MPU initiator hwmod %s not yet registered\n",
  2574. __func__, MPU_INITIATOR_NAME);
  2575. else if (mpu_oh->_state == _HWMOD_STATE_REGISTERED && oh != mpu_oh)
  2576. omap_hwmod_setup_one(MPU_INITIATOR_NAME);
  2577. }
  2578. /**
  2579. * omap_hwmod_setup_one - set up a single hwmod
  2580. * @oh_name: const char * name of the already-registered hwmod to set up
  2581. *
  2582. * Initialize and set up a single hwmod. Intended to be used for a
  2583. * small number of early devices, such as the timer IP blocks used for
  2584. * the scheduler clock. Must be called after omap2_clk_init().
  2585. * Resolves the struct clk names to struct clk pointers for each
  2586. * registered omap_hwmod. Also calls _setup() on each hwmod. Returns
  2587. * -EINVAL upon error or 0 upon success.
  2588. */
  2589. int __init omap_hwmod_setup_one(const char *oh_name)
  2590. {
  2591. struct omap_hwmod *oh;
  2592. pr_debug("omap_hwmod: %s: %s\n", oh_name, __func__);
  2593. oh = _lookup(oh_name);
  2594. if (!oh) {
  2595. WARN(1, "omap_hwmod: %s: hwmod not yet registered\n", oh_name);
  2596. return -EINVAL;
  2597. }
  2598. _ensure_mpu_hwmod_is_setup(oh);
  2599. _init(oh, NULL);
  2600. _setup(oh, NULL);
  2601. return 0;
  2602. }
  2603. static void omap_hwmod_check_one(struct device *dev,
  2604. const char *name, s8 v1, u8 v2)
  2605. {
  2606. if (v1 < 0)
  2607. return;
  2608. if (v1 != v2)
  2609. dev_warn(dev, "%s %d != %d\n", name, v1, v2);
  2610. }
  2611. /**
  2612. * omap_hwmod_check_sysc - check sysc against platform sysc
  2613. * @dev: struct device
  2614. * @data: module data
  2615. * @sysc_fields: new sysc configuration
  2616. */
  2617. static int omap_hwmod_check_sysc(struct device *dev,
  2618. const struct ti_sysc_module_data *data,
  2619. struct sysc_regbits *sysc_fields)
  2620. {
  2621. const struct sysc_regbits *regbits = data->cap->regbits;
  2622. omap_hwmod_check_one(dev, "dmadisable_shift",
  2623. regbits->dmadisable_shift,
  2624. sysc_fields->dmadisable_shift);
  2625. omap_hwmod_check_one(dev, "midle_shift",
  2626. regbits->midle_shift,
  2627. sysc_fields->midle_shift);
  2628. omap_hwmod_check_one(dev, "sidle_shift",
  2629. regbits->sidle_shift,
  2630. sysc_fields->sidle_shift);
  2631. omap_hwmod_check_one(dev, "clkact_shift",
  2632. regbits->clkact_shift,
  2633. sysc_fields->clkact_shift);
  2634. omap_hwmod_check_one(dev, "enwkup_shift",
  2635. regbits->enwkup_shift,
  2636. sysc_fields->enwkup_shift);
  2637. omap_hwmod_check_one(dev, "srst_shift",
  2638. regbits->srst_shift,
  2639. sysc_fields->srst_shift);
  2640. omap_hwmod_check_one(dev, "autoidle_shift",
  2641. regbits->autoidle_shift,
  2642. sysc_fields->autoidle_shift);
  2643. return 0;
  2644. }
  2645. /**
  2646. * omap_hwmod_init_regbits - init sysconfig specific register bits
  2647. * @dev: struct device
  2648. * @data: module data
  2649. * @sysc_fields: new sysc configuration
  2650. */
  2651. static int omap_hwmod_init_regbits(struct device *dev,
  2652. const struct ti_sysc_module_data *data,
  2653. struct sysc_regbits **sysc_fields)
  2654. {
  2655. *sysc_fields = NULL;
  2656. switch (data->cap->type) {
  2657. case TI_SYSC_OMAP2:
  2658. case TI_SYSC_OMAP2_TIMER:
  2659. *sysc_fields = &omap_hwmod_sysc_type1;
  2660. break;
  2661. case TI_SYSC_OMAP3_SHAM:
  2662. *sysc_fields = &omap3_sham_sysc_fields;
  2663. break;
  2664. case TI_SYSC_OMAP3_AES:
  2665. *sysc_fields = &omap3xxx_aes_sysc_fields;
  2666. break;
  2667. case TI_SYSC_OMAP4:
  2668. case TI_SYSC_OMAP4_TIMER:
  2669. *sysc_fields = &omap_hwmod_sysc_type2;
  2670. break;
  2671. case TI_SYSC_OMAP4_SIMPLE:
  2672. *sysc_fields = &omap_hwmod_sysc_type3;
  2673. break;
  2674. case TI_SYSC_OMAP34XX_SR:
  2675. *sysc_fields = &omap34xx_sr_sysc_fields;
  2676. break;
  2677. case TI_SYSC_OMAP36XX_SR:
  2678. *sysc_fields = &omap36xx_sr_sysc_fields;
  2679. break;
  2680. case TI_SYSC_OMAP4_SR:
  2681. *sysc_fields = &omap36xx_sr_sysc_fields;
  2682. break;
  2683. case TI_SYSC_OMAP4_MCASP:
  2684. *sysc_fields = &omap_hwmod_sysc_type_mcasp;
  2685. break;
  2686. case TI_SYSC_OMAP4_USB_HOST_FS:
  2687. *sysc_fields = &omap_hwmod_sysc_type_usb_host_fs;
  2688. break;
  2689. default:
  2690. return -EINVAL;
  2691. }
  2692. return omap_hwmod_check_sysc(dev, data, *sysc_fields);
  2693. }
  2694. /**
  2695. * omap_hwmod_init_reg_offs - initialize sysconfig register offsets
  2696. * @dev: struct device
  2697. * @data: module data
  2698. * @rev_offs: revision register offset
  2699. * @sysc_offs: sysc register offset
  2700. * @syss_offs: syss register offset
  2701. */
  2702. int omap_hwmod_init_reg_offs(struct device *dev,
  2703. const struct ti_sysc_module_data *data,
  2704. u32 *rev_offs, u32 *sysc_offs, u32 *syss_offs)
  2705. {
  2706. *rev_offs = 0;
  2707. *sysc_offs = 0;
  2708. *syss_offs = 0;
  2709. if (data->offsets[SYSC_REVISION] > 0)
  2710. *rev_offs = data->offsets[SYSC_REVISION];
  2711. if (data->offsets[SYSC_SYSCONFIG] > 0)
  2712. *sysc_offs = data->offsets[SYSC_SYSCONFIG];
  2713. if (data->offsets[SYSC_SYSSTATUS] > 0)
  2714. *syss_offs = data->offsets[SYSC_SYSSTATUS];
  2715. return 0;
  2716. }
  2717. /**
  2718. * omap_hwmod_init_sysc_flags - initialize sysconfig features
  2719. * @dev: struct device
  2720. * @data: module data
  2721. * @sysc_flags: module configuration
  2722. */
  2723. int omap_hwmod_init_sysc_flags(struct device *dev,
  2724. const struct ti_sysc_module_data *data,
  2725. u32 *sysc_flags)
  2726. {
  2727. *sysc_flags = 0;
  2728. switch (data->cap->type) {
  2729. case TI_SYSC_OMAP2:
  2730. case TI_SYSC_OMAP2_TIMER:
  2731. /* See SYSC_OMAP2_* in include/dt-bindings/bus/ti-sysc.h */
  2732. if (data->cfg->sysc_val & SYSC_OMAP2_CLOCKACTIVITY)
  2733. *sysc_flags |= SYSC_HAS_CLOCKACTIVITY;
  2734. if (data->cfg->sysc_val & SYSC_OMAP2_EMUFREE)
  2735. *sysc_flags |= SYSC_HAS_EMUFREE;
  2736. if (data->cfg->sysc_val & SYSC_OMAP2_ENAWAKEUP)
  2737. *sysc_flags |= SYSC_HAS_ENAWAKEUP;
  2738. if (data->cfg->sysc_val & SYSC_OMAP2_SOFTRESET)
  2739. *sysc_flags |= SYSC_HAS_SOFTRESET;
  2740. if (data->cfg->sysc_val & SYSC_OMAP2_AUTOIDLE)
  2741. *sysc_flags |= SYSC_HAS_AUTOIDLE;
  2742. break;
  2743. case TI_SYSC_OMAP4:
  2744. case TI_SYSC_OMAP4_TIMER:
  2745. /* See SYSC_OMAP4_* in include/dt-bindings/bus/ti-sysc.h */
  2746. if (data->cfg->sysc_val & SYSC_OMAP4_DMADISABLE)
  2747. *sysc_flags |= SYSC_HAS_DMADISABLE;
  2748. if (data->cfg->sysc_val & SYSC_OMAP4_FREEEMU)
  2749. *sysc_flags |= SYSC_HAS_EMUFREE;
  2750. if (data->cfg->sysc_val & SYSC_OMAP4_SOFTRESET)
  2751. *sysc_flags |= SYSC_HAS_SOFTRESET;
  2752. break;
  2753. case TI_SYSC_OMAP34XX_SR:
  2754. case TI_SYSC_OMAP36XX_SR:
  2755. /* See SYSC_OMAP3_SR_* in include/dt-bindings/bus/ti-sysc.h */
  2756. if (data->cfg->sysc_val & SYSC_OMAP3_SR_ENAWAKEUP)
  2757. *sysc_flags |= SYSC_HAS_ENAWAKEUP;
  2758. break;
  2759. default:
  2760. if (data->cap->regbits->emufree_shift >= 0)
  2761. *sysc_flags |= SYSC_HAS_EMUFREE;
  2762. if (data->cap->regbits->enwkup_shift >= 0)
  2763. *sysc_flags |= SYSC_HAS_ENAWAKEUP;
  2764. if (data->cap->regbits->srst_shift >= 0)
  2765. *sysc_flags |= SYSC_HAS_SOFTRESET;
  2766. if (data->cap->regbits->autoidle_shift >= 0)
  2767. *sysc_flags |= SYSC_HAS_AUTOIDLE;
  2768. break;
  2769. }
  2770. if (data->cap->regbits->midle_shift >= 0 &&
  2771. data->cfg->midlemodes)
  2772. *sysc_flags |= SYSC_HAS_MIDLEMODE;
  2773. if (data->cap->regbits->sidle_shift >= 0 &&
  2774. data->cfg->sidlemodes)
  2775. *sysc_flags |= SYSC_HAS_SIDLEMODE;
  2776. if (data->cfg->quirks & SYSC_QUIRK_UNCACHED)
  2777. *sysc_flags |= SYSC_NO_CACHE;
  2778. if (data->cfg->quirks & SYSC_QUIRK_RESET_STATUS)
  2779. *sysc_flags |= SYSC_HAS_RESET_STATUS;
  2780. if (data->cfg->syss_mask & 1)
  2781. *sysc_flags |= SYSS_HAS_RESET_STATUS;
  2782. return 0;
  2783. }
  2784. /**
  2785. * omap_hwmod_init_idlemodes - initialize module idle modes
  2786. * @dev: struct device
  2787. * @data: module data
  2788. * @idlemodes: module supported idle modes
  2789. */
  2790. int omap_hwmod_init_idlemodes(struct device *dev,
  2791. const struct ti_sysc_module_data *data,
  2792. u32 *idlemodes)
  2793. {
  2794. *idlemodes = 0;
  2795. if (data->cfg->midlemodes & BIT(SYSC_IDLE_FORCE))
  2796. *idlemodes |= MSTANDBY_FORCE;
  2797. if (data->cfg->midlemodes & BIT(SYSC_IDLE_NO))
  2798. *idlemodes |= MSTANDBY_NO;
  2799. if (data->cfg->midlemodes & BIT(SYSC_IDLE_SMART))
  2800. *idlemodes |= MSTANDBY_SMART;
  2801. if (data->cfg->midlemodes & BIT(SYSC_IDLE_SMART_WKUP))
  2802. *idlemodes |= MSTANDBY_SMART_WKUP;
  2803. if (data->cfg->sidlemodes & BIT(SYSC_IDLE_FORCE))
  2804. *idlemodes |= SIDLE_FORCE;
  2805. if (data->cfg->sidlemodes & BIT(SYSC_IDLE_NO))
  2806. *idlemodes |= SIDLE_NO;
  2807. if (data->cfg->sidlemodes & BIT(SYSC_IDLE_SMART))
  2808. *idlemodes |= SIDLE_SMART;
  2809. if (data->cfg->sidlemodes & BIT(SYSC_IDLE_SMART_WKUP))
  2810. *idlemodes |= SIDLE_SMART_WKUP;
  2811. return 0;
  2812. }
  2813. /**
  2814. * omap_hwmod_check_module - check new module against platform data
  2815. * @dev: struct device
  2816. * @oh: module
  2817. * @data: new module data
  2818. * @sysc_fields: sysc register bits
  2819. * @rev_offs: revision register offset
  2820. * @sysc_offs: sysconfig register offset
  2821. * @syss_offs: sysstatus register offset
  2822. * @sysc_flags: sysc specific flags
  2823. * @idlemodes: sysc supported idlemodes
  2824. */
  2825. static int omap_hwmod_check_module(struct device *dev,
  2826. struct omap_hwmod *oh,
  2827. const struct ti_sysc_module_data *data,
  2828. struct sysc_regbits *sysc_fields,
  2829. u32 rev_offs, u32 sysc_offs,
  2830. u32 syss_offs, u32 sysc_flags,
  2831. u32 idlemodes)
  2832. {
  2833. if (!oh->class->sysc)
  2834. return -ENODEV;
  2835. if (sysc_fields != oh->class->sysc->sysc_fields)
  2836. dev_warn(dev, "sysc_fields %p != %p\n", sysc_fields,
  2837. oh->class->sysc->sysc_fields);
  2838. if (rev_offs != oh->class->sysc->rev_offs)
  2839. dev_warn(dev, "rev_offs %08x != %08x\n", rev_offs,
  2840. oh->class->sysc->rev_offs);
  2841. if (sysc_offs != oh->class->sysc->sysc_offs)
  2842. dev_warn(dev, "sysc_offs %08x != %08x\n", sysc_offs,
  2843. oh->class->sysc->sysc_offs);
  2844. if (syss_offs != oh->class->sysc->syss_offs)
  2845. dev_warn(dev, "syss_offs %08x != %08x\n", syss_offs,
  2846. oh->class->sysc->syss_offs);
  2847. if (sysc_flags != oh->class->sysc->sysc_flags)
  2848. dev_warn(dev, "sysc_flags %08x != %08x\n", sysc_flags,
  2849. oh->class->sysc->sysc_flags);
  2850. if (idlemodes != oh->class->sysc->idlemodes)
  2851. dev_warn(dev, "idlemodes %08x != %08x\n", idlemodes,
  2852. oh->class->sysc->idlemodes);
  2853. if (data->cfg->srst_udelay != oh->class->sysc->srst_udelay)
  2854. dev_warn(dev, "srst_udelay %i != %i\n",
  2855. data->cfg->srst_udelay,
  2856. oh->class->sysc->srst_udelay);
  2857. return 0;
  2858. }
  2859. /**
  2860. * omap_hwmod_allocate_module - allocate new module
  2861. * @dev: struct device
  2862. * @oh: module
  2863. * @sysc_fields: sysc register bits
  2864. * @rev_offs: revision register offset
  2865. * @sysc_offs: sysconfig register offset
  2866. * @syss_offs: sysstatus register offset
  2867. * @sysc_flags: sysc specific flags
  2868. * @idlemodes: sysc supported idlemodes
  2869. *
  2870. * Note that the allocations here cannot use devm as ti-sysc can rebind.
  2871. */
  2872. int omap_hwmod_allocate_module(struct device *dev, struct omap_hwmod *oh,
  2873. const struct ti_sysc_module_data *data,
  2874. struct sysc_regbits *sysc_fields,
  2875. u32 rev_offs, u32 sysc_offs, u32 syss_offs,
  2876. u32 sysc_flags, u32 idlemodes)
  2877. {
  2878. struct omap_hwmod_class_sysconfig *sysc;
  2879. struct omap_hwmod_class *class;
  2880. void __iomem *regs = NULL;
  2881. unsigned long flags;
  2882. sysc = kzalloc(sizeof(*sysc), GFP_KERNEL);
  2883. if (!sysc)
  2884. return -ENOMEM;
  2885. sysc->sysc_fields = sysc_fields;
  2886. sysc->rev_offs = rev_offs;
  2887. sysc->sysc_offs = sysc_offs;
  2888. sysc->syss_offs = syss_offs;
  2889. sysc->sysc_flags = sysc_flags;
  2890. sysc->idlemodes = idlemodes;
  2891. sysc->srst_udelay = data->cfg->srst_udelay;
  2892. if (!oh->_mpu_rt_va) {
  2893. regs = ioremap(data->module_pa,
  2894. data->module_size);
  2895. if (!regs)
  2896. return -ENOMEM;
  2897. }
  2898. /*
  2899. * We need new oh->class as the other devices in the same class
  2900. * may not yet have ioremapped their registers.
  2901. */
  2902. class = kmemdup(oh->class, sizeof(*oh->class), GFP_KERNEL);
  2903. if (!class)
  2904. return -ENOMEM;
  2905. class->sysc = sysc;
  2906. spin_lock_irqsave(&oh->_lock, flags);
  2907. if (regs)
  2908. oh->_mpu_rt_va = regs;
  2909. oh->class = class;
  2910. oh->_state = _HWMOD_STATE_INITIALIZED;
  2911. _setup(oh, NULL);
  2912. spin_unlock_irqrestore(&oh->_lock, flags);
  2913. return 0;
  2914. }
  2915. /**
  2916. * omap_hwmod_init_module - initialize new module
  2917. * @dev: struct device
  2918. * @data: module data
  2919. * @cookie: cookie for the caller to use for later calls
  2920. */
  2921. int omap_hwmod_init_module(struct device *dev,
  2922. const struct ti_sysc_module_data *data,
  2923. struct ti_sysc_cookie *cookie)
  2924. {
  2925. struct omap_hwmod *oh;
  2926. struct sysc_regbits *sysc_fields;
  2927. u32 rev_offs, sysc_offs, syss_offs, sysc_flags, idlemodes;
  2928. int error;
  2929. if (!dev || !data)
  2930. return -EINVAL;
  2931. oh = _lookup(data->name);
  2932. if (!oh)
  2933. return -ENODEV;
  2934. cookie->data = oh;
  2935. error = omap_hwmod_init_regbits(dev, data, &sysc_fields);
  2936. if (error)
  2937. return error;
  2938. error = omap_hwmod_init_reg_offs(dev, data, &rev_offs,
  2939. &sysc_offs, &syss_offs);
  2940. if (error)
  2941. return error;
  2942. error = omap_hwmod_init_sysc_flags(dev, data, &sysc_flags);
  2943. if (error)
  2944. return error;
  2945. error = omap_hwmod_init_idlemodes(dev, data, &idlemodes);
  2946. if (error)
  2947. return error;
  2948. if (data->cfg->quirks & SYSC_QUIRK_NO_IDLE_ON_INIT)
  2949. oh->flags |= HWMOD_INIT_NO_IDLE;
  2950. if (data->cfg->quirks & SYSC_QUIRK_NO_RESET_ON_INIT)
  2951. oh->flags |= HWMOD_INIT_NO_RESET;
  2952. error = omap_hwmod_check_module(dev, oh, data, sysc_fields,
  2953. rev_offs, sysc_offs, syss_offs,
  2954. sysc_flags, idlemodes);
  2955. if (!error)
  2956. return error;
  2957. return omap_hwmod_allocate_module(dev, oh, data, sysc_fields,
  2958. rev_offs, sysc_offs, syss_offs,
  2959. sysc_flags, idlemodes);
  2960. }
  2961. /**
  2962. * omap_hwmod_setup_earlycon_flags - set up flags for early console
  2963. *
  2964. * Enable DEBUG_OMAPUART_FLAGS for uart hwmod that is being used as
  2965. * early concole so that hwmod core doesn't reset and keep it in idle
  2966. * that specific uart.
  2967. */
  2968. #ifdef CONFIG_SERIAL_EARLYCON
  2969. static void __init omap_hwmod_setup_earlycon_flags(void)
  2970. {
  2971. struct device_node *np;
  2972. struct omap_hwmod *oh;
  2973. const char *uart;
  2974. np = of_find_node_by_path("/chosen");
  2975. if (np) {
  2976. uart = of_get_property(np, "stdout-path", NULL);
  2977. if (uart) {
  2978. np = of_find_node_by_path(uart);
  2979. if (np) {
  2980. uart = of_get_property(np, "ti,hwmods", NULL);
  2981. oh = omap_hwmod_lookup(uart);
  2982. if (!oh) {
  2983. uart = of_get_property(np->parent,
  2984. "ti,hwmods",
  2985. NULL);
  2986. oh = omap_hwmod_lookup(uart);
  2987. }
  2988. if (oh)
  2989. oh->flags |= DEBUG_OMAPUART_FLAGS;
  2990. }
  2991. }
  2992. }
  2993. }
  2994. #endif
  2995. /**
  2996. * omap_hwmod_setup_all - set up all registered IP blocks
  2997. *
  2998. * Initialize and set up all IP blocks registered with the hwmod code.
  2999. * Must be called after omap2_clk_init(). Resolves the struct clk
  3000. * names to struct clk pointers for each registered omap_hwmod. Also
  3001. * calls _setup() on each hwmod. Returns 0 upon success.
  3002. */
  3003. static int __init omap_hwmod_setup_all(void)
  3004. {
  3005. _ensure_mpu_hwmod_is_setup(NULL);
  3006. omap_hwmod_for_each(_init, NULL);
  3007. #ifdef CONFIG_SERIAL_EARLYCON
  3008. omap_hwmod_setup_earlycon_flags();
  3009. #endif
  3010. omap_hwmod_for_each(_setup, NULL);
  3011. return 0;
  3012. }
  3013. omap_postcore_initcall(omap_hwmod_setup_all);
  3014. /**
  3015. * omap_hwmod_enable - enable an omap_hwmod
  3016. * @oh: struct omap_hwmod *
  3017. *
  3018. * Enable an omap_hwmod @oh. Intended to be called by omap_device_enable().
  3019. * Returns -EINVAL on error or passes along the return value from _enable().
  3020. */
  3021. int omap_hwmod_enable(struct omap_hwmod *oh)
  3022. {
  3023. int r;
  3024. unsigned long flags;
  3025. if (!oh)
  3026. return -EINVAL;
  3027. spin_lock_irqsave(&oh->_lock, flags);
  3028. r = _enable(oh);
  3029. spin_unlock_irqrestore(&oh->_lock, flags);
  3030. return r;
  3031. }
  3032. /**
  3033. * omap_hwmod_idle - idle an omap_hwmod
  3034. * @oh: struct omap_hwmod *
  3035. *
  3036. * Idle an omap_hwmod @oh. Intended to be called by omap_device_idle().
  3037. * Returns -EINVAL on error or passes along the return value from _idle().
  3038. */
  3039. int omap_hwmod_idle(struct omap_hwmod *oh)
  3040. {
  3041. int r;
  3042. unsigned long flags;
  3043. if (!oh)
  3044. return -EINVAL;
  3045. spin_lock_irqsave(&oh->_lock, flags);
  3046. r = _idle(oh);
  3047. spin_unlock_irqrestore(&oh->_lock, flags);
  3048. return r;
  3049. }
  3050. /**
  3051. * omap_hwmod_shutdown - shutdown an omap_hwmod
  3052. * @oh: struct omap_hwmod *
  3053. *
  3054. * Shutdown an omap_hwmod @oh. Intended to be called by
  3055. * omap_device_shutdown(). Returns -EINVAL on error or passes along
  3056. * the return value from _shutdown().
  3057. */
  3058. int omap_hwmod_shutdown(struct omap_hwmod *oh)
  3059. {
  3060. int r;
  3061. unsigned long flags;
  3062. if (!oh)
  3063. return -EINVAL;
  3064. spin_lock_irqsave(&oh->_lock, flags);
  3065. r = _shutdown(oh);
  3066. spin_unlock_irqrestore(&oh->_lock, flags);
  3067. return r;
  3068. }
  3069. /*
  3070. * IP block data retrieval functions
  3071. */
  3072. /**
  3073. * omap_hwmod_get_pwrdm - return pointer to this module's main powerdomain
  3074. * @oh: struct omap_hwmod *
  3075. *
  3076. * Return the powerdomain pointer associated with the OMAP module
  3077. * @oh's main clock. If @oh does not have a main clk, return the
  3078. * powerdomain associated with the interface clock associated with the
  3079. * module's MPU port. (XXX Perhaps this should use the SDMA port
  3080. * instead?) Returns NULL on error, or a struct powerdomain * on
  3081. * success.
  3082. */
  3083. struct powerdomain *omap_hwmod_get_pwrdm(struct omap_hwmod *oh)
  3084. {
  3085. struct clk *c;
  3086. struct omap_hwmod_ocp_if *oi;
  3087. struct clockdomain *clkdm;
  3088. struct clk_hw_omap *clk;
  3089. if (!oh)
  3090. return NULL;
  3091. if (oh->clkdm)
  3092. return oh->clkdm->pwrdm.ptr;
  3093. if (oh->_clk) {
  3094. c = oh->_clk;
  3095. } else {
  3096. oi = _find_mpu_rt_port(oh);
  3097. if (!oi)
  3098. return NULL;
  3099. c = oi->_clk;
  3100. }
  3101. clk = to_clk_hw_omap(__clk_get_hw(c));
  3102. clkdm = clk->clkdm;
  3103. if (!clkdm)
  3104. return NULL;
  3105. return clkdm->pwrdm.ptr;
  3106. }
  3107. /**
  3108. * omap_hwmod_get_mpu_rt_va - return the module's base address (for the MPU)
  3109. * @oh: struct omap_hwmod *
  3110. *
  3111. * Returns the virtual address corresponding to the beginning of the
  3112. * module's register target, in the address range that is intended to
  3113. * be used by the MPU. Returns the virtual address upon success or NULL
  3114. * upon error.
  3115. */
  3116. void __iomem *omap_hwmod_get_mpu_rt_va(struct omap_hwmod *oh)
  3117. {
  3118. if (!oh)
  3119. return NULL;
  3120. if (oh->_int_flags & _HWMOD_NO_MPU_PORT)
  3121. return NULL;
  3122. if (oh->_state == _HWMOD_STATE_UNKNOWN)
  3123. return NULL;
  3124. return oh->_mpu_rt_va;
  3125. }
  3126. /*
  3127. * XXX what about functions for drivers to save/restore ocp_sysconfig
  3128. * for context save/restore operations?
  3129. */
  3130. /**
  3131. * omap_hwmod_enable_wakeup - allow device to wake up the system
  3132. * @oh: struct omap_hwmod *
  3133. *
  3134. * Sets the module OCP socket ENAWAKEUP bit to allow the module to
  3135. * send wakeups to the PRCM, and enable I/O ring wakeup events for
  3136. * this IP block if it has dynamic mux entries. Eventually this
  3137. * should set PRCM wakeup registers to cause the PRCM to receive
  3138. * wakeup events from the module. Does not set any wakeup routing
  3139. * registers beyond this point - if the module is to wake up any other
  3140. * module or subsystem, that must be set separately. Called by
  3141. * omap_device code. Returns -EINVAL on error or 0 upon success.
  3142. */
  3143. int omap_hwmod_enable_wakeup(struct omap_hwmod *oh)
  3144. {
  3145. unsigned long flags;
  3146. u32 v;
  3147. spin_lock_irqsave(&oh->_lock, flags);
  3148. if (oh->class->sysc &&
  3149. (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
  3150. v = oh->_sysc_cache;
  3151. _enable_wakeup(oh, &v);
  3152. _write_sysconfig(v, oh);
  3153. }
  3154. spin_unlock_irqrestore(&oh->_lock, flags);
  3155. return 0;
  3156. }
  3157. /**
  3158. * omap_hwmod_disable_wakeup - prevent device from waking the system
  3159. * @oh: struct omap_hwmod *
  3160. *
  3161. * Clears the module OCP socket ENAWAKEUP bit to prevent the module
  3162. * from sending wakeups to the PRCM, and disable I/O ring wakeup
  3163. * events for this IP block if it has dynamic mux entries. Eventually
  3164. * this should clear PRCM wakeup registers to cause the PRCM to ignore
  3165. * wakeup events from the module. Does not set any wakeup routing
  3166. * registers beyond this point - if the module is to wake up any other
  3167. * module or subsystem, that must be set separately. Called by
  3168. * omap_device code. Returns -EINVAL on error or 0 upon success.
  3169. */
  3170. int omap_hwmod_disable_wakeup(struct omap_hwmod *oh)
  3171. {
  3172. unsigned long flags;
  3173. u32 v;
  3174. spin_lock_irqsave(&oh->_lock, flags);
  3175. if (oh->class->sysc &&
  3176. (oh->class->sysc->sysc_flags & SYSC_HAS_ENAWAKEUP)) {
  3177. v = oh->_sysc_cache;
  3178. _disable_wakeup(oh, &v);
  3179. _write_sysconfig(v, oh);
  3180. }
  3181. spin_unlock_irqrestore(&oh->_lock, flags);
  3182. return 0;
  3183. }
  3184. /**
  3185. * omap_hwmod_assert_hardreset - assert the HW reset line of submodules
  3186. * contained in the hwmod module.
  3187. * @oh: struct omap_hwmod *
  3188. * @name: name of the reset line to lookup and assert
  3189. *
  3190. * Some IP like dsp, ipu or iva contain processor that require
  3191. * an HW reset line to be assert / deassert in order to enable fully
  3192. * the IP. Returns -EINVAL if @oh is null or if the operation is not
  3193. * yet supported on this OMAP; otherwise, passes along the return value
  3194. * from _assert_hardreset().
  3195. */
  3196. int omap_hwmod_assert_hardreset(struct omap_hwmod *oh, const char *name)
  3197. {
  3198. int ret;
  3199. unsigned long flags;
  3200. if (!oh)
  3201. return -EINVAL;
  3202. spin_lock_irqsave(&oh->_lock, flags);
  3203. ret = _assert_hardreset(oh, name);
  3204. spin_unlock_irqrestore(&oh->_lock, flags);
  3205. return ret;
  3206. }
  3207. /**
  3208. * omap_hwmod_deassert_hardreset - deassert the HW reset line of submodules
  3209. * contained in the hwmod module.
  3210. * @oh: struct omap_hwmod *
  3211. * @name: name of the reset line to look up and deassert
  3212. *
  3213. * Some IP like dsp, ipu or iva contain processor that require
  3214. * an HW reset line to be assert / deassert in order to enable fully
  3215. * the IP. Returns -EINVAL if @oh is null or if the operation is not
  3216. * yet supported on this OMAP; otherwise, passes along the return value
  3217. * from _deassert_hardreset().
  3218. */
  3219. int omap_hwmod_deassert_hardreset(struct omap_hwmod *oh, const char *name)
  3220. {
  3221. int ret;
  3222. unsigned long flags;
  3223. if (!oh)
  3224. return -EINVAL;
  3225. spin_lock_irqsave(&oh->_lock, flags);
  3226. ret = _deassert_hardreset(oh, name);
  3227. spin_unlock_irqrestore(&oh->_lock, flags);
  3228. return ret;
  3229. }
  3230. /**
  3231. * omap_hwmod_for_each_by_class - call @fn for each hwmod of class @classname
  3232. * @classname: struct omap_hwmod_class name to search for
  3233. * @fn: callback function pointer to call for each hwmod in class @classname
  3234. * @user: arbitrary context data to pass to the callback function
  3235. *
  3236. * For each omap_hwmod of class @classname, call @fn.
  3237. * If the callback function returns something other than
  3238. * zero, the iterator is terminated, and the callback function's return
  3239. * value is passed back to the caller. Returns 0 upon success, -EINVAL
  3240. * if @classname or @fn are NULL, or passes back the error code from @fn.
  3241. */
  3242. int omap_hwmod_for_each_by_class(const char *classname,
  3243. int (*fn)(struct omap_hwmod *oh,
  3244. void *user),
  3245. void *user)
  3246. {
  3247. struct omap_hwmod *temp_oh;
  3248. int ret = 0;
  3249. if (!classname || !fn)
  3250. return -EINVAL;
  3251. pr_debug("omap_hwmod: %s: looking for modules of class %s\n",
  3252. __func__, classname);
  3253. list_for_each_entry(temp_oh, &omap_hwmod_list, node) {
  3254. if (!strcmp(temp_oh->class->name, classname)) {
  3255. pr_debug("omap_hwmod: %s: %s: calling callback fn\n",
  3256. __func__, temp_oh->name);
  3257. ret = (*fn)(temp_oh, user);
  3258. if (ret)
  3259. break;
  3260. }
  3261. }
  3262. if (ret)
  3263. pr_debug("omap_hwmod: %s: iterator terminated early: %d\n",
  3264. __func__, ret);
  3265. return ret;
  3266. }
  3267. /**
  3268. * omap_hwmod_set_postsetup_state - set the post-_setup() state for this hwmod
  3269. * @oh: struct omap_hwmod *
  3270. * @state: state that _setup() should leave the hwmod in
  3271. *
  3272. * Sets the hwmod state that @oh will enter at the end of _setup()
  3273. * (called by omap_hwmod_setup_*()). See also the documentation
  3274. * for _setup_postsetup(), above. Returns 0 upon success or
  3275. * -EINVAL if there is a problem with the arguments or if the hwmod is
  3276. * in the wrong state.
  3277. */
  3278. int omap_hwmod_set_postsetup_state(struct omap_hwmod *oh, u8 state)
  3279. {
  3280. int ret;
  3281. unsigned long flags;
  3282. if (!oh)
  3283. return -EINVAL;
  3284. if (state != _HWMOD_STATE_DISABLED &&
  3285. state != _HWMOD_STATE_ENABLED &&
  3286. state != _HWMOD_STATE_IDLE)
  3287. return -EINVAL;
  3288. spin_lock_irqsave(&oh->_lock, flags);
  3289. if (oh->_state != _HWMOD_STATE_REGISTERED) {
  3290. ret = -EINVAL;
  3291. goto ohsps_unlock;
  3292. }
  3293. oh->_postsetup_state = state;
  3294. ret = 0;
  3295. ohsps_unlock:
  3296. spin_unlock_irqrestore(&oh->_lock, flags);
  3297. return ret;
  3298. }
  3299. /**
  3300. * omap_hwmod_get_context_loss_count - get lost context count
  3301. * @oh: struct omap_hwmod *
  3302. *
  3303. * Returns the context loss count of associated @oh
  3304. * upon success, or zero if no context loss data is available.
  3305. *
  3306. * On OMAP4, this queries the per-hwmod context loss register,
  3307. * assuming one exists. If not, or on OMAP2/3, this queries the
  3308. * enclosing powerdomain context loss count.
  3309. */
  3310. int omap_hwmod_get_context_loss_count(struct omap_hwmod *oh)
  3311. {
  3312. struct powerdomain *pwrdm;
  3313. int ret = 0;
  3314. if (soc_ops.get_context_lost)
  3315. return soc_ops.get_context_lost(oh);
  3316. pwrdm = omap_hwmod_get_pwrdm(oh);
  3317. if (pwrdm)
  3318. ret = pwrdm_get_context_loss_count(pwrdm);
  3319. return ret;
  3320. }
  3321. /**
  3322. * omap_hwmod_init - initialize the hwmod code
  3323. *
  3324. * Sets up some function pointers needed by the hwmod code to operate on the
  3325. * currently-booted SoC. Intended to be called once during kernel init
  3326. * before any hwmods are registered. No return value.
  3327. */
  3328. void __init omap_hwmod_init(void)
  3329. {
  3330. if (cpu_is_omap24xx()) {
  3331. soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
  3332. soc_ops.assert_hardreset = _omap2_assert_hardreset;
  3333. soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
  3334. soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
  3335. } else if (cpu_is_omap34xx()) {
  3336. soc_ops.wait_target_ready = _omap2xxx_3xxx_wait_target_ready;
  3337. soc_ops.assert_hardreset = _omap2_assert_hardreset;
  3338. soc_ops.deassert_hardreset = _omap2_deassert_hardreset;
  3339. soc_ops.is_hardreset_asserted = _omap2_is_hardreset_asserted;
  3340. soc_ops.init_clkdm = _init_clkdm;
  3341. } else if (cpu_is_omap44xx() || soc_is_omap54xx() || soc_is_dra7xx()) {
  3342. soc_ops.enable_module = _omap4_enable_module;
  3343. soc_ops.disable_module = _omap4_disable_module;
  3344. soc_ops.wait_target_ready = _omap4_wait_target_ready;
  3345. soc_ops.assert_hardreset = _omap4_assert_hardreset;
  3346. soc_ops.deassert_hardreset = _omap4_deassert_hardreset;
  3347. soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
  3348. soc_ops.init_clkdm = _init_clkdm;
  3349. soc_ops.update_context_lost = _omap4_update_context_lost;
  3350. soc_ops.get_context_lost = _omap4_get_context_lost;
  3351. soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm;
  3352. soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl;
  3353. } else if (cpu_is_ti814x() || cpu_is_ti816x() || soc_is_am33xx() ||
  3354. soc_is_am43xx()) {
  3355. soc_ops.enable_module = _omap4_enable_module;
  3356. soc_ops.disable_module = _omap4_disable_module;
  3357. soc_ops.wait_target_ready = _omap4_wait_target_ready;
  3358. soc_ops.assert_hardreset = _omap4_assert_hardreset;
  3359. soc_ops.deassert_hardreset = _am33xx_deassert_hardreset;
  3360. soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted;
  3361. soc_ops.init_clkdm = _init_clkdm;
  3362. soc_ops.disable_direct_prcm = _omap4_disable_direct_prcm;
  3363. soc_ops.xlate_clkctrl = _omap4_xlate_clkctrl;
  3364. } else {
  3365. WARN(1, "omap_hwmod: unknown SoC type\n");
  3366. }
  3367. _init_clkctrl_providers();
  3368. inited = true;
  3369. }
  3370. /**
  3371. * omap_hwmod_get_main_clk - get pointer to main clock name
  3372. * @oh: struct omap_hwmod *
  3373. *
  3374. * Returns the main clock name assocated with @oh upon success,
  3375. * or NULL if @oh is NULL.
  3376. */
  3377. const char *omap_hwmod_get_main_clk(struct omap_hwmod *oh)
  3378. {
  3379. if (!oh)
  3380. return NULL;
  3381. return oh->main_clk;
  3382. }