ipa_api.c 85 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/ipa.h>
  6. #include <linux/device.h>
  7. #include <linux/init.h>
  8. #include <linux/kernel.h>
  9. #include <linux/mm.h>
  10. #include <linux/module.h>
  11. #include <linux/of.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/ipa_uc_offload.h>
  14. #include <linux/pci.h>
  15. #include "ipa_api.h"
  16. #include "ipa_v3/ipa_i.h"
  17. /*
  18. * The following for adding code (ie. for EMULATION) not found on x86.
  19. */
  20. #if defined(CONFIG_IPA_EMULATION)
  21. # include "ipa_v3/ipa_emulation_stubs.h"
  22. #endif
  23. #define DRV_NAME "ipa"
  24. #define IPA_API_DISPATCH_RETURN(api, p...) \
  25. do { \
  26. if (!ipa_api_ctrl) { \
  27. pr_err("%s:%d IPA HW is not supported\n", \
  28. __func__, __LINE__); \
  29. ret = -EPERM; \
  30. } \
  31. else { \
  32. if (ipa_api_ctrl->api) { \
  33. ret = ipa_api_ctrl->api(p); \
  34. } else { \
  35. WARN(1, \
  36. "%s not implemented for IPA ver %d\n", \
  37. __func__, ipa_api_hw_type); \
  38. ret = -EPERM; \
  39. } \
  40. } \
  41. } while (0)
  42. #define IPA_API_DISPATCH(api, p...) \
  43. do { \
  44. if (!ipa_api_ctrl) \
  45. pr_err("%s:%d IPA HW is not supported\n", \
  46. __func__, __LINE__); \
  47. else { \
  48. if (ipa_api_ctrl->api) { \
  49. ipa_api_ctrl->api(p); \
  50. } else { \
  51. WARN(1, \
  52. "%s not implemented for IPA ver %d\n",\
  53. __func__, ipa_api_hw_type); \
  54. } \
  55. } \
  56. } while (0)
  57. #define IPA_API_DISPATCH_RETURN_PTR(api, p...) \
  58. do { \
  59. if (!ipa_api_ctrl) { \
  60. pr_err("%s:%d IPA HW is not supported\n", \
  61. __func__, __LINE__); \
  62. ret = NULL; \
  63. } \
  64. else { \
  65. if (ipa_api_ctrl->api) { \
  66. ret = ipa_api_ctrl->api(p); \
  67. } else { \
  68. WARN(1, "%s not implemented for IPA ver %d\n",\
  69. __func__, ipa_api_hw_type); \
  70. ret = NULL; \
  71. } \
  72. } \
  73. } while (0)
  74. #define IPA_API_DISPATCH_RETURN_BOOL(api, p...) \
  75. do { \
  76. if (!ipa_api_ctrl) { \
  77. pr_err("%s:%d IPA HW is not supported\n", \
  78. __func__, __LINE__); \
  79. ret = false; \
  80. } \
  81. else { \
  82. if (ipa_api_ctrl->api) { \
  83. ret = ipa_api_ctrl->api(p); \
  84. } else { \
  85. WARN(1, "%s not implemented for IPA ver %d\n",\
  86. __func__, ipa_api_hw_type); \
  87. ret = false; \
  88. } \
  89. } \
  90. } while (0)
  91. #if defined(CONFIG_IPA_EMULATION)
  92. static bool running_emulation = true;
  93. #else
  94. static bool running_emulation;
  95. #endif
  96. static enum ipa_hw_type ipa_api_hw_type;
  97. static struct ipa_api_controller *ipa_api_ctrl;
  98. const char *ipa_clients_strings[IPA_CLIENT_MAX] = {
  99. __stringify(IPA_CLIENT_HSIC1_PROD),
  100. __stringify(IPA_CLIENT_HSIC1_CONS),
  101. __stringify(IPA_CLIENT_HSIC2_PROD),
  102. __stringify(IPA_CLIENT_HSIC2_CONS),
  103. __stringify(IPA_CLIENT_HSIC3_PROD),
  104. __stringify(IPA_CLIENT_HSIC3_CONS),
  105. __stringify(IPA_CLIENT_HSIC4_PROD),
  106. __stringify(IPA_CLIENT_HSIC4_CONS),
  107. __stringify(IPA_CLIENT_HSIC5_PROD),
  108. __stringify(IPA_CLIENT_HSIC5_CONS),
  109. __stringify(IPA_CLIENT_WLAN1_PROD),
  110. __stringify(IPA_CLIENT_WLAN1_CONS),
  111. __stringify(IPA_CLIENT_WLAN2_PROD),
  112. __stringify(IPA_CLIENT_WLAN2_CONS),
  113. __stringify(RESERVED_PROD_14),
  114. __stringify(IPA_CLIENT_WLAN3_CONS),
  115. __stringify(RESERVED_PROD_16),
  116. __stringify(IPA_CLIENT_WLAN4_CONS),
  117. __stringify(IPA_CLIENT_USB_PROD),
  118. __stringify(IPA_CLIENT_USB_CONS),
  119. __stringify(IPA_CLIENT_USB2_PROD),
  120. __stringify(IPA_CLIENT_USB2_CONS),
  121. __stringify(IPA_CLIENT_USB3_PROD),
  122. __stringify(IPA_CLIENT_USB3_CONS),
  123. __stringify(IPA_CLIENT_USB4_PROD),
  124. __stringify(IPA_CLIENT_USB4_CONS),
  125. __stringify(IPA_CLIENT_UC_USB_PROD),
  126. __stringify(IPA_CLIENT_USB_DPL_CONS),
  127. __stringify(IPA_CLIENT_A2_EMBEDDED_PROD),
  128. __stringify(IPA_CLIENT_A2_EMBEDDED_CONS),
  129. __stringify(IPA_CLIENT_A2_TETHERED_PROD),
  130. __stringify(IPA_CLIENT_A2_TETHERED_CONS),
  131. __stringify(IPA_CLIENT_APPS_LAN_PROD),
  132. __stringify(IPA_CLIENT_APPS_LAN_CONS),
  133. __stringify(IPA_CLIENT_APPS_WAN_PROD),
  134. __stringify(IPA_CLIENT_APPS_WAN_CONS),
  135. __stringify(IPA_CLIENT_APPS_CMD_PROD),
  136. __stringify(IPA_CLIENT_A5_LAN_WAN_CONS),
  137. __stringify(IPA_CLIENT_ODU_PROD),
  138. __stringify(IPA_CLIENT_ODU_EMB_CONS),
  139. __stringify(RESERVED_PROD_40),
  140. __stringify(IPA_CLIENT_ODU_TETH_CONS),
  141. __stringify(IPA_CLIENT_MHI_PROD),
  142. __stringify(IPA_CLIENT_MHI_CONS),
  143. __stringify(IPA_CLIENT_MEMCPY_DMA_SYNC_PROD),
  144. __stringify(IPA_CLIENT_MEMCPY_DMA_SYNC_CONS),
  145. __stringify(IPA_CLIENT_MEMCPY_DMA_ASYNC_PROD),
  146. __stringify(IPA_CLIENT_MEMCPY_DMA_ASYNC_CONS),
  147. __stringify(IPA_CLIENT_ETHERNET_PROD),
  148. __stringify(IPA_CLIENT_ETHERNET_CONS),
  149. __stringify(IPA_CLIENT_Q6_LAN_PROD),
  150. __stringify(IPA_CLIENT_Q6_LAN_CONS),
  151. __stringify(IPA_CLIENT_Q6_WAN_PROD),
  152. __stringify(IPA_CLIENT_Q6_WAN_CONS),
  153. __stringify(IPA_CLIENT_Q6_CMD_PROD),
  154. __stringify(IPA_CLIENT_Q6_DUN_CONS),
  155. __stringify(IPA_CLIENT_Q6_DECOMP_PROD),
  156. __stringify(IPA_CLIENT_Q6_DECOMP_CONS),
  157. __stringify(IPA_CLIENT_Q6_DECOMP2_PROD),
  158. __stringify(IPA_CLIENT_Q6_DECOMP2_CONS),
  159. __stringify(RESERVED_PROD_60),
  160. __stringify(IPA_CLIENT_Q6_LTE_WIFI_AGGR_CONS),
  161. __stringify(IPA_CLIENT_TEST_PROD),
  162. __stringify(IPA_CLIENT_TEST_CONS),
  163. __stringify(IPA_CLIENT_TEST1_PROD),
  164. __stringify(IPA_CLIENT_TEST1_CONS),
  165. __stringify(IPA_CLIENT_TEST2_PROD),
  166. __stringify(IPA_CLIENT_TEST2_CONS),
  167. __stringify(IPA_CLIENT_TEST3_PROD),
  168. __stringify(IPA_CLIENT_TEST3_CONS),
  169. __stringify(IPA_CLIENT_TEST4_PROD),
  170. __stringify(IPA_CLIENT_TEST4_CONS),
  171. __stringify(RESERVED_PROD_72),
  172. __stringify(IPA_CLIENT_DUMMY_CONS),
  173. __stringify(IPA_CLIENT_Q6_DL_NLO_DATA_PROD),
  174. __stringify(IPA_CLIENT_Q6_UL_NLO_DATA_CONS),
  175. __stringify(RESERVED_PROD_76),
  176. __stringify(IPA_CLIENT_Q6_UL_NLO_ACK_CONS),
  177. __stringify(RESERVED_PROD_78),
  178. __stringify(IPA_CLIENT_Q6_QBAP_STATUS_CONS),
  179. __stringify(RESERVED_PROD_80),
  180. __stringify(IPA_CLIENT_MHI_DPL_CONS),
  181. __stringify(RESERVED_PROD_82),
  182. __stringify(IPA_CLIENT_ODL_DPL_CONS),
  183. __stringify(IPA_CLIENT_Q6_AUDIO_DMA_MHI_PROD),
  184. __stringify(IPA_CLIENT_Q6_AUDIO_DMA_MHI_CONS),
  185. __stringify(IPA_CLIENT_WIGIG_PROD),
  186. __stringify(IPA_CLIENT_WIGIG1_CONS),
  187. __stringify(RESERVERD_PROD_88),
  188. __stringify(IPA_CLIENT_WIGIG2_CONS),
  189. __stringify(RESERVERD_PROD_90),
  190. __stringify(IPA_CLIENT_WIGIG3_CONS),
  191. __stringify(RESERVERD_PROD_92),
  192. __stringify(IPA_CLIENT_WIGIG4_CONS),
  193. __stringify(RESERVERD_PROD_94),
  194. __stringify(IPA_CLIENT_APPS_WAN_COAL_CONS),
  195. __stringify(IPA_CLIENT_MHI_PRIME_RMNET_PROD),
  196. __stringify(IPA_CLIENT_MHI_PRIME_RMNET_CONS),
  197. __stringify(IPA_CLIENT_MHI_PRIME_TETH_PROD),
  198. __stringify(IPA_CLIENT_MHI_PRIME_TETH_CONS),
  199. __stringify(IPA_CLIENT_MHI_PRIME_DPL_PROD),
  200. };
  201. /**
  202. * ipa_write_64() - convert 64 bit value to byte array
  203. * @w: 64 bit integer
  204. * @dest: byte array
  205. *
  206. * Return value: converted value
  207. */
  208. u8 *ipa_write_64(u64 w, u8 *dest)
  209. {
  210. if (unlikely(dest == NULL)) {
  211. pr_err("%s: NULL address\n", __func__);
  212. return dest;
  213. }
  214. *dest++ = (u8)((w) & 0xFF);
  215. *dest++ = (u8)((w >> 8) & 0xFF);
  216. *dest++ = (u8)((w >> 16) & 0xFF);
  217. *dest++ = (u8)((w >> 24) & 0xFF);
  218. *dest++ = (u8)((w >> 32) & 0xFF);
  219. *dest++ = (u8)((w >> 40) & 0xFF);
  220. *dest++ = (u8)((w >> 48) & 0xFF);
  221. *dest++ = (u8)((w >> 56) & 0xFF);
  222. return dest;
  223. }
  224. /**
  225. * ipa_write_32() - convert 32 bit value to byte array
  226. * @w: 32 bit integer
  227. * @dest: byte array
  228. *
  229. * Return value: converted value
  230. */
  231. u8 *ipa_write_32(u32 w, u8 *dest)
  232. {
  233. if (unlikely(dest == NULL)) {
  234. pr_err("%s: NULL address\n", __func__);
  235. return dest;
  236. }
  237. *dest++ = (u8)((w) & 0xFF);
  238. *dest++ = (u8)((w >> 8) & 0xFF);
  239. *dest++ = (u8)((w >> 16) & 0xFF);
  240. *dest++ = (u8)((w >> 24) & 0xFF);
  241. return dest;
  242. }
  243. /**
  244. * ipa_write_16() - convert 16 bit value to byte array
  245. * @hw: 16 bit integer
  246. * @dest: byte array
  247. *
  248. * Return value: converted value
  249. */
  250. u8 *ipa_write_16(u16 hw, u8 *dest)
  251. {
  252. if (unlikely(dest == NULL)) {
  253. pr_err("%s: NULL address\n", __func__);
  254. return dest;
  255. }
  256. *dest++ = (u8)((hw) & 0xFF);
  257. *dest++ = (u8)((hw >> 8) & 0xFF);
  258. return dest;
  259. }
  260. /**
  261. * ipa_write_8() - convert 8 bit value to byte array
  262. * @hw: 8 bit integer
  263. * @dest: byte array
  264. *
  265. * Return value: converted value
  266. */
  267. u8 *ipa_write_8(u8 b, u8 *dest)
  268. {
  269. if (unlikely(dest == NULL)) {
  270. WARN(1, "%s: NULL address\n", __func__);
  271. return dest;
  272. }
  273. *dest++ = (b) & 0xFF;
  274. return dest;
  275. }
  276. /**
  277. * ipa_pad_to_64() - pad byte array to 64 bit value
  278. * @dest: byte array
  279. *
  280. * Return value: padded value
  281. */
  282. u8 *ipa_pad_to_64(u8 *dest)
  283. {
  284. int i;
  285. int j;
  286. if (unlikely(dest == NULL)) {
  287. WARN(1, "%s: NULL address\n", __func__);
  288. return dest;
  289. }
  290. i = (long)dest & 0x7;
  291. if (i)
  292. for (j = 0; j < (8 - i); j++)
  293. *dest++ = 0;
  294. return dest;
  295. }
  296. /**
  297. * ipa_pad_to_32() - pad byte array to 32 bit value
  298. * @dest: byte array
  299. *
  300. * Return value: padded value
  301. */
  302. u8 *ipa_pad_to_32(u8 *dest)
  303. {
  304. int i;
  305. int j;
  306. if (unlikely(dest == NULL)) {
  307. WARN(1, "%s: NULL address\n", __func__);
  308. return dest;
  309. }
  310. i = (long)dest & 0x7;
  311. if (i)
  312. for (j = 0; j < (4 - i); j++)
  313. *dest++ = 0;
  314. return dest;
  315. }
  316. int ipa_smmu_store_sgt(struct sg_table **out_ch_ptr,
  317. struct sg_table *in_sgt_ptr)
  318. {
  319. unsigned int nents;
  320. if (in_sgt_ptr != NULL) {
  321. *out_ch_ptr = kzalloc(sizeof(struct sg_table), GFP_KERNEL);
  322. if (*out_ch_ptr == NULL)
  323. return -ENOMEM;
  324. nents = in_sgt_ptr->nents;
  325. (*out_ch_ptr)->sgl =
  326. kcalloc(nents, sizeof(struct scatterlist),
  327. GFP_KERNEL);
  328. if ((*out_ch_ptr)->sgl == NULL) {
  329. kfree(*out_ch_ptr);
  330. *out_ch_ptr = NULL;
  331. return -ENOMEM;
  332. }
  333. memcpy((*out_ch_ptr)->sgl, in_sgt_ptr->sgl,
  334. nents*sizeof((*out_ch_ptr)->sgl));
  335. (*out_ch_ptr)->nents = nents;
  336. (*out_ch_ptr)->orig_nents = in_sgt_ptr->orig_nents;
  337. }
  338. return 0;
  339. }
  340. int ipa_smmu_free_sgt(struct sg_table **out_sgt_ptr)
  341. {
  342. if (*out_sgt_ptr != NULL) {
  343. kfree((*out_sgt_ptr)->sgl);
  344. (*out_sgt_ptr)->sgl = NULL;
  345. kfree(*out_sgt_ptr);
  346. *out_sgt_ptr = NULL;
  347. }
  348. return 0;
  349. }
  350. /**
  351. * ipa_clear_endpoint_delay() - Clear ep_delay.
  352. * @clnt_hdl: [in] IPA client handle
  353. *
  354. * Returns: 0 on success, negative on failure
  355. *
  356. * Note: Should not be called from atomic context
  357. */
  358. int ipa_clear_endpoint_delay(u32 clnt_hdl)
  359. {
  360. int ret;
  361. IPA_API_DISPATCH_RETURN(ipa_clear_endpoint_delay, clnt_hdl);
  362. return ret;
  363. }
  364. EXPORT_SYMBOL(ipa_clear_endpoint_delay);
  365. /**
  366. * ipa_reset_endpoint() - reset an endpoint from BAM perspective
  367. * @clnt_hdl: [in] IPA client handle
  368. *
  369. * Returns: 0 on success, negative on failure
  370. *
  371. * Note: Should not be called from atomic context
  372. */
  373. int ipa_reset_endpoint(u32 clnt_hdl)
  374. {
  375. int ret;
  376. IPA_API_DISPATCH_RETURN(ipa_reset_endpoint, clnt_hdl);
  377. return ret;
  378. }
  379. EXPORT_SYMBOL(ipa_reset_endpoint);
  380. /**
  381. * ipa_disable_endpoint() - Disable an endpoint from IPA perspective
  382. * @clnt_hdl: [in] IPA client handle
  383. *
  384. * Returns: 0 on success, negative on failure
  385. *
  386. * Note: Should not be called from atomic context
  387. */
  388. int ipa_disable_endpoint(u32 clnt_hdl)
  389. {
  390. int ret;
  391. IPA_API_DISPATCH_RETURN(ipa_disable_endpoint, clnt_hdl);
  392. return ret;
  393. }
  394. EXPORT_SYMBOL(ipa_disable_endpoint);
  395. /**
  396. * ipa_cfg_ep - IPA end-point configuration
  397. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  398. * @ipa_ep_cfg: [in] IPA end-point configuration params
  399. *
  400. * This includes nat, header, mode, aggregation and route settings and is a one
  401. * shot API to configure the IPA end-point fully
  402. *
  403. * Returns: 0 on success, negative on failure
  404. *
  405. * Note: Should not be called from atomic context
  406. */
  407. int ipa_cfg_ep(u32 clnt_hdl, const struct ipa_ep_cfg *ipa_ep_cfg)
  408. {
  409. int ret;
  410. IPA_API_DISPATCH_RETURN(ipa_cfg_ep, clnt_hdl, ipa_ep_cfg);
  411. return ret;
  412. }
  413. EXPORT_SYMBOL(ipa_cfg_ep);
  414. /**
  415. * ipa_cfg_ep_nat() - IPA end-point NAT configuration
  416. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  417. * @ep_nat: [in] IPA NAT end-point configuration params
  418. *
  419. * Returns: 0 on success, negative on failure
  420. *
  421. * Note: Should not be called from atomic context
  422. */
  423. int ipa_cfg_ep_nat(u32 clnt_hdl, const struct ipa_ep_cfg_nat *ep_nat)
  424. {
  425. int ret;
  426. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_nat, clnt_hdl, ep_nat);
  427. return ret;
  428. }
  429. EXPORT_SYMBOL(ipa_cfg_ep_nat);
  430. /**
  431. * ipa_cfg_ep_conn_track() - IPA end-point IPv6CT configuration
  432. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  433. * @ep_conn_track: [in] IPA IPv6CT end-point configuration params
  434. *
  435. * Returns: 0 on success, negative on failure
  436. *
  437. * Note: Should not be called from atomic context
  438. */
  439. int ipa_cfg_ep_conn_track(u32 clnt_hdl,
  440. const struct ipa_ep_cfg_conn_track *ep_conn_track)
  441. {
  442. int ret;
  443. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_conn_track, clnt_hdl,
  444. ep_conn_track);
  445. return ret;
  446. }
  447. EXPORT_SYMBOL(ipa_cfg_ep_conn_track);
  448. /**
  449. * ipa_cfg_ep_hdr() - IPA end-point header configuration
  450. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  451. * @ipa_ep_cfg: [in] IPA end-point configuration params
  452. *
  453. * Returns: 0 on success, negative on failure
  454. *
  455. * Note: Should not be called from atomic context
  456. */
  457. int ipa_cfg_ep_hdr(u32 clnt_hdl, const struct ipa_ep_cfg_hdr *ep_hdr)
  458. {
  459. int ret;
  460. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_hdr, clnt_hdl, ep_hdr);
  461. return ret;
  462. }
  463. EXPORT_SYMBOL(ipa_cfg_ep_hdr);
  464. /**
  465. * ipa_cfg_ep_hdr_ext() - IPA end-point extended header configuration
  466. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  467. * @ep_hdr_ext: [in] IPA end-point configuration params
  468. *
  469. * Returns: 0 on success, negative on failure
  470. *
  471. * Note: Should not be called from atomic context
  472. */
  473. int ipa_cfg_ep_hdr_ext(u32 clnt_hdl,
  474. const struct ipa_ep_cfg_hdr_ext *ep_hdr_ext)
  475. {
  476. int ret;
  477. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_hdr_ext, clnt_hdl, ep_hdr_ext);
  478. return ret;
  479. }
  480. EXPORT_SYMBOL(ipa_cfg_ep_hdr_ext);
  481. /**
  482. * ipa_cfg_ep_mode() - IPA end-point mode configuration
  483. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  484. * @ipa_ep_cfg: [in] IPA end-point configuration params
  485. *
  486. * Returns: 0 on success, negative on failure
  487. *
  488. * Note: Should not be called from atomic context
  489. */
  490. int ipa_cfg_ep_mode(u32 clnt_hdl, const struct ipa_ep_cfg_mode *ep_mode)
  491. {
  492. int ret;
  493. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_mode, clnt_hdl, ep_mode);
  494. return ret;
  495. }
  496. EXPORT_SYMBOL(ipa_cfg_ep_mode);
  497. /**
  498. * ipa_cfg_ep_aggr() - IPA end-point aggregation configuration
  499. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  500. * @ipa_ep_cfg: [in] IPA end-point configuration params
  501. *
  502. * Returns: 0 on success, negative on failure
  503. *
  504. * Note: Should not be called from atomic context
  505. */
  506. int ipa_cfg_ep_aggr(u32 clnt_hdl, const struct ipa_ep_cfg_aggr *ep_aggr)
  507. {
  508. int ret;
  509. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_aggr, clnt_hdl, ep_aggr);
  510. return ret;
  511. }
  512. EXPORT_SYMBOL(ipa_cfg_ep_aggr);
  513. /**
  514. * ipa_cfg_ep_deaggr() - IPA end-point deaggregation configuration
  515. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  516. * @ep_deaggr: [in] IPA end-point configuration params
  517. *
  518. * Returns: 0 on success, negative on failure
  519. *
  520. * Note: Should not be called from atomic context
  521. */
  522. int ipa_cfg_ep_deaggr(u32 clnt_hdl,
  523. const struct ipa_ep_cfg_deaggr *ep_deaggr)
  524. {
  525. int ret;
  526. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_deaggr, clnt_hdl, ep_deaggr);
  527. return ret;
  528. }
  529. EXPORT_SYMBOL(ipa_cfg_ep_deaggr);
  530. /**
  531. * ipa_cfg_ep_route() - IPA end-point routing configuration
  532. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  533. * @ipa_ep_cfg: [in] IPA end-point configuration params
  534. *
  535. * Returns: 0 on success, negative on failure
  536. *
  537. * Note: Should not be called from atomic context
  538. */
  539. int ipa_cfg_ep_route(u32 clnt_hdl, const struct ipa_ep_cfg_route *ep_route)
  540. {
  541. int ret;
  542. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_route, clnt_hdl, ep_route);
  543. return ret;
  544. }
  545. EXPORT_SYMBOL(ipa_cfg_ep_route);
  546. /**
  547. * ipa_cfg_ep_holb() - IPA end-point holb configuration
  548. *
  549. * If an IPA producer pipe is full, IPA HW by default will block
  550. * indefinitely till space opens up. During this time no packets
  551. * including those from unrelated pipes will be processed. Enabling
  552. * HOLB means IPA HW will be allowed to drop packets as/when needed
  553. * and indefinite blocking is avoided.
  554. *
  555. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  556. * @ipa_ep_cfg: [in] IPA end-point configuration params
  557. *
  558. * Returns: 0 on success, negative on failure
  559. */
  560. int ipa_cfg_ep_holb(u32 clnt_hdl, const struct ipa_ep_cfg_holb *ep_holb)
  561. {
  562. int ret;
  563. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_holb, clnt_hdl, ep_holb);
  564. return ret;
  565. }
  566. EXPORT_SYMBOL(ipa_cfg_ep_holb);
  567. /**
  568. * ipa_cfg_ep_cfg() - IPA end-point cfg configuration
  569. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  570. * @ipa_ep_cfg: [in] IPA end-point configuration params
  571. *
  572. * Returns: 0 on success, negative on failure
  573. *
  574. * Note: Should not be called from atomic context
  575. */
  576. int ipa_cfg_ep_cfg(u32 clnt_hdl, const struct ipa_ep_cfg_cfg *cfg)
  577. {
  578. int ret;
  579. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_cfg, clnt_hdl, cfg);
  580. return ret;
  581. }
  582. EXPORT_SYMBOL(ipa_cfg_ep_cfg);
  583. /**
  584. * ipa_cfg_ep_metadata_mask() - IPA end-point meta-data mask configuration
  585. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  586. * @ipa_ep_cfg: [in] IPA end-point configuration params
  587. *
  588. * Returns: 0 on success, negative on failure
  589. *
  590. * Note: Should not be called from atomic context
  591. */
  592. int ipa_cfg_ep_metadata_mask(u32 clnt_hdl, const struct ipa_ep_cfg_metadata_mask
  593. *metadata_mask)
  594. {
  595. int ret;
  596. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_metadata_mask, clnt_hdl,
  597. metadata_mask);
  598. return ret;
  599. }
  600. EXPORT_SYMBOL(ipa_cfg_ep_metadata_mask);
  601. /**
  602. * ipa_cfg_ep_holb_by_client() - IPA end-point holb configuration
  603. *
  604. * Wrapper function for ipa_cfg_ep_holb() with client name instead of
  605. * client handle. This function is used for clients that does not have
  606. * client handle.
  607. *
  608. * @client: [in] client name
  609. * @ipa_ep_cfg: [in] IPA end-point configuration params
  610. *
  611. * Returns: 0 on success, negative on failure
  612. */
  613. int ipa_cfg_ep_holb_by_client(enum ipa_client_type client,
  614. const struct ipa_ep_cfg_holb *ep_holb)
  615. {
  616. int ret;
  617. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_holb_by_client, client, ep_holb);
  618. return ret;
  619. }
  620. EXPORT_SYMBOL(ipa_cfg_ep_holb_by_client);
  621. /**
  622. * ipa_cfg_ep_ctrl() - IPA end-point Control configuration
  623. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  624. * @ipa_ep_cfg_ctrl: [in] IPA end-point configuration params
  625. *
  626. * Returns: 0 on success, negative on failure
  627. */
  628. int ipa_cfg_ep_ctrl(u32 clnt_hdl, const struct ipa_ep_cfg_ctrl *ep_ctrl)
  629. {
  630. int ret;
  631. IPA_API_DISPATCH_RETURN(ipa_cfg_ep_ctrl, clnt_hdl, ep_ctrl);
  632. return ret;
  633. }
  634. EXPORT_SYMBOL(ipa_cfg_ep_ctrl);
  635. /**
  636. * ipa_add_hdr() - add the specified headers to SW and optionally commit them to
  637. * IPA HW
  638. * @hdrs: [inout] set of headers to add
  639. *
  640. * Returns: 0 on success, negative on failure
  641. *
  642. * Note: Should not be called from atomic context
  643. */
  644. int ipa_add_hdr(struct ipa_ioc_add_hdr *hdrs)
  645. {
  646. int ret;
  647. IPA_API_DISPATCH_RETURN(ipa_add_hdr, hdrs);
  648. return ret;
  649. }
  650. EXPORT_SYMBOL(ipa_add_hdr);
  651. /**
  652. * ipa_add_hdr_usr() - add the specified headers to SW and optionally
  653. * commit them to IPA HW
  654. * @hdrs: [inout] set of headers to add
  655. * @user_only: [in] indicate rules installed by userspace
  656. *
  657. * Returns: 0 on success, negative on failure
  658. *
  659. * Note: Should not be called from atomic context
  660. */
  661. int ipa_add_hdr_usr(struct ipa_ioc_add_hdr *hdrs, bool user_only)
  662. {
  663. int ret;
  664. IPA_API_DISPATCH_RETURN(ipa_add_hdr_usr, hdrs, user_only);
  665. return ret;
  666. }
  667. EXPORT_SYMBOL(ipa_add_hdr_usr);
  668. /**
  669. * ipa_del_hdr() - Remove the specified headers from SW and optionally
  670. * commit them to IPA HW
  671. * @hdls: [inout] set of headers to delete
  672. *
  673. * Returns: 0 on success, negative on failure
  674. *
  675. * Note: Should not be called from atomic context
  676. */
  677. int ipa_del_hdr(struct ipa_ioc_del_hdr *hdls)
  678. {
  679. int ret;
  680. IPA_API_DISPATCH_RETURN(ipa_del_hdr, hdls);
  681. return ret;
  682. }
  683. EXPORT_SYMBOL(ipa_del_hdr);
  684. /**
  685. * ipa_commit_hdr() - commit to IPA HW the current header table in SW
  686. *
  687. * Returns: 0 on success, negative on failure
  688. *
  689. * Note: Should not be called from atomic context
  690. */
  691. int ipa_commit_hdr(void)
  692. {
  693. int ret;
  694. IPA_API_DISPATCH_RETURN(ipa_commit_hdr);
  695. return ret;
  696. }
  697. EXPORT_SYMBOL(ipa_commit_hdr);
  698. /**
  699. * ipa_reset_hdr() - reset the current header table in SW (does not commit to
  700. * HW)
  701. *
  702. * @user_only: [in] indicate delete rules installed by userspace
  703. * Returns: 0 on success, negative on failure
  704. *
  705. * Note: Should not be called from atomic context
  706. */
  707. int ipa_reset_hdr(bool user_only)
  708. {
  709. int ret;
  710. IPA_API_DISPATCH_RETURN(ipa_reset_hdr, user_only);
  711. return ret;
  712. }
  713. EXPORT_SYMBOL(ipa_reset_hdr);
  714. /**
  715. * ipa_get_hdr() - Lookup the specified header resource
  716. * @lookup: [inout] header to lookup and its handle
  717. *
  718. * lookup the specified header resource and return handle if it exists
  719. *
  720. * Returns: 0 on success, negative on failure
  721. *
  722. * Note: Should not be called from atomic context
  723. * Caller should call ipa_put_hdr later if this function succeeds
  724. */
  725. int ipa_get_hdr(struct ipa_ioc_get_hdr *lookup)
  726. {
  727. int ret;
  728. IPA_API_DISPATCH_RETURN(ipa_get_hdr, lookup);
  729. return ret;
  730. }
  731. EXPORT_SYMBOL(ipa_get_hdr);
  732. /**
  733. * ipa_put_hdr() - Release the specified header handle
  734. * @hdr_hdl: [in] the header handle to release
  735. *
  736. * Returns: 0 on success, negative on failure
  737. *
  738. * Note: Should not be called from atomic context
  739. */
  740. int ipa_put_hdr(u32 hdr_hdl)
  741. {
  742. int ret;
  743. IPA_API_DISPATCH_RETURN(ipa_put_hdr, hdr_hdl);
  744. return ret;
  745. }
  746. EXPORT_SYMBOL(ipa_put_hdr);
  747. /**
  748. * ipa_copy_hdr() - Lookup the specified header resource and return a copy of it
  749. * @copy: [inout] header to lookup and its copy
  750. *
  751. * lookup the specified header resource and return a copy of it (along with its
  752. * attributes) if it exists, this would be called for partial headers
  753. *
  754. * Returns: 0 on success, negative on failure
  755. *
  756. * Note: Should not be called from atomic context
  757. */
  758. int ipa_copy_hdr(struct ipa_ioc_copy_hdr *copy)
  759. {
  760. int ret;
  761. IPA_API_DISPATCH_RETURN(ipa_copy_hdr, copy);
  762. return ret;
  763. }
  764. EXPORT_SYMBOL(ipa_copy_hdr);
  765. /**
  766. * ipa_add_hdr_proc_ctx() - add the specified headers to SW
  767. * and optionally commit them to IPA HW
  768. * @proc_ctxs: [inout] set of processing context headers to add
  769. * @user_only: [in] indicate rules installed by userspace
  770. *
  771. * Returns: 0 on success, negative on failure
  772. *
  773. * Note: Should not be called from atomic context
  774. */
  775. int ipa_add_hdr_proc_ctx(struct ipa_ioc_add_hdr_proc_ctx *proc_ctxs,
  776. bool user_only)
  777. {
  778. int ret;
  779. IPA_API_DISPATCH_RETURN(ipa_add_hdr_proc_ctx, proc_ctxs, user_only);
  780. return ret;
  781. }
  782. EXPORT_SYMBOL(ipa_add_hdr_proc_ctx);
  783. /**
  784. * ipa_del_hdr_proc_ctx() -
  785. * Remove the specified processing context headers from SW and
  786. * optionally commit them to IPA HW.
  787. * @hdls: [inout] set of processing context headers to delete
  788. *
  789. * Returns: 0 on success, negative on failure
  790. *
  791. * Note: Should not be called from atomic context
  792. */
  793. int ipa_del_hdr_proc_ctx(struct ipa_ioc_del_hdr_proc_ctx *hdls)
  794. {
  795. int ret;
  796. IPA_API_DISPATCH_RETURN(ipa_del_hdr_proc_ctx, hdls);
  797. return ret;
  798. }
  799. EXPORT_SYMBOL(ipa_del_hdr_proc_ctx);
  800. /**
  801. * ipa_add_rt_rule() - Add the specified routing rules to SW and optionally
  802. * commit to IPA HW
  803. * @rules: [inout] set of routing rules to add
  804. *
  805. * Returns: 0 on success, negative on failure
  806. *
  807. * Note: Should not be called from atomic context
  808. */
  809. int ipa_add_rt_rule(struct ipa_ioc_add_rt_rule *rules)
  810. {
  811. int ret;
  812. IPA_API_DISPATCH_RETURN(ipa_add_rt_rule, rules);
  813. return ret;
  814. }
  815. EXPORT_SYMBOL(ipa_add_rt_rule);
  816. /**
  817. * ipa_add_rt_rule_v2() - Add the specified routing rules to SW
  818. * and optionally commit to IPA HW
  819. * @rules: [inout] set of routing rules to add
  820. *
  821. * Returns: 0 on success, negative on failure
  822. *
  823. * Note: Should not be called from atomic context
  824. */
  825. int ipa_add_rt_rule_v2(struct ipa_ioc_add_rt_rule_v2 *rules)
  826. {
  827. int ret;
  828. IPA_API_DISPATCH_RETURN(ipa_add_rt_rule_v2, rules);
  829. return ret;
  830. }
  831. EXPORT_SYMBOL(ipa_add_rt_rule_v2);
  832. /**
  833. * ipa_add_rt_rule_usr() - Add the specified routing rules to SW and optionally
  834. * commit to IPA HW
  835. * @rules: [inout] set of routing rules to add
  836. * @user_only: [in] indicate rules installed by userspace
  837. *
  838. * Returns: 0 on success, negative on failure
  839. *
  840. * Note: Should not be called from atomic context
  841. */
  842. int ipa_add_rt_rule_usr(struct ipa_ioc_add_rt_rule *rules, bool user_only)
  843. {
  844. int ret;
  845. IPA_API_DISPATCH_RETURN(ipa_add_rt_rule_usr, rules, user_only);
  846. return ret;
  847. }
  848. EXPORT_SYMBOL(ipa_add_rt_rule_usr);
  849. /**
  850. * ipa_add_rt_rule_usr_v2() - Add the specified routing rules to
  851. * SW and optionally commit to IPA HW
  852. * @rules: [inout] set of routing rules to add
  853. * @user_only: [in] indicate rules installed by userspace
  854. *
  855. * Returns: 0 on success, negative on failure
  856. *
  857. * Note: Should not be called from atomic context
  858. */
  859. int ipa_add_rt_rule_usr_v2(struct ipa_ioc_add_rt_rule_v2 *rules, bool user_only)
  860. {
  861. int ret;
  862. IPA_API_DISPATCH_RETURN(ipa_add_rt_rule_usr_v2, rules, user_only);
  863. return ret;
  864. }
  865. EXPORT_SYMBOL(ipa_add_rt_rule_usr_v2);
  866. /**
  867. * ipa_del_rt_rule() - Remove the specified routing rules to SW and optionally
  868. * commit to IPA HW
  869. * @hdls: [inout] set of routing rules to delete
  870. *
  871. * Returns: 0 on success, negative on failure
  872. *
  873. * Note: Should not be called from atomic context
  874. */
  875. int ipa_del_rt_rule(struct ipa_ioc_del_rt_rule *hdls)
  876. {
  877. int ret;
  878. IPA_API_DISPATCH_RETURN(ipa_del_rt_rule, hdls);
  879. return ret;
  880. }
  881. EXPORT_SYMBOL(ipa_del_rt_rule);
  882. /**
  883. * ipa_commit_rt_rule() - Commit the current SW routing table of specified type
  884. * to IPA HW
  885. * @ip: The family of routing tables
  886. *
  887. * Returns: 0 on success, negative on failure
  888. *
  889. * Note: Should not be called from atomic context
  890. */
  891. int ipa_commit_rt(enum ipa_ip_type ip)
  892. {
  893. int ret;
  894. IPA_API_DISPATCH_RETURN(ipa_commit_rt, ip);
  895. return ret;
  896. }
  897. EXPORT_SYMBOL(ipa_commit_rt);
  898. /**
  899. * ipa_reset_rt() - reset the current SW routing table of specified type
  900. * (does not commit to HW)
  901. * @ip: The family of routing tables
  902. * @user_only: [in] indicate delete rules installed by userspace
  903. *
  904. * Returns: 0 on success, negative on failure
  905. *
  906. * Note: Should not be called from atomic context
  907. */
  908. int ipa_reset_rt(enum ipa_ip_type ip, bool user_only)
  909. {
  910. int ret;
  911. IPA_API_DISPATCH_RETURN(ipa_reset_rt, ip, user_only);
  912. return ret;
  913. }
  914. EXPORT_SYMBOL(ipa_reset_rt);
  915. /**
  916. * ipa_get_rt_tbl() - lookup the specified routing table and return handle if it
  917. * exists, if lookup succeeds the routing table ref cnt is increased
  918. * @lookup: [inout] routing table to lookup and its handle
  919. *
  920. * Returns: 0 on success, negative on failure
  921. *
  922. * Note: Should not be called from atomic context
  923. * Caller should call ipa_put_rt_tbl later if this function succeeds
  924. */
  925. int ipa_get_rt_tbl(struct ipa_ioc_get_rt_tbl *lookup)
  926. {
  927. int ret;
  928. IPA_API_DISPATCH_RETURN(ipa_get_rt_tbl, lookup);
  929. return ret;
  930. }
  931. EXPORT_SYMBOL(ipa_get_rt_tbl);
  932. /**
  933. * ipa_put_rt_tbl() - Release the specified routing table handle
  934. * @rt_tbl_hdl: [in] the routing table handle to release
  935. *
  936. * Returns: 0 on success, negative on failure
  937. *
  938. * Note: Should not be called from atomic context
  939. */
  940. int ipa_put_rt_tbl(u32 rt_tbl_hdl)
  941. {
  942. int ret;
  943. IPA_API_DISPATCH_RETURN(ipa_put_rt_tbl, rt_tbl_hdl);
  944. return ret;
  945. }
  946. EXPORT_SYMBOL(ipa_put_rt_tbl);
  947. /**
  948. * ipa_query_rt_index() - find the routing table index
  949. * which name and ip type are given as parameters
  950. * @in: [out] the index of the wanted routing table
  951. *
  952. * Returns: the routing table which name is given as parameter, or NULL if it
  953. * doesn't exist
  954. */
  955. int ipa_query_rt_index(struct ipa_ioc_get_rt_tbl_indx *in)
  956. {
  957. int ret;
  958. IPA_API_DISPATCH_RETURN(ipa_query_rt_index, in);
  959. return ret;
  960. }
  961. EXPORT_SYMBOL(ipa_query_rt_index);
  962. /**
  963. * ipa_mdfy_rt_rule() - Modify the specified routing rules in SW and optionally
  964. * commit to IPA HW
  965. *
  966. * Returns: 0 on success, negative on failure
  967. *
  968. * Note: Should not be called from atomic context
  969. */
  970. int ipa_mdfy_rt_rule(struct ipa_ioc_mdfy_rt_rule *hdls)
  971. {
  972. int ret;
  973. IPA_API_DISPATCH_RETURN(ipa_mdfy_rt_rule, hdls);
  974. return ret;
  975. }
  976. EXPORT_SYMBOL(ipa_mdfy_rt_rule);
  977. /**
  978. * ipa_mdfy_rt_rule_v2() - Modify the specified routing rules in
  979. * SW and optionally commit to IPA HW
  980. *
  981. * Returns: 0 on success, negative on failure
  982. *
  983. * Note: Should not be called from atomic context
  984. */
  985. int ipa_mdfy_rt_rule_v2(struct ipa_ioc_mdfy_rt_rule_v2 *hdls)
  986. {
  987. int ret;
  988. IPA_API_DISPATCH_RETURN(ipa_mdfy_rt_rule_v2, hdls);
  989. return ret;
  990. }
  991. EXPORT_SYMBOL(ipa_mdfy_rt_rule_v2);
  992. /**
  993. * ipa_add_flt_rule() - Add the specified filtering rules to SW and optionally
  994. * commit to IPA HW
  995. * @rules: [inout] set of filtering rules to add
  996. *
  997. * Returns: 0 on success, negative on failure
  998. *
  999. * Note: Should not be called from atomic context
  1000. */
  1001. int ipa_add_flt_rule(struct ipa_ioc_add_flt_rule *rules)
  1002. {
  1003. int ret;
  1004. IPA_API_DISPATCH_RETURN(ipa_add_flt_rule, rules);
  1005. return ret;
  1006. }
  1007. EXPORT_SYMBOL(ipa_add_flt_rule);
  1008. /**
  1009. * ipa_add_flt_rule_v2() - Add the specified filtering rules to
  1010. * SW and optionally commit to IPA HW
  1011. * @rules: [inout] set of filtering rules to add
  1012. *
  1013. * Returns: 0 on success, negative on failure
  1014. *
  1015. * Note: Should not be called from atomic context
  1016. */
  1017. int ipa_add_flt_rule_v2(struct ipa_ioc_add_flt_rule_v2 *rules)
  1018. {
  1019. int ret;
  1020. IPA_API_DISPATCH_RETURN(ipa_add_flt_rule_v2, rules);
  1021. return ret;
  1022. }
  1023. EXPORT_SYMBOL(ipa_add_flt_rule_v2);
  1024. /**
  1025. * ipa_add_flt_rule_usr() - Add the specified filtering rules to
  1026. * SW and optionally commit to IPA HW
  1027. * @rules: [inout] set of filtering rules to add
  1028. * @user_only: [in] indicate rules installed by userspace
  1029. *
  1030. * Returns: 0 on success, negative on failure
  1031. *
  1032. * Note: Should not be called from atomic context
  1033. */
  1034. int ipa_add_flt_rule_usr(struct ipa_ioc_add_flt_rule *rules, bool user_only)
  1035. {
  1036. int ret;
  1037. IPA_API_DISPATCH_RETURN(ipa_add_flt_rule_usr, rules, user_only);
  1038. return ret;
  1039. }
  1040. EXPORT_SYMBOL(ipa_add_flt_rule_usr);
  1041. /**
  1042. * ipa_add_flt_rule_usr_v2() - Add the specified filtering rules
  1043. * to SW and optionally commit to IPA HW
  1044. * @rules: [inout] set of filtering rules to add
  1045. * @user_only: [in] indicate rules installed by userspace
  1046. *
  1047. * Returns: 0 on success, negative on failure
  1048. *
  1049. * Note: Should not be called from atomic context
  1050. */
  1051. int ipa_add_flt_rule_usr_v2(struct ipa_ioc_add_flt_rule_v2 *rules,
  1052. bool user_only)
  1053. {
  1054. int ret;
  1055. IPA_API_DISPATCH_RETURN(ipa_add_flt_rule_usr_v2,
  1056. rules, user_only);
  1057. return ret;
  1058. }
  1059. EXPORT_SYMBOL(ipa_add_flt_rule_usr_v2);
  1060. /**
  1061. * ipa_del_flt_rule() - Remove the specified filtering rules from SW and
  1062. * optionally commit to IPA HW
  1063. *
  1064. * Returns: 0 on success, negative on failure
  1065. *
  1066. * Note: Should not be called from atomic context
  1067. */
  1068. int ipa_del_flt_rule(struct ipa_ioc_del_flt_rule *hdls)
  1069. {
  1070. int ret;
  1071. IPA_API_DISPATCH_RETURN(ipa_del_flt_rule, hdls);
  1072. return ret;
  1073. }
  1074. EXPORT_SYMBOL(ipa_del_flt_rule);
  1075. /**
  1076. * ipa_mdfy_flt_rule() - Modify the specified filtering rules in SW and
  1077. * optionally commit to IPA HW
  1078. *
  1079. * Returns: 0 on success, negative on failure
  1080. *
  1081. * Note: Should not be called from atomic context
  1082. */
  1083. int ipa_mdfy_flt_rule(struct ipa_ioc_mdfy_flt_rule *hdls)
  1084. {
  1085. int ret;
  1086. IPA_API_DISPATCH_RETURN(ipa_mdfy_flt_rule, hdls);
  1087. return ret;
  1088. }
  1089. EXPORT_SYMBOL(ipa_mdfy_flt_rule);
  1090. /**
  1091. * ipa_mdfy_flt_rule_v2() - Modify the specified filtering rules
  1092. * in SW and optionally commit to IPA HW
  1093. *
  1094. * Returns: 0 on success, negative on failure
  1095. *
  1096. * Note: Should not be called from atomic context
  1097. */
  1098. int ipa_mdfy_flt_rule_v2(struct ipa_ioc_mdfy_flt_rule_v2 *hdls)
  1099. {
  1100. int ret;
  1101. IPA_API_DISPATCH_RETURN(ipa_mdfy_flt_rule_v2, hdls);
  1102. return ret;
  1103. }
  1104. EXPORT_SYMBOL(ipa_mdfy_flt_rule_v2);
  1105. /**
  1106. * ipa_commit_flt() - Commit the current SW filtering table of specified type to
  1107. * IPA HW
  1108. * @ip: [in] the family of routing tables
  1109. *
  1110. * Returns: 0 on success, negative on failure
  1111. *
  1112. * Note: Should not be called from atomic context
  1113. */
  1114. int ipa_commit_flt(enum ipa_ip_type ip)
  1115. {
  1116. int ret;
  1117. IPA_API_DISPATCH_RETURN(ipa_commit_flt, ip);
  1118. return ret;
  1119. }
  1120. EXPORT_SYMBOL(ipa_commit_flt);
  1121. /**
  1122. * ipa_reset_flt() - Reset the current SW filtering table of specified type
  1123. * (does not commit to HW)
  1124. * @ip: [in] the family of routing tables
  1125. * @user_only: [in] indicate delete rules installed by userspace
  1126. *
  1127. * Returns: 0 on success, negative on failure
  1128. *
  1129. * Note: Should not be called from atomic context
  1130. */
  1131. int ipa_reset_flt(enum ipa_ip_type ip, bool user_only)
  1132. {
  1133. int ret;
  1134. IPA_API_DISPATCH_RETURN(ipa_reset_flt, ip, user_only);
  1135. return ret;
  1136. }
  1137. EXPORT_SYMBOL(ipa_reset_flt);
  1138. /**
  1139. * ipa_allocate_nat_device() - Allocates memory for the NAT device
  1140. * @mem: [in/out] memory parameters
  1141. *
  1142. * Called by NAT client driver to allocate memory for the NAT entries. Based on
  1143. * the request size either shared or system memory will be used.
  1144. *
  1145. * Returns: 0 on success, negative on failure
  1146. */
  1147. int ipa_allocate_nat_device(struct ipa_ioc_nat_alloc_mem *mem)
  1148. {
  1149. int ret;
  1150. IPA_API_DISPATCH_RETURN(ipa_allocate_nat_device, mem);
  1151. return ret;
  1152. }
  1153. EXPORT_SYMBOL(ipa_allocate_nat_device);
  1154. /**
  1155. * ipa_allocate_nat_table() - Allocates memory for the NAT table
  1156. * @table_alloc: [in/out] memory parameters
  1157. *
  1158. * Called by NAT client to allocate memory for the table entries.
  1159. * Based on the request size either shared or system memory will be used.
  1160. *
  1161. * Returns: 0 on success, negative on failure
  1162. */
  1163. int ipa_allocate_nat_table(struct ipa_ioc_nat_ipv6ct_table_alloc *table_alloc)
  1164. {
  1165. int ret;
  1166. IPA_API_DISPATCH_RETURN(ipa_allocate_nat_table, table_alloc);
  1167. return ret;
  1168. }
  1169. EXPORT_SYMBOL(ipa_allocate_nat_table);
  1170. /**
  1171. * ipa_allocate_ipv6ct_table() - Allocates memory for the IPv6CT table
  1172. * @table_alloc: [in/out] memory parameters
  1173. *
  1174. * Called by IPv6CT client to allocate memory for the table entries.
  1175. * Based on the request size either shared or system memory will be used.
  1176. *
  1177. * Returns: 0 on success, negative on failure
  1178. */
  1179. int ipa_allocate_ipv6ct_table(
  1180. struct ipa_ioc_nat_ipv6ct_table_alloc *table_alloc)
  1181. {
  1182. int ret;
  1183. IPA_API_DISPATCH_RETURN(ipa_allocate_ipv6ct_table, table_alloc);
  1184. return ret;
  1185. }
  1186. EXPORT_SYMBOL(ipa_allocate_ipv6ct_table);
  1187. /**
  1188. * ipa_nat_init_cmd() - Post IP_V4_NAT_INIT command to IPA HW
  1189. * @init: [in] initialization command attributes
  1190. *
  1191. * Called by NAT client driver to post IP_V4_NAT_INIT command to IPA HW
  1192. *
  1193. * Returns: 0 on success, negative on failure
  1194. */
  1195. int ipa_nat_init_cmd(struct ipa_ioc_v4_nat_init *init)
  1196. {
  1197. int ret;
  1198. IPA_API_DISPATCH_RETURN(ipa_nat_init_cmd, init);
  1199. return ret;
  1200. }
  1201. EXPORT_SYMBOL(ipa_nat_init_cmd);
  1202. /**
  1203. * ipa_ipv6ct_init_cmd() - Post IP_V6_CONN_TRACK_INIT command to IPA HW
  1204. * @init: [in] initialization command attributes
  1205. *
  1206. * Called by IPv6CT client driver to post IP_V6_CONN_TRACK_INIT command
  1207. * to IPA HW.
  1208. *
  1209. * Returns: 0 on success, negative on failure
  1210. */
  1211. int ipa_ipv6ct_init_cmd(struct ipa_ioc_ipv6ct_init *init)
  1212. {
  1213. int ret;
  1214. IPA_API_DISPATCH_RETURN(ipa_ipv6ct_init_cmd, init);
  1215. return ret;
  1216. }
  1217. EXPORT_SYMBOL(ipa_ipv6ct_init_cmd);
  1218. /**
  1219. * ipa_nat_dma_cmd() - Post NAT_DMA command to IPA HW
  1220. * @dma: [in] initialization command attributes
  1221. *
  1222. * Called by NAT client driver to post NAT_DMA command to IPA HW
  1223. *
  1224. * Returns: 0 on success, negative on failure
  1225. */
  1226. int ipa_nat_dma_cmd(struct ipa_ioc_nat_dma_cmd *dma)
  1227. {
  1228. int ret;
  1229. IPA_API_DISPATCH_RETURN(ipa_nat_dma_cmd, dma);
  1230. return ret;
  1231. }
  1232. EXPORT_SYMBOL(ipa_nat_dma_cmd);
  1233. /**
  1234. * ipa_table_dma_cmd() - Post TABLE_DMA command to IPA HW
  1235. * @dma: [in] initialization command attributes
  1236. *
  1237. * Called by NAT/IPv6CT client to post TABLE_DMA command to IPA HW
  1238. *
  1239. * Returns: 0 on success, negative on failure
  1240. */
  1241. int ipa_table_dma_cmd(struct ipa_ioc_nat_dma_cmd *dma)
  1242. {
  1243. int ret;
  1244. IPA_API_DISPATCH_RETURN(ipa_table_dma_cmd, dma);
  1245. return ret;
  1246. }
  1247. EXPORT_SYMBOL(ipa_table_dma_cmd);
  1248. /**
  1249. * ipa_nat_del_cmd() - Delete the NAT table
  1250. * @del: [in] delete NAT table parameters
  1251. *
  1252. * Called by NAT client driver to delete the nat table
  1253. *
  1254. * Returns: 0 on success, negative on failure
  1255. */
  1256. int ipa_nat_del_cmd(struct ipa_ioc_v4_nat_del *del)
  1257. {
  1258. int ret;
  1259. IPA_API_DISPATCH_RETURN(ipa_nat_del_cmd, del);
  1260. return ret;
  1261. }
  1262. EXPORT_SYMBOL(ipa_nat_del_cmd);
  1263. /**
  1264. * ipa_del_nat_table() - Delete the NAT table
  1265. * @del: [in] delete table parameters
  1266. *
  1267. * Called by NAT client to delete the table
  1268. *
  1269. * Returns: 0 on success, negative on failure
  1270. */
  1271. int ipa_del_nat_table(struct ipa_ioc_nat_ipv6ct_table_del *del)
  1272. {
  1273. int ret;
  1274. IPA_API_DISPATCH_RETURN(ipa_del_nat_table, del);
  1275. return ret;
  1276. }
  1277. EXPORT_SYMBOL(ipa_del_nat_table);
  1278. /**
  1279. * ipa_del_ipv6ct_table() - Delete the IPv6CT table
  1280. * @del: [in] delete table parameters
  1281. *
  1282. * Called by IPv6CT client to delete the table
  1283. *
  1284. * Returns: 0 on success, negative on failure
  1285. */
  1286. int ipa_del_ipv6ct_table(struct ipa_ioc_nat_ipv6ct_table_del *del)
  1287. {
  1288. int ret;
  1289. IPA_API_DISPATCH_RETURN(ipa_del_ipv6ct_table, del);
  1290. return ret;
  1291. }
  1292. EXPORT_SYMBOL(ipa_del_ipv6ct_table);
  1293. /**
  1294. * ipa3_nat_mdfy_pdn() - Modify a PDN entry in PDN config table in IPA SRAM
  1295. * @mdfy_pdn: [in] PDN info to be written to SRAM
  1296. *
  1297. * Called by NAT client driver to modify an entry in the PDN config table
  1298. *
  1299. * Returns: 0 on success, negative on failure
  1300. */
  1301. int ipa_nat_mdfy_pdn(struct ipa_ioc_nat_pdn_entry *mdfy_pdn)
  1302. {
  1303. int ret;
  1304. IPA_API_DISPATCH_RETURN(ipa_nat_mdfy_pdn, mdfy_pdn);
  1305. return ret;
  1306. }
  1307. EXPORT_SYMBOL(ipa_nat_mdfy_pdn);
  1308. /**
  1309. * ipa_send_msg() - Send "message" from kernel client to IPA driver
  1310. * @meta: [in] message meta-data
  1311. * @buff: [in] the payload for message
  1312. * @callback: [in] free callback
  1313. *
  1314. * Client supplies the message meta-data and payload which IPA driver buffers
  1315. * till read by user-space. After read from user space IPA driver invokes the
  1316. * callback supplied to free the message payload. Client must not touch/free
  1317. * the message payload after calling this API.
  1318. *
  1319. * Returns: 0 on success, negative on failure
  1320. *
  1321. * Note: Should not be called from atomic context
  1322. */
  1323. int ipa_send_msg(struct ipa_msg_meta *meta, void *buff,
  1324. ipa_msg_free_fn callback)
  1325. {
  1326. int ret;
  1327. IPA_API_DISPATCH_RETURN(ipa_send_msg, meta, buff, callback);
  1328. return ret;
  1329. }
  1330. EXPORT_SYMBOL(ipa_send_msg);
  1331. /**
  1332. * ipa_register_pull_msg() - register pull message type
  1333. * @meta: [in] message meta-data
  1334. * @callback: [in] pull callback
  1335. *
  1336. * Register message callback by kernel client with IPA driver for IPA driver to
  1337. * pull message on-demand.
  1338. *
  1339. * Returns: 0 on success, negative on failure
  1340. *
  1341. * Note: Should not be called from atomic context
  1342. */
  1343. int ipa_register_pull_msg(struct ipa_msg_meta *meta, ipa_msg_pull_fn callback)
  1344. {
  1345. int ret;
  1346. IPA_API_DISPATCH_RETURN(ipa_register_pull_msg, meta, callback);
  1347. return ret;
  1348. }
  1349. EXPORT_SYMBOL(ipa_register_pull_msg);
  1350. /**
  1351. * ipa_deregister_pull_msg() - De-register pull message type
  1352. * @meta: [in] message meta-data
  1353. *
  1354. * De-register "message" by kernel client from IPA driver
  1355. *
  1356. * Returns: 0 on success, negative on failure
  1357. *
  1358. * Note: Should not be called from atomic context
  1359. */
  1360. int ipa_deregister_pull_msg(struct ipa_msg_meta *meta)
  1361. {
  1362. int ret;
  1363. IPA_API_DISPATCH_RETURN(ipa_deregister_pull_msg, meta);
  1364. return ret;
  1365. }
  1366. EXPORT_SYMBOL(ipa_deregister_pull_msg);
  1367. /**
  1368. * ipa_register_intf() - register "logical" interface
  1369. * @name: [in] interface name
  1370. * @tx: [in] TX properties of the interface
  1371. * @rx: [in] RX properties of the interface
  1372. *
  1373. * Register an interface and its tx and rx properties, this allows
  1374. * configuration of rules from user-space
  1375. *
  1376. * Returns: 0 on success, negative on failure
  1377. *
  1378. * Note: Should not be called from atomic context
  1379. */
  1380. int ipa_register_intf(const char *name, const struct ipa_tx_intf *tx,
  1381. const struct ipa_rx_intf *rx)
  1382. {
  1383. int ret;
  1384. IPA_API_DISPATCH_RETURN(ipa_register_intf, name, tx, rx);
  1385. return ret;
  1386. }
  1387. EXPORT_SYMBOL(ipa_register_intf);
  1388. /**
  1389. * ipa_register_intf_ext() - register "logical" interface which has only
  1390. * extended properties
  1391. * @name: [in] interface name
  1392. * @tx: [in] TX properties of the interface
  1393. * @rx: [in] RX properties of the interface
  1394. * @ext: [in] EXT properties of the interface
  1395. *
  1396. * Register an interface and its tx, rx and ext properties, this allows
  1397. * configuration of rules from user-space
  1398. *
  1399. * Returns: 0 on success, negative on failure
  1400. *
  1401. * Note: Should not be called from atomic context
  1402. */
  1403. int ipa_register_intf_ext(const char *name, const struct ipa_tx_intf *tx,
  1404. const struct ipa_rx_intf *rx,
  1405. const struct ipa_ext_intf *ext)
  1406. {
  1407. int ret;
  1408. IPA_API_DISPATCH_RETURN(ipa_register_intf_ext, name, tx, rx, ext);
  1409. return ret;
  1410. }
  1411. EXPORT_SYMBOL(ipa_register_intf_ext);
  1412. /**
  1413. * ipa_deregister_intf() - de-register previously registered logical interface
  1414. * @name: [in] interface name
  1415. *
  1416. * De-register a previously registered interface
  1417. *
  1418. * Returns: 0 on success, negative on failure
  1419. *
  1420. * Note: Should not be called from atomic context
  1421. */
  1422. int ipa_deregister_intf(const char *name)
  1423. {
  1424. int ret;
  1425. IPA_API_DISPATCH_RETURN(ipa_deregister_intf, name);
  1426. return ret;
  1427. }
  1428. EXPORT_SYMBOL(ipa_deregister_intf);
  1429. /**
  1430. * ipa_set_aggr_mode() - Set the aggregation mode which is a global setting
  1431. * @mode: [in] the desired aggregation mode for e.g. straight MBIM, QCNCM,
  1432. * etc
  1433. *
  1434. * Returns: 0 on success
  1435. */
  1436. int ipa_set_aggr_mode(enum ipa_aggr_mode mode)
  1437. {
  1438. int ret;
  1439. IPA_API_DISPATCH_RETURN(ipa_set_aggr_mode, mode);
  1440. return ret;
  1441. }
  1442. EXPORT_SYMBOL(ipa_set_aggr_mode);
  1443. /**
  1444. * ipa_set_qcncm_ndp_sig() - Set the NDP signature used for QCNCM aggregation
  1445. * mode
  1446. * @sig: [in] the first 3 bytes of QCNCM NDP signature (expected to be
  1447. * "QND")
  1448. *
  1449. * Set the NDP signature used for QCNCM aggregation mode. The fourth byte
  1450. * (expected to be 'P') needs to be set using the header addition mechanism
  1451. *
  1452. * Returns: 0 on success, negative on failure
  1453. */
  1454. int ipa_set_qcncm_ndp_sig(char sig[3])
  1455. {
  1456. int ret;
  1457. IPA_API_DISPATCH_RETURN(ipa_set_qcncm_ndp_sig, sig);
  1458. return ret;
  1459. }
  1460. EXPORT_SYMBOL(ipa_set_qcncm_ndp_sig);
  1461. /**
  1462. * ipa_set_single_ndp_per_mbim() - Enable/disable single NDP per MBIM frame
  1463. * configuration
  1464. * @enable: [in] true for single NDP/MBIM; false otherwise
  1465. *
  1466. * Returns: 0 on success
  1467. */
  1468. int ipa_set_single_ndp_per_mbim(bool enable)
  1469. {
  1470. int ret;
  1471. IPA_API_DISPATCH_RETURN(ipa_set_single_ndp_per_mbim, enable);
  1472. return ret;
  1473. }
  1474. EXPORT_SYMBOL(ipa_set_single_ndp_per_mbim);
  1475. /**
  1476. * ipa_tx_dp() - Data-path tx handler
  1477. * @dst: [in] which IPA destination to route tx packets to
  1478. * @skb: [in] the packet to send
  1479. * @metadata: [in] TX packet meta-data
  1480. *
  1481. * Data-path tx handler, this is used for both SW data-path which by-passes most
  1482. * IPA HW blocks AND the regular HW data-path for WLAN AMPDU traffic only. If
  1483. * dst is a "valid" CONS type, then SW data-path is used. If dst is the
  1484. * WLAN_AMPDU PROD type, then HW data-path for WLAN AMPDU is used. Anything else
  1485. * is an error. For errors, client needs to free the skb as needed. For success,
  1486. * IPA driver will later invoke client callback if one was supplied. That
  1487. * callback should free the skb. If no callback supplied, IPA driver will free
  1488. * the skb internally
  1489. *
  1490. * The function will use two descriptors for this send command
  1491. * (for A5_WLAN_AMPDU_PROD only one desciprtor will be sent),
  1492. * the first descriptor will be used to inform the IPA hardware that
  1493. * apps need to push data into the IPA (IP_PACKET_INIT immediate command).
  1494. * Once this send was done from SPS point-of-view the IPA driver will
  1495. * get notified by the supplied callback - ipa_sps_irq_tx_comp()
  1496. *
  1497. * ipa_sps_irq_tx_comp will call to the user supplied
  1498. * callback (from ipa_connect)
  1499. *
  1500. * Returns: 0 on success, negative on failure
  1501. */
  1502. int ipa_tx_dp(enum ipa_client_type dst, struct sk_buff *skb,
  1503. struct ipa_tx_meta *meta)
  1504. {
  1505. int ret;
  1506. IPA_API_DISPATCH_RETURN(ipa_tx_dp, dst, skb, meta);
  1507. return ret;
  1508. }
  1509. EXPORT_SYMBOL(ipa_tx_dp);
  1510. /**
  1511. * ipa_tx_dp_mul() - Data-path tx handler for multiple packets
  1512. * @src: [in] - Client that is sending data
  1513. * @ipa_tx_data_desc: [in] data descriptors from wlan
  1514. *
  1515. * this is used for to transfer data descriptors that received
  1516. * from WLAN1_PROD pipe to IPA HW
  1517. *
  1518. * The function will send data descriptors from WLAN1_PROD (one
  1519. * at a time) using sps_transfer_one. Will set EOT flag for last
  1520. * descriptor Once this send was done from SPS point-of-view the
  1521. * IPA driver will get notified by the supplied callback -
  1522. * ipa_sps_irq_tx_no_aggr_notify()
  1523. *
  1524. * ipa_sps_irq_tx_no_aggr_notify will call to the user supplied
  1525. * callback (from ipa_connect)
  1526. *
  1527. * Returns: 0 on success, negative on failure
  1528. */
  1529. int ipa_tx_dp_mul(enum ipa_client_type src,
  1530. struct ipa_tx_data_desc *data_desc)
  1531. {
  1532. int ret;
  1533. IPA_API_DISPATCH_RETURN(ipa_tx_dp_mul, src, data_desc);
  1534. return ret;
  1535. }
  1536. EXPORT_SYMBOL(ipa_tx_dp_mul);
  1537. void ipa_free_skb(struct ipa_rx_data *data)
  1538. {
  1539. IPA_API_DISPATCH(ipa_free_skb, data);
  1540. }
  1541. EXPORT_SYMBOL(ipa_free_skb);
  1542. /**
  1543. * ipa_setup_sys_pipe() - Setup an IPA end-point in system-BAM mode and perform
  1544. * IPA EP configuration
  1545. * @sys_in: [in] input needed to setup BAM pipe and configure EP
  1546. * @clnt_hdl: [out] client handle
  1547. *
  1548. * - configure the end-point registers with the supplied
  1549. * parameters from the user.
  1550. * - call SPS APIs to create a system-to-bam connection with IPA.
  1551. * - allocate descriptor FIFO
  1552. * - register callback function(ipa_sps_irq_rx_notify or
  1553. * ipa_sps_irq_tx_notify - depends on client type) in case the driver is
  1554. * not configured to pulling mode
  1555. *
  1556. * Returns: 0 on success, negative on failure
  1557. */
  1558. int ipa_setup_sys_pipe(struct ipa_sys_connect_params *sys_in, u32 *clnt_hdl)
  1559. {
  1560. int ret;
  1561. IPA_API_DISPATCH_RETURN(ipa_setup_sys_pipe, sys_in, clnt_hdl);
  1562. return ret;
  1563. }
  1564. EXPORT_SYMBOL(ipa_setup_sys_pipe);
  1565. /**
  1566. * ipa_teardown_sys_pipe() - Teardown the system-BAM pipe and cleanup IPA EP
  1567. * @clnt_hdl: [in] the handle obtained from ipa_setup_sys_pipe
  1568. *
  1569. * Returns: 0 on success, negative on failure
  1570. */
  1571. int ipa_teardown_sys_pipe(u32 clnt_hdl)
  1572. {
  1573. int ret;
  1574. IPA_API_DISPATCH_RETURN(ipa_teardown_sys_pipe, clnt_hdl);
  1575. return ret;
  1576. }
  1577. EXPORT_SYMBOL(ipa_teardown_sys_pipe);
  1578. int ipa_sys_setup(struct ipa_sys_connect_params *sys_in,
  1579. unsigned long *ipa_bam_or_gsi_hdl,
  1580. u32 *ipa_pipe_num, u32 *clnt_hdl, bool en_status)
  1581. {
  1582. int ret;
  1583. IPA_API_DISPATCH_RETURN(ipa_sys_setup, sys_in, ipa_bam_or_gsi_hdl,
  1584. ipa_pipe_num, clnt_hdl, en_status);
  1585. return ret;
  1586. }
  1587. EXPORT_SYMBOL(ipa_sys_setup);
  1588. int ipa_sys_teardown(u32 clnt_hdl)
  1589. {
  1590. int ret;
  1591. IPA_API_DISPATCH_RETURN(ipa_sys_teardown, clnt_hdl);
  1592. return ret;
  1593. }
  1594. EXPORT_SYMBOL(ipa_sys_teardown);
  1595. int ipa_sys_update_gsi_hdls(u32 clnt_hdl, unsigned long gsi_ch_hdl,
  1596. unsigned long gsi_ev_hdl)
  1597. {
  1598. int ret;
  1599. IPA_API_DISPATCH_RETURN(ipa_sys_update_gsi_hdls, clnt_hdl,
  1600. gsi_ch_hdl, gsi_ev_hdl);
  1601. return ret;
  1602. }
  1603. EXPORT_SYMBOL(ipa_sys_update_gsi_hdls);
  1604. /**
  1605. * ipa_connect_wdi_pipe() - WDI client connect
  1606. * @in: [in] input parameters from client
  1607. * @out: [out] output params to client
  1608. *
  1609. * Returns: 0 on success, negative on failure
  1610. *
  1611. * Note: Should not be called from atomic context
  1612. */
  1613. int ipa_connect_wdi_pipe(struct ipa_wdi_in_params *in,
  1614. struct ipa_wdi_out_params *out)
  1615. {
  1616. int ret;
  1617. IPA_API_DISPATCH_RETURN(ipa_connect_wdi_pipe, in, out);
  1618. return ret;
  1619. }
  1620. EXPORT_SYMBOL(ipa_connect_wdi_pipe);
  1621. /**
  1622. * ipa_disconnect_wdi_pipe() - WDI client disconnect
  1623. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  1624. *
  1625. * Returns: 0 on success, negative on failure
  1626. *
  1627. * Note: Should not be called from atomic context
  1628. */
  1629. int ipa_disconnect_wdi_pipe(u32 clnt_hdl)
  1630. {
  1631. int ret;
  1632. IPA_API_DISPATCH_RETURN(ipa_disconnect_wdi_pipe, clnt_hdl);
  1633. return ret;
  1634. }
  1635. EXPORT_SYMBOL(ipa_disconnect_wdi_pipe);
  1636. /**
  1637. * ipa_enable_wdi_pipe() - WDI client enable
  1638. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  1639. *
  1640. * Returns: 0 on success, negative on failure
  1641. *
  1642. * Note: Should not be called from atomic context
  1643. */
  1644. int ipa_enable_wdi_pipe(u32 clnt_hdl)
  1645. {
  1646. int ret;
  1647. IPA_API_DISPATCH_RETURN(ipa_enable_wdi_pipe, clnt_hdl);
  1648. return ret;
  1649. }
  1650. EXPORT_SYMBOL(ipa_enable_wdi_pipe);
  1651. /**
  1652. * ipa_disable_wdi_pipe() - WDI client disable
  1653. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  1654. *
  1655. * Returns: 0 on success, negative on failure
  1656. *
  1657. * Note: Should not be called from atomic context
  1658. */
  1659. int ipa_disable_wdi_pipe(u32 clnt_hdl)
  1660. {
  1661. int ret;
  1662. IPA_API_DISPATCH_RETURN(ipa_disable_wdi_pipe, clnt_hdl);
  1663. return ret;
  1664. }
  1665. EXPORT_SYMBOL(ipa_disable_wdi_pipe);
  1666. /**
  1667. * ipa_resume_wdi_pipe() - WDI client resume
  1668. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  1669. *
  1670. * Returns: 0 on success, negative on failure
  1671. *
  1672. * Note: Should not be called from atomic context
  1673. */
  1674. int ipa_resume_wdi_pipe(u32 clnt_hdl)
  1675. {
  1676. int ret;
  1677. IPA_API_DISPATCH_RETURN(ipa_resume_wdi_pipe, clnt_hdl);
  1678. return ret;
  1679. }
  1680. EXPORT_SYMBOL(ipa_resume_wdi_pipe);
  1681. /**
  1682. * ipa_suspend_wdi_pipe() - WDI client suspend
  1683. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  1684. *
  1685. * Returns: 0 on success, negative on failure
  1686. *
  1687. * Note: Should not be called from atomic context
  1688. */
  1689. int ipa_suspend_wdi_pipe(u32 clnt_hdl)
  1690. {
  1691. int ret;
  1692. IPA_API_DISPATCH_RETURN(ipa_suspend_wdi_pipe, clnt_hdl);
  1693. return ret;
  1694. }
  1695. EXPORT_SYMBOL(ipa_suspend_wdi_pipe);
  1696. /**
  1697. * ipa_get_wdi_stats() - Query WDI statistics from uc
  1698. * @stats: [inout] stats blob from client populated by driver
  1699. *
  1700. * Returns: 0 on success, negative on failure
  1701. *
  1702. * @note Cannot be called from atomic context
  1703. *
  1704. */
  1705. int ipa_get_wdi_stats(struct IpaHwStatsWDIInfoData_t *stats)
  1706. {
  1707. int ret;
  1708. IPA_API_DISPATCH_RETURN(ipa_get_wdi_stats, stats);
  1709. return ret;
  1710. }
  1711. EXPORT_SYMBOL(ipa_get_wdi_stats);
  1712. /**
  1713. * ipa_get_smem_restr_bytes()- Return IPA smem restricted bytes
  1714. *
  1715. * Return value: u16 - number of IPA smem restricted bytes
  1716. */
  1717. u16 ipa_get_smem_restr_bytes(void)
  1718. {
  1719. int ret;
  1720. IPA_API_DISPATCH_RETURN(ipa_get_smem_restr_bytes);
  1721. return ret;
  1722. }
  1723. EXPORT_SYMBOL(ipa_get_smem_restr_bytes);
  1724. /**
  1725. * ipa_broadcast_wdi_quota_reach_ind() - quota reach
  1726. * @uint32_t fid: [in] input netdev ID
  1727. * @uint64_t num_bytes: [in] used bytes
  1728. *
  1729. * Returns: 0 on success, negative on failure
  1730. */
  1731. int ipa_broadcast_wdi_quota_reach_ind(uint32_t fid,
  1732. uint64_t num_bytes)
  1733. {
  1734. int ret;
  1735. IPA_API_DISPATCH_RETURN(ipa_broadcast_wdi_quota_reach_ind,
  1736. fid, num_bytes);
  1737. return ret;
  1738. }
  1739. EXPORT_SYMBOL(ipa_broadcast_wdi_quota_reach_ind);
  1740. /**
  1741. * ipa_uc_wdi_get_dbpa() - To retrieve
  1742. * doorbell physical address of wlan pipes
  1743. * @param: [in/out] input/output parameters
  1744. * from/to client
  1745. *
  1746. * Returns: 0 on success, negative on failure
  1747. *
  1748. */
  1749. int ipa_uc_wdi_get_dbpa(
  1750. struct ipa_wdi_db_params *param)
  1751. {
  1752. int ret;
  1753. IPA_API_DISPATCH_RETURN(ipa_uc_wdi_get_dbpa, param);
  1754. return ret;
  1755. }
  1756. EXPORT_SYMBOL(ipa_uc_wdi_get_dbpa);
  1757. /**
  1758. * ipa_uc_reg_rdyCB() - To register uC
  1759. * ready CB if uC not ready, wdi only.
  1760. * @inout: [in/out] input/output parameters
  1761. * from/to client
  1762. *
  1763. * Returns: 0 on success, negative on failure
  1764. *
  1765. */
  1766. int ipa_uc_reg_rdyCB(
  1767. struct ipa_wdi_uc_ready_params *inout)
  1768. {
  1769. int ret;
  1770. IPA_API_DISPATCH_RETURN(ipa_uc_reg_rdyCB, inout);
  1771. return ret;
  1772. }
  1773. EXPORT_SYMBOL(ipa_uc_reg_rdyCB);
  1774. /**
  1775. * ipa_wigig_uc_init() - get uc db and register uC
  1776. * ready CB if uC not ready, wigig only.
  1777. * @inout: [in/out] uc ready input/output parameters
  1778. * from/to client
  1779. * @int_notify: [in] wigig misc interrupt handler function
  1780. *
  1781. * Returns: 0 on success, negative on failure
  1782. *
  1783. */
  1784. int ipa_wigig_uc_init(
  1785. struct ipa_wdi_uc_ready_params *inout,
  1786. ipa_wigig_misc_int_cb int_notify,
  1787. phys_addr_t *uc_db_pa)
  1788. {
  1789. int ret;
  1790. IPA_API_DISPATCH_RETURN(ipa_wigig_uc_init, inout,
  1791. int_notify, uc_db_pa);
  1792. return ret;
  1793. }
  1794. EXPORT_SYMBOL(ipa_wigig_uc_init);
  1795. /**
  1796. * ipa_uc_dereg_rdyCB() - To de-register uC ready CB
  1797. *
  1798. * Returns: 0 on success, negative on failure
  1799. *
  1800. */
  1801. int ipa_uc_dereg_rdyCB(void)
  1802. {
  1803. int ret;
  1804. IPA_API_DISPATCH_RETURN(ipa_uc_dereg_rdyCB);
  1805. return ret;
  1806. }
  1807. EXPORT_SYMBOL(ipa_uc_dereg_rdyCB);
  1808. /**
  1809. * teth_bridge_init() - Initialize the Tethering bridge driver
  1810. * @params - in/out params for USB initialization API (please look at struct
  1811. * definition for more info)
  1812. *
  1813. * USB driver gets a pointer to a callback function (usb_notify_cb) and an
  1814. * associated data. USB driver installs this callback function in the call to
  1815. * ipa_connect().
  1816. *
  1817. * Builds IPA resource manager dependency graph.
  1818. *
  1819. * Return codes: 0: success,
  1820. * -EINVAL - Bad parameter
  1821. * Other negative value - Failure
  1822. */
  1823. int teth_bridge_init(struct teth_bridge_init_params *params)
  1824. {
  1825. int ret;
  1826. IPA_API_DISPATCH_RETURN(teth_bridge_init, params);
  1827. return ret;
  1828. }
  1829. EXPORT_SYMBOL(teth_bridge_init);
  1830. /**
  1831. * teth_bridge_disconnect() - Disconnect tethering bridge module
  1832. */
  1833. int teth_bridge_disconnect(enum ipa_client_type client)
  1834. {
  1835. int ret;
  1836. IPA_API_DISPATCH_RETURN(teth_bridge_disconnect, client);
  1837. return ret;
  1838. }
  1839. EXPORT_SYMBOL(teth_bridge_disconnect);
  1840. /**
  1841. * teth_bridge_connect() - Connect bridge for a tethered Rmnet / MBIM call
  1842. * @connect_params: Connection info
  1843. *
  1844. * Return codes: 0: success
  1845. * -EINVAL: invalid parameters
  1846. * -EPERM: Operation not permitted as the bridge is already
  1847. * connected
  1848. */
  1849. int teth_bridge_connect(struct teth_bridge_connect_params *connect_params)
  1850. {
  1851. int ret;
  1852. IPA_API_DISPATCH_RETURN(teth_bridge_connect, connect_params);
  1853. return ret;
  1854. }
  1855. EXPORT_SYMBOL(teth_bridge_connect);
  1856. /* ipa_set_client() - provide client mapping
  1857. * @client: client type
  1858. *
  1859. * Return value: none
  1860. */
  1861. void ipa_set_client(int index, enum ipacm_client_enum client, bool uplink)
  1862. {
  1863. IPA_API_DISPATCH(ipa_set_client, index, client, uplink);
  1864. }
  1865. EXPORT_SYMBOL(ipa_set_client);
  1866. /**
  1867. * ipa_get_client() - provide client mapping
  1868. * @client: client type
  1869. *
  1870. * Return value: none
  1871. */
  1872. enum ipacm_client_enum ipa_get_client(int pipe_idx)
  1873. {
  1874. int ret;
  1875. IPA_API_DISPATCH_RETURN(ipa_get_client, pipe_idx);
  1876. return ret;
  1877. }
  1878. EXPORT_SYMBOL(ipa_get_client);
  1879. /**
  1880. * ipa_get_client_uplink() - provide client mapping
  1881. * @client: client type
  1882. *
  1883. * Return value: none
  1884. */
  1885. bool ipa_get_client_uplink(int pipe_idx)
  1886. {
  1887. int ret;
  1888. IPA_API_DISPATCH_RETURN(ipa_get_client_uplink, pipe_idx);
  1889. return ret;
  1890. }
  1891. EXPORT_SYMBOL(ipa_get_client_uplink);
  1892. /**
  1893. * ipa_dma_init() -Initialize IPADMA.
  1894. *
  1895. * This function initialize all IPADMA internal data and connect in dma:
  1896. * MEMCPY_DMA_SYNC_PROD ->MEMCPY_DMA_SYNC_CONS
  1897. * MEMCPY_DMA_ASYNC_PROD->MEMCPY_DMA_SYNC_CONS
  1898. *
  1899. * Return codes: 0: success
  1900. * -EFAULT: IPADMA is already initialized
  1901. * -ENOMEM: allocating memory error
  1902. * -EPERM: pipe connection failed
  1903. */
  1904. int ipa_dma_init(void)
  1905. {
  1906. int ret;
  1907. IPA_API_DISPATCH_RETURN(ipa_dma_init);
  1908. return ret;
  1909. }
  1910. EXPORT_SYMBOL(ipa_dma_init);
  1911. /**
  1912. * ipa_dma_enable() -Vote for IPA clocks.
  1913. *
  1914. *Return codes: 0: success
  1915. * -EINVAL: IPADMA is not initialized
  1916. * -EPERM: Operation not permitted as ipa_dma is already
  1917. * enabled
  1918. */
  1919. int ipa_dma_enable(void)
  1920. {
  1921. int ret;
  1922. IPA_API_DISPATCH_RETURN(ipa_dma_enable);
  1923. return ret;
  1924. }
  1925. EXPORT_SYMBOL(ipa_dma_enable);
  1926. /**
  1927. * ipa_dma_disable()- Unvote for IPA clocks.
  1928. *
  1929. * enter to power save mode.
  1930. *
  1931. * Return codes: 0: success
  1932. * -EINVAL: IPADMA is not initialized
  1933. * -EPERM: Operation not permitted as ipa_dma is already
  1934. * diabled
  1935. * -EFAULT: can not disable ipa_dma as there are pending
  1936. * memcopy works
  1937. */
  1938. int ipa_dma_disable(void)
  1939. {
  1940. int ret;
  1941. IPA_API_DISPATCH_RETURN(ipa_dma_disable);
  1942. return ret;
  1943. }
  1944. EXPORT_SYMBOL(ipa_dma_disable);
  1945. /**
  1946. * ipa_dma_sync_memcpy()- Perform synchronous memcpy using IPA.
  1947. *
  1948. * @dest: physical address to store the copied data.
  1949. * @src: physical address of the source data to copy.
  1950. * @len: number of bytes to copy.
  1951. *
  1952. * Return codes: 0: success
  1953. * -EINVAL: invalid params
  1954. * -EPERM: operation not permitted as ipa_dma isn't enable or
  1955. * initialized
  1956. * -SPS_ERROR: on sps faliures
  1957. * -EFAULT: other
  1958. */
  1959. int ipa_dma_sync_memcpy(u64 dest, u64 src, int len)
  1960. {
  1961. int ret;
  1962. IPA_API_DISPATCH_RETURN(ipa_dma_sync_memcpy, dest, src, len);
  1963. return ret;
  1964. }
  1965. EXPORT_SYMBOL(ipa_dma_sync_memcpy);
  1966. /**
  1967. * ipa_dma_async_memcpy()- Perform asynchronous memcpy using IPA.
  1968. *
  1969. * @dest: physical address to store the copied data.
  1970. * @src: physical address of the source data to copy.
  1971. * @len: number of bytes to copy.
  1972. * @user_cb: callback function to notify the client when the copy was done.
  1973. * @user_param: cookie for user_cb.
  1974. *
  1975. * Return codes: 0: success
  1976. * -EINVAL: invalid params
  1977. * -EPERM: operation not permitted as ipa_dma isn't enable or
  1978. * initialized
  1979. * -SPS_ERROR: on sps faliures
  1980. * -EFAULT: descr fifo is full.
  1981. */
  1982. int ipa_dma_async_memcpy(u64 dest, u64 src, int len,
  1983. void (*user_cb)(void *user1), void *user_param)
  1984. {
  1985. int ret;
  1986. IPA_API_DISPATCH_RETURN(ipa_dma_async_memcpy, dest, src, len, user_cb,
  1987. user_param);
  1988. return ret;
  1989. }
  1990. EXPORT_SYMBOL(ipa_dma_async_memcpy);
  1991. /**
  1992. * ipa_dma_uc_memcpy() - Perform a memcpy action using IPA uC
  1993. * @dest: physical address to store the copied data.
  1994. * @src: physical address of the source data to copy.
  1995. * @len: number of bytes to copy.
  1996. *
  1997. * Return codes: 0: success
  1998. * -EINVAL: invalid params
  1999. * -EPERM: operation not permitted as ipa_dma isn't enable or
  2000. * initialized
  2001. * -EBADF: IPA uC is not loaded
  2002. */
  2003. int ipa_dma_uc_memcpy(phys_addr_t dest, phys_addr_t src, int len)
  2004. {
  2005. int ret;
  2006. IPA_API_DISPATCH_RETURN(ipa_dma_uc_memcpy, dest, src, len);
  2007. return ret;
  2008. }
  2009. EXPORT_SYMBOL(ipa_dma_uc_memcpy);
  2010. /**
  2011. * ipa_dma_destroy() -teardown IPADMA pipes and release ipadma.
  2012. *
  2013. * this is a blocking function, returns just after destroying IPADMA.
  2014. */
  2015. void ipa_dma_destroy(void)
  2016. {
  2017. IPA_API_DISPATCH(ipa_dma_destroy);
  2018. }
  2019. EXPORT_SYMBOL(ipa_dma_destroy);
  2020. int ipa_mhi_init_engine(struct ipa_mhi_init_engine *params)
  2021. {
  2022. int ret;
  2023. IPA_API_DISPATCH_RETURN(ipa_mhi_init_engine, params);
  2024. return ret;
  2025. }
  2026. EXPORT_SYMBOL(ipa_mhi_init_engine);
  2027. /**
  2028. * ipa_connect_mhi_pipe() - Connect pipe to IPA and start corresponding
  2029. * MHI channel
  2030. * @in: connect parameters
  2031. * @clnt_hdl: [out] client handle for this pipe
  2032. *
  2033. * This function is called by IPA MHI client driver on MHI channel start.
  2034. * This function is called after MHI engine was started.
  2035. * This function is doing the following:
  2036. * - Send command to uC to start corresponding MHI channel
  2037. * - Configure IPA EP control
  2038. *
  2039. * Return codes: 0 : success
  2040. * negative : error
  2041. */
  2042. int ipa_connect_mhi_pipe(struct ipa_mhi_connect_params_internal *in,
  2043. u32 *clnt_hdl)
  2044. {
  2045. int ret;
  2046. IPA_API_DISPATCH_RETURN(ipa_connect_mhi_pipe, in, clnt_hdl);
  2047. return ret;
  2048. }
  2049. EXPORT_SYMBOL(ipa_connect_mhi_pipe);
  2050. /**
  2051. * ipa_disconnect_mhi_pipe() - Disconnect pipe from IPA and reset corresponding
  2052. * MHI channel
  2053. * @in: connect parameters
  2054. * @clnt_hdl: [out] client handle for this pipe
  2055. *
  2056. * This function is called by IPA MHI client driver on MHI channel reset.
  2057. * This function is called after MHI channel was started.
  2058. * This function is doing the following:
  2059. * - Send command to uC to reset corresponding MHI channel
  2060. * - Configure IPA EP control
  2061. *
  2062. * Return codes: 0 : success
  2063. * negative : error
  2064. */
  2065. int ipa_disconnect_mhi_pipe(u32 clnt_hdl)
  2066. {
  2067. int ret;
  2068. IPA_API_DISPATCH_RETURN(ipa_disconnect_mhi_pipe, clnt_hdl);
  2069. return ret;
  2070. }
  2071. EXPORT_SYMBOL(ipa_disconnect_mhi_pipe);
  2072. bool ipa_mhi_stop_gsi_channel(enum ipa_client_type client)
  2073. {
  2074. bool ret;
  2075. IPA_API_DISPATCH_RETURN_BOOL(ipa_mhi_stop_gsi_channel, client);
  2076. return ret;
  2077. }
  2078. int ipa_uc_mhi_reset_channel(int channelHandle)
  2079. {
  2080. int ret;
  2081. IPA_API_DISPATCH_RETURN(ipa_uc_mhi_reset_channel, channelHandle);
  2082. return ret;
  2083. }
  2084. bool ipa_mhi_sps_channel_empty(enum ipa_client_type client)
  2085. {
  2086. bool ret;
  2087. IPA_API_DISPATCH_RETURN_BOOL(ipa_mhi_sps_channel_empty, client);
  2088. return ret;
  2089. }
  2090. int ipa_qmi_enable_force_clear_datapath_send(
  2091. struct ipa_enable_force_clear_datapath_req_msg_v01 *req)
  2092. {
  2093. int ret;
  2094. IPA_API_DISPATCH_RETURN(ipa_qmi_enable_force_clear_datapath_send, req);
  2095. return ret;
  2096. }
  2097. int ipa_qmi_disable_force_clear_datapath_send(
  2098. struct ipa_disable_force_clear_datapath_req_msg_v01 *req)
  2099. {
  2100. int ret;
  2101. IPA_API_DISPATCH_RETURN(ipa_qmi_disable_force_clear_datapath_send, req);
  2102. return ret;
  2103. }
  2104. int ipa_generate_tag_process(void)
  2105. {
  2106. int ret;
  2107. IPA_API_DISPATCH_RETURN(ipa_generate_tag_process);
  2108. return ret;
  2109. }
  2110. int ipa_disable_sps_pipe(enum ipa_client_type client)
  2111. {
  2112. int ret;
  2113. IPA_API_DISPATCH_RETURN(ipa_disable_sps_pipe, client);
  2114. return ret;
  2115. }
  2116. int ipa_mhi_reset_channel_internal(enum ipa_client_type client)
  2117. {
  2118. int ret;
  2119. IPA_API_DISPATCH_RETURN(ipa_mhi_reset_channel_internal, client);
  2120. return ret;
  2121. }
  2122. int ipa_mhi_start_channel_internal(enum ipa_client_type client)
  2123. {
  2124. int ret;
  2125. IPA_API_DISPATCH_RETURN(ipa_mhi_start_channel_internal, client);
  2126. return ret;
  2127. }
  2128. void ipa_get_holb(int ep_idx, struct ipa_ep_cfg_holb *holb)
  2129. {
  2130. IPA_API_DISPATCH(ipa_get_holb, ep_idx, holb);
  2131. }
  2132. void ipa_set_tag_process_before_gating(bool val)
  2133. {
  2134. IPA_API_DISPATCH(ipa_set_tag_process_before_gating, val);
  2135. }
  2136. int ipa_mhi_query_ch_info(enum ipa_client_type client,
  2137. struct gsi_chan_info *ch_info)
  2138. {
  2139. int ret;
  2140. IPA_API_DISPATCH_RETURN(ipa_mhi_query_ch_info, client, ch_info);
  2141. return ret;
  2142. }
  2143. int ipa_uc_mhi_suspend_channel(int channelHandle)
  2144. {
  2145. int ret;
  2146. IPA_API_DISPATCH_RETURN(ipa_uc_mhi_suspend_channel, channelHandle);
  2147. return ret;
  2148. }
  2149. int ipa_uc_mhi_stop_event_update_channel(int channelHandle)
  2150. {
  2151. int ret;
  2152. IPA_API_DISPATCH_RETURN(ipa_uc_mhi_stop_event_update_channel,
  2153. channelHandle);
  2154. return ret;
  2155. }
  2156. bool ipa_has_open_aggr_frame(enum ipa_client_type client)
  2157. {
  2158. bool ret;
  2159. IPA_API_DISPATCH_RETURN_BOOL(ipa_has_open_aggr_frame, client);
  2160. return ret;
  2161. }
  2162. int ipa_mhi_resume_channels_internal(enum ipa_client_type client,
  2163. bool LPTransitionRejected, bool brstmode_enabled,
  2164. union __packed gsi_channel_scratch ch_scratch, u8 index)
  2165. {
  2166. int ret;
  2167. IPA_API_DISPATCH_RETURN(ipa_mhi_resume_channels_internal, client,
  2168. LPTransitionRejected, brstmode_enabled, ch_scratch,
  2169. index);
  2170. return ret;
  2171. }
  2172. int ipa_uc_mhi_send_dl_ul_sync_info(union IpaHwMhiDlUlSyncCmdData_t *cmd)
  2173. {
  2174. int ret;
  2175. IPA_API_DISPATCH_RETURN(ipa_uc_mhi_send_dl_ul_sync_info,
  2176. cmd);
  2177. return ret;
  2178. }
  2179. int ipa_mhi_destroy_channel(enum ipa_client_type client)
  2180. {
  2181. int ret;
  2182. IPA_API_DISPATCH_RETURN(ipa_mhi_destroy_channel, client);
  2183. return ret;
  2184. }
  2185. int ipa_uc_mhi_init(void (*ready_cb)(void),
  2186. void (*wakeup_request_cb)(void))
  2187. {
  2188. int ret;
  2189. IPA_API_DISPATCH_RETURN(ipa_uc_mhi_init, ready_cb, wakeup_request_cb);
  2190. return ret;
  2191. }
  2192. void ipa_uc_mhi_cleanup(void)
  2193. {
  2194. IPA_API_DISPATCH(ipa_uc_mhi_cleanup);
  2195. }
  2196. int ipa_uc_mhi_print_stats(char *dbg_buff, int size)
  2197. {
  2198. int ret;
  2199. IPA_API_DISPATCH_RETURN(ipa_uc_mhi_print_stats, dbg_buff, size);
  2200. return ret;
  2201. }
  2202. /**
  2203. * ipa_uc_state_check() - Check the status of the uC interface
  2204. *
  2205. * Return value: 0 if the uC is loaded, interface is initialized
  2206. * and there was no recent failure in one of the commands.
  2207. * A negative value is returned otherwise.
  2208. */
  2209. int ipa_uc_state_check(void)
  2210. {
  2211. int ret;
  2212. IPA_API_DISPATCH_RETURN(ipa_uc_state_check);
  2213. return ret;
  2214. }
  2215. int ipa_write_qmap_id(struct ipa_ioc_write_qmapid *param_in)
  2216. {
  2217. int ret;
  2218. IPA_API_DISPATCH_RETURN(ipa_write_qmap_id, param_in);
  2219. return ret;
  2220. }
  2221. EXPORT_SYMBOL(ipa_write_qmap_id);
  2222. /**
  2223. * ipa_add_interrupt_handler() - Adds handler to an interrupt type
  2224. * @interrupt: Interrupt type
  2225. * @handler: The handler to be added
  2226. * @deferred_flag: whether the handler processing should be deferred in
  2227. * a workqueue
  2228. * @private_data: the client's private data
  2229. *
  2230. * Adds handler to an interrupt type and enable the specific bit
  2231. * in IRQ_EN register, associated interrupt in IRQ_STTS register will be enabled
  2232. */
  2233. int ipa_add_interrupt_handler(enum ipa_irq_type interrupt,
  2234. ipa_irq_handler_t handler,
  2235. bool deferred_flag,
  2236. void *private_data)
  2237. {
  2238. int ret;
  2239. IPA_API_DISPATCH_RETURN(ipa_add_interrupt_handler, interrupt, handler,
  2240. deferred_flag, private_data);
  2241. return ret;
  2242. }
  2243. EXPORT_SYMBOL(ipa_add_interrupt_handler);
  2244. /**
  2245. * ipa_remove_interrupt_handler() - Removes handler to an interrupt type
  2246. * @interrupt: Interrupt type
  2247. *
  2248. * Removes the handler and disable the specific bit in IRQ_EN register
  2249. */
  2250. int ipa_remove_interrupt_handler(enum ipa_irq_type interrupt)
  2251. {
  2252. int ret;
  2253. IPA_API_DISPATCH_RETURN(ipa_remove_interrupt_handler, interrupt);
  2254. return ret;
  2255. }
  2256. EXPORT_SYMBOL(ipa_remove_interrupt_handler);
  2257. /**
  2258. * ipa_restore_suspend_handler() - restores the original suspend IRQ handler
  2259. * as it was registered in the IPA init sequence.
  2260. * Return codes:
  2261. * 0: success
  2262. * -EPERM: failed to remove current handler or failed to add original handler
  2263. */
  2264. int ipa_restore_suspend_handler(void)
  2265. {
  2266. int ret;
  2267. IPA_API_DISPATCH_RETURN(ipa_restore_suspend_handler);
  2268. return ret;
  2269. }
  2270. EXPORT_SYMBOL(ipa_restore_suspend_handler);
  2271. /**
  2272. * ipa_bam_reg_dump() - Dump selected BAM registers for IPA and DMA-BAM
  2273. *
  2274. * Function is rate limited to avoid flooding kernel log buffer
  2275. */
  2276. void ipa_bam_reg_dump(void)
  2277. {
  2278. IPA_API_DISPATCH(ipa_bam_reg_dump);
  2279. }
  2280. EXPORT_SYMBOL(ipa_bam_reg_dump);
  2281. /**
  2282. * ipa_get_ep_mapping() - provide endpoint mapping
  2283. * @client: client type
  2284. *
  2285. * Return value: endpoint mapping
  2286. */
  2287. int ipa_get_ep_mapping(enum ipa_client_type client)
  2288. {
  2289. int ret;
  2290. IPA_API_DISPATCH_RETURN(ipa_get_ep_mapping, client);
  2291. return ret;
  2292. }
  2293. EXPORT_SYMBOL(ipa_get_ep_mapping);
  2294. /**
  2295. * ipa_is_ready() - check if IPA module was initialized
  2296. * successfully
  2297. *
  2298. * Return value: true for yes; false for no
  2299. */
  2300. bool ipa_is_ready(void)
  2301. {
  2302. if (!ipa_api_ctrl || !ipa_api_ctrl->ipa_is_ready)
  2303. return false;
  2304. return ipa_api_ctrl->ipa_is_ready();
  2305. }
  2306. EXPORT_SYMBOL(ipa_is_ready);
  2307. /**
  2308. * ipa_proxy_clk_vote() - called to add IPA clock proxy vote
  2309. *
  2310. * Return value: none
  2311. */
  2312. void ipa_proxy_clk_vote(void)
  2313. {
  2314. IPA_API_DISPATCH(ipa_proxy_clk_vote);
  2315. }
  2316. EXPORT_SYMBOL(ipa_proxy_clk_vote);
  2317. /**
  2318. * ipa_proxy_clk_unvote() - called to remove IPA clock proxy vote
  2319. *
  2320. * Return value: none
  2321. */
  2322. void ipa_proxy_clk_unvote(void)
  2323. {
  2324. IPA_API_DISPATCH(ipa_proxy_clk_unvote);
  2325. }
  2326. EXPORT_SYMBOL(ipa_proxy_clk_unvote);
  2327. /**
  2328. * ipa_get_hw_type() - Return IPA HW version
  2329. *
  2330. * Return value: enum ipa_hw_type
  2331. */
  2332. enum ipa_hw_type ipa_get_hw_type(void)
  2333. {
  2334. return ipa_api_hw_type;
  2335. }
  2336. EXPORT_SYMBOL(ipa_get_hw_type);
  2337. /**
  2338. * ipa_is_client_handle_valid() - check if IPA client handle is valid handle
  2339. *
  2340. * Return value: true for yes; false for no
  2341. */
  2342. bool ipa_is_client_handle_valid(u32 clnt_hdl)
  2343. {
  2344. if (!ipa_api_ctrl || !ipa_api_ctrl->ipa_is_client_handle_valid)
  2345. return false;
  2346. return ipa_api_ctrl->ipa_is_client_handle_valid(clnt_hdl);
  2347. }
  2348. EXPORT_SYMBOL(ipa_is_client_handle_valid);
  2349. /**
  2350. * ipa_get_client_mapping() - provide client mapping
  2351. * @pipe_idx: IPA end-point number
  2352. *
  2353. * Return value: client mapping
  2354. */
  2355. enum ipa_client_type ipa_get_client_mapping(int pipe_idx)
  2356. {
  2357. int ret;
  2358. IPA_API_DISPATCH_RETURN(ipa_get_client_mapping, pipe_idx);
  2359. return ret;
  2360. }
  2361. EXPORT_SYMBOL(ipa_get_client_mapping);
  2362. /**
  2363. * ipa_get_rm_resource_from_ep() - this function is part of the deprecated
  2364. * RM mechanism but is still used by some drivers so we kept the definition.
  2365. */
  2366. enum ipa_rm_resource_name ipa_get_rm_resource_from_ep(int pipe_idx)
  2367. {
  2368. IPAERR("IPA RM is not supported idx=%d\n", pipe_idx);
  2369. return -EFAULT;
  2370. }
  2371. EXPORT_SYMBOL(ipa_get_rm_resource_from_ep);
  2372. /**
  2373. * ipa_get_modem_cfg_emb_pipe_flt()- Return ipa_ctx->modem_cfg_emb_pipe_flt
  2374. *
  2375. * Return value: true if modem configures embedded pipe flt, false otherwise
  2376. */
  2377. bool ipa_get_modem_cfg_emb_pipe_flt(void)
  2378. {
  2379. if (!ipa_api_ctrl || !ipa_api_ctrl->ipa_get_modem_cfg_emb_pipe_flt)
  2380. return false;
  2381. return ipa_api_ctrl->ipa_get_modem_cfg_emb_pipe_flt();
  2382. }
  2383. EXPORT_SYMBOL(ipa_get_modem_cfg_emb_pipe_flt);
  2384. /**
  2385. * ipa_get_transport_type()- Return ipa_ctx->transport_prototype
  2386. *
  2387. * Return value: enum ipa_transport_type
  2388. */
  2389. enum ipa_transport_type ipa_get_transport_type(void)
  2390. {
  2391. int ret;
  2392. IPA_API_DISPATCH_RETURN(ipa_get_transport_type);
  2393. return ret;
  2394. }
  2395. EXPORT_SYMBOL(ipa_get_transport_type);
  2396. /**
  2397. * ipa_get_smmu_domain()- Return the smmu domain
  2398. *
  2399. * Return value: pointer to iommu domain if smmu_cb valid, NULL otherwise
  2400. */
  2401. struct iommu_domain *ipa_get_smmu_domain(void)
  2402. {
  2403. struct iommu_domain *ret;
  2404. IPA_API_DISPATCH_RETURN_PTR(ipa_get_smmu_domain);
  2405. return ret;
  2406. }
  2407. EXPORT_SYMBOL(ipa_get_smmu_domain);
  2408. /**
  2409. * ipa_disable_apps_wan_cons_deaggr()- set
  2410. * ipa_ctx->ipa_client_apps_wan_cons_agg_gro
  2411. *
  2412. * Return value: 0 or negative in case of failure
  2413. */
  2414. int ipa_disable_apps_wan_cons_deaggr(uint32_t agg_size, uint32_t agg_count)
  2415. {
  2416. int ret;
  2417. IPA_API_DISPATCH_RETURN(ipa_disable_apps_wan_cons_deaggr, agg_size,
  2418. agg_count);
  2419. return ret;
  2420. }
  2421. EXPORT_SYMBOL(ipa_disable_apps_wan_cons_deaggr);
  2422. /**
  2423. * ipa_get_dma_dev()- Returns ipa_ctx dma dev pointer
  2424. *
  2425. * Return value: pointer to ipa_ctx dma dev pointer
  2426. */
  2427. struct device *ipa_get_dma_dev(void)
  2428. {
  2429. struct device *ret;
  2430. IPA_API_DISPATCH_RETURN_PTR(ipa_get_dma_dev);
  2431. return ret;
  2432. }
  2433. EXPORT_SYMBOL(ipa_get_dma_dev);
  2434. /**
  2435. * ipa_release_wdi_mapping() - release iommu mapping
  2436. *
  2437. *
  2438. * @num_buffers: number of buffers to be released
  2439. *
  2440. * @info: pointer to wdi buffers info array
  2441. *
  2442. * Return codes: 0 : success
  2443. * negative : error
  2444. */
  2445. int ipa_release_wdi_mapping(u32 num_buffers, struct ipa_wdi_buffer_info *info)
  2446. {
  2447. int ret;
  2448. IPA_API_DISPATCH_RETURN(ipa_release_wdi_mapping, num_buffers, info);
  2449. return ret;
  2450. }
  2451. EXPORT_SYMBOL(ipa_release_wdi_mapping);
  2452. /**
  2453. * ipa_create_wdi_mapping() - Perform iommu mapping
  2454. *
  2455. *
  2456. * @num_buffers: number of buffers to be mapped
  2457. *
  2458. * @info: pointer to wdi buffers info array
  2459. *
  2460. * Return codes: 0 : success
  2461. * negative : error
  2462. */
  2463. int ipa_create_wdi_mapping(u32 num_buffers, struct ipa_wdi_buffer_info *info)
  2464. {
  2465. int ret;
  2466. IPA_API_DISPATCH_RETURN(ipa_create_wdi_mapping, num_buffers, info);
  2467. return ret;
  2468. }
  2469. EXPORT_SYMBOL(ipa_create_wdi_mapping);
  2470. /**
  2471. * ipa_get_gsi_ep_info() - provide gsi ep information
  2472. * @client: IPA client type
  2473. *
  2474. * Return value: pointer to ipa_gsi_ep_info
  2475. */
  2476. const struct ipa_gsi_ep_config *ipa_get_gsi_ep_info(enum ipa_client_type client)
  2477. {
  2478. if (!ipa_api_ctrl || !ipa_api_ctrl->ipa_get_gsi_ep_info)
  2479. return NULL;
  2480. return ipa_api_ctrl->ipa_get_gsi_ep_info(client);
  2481. }
  2482. EXPORT_SYMBOL(ipa_get_gsi_ep_info);
  2483. /**
  2484. * ipa_stop_gsi_channel()- Stops a GSI channel in IPA
  2485. *
  2486. * Return value: 0 on success, negative otherwise
  2487. */
  2488. int ipa_stop_gsi_channel(u32 clnt_hdl)
  2489. {
  2490. int ret;
  2491. IPA_API_DISPATCH_RETURN(ipa_stop_gsi_channel, clnt_hdl);
  2492. return ret;
  2493. }
  2494. EXPORT_SYMBOL(ipa_stop_gsi_channel);
  2495. /**
  2496. * ipa_start_gsi_channel()- Startsa GSI channel in IPA
  2497. *
  2498. * Return value: 0 on success, negative otherwise
  2499. */
  2500. int ipa_start_gsi_channel(u32 clnt_hdl)
  2501. {
  2502. int ret;
  2503. IPA_API_DISPATCH_RETURN(ipa_start_gsi_channel, clnt_hdl);
  2504. return ret;
  2505. }
  2506. EXPORT_SYMBOL(ipa_start_gsi_channel);
  2507. /**
  2508. * ipa_is_vlan_mode - check if a LAN driver should load in VLAN mode
  2509. * @iface - type of vlan capable device
  2510. * @res - query result: true for vlan mode, false for non vlan mode
  2511. *
  2512. * API must be called after ipa_is_ready() returns true, otherwise it will fail
  2513. *
  2514. * Returns: 0 on success, negative on failure
  2515. */
  2516. int ipa_is_vlan_mode(enum ipa_vlan_ifaces iface, bool *res)
  2517. {
  2518. int ret;
  2519. IPA_API_DISPATCH_RETURN(ipa_is_vlan_mode, iface, res);
  2520. return ret;
  2521. }
  2522. EXPORT_SYMBOL(ipa_is_vlan_mode);
  2523. /**
  2524. * ipa_get_version_string() - Get string representation of IPA version
  2525. * @ver: IPA version
  2526. *
  2527. * Return: Constant string representation
  2528. */
  2529. const char *ipa_get_version_string(enum ipa_hw_type ver)
  2530. {
  2531. const char *str;
  2532. switch (ver) {
  2533. case IPA_HW_v1_0:
  2534. str = "1.0";
  2535. break;
  2536. case IPA_HW_v1_1:
  2537. str = "1.1";
  2538. break;
  2539. case IPA_HW_v2_0:
  2540. str = "2.0";
  2541. break;
  2542. case IPA_HW_v2_1:
  2543. str = "2.1";
  2544. break;
  2545. case IPA_HW_v2_5:
  2546. str = "2.5/2.6";
  2547. break;
  2548. case IPA_HW_v2_6L:
  2549. str = "2.6L";
  2550. break;
  2551. case IPA_HW_v3_0:
  2552. str = "3.0";
  2553. break;
  2554. case IPA_HW_v3_1:
  2555. str = "3.1";
  2556. break;
  2557. case IPA_HW_v3_5:
  2558. str = "3.5";
  2559. break;
  2560. case IPA_HW_v3_5_1:
  2561. str = "3.5.1";
  2562. break;
  2563. case IPA_HW_v4_0:
  2564. str = "4.0";
  2565. break;
  2566. case IPA_HW_v4_1:
  2567. str = "4.1";
  2568. break;
  2569. case IPA_HW_v4_2:
  2570. str = "4.2";
  2571. break;
  2572. case IPA_HW_v4_5:
  2573. str = "4.5";
  2574. break;
  2575. case IPA_HW_v4_7:
  2576. str = "4.7";
  2577. break;
  2578. default:
  2579. str = "Invalid version";
  2580. break;
  2581. }
  2582. return str;
  2583. }
  2584. EXPORT_SYMBOL(ipa_get_version_string);
  2585. static const struct of_device_id ipa_plat_drv_match[] = {
  2586. { .compatible = "qcom,ipa", },
  2587. { .compatible = "qcom,ipa-smmu-ap-cb", },
  2588. { .compatible = "qcom,ipa-smmu-wlan-cb", },
  2589. { .compatible = "qcom,ipa-smmu-uc-cb", },
  2590. { .compatible = "qcom,ipa-smmu-11ad-cb", },
  2591. { .compatible = "qcom,smp2p-map-ipa-1-in", },
  2592. { .compatible = "qcom,smp2p-map-ipa-1-out", },
  2593. {}
  2594. };
  2595. /*********************************************************/
  2596. /* PCIe Version */
  2597. /*********************************************************/
  2598. static const struct of_device_id ipa_pci_drv_match[] = {
  2599. { .compatible = "qcom,ipa", },
  2600. {}
  2601. };
  2602. /*
  2603. * Forward declarations of static functions required for PCI
  2604. * registraion
  2605. *
  2606. * VENDOR and DEVICE should be defined in pci_ids.h
  2607. */
  2608. static int ipa_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent);
  2609. static void ipa_pci_remove(struct pci_dev *pdev);
  2610. static void ipa_pci_shutdown(struct pci_dev *pdev);
  2611. static pci_ers_result_t ipa_pci_io_error_detected(struct pci_dev *dev,
  2612. pci_channel_state_t state);
  2613. static pci_ers_result_t ipa_pci_io_slot_reset(struct pci_dev *dev);
  2614. static void ipa_pci_io_resume(struct pci_dev *dev);
  2615. #define LOCAL_VENDOR 0x17CB
  2616. #define LOCAL_DEVICE 0x00ff
  2617. static const char ipa_pci_driver_name[] = "qcipav3";
  2618. static const struct pci_device_id ipa_pci_tbl[] = {
  2619. { PCI_DEVICE(LOCAL_VENDOR, LOCAL_DEVICE) },
  2620. { 0, 0, 0, 0, 0, 0, 0 }
  2621. };
  2622. MODULE_DEVICE_TABLE(pci, ipa_pci_tbl);
  2623. /* PCI Error Recovery */
  2624. static const struct pci_error_handlers ipa_pci_err_handler = {
  2625. .error_detected = ipa_pci_io_error_detected,
  2626. .slot_reset = ipa_pci_io_slot_reset,
  2627. .resume = ipa_pci_io_resume,
  2628. };
  2629. static struct pci_driver ipa_pci_driver = {
  2630. .name = ipa_pci_driver_name,
  2631. .id_table = ipa_pci_tbl,
  2632. .probe = ipa_pci_probe,
  2633. .remove = ipa_pci_remove,
  2634. .shutdown = ipa_pci_shutdown,
  2635. .err_handler = &ipa_pci_err_handler
  2636. };
  2637. static int ipa_generic_plat_drv_probe(struct platform_device *pdev_p)
  2638. {
  2639. int result;
  2640. /*
  2641. * IPA probe function can be called for multiple times as the same probe
  2642. * function handles multiple compatibilities
  2643. */
  2644. pr_debug("ipa: IPA driver probing started for %s\n",
  2645. pdev_p->dev.of_node->name);
  2646. if (!ipa_api_ctrl) {
  2647. ipa_api_ctrl = kzalloc(sizeof(*ipa_api_ctrl), GFP_KERNEL);
  2648. if (!ipa_api_ctrl)
  2649. return -ENOMEM;
  2650. /* Get IPA HW Version */
  2651. result = of_property_read_u32(pdev_p->dev.of_node,
  2652. "qcom,ipa-hw-ver", &ipa_api_hw_type);
  2653. if ((result) || (ipa_api_hw_type == 0)) {
  2654. pr_err("ipa: get resource failed for ipa-hw-ver!\n");
  2655. kfree(ipa_api_ctrl);
  2656. ipa_api_ctrl = 0;
  2657. return -ENODEV;
  2658. }
  2659. pr_debug("ipa: ipa_api_hw_type = %d\n", ipa_api_hw_type);
  2660. }
  2661. /* call probe based on IPA HW version */
  2662. switch (ipa_api_hw_type) {
  2663. case IPA_HW_v3_0:
  2664. case IPA_HW_v3_1:
  2665. case IPA_HW_v3_5:
  2666. case IPA_HW_v3_5_1:
  2667. case IPA_HW_v4_0:
  2668. case IPA_HW_v4_1:
  2669. case IPA_HW_v4_2:
  2670. case IPA_HW_v4_5:
  2671. case IPA_HW_v4_7:
  2672. result = ipa3_plat_drv_probe(pdev_p, ipa_api_ctrl,
  2673. ipa_plat_drv_match);
  2674. break;
  2675. default:
  2676. pr_err("ipa: unsupported version %d\n", ipa_api_hw_type);
  2677. return -EPERM;
  2678. }
  2679. if (result && result != -EPROBE_DEFER)
  2680. pr_err("ipa: ipa_plat_drv_probe failed\n");
  2681. return result;
  2682. }
  2683. static int ipa_ap_suspend(struct device *dev)
  2684. {
  2685. int ret;
  2686. IPA_API_DISPATCH_RETURN(ipa_ap_suspend, dev);
  2687. return ret;
  2688. }
  2689. static int ipa_ap_resume(struct device *dev)
  2690. {
  2691. int ret;
  2692. IPA_API_DISPATCH_RETURN(ipa_ap_resume, dev);
  2693. return ret;
  2694. }
  2695. int ipa_register_ipa_ready_cb(void (*ipa_ready_cb)(void *user_data),
  2696. void *user_data)
  2697. {
  2698. int ret;
  2699. IPA_API_DISPATCH_RETURN(ipa_register_ipa_ready_cb,
  2700. ipa_ready_cb, user_data);
  2701. return ret;
  2702. }
  2703. EXPORT_SYMBOL(ipa_register_ipa_ready_cb);
  2704. /**
  2705. * ipa_inc_client_enable_clks() - Increase active clients counter, and
  2706. * enable ipa clocks if necessary
  2707. *
  2708. * Please do not use this API, use the wrapper macros instead (ipa_i.h)
  2709. * IPA_ACTIVE_CLIENTS_INC_XXX();
  2710. *
  2711. * Return codes:
  2712. * None
  2713. */
  2714. void ipa_inc_client_enable_clks(struct ipa_active_client_logging_info *id)
  2715. {
  2716. IPA_API_DISPATCH(ipa_inc_client_enable_clks, id);
  2717. }
  2718. EXPORT_SYMBOL(ipa_inc_client_enable_clks);
  2719. /**
  2720. * ipa_dec_client_disable_clks() - Increase active clients counter, and
  2721. * enable ipa clocks if necessary
  2722. *
  2723. * Please do not use this API, use the wrapper macros instead (ipa_i.h)
  2724. * IPA_ACTIVE_CLIENTS_DEC_XXX();
  2725. *
  2726. * Return codes:
  2727. * None
  2728. */
  2729. void ipa_dec_client_disable_clks(struct ipa_active_client_logging_info *id)
  2730. {
  2731. IPA_API_DISPATCH(ipa_dec_client_disable_clks, id);
  2732. }
  2733. EXPORT_SYMBOL(ipa_dec_client_disable_clks);
  2734. /**
  2735. * ipa_inc_client_enable_clks_no_block() - Only increment the number of active
  2736. * clients if no asynchronous actions should be done.Asynchronous actions are
  2737. * locking a mutex and waking up IPA HW.
  2738. *
  2739. * Please do not use this API, use the wrapper macros instead(ipa_i.h)
  2740. *
  2741. *
  2742. * Return codes : 0 for success
  2743. * -EPERM if an asynchronous action should have been done
  2744. */
  2745. int ipa_inc_client_enable_clks_no_block(
  2746. struct ipa_active_client_logging_info *id)
  2747. {
  2748. int ret;
  2749. IPA_API_DISPATCH_RETURN(ipa_inc_client_enable_clks_no_block, id);
  2750. return ret;
  2751. }
  2752. EXPORT_SYMBOL(ipa_inc_client_enable_clks_no_block);
  2753. /**
  2754. * ipa_suspend_resource_no_block() - suspend client endpoints related to the
  2755. * IPA_RM resource and decrement active clients counter. This function is
  2756. * guaranteed to avoid sleeping.
  2757. *
  2758. * @resource: [IN] IPA Resource Manager resource
  2759. *
  2760. * Return codes: 0 on success, negative on failure.
  2761. */
  2762. int ipa_suspend_resource_no_block(enum ipa_rm_resource_name resource)
  2763. {
  2764. int ret;
  2765. IPA_API_DISPATCH_RETURN(ipa_suspend_resource_no_block, resource);
  2766. return ret;
  2767. }
  2768. EXPORT_SYMBOL(ipa_suspend_resource_no_block);
  2769. /**
  2770. * ipa_resume_resource() - resume client endpoints related to the IPA_RM
  2771. * resource.
  2772. *
  2773. * @resource: [IN] IPA Resource Manager resource
  2774. *
  2775. * Return codes: 0 on success, negative on failure.
  2776. */
  2777. int ipa_resume_resource(enum ipa_rm_resource_name resource)
  2778. {
  2779. int ret;
  2780. IPA_API_DISPATCH_RETURN(ipa_resume_resource, resource);
  2781. return ret;
  2782. }
  2783. EXPORT_SYMBOL(ipa_resume_resource);
  2784. /**
  2785. * ipa_suspend_resource_sync() - suspend client endpoints related to the IPA_RM
  2786. * resource and decrement active clients counter, which may result in clock
  2787. * gating of IPA clocks.
  2788. *
  2789. * @resource: [IN] IPA Resource Manager resource
  2790. *
  2791. * Return codes: 0 on success, negative on failure.
  2792. */
  2793. int ipa_suspend_resource_sync(enum ipa_rm_resource_name resource)
  2794. {
  2795. int ret;
  2796. IPA_API_DISPATCH_RETURN(ipa_suspend_resource_sync, resource);
  2797. return ret;
  2798. }
  2799. EXPORT_SYMBOL(ipa_suspend_resource_sync);
  2800. /**
  2801. * ipa_set_required_perf_profile() - set IPA to the specified performance
  2802. * profile based on the bandwidth, unless minimum voltage required is
  2803. * higher. In this case the floor_voltage specified will be used.
  2804. * @floor_voltage: minimum voltage to operate
  2805. * @bandwidth_mbps: needed bandwidth from IPA
  2806. *
  2807. * Return codes: 0 on success, negative on failure.
  2808. */
  2809. int ipa_set_required_perf_profile(enum ipa_voltage_level floor_voltage,
  2810. u32 bandwidth_mbps)
  2811. {
  2812. int ret;
  2813. IPA_API_DISPATCH_RETURN(ipa_set_required_perf_profile, floor_voltage,
  2814. bandwidth_mbps);
  2815. return ret;
  2816. }
  2817. EXPORT_SYMBOL(ipa_set_required_perf_profile);
  2818. /**
  2819. * ipa_get_ipc_logbuf() - return a pointer to IPA driver IPC log
  2820. */
  2821. void *ipa_get_ipc_logbuf(void)
  2822. {
  2823. void *ret;
  2824. IPA_API_DISPATCH_RETURN_PTR(ipa_get_ipc_logbuf);
  2825. return ret;
  2826. }
  2827. EXPORT_SYMBOL(ipa_get_ipc_logbuf);
  2828. /**
  2829. * ipa_get_ipc_logbuf_low() - return a pointer to IPA driver IPC low prio log
  2830. */
  2831. void *ipa_get_ipc_logbuf_low(void)
  2832. {
  2833. void *ret;
  2834. IPA_API_DISPATCH_RETURN_PTR(ipa_get_ipc_logbuf_low);
  2835. return ret;
  2836. }
  2837. EXPORT_SYMBOL(ipa_get_ipc_logbuf_low);
  2838. /**
  2839. * ipa_assert() - general function for assertion
  2840. */
  2841. void ipa_assert(void)
  2842. {
  2843. pr_err("IPA: unrecoverable error has occurred, asserting\n");
  2844. BUG();
  2845. }
  2846. /**
  2847. * ipa_rx_poll() - Poll the rx packets from IPA HW in the
  2848. * softirq context
  2849. *
  2850. * @budget: number of packets to be polled in single iteration
  2851. *
  2852. * Return codes: >= 0 : Actual number of packets polled
  2853. *
  2854. */
  2855. int ipa_rx_poll(u32 clnt_hdl, int budget)
  2856. {
  2857. int ret;
  2858. IPA_API_DISPATCH_RETURN(ipa_rx_poll, clnt_hdl, budget);
  2859. return ret;
  2860. }
  2861. EXPORT_SYMBOL(ipa_rx_poll);
  2862. /**
  2863. * ipa_recycle_wan_skb() - Recycle the Wan skb
  2864. *
  2865. * @skb: skb that needs to recycle
  2866. *
  2867. */
  2868. void ipa_recycle_wan_skb(struct sk_buff *skb)
  2869. {
  2870. IPA_API_DISPATCH(ipa_recycle_wan_skb, skb);
  2871. }
  2872. EXPORT_SYMBOL(ipa_recycle_wan_skb);
  2873. /**
  2874. * ipa_setup_uc_ntn_pipes() - setup uc offload pipes
  2875. */
  2876. int ipa_setup_uc_ntn_pipes(struct ipa_ntn_conn_in_params *inp,
  2877. ipa_notify_cb notify, void *priv, u8 hdr_len,
  2878. struct ipa_ntn_conn_out_params *outp)
  2879. {
  2880. int ret;
  2881. IPA_API_DISPATCH_RETURN(ipa_setup_uc_ntn_pipes, inp,
  2882. notify, priv, hdr_len, outp);
  2883. return ret;
  2884. }
  2885. /**
  2886. * ipa_tear_down_uc_offload_pipes() - tear down uc offload pipes
  2887. */
  2888. int ipa_tear_down_uc_offload_pipes(int ipa_ep_idx_ul,
  2889. int ipa_ep_idx_dl, struct ipa_ntn_conn_in_params *params)
  2890. {
  2891. int ret;
  2892. IPA_API_DISPATCH_RETURN(ipa_tear_down_uc_offload_pipes, ipa_ep_idx_ul,
  2893. ipa_ep_idx_dl, params);
  2894. return ret;
  2895. }
  2896. /**
  2897. * ipa_get_pdev() - return a pointer to IPA dev struct
  2898. *
  2899. * Return value: a pointer to IPA dev struct
  2900. *
  2901. */
  2902. struct device *ipa_get_pdev(void)
  2903. {
  2904. struct device *ret;
  2905. IPA_API_DISPATCH_RETURN_PTR(ipa_get_pdev);
  2906. return ret;
  2907. }
  2908. EXPORT_SYMBOL(ipa_get_pdev);
  2909. int ipa_ntn_uc_reg_rdyCB(void (*ipauc_ready_cb)(void *user_data),
  2910. void *user_data)
  2911. {
  2912. int ret;
  2913. IPA_API_DISPATCH_RETURN(ipa_ntn_uc_reg_rdyCB,
  2914. ipauc_ready_cb, user_data);
  2915. return ret;
  2916. }
  2917. EXPORT_SYMBOL(ipa_ntn_uc_reg_rdyCB);
  2918. void ipa_ntn_uc_dereg_rdyCB(void)
  2919. {
  2920. IPA_API_DISPATCH(ipa_ntn_uc_dereg_rdyCB);
  2921. }
  2922. EXPORT_SYMBOL(ipa_ntn_uc_dereg_rdyCB);
  2923. int ipa_get_smmu_params(struct ipa_smmu_in_params *in,
  2924. struct ipa_smmu_out_params *out)
  2925. {
  2926. int ret;
  2927. IPA_API_DISPATCH_RETURN(ipa_get_smmu_params, in, out);
  2928. return ret;
  2929. }
  2930. EXPORT_SYMBOL(ipa_get_smmu_params);
  2931. /**
  2932. * ipa_conn_wdi_pipes() - connect wdi pipes
  2933. */
  2934. int ipa_conn_wdi_pipes(struct ipa_wdi_conn_in_params *in,
  2935. struct ipa_wdi_conn_out_params *out,
  2936. ipa_wdi_meter_notifier_cb wdi_notify)
  2937. {
  2938. int ret;
  2939. IPA_API_DISPATCH_RETURN(ipa_conn_wdi_pipes, in, out, wdi_notify);
  2940. return ret;
  2941. }
  2942. /**
  2943. * ipa_disconn_wdi_pipes() - disconnect wdi pipes
  2944. */
  2945. int ipa_disconn_wdi_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
  2946. {
  2947. int ret;
  2948. IPA_API_DISPATCH_RETURN(ipa_disconn_wdi_pipes, ipa_ep_idx_tx,
  2949. ipa_ep_idx_rx);
  2950. return ret;
  2951. }
  2952. /**
  2953. * ipa_enable_wdi_pipes() - enable wdi pipes
  2954. */
  2955. int ipa_enable_wdi_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
  2956. {
  2957. int ret;
  2958. IPA_API_DISPATCH_RETURN(ipa_enable_wdi_pipes, ipa_ep_idx_tx,
  2959. ipa_ep_idx_rx);
  2960. return ret;
  2961. }
  2962. /**
  2963. * ipa_disable_wdi_pipes() - disable wdi pipes
  2964. */
  2965. int ipa_disable_wdi_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
  2966. {
  2967. int ret;
  2968. IPA_API_DISPATCH_RETURN(ipa_disable_wdi_pipes, ipa_ep_idx_tx,
  2969. ipa_ep_idx_rx);
  2970. return ret;
  2971. }
  2972. /**
  2973. * ipa_wigig_uc_msi_init() - smmu map\unmap msi related wigig HW registers
  2974. * and init\deinit uC msi config
  2975. */
  2976. int ipa_wigig_uc_msi_init(bool init,
  2977. phys_addr_t periph_baddr_pa,
  2978. phys_addr_t pseudo_cause_pa,
  2979. phys_addr_t int_gen_tx_pa,
  2980. phys_addr_t int_gen_rx_pa,
  2981. phys_addr_t dma_ep_misc_pa)
  2982. {
  2983. int ret;
  2984. IPA_API_DISPATCH_RETURN(ipa_wigig_uc_msi_init, init,
  2985. periph_baddr_pa,
  2986. pseudo_cause_pa,
  2987. int_gen_tx_pa,
  2988. int_gen_rx_pa,
  2989. dma_ep_misc_pa);
  2990. return ret;
  2991. }
  2992. EXPORT_SYMBOL(ipa_wigig_uc_msi_init);
  2993. /**
  2994. * ipa_conn_wigig_rx_pipe_i() - connect wigig rx pipe
  2995. */
  2996. int ipa_conn_wigig_rx_pipe_i(void *in, struct ipa_wigig_conn_out_params *out)
  2997. {
  2998. int ret;
  2999. IPA_API_DISPATCH_RETURN(ipa_conn_wigig_rx_pipe_i, in, out);
  3000. return ret;
  3001. }
  3002. EXPORT_SYMBOL(ipa_conn_wigig_rx_pipe_i);
  3003. /**
  3004. * ipa_conn_wigig_client_i() - connect a wigig client
  3005. */
  3006. int ipa_conn_wigig_client_i(void *in, struct ipa_wigig_conn_out_params *out)
  3007. {
  3008. int ret;
  3009. IPA_API_DISPATCH_RETURN(ipa_conn_wigig_client_i, in, out);
  3010. return ret;
  3011. }
  3012. EXPORT_SYMBOL(ipa_conn_wigig_client_i);
  3013. /**
  3014. * ipa_disconn_wigig_pipe_i() - disconnect a wigig pipe
  3015. */
  3016. int ipa_disconn_wigig_pipe_i(enum ipa_client_type client,
  3017. struct ipa_wigig_pipe_setup_info_smmu *pipe_smmu,
  3018. void *dbuff)
  3019. {
  3020. int ret;
  3021. IPA_API_DISPATCH_RETURN(ipa_disconn_wigig_pipe_i, client,
  3022. pipe_smmu, dbuff);
  3023. return ret;
  3024. }
  3025. EXPORT_SYMBOL(ipa_disconn_wigig_pipe_i);
  3026. /**
  3027. * ipa_enable_wigig_pipe() - enable a wigig pipe
  3028. */
  3029. int ipa_enable_wigig_pipe_i(enum ipa_client_type client)
  3030. {
  3031. int ret;
  3032. IPA_API_DISPATCH_RETURN(ipa_enable_wigig_pipe_i, client);
  3033. return ret;
  3034. }
  3035. EXPORT_SYMBOL(ipa_enable_wigig_pipe_i);
  3036. /**
  3037. * ipa_disable_wigig_pipe_i() - disable a wigig pipe
  3038. */
  3039. int ipa_disable_wigig_pipe_i(enum ipa_client_type client)
  3040. {
  3041. int ret;
  3042. IPA_API_DISPATCH_RETURN(ipa_disable_wigig_pipe_i, client);
  3043. return ret;
  3044. }
  3045. EXPORT_SYMBOL(ipa_disable_wigig_pipe_i);
  3046. /**
  3047. * ipa_tz_unlock_reg() - Allow AP access to memory regions controlled by TZ
  3048. */
  3049. int ipa_tz_unlock_reg(struct ipa_tz_unlock_reg_info *reg_info, u16 num_regs)
  3050. {
  3051. int ret;
  3052. IPA_API_DISPATCH_RETURN(ipa_tz_unlock_reg, reg_info, num_regs);
  3053. return ret;
  3054. }
  3055. void ipa_register_client_callback(int (*client_cb)(bool is_lock),
  3056. bool (*teth_port_state)(void),
  3057. enum ipa_client_type client)
  3058. {
  3059. IPA_API_DISPATCH(ipa_register_client_callback,
  3060. client_cb, teth_port_state, client);
  3061. }
  3062. void ipa_deregister_client_callback(enum ipa_client_type client)
  3063. {
  3064. IPA_API_DISPATCH(ipa_deregister_client_callback,
  3065. client);
  3066. }
  3067. static const struct dev_pm_ops ipa_pm_ops = {
  3068. .suspend_noirq = ipa_ap_suspend,
  3069. .resume_noirq = ipa_ap_resume,
  3070. };
  3071. static struct platform_driver ipa_plat_drv = {
  3072. .probe = ipa_generic_plat_drv_probe,
  3073. .driver = {
  3074. .name = DRV_NAME,
  3075. .pm = &ipa_pm_ops,
  3076. .of_match_table = ipa_plat_drv_match,
  3077. },
  3078. };
  3079. /*********************************************************/
  3080. /* PCIe Version */
  3081. /*********************************************************/
  3082. static int ipa_pci_probe(
  3083. struct pci_dev *pci_dev,
  3084. const struct pci_device_id *ent)
  3085. {
  3086. int result;
  3087. if (!pci_dev || !ent) {
  3088. pr_err(
  3089. "Bad arg: pci_dev (%pK) and/or ent (%pK)\n",
  3090. pci_dev, ent);
  3091. return -EOPNOTSUPP;
  3092. }
  3093. if (!ipa_api_ctrl) {
  3094. ipa_api_ctrl = kzalloc(sizeof(*ipa_api_ctrl), GFP_KERNEL);
  3095. if (ipa_api_ctrl == NULL)
  3096. return -ENOMEM;
  3097. /* Get IPA HW Version */
  3098. result = of_property_read_u32(NULL,
  3099. "qcom,ipa-hw-ver", &ipa_api_hw_type);
  3100. if (result || ipa_api_hw_type == 0) {
  3101. pr_err("ipa: get resource failed for ipa-hw-ver!\n");
  3102. kfree(ipa_api_ctrl);
  3103. ipa_api_ctrl = NULL;
  3104. return -ENODEV;
  3105. }
  3106. pr_debug("ipa: ipa_api_hw_type = %d\n", ipa_api_hw_type);
  3107. }
  3108. /*
  3109. * Call a reduced version of platform_probe appropriate for PCIe
  3110. */
  3111. result = ipa3_pci_drv_probe(pci_dev, ipa_api_ctrl, ipa_pci_drv_match);
  3112. if (result && result != -EPROBE_DEFER)
  3113. pr_err("ipa: ipa3_pci_drv_probe failed\n");
  3114. if (running_emulation)
  3115. ipa_ut_module_init();
  3116. return result;
  3117. }
  3118. static void ipa_pci_remove(struct pci_dev *pci_dev)
  3119. {
  3120. if (running_emulation)
  3121. ipa_ut_module_exit();
  3122. }
  3123. static void ipa_pci_shutdown(struct pci_dev *pci_dev)
  3124. {
  3125. }
  3126. static pci_ers_result_t ipa_pci_io_error_detected(struct pci_dev *pci_dev,
  3127. pci_channel_state_t state)
  3128. {
  3129. return 0;
  3130. }
  3131. static pci_ers_result_t ipa_pci_io_slot_reset(struct pci_dev *pci_dev)
  3132. {
  3133. return 0;
  3134. }
  3135. static void ipa_pci_io_resume(struct pci_dev *pci_dev)
  3136. {
  3137. }
  3138. static int __init ipa_module_init(void)
  3139. {
  3140. pr_debug("IPA module init\n");
  3141. if (running_emulation) {
  3142. /* Register as a PCI device driver */
  3143. return pci_register_driver(&ipa_pci_driver);
  3144. }
  3145. /* Register as a platform device driver */
  3146. return platform_driver_register(&ipa_plat_drv);
  3147. }
  3148. subsys_initcall(ipa_module_init);
  3149. MODULE_LICENSE("GPL v2");
  3150. MODULE_DESCRIPTION("IPA HW device driver");