rmnet_ipa.c 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2014-2019, The Linux Foundation. All rights reserved.
  4. */
  5. /*
  6. * WWAN Transport Network Driver.
  7. */
  8. #include <linux/completion.h>
  9. #include <linux/errno.h>
  10. #include <linux/if_arp.h>
  11. #include <linux/interrupt.h>
  12. #include <linux/init.h>
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/netdevice.h>
  16. #include <linux/of_device.h>
  17. #include <linux/string.h>
  18. #include <linux/skbuff.h>
  19. #include <linux/version.h>
  20. #include <linux/workqueue.h>
  21. #include <linux/debugfs.h>
  22. #include <net/pkt_sched.h>
  23. #include <soc/qcom/subsystem_restart.h>
  24. #include <soc/qcom/subsystem_notif.h>
  25. #include "ipa_qmi_service.h"
  26. #include <linux/rmnet_ipa_fd_ioctl.h>
  27. #include <linux/ipa.h>
  28. #include <uapi/linux/msm_rmnet.h>
  29. #include <net/rmnet_config.h>
  30. #include "ipa_mhi_proxy.h"
  31. #include "ipa_trace.h"
  32. #include "ipa_odl.h"
  33. #define OUTSTANDING_HIGH_DEFAULT 256
  34. #define OUTSTANDING_HIGH_CTL_DEFAULT (OUTSTANDING_HIGH_DEFAULT + 32)
  35. #define OUTSTANDING_LOW_DEFAULT 128
  36. #define WWAN_METADATA_SHFT 24
  37. #define WWAN_METADATA_MASK 0xFF000000
  38. #define WWAN_DATA_LEN 9216
  39. #define HEADROOM_FOR_QMAP 8 /* for mux header */
  40. #define TAILROOM 0 /* for padding by mux layer */
  41. #define MAX_NUM_OF_MUX_CHANNEL 15 /* max mux channels */
  42. #define UL_FILTER_RULE_HANDLE_START 69
  43. #define IPA_WWAN_DEV_NAME "rmnet_ipa%d"
  44. #define IPA_UPSTEAM_WLAN_IFACE_NAME "wlan0"
  45. #define IPA_UPSTEAM_WLAN1_IFACE_NAME "wlan1"
  46. #define IPA_WWAN_RX_SOFTIRQ_THRESH 16
  47. #define INVALID_MUX_ID 0xFF
  48. #define IPA_QUOTA_REACH_ALERT_MAX_SIZE 64
  49. #define IPA_QUOTA_REACH_IF_NAME_MAX_SIZE 64
  50. #define IPA_UEVENT_NUM_EVNP 4 /* number of event pointers */
  51. #define IPA_NETDEV() \
  52. ((rmnet_ipa3_ctx && rmnet_ipa3_ctx->wwan_priv) ? \
  53. rmnet_ipa3_ctx->wwan_priv->net : NULL)
  54. #define IPA_WWAN_CONS_DESC_FIFO_SZ 256
  55. static void rmnet_ipa_free_msg(void *buff, u32 len, u32 type);
  56. static void rmnet_ipa_get_stats_and_update(void);
  57. static int ipa3_wwan_add_ul_flt_rule_to_ipa(void);
  58. static int ipa3_wwan_del_ul_flt_rule_to_ipa(void);
  59. static void ipa3_wwan_msg_free_cb(void*, u32, u32);
  60. static int ipa3_rmnet_poll(struct napi_struct *napi, int budget);
  61. static void ipa3_wake_tx_queue(struct work_struct *work);
  62. static DECLARE_WORK(ipa3_tx_wakequeue_work, ipa3_wake_tx_queue);
  63. static void tethering_stats_poll_queue(struct work_struct *work);
  64. static DECLARE_DELAYED_WORK(ipa_tether_stats_poll_wakequeue_work,
  65. tethering_stats_poll_queue);
  66. static int rmnet_ipa_send_coalesce_notification(uint8_t qmap_id, bool enable,
  67. bool tcp, bool udp);
  68. enum ipa3_wwan_device_status {
  69. WWAN_DEVICE_INACTIVE = 0,
  70. WWAN_DEVICE_ACTIVE = 1
  71. };
  72. struct ipa3_rmnet_plat_drv_res {
  73. bool ipa_rmnet_ssr;
  74. bool ipa_advertise_sg_support;
  75. bool ipa_napi_enable;
  76. u32 wan_rx_desc_size;
  77. };
  78. /**
  79. * struct ipa3_wwan_private - WWAN private data
  80. * @net: network interface struct implemented by this driver
  81. * @stats: iface statistics
  82. * @outstanding_pkts: number of packets sent to IPA without TX complete ACKed
  83. * @ch_id: channel id
  84. * @lock: spinlock for mutual exclusion
  85. * @device_status: holds device status
  86. *
  87. * WWAN private - holds all relevant info about WWAN driver
  88. */
  89. struct ipa3_wwan_private {
  90. struct net_device *net;
  91. struct net_device_stats stats;
  92. atomic_t outstanding_pkts;
  93. uint32_t ch_id;
  94. spinlock_t lock;
  95. struct completion resource_granted_completion;
  96. enum ipa3_wwan_device_status device_status;
  97. struct napi_struct napi;
  98. };
  99. struct rmnet_ipa_debugfs {
  100. struct dentry *dent;
  101. struct dentry *dfile_outstanding_high;
  102. struct dentry *dfile_outstanding_high_ctl;
  103. struct dentry *dfile_outstanding_low;
  104. };
  105. struct rmnet_ipa3_context {
  106. struct ipa3_wwan_private *wwan_priv;
  107. struct ipa_sys_connect_params apps_to_ipa_ep_cfg;
  108. struct ipa_sys_connect_params ipa_to_apps_ep_cfg;
  109. u32 qmap_hdr_hdl;
  110. u32 dflt_v4_wan_rt_hdl;
  111. u32 dflt_v6_wan_rt_hdl;
  112. struct ipa3_rmnet_mux_val mux_channel[MAX_NUM_OF_MUX_CHANNEL];
  113. int num_q6_rules;
  114. int old_num_q6_rules;
  115. int rmnet_index;
  116. bool egress_set;
  117. bool a7_ul_flt_set;
  118. atomic_t is_initialized;
  119. atomic_t is_ssr;
  120. void *lcl_mdm_subsys_notify_handle;
  121. void *rmt_mdm_subsys_notify_handle;
  122. u32 apps_to_ipa3_hdl;
  123. u32 ipa3_to_apps_hdl;
  124. struct mutex pipe_handle_guard;
  125. struct mutex add_mux_channel_lock;
  126. u32 pm_hdl;
  127. u32 q6_pm_hdl;
  128. u32 q6_teth_pm_hdl;
  129. struct mutex per_client_stats_guard;
  130. struct ipa_tether_device_info
  131. tether_device
  132. [IPACM_MAX_CLIENT_DEVICE_TYPES];
  133. u32 outstanding_high;
  134. u32 outstanding_high_ctl;
  135. u32 outstanding_low;
  136. struct rmnet_ipa_debugfs dbgfs;
  137. bool dl_csum_offload_enabled;
  138. atomic_t ap_suspend;
  139. bool ipa_config_is_apq;
  140. bool ipa_mhi_aggr_formet_set;
  141. };
  142. static struct rmnet_ipa3_context *rmnet_ipa3_ctx;
  143. static struct ipa3_rmnet_plat_drv_res ipa3_rmnet_res;
  144. /**
  145. * ipa3_setup_a7_qmap_hdr() - Setup default a7 qmap hdr
  146. *
  147. * Return codes:
  148. * 0: success
  149. * -ENOMEM: failed to allocate memory
  150. * -EPERM: failed to add the tables
  151. */
  152. static int ipa3_setup_a7_qmap_hdr(void)
  153. {
  154. struct ipa_ioc_add_hdr *hdr;
  155. struct ipa_hdr_add *hdr_entry;
  156. u32 pyld_sz;
  157. int ret;
  158. /* install the basic exception header */
  159. pyld_sz = sizeof(struct ipa_ioc_add_hdr) + 1 *
  160. sizeof(struct ipa_hdr_add);
  161. hdr = kzalloc(pyld_sz, GFP_KERNEL);
  162. if (!hdr)
  163. return -ENOMEM;
  164. hdr->num_hdrs = 1;
  165. hdr->commit = 1;
  166. hdr_entry = &hdr->hdr[0];
  167. strlcpy(hdr_entry->name, IPA_A7_QMAP_HDR_NAME,
  168. IPA_RESOURCE_NAME_MAX);
  169. if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5 &&
  170. rmnet_ipa3_ctx->dl_csum_offload_enabled) {
  171. hdr_entry->hdr_len = IPA_DL_CHECKSUM_LENGTH; /* 8 bytes */
  172. /* new DL QMAP header format */
  173. hdr_entry->hdr[0] = 0x40;
  174. hdr_entry->hdr[1] = 0;
  175. hdr_entry->hdr[2] = 0;
  176. hdr_entry->hdr[3] = 0;
  177. hdr_entry->hdr[4] = 0x4;
  178. /*
  179. * Need to set csum required/valid bit on which will be replaced
  180. * by HW if checksum is incorrect after validation
  181. */
  182. hdr_entry->hdr[5] = 0x80;
  183. hdr_entry->hdr[6] = 0;
  184. hdr_entry->hdr[7] = 0;
  185. } else
  186. hdr_entry->hdr_len = IPA_QMAP_HEADER_LENGTH; /* 4 bytes */
  187. if (ipa3_add_hdr(hdr)) {
  188. IPAWANERR("fail to add IPA_A7_QMAP hdr\n");
  189. ret = -EPERM;
  190. goto bail;
  191. }
  192. if (hdr_entry->status) {
  193. IPAWANERR("fail to add IPA_A7_QMAP hdr\n");
  194. ret = -EPERM;
  195. goto bail;
  196. }
  197. rmnet_ipa3_ctx->qmap_hdr_hdl = hdr_entry->hdr_hdl;
  198. ret = 0;
  199. bail:
  200. kfree(hdr);
  201. return ret;
  202. }
  203. static void ipa3_del_a7_qmap_hdr(void)
  204. {
  205. struct ipa_ioc_del_hdr *del_hdr;
  206. struct ipa_hdr_del *hdl_entry;
  207. u32 pyld_sz;
  208. int ret;
  209. pyld_sz = sizeof(struct ipa_ioc_del_hdr) + 1 *
  210. sizeof(struct ipa_hdr_del);
  211. del_hdr = kzalloc(pyld_sz, GFP_KERNEL);
  212. if (!del_hdr) {
  213. IPAWANERR("fail to alloc exception hdr_del\n");
  214. return;
  215. }
  216. del_hdr->commit = 1;
  217. del_hdr->num_hdls = 1;
  218. hdl_entry = &del_hdr->hdl[0];
  219. hdl_entry->hdl = rmnet_ipa3_ctx->qmap_hdr_hdl;
  220. ret = ipa3_del_hdr(del_hdr);
  221. if (ret || hdl_entry->status)
  222. IPAWANERR("ipa3_del_hdr failed\n");
  223. else
  224. IPAWANDBG("hdrs deletion done\n");
  225. rmnet_ipa3_ctx->qmap_hdr_hdl = 0;
  226. kfree(del_hdr);
  227. }
  228. static void ipa3_del_qmap_hdr(uint32_t hdr_hdl)
  229. {
  230. struct ipa_ioc_del_hdr *del_hdr;
  231. struct ipa_hdr_del *hdl_entry;
  232. u32 pyld_sz;
  233. int ret;
  234. if (hdr_hdl == 0) {
  235. IPAWANERR("Invalid hdr_hdl provided\n");
  236. return;
  237. }
  238. pyld_sz = sizeof(struct ipa_ioc_del_hdr) + 1 *
  239. sizeof(struct ipa_hdr_del);
  240. del_hdr = kzalloc(pyld_sz, GFP_KERNEL);
  241. if (!del_hdr) {
  242. IPAWANERR("fail to alloc exception hdr_del\n");
  243. return;
  244. }
  245. del_hdr->commit = 1;
  246. del_hdr->num_hdls = 1;
  247. hdl_entry = &del_hdr->hdl[0];
  248. hdl_entry->hdl = hdr_hdl;
  249. ret = ipa3_del_hdr(del_hdr);
  250. if (ret || hdl_entry->status)
  251. IPAWANERR("ipa3_del_hdr failed\n");
  252. else
  253. IPAWANDBG("header deletion done\n");
  254. rmnet_ipa3_ctx->qmap_hdr_hdl = 0;
  255. kfree(del_hdr);
  256. }
  257. static void ipa3_del_mux_qmap_hdrs(void)
  258. {
  259. int index;
  260. for (index = 0; index < rmnet_ipa3_ctx->rmnet_index; index++) {
  261. ipa3_del_qmap_hdr(rmnet_ipa3_ctx->mux_channel[index].hdr_hdl);
  262. rmnet_ipa3_ctx->mux_channel[index].hdr_hdl = 0;
  263. }
  264. }
  265. static int ipa3_add_qmap_hdr(uint32_t mux_id, uint32_t *hdr_hdl)
  266. {
  267. struct ipa_ioc_add_hdr *hdr;
  268. struct ipa_hdr_add *hdr_entry;
  269. char hdr_name[IPA_RESOURCE_NAME_MAX];
  270. u32 pyld_sz;
  271. int ret;
  272. pyld_sz = sizeof(struct ipa_ioc_add_hdr) + 1 *
  273. sizeof(struct ipa_hdr_add);
  274. hdr = kzalloc(pyld_sz, GFP_KERNEL);
  275. if (!hdr)
  276. return -ENOMEM;
  277. hdr->num_hdrs = 1;
  278. hdr->commit = 1;
  279. hdr_entry = &hdr->hdr[0];
  280. snprintf(hdr_name, IPA_RESOURCE_NAME_MAX, "%s%d",
  281. A2_MUX_HDR_NAME_V4_PREF,
  282. mux_id);
  283. strlcpy(hdr_entry->name, hdr_name,
  284. IPA_RESOURCE_NAME_MAX);
  285. if (rmnet_ipa3_ctx->dl_csum_offload_enabled) {
  286. if (rmnet_ipa3_ctx->ipa_config_is_apq ||
  287. ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
  288. hdr_entry->hdr_len =
  289. IPA_DL_CHECKSUM_LENGTH; /* 8 bytes */
  290. /* new DL QMAP header format */
  291. hdr_entry->hdr[0] = 0x40;
  292. hdr_entry->hdr[1] = (uint8_t) mux_id;
  293. hdr_entry->hdr[2] = 0;
  294. hdr_entry->hdr[3] = 0;
  295. hdr_entry->hdr[4] = 0x4;
  296. /*
  297. * Need to set csum required/valid bit on
  298. * which will be replaced by HW if checksum
  299. * is incorrect after validation
  300. */
  301. hdr_entry->hdr[5] = 0x80;
  302. hdr_entry->hdr[6] = 0;
  303. hdr_entry->hdr[7] = 0;
  304. } else {
  305. hdr_entry->hdr_len =
  306. IPA_QMAP_HEADER_LENGTH; /* 4 bytes */
  307. hdr_entry->hdr[1] = (uint8_t) mux_id;
  308. }
  309. } else {
  310. hdr_entry->hdr_len = IPA_QMAP_HEADER_LENGTH; /* 4 bytes */
  311. hdr_entry->hdr[1] = (uint8_t) mux_id;
  312. }
  313. IPAWANDBG("header (%s) with mux-id: (%d)\n",
  314. hdr_name,
  315. hdr_entry->hdr[1]);
  316. if (ipa3_add_hdr(hdr)) {
  317. IPAWANERR("fail to add IPA_QMAP hdr\n");
  318. ret = -EPERM;
  319. goto bail;
  320. }
  321. if (hdr_entry->status) {
  322. IPAWANERR("fail to add IPA_QMAP hdr\n");
  323. ret = -EPERM;
  324. goto bail;
  325. }
  326. ret = 0;
  327. *hdr_hdl = hdr_entry->hdr_hdl;
  328. bail:
  329. kfree(hdr);
  330. return ret;
  331. }
  332. /**
  333. * ipa3_setup_dflt_wan_rt_tables() - Setup default wan routing tables
  334. *
  335. * Return codes:
  336. * 0: success
  337. * -ENOMEM: failed to allocate memory
  338. * -EPERM: failed to add the tables
  339. */
  340. static int ipa3_setup_dflt_wan_rt_tables(void)
  341. {
  342. struct ipa_ioc_add_rt_rule *rt_rule;
  343. struct ipa_rt_rule_add *rt_rule_entry;
  344. rt_rule =
  345. kzalloc(sizeof(struct ipa_ioc_add_rt_rule) + 1 *
  346. sizeof(struct ipa_rt_rule_add), GFP_KERNEL);
  347. if (!rt_rule)
  348. return -ENOMEM;
  349. /* setup a default v4 route to point to Apps */
  350. rt_rule->num_rules = 1;
  351. rt_rule->commit = 1;
  352. rt_rule->ip = IPA_IP_v4;
  353. strlcpy(rt_rule->rt_tbl_name, IPA_DFLT_WAN_RT_TBL_NAME,
  354. IPA_RESOURCE_NAME_MAX);
  355. rt_rule_entry = &rt_rule->rules[0];
  356. rt_rule_entry->at_rear = 1;
  357. rt_rule_entry->rule.dst = IPA_CLIENT_APPS_WAN_CONS;
  358. rt_rule_entry->rule.hdr_hdl = rmnet_ipa3_ctx->qmap_hdr_hdl;
  359. if (ipa3_add_rt_rule(rt_rule)) {
  360. IPAWANERR("fail to add dflt_wan v4 rule\n");
  361. kfree(rt_rule);
  362. return -EPERM;
  363. }
  364. IPAWANDBG("dflt v4 rt rule hdl=%x\n", rt_rule_entry->rt_rule_hdl);
  365. rmnet_ipa3_ctx->dflt_v4_wan_rt_hdl = rt_rule_entry->rt_rule_hdl;
  366. /* setup a default v6 route to point to A5 */
  367. rt_rule->ip = IPA_IP_v6;
  368. if (ipa3_add_rt_rule(rt_rule)) {
  369. IPAWANERR("fail to add dflt_wan v6 rule\n");
  370. kfree(rt_rule);
  371. return -EPERM;
  372. }
  373. IPAWANDBG("dflt v6 rt rule hdl=%x\n", rt_rule_entry->rt_rule_hdl);
  374. rmnet_ipa3_ctx->dflt_v6_wan_rt_hdl = rt_rule_entry->rt_rule_hdl;
  375. kfree(rt_rule);
  376. return 0;
  377. }
  378. static void ipa3_del_dflt_wan_rt_tables(void)
  379. {
  380. struct ipa_ioc_del_rt_rule *rt_rule;
  381. struct ipa_rt_rule_del *rt_rule_entry;
  382. int len;
  383. len = sizeof(struct ipa_ioc_del_rt_rule) + 1 *
  384. sizeof(struct ipa_rt_rule_del);
  385. rt_rule = kzalloc(len, GFP_KERNEL);
  386. if (!rt_rule)
  387. return;
  388. memset(rt_rule, 0, len);
  389. rt_rule->commit = 1;
  390. rt_rule->num_hdls = 1;
  391. rt_rule->ip = IPA_IP_v4;
  392. rt_rule_entry = &rt_rule->hdl[0];
  393. rt_rule_entry->status = -1;
  394. rt_rule_entry->hdl = rmnet_ipa3_ctx->dflt_v4_wan_rt_hdl;
  395. IPAWANERR("Deleting Route hdl:(0x%x) with ip type: %d\n",
  396. rt_rule_entry->hdl, IPA_IP_v4);
  397. if (ipa3_del_rt_rule(rt_rule) ||
  398. (rt_rule_entry->status)) {
  399. IPAWANERR("Routing rule deletion failed\n");
  400. }
  401. rt_rule->ip = IPA_IP_v6;
  402. rt_rule_entry->hdl = rmnet_ipa3_ctx->dflt_v6_wan_rt_hdl;
  403. IPAWANERR("Deleting Route hdl:(0x%x) with ip type: %d\n",
  404. rt_rule_entry->hdl, IPA_IP_v6);
  405. if (ipa3_del_rt_rule(rt_rule) ||
  406. (rt_rule_entry->status)) {
  407. IPAWANERR("Routing rule deletion failed\n");
  408. }
  409. kfree(rt_rule);
  410. }
  411. static void ipa3_copy_qmi_flt_rule_ex(
  412. struct ipa_ioc_ext_intf_prop *q6_ul_flt_rule_ptr,
  413. void *flt_spec_ptr_void)
  414. {
  415. int j;
  416. struct ipa_filter_spec_ex_type_v01 *flt_spec_ptr;
  417. struct ipa_ipfltr_range_eq_16 *q6_ul_filter_nat_ptr;
  418. struct ipa_ipfltr_range_eq_16_type_v01 *filter_spec_nat_ptr;
  419. /*
  420. * pure_ack and tos has the same size and type and we will treat tos
  421. * field as pure_ack in ipa4.5 version
  422. */
  423. flt_spec_ptr = (struct ipa_filter_spec_ex_type_v01 *) flt_spec_ptr_void;
  424. q6_ul_flt_rule_ptr->ip = flt_spec_ptr->ip_type;
  425. q6_ul_flt_rule_ptr->action = flt_spec_ptr->filter_action;
  426. if (flt_spec_ptr->is_routing_table_index_valid == true)
  427. q6_ul_flt_rule_ptr->rt_tbl_idx =
  428. flt_spec_ptr->route_table_index;
  429. if (flt_spec_ptr->is_mux_id_valid == true)
  430. q6_ul_flt_rule_ptr->mux_id =
  431. flt_spec_ptr->mux_id;
  432. q6_ul_flt_rule_ptr->rule_id =
  433. flt_spec_ptr->rule_id;
  434. q6_ul_flt_rule_ptr->is_rule_hashable =
  435. flt_spec_ptr->is_rule_hashable;
  436. q6_ul_flt_rule_ptr->eq_attrib.rule_eq_bitmap =
  437. flt_spec_ptr->filter_rule.rule_eq_bitmap;
  438. q6_ul_flt_rule_ptr->eq_attrib.tos_eq_present =
  439. flt_spec_ptr->filter_rule.tos_eq_present;
  440. q6_ul_flt_rule_ptr->eq_attrib.tos_eq =
  441. flt_spec_ptr->filter_rule.tos_eq;
  442. q6_ul_flt_rule_ptr->eq_attrib.protocol_eq_present =
  443. flt_spec_ptr->filter_rule.protocol_eq_present;
  444. q6_ul_flt_rule_ptr->eq_attrib.protocol_eq =
  445. flt_spec_ptr->filter_rule.protocol_eq;
  446. q6_ul_flt_rule_ptr->eq_attrib.num_ihl_offset_range_16 =
  447. flt_spec_ptr->filter_rule.num_ihl_offset_range_16;
  448. for (j = 0;
  449. j < q6_ul_flt_rule_ptr->eq_attrib.num_ihl_offset_range_16;
  450. j++) {
  451. q6_ul_filter_nat_ptr =
  452. &q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_range_16[j];
  453. filter_spec_nat_ptr =
  454. &flt_spec_ptr->filter_rule.ihl_offset_range_16[j];
  455. q6_ul_filter_nat_ptr->offset =
  456. filter_spec_nat_ptr->offset;
  457. q6_ul_filter_nat_ptr->range_low =
  458. filter_spec_nat_ptr->range_low;
  459. q6_ul_filter_nat_ptr->range_high =
  460. filter_spec_nat_ptr->range_high;
  461. }
  462. q6_ul_flt_rule_ptr->eq_attrib.num_offset_meq_32 =
  463. flt_spec_ptr->filter_rule.num_offset_meq_32;
  464. for (j = 0;
  465. j < q6_ul_flt_rule_ptr->eq_attrib.num_offset_meq_32;
  466. j++) {
  467. q6_ul_flt_rule_ptr->eq_attrib.offset_meq_32[j].offset =
  468. flt_spec_ptr->filter_rule.offset_meq_32[j].offset;
  469. q6_ul_flt_rule_ptr->eq_attrib.offset_meq_32[j].mask =
  470. flt_spec_ptr->filter_rule.offset_meq_32[j].mask;
  471. q6_ul_flt_rule_ptr->eq_attrib.offset_meq_32[j].value =
  472. flt_spec_ptr->filter_rule.offset_meq_32[j].value;
  473. }
  474. q6_ul_flt_rule_ptr->eq_attrib.tc_eq_present =
  475. flt_spec_ptr->filter_rule.tc_eq_present;
  476. q6_ul_flt_rule_ptr->eq_attrib.tc_eq =
  477. flt_spec_ptr->filter_rule.tc_eq;
  478. q6_ul_flt_rule_ptr->eq_attrib.fl_eq_present =
  479. flt_spec_ptr->filter_rule.flow_eq_present;
  480. q6_ul_flt_rule_ptr->eq_attrib.fl_eq =
  481. flt_spec_ptr->filter_rule.flow_eq;
  482. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_eq_16_present =
  483. flt_spec_ptr->filter_rule.ihl_offset_eq_16_present;
  484. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_eq_16.offset =
  485. flt_spec_ptr->filter_rule.ihl_offset_eq_16.offset;
  486. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_eq_16.value =
  487. flt_spec_ptr->filter_rule.ihl_offset_eq_16.value;
  488. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_eq_32_present =
  489. flt_spec_ptr->filter_rule.ihl_offset_eq_32_present;
  490. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_eq_32.offset =
  491. flt_spec_ptr->filter_rule.ihl_offset_eq_32.offset;
  492. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_eq_32.value =
  493. flt_spec_ptr->filter_rule.ihl_offset_eq_32.value;
  494. q6_ul_flt_rule_ptr->eq_attrib.num_ihl_offset_meq_32 =
  495. flt_spec_ptr->filter_rule.num_ihl_offset_meq_32;
  496. for (j = 0;
  497. j < q6_ul_flt_rule_ptr->eq_attrib.num_ihl_offset_meq_32;
  498. j++) {
  499. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_meq_32[j].offset =
  500. flt_spec_ptr->filter_rule.ihl_offset_meq_32[j].offset;
  501. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_meq_32[j].mask =
  502. flt_spec_ptr->filter_rule.ihl_offset_meq_32[j].mask;
  503. q6_ul_flt_rule_ptr->eq_attrib.ihl_offset_meq_32[j].value =
  504. flt_spec_ptr->filter_rule.ihl_offset_meq_32[j].value;
  505. }
  506. q6_ul_flt_rule_ptr->eq_attrib.num_offset_meq_128 =
  507. flt_spec_ptr->filter_rule.num_offset_meq_128;
  508. for (j = 0;
  509. j < q6_ul_flt_rule_ptr->eq_attrib.num_offset_meq_128;
  510. j++) {
  511. q6_ul_flt_rule_ptr->eq_attrib.offset_meq_128[j].offset =
  512. flt_spec_ptr->filter_rule.offset_meq_128[j].offset;
  513. memcpy(q6_ul_flt_rule_ptr->eq_attrib.offset_meq_128[j].mask,
  514. flt_spec_ptr->filter_rule.offset_meq_128[j].mask, 16);
  515. memcpy(q6_ul_flt_rule_ptr->eq_attrib.offset_meq_128[j].value,
  516. flt_spec_ptr->filter_rule.offset_meq_128[j].value, 16);
  517. }
  518. q6_ul_flt_rule_ptr->eq_attrib.metadata_meq32_present =
  519. flt_spec_ptr->filter_rule.metadata_meq32_present;
  520. q6_ul_flt_rule_ptr->eq_attrib.metadata_meq32.offset =
  521. flt_spec_ptr->filter_rule.metadata_meq32.offset;
  522. q6_ul_flt_rule_ptr->eq_attrib.metadata_meq32.mask =
  523. flt_spec_ptr->filter_rule.metadata_meq32.mask;
  524. q6_ul_flt_rule_ptr->eq_attrib.metadata_meq32.value =
  525. flt_spec_ptr->filter_rule.metadata_meq32.value;
  526. q6_ul_flt_rule_ptr->eq_attrib.ipv4_frag_eq_present =
  527. flt_spec_ptr->filter_rule.ipv4_frag_eq_present;
  528. }
  529. int ipa3_copy_ul_filter_rule_to_ipa(struct ipa_install_fltr_rule_req_msg_v01
  530. *rule_req)
  531. {
  532. int i;
  533. /* prevent multi-threads accessing rmnet_ipa3_ctx->num_q6_rules */
  534. mutex_lock(&rmnet_ipa3_ctx->add_mux_channel_lock);
  535. if (rule_req->filter_spec_ex_list_valid == true &&
  536. rule_req->filter_spec_ex2_list_valid == false) {
  537. rmnet_ipa3_ctx->num_q6_rules =
  538. rule_req->filter_spec_ex_list_len;
  539. IPAWANDBG("Received (%d) install_flt_req_ex_list\n",
  540. rmnet_ipa3_ctx->num_q6_rules);
  541. } else if (rule_req->filter_spec_ex2_list_valid == true &&
  542. rule_req->filter_spec_ex_list_valid == false) {
  543. rmnet_ipa3_ctx->num_q6_rules =
  544. rule_req->filter_spec_ex2_list_len;
  545. IPAWANDBG("Received (%d) install_flt_req_ex2_list\n",
  546. rmnet_ipa3_ctx->num_q6_rules);
  547. } else {
  548. rmnet_ipa3_ctx->num_q6_rules = 0;
  549. if (rule_req->filter_spec_ex2_list_valid == true)
  550. IPAWANERR(
  551. "both ex and ex2 flt rules are set to valid\n");
  552. else
  553. IPAWANERR("got no UL rules from modem\n");
  554. mutex_unlock(
  555. &rmnet_ipa3_ctx->add_mux_channel_lock);
  556. return -EINVAL;
  557. }
  558. /* copy UL filter rules from Modem*/
  559. for (i = 0; i < rmnet_ipa3_ctx->num_q6_rules; i++) {
  560. /* check if rules overside the cache*/
  561. if (i == MAX_NUM_Q6_RULE) {
  562. IPAWANERR("Reaching (%d) max cache ",
  563. MAX_NUM_Q6_RULE);
  564. IPAWANERR(" however total (%d)\n",
  565. rmnet_ipa3_ctx->num_q6_rules);
  566. goto failure;
  567. }
  568. if (rule_req->filter_spec_ex_list_valid == true)
  569. ipa3_copy_qmi_flt_rule_ex(
  570. &ipa3_qmi_ctx->q6_ul_filter_rule[i],
  571. &rule_req->filter_spec_ex_list[i]);
  572. else if (rule_req->filter_spec_ex2_list_valid == true)
  573. ipa3_copy_qmi_flt_rule_ex(
  574. &ipa3_qmi_ctx->q6_ul_filter_rule[i],
  575. &rule_req->filter_spec_ex2_list[i]);
  576. }
  577. if (rule_req->xlat_filter_indices_list_valid) {
  578. if (rule_req->xlat_filter_indices_list_len >
  579. rmnet_ipa3_ctx->num_q6_rules) {
  580. IPAWANERR("Number of xlat indices is not valid: %d\n",
  581. rule_req->xlat_filter_indices_list_len);
  582. goto failure;
  583. }
  584. IPAWANDBG("Receive %d XLAT indices: ",
  585. rule_req->xlat_filter_indices_list_len);
  586. for (i = 0; i < rule_req->xlat_filter_indices_list_len; i++)
  587. IPAWANDBG("%d ", rule_req->xlat_filter_indices_list[i]);
  588. IPAWANDBG("\n");
  589. for (i = 0; i < rule_req->xlat_filter_indices_list_len; i++) {
  590. if (rule_req->xlat_filter_indices_list[i]
  591. >= rmnet_ipa3_ctx->num_q6_rules) {
  592. IPAWANERR("Xlat rule idx is wrong: %d\n",
  593. rule_req->xlat_filter_indices_list[i]);
  594. goto failure;
  595. } else {
  596. ipa3_qmi_ctx->q6_ul_filter_rule
  597. [rule_req->xlat_filter_indices_list[i]]
  598. .is_xlat_rule = 1;
  599. IPAWANDBG("Rule %d is xlat rule\n",
  600. rule_req->xlat_filter_indices_list[i]);
  601. }
  602. }
  603. }
  604. goto success;
  605. failure:
  606. rmnet_ipa3_ctx->num_q6_rules = 0;
  607. memset(ipa3_qmi_ctx->q6_ul_filter_rule, 0,
  608. sizeof(ipa3_qmi_ctx->q6_ul_filter_rule));
  609. mutex_unlock(
  610. &rmnet_ipa3_ctx->add_mux_channel_lock);
  611. return -EINVAL;
  612. success:
  613. mutex_unlock(
  614. &rmnet_ipa3_ctx->add_mux_channel_lock);
  615. return 0;
  616. }
  617. static int ipa3_wwan_add_ul_flt_rule_to_ipa(void)
  618. {
  619. u32 pyld_sz;
  620. int i, retval = 0;
  621. struct ipa_ioc_add_flt_rule *param;
  622. struct ipa_flt_rule_add flt_rule_entry;
  623. struct ipa_fltr_installed_notif_req_msg_v01 *req;
  624. pyld_sz = sizeof(struct ipa_ioc_add_flt_rule) +
  625. sizeof(struct ipa_flt_rule_add);
  626. param = kzalloc(pyld_sz, GFP_KERNEL);
  627. if (!param)
  628. return -ENOMEM;
  629. req = kzalloc(sizeof(struct ipa_fltr_installed_notif_req_msg_v01),
  630. GFP_KERNEL);
  631. if (!req) {
  632. kfree(param);
  633. return -ENOMEM;
  634. }
  635. param->commit = 1;
  636. param->ep = IPA_CLIENT_APPS_WAN_PROD;
  637. param->global = false;
  638. param->num_rules = (uint8_t)1;
  639. memset(req, 0, sizeof(struct ipa_fltr_installed_notif_req_msg_v01));
  640. for (i = 0; i < rmnet_ipa3_ctx->num_q6_rules; i++) {
  641. param->ip = ipa3_qmi_ctx->q6_ul_filter_rule[i].ip;
  642. memset(&flt_rule_entry, 0, sizeof(struct ipa_flt_rule_add));
  643. flt_rule_entry.at_rear = true;
  644. flt_rule_entry.rule.action =
  645. ipa3_qmi_ctx->q6_ul_filter_rule[i].action;
  646. flt_rule_entry.rule.rt_tbl_idx
  647. = ipa3_qmi_ctx->q6_ul_filter_rule[i].rt_tbl_idx;
  648. flt_rule_entry.rule.retain_hdr = true;
  649. flt_rule_entry.rule.hashable =
  650. ipa3_qmi_ctx->q6_ul_filter_rule[i].is_rule_hashable;
  651. flt_rule_entry.rule.rule_id =
  652. ipa3_qmi_ctx->q6_ul_filter_rule[i].rule_id;
  653. /* debug rt-hdl*/
  654. IPAWANDBG("install-IPA index(%d),rt-tbl:(%d)\n",
  655. i, flt_rule_entry.rule.rt_tbl_idx);
  656. flt_rule_entry.rule.eq_attrib_type = true;
  657. memcpy(&(flt_rule_entry.rule.eq_attrib),
  658. &ipa3_qmi_ctx->q6_ul_filter_rule[i].eq_attrib,
  659. sizeof(struct ipa_ipfltri_rule_eq));
  660. memcpy(&(param->rules[0]), &flt_rule_entry,
  661. sizeof(struct ipa_flt_rule_add));
  662. if (ipa3_add_flt_rule((struct ipa_ioc_add_flt_rule *)param)) {
  663. retval = -EFAULT;
  664. IPAWANERR("add A7 UL filter rule(%d) failed\n", i);
  665. } else {
  666. /* store the rule handler */
  667. ipa3_qmi_ctx->q6_ul_filter_rule_hdl[i] =
  668. param->rules[0].flt_rule_hdl;
  669. }
  670. }
  671. /* send ipa_fltr_installed_notif_req_msg_v01 to Q6*/
  672. req->source_pipe_index =
  673. ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_PROD);
  674. if (req->source_pipe_index == IPA_EP_NOT_ALLOCATED) {
  675. IPAWANERR("ep mapping failed\n");
  676. retval = -EFAULT;
  677. }
  678. req->install_status = QMI_RESULT_SUCCESS_V01;
  679. req->rule_id_valid = 1;
  680. req->rule_id_len = rmnet_ipa3_ctx->num_q6_rules;
  681. for (i = 0; i < rmnet_ipa3_ctx->num_q6_rules; i++) {
  682. req->rule_id[i] =
  683. ipa3_qmi_ctx->q6_ul_filter_rule[i].rule_id;
  684. }
  685. if (ipa3_qmi_filter_notify_send(req)) {
  686. IPAWANDBG("add filter rule index on A7-RX failed\n");
  687. retval = -EFAULT;
  688. }
  689. rmnet_ipa3_ctx->old_num_q6_rules = rmnet_ipa3_ctx->num_q6_rules;
  690. IPAWANDBG("add (%d) filter rule index on A7-RX\n",
  691. rmnet_ipa3_ctx->old_num_q6_rules);
  692. kfree(param);
  693. kfree(req);
  694. return retval;
  695. }
  696. static int ipa3_wwan_del_ul_flt_rule_to_ipa(void)
  697. {
  698. u32 pyld_sz;
  699. int i, retval = 0;
  700. struct ipa_ioc_del_flt_rule *param;
  701. struct ipa_flt_rule_del flt_rule_entry;
  702. pyld_sz = sizeof(struct ipa_ioc_del_flt_rule) +
  703. sizeof(struct ipa_flt_rule_del);
  704. param = kzalloc(pyld_sz, GFP_KERNEL);
  705. if (!param)
  706. return -ENOMEM;
  707. param->commit = 1;
  708. param->num_hdls = (uint8_t) 1;
  709. for (i = 0; i < rmnet_ipa3_ctx->old_num_q6_rules; i++) {
  710. param->ip = ipa3_qmi_ctx->q6_ul_filter_rule[i].ip;
  711. memset(&flt_rule_entry, 0, sizeof(struct ipa_flt_rule_del));
  712. flt_rule_entry.hdl = ipa3_qmi_ctx->q6_ul_filter_rule_hdl[i];
  713. /* debug rt-hdl*/
  714. IPAWANDBG("delete-IPA rule index(%d)\n", i);
  715. memcpy(&(param->hdl[0]), &flt_rule_entry,
  716. sizeof(struct ipa_flt_rule_del));
  717. if (ipa3_del_flt_rule((struct ipa_ioc_del_flt_rule *)param)) {
  718. IPAWANERR("del A7 UL filter rule(%d) failed\n", i);
  719. kfree(param);
  720. return -EFAULT;
  721. }
  722. }
  723. /* set UL filter-rule add-indication */
  724. rmnet_ipa3_ctx->a7_ul_flt_set = false;
  725. rmnet_ipa3_ctx->old_num_q6_rules = 0;
  726. kfree(param);
  727. return retval;
  728. }
  729. static int ipa3_find_mux_channel_index(uint32_t mux_id)
  730. {
  731. int i;
  732. for (i = 0; i < MAX_NUM_OF_MUX_CHANNEL; i++) {
  733. if (mux_id == rmnet_ipa3_ctx->mux_channel[i].mux_id)
  734. return i;
  735. }
  736. return MAX_NUM_OF_MUX_CHANNEL;
  737. }
  738. static int find_vchannel_name_index(const char *vchannel_name)
  739. {
  740. int i;
  741. for (i = 0; i < rmnet_ipa3_ctx->rmnet_index; i++) {
  742. if (strcmp(rmnet_ipa3_ctx->mux_channel[i].vchannel_name,
  743. vchannel_name) == 0)
  744. return i;
  745. }
  746. return MAX_NUM_OF_MUX_CHANNEL;
  747. }
  748. static enum ipa_upstream_type find_upstream_type(const char *upstreamIface)
  749. {
  750. int i;
  751. for (i = 0; i < MAX_NUM_OF_MUX_CHANNEL; i++) {
  752. if (strcmp(rmnet_ipa3_ctx->mux_channel[i].vchannel_name,
  753. upstreamIface) == 0)
  754. return IPA_UPSTEAM_MODEM;
  755. }
  756. if ((strcmp(IPA_UPSTEAM_WLAN_IFACE_NAME, upstreamIface) == 0) ||
  757. (strcmp(IPA_UPSTEAM_WLAN1_IFACE_NAME, upstreamIface) == 0))
  758. return IPA_UPSTEAM_WLAN;
  759. else
  760. return MAX_NUM_OF_MUX_CHANNEL;
  761. }
  762. static int ipa3_wwan_register_to_ipa(int index)
  763. {
  764. struct ipa_tx_intf tx_properties = {0};
  765. struct ipa_ioc_tx_intf_prop tx_ioc_properties[2] = { {0}, {0} };
  766. struct ipa_ioc_tx_intf_prop *tx_ipv4_property;
  767. struct ipa_ioc_tx_intf_prop *tx_ipv6_property;
  768. struct ipa_rx_intf rx_properties = {0};
  769. struct ipa_ioc_rx_intf_prop rx_ioc_properties[2] = { {0}, {0} };
  770. struct ipa_ioc_rx_intf_prop *rx_ipv4_property;
  771. struct ipa_ioc_rx_intf_prop *rx_ipv6_property;
  772. struct ipa_ext_intf ext_properties = {0};
  773. struct ipa_ioc_ext_intf_prop *ext_ioc_properties;
  774. u32 pyld_sz;
  775. int ret = 0, i;
  776. IPAWANDBG("index(%d) device[%s]:\n", index,
  777. rmnet_ipa3_ctx->mux_channel[index].vchannel_name);
  778. if (!rmnet_ipa3_ctx->mux_channel[index].mux_hdr_set) {
  779. ret = ipa3_add_qmap_hdr(
  780. rmnet_ipa3_ctx->mux_channel[index].mux_id,
  781. &rmnet_ipa3_ctx->mux_channel[index].hdr_hdl);
  782. if (ret) {
  783. IPAWANERR("ipa_add_mux_hdr failed (%d)\n", index);
  784. return ret;
  785. }
  786. rmnet_ipa3_ctx->mux_channel[index].mux_hdr_set = true;
  787. }
  788. tx_properties.prop = tx_ioc_properties;
  789. tx_ipv4_property = &tx_properties.prop[0];
  790. tx_ipv4_property->ip = IPA_IP_v4;
  791. if (rmnet_ipa3_ctx->ipa_config_is_apq)
  792. tx_ipv4_property->dst_pipe = IPA_CLIENT_MHI_PRIME_TETH_CONS;
  793. else
  794. tx_ipv4_property->dst_pipe = IPA_CLIENT_APPS_WAN_CONS;
  795. snprintf(tx_ipv4_property->hdr_name, IPA_RESOURCE_NAME_MAX, "%s%d",
  796. A2_MUX_HDR_NAME_V4_PREF,
  797. rmnet_ipa3_ctx->mux_channel[index].mux_id);
  798. tx_ipv6_property = &tx_properties.prop[1];
  799. tx_ipv6_property->ip = IPA_IP_v6;
  800. if (rmnet_ipa3_ctx->ipa_config_is_apq)
  801. tx_ipv6_property->dst_pipe = IPA_CLIENT_MHI_PRIME_TETH_CONS;
  802. else
  803. tx_ipv6_property->dst_pipe = IPA_CLIENT_APPS_WAN_CONS;
  804. /* no need use A2_MUX_HDR_NAME_V6_PREF, same header */
  805. snprintf(tx_ipv6_property->hdr_name, IPA_RESOURCE_NAME_MAX, "%s%d",
  806. A2_MUX_HDR_NAME_V4_PREF,
  807. rmnet_ipa3_ctx->mux_channel[index].mux_id);
  808. tx_properties.num_props = 2;
  809. rx_properties.prop = rx_ioc_properties;
  810. rx_ipv4_property = &rx_properties.prop[0];
  811. rx_ipv4_property->ip = IPA_IP_v4;
  812. rx_ipv4_property->attrib.attrib_mask |= IPA_FLT_META_DATA;
  813. rx_ipv4_property->attrib.meta_data =
  814. rmnet_ipa3_ctx->mux_channel[index].mux_id << WWAN_METADATA_SHFT;
  815. rx_ipv4_property->attrib.meta_data_mask = WWAN_METADATA_MASK;
  816. if (rmnet_ipa3_ctx->ipa_config_is_apq)
  817. rx_ipv4_property->src_pipe = IPA_CLIENT_MHI_PRIME_TETH_PROD;
  818. else
  819. rx_ipv4_property->src_pipe = IPA_CLIENT_APPS_WAN_PROD;
  820. rx_ipv6_property = &rx_properties.prop[1];
  821. rx_ipv6_property->ip = IPA_IP_v6;
  822. rx_ipv6_property->attrib.attrib_mask |= IPA_FLT_META_DATA;
  823. rx_ipv6_property->attrib.meta_data =
  824. rmnet_ipa3_ctx->mux_channel[index].mux_id << WWAN_METADATA_SHFT;
  825. rx_ipv6_property->attrib.meta_data_mask = WWAN_METADATA_MASK;
  826. if (rmnet_ipa3_ctx->ipa_config_is_apq)
  827. rx_ipv6_property->src_pipe = IPA_CLIENT_MHI_PRIME_TETH_PROD;
  828. else
  829. rx_ipv6_property->src_pipe = IPA_CLIENT_APPS_WAN_PROD;
  830. rx_properties.num_props = 2;
  831. if (rmnet_ipa3_ctx->ipa_config_is_apq) {
  832. /* provide mux-id to ipacm in apq platform*/
  833. pyld_sz = sizeof(struct ipa_ioc_ext_intf_prop);
  834. ext_ioc_properties = kmalloc(pyld_sz, GFP_KERNEL);
  835. if (!ext_ioc_properties)
  836. return -ENOMEM;
  837. ext_properties.prop = ext_ioc_properties;
  838. ext_properties.num_props = 1;
  839. ext_properties.prop[0].mux_id =
  840. rmnet_ipa3_ctx->mux_channel[index].mux_id;
  841. ext_properties.prop[0].ip = IPA_IP_MAX;
  842. IPAWANDBG("ip: %d mux:%d\n",
  843. ext_properties.prop[0].ip,
  844. ext_properties.prop[0].mux_id);
  845. ret = ipa3_register_intf_ext(
  846. rmnet_ipa3_ctx->mux_channel[index].vchannel_name,
  847. &tx_properties,
  848. &rx_properties,
  849. &ext_properties);
  850. if (ret) {
  851. IPAWANERR("[%d]ipa3_register_intf failed %d\n",
  852. index,
  853. ret);
  854. goto fail;
  855. }
  856. goto end;
  857. }
  858. /* non apq case */
  859. pyld_sz = rmnet_ipa3_ctx->num_q6_rules *
  860. sizeof(struct ipa_ioc_ext_intf_prop);
  861. ext_ioc_properties = kmalloc(pyld_sz, GFP_KERNEL);
  862. if (!ext_ioc_properties)
  863. return -ENOMEM;
  864. ext_properties.prop = ext_ioc_properties;
  865. ext_properties.excp_pipe_valid = true;
  866. ext_properties.excp_pipe = IPA_CLIENT_APPS_WAN_CONS;
  867. ext_properties.num_props = rmnet_ipa3_ctx->num_q6_rules;
  868. for (i = 0; i < rmnet_ipa3_ctx->num_q6_rules; i++) {
  869. memcpy(&(ext_properties.prop[i]),
  870. &(ipa3_qmi_ctx->q6_ul_filter_rule[i]),
  871. sizeof(struct ipa_ioc_ext_intf_prop));
  872. ext_properties.prop[i].mux_id =
  873. rmnet_ipa3_ctx->mux_channel[index].mux_id;
  874. IPAWANDBG("index %d ip: %d rt-tbl:%d\n", i,
  875. ext_properties.prop[i].ip,
  876. ext_properties.prop[i].rt_tbl_idx);
  877. IPAWANDBG("action: %d mux:%d\n",
  878. ext_properties.prop[i].action,
  879. ext_properties.prop[i].mux_id);
  880. }
  881. ret = ipa3_register_intf_ext(
  882. rmnet_ipa3_ctx->mux_channel[index].vchannel_name,
  883. &tx_properties,
  884. &rx_properties,
  885. &ext_properties);
  886. if (ret) {
  887. IPAWANERR("[%s]:ipa3_register_intf failed %d\n",
  888. rmnet_ipa3_ctx->mux_channel[index].vchannel_name,
  889. ret);
  890. goto fail;
  891. }
  892. end:
  893. rmnet_ipa3_ctx->mux_channel[index].ul_flt_reg = true;
  894. fail:
  895. kfree(ext_ioc_properties);
  896. return ret;
  897. }
  898. static void ipa3_cleanup_deregister_intf(void)
  899. {
  900. int i;
  901. int ret;
  902. int8_t *v_name;
  903. for (i = 0; i < rmnet_ipa3_ctx->rmnet_index; i++) {
  904. v_name = rmnet_ipa3_ctx->mux_channel[i].vchannel_name;
  905. if (rmnet_ipa3_ctx->mux_channel[i].ul_flt_reg) {
  906. ret = ipa3_deregister_intf(v_name);
  907. if (ret < 0) {
  908. IPAWANERR("de-register device %s(%d) failed\n",
  909. v_name,
  910. i);
  911. return;
  912. }
  913. IPAWANDBG("de-register device %s(%d) success\n",
  914. v_name,
  915. i);
  916. }
  917. rmnet_ipa3_ctx->mux_channel[i].ul_flt_reg = false;
  918. }
  919. }
  920. int ipa3_wwan_update_mux_channel_prop(void)
  921. {
  922. int ret = 0, i;
  923. /* install UL filter rules */
  924. if (rmnet_ipa3_ctx->egress_set) {
  925. if (!ipa3_qmi_ctx->modem_cfg_emb_pipe_flt) {
  926. IPAWANDBG("setup UL filter rules\n");
  927. if (rmnet_ipa3_ctx->a7_ul_flt_set) {
  928. IPAWANDBG("del previous UL filter rules\n");
  929. /* delete rule hdlers */
  930. ret = ipa3_wwan_del_ul_flt_rule_to_ipa();
  931. if (ret) {
  932. IPAWANERR("failed to del old rules\n");
  933. return -EINVAL;
  934. }
  935. IPAWANDBG("deleted old UL rules\n");
  936. }
  937. ret = ipa3_wwan_add_ul_flt_rule_to_ipa();
  938. }
  939. if (ret)
  940. IPAWANERR("failed to install UL rules\n");
  941. else
  942. rmnet_ipa3_ctx->a7_ul_flt_set = true;
  943. }
  944. /* update Tx/Rx/Ext property */
  945. IPAWANDBG("update Tx/Rx/Ext property in IPA\n");
  946. if (rmnet_ipa3_ctx->rmnet_index == 0) {
  947. IPAWANDBG("no Tx/Rx/Ext property registered in IPA\n");
  948. return ret;
  949. }
  950. ipa3_cleanup_deregister_intf();
  951. for (i = 0; i < rmnet_ipa3_ctx->rmnet_index; i++) {
  952. ret = ipa3_wwan_register_to_ipa(i);
  953. if (ret < 0) {
  954. IPAWANERR("failed to re-regist %s, mux %d, index %d\n",
  955. rmnet_ipa3_ctx->mux_channel[i].vchannel_name,
  956. rmnet_ipa3_ctx->mux_channel[i].mux_id,
  957. i);
  958. return -ENODEV;
  959. }
  960. IPAWANERR("dev(%s) has registered to IPA\n",
  961. rmnet_ipa3_ctx->mux_channel[i].vchannel_name);
  962. rmnet_ipa3_ctx->mux_channel[i].ul_flt_reg = true;
  963. }
  964. return ret;
  965. }
  966. #ifdef INIT_COMPLETION
  967. #define reinit_completion(x) INIT_COMPLETION(*(x))
  968. #endif /* INIT_COMPLETION */
  969. static int __ipa_wwan_open(struct net_device *dev)
  970. {
  971. struct ipa3_wwan_private *wwan_ptr = netdev_priv(dev);
  972. IPAWANDBG("[%s] __wwan_open()\n", dev->name);
  973. if (wwan_ptr->device_status != WWAN_DEVICE_ACTIVE)
  974. reinit_completion(&wwan_ptr->resource_granted_completion);
  975. wwan_ptr->device_status = WWAN_DEVICE_ACTIVE;
  976. if (ipa3_rmnet_res.ipa_napi_enable)
  977. napi_enable(&(wwan_ptr->napi));
  978. return 0;
  979. }
  980. /**
  981. * wwan_open() - Opens the wwan network interface. Opens logical
  982. * channel on A2 MUX driver and starts the network stack queue
  983. *
  984. * @dev: network device
  985. *
  986. * Return codes:
  987. * 0: success
  988. * -ENODEV: Error while opening logical channel on A2 MUX driver
  989. */
  990. static int ipa3_wwan_open(struct net_device *dev)
  991. {
  992. int rc = 0;
  993. IPAWANDBG("[%s] wwan_open()\n", dev->name);
  994. rc = __ipa_wwan_open(dev);
  995. if (rc == 0)
  996. netif_start_queue(dev);
  997. return rc;
  998. }
  999. static int __ipa_wwan_close(struct net_device *dev)
  1000. {
  1001. struct ipa3_wwan_private *wwan_ptr = netdev_priv(dev);
  1002. int rc = 0;
  1003. if (wwan_ptr->device_status == WWAN_DEVICE_ACTIVE) {
  1004. wwan_ptr->device_status = WWAN_DEVICE_INACTIVE;
  1005. /* do not close wwan port once up, this causes
  1006. * remote side to hang if tried to open again
  1007. */
  1008. reinit_completion(&wwan_ptr->resource_granted_completion);
  1009. rc = ipa3_deregister_intf(dev->name);
  1010. if (rc) {
  1011. IPAWANERR("[%s]: ipa3_deregister_intf failed %d\n",
  1012. dev->name, rc);
  1013. return rc;
  1014. }
  1015. return rc;
  1016. } else {
  1017. return -EBADF;
  1018. }
  1019. }
  1020. /**
  1021. * ipa3_wwan_stop() - Stops the wwan network interface. Closes
  1022. * logical channel on A2 MUX driver and stops the network stack
  1023. * queue
  1024. *
  1025. * @dev: network device
  1026. *
  1027. * Return codes:
  1028. * 0: success
  1029. * -ENODEV: Error while opening logical channel on A2 MUX driver
  1030. */
  1031. static int ipa3_wwan_stop(struct net_device *dev)
  1032. {
  1033. struct ipa3_wwan_private *wwan_ptr = netdev_priv(dev);
  1034. IPAWANDBG("[%s]\n", dev->name);
  1035. __ipa_wwan_close(dev);
  1036. if (ipa3_rmnet_res.ipa_napi_enable)
  1037. napi_disable(&(wwan_ptr->napi));
  1038. netif_stop_queue(dev);
  1039. return 0;
  1040. }
  1041. static int ipa3_wwan_change_mtu(struct net_device *dev, int new_mtu)
  1042. {
  1043. if (0 > new_mtu || WWAN_DATA_LEN < new_mtu)
  1044. return -EINVAL;
  1045. IPAWANDBG("[%s] MTU change: old=%d new=%d\n",
  1046. dev->name, dev->mtu, new_mtu);
  1047. dev->mtu = new_mtu;
  1048. return 0;
  1049. }
  1050. /**
  1051. * ipa3_wwan_xmit() - Transmits an skb.
  1052. *
  1053. * @skb: skb to be transmitted
  1054. * @dev: network device
  1055. *
  1056. * Return codes:
  1057. * 0: success
  1058. * NETDEV_TX_BUSY: Error while transmitting the skb. Try again
  1059. * later
  1060. * -EFAULT: Error while transmitting the skb
  1061. */
  1062. static int ipa3_wwan_xmit(struct sk_buff *skb, struct net_device *dev)
  1063. {
  1064. int ret = 0;
  1065. bool qmap_check;
  1066. struct ipa3_wwan_private *wwan_ptr = netdev_priv(dev);
  1067. unsigned long flags;
  1068. if (rmnet_ipa3_ctx->ipa_config_is_apq) {
  1069. IPAWANERR_RL("IPA embedded data on APQ platform\n");
  1070. dev_kfree_skb_any(skb);
  1071. dev->stats.tx_dropped++;
  1072. return NETDEV_TX_OK;
  1073. }
  1074. if (skb->protocol != htons(ETH_P_MAP)) {
  1075. IPAWANDBG_LOW
  1076. ("SW filtering out none QMAP packet received from %s",
  1077. current->comm);
  1078. dev_kfree_skb_any(skb);
  1079. dev->stats.tx_dropped++;
  1080. return NETDEV_TX_OK;
  1081. }
  1082. qmap_check = RMNET_MAP_GET_CD_BIT(skb);
  1083. spin_lock_irqsave(&wwan_ptr->lock, flags);
  1084. /* There can be a race between enabling the wake queue and
  1085. * suspend in progress. Check if suspend is pending and
  1086. * return from here itself.
  1087. */
  1088. if (atomic_read(&rmnet_ipa3_ctx->ap_suspend)) {
  1089. netif_stop_queue(dev);
  1090. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1091. return NETDEV_TX_BUSY;
  1092. }
  1093. if (netif_queue_stopped(dev)) {
  1094. if (qmap_check &&
  1095. atomic_read(&wwan_ptr->outstanding_pkts) <
  1096. rmnet_ipa3_ctx->outstanding_high_ctl) {
  1097. IPAWANERR("[%s]Queue stop, send ctrl pkts\n",
  1098. dev->name);
  1099. goto send;
  1100. } else {
  1101. IPAWANERR("[%s]fatal: %s stopped\n", dev->name,
  1102. __func__);
  1103. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1104. return NETDEV_TX_BUSY;
  1105. }
  1106. }
  1107. /* checking High WM hit */
  1108. if (atomic_read(&wwan_ptr->outstanding_pkts) >=
  1109. rmnet_ipa3_ctx->outstanding_high) {
  1110. if (!qmap_check) {
  1111. IPAWANDBG_LOW("pending(%d)/(%d)- stop(%d)\n",
  1112. atomic_read(&wwan_ptr->outstanding_pkts),
  1113. rmnet_ipa3_ctx->outstanding_high,
  1114. netif_queue_stopped(dev));
  1115. IPAWANDBG_LOW("qmap_chk(%d)\n", qmap_check);
  1116. netif_stop_queue(dev);
  1117. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1118. return NETDEV_TX_BUSY;
  1119. }
  1120. }
  1121. send:
  1122. /* IPA_PM checking start */
  1123. /* activate the modem pm for clock scaling */
  1124. ipa_pm_activate(rmnet_ipa3_ctx->q6_pm_hdl);
  1125. ret = ipa_pm_activate(rmnet_ipa3_ctx->pm_hdl);
  1126. if (ret == -EINPROGRESS) {
  1127. netif_stop_queue(dev);
  1128. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1129. return NETDEV_TX_BUSY;
  1130. }
  1131. if (ret) {
  1132. IPAWANERR("[%s] fatal: ipa pm activate failed %d\n",
  1133. dev->name, ret);
  1134. dev_kfree_skb_any(skb);
  1135. dev->stats.tx_dropped++;
  1136. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1137. return NETDEV_TX_OK;
  1138. }
  1139. /* IPA_PM checking end */
  1140. /*
  1141. * both data packets and command will be routed to
  1142. * IPA_CLIENT_Q6_WAN_CONS based on status configuration
  1143. */
  1144. ret = ipa3_tx_dp(IPA_CLIENT_APPS_WAN_PROD, skb, NULL);
  1145. if (ret) {
  1146. if (ret == -EPIPE) {
  1147. IPAWANERR_RL("[%s] fatal: pipe is not valid\n",
  1148. dev->name);
  1149. dev_kfree_skb_any(skb);
  1150. dev->stats.tx_dropped++;
  1151. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1152. return NETDEV_TX_OK;
  1153. }
  1154. ret = NETDEV_TX_BUSY;
  1155. goto out;
  1156. }
  1157. atomic_inc(&wwan_ptr->outstanding_pkts);
  1158. dev->stats.tx_packets++;
  1159. dev->stats.tx_bytes += skb->len;
  1160. ret = NETDEV_TX_OK;
  1161. out:
  1162. if (atomic_read(&wwan_ptr->outstanding_pkts) == 0) {
  1163. ipa_pm_deferred_deactivate(rmnet_ipa3_ctx->pm_hdl);
  1164. ipa_pm_deferred_deactivate(rmnet_ipa3_ctx->q6_pm_hdl);
  1165. }
  1166. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  1167. return ret;
  1168. }
  1169. static void ipa3_wwan_tx_timeout(struct net_device *dev)
  1170. {
  1171. struct ipa3_wwan_private *wwan_ptr = netdev_priv(dev);
  1172. if (atomic_read(&wwan_ptr->outstanding_pkts) != 0)
  1173. IPAWANERR("[%s] data stall in UL, %d outstanding\n",
  1174. dev->name, atomic_read(&wwan_ptr->outstanding_pkts));
  1175. }
  1176. /**
  1177. * apps_ipa_tx_complete_notify() - Rx notify
  1178. *
  1179. * @priv: driver context
  1180. * @evt: event type
  1181. * @data: data provided with event
  1182. *
  1183. * Check that the packet is the one we sent and release it
  1184. * This function will be called in defered context in IPA wq.
  1185. */
  1186. static void apps_ipa_tx_complete_notify(void *priv,
  1187. enum ipa_dp_evt_type evt,
  1188. unsigned long data)
  1189. {
  1190. struct sk_buff *skb = (struct sk_buff *)data;
  1191. struct net_device *dev = (struct net_device *)priv;
  1192. struct ipa3_wwan_private *wwan_ptr;
  1193. if (dev != IPA_NETDEV()) {
  1194. IPAWANDBG("Received pre-SSR packet completion\n");
  1195. dev_kfree_skb_any(skb);
  1196. return;
  1197. }
  1198. if (evt != IPA_WRITE_DONE) {
  1199. IPAWANERR("unsupported evt on Tx callback, Drop the packet\n");
  1200. dev_kfree_skb_any(skb);
  1201. dev->stats.tx_dropped++;
  1202. return;
  1203. }
  1204. wwan_ptr = netdev_priv(dev);
  1205. atomic_dec(&wwan_ptr->outstanding_pkts);
  1206. __netif_tx_lock_bh(netdev_get_tx_queue(dev, 0));
  1207. if (!atomic_read(&rmnet_ipa3_ctx->is_ssr) &&
  1208. netif_queue_stopped(wwan_ptr->net) &&
  1209. atomic_read(&wwan_ptr->outstanding_pkts) <
  1210. rmnet_ipa3_ctx->outstanding_low) {
  1211. IPAWANDBG_LOW("Outstanding low (%d) - waking up queue\n",
  1212. rmnet_ipa3_ctx->outstanding_low);
  1213. netif_wake_queue(wwan_ptr->net);
  1214. }
  1215. if (atomic_read(&wwan_ptr->outstanding_pkts) == 0) {
  1216. ipa_pm_deferred_deactivate(rmnet_ipa3_ctx->pm_hdl);
  1217. ipa_pm_deferred_deactivate(rmnet_ipa3_ctx->q6_pm_hdl);
  1218. }
  1219. __netif_tx_unlock_bh(netdev_get_tx_queue(dev, 0));
  1220. dev_kfree_skb_any(skb);
  1221. }
  1222. /**
  1223. * apps_ipa_packet_receive_notify() - Rx notify
  1224. *
  1225. * @priv: driver context
  1226. * @evt: event type
  1227. * @data: data provided with event
  1228. *
  1229. * IPA will pass a packet to the Linux network stack with skb->data
  1230. */
  1231. static void apps_ipa_packet_receive_notify(void *priv,
  1232. enum ipa_dp_evt_type evt,
  1233. unsigned long data)
  1234. {
  1235. struct net_device *dev = (struct net_device *)priv;
  1236. if (evt == IPA_RECEIVE) {
  1237. struct sk_buff *skb = (struct sk_buff *)data;
  1238. int result;
  1239. unsigned int packet_len = skb->len;
  1240. IPAWANDBG_LOW("Rx packet was received");
  1241. skb->dev = IPA_NETDEV();
  1242. skb->protocol = htons(ETH_P_MAP);
  1243. if (ipa3_rmnet_res.ipa_napi_enable) {
  1244. trace_rmnet_ipa_netif_rcv_skb3(dev->stats.rx_packets);
  1245. result = netif_receive_skb(skb);
  1246. } else {
  1247. if (dev->stats.rx_packets % IPA_WWAN_RX_SOFTIRQ_THRESH
  1248. == 0) {
  1249. trace_rmnet_ipa_netifni3(dev->stats.rx_packets);
  1250. result = netif_rx_ni(skb);
  1251. } else {
  1252. trace_rmnet_ipa_netifrx3(dev->stats.rx_packets);
  1253. result = netif_rx(skb);
  1254. }
  1255. }
  1256. if (result) {
  1257. pr_err_ratelimited(DEV_NAME " %s:%d fail on netif_receive_skb\n",
  1258. __func__, __LINE__);
  1259. dev->stats.rx_dropped++;
  1260. }
  1261. dev->stats.rx_packets++;
  1262. dev->stats.rx_bytes += packet_len;
  1263. } else {
  1264. IPAWANERR("Invalid evt %d received in wan_ipa_receive\n", evt);
  1265. }
  1266. }
  1267. /* Send RSC endpoint info to modem using QMI indication message */
  1268. static int ipa_send_rsc_pipe_ind_to_modem(void)
  1269. {
  1270. struct ipa_endp_desc_indication_msg_v01 req;
  1271. struct ipa_ep_id_type_v01 *ep_info;
  1272. memset(&req, 0, sizeof(struct ipa_endp_desc_indication_msg_v01));
  1273. req.ep_info_len = 1;
  1274. req.ep_info_valid = true;
  1275. req.num_eps_valid = true;
  1276. req.num_eps = 1;
  1277. ep_info = &req.ep_info[req.ep_info_len - 1];
  1278. ep_info->ep_id = rmnet_ipa3_ctx->ipa3_to_apps_hdl;
  1279. ep_info->ic_type = DATA_IC_TYPE_AP_V01;
  1280. ep_info->ep_type = DATA_EP_DESC_TYPE_RSC_PROD_V01;
  1281. ep_info->ep_status = DATA_EP_STATUS_CONNECTED_V01;
  1282. return ipa3_qmi_send_rsc_pipe_indication(&req);
  1283. }
  1284. static int handle3_ingress_format(struct net_device *dev,
  1285. struct rmnet_ioctl_extended_s *in)
  1286. {
  1287. int ret = 0;
  1288. struct ipa_sys_connect_params *ipa_wan_ep_cfg;
  1289. int ep_idx;
  1290. IPAWANDBG("Get RMNET_IOCTL_SET_INGRESS_DATA_FORMAT\n");
  1291. ep_idx = ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_CONS);
  1292. if (ep_idx == IPA_EP_NOT_ALLOCATED) {
  1293. IPAWANDBG("Embedded datapath not supported\n");
  1294. return -EFAULT;
  1295. }
  1296. ipa_wan_ep_cfg = &rmnet_ipa3_ctx->ipa_to_apps_ep_cfg;
  1297. if ((in->u.data) & RMNET_IOCTL_INGRESS_FORMAT_CHECKSUM) {
  1298. if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5)
  1299. ipa_wan_ep_cfg->ipa_ep_cfg.cfg.cs_offload_en =
  1300. IPA_ENABLE_CS_DL_QMAP;
  1301. else
  1302. ipa_wan_ep_cfg->ipa_ep_cfg.cfg.cs_offload_en =
  1303. IPA_ENABLE_CS_OFFLOAD_DL;
  1304. IPAWANDBG("DL chksum set\n");
  1305. }
  1306. if ((in->u.data) & RMNET_IOCTL_INGRESS_FORMAT_AGG_DATA) {
  1307. IPAWANDBG("get AGG size %d count %d\n",
  1308. in->u.ingress_format.agg_size,
  1309. in->u.ingress_format.agg_count);
  1310. ret = ipa_disable_apps_wan_cons_deaggr(
  1311. in->u.ingress_format.agg_size,
  1312. in->u.ingress_format.agg_count);
  1313. if (!ret) {
  1314. ipa_wan_ep_cfg->ipa_ep_cfg.aggr.aggr_byte_limit =
  1315. in->u.ingress_format.agg_size;
  1316. ipa_wan_ep_cfg->ipa_ep_cfg.aggr.aggr_pkt_limit =
  1317. in->u.ingress_format.agg_count;
  1318. }
  1319. }
  1320. if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5 &&
  1321. (in->u.data) & RMNET_IOCTL_INGRESS_FORMAT_CHECKSUM) {
  1322. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_len = 8;
  1323. rmnet_ipa3_ctx->dl_csum_offload_enabled = true;
  1324. } else {
  1325. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_len = 4;
  1326. rmnet_ipa3_ctx->dl_csum_offload_enabled = false;
  1327. }
  1328. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_metadata_valid = 1;
  1329. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_metadata = 1;
  1330. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_pkt_size_valid = 1;
  1331. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_pkt_size = 2;
  1332. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_total_len_or_pad_valid = true;
  1333. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_total_len_or_pad = 0;
  1334. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_payload_len_inc_padding = true;
  1335. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_total_len_or_pad_offset = 0;
  1336. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_little_endian = 0;
  1337. ipa_wan_ep_cfg->ipa_ep_cfg.metadata_mask.metadata_mask = 0xFF000000;
  1338. ipa_wan_ep_cfg->client = IPA_CLIENT_APPS_WAN_CONS;
  1339. if (dev->features & NETIF_F_GRO_HW)
  1340. /* Setup coalescing pipes */
  1341. ipa_wan_ep_cfg->client = IPA_CLIENT_APPS_WAN_COAL_CONS;
  1342. ipa_wan_ep_cfg->notify = apps_ipa_packet_receive_notify;
  1343. ipa_wan_ep_cfg->priv = dev;
  1344. if (ipa3_rmnet_res.ipa_napi_enable)
  1345. ipa_wan_ep_cfg->napi_obj = &(rmnet_ipa3_ctx->wwan_priv->napi);
  1346. ipa_wan_ep_cfg->desc_fifo_sz =
  1347. ipa3_rmnet_res.wan_rx_desc_size * IPA_FIFO_ELEMENT_SIZE;
  1348. mutex_lock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1349. if (atomic_read(&rmnet_ipa3_ctx->is_ssr)) {
  1350. IPAWANDBG("In SSR sequence/recovery\n");
  1351. mutex_unlock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1352. return -EFAULT;
  1353. }
  1354. ret = ipa3_setup_sys_pipe(&rmnet_ipa3_ctx->ipa_to_apps_ep_cfg,
  1355. &rmnet_ipa3_ctx->ipa3_to_apps_hdl);
  1356. mutex_unlock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1357. if (ret)
  1358. goto end;
  1359. /* construct default WAN RT tbl for IPACM */
  1360. ret = ipa3_setup_a7_qmap_hdr();
  1361. if (ret)
  1362. goto end;
  1363. ret = ipa3_setup_dflt_wan_rt_tables();
  1364. if (ret)
  1365. ipa3_del_a7_qmap_hdr();
  1366. /* Sending QMI indication message share RSC pipe details*/
  1367. if (dev->features & NETIF_F_GRO_HW)
  1368. ipa_send_rsc_pipe_ind_to_modem();
  1369. end:
  1370. if (ret)
  1371. IPAWANERR("failed to configure ingress\n");
  1372. return ret;
  1373. }
  1374. /**
  1375. * handle3_egress_format() - Egress data format configuration
  1376. *
  1377. * Setup IPA egress system pipe and Configure:
  1378. * header handling, checksum, de-aggregation and fifo size
  1379. *
  1380. * @dev: network device
  1381. * @e: egress configuration
  1382. */
  1383. static int handle3_egress_format(struct net_device *dev,
  1384. struct rmnet_ioctl_extended_s *e)
  1385. {
  1386. int rc;
  1387. struct ipa_sys_connect_params *ipa_wan_ep_cfg;
  1388. int ep_idx;
  1389. IPAWANDBG("get RMNET_IOCTL_SET_EGRESS_DATA_FORMAT %x\n", e->u.data);
  1390. /* in APQ platform, only get QMAP format */
  1391. if (rmnet_ipa3_ctx->ipa_config_is_apq) {
  1392. if ((e->u.data) & RMNET_IOCTL_EGRESS_FORMAT_CHECKSUM) {
  1393. /* QMAPv5 */
  1394. rmnet_ipa3_ctx->dl_csum_offload_enabled = false;
  1395. /* send aggr_info_qmi */
  1396. rc = ipa3_qmi_set_aggr_info(DATA_AGGR_TYPE_QMAP_V01);
  1397. } else {
  1398. /* QMAP */
  1399. rmnet_ipa3_ctx->dl_csum_offload_enabled = false;
  1400. /* send aggr_info_qmi */
  1401. rc = ipa3_qmi_set_aggr_info(DATA_AGGR_TYPE_QMAP_V01);
  1402. }
  1403. rmnet_ipa3_ctx->ipa_mhi_aggr_formet_set = true;
  1404. return rc;
  1405. }
  1406. ep_idx = ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_PROD);
  1407. if (ep_idx == IPA_EP_NOT_ALLOCATED) {
  1408. IPAWANDBG("Embedded datapath not supported\n");
  1409. return -EFAULT;
  1410. }
  1411. ipa_wan_ep_cfg = &rmnet_ipa3_ctx->apps_to_ipa_ep_cfg;
  1412. if ((e->u.data) & RMNET_IOCTL_EGRESS_FORMAT_CHECKSUM) {
  1413. IPAWANDBG("UL chksum set\n");
  1414. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_len = 8;
  1415. ipa_wan_ep_cfg->ipa_ep_cfg.cfg.cs_offload_en =
  1416. IPA_ENABLE_CS_OFFLOAD_UL;
  1417. ipa_wan_ep_cfg->ipa_ep_cfg.cfg.cs_metadata_hdr_offset = 1;
  1418. } else {
  1419. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_len = 4;
  1420. }
  1421. if ((e->u.data) & RMNET_IOCTL_EGRESS_FORMAT_AGGREGATION) {
  1422. IPAWANDBG("WAN UL Aggregation enabled\n");
  1423. ipa_wan_ep_cfg->ipa_ep_cfg.aggr.aggr_en = IPA_ENABLE_DEAGGR;
  1424. ipa_wan_ep_cfg->ipa_ep_cfg.aggr.aggr = IPA_QCMAP;
  1425. ipa_wan_ep_cfg->ipa_ep_cfg.deaggr.packet_offset_valid = false;
  1426. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_pkt_size = 2;
  1427. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_total_len_or_pad_valid =
  1428. true;
  1429. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_total_len_or_pad =
  1430. IPA_HDR_PAD;
  1431. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_pad_to_alignment =
  1432. 2;
  1433. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_payload_len_inc_padding =
  1434. true;
  1435. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_total_len_or_pad_offset =
  1436. 0;
  1437. ipa_wan_ep_cfg->ipa_ep_cfg.hdr_ext.hdr_little_endian =
  1438. false;
  1439. } else {
  1440. IPAWANDBG("WAN UL Aggregation disabled\n");
  1441. ipa_wan_ep_cfg->ipa_ep_cfg.aggr.aggr_en = IPA_BYPASS_AGGR;
  1442. }
  1443. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_metadata_valid = 1;
  1444. /* modem want offset at 0! */
  1445. ipa_wan_ep_cfg->ipa_ep_cfg.hdr.hdr_ofst_metadata = 0;
  1446. ipa_wan_ep_cfg->ipa_ep_cfg.mode.dst = IPA_CLIENT_APPS_WAN_PROD;
  1447. ipa_wan_ep_cfg->ipa_ep_cfg.mode.mode = IPA_BASIC;
  1448. ipa_wan_ep_cfg->client = IPA_CLIENT_APPS_WAN_PROD;
  1449. ipa_wan_ep_cfg->notify = apps_ipa_tx_complete_notify;
  1450. ipa_wan_ep_cfg->desc_fifo_sz = IPA_SYS_TX_DATA_DESC_FIFO_SZ;
  1451. ipa_wan_ep_cfg->priv = dev;
  1452. mutex_lock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1453. if (atomic_read(&rmnet_ipa3_ctx->is_ssr)) {
  1454. IPAWANDBG("In SSR sequence/recovery\n");
  1455. mutex_unlock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1456. return -EFAULT;
  1457. }
  1458. rc = ipa3_setup_sys_pipe(
  1459. ipa_wan_ep_cfg, &rmnet_ipa3_ctx->apps_to_ipa3_hdl);
  1460. if (rc) {
  1461. IPAWANERR("failed to config egress endpoint\n");
  1462. mutex_unlock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1463. return rc;
  1464. }
  1465. mutex_unlock(&rmnet_ipa3_ctx->pipe_handle_guard);
  1466. if (rmnet_ipa3_ctx->num_q6_rules != 0) {
  1467. /* already got Q6 UL filter rules*/
  1468. if (!ipa3_qmi_ctx->modem_cfg_emb_pipe_flt) {
  1469. /* prevent multi-threads accessing num_q6_rules */
  1470. mutex_lock(&rmnet_ipa3_ctx->add_mux_channel_lock);
  1471. rc = ipa3_wwan_add_ul_flt_rule_to_ipa();
  1472. mutex_unlock(
  1473. &rmnet_ipa3_ctx->add_mux_channel_lock);
  1474. }
  1475. if (rc)
  1476. IPAWANERR("install UL rules failed\n");
  1477. else
  1478. rmnet_ipa3_ctx->a7_ul_flt_set = true;
  1479. } else {
  1480. /* wait Q6 UL filter rules*/
  1481. IPAWANDBG("no UL-rules\n");
  1482. }
  1483. rmnet_ipa3_ctx->egress_set = true;
  1484. return rc;
  1485. }
  1486. /**
  1487. * ipa3_wwan_ioctl() - I/O control for wwan network driver.
  1488. *
  1489. * @dev: network device
  1490. * @ifr: ignored
  1491. * @cmd: cmd to be excecuded. can be one of the following:
  1492. * IPA_WWAN_IOCTL_OPEN - Open the network interface
  1493. * IPA_WWAN_IOCTL_CLOSE - Close the network interface
  1494. *
  1495. * Return codes:
  1496. * 0: success
  1497. * NETDEV_TX_BUSY: Error while transmitting the skb. Try again
  1498. * later
  1499. * -EFAULT: Error while transmitting the skb
  1500. */
  1501. static int ipa3_wwan_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
  1502. {
  1503. int rc = 0;
  1504. int mru = 1000, epid = 1, mux_index, len;
  1505. struct ipa_msg_meta msg_meta;
  1506. struct ipa_wan_msg *wan_msg = NULL;
  1507. struct rmnet_ioctl_extended_s ext_ioctl_data;
  1508. struct rmnet_ioctl_data_s ioctl_data;
  1509. struct ipa3_rmnet_mux_val *mux_channel;
  1510. int rmnet_index;
  1511. uint32_t mux_id;
  1512. int8_t *v_name;
  1513. struct mutex *mux_mutex_ptr;
  1514. int wan_ep;
  1515. bool tcp_en = false, udp_en = false;
  1516. IPAWANDBG("rmnet_ipa got ioctl number 0x%08x", cmd);
  1517. switch (cmd) {
  1518. /* Set Ethernet protocol */
  1519. case RMNET_IOCTL_SET_LLP_ETHERNET:
  1520. break;
  1521. /* Set RAWIP protocol */
  1522. case RMNET_IOCTL_SET_LLP_IP:
  1523. break;
  1524. /* Get link protocol */
  1525. case RMNET_IOCTL_GET_LLP:
  1526. ioctl_data.u.operation_mode = RMNET_MODE_LLP_IP;
  1527. if (copy_to_user(ifr->ifr_ifru.ifru_data, &ioctl_data,
  1528. sizeof(struct rmnet_ioctl_data_s)))
  1529. rc = -EFAULT;
  1530. break;
  1531. /* Set QoS header enabled */
  1532. case RMNET_IOCTL_SET_QOS_ENABLE:
  1533. return -EINVAL;
  1534. /* Set QoS header disabled */
  1535. case RMNET_IOCTL_SET_QOS_DISABLE:
  1536. break;
  1537. /* Get QoS header state */
  1538. case RMNET_IOCTL_GET_QOS:
  1539. ioctl_data.u.operation_mode = RMNET_MODE_NONE;
  1540. if (copy_to_user(ifr->ifr_ifru.ifru_data, &ioctl_data,
  1541. sizeof(struct rmnet_ioctl_data_s)))
  1542. rc = -EFAULT;
  1543. break;
  1544. /* Get operation mode */
  1545. case RMNET_IOCTL_GET_OPMODE:
  1546. ioctl_data.u.operation_mode = RMNET_MODE_LLP_IP;
  1547. if (copy_to_user(ifr->ifr_ifru.ifru_data, &ioctl_data,
  1548. sizeof(struct rmnet_ioctl_data_s)))
  1549. rc = -EFAULT;
  1550. break;
  1551. /* Open transport port */
  1552. case RMNET_IOCTL_OPEN:
  1553. break;
  1554. /* Close transport port */
  1555. case RMNET_IOCTL_CLOSE:
  1556. break;
  1557. /* Flow enable */
  1558. case RMNET_IOCTL_FLOW_ENABLE:
  1559. IPAWANERR("RMNET_IOCTL_FLOW_ENABLE not supported\n");
  1560. rc = -EFAULT;
  1561. break;
  1562. /* Flow disable */
  1563. case RMNET_IOCTL_FLOW_DISABLE:
  1564. IPAWANERR("RMNET_IOCTL_FLOW_DISABLE not supported\n");
  1565. rc = -EFAULT;
  1566. break;
  1567. /* Set flow handle */
  1568. case RMNET_IOCTL_FLOW_SET_HNDL:
  1569. break;
  1570. /* Extended IOCTLs */
  1571. case RMNET_IOCTL_EXTENDED:
  1572. if (!ns_capable(dev_net(dev)->user_ns, CAP_NET_ADMIN))
  1573. return -EPERM;
  1574. IPAWANDBG("get ioctl: RMNET_IOCTL_EXTENDED\n");
  1575. if (copy_from_user(&ext_ioctl_data,
  1576. (u8 *)ifr->ifr_ifru.ifru_data,
  1577. sizeof(struct rmnet_ioctl_extended_s))) {
  1578. IPAWANERR("failed to copy extended ioctl data\n");
  1579. rc = -EFAULT;
  1580. break;
  1581. }
  1582. switch (ext_ioctl_data.extended_ioctl) {
  1583. /* Get features */
  1584. case RMNET_IOCTL_GET_SUPPORTED_FEATURES:
  1585. IPAWANDBG("get RMNET_IOCTL_GET_SUPPORTED_FEATURES\n");
  1586. ext_ioctl_data.u.data =
  1587. (RMNET_IOCTL_FEAT_NOTIFY_MUX_CHANNEL |
  1588. RMNET_IOCTL_FEAT_SET_EGRESS_DATA_FORMAT |
  1589. RMNET_IOCTL_FEAT_SET_INGRESS_DATA_FORMAT);
  1590. if (copy_to_user((u8 *)ifr->ifr_ifru.ifru_data,
  1591. &ext_ioctl_data,
  1592. sizeof(struct rmnet_ioctl_extended_s)))
  1593. rc = -EFAULT;
  1594. break;
  1595. /* Set MRU */
  1596. case RMNET_IOCTL_SET_MRU:
  1597. mru = ext_ioctl_data.u.data;
  1598. IPAWANDBG("get MRU size %d\n",
  1599. ext_ioctl_data.u.data);
  1600. break;
  1601. /* Get MRU */
  1602. case RMNET_IOCTL_GET_MRU:
  1603. ext_ioctl_data.u.data = mru;
  1604. if (copy_to_user((u8 *)ifr->ifr_ifru.ifru_data,
  1605. &ext_ioctl_data,
  1606. sizeof(struct rmnet_ioctl_extended_s)))
  1607. rc = -EFAULT;
  1608. break;
  1609. /* GET SG support */
  1610. case RMNET_IOCTL_GET_SG_SUPPORT:
  1611. ext_ioctl_data.u.data =
  1612. ipa3_rmnet_res.ipa_advertise_sg_support;
  1613. if (copy_to_user((u8 *)ifr->ifr_ifru.ifru_data,
  1614. &ext_ioctl_data,
  1615. sizeof(struct rmnet_ioctl_extended_s)))
  1616. rc = -EFAULT;
  1617. break;
  1618. /* Get endpoint ID */
  1619. case RMNET_IOCTL_GET_EPID:
  1620. IPAWANDBG("get ioctl: RMNET_IOCTL_GET_EPID\n");
  1621. ext_ioctl_data.u.data = epid;
  1622. if (copy_to_user((u8 *)ifr->ifr_ifru.ifru_data,
  1623. &ext_ioctl_data,
  1624. sizeof(struct rmnet_ioctl_extended_s)))
  1625. rc = -EFAULT;
  1626. if (copy_from_user(&ext_ioctl_data,
  1627. (u8 *)ifr->ifr_ifru.ifru_data,
  1628. sizeof(struct rmnet_ioctl_extended_s))) {
  1629. IPAWANERR("copy extended ioctl data failed\n");
  1630. rc = -EFAULT;
  1631. break;
  1632. }
  1633. IPAWANDBG("RMNET_IOCTL_GET_EPID return %d\n",
  1634. ext_ioctl_data.u.data);
  1635. break;
  1636. /* Endpoint pair */
  1637. case RMNET_IOCTL_GET_EP_PAIR:
  1638. IPAWANDBG("get ioctl: RMNET_IOCTL_GET_EP_PAIR\n");
  1639. wan_ep = ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_CONS);
  1640. if (wan_ep == IPA_EP_NOT_ALLOCATED) {
  1641. IPAWANERR("Embedded datapath not supported\n");
  1642. rc = -EFAULT;
  1643. break;
  1644. }
  1645. ext_ioctl_data.u.ipa_ep_pair.producer_pipe_num =
  1646. wan_ep;
  1647. wan_ep = ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_PROD);
  1648. if (wan_ep == IPA_EP_NOT_ALLOCATED) {
  1649. IPAWANERR("Embedded datapath not supported\n");
  1650. rc = -EFAULT;
  1651. break;
  1652. }
  1653. ext_ioctl_data.u.ipa_ep_pair.consumer_pipe_num =
  1654. wan_ep;
  1655. if (copy_to_user((u8 *)ifr->ifr_ifru.ifru_data,
  1656. &ext_ioctl_data,
  1657. sizeof(struct rmnet_ioctl_extended_s)))
  1658. rc = -EFAULT;
  1659. if (copy_from_user(&ext_ioctl_data,
  1660. (u8 *)ifr->ifr_ifru.ifru_data,
  1661. sizeof(struct rmnet_ioctl_extended_s))) {
  1662. IPAWANERR("copy extended ioctl data failed\n");
  1663. rc = -EFAULT;
  1664. break;
  1665. }
  1666. IPAWANDBG("RMNET_IOCTL_GET_EP_PAIR c: %d p: %d\n",
  1667. ext_ioctl_data.u.ipa_ep_pair.consumer_pipe_num,
  1668. ext_ioctl_data.u.ipa_ep_pair.producer_pipe_num);
  1669. break;
  1670. /* Get driver name */
  1671. case RMNET_IOCTL_GET_DRIVER_NAME:
  1672. if (IPA_NETDEV() != NULL) {
  1673. memcpy(&ext_ioctl_data.u.if_name,
  1674. IPA_NETDEV()->name, IFNAMSIZ);
  1675. ext_ioctl_data.u.if_name[IFNAMSIZ - 1] = '\0';
  1676. if (copy_to_user(ifr->ifr_ifru.ifru_data,
  1677. &ext_ioctl_data,
  1678. sizeof(struct rmnet_ioctl_extended_s)))
  1679. rc = -EFAULT;
  1680. } else {
  1681. IPAWANDBG("IPA_NETDEV is NULL\n");
  1682. rc = -EFAULT;
  1683. }
  1684. break;
  1685. /* Add MUX ID */
  1686. case RMNET_IOCTL_ADD_MUX_CHANNEL:
  1687. mux_id = ext_ioctl_data.u.rmnet_mux_val.mux_id;
  1688. mux_index = ipa3_find_mux_channel_index(
  1689. ext_ioctl_data.u.rmnet_mux_val.mux_id);
  1690. if (mux_index < MAX_NUM_OF_MUX_CHANNEL) {
  1691. IPAWANDBG("already setup mux(%d)\n", mux_id);
  1692. return rc;
  1693. }
  1694. mutex_lock(&rmnet_ipa3_ctx->add_mux_channel_lock);
  1695. if (rmnet_ipa3_ctx->rmnet_index
  1696. >= MAX_NUM_OF_MUX_CHANNEL) {
  1697. IPAWANERR("Exceed mux_channel limit(%d)\n",
  1698. rmnet_ipa3_ctx->rmnet_index);
  1699. mutex_unlock(
  1700. &rmnet_ipa3_ctx->add_mux_channel_lock);
  1701. return -EFAULT;
  1702. }
  1703. ext_ioctl_data.u.rmnet_mux_val.vchannel_name
  1704. [IFNAMSIZ-1] = '\0';
  1705. IPAWANDBG("ADD_MUX_CHANNEL(%d, name: %s)\n",
  1706. ext_ioctl_data.u.rmnet_mux_val.mux_id,
  1707. ext_ioctl_data.u.rmnet_mux_val.vchannel_name);
  1708. /* cache the mux name and id */
  1709. mux_channel = rmnet_ipa3_ctx->mux_channel;
  1710. rmnet_index = rmnet_ipa3_ctx->rmnet_index;
  1711. mux_channel[rmnet_index].mux_id =
  1712. ext_ioctl_data.u.rmnet_mux_val.mux_id;
  1713. memcpy(mux_channel[rmnet_index].vchannel_name,
  1714. ext_ioctl_data.u.rmnet_mux_val.vchannel_name,
  1715. sizeof(mux_channel[rmnet_index]
  1716. .vchannel_name));
  1717. mux_channel[rmnet_index].vchannel_name[
  1718. IFNAMSIZ - 1] = '\0';
  1719. IPAWANDBG("cashe device[%s:%d] in IPA_wan[%d]\n",
  1720. mux_channel[rmnet_index].vchannel_name,
  1721. mux_channel[rmnet_index].mux_id,
  1722. rmnet_index);
  1723. /* check if UL filter rules coming*/
  1724. v_name =
  1725. ext_ioctl_data.u.rmnet_mux_val.vchannel_name;
  1726. if (rmnet_ipa3_ctx->num_q6_rules != 0 ||
  1727. (rmnet_ipa3_ctx->ipa_config_is_apq)) {
  1728. mux_mutex_ptr =
  1729. &rmnet_ipa3_ctx->add_mux_channel_lock;
  1730. IPAWANERR_RL("dev(%s) register to IPA\n",
  1731. v_name);
  1732. rc = ipa3_wwan_register_to_ipa(
  1733. rmnet_ipa3_ctx->rmnet_index);
  1734. if (rc < 0) {
  1735. IPAWANERR("device %s reg IPA failed\n",
  1736. v_name);
  1737. mutex_unlock(mux_mutex_ptr);
  1738. return -ENODEV;
  1739. }
  1740. mux_channel[rmnet_index].mux_channel_set =
  1741. true;
  1742. mux_channel[rmnet_index].ul_flt_reg =
  1743. true;
  1744. } else {
  1745. IPAWANDBG("dev(%s) haven't registered to IPA\n",
  1746. v_name);
  1747. mux_channel[rmnet_index].mux_channel_set =
  1748. true;
  1749. mux_channel[rmnet_index].ul_flt_reg =
  1750. false;
  1751. }
  1752. rmnet_ipa3_ctx->rmnet_index++;
  1753. mutex_unlock(&rmnet_ipa3_ctx->add_mux_channel_lock);
  1754. break;
  1755. case RMNET_IOCTL_SET_EGRESS_DATA_FORMAT:
  1756. rc = handle3_egress_format(dev, &ext_ioctl_data);
  1757. break;
  1758. case RMNET_IOCTL_SET_INGRESS_DATA_FORMAT:/* Set IDF */
  1759. rc = handle3_ingress_format(dev, &ext_ioctl_data);
  1760. break;
  1761. case RMNET_IOCTL_SET_XLAT_DEV_INFO:
  1762. wan_msg = kzalloc(sizeof(struct ipa_wan_msg),
  1763. GFP_KERNEL);
  1764. if (!wan_msg)
  1765. return -ENOMEM;
  1766. ext_ioctl_data.u.if_name[IFNAMSIZ-1] = '\0';
  1767. len = sizeof(wan_msg->upstream_ifname) >
  1768. sizeof(ext_ioctl_data.u.if_name) ?
  1769. sizeof(ext_ioctl_data.u.if_name) :
  1770. sizeof(wan_msg->upstream_ifname);
  1771. strlcpy(wan_msg->upstream_ifname,
  1772. ext_ioctl_data.u.if_name, len);
  1773. wan_msg->upstream_ifname[len-1] = '\0';
  1774. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  1775. msg_meta.msg_type = WAN_XLAT_CONNECT;
  1776. msg_meta.msg_len = sizeof(struct ipa_wan_msg);
  1777. rc = ipa3_send_msg(&msg_meta, wan_msg,
  1778. ipa3_wwan_msg_free_cb);
  1779. if (rc) {
  1780. IPAWANERR("Failed to send XLAT_CONNECT msg\n");
  1781. kfree(wan_msg);
  1782. }
  1783. break;
  1784. /* Get agg count */
  1785. case RMNET_IOCTL_GET_AGGREGATION_COUNT:
  1786. break;
  1787. /* Set agg count */
  1788. case RMNET_IOCTL_SET_AGGREGATION_COUNT:
  1789. break;
  1790. /* Get agg size */
  1791. case RMNET_IOCTL_GET_AGGREGATION_SIZE:
  1792. break;
  1793. /* Set agg size */
  1794. case RMNET_IOCTL_SET_AGGREGATION_SIZE:
  1795. break;
  1796. /* Do flow control */
  1797. case RMNET_IOCTL_FLOW_CONTROL:
  1798. break;
  1799. /* For legacy use */
  1800. case RMNET_IOCTL_GET_DFLT_CONTROL_CHANNEL:
  1801. break;
  1802. /* Get HW/SW map */
  1803. case RMNET_IOCTL_GET_HWSW_MAP:
  1804. break;
  1805. /* Set RX Headroom */
  1806. case RMNET_IOCTL_SET_RX_HEADROOM:
  1807. break;
  1808. /* Set RSC/RSB */
  1809. case RMNET_IOCTL_SET_OFFLOAD:
  1810. if (ext_ioctl_data.u.offload_params.flags
  1811. & RMNET_IOCTL_COALESCING_FORMAT_TCP)
  1812. tcp_en = true;
  1813. if (ext_ioctl_data.u.offload_params.flags
  1814. & RMNET_IOCTL_COALESCING_FORMAT_UDP)
  1815. udp_en = true;
  1816. rc = rmnet_ipa_send_coalesce_notification(
  1817. ext_ioctl_data.u.offload_params.mux_id,
  1818. tcp_en || udp_en, tcp_en, udp_en);
  1819. break;
  1820. default:
  1821. IPAWANERR("[%s] unsupported extended cmd[%d]",
  1822. dev->name,
  1823. ext_ioctl_data.extended_ioctl);
  1824. rc = -EINVAL;
  1825. }
  1826. break;
  1827. default:
  1828. IPAWANERR("[%s] unsupported cmd[%d]",
  1829. dev->name, cmd);
  1830. rc = -EINVAL;
  1831. }
  1832. return rc;
  1833. }
  1834. static const struct net_device_ops ipa3_wwan_ops_ip = {
  1835. .ndo_open = ipa3_wwan_open,
  1836. .ndo_stop = ipa3_wwan_stop,
  1837. .ndo_start_xmit = ipa3_wwan_xmit,
  1838. .ndo_tx_timeout = ipa3_wwan_tx_timeout,
  1839. .ndo_do_ioctl = ipa3_wwan_ioctl,
  1840. .ndo_change_mtu = ipa3_wwan_change_mtu,
  1841. .ndo_set_mac_address = 0,
  1842. .ndo_validate_addr = 0,
  1843. };
  1844. /**
  1845. * wwan_setup() - Setups the wwan network driver.
  1846. *
  1847. * @dev: network device
  1848. *
  1849. * Return codes:
  1850. * None
  1851. */
  1852. static void ipa3_wwan_setup(struct net_device *dev)
  1853. {
  1854. dev->netdev_ops = &ipa3_wwan_ops_ip;
  1855. ether_setup(dev);
  1856. /* set this after calling ether_setup */
  1857. dev->header_ops = 0; /* No header */
  1858. dev->type = ARPHRD_RAWIP;
  1859. dev->hard_header_len = 0;
  1860. dev->mtu = WWAN_DATA_LEN;
  1861. dev->addr_len = 0;
  1862. dev->flags &= ~(IFF_BROADCAST | IFF_MULTICAST);
  1863. dev->needed_headroom = HEADROOM_FOR_QMAP;
  1864. dev->needed_tailroom = TAILROOM;
  1865. dev->watchdog_timeo = 1000;
  1866. }
  1867. /**
  1868. * rmnet_ipa_send_coalesce_notification
  1869. * (uint8_t qmap_id, bool enable, bool tcp, bool udp)
  1870. * send RSC notification
  1871. *
  1872. * This function sends the rsc enable/disable notification
  1873. * fot tcp, udp to user-space module
  1874. */
  1875. static int rmnet_ipa_send_coalesce_notification(uint8_t qmap_id,
  1876. bool enable,
  1877. bool tcp,
  1878. bool udp)
  1879. {
  1880. struct ipa_msg_meta msg_meta;
  1881. struct ipa_coalesce_info *coalesce_info;
  1882. int rc;
  1883. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  1884. coalesce_info = kzalloc(sizeof(*coalesce_info), GFP_KERNEL);
  1885. if (!coalesce_info)
  1886. return -ENOMEM;
  1887. if (enable) {
  1888. coalesce_info->qmap_id = qmap_id;
  1889. coalesce_info->tcp_enable = tcp;
  1890. coalesce_info->udp_enable = udp;
  1891. msg_meta.msg_type = IPA_COALESCE_ENABLE;
  1892. msg_meta.msg_len = sizeof(struct ipa_coalesce_info);
  1893. } else {
  1894. msg_meta.msg_type = IPA_COALESCE_DISABLE;
  1895. msg_meta.msg_len = sizeof(struct ipa_coalesce_info);
  1896. }
  1897. rc = ipa_send_msg(&msg_meta, coalesce_info, ipa3_wwan_msg_free_cb);
  1898. if (rc) {
  1899. IPAWANERR("ipa_send_msg failed: %d\n", rc);
  1900. return -EFAULT;
  1901. }
  1902. IPAWANDBG("qmap-id(%d),enable(%d),tcp(%d),udp(%d)\n",
  1903. qmap_id, enable, tcp, udp);
  1904. return 0;
  1905. }
  1906. int ipa3_wwan_set_modem_state(struct wan_ioctl_notify_wan_state *state)
  1907. {
  1908. if (!state)
  1909. return -EINVAL;
  1910. if (state->up)
  1911. return ipa_pm_activate_sync(rmnet_ipa3_ctx->q6_teth_pm_hdl);
  1912. else
  1913. return ipa_pm_deactivate_sync(rmnet_ipa3_ctx->q6_teth_pm_hdl);
  1914. }
  1915. /**
  1916. * ipa3_q6_register_pm - Register modem clients for PM
  1917. *
  1918. * This function will register 2 client with IPA PM to represent modem
  1919. * in clock scaling calculation:
  1920. * - "EMB MODEM" - this client will be activated with embedded traffic
  1921. - "TETH MODEM" - this client we be activated by IPACM on offload to
  1922. modem.
  1923. */
  1924. static int ipa3_q6_register_pm(void)
  1925. {
  1926. int result;
  1927. struct ipa_pm_register_params pm_reg;
  1928. memset(&pm_reg, 0, sizeof(pm_reg));
  1929. pm_reg.name = "EMB MODEM";
  1930. pm_reg.group = IPA_PM_GROUP_MODEM;
  1931. pm_reg.skip_clk_vote = true;
  1932. result = ipa_pm_register(&pm_reg, &rmnet_ipa3_ctx->q6_pm_hdl);
  1933. if (result) {
  1934. IPAERR("failed to create IPA PM client %d\n", result);
  1935. return result;
  1936. }
  1937. pm_reg.name = "TETH MODEM";
  1938. pm_reg.group = IPA_PM_GROUP_MODEM;
  1939. pm_reg.skip_clk_vote = true;
  1940. result = ipa_pm_register(&pm_reg, &rmnet_ipa3_ctx->q6_teth_pm_hdl);
  1941. if (result) {
  1942. IPAERR("failed to create IPA PM client %d\n", result);
  1943. return result;
  1944. }
  1945. return 0;
  1946. }
  1947. static void ipa3_q6_deregister_pm(void)
  1948. {
  1949. ipa_pm_deactivate_sync(rmnet_ipa3_ctx->q6_pm_hdl);
  1950. ipa_pm_deregister(rmnet_ipa3_ctx->q6_pm_hdl);
  1951. }
  1952. int ipa3_wwan_set_modem_perf_profile(int throughput)
  1953. {
  1954. int ret;
  1955. int tether_bridge_handle = 0;
  1956. IPAWANDBG("throughput: %d\n", throughput);
  1957. /* query rmnet-tethering handle */
  1958. tether_bridge_handle = ipa3_teth_bridge_get_pm_hdl();
  1959. if (tether_bridge_handle > 0) {
  1960. /* only update with valid handle*/
  1961. ret = ipa_pm_set_throughput(tether_bridge_handle,
  1962. throughput);
  1963. }
  1964. /* for TETH MODEM on softap/rndis */
  1965. ret = ipa_pm_set_throughput(rmnet_ipa3_ctx->q6_teth_pm_hdl,
  1966. throughput);
  1967. return ret;
  1968. }
  1969. static void ipa3_wake_tx_queue(struct work_struct *work)
  1970. {
  1971. if (IPA_NETDEV()) {
  1972. __netif_tx_lock_bh(netdev_get_tx_queue(IPA_NETDEV(), 0));
  1973. IPAWANDBG("Waking up the workqueue.\n");
  1974. netif_wake_queue(IPA_NETDEV());
  1975. __netif_tx_unlock_bh(netdev_get_tx_queue(IPA_NETDEV(), 0));
  1976. }
  1977. }
  1978. /**
  1979. * ipa3_pm_resource_granted() - Called upon
  1980. * IPA_PM_RESOURCE_GRANTED event. Wakes up the tx workqueue.
  1981. *
  1982. * @work: work object supplied ny workqueue
  1983. *
  1984. * Return codes:
  1985. * None
  1986. */
  1987. static void ipa3_pm_resource_granted(void *dev)
  1988. {
  1989. IPAWANDBG_LOW("Resource Granted - starting queue\n");
  1990. schedule_work(&ipa3_tx_wakequeue_work);
  1991. }
  1992. /* IPA_PM related functions end*/
  1993. static int ipa3_lcl_mdm_ssr_notifier_cb(struct notifier_block *this,
  1994. unsigned long code,
  1995. void *data);
  1996. static int ipa3_rmt_mdm_ssr_notifier_cb(struct notifier_block *this,
  1997. unsigned long code,
  1998. void *data);
  1999. static struct notifier_block ipa3_lcl_mdm_ssr_notifier = {
  2000. .notifier_call = ipa3_lcl_mdm_ssr_notifier_cb,
  2001. };
  2002. static struct notifier_block ipa3_rmt_mdm_ssr_notifier = {
  2003. .notifier_call = ipa3_rmt_mdm_ssr_notifier_cb,
  2004. };
  2005. static int get_ipa_rmnet_dts_configuration(struct platform_device *pdev,
  2006. struct ipa3_rmnet_plat_drv_res *ipa_rmnet_drv_res)
  2007. {
  2008. int result;
  2009. ipa_rmnet_drv_res->wan_rx_desc_size = IPA_WWAN_CONS_DESC_FIFO_SZ;
  2010. ipa_rmnet_drv_res->ipa_rmnet_ssr =
  2011. of_property_read_bool(pdev->dev.of_node,
  2012. "qcom,rmnet-ipa-ssr");
  2013. pr_info("IPA SSR support = %s\n",
  2014. ipa_rmnet_drv_res->ipa_rmnet_ssr ? "True" : "False");
  2015. ipa_rmnet_drv_res->ipa_advertise_sg_support =
  2016. of_property_read_bool(pdev->dev.of_node,
  2017. "qcom,ipa-advertise-sg-support");
  2018. pr_info("IPA SG support = %s\n",
  2019. ipa_rmnet_drv_res->ipa_advertise_sg_support ? "True" : "False");
  2020. ipa_rmnet_drv_res->ipa_napi_enable =
  2021. of_property_read_bool(pdev->dev.of_node,
  2022. "qcom,ipa-napi-enable");
  2023. pr_info("IPA Napi Enable = %s\n",
  2024. ipa_rmnet_drv_res->ipa_napi_enable ? "True" : "False");
  2025. /* Get IPA WAN RX desc fifo size */
  2026. result = of_property_read_u32(pdev->dev.of_node,
  2027. "qcom,wan-rx-desc-size",
  2028. &ipa_rmnet_drv_res->wan_rx_desc_size);
  2029. if (result)
  2030. pr_info("using default for wan-rx-desc-size = %u\n",
  2031. ipa_rmnet_drv_res->wan_rx_desc_size);
  2032. else
  2033. IPAWANDBG(": found ipa_drv_res->wan-rx-desc-size = %u\n",
  2034. ipa_rmnet_drv_res->wan_rx_desc_size);
  2035. return 0;
  2036. }
  2037. struct ipa3_rmnet_context ipa3_rmnet_ctx;
  2038. static int ipa3_wwan_probe(struct platform_device *pdev);
  2039. struct platform_device *m_pdev;
  2040. static void ipa3_delayed_probe(struct work_struct *work)
  2041. {
  2042. (void)ipa3_wwan_probe(m_pdev);
  2043. }
  2044. static DECLARE_WORK(ipa3_scheduled_probe, ipa3_delayed_probe);
  2045. static void ipa3_ready_cb(void *user_data)
  2046. {
  2047. struct platform_device *pdev = (struct platform_device *)(user_data);
  2048. m_pdev = pdev;
  2049. IPAWANDBG("IPA ready callback has been triggered\n");
  2050. schedule_work(&ipa3_scheduled_probe);
  2051. }
  2052. static void ipa_pm_wwan_pm_cb(void *p, enum ipa_pm_cb_event event)
  2053. {
  2054. struct net_device *dev = (struct net_device *)p;
  2055. struct ipa3_wwan_private *wwan_ptr = netdev_priv(dev);
  2056. IPAWANDBG_LOW("event %d\n", event);
  2057. switch (event) {
  2058. case IPA_PM_CLIENT_ACTIVATED:
  2059. if (wwan_ptr->device_status == WWAN_DEVICE_INACTIVE) {
  2060. complete_all(&wwan_ptr->resource_granted_completion);
  2061. break;
  2062. }
  2063. ipa3_pm_resource_granted(dev);
  2064. break;
  2065. default:
  2066. pr_err("%s: unknown event %d\n", __func__, event);
  2067. break;
  2068. }
  2069. }
  2070. static int ipa3_wwan_register_netdev_pm_client(struct net_device *dev)
  2071. {
  2072. int result;
  2073. struct ipa_pm_register_params pm_reg;
  2074. memset(&pm_reg, 0, sizeof(pm_reg));
  2075. pm_reg.name = IPA_NETDEV()->name;
  2076. pm_reg.user_data = dev;
  2077. pm_reg.callback = ipa_pm_wwan_pm_cb;
  2078. pm_reg.group = IPA_PM_GROUP_APPS;
  2079. result = ipa_pm_register(&pm_reg, &rmnet_ipa3_ctx->pm_hdl);
  2080. if (result) {
  2081. IPAERR("failed to create IPA PM client %d\n", result);
  2082. return result;
  2083. }
  2084. return 0;
  2085. }
  2086. static void ipa3_wwan_deregister_netdev_pm_client(void)
  2087. {
  2088. ipa_pm_deactivate_sync(rmnet_ipa3_ctx->pm_hdl);
  2089. ipa_pm_deregister(rmnet_ipa3_ctx->pm_hdl);
  2090. }
  2091. /**
  2092. * ipa3_wwan_probe() - Initialized the module and registers as a
  2093. * network interface to the network stack
  2094. *
  2095. * Note: In case IPA driver hasn't initialized already, the probe function
  2096. * will return immediately after registering a callback to be invoked when
  2097. * IPA driver initialization is complete.
  2098. *
  2099. * Return codes:
  2100. * 0: success
  2101. * -ENOMEM: No memory available
  2102. * -EFAULT: Internal error
  2103. */
  2104. static int ipa3_wwan_probe(struct platform_device *pdev)
  2105. {
  2106. int ret, i;
  2107. struct net_device *dev;
  2108. int wan_cons_ep;
  2109. pr_info("rmnet_ipa3 started initialization\n");
  2110. if (!ipa3_is_ready()) {
  2111. IPAWANDBG("IPA driver not ready, registering callback\n");
  2112. ret = ipa_register_ipa_ready_cb(ipa3_ready_cb, (void *)pdev);
  2113. /*
  2114. * If we received -EEXIST, IPA has initialized. So we need
  2115. * to continue the probing process.
  2116. */
  2117. if (ret != -EEXIST) {
  2118. if (ret)
  2119. IPAWANERR("IPA CB reg failed - %d\n", ret);
  2120. return ret;
  2121. }
  2122. }
  2123. wan_cons_ep = ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_CONS);
  2124. ret = get_ipa_rmnet_dts_configuration(pdev, &ipa3_rmnet_res);
  2125. ipa3_rmnet_ctx.ipa_rmnet_ssr = ipa3_rmnet_res.ipa_rmnet_ssr;
  2126. /* check if booting as mhi-prime */
  2127. rmnet_ipa3_ctx->ipa_config_is_apq
  2128. = ipa3_is_apq();
  2129. ret = ipa3_init_q6_smem();
  2130. if (ret) {
  2131. IPAWANERR("ipa3_init_q6_smem failed\n");
  2132. return ret;
  2133. }
  2134. /* initialize tx/rx endpoint setup */
  2135. memset(&rmnet_ipa3_ctx->apps_to_ipa_ep_cfg, 0,
  2136. sizeof(struct ipa_sys_connect_params));
  2137. memset(&rmnet_ipa3_ctx->ipa_to_apps_ep_cfg, 0,
  2138. sizeof(struct ipa_sys_connect_params));
  2139. /* initialize ex property setup */
  2140. rmnet_ipa3_ctx->num_q6_rules = 0;
  2141. rmnet_ipa3_ctx->old_num_q6_rules = 0;
  2142. rmnet_ipa3_ctx->rmnet_index = 0;
  2143. rmnet_ipa3_ctx->egress_set = false;
  2144. rmnet_ipa3_ctx->a7_ul_flt_set = false;
  2145. rmnet_ipa3_ctx->ipa_mhi_aggr_formet_set = false;
  2146. for (i = 0; i < MAX_NUM_OF_MUX_CHANNEL; i++)
  2147. memset(&rmnet_ipa3_ctx->mux_channel[i], 0,
  2148. sizeof(struct ipa3_rmnet_mux_val));
  2149. /* start A7 QMI service/client */
  2150. if (ipa3_ctx->platform_type == IPA_PLAT_TYPE_MSM ||
  2151. ipa3_ctx->platform_type == IPA_PLAT_TYPE_APQ)
  2152. /* Android platform loads uC */
  2153. ipa3_qmi_service_init(QMI_IPA_PLATFORM_TYPE_MSM_ANDROID_V01);
  2154. else if (ipa3_ctx->ipa_config_is_mhi)
  2155. /* LE MHI platform */
  2156. ipa3_qmi_service_init(QMI_IPA_PLATFORM_TYPE_LE_MHI_V01);
  2157. else
  2158. /* LE platform not loads uC */
  2159. ipa3_qmi_service_init(QMI_IPA_PLATFORM_TYPE_LE_V01);
  2160. if (!atomic_read(&rmnet_ipa3_ctx->is_ssr)) {
  2161. /* Start transport-driver fd ioctl for ipacm for first init */
  2162. ret = ipa3_wan_ioctl_init();
  2163. if (ret)
  2164. goto wan_ioctl_init_err;
  2165. } else {
  2166. /* Enable sending QMI messages after SSR */
  2167. ipa3_wan_ioctl_enable_qmi_messages();
  2168. }
  2169. /* initialize wan-driver netdev */
  2170. dev = alloc_netdev(sizeof(struct ipa3_wwan_private),
  2171. IPA_WWAN_DEV_NAME,
  2172. NET_NAME_UNKNOWN,
  2173. ipa3_wwan_setup);
  2174. if (!dev) {
  2175. IPAWANERR("no memory for netdev\n");
  2176. ret = -ENOMEM;
  2177. goto alloc_netdev_err;
  2178. }
  2179. rmnet_ipa3_ctx->wwan_priv = netdev_priv(dev);
  2180. memset(rmnet_ipa3_ctx->wwan_priv, 0,
  2181. sizeof(*(rmnet_ipa3_ctx->wwan_priv)));
  2182. IPAWANDBG("wwan_ptr (private) = %pK", rmnet_ipa3_ctx->wwan_priv);
  2183. rmnet_ipa3_ctx->wwan_priv->net = dev;
  2184. atomic_set(&rmnet_ipa3_ctx->wwan_priv->outstanding_pkts, 0);
  2185. spin_lock_init(&rmnet_ipa3_ctx->wwan_priv->lock);
  2186. init_completion(
  2187. &rmnet_ipa3_ctx->wwan_priv->resource_granted_completion);
  2188. if (!atomic_read(&rmnet_ipa3_ctx->is_ssr)) {
  2189. /* IPA_PM configuration starts */
  2190. ret = ipa3_q6_register_pm();
  2191. if (ret) {
  2192. IPAWANERR("ipa3_q6_register_pm failed, ret: %d\n",
  2193. ret);
  2194. goto q6_init_err;
  2195. }
  2196. }
  2197. ret = ipa3_wwan_register_netdev_pm_client(dev);
  2198. if (ret) {
  2199. IPAWANERR("fail to create/register pm resources\n");
  2200. goto fail_pm;
  2201. }
  2202. /* Enable SG support in netdevice. */
  2203. if (ipa3_rmnet_res.ipa_advertise_sg_support)
  2204. dev->hw_features |= NETIF_F_SG;
  2205. if (ipa3_rmnet_res.ipa_napi_enable)
  2206. netif_napi_add(dev, &(rmnet_ipa3_ctx->wwan_priv->napi),
  2207. ipa3_rmnet_poll, NAPI_WEIGHT);
  2208. ret = register_netdev(dev);
  2209. if (ret) {
  2210. IPAWANERR("unable to register ipa_netdev %d rc=%d\n",
  2211. 0, ret);
  2212. goto set_perf_err;
  2213. }
  2214. IPAWANDBG("IPA-WWAN devices (%s) initialization ok :>>>>\n", dev->name);
  2215. if (ret) {
  2216. IPAWANERR("default configuration failed rc=%d\n",
  2217. ret);
  2218. goto config_err;
  2219. }
  2220. /* for > IPA 4.5, we set the colaescing feature flag on */
  2221. if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5)
  2222. dev->hw_features |= NETIF_F_GRO_HW | NETIF_F_RXCSUM;
  2223. /*
  2224. * for IPA 4.0 offline charge is not needed and we need to prevent
  2225. * power collapse until IPA uC is loaded.
  2226. */
  2227. atomic_set(&rmnet_ipa3_ctx->is_initialized, 1);
  2228. if (!atomic_read(&rmnet_ipa3_ctx->is_ssr) && ipa3_ctx->ipa_hw_type !=
  2229. IPA_HW_v4_0) {
  2230. /* offline charging mode */
  2231. ipa3_proxy_clk_unvote();
  2232. }
  2233. atomic_set(&rmnet_ipa3_ctx->is_ssr, 0);
  2234. atomic_set(&rmnet_ipa3_ctx->ap_suspend, 0);
  2235. ipa3_update_ssr_state(false);
  2236. IPAWANERR("rmnet_ipa completed initialization\n");
  2237. return 0;
  2238. config_err:
  2239. if (ipa3_rmnet_res.ipa_napi_enable)
  2240. netif_napi_del(&(rmnet_ipa3_ctx->wwan_priv->napi));
  2241. unregister_netdev(dev);
  2242. set_perf_err:
  2243. ipa3_wwan_deregister_netdev_pm_client();
  2244. fail_pm:
  2245. if (!atomic_read(&rmnet_ipa3_ctx->is_ssr))
  2246. ipa3_q6_deregister_pm();
  2247. q6_init_err:
  2248. free_netdev(dev);
  2249. rmnet_ipa3_ctx->wwan_priv = NULL;
  2250. alloc_netdev_err:
  2251. ipa3_wan_ioctl_deinit();
  2252. wan_ioctl_init_err:
  2253. ipa3_qmi_service_exit();
  2254. atomic_set(&rmnet_ipa3_ctx->is_ssr, 0);
  2255. return ret;
  2256. }
  2257. static int ipa3_wwan_remove(struct platform_device *pdev)
  2258. {
  2259. int ret;
  2260. IPAWANINFO("rmnet_ipa started deinitialization\n");
  2261. mutex_lock(&rmnet_ipa3_ctx->pipe_handle_guard);
  2262. ret = ipa3_teardown_sys_pipe(rmnet_ipa3_ctx->ipa3_to_apps_hdl);
  2263. if (ret < 0)
  2264. IPAWANERR("Failed to teardown IPA->APPS pipe\n");
  2265. else
  2266. rmnet_ipa3_ctx->ipa3_to_apps_hdl = -1;
  2267. ret = ipa3_teardown_sys_pipe(rmnet_ipa3_ctx->apps_to_ipa3_hdl);
  2268. if (ret < 0)
  2269. IPAWANERR("Failed to teardown APPS->IPA pipe\n");
  2270. else
  2271. rmnet_ipa3_ctx->apps_to_ipa3_hdl = -1;
  2272. if (ipa3_rmnet_res.ipa_napi_enable)
  2273. netif_napi_del(&(rmnet_ipa3_ctx->wwan_priv->napi));
  2274. mutex_unlock(&rmnet_ipa3_ctx->pipe_handle_guard);
  2275. IPAWANINFO("rmnet_ipa unregister_netdev\n");
  2276. unregister_netdev(IPA_NETDEV());
  2277. ipa3_wwan_deregister_netdev_pm_client();
  2278. cancel_work_sync(&ipa3_tx_wakequeue_work);
  2279. cancel_delayed_work(&ipa_tether_stats_poll_wakequeue_work);
  2280. if (IPA_NETDEV())
  2281. free_netdev(IPA_NETDEV());
  2282. rmnet_ipa3_ctx->wwan_priv = NULL;
  2283. /* No need to remove wwan_ioctl during SSR */
  2284. if (!atomic_read(&rmnet_ipa3_ctx->is_ssr))
  2285. ipa3_wan_ioctl_deinit();
  2286. if (ipa3_get_ep_mapping(IPA_CLIENT_APPS_WAN_CONS) !=
  2287. IPA_EP_NOT_ALLOCATED) {
  2288. ipa3_del_dflt_wan_rt_tables();
  2289. ipa3_del_a7_qmap_hdr();
  2290. }
  2291. ipa3_del_mux_qmap_hdrs();
  2292. if (!ipa3_qmi_ctx->modem_cfg_emb_pipe_flt)
  2293. ipa3_wwan_del_ul_flt_rule_to_ipa();
  2294. ipa3_cleanup_deregister_intf();
  2295. /* reset dl_csum_offload_enabled */
  2296. rmnet_ipa3_ctx->dl_csum_offload_enabled = false;
  2297. atomic_set(&rmnet_ipa3_ctx->is_initialized, 0);
  2298. IPAWANINFO("rmnet_ipa completed deinitialization\n");
  2299. return 0;
  2300. }
  2301. /**
  2302. * rmnet_ipa_ap_suspend() - suspend callback for runtime_pm
  2303. * @dev: pointer to device
  2304. *
  2305. * This callback will be invoked by the runtime_pm framework when an AP suspend
  2306. * operation is invoked, usually by pressing a suspend button.
  2307. *
  2308. * Returns -EAGAIN to runtime_pm framework in case there are pending packets
  2309. * in the Tx queue. This will postpone the suspend operation until all the
  2310. * pending packets will be transmitted.
  2311. *
  2312. * In case there are no packets to send, releases the WWAN0_PROD entity.
  2313. * As an outcome, the number of IPA active clients should be decremented
  2314. * until IPA clocks can be gated.
  2315. */
  2316. static int rmnet_ipa_ap_suspend(struct device *dev)
  2317. {
  2318. struct net_device *netdev = IPA_NETDEV();
  2319. struct ipa3_wwan_private *wwan_ptr;
  2320. int ret;
  2321. unsigned long flags;
  2322. IPAWANDBG("Enter...\n");
  2323. if (netdev == NULL) {
  2324. IPAWANERR("netdev is NULL.\n");
  2325. ret = 0;
  2326. goto bail;
  2327. }
  2328. wwan_ptr = netdev_priv(netdev);
  2329. if (wwan_ptr == NULL) {
  2330. IPAWANERR("wwan_ptr is NULL.\n");
  2331. ret = 0;
  2332. goto bail;
  2333. }
  2334. /*
  2335. * Rmnert supend and xmit are executing at the same time, In those
  2336. * scenarios observing the data was processed when IPA clock are off.
  2337. * Added changes to synchronize rmnet supend and xmit.
  2338. */
  2339. atomic_set(&rmnet_ipa3_ctx->ap_suspend, 1);
  2340. spin_lock_irqsave(&wwan_ptr->lock, flags);
  2341. /* Do not allow A7 to suspend in case there are outstanding packets */
  2342. if (atomic_read(&wwan_ptr->outstanding_pkts) != 0) {
  2343. IPAWANDBG("Outstanding packets, postponing AP suspend.\n");
  2344. ret = -EAGAIN;
  2345. atomic_set(&rmnet_ipa3_ctx->ap_suspend, 0);
  2346. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  2347. goto bail;
  2348. }
  2349. /* Make sure that there is no Tx operation ongoing */
  2350. netif_stop_queue(netdev);
  2351. spin_unlock_irqrestore(&wwan_ptr->lock, flags);
  2352. IPAWANDBG("De-activating the PM resource.\n");
  2353. ipa_pm_deactivate_sync(rmnet_ipa3_ctx->pm_hdl);
  2354. ret = 0;
  2355. bail:
  2356. IPAWANDBG("Exit with %d\n", ret);
  2357. return ret;
  2358. }
  2359. /**
  2360. * rmnet_ipa_ap_resume() - resume callback for runtime_pm
  2361. * @dev: pointer to device
  2362. *
  2363. * This callback will be invoked by the runtime_pm framework when an AP resume
  2364. * operation is invoked.
  2365. *
  2366. * Enables the network interface queue and returns success to the
  2367. * runtime_pm framework.
  2368. */
  2369. static int rmnet_ipa_ap_resume(struct device *dev)
  2370. {
  2371. struct net_device *netdev = IPA_NETDEV();
  2372. IPAWANDBG("Enter...\n");
  2373. /* Clear the suspend in progress flag. */
  2374. atomic_set(&rmnet_ipa3_ctx->ap_suspend, 0);
  2375. if (netdev)
  2376. netif_wake_queue(netdev);
  2377. IPAWANDBG("Exit\n");
  2378. return 0;
  2379. }
  2380. static void ipa_stop_polling_stats(void)
  2381. {
  2382. cancel_delayed_work(&ipa_tether_stats_poll_wakequeue_work);
  2383. ipa3_rmnet_ctx.polling_interval = 0;
  2384. }
  2385. static const struct of_device_id rmnet_ipa_dt_match[] = {
  2386. {.compatible = "qcom,rmnet-ipa3"},
  2387. {},
  2388. };
  2389. MODULE_DEVICE_TABLE(of, rmnet_ipa_dt_match);
  2390. static const struct dev_pm_ops rmnet_ipa_pm_ops = {
  2391. .suspend_noirq = rmnet_ipa_ap_suspend,
  2392. .resume_noirq = rmnet_ipa_ap_resume,
  2393. };
  2394. static struct platform_driver rmnet_ipa_driver = {
  2395. .driver = {
  2396. .name = "rmnet_ipa3",
  2397. .pm = &rmnet_ipa_pm_ops,
  2398. .of_match_table = rmnet_ipa_dt_match,
  2399. },
  2400. .probe = ipa3_wwan_probe,
  2401. .remove = ipa3_wwan_remove,
  2402. };
  2403. /**
  2404. * rmnet_ipa_send_ssr_notification(bool ssr_done) - send SSR notification
  2405. *
  2406. * This function sends the SSR notification before modem shutdown and
  2407. * after_powerup from SSR framework, to user-space module
  2408. */
  2409. static void rmnet_ipa_send_ssr_notification(bool ssr_done)
  2410. {
  2411. struct ipa_msg_meta msg_meta;
  2412. int rc;
  2413. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  2414. if (ssr_done)
  2415. msg_meta.msg_type = IPA_SSR_AFTER_POWERUP;
  2416. else
  2417. msg_meta.msg_type = IPA_SSR_BEFORE_SHUTDOWN;
  2418. rc = ipa_send_msg(&msg_meta, NULL, NULL);
  2419. if (rc) {
  2420. IPAWANERR("ipa_send_msg failed: %d\n", rc);
  2421. return;
  2422. }
  2423. }
  2424. static int ipa3_lcl_mdm_ssr_notifier_cb(struct notifier_block *this,
  2425. unsigned long code,
  2426. void *data)
  2427. {
  2428. if (!ipa3_rmnet_ctx.ipa_rmnet_ssr)
  2429. return NOTIFY_DONE;
  2430. if (!ipa3_ctx) {
  2431. IPAWANERR_RL("ipa3_ctx was not initialized\n");
  2432. return NOTIFY_DONE;
  2433. }
  2434. if (rmnet_ipa3_ctx->ipa_config_is_apq) {
  2435. IPAWANERR("Local modem SSR event=%lu on APQ platform\n",
  2436. code);
  2437. return NOTIFY_DONE;
  2438. }
  2439. switch (code) {
  2440. case SUBSYS_BEFORE_SHUTDOWN:
  2441. IPAWANINFO("IPA received MPSS BEFORE_SHUTDOWN\n");
  2442. /* send SSR before-shutdown notification to IPACM */
  2443. rmnet_ipa_send_ssr_notification(false);
  2444. atomic_set(&rmnet_ipa3_ctx->is_ssr, 1);
  2445. ipa3_q6_pre_shutdown_cleanup();
  2446. if (IPA_NETDEV())
  2447. netif_stop_queue(IPA_NETDEV());
  2448. ipa3_qmi_stop_workqueues();
  2449. ipa3_wan_ioctl_stop_qmi_messages();
  2450. ipa_stop_polling_stats();
  2451. if (atomic_read(&rmnet_ipa3_ctx->is_initialized))
  2452. platform_driver_unregister(&rmnet_ipa_driver);
  2453. imp_handle_modem_shutdown();
  2454. if (atomic_read(&rmnet_ipa3_ctx->is_ssr) &&
  2455. ipa3_ctx->ipa_hw_type >= IPA_HW_v4_0)
  2456. ipa3_q6_post_shutdown_cleanup();
  2457. ipa3_odl_pipe_cleanup(true);
  2458. IPAWANINFO("IPA BEFORE_SHUTDOWN handling is complete\n");
  2459. break;
  2460. case SUBSYS_AFTER_SHUTDOWN:
  2461. IPAWANINFO("IPA Received MPSS AFTER_SHUTDOWN\n");
  2462. if (atomic_read(&rmnet_ipa3_ctx->is_ssr) &&
  2463. ipa3_ctx->ipa_hw_type < IPA_HW_v4_0)
  2464. ipa3_q6_post_shutdown_cleanup();
  2465. if (ipa3_ctx->ipa_endp_delay_wa)
  2466. ipa3_client_prod_post_shutdown_cleanup();
  2467. IPAWANINFO("IPA AFTER_SHUTDOWN handling is complete\n");
  2468. break;
  2469. case SUBSYS_BEFORE_POWERUP:
  2470. IPAWANINFO("IPA received MPSS BEFORE_POWERUP\n");
  2471. if (atomic_read(&rmnet_ipa3_ctx->is_ssr)) {
  2472. /* clean up cached QMI msg/handlers */
  2473. ipa3_qmi_service_exit();
  2474. ipa3_q6_pre_powerup_cleanup();
  2475. }
  2476. /* hold a proxy vote for the modem. */
  2477. ipa3_proxy_clk_vote();
  2478. ipa3_reset_freeze_vote();
  2479. IPAWANINFO("IPA BEFORE_POWERUP handling is complete\n");
  2480. break;
  2481. case SUBSYS_AFTER_POWERUP:
  2482. IPAWANINFO("IPA received MPSS AFTER_POWERUP\n");
  2483. if (!atomic_read(&rmnet_ipa3_ctx->is_initialized) &&
  2484. atomic_read(&rmnet_ipa3_ctx->is_ssr))
  2485. platform_driver_register(&rmnet_ipa_driver);
  2486. ipa3_odl_pipe_open();
  2487. IPAWANINFO("IPA AFTER_POWERUP handling is complete\n");
  2488. break;
  2489. default:
  2490. IPAWANDBG("Unsupported subsys notification, IPA received: %lu",
  2491. code);
  2492. break;
  2493. }
  2494. IPAWANDBG_LOW("Exit\n");
  2495. return NOTIFY_DONE;
  2496. }
  2497. static int ipa3_rmt_mdm_ssr_notifier_cb(struct notifier_block *this,
  2498. unsigned long code,
  2499. void *data)
  2500. {
  2501. if (!ipa3_rmnet_ctx.ipa_rmnet_ssr) {
  2502. IPAWANERR("SSR event=%lu while not enabled\n", code);
  2503. return NOTIFY_DONE;
  2504. }
  2505. if (!rmnet_ipa3_ctx->ipa_config_is_apq) {
  2506. IPAWANERR("Remote mdm SSR event=%lu on non-APQ platform=%d\n",
  2507. code, ipa3_ctx->platform_type);
  2508. return NOTIFY_DONE;
  2509. }
  2510. switch (code) {
  2511. case SUBSYS_BEFORE_SHUTDOWN:
  2512. IPAWANINFO("IPA received RMT MPSS BEFORE_SHUTDOWN\n");
  2513. break;
  2514. case SUBSYS_AFTER_SHUTDOWN:
  2515. IPAWANINFO("IPA Received RMT MPSS AFTER_SHUTDOWN\n");
  2516. break;
  2517. case SUBSYS_BEFORE_POWERUP:
  2518. IPAWANINFO("IPA received RMT MPSS BEFORE_POWERUP\n");
  2519. break;
  2520. case SUBSYS_AFTER_POWERUP:
  2521. IPAWANINFO("IPA received RMT MPSS AFTER_POWERUP\n");
  2522. break;
  2523. default:
  2524. IPAWANDBG("IPA received RMT MPSS event %lu", code);
  2525. break;
  2526. }
  2527. return NOTIFY_DONE;
  2528. }
  2529. /**
  2530. * rmnet_ipa_free_msg() - Free the msg sent to user space via ipa_send_msg
  2531. * @buff: pointer to buffer containing the message
  2532. * @len: message len
  2533. * @type: message type
  2534. *
  2535. * This function is invoked when ipa_send_msg is complete (Provided as a
  2536. * free function pointer along with the message).
  2537. */
  2538. static void rmnet_ipa_free_msg(void *buff, u32 len, u32 type)
  2539. {
  2540. if (!buff) {
  2541. IPAWANERR("Null buffer\n");
  2542. return;
  2543. }
  2544. if (type != IPA_TETHERING_STATS_UPDATE_STATS &&
  2545. type != IPA_TETHERING_STATS_UPDATE_NETWORK_STATS &&
  2546. type != IPA_PER_CLIENT_STATS_CONNECT_EVENT &&
  2547. type != IPA_PER_CLIENT_STATS_DISCONNECT_EVENT) {
  2548. IPAWANERR("Wrong type given. buff %pK type %d\n",
  2549. buff, type);
  2550. }
  2551. kfree(buff);
  2552. }
  2553. /**
  2554. * rmnet_ipa_get_stats_and_update() - Gets pipe stats from Modem
  2555. *
  2556. * This function queries the IPA Modem driver for the pipe stats
  2557. * via QMI, and updates the user space IPA entity.
  2558. */
  2559. static void rmnet_ipa_get_stats_and_update(void)
  2560. {
  2561. struct ipa_get_data_stats_req_msg_v01 req;
  2562. struct ipa_get_data_stats_resp_msg_v01 *resp;
  2563. struct ipa_msg_meta msg_meta;
  2564. int rc;
  2565. resp = kzalloc(sizeof(struct ipa_get_data_stats_resp_msg_v01),
  2566. GFP_KERNEL);
  2567. if (!resp)
  2568. return;
  2569. memset(&req, 0, sizeof(struct ipa_get_data_stats_req_msg_v01));
  2570. memset(resp, 0, sizeof(struct ipa_get_data_stats_resp_msg_v01));
  2571. req.ipa_stats_type = QMI_IPA_STATS_TYPE_PIPE_V01;
  2572. rc = ipa3_qmi_get_data_stats(&req, resp);
  2573. if (rc) {
  2574. IPAWANERR("ipa3_qmi_get_data_stats failed: %d\n", rc);
  2575. kfree(resp);
  2576. return;
  2577. }
  2578. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  2579. msg_meta.msg_type = IPA_TETHERING_STATS_UPDATE_STATS;
  2580. msg_meta.msg_len = sizeof(struct ipa_get_data_stats_resp_msg_v01);
  2581. rc = ipa_send_msg(&msg_meta, resp, rmnet_ipa_free_msg);
  2582. if (rc) {
  2583. IPAWANERR("ipa_send_msg failed: %d\n", rc);
  2584. kfree(resp);
  2585. return;
  2586. }
  2587. }
  2588. /**
  2589. * tethering_stats_poll_queue() - Stats polling function
  2590. * @work - Work entry
  2591. *
  2592. * This function is scheduled periodically (per the interval) in
  2593. * order to poll the IPA Modem driver for the pipe stats.
  2594. */
  2595. static void tethering_stats_poll_queue(struct work_struct *work)
  2596. {
  2597. rmnet_ipa_get_stats_and_update();
  2598. /* Schedule again only if there's an active polling interval */
  2599. if (ipa3_rmnet_ctx.polling_interval != 0)
  2600. schedule_delayed_work(&ipa_tether_stats_poll_wakequeue_work,
  2601. msecs_to_jiffies(ipa3_rmnet_ctx.polling_interval*1000));
  2602. }
  2603. /**
  2604. * rmnet_ipa_get_network_stats_and_update() - Get network stats from IPA Modem
  2605. *
  2606. * This function retrieves the data usage (used quota) from the IPA Modem driver
  2607. * via QMI, and updates IPA user space entity.
  2608. */
  2609. static void rmnet_ipa_get_network_stats_and_update(void)
  2610. {
  2611. struct ipa_get_apn_data_stats_req_msg_v01 req;
  2612. struct ipa_get_apn_data_stats_resp_msg_v01 *resp;
  2613. struct ipa_msg_meta msg_meta;
  2614. int rc;
  2615. resp = kzalloc(sizeof(struct ipa_get_apn_data_stats_resp_msg_v01),
  2616. GFP_KERNEL);
  2617. if (!resp)
  2618. return;
  2619. memset(&req, 0, sizeof(struct ipa_get_apn_data_stats_req_msg_v01));
  2620. memset(resp, 0, sizeof(struct ipa_get_apn_data_stats_resp_msg_v01));
  2621. req.mux_id_list_valid = true;
  2622. req.mux_id_list_len = 1;
  2623. req.mux_id_list[0] = ipa3_rmnet_ctx.metered_mux_id;
  2624. rc = ipa3_qmi_get_network_stats(&req, resp);
  2625. if (rc) {
  2626. IPAWANERR("ipa3_qmi_get_network_stats failed: %d\n", rc);
  2627. kfree(resp);
  2628. return;
  2629. }
  2630. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  2631. msg_meta.msg_type = IPA_TETHERING_STATS_UPDATE_NETWORK_STATS;
  2632. msg_meta.msg_len = sizeof(struct ipa_get_apn_data_stats_resp_msg_v01);
  2633. rc = ipa_send_msg(&msg_meta, resp, rmnet_ipa_free_msg);
  2634. if (rc) {
  2635. IPAWANERR("ipa_send_msg failed: %d\n", rc);
  2636. kfree(resp);
  2637. return;
  2638. }
  2639. }
  2640. /**
  2641. * rmnet_ipa_send_quota_reach_ind() - send quota_reach notification from
  2642. * IPA Modem
  2643. * This function sends the quota_reach indication from the IPA Modem driver
  2644. * via QMI, to user-space module
  2645. */
  2646. static void rmnet_ipa_send_quota_reach_ind(void)
  2647. {
  2648. struct ipa_msg_meta msg_meta;
  2649. int rc;
  2650. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  2651. msg_meta.msg_type = IPA_QUOTA_REACH;
  2652. rc = ipa_send_msg(&msg_meta, NULL, NULL);
  2653. if (rc) {
  2654. IPAWANERR("ipa_send_msg failed: %d\n", rc);
  2655. return;
  2656. }
  2657. }
  2658. /**
  2659. * rmnet_ipa3_poll_tethering_stats() - Tethering stats polling IOCTL handler
  2660. * @data - IOCTL data
  2661. *
  2662. * This function handles WAN_IOC_POLL_TETHERING_STATS.
  2663. * In case polling interval received is 0, polling will stop
  2664. * (If there's a polling in progress, it will allow it to finish), and then will
  2665. * fetch network stats, and update the IPA user space.
  2666. *
  2667. * Return codes:
  2668. * 0: Success
  2669. */
  2670. int rmnet_ipa3_poll_tethering_stats(struct wan_ioctl_poll_tethering_stats *data)
  2671. {
  2672. ipa3_rmnet_ctx.polling_interval = data->polling_interval_secs;
  2673. cancel_delayed_work_sync(&ipa_tether_stats_poll_wakequeue_work);
  2674. if (ipa3_rmnet_ctx.polling_interval == 0) {
  2675. ipa3_qmi_stop_data_qouta();
  2676. rmnet_ipa_get_network_stats_and_update();
  2677. rmnet_ipa_get_stats_and_update();
  2678. return 0;
  2679. }
  2680. schedule_delayed_work(&ipa_tether_stats_poll_wakequeue_work, 0);
  2681. return 0;
  2682. }
  2683. /**
  2684. * rmnet_ipa_set_data_quota_modem() - Data quota setting IOCTL handler
  2685. * @data - IOCTL data
  2686. *
  2687. * This function handles WAN_IOC_SET_DATA_QUOTA on modem interface.
  2688. * It translates the given interface name to the Modem MUX ID and
  2689. * sends the request of the quota to the IPA Modem driver via QMI.
  2690. *
  2691. * Return codes:
  2692. * 0: Success
  2693. * -EFAULT: Invalid interface name provided
  2694. * other: See ipa_qmi_set_data_quota
  2695. */
  2696. static int rmnet_ipa3_set_data_quota_modem(
  2697. struct wan_ioctl_set_data_quota *data)
  2698. {
  2699. u32 mux_id;
  2700. int index;
  2701. struct ipa_set_data_usage_quota_req_msg_v01 req;
  2702. /* stop quota */
  2703. if (!data->set_quota)
  2704. ipa3_qmi_stop_data_qouta();
  2705. /* prevent string buffer overflows */
  2706. data->interface_name[IFNAMSIZ-1] = '\0';
  2707. index = find_vchannel_name_index(data->interface_name);
  2708. IPAWANERR("iface name %s, quota %lu\n",
  2709. data->interface_name, (unsigned long) data->quota_mbytes);
  2710. if (index == MAX_NUM_OF_MUX_CHANNEL) {
  2711. IPAWANERR("%s is an invalid iface name\n",
  2712. data->interface_name);
  2713. return -ENODEV;
  2714. }
  2715. mux_id = rmnet_ipa3_ctx->mux_channel[index].mux_id;
  2716. ipa3_rmnet_ctx.metered_mux_id = mux_id;
  2717. memset(&req, 0, sizeof(struct ipa_set_data_usage_quota_req_msg_v01));
  2718. req.apn_quota_list_valid = true;
  2719. req.apn_quota_list_len = 1;
  2720. req.apn_quota_list[0].mux_id = mux_id;
  2721. req.apn_quota_list[0].num_Mbytes = data->quota_mbytes;
  2722. return ipa3_qmi_set_data_quota(&req);
  2723. }
  2724. static int rmnet_ipa3_set_data_quota_wifi(struct wan_ioctl_set_data_quota *data)
  2725. {
  2726. struct ipa_set_wifi_quota wifi_quota;
  2727. int rc = 0;
  2728. memset(&wifi_quota, 0, sizeof(struct ipa_set_wifi_quota));
  2729. wifi_quota.set_quota = data->set_quota;
  2730. wifi_quota.quota_bytes = data->quota_mbytes;
  2731. IPAWANERR("iface name %s, quota %lu\n",
  2732. data->interface_name, (unsigned long) data->quota_mbytes);
  2733. rc = ipa3_set_wlan_quota(&wifi_quota);
  2734. /* check if wlan-fw takes this quota-set */
  2735. if (!wifi_quota.set_valid)
  2736. rc = -EFAULT;
  2737. return rc;
  2738. }
  2739. /**
  2740. * rmnet_ipa_set_data_quota() - Data quota setting IOCTL handler
  2741. * @data - IOCTL data
  2742. *
  2743. * This function handles WAN_IOC_SET_DATA_QUOTA.
  2744. * It translates the given interface name to the Modem MUX ID and
  2745. * sends the request of the quota to the IPA Modem driver via QMI.
  2746. *
  2747. * Return codes:
  2748. * 0: Success
  2749. * -EFAULT: Invalid interface name provided
  2750. * other: See ipa_qmi_set_data_quota
  2751. */
  2752. int rmnet_ipa3_set_data_quota(struct wan_ioctl_set_data_quota *data)
  2753. {
  2754. enum ipa_upstream_type upstream_type;
  2755. int rc = 0;
  2756. /* prevent string buffer overflows */
  2757. data->interface_name[IFNAMSIZ-1] = '\0';
  2758. /* get IPA backhaul type */
  2759. upstream_type = find_upstream_type(data->interface_name);
  2760. if (upstream_type == IPA_UPSTEAM_MAX) {
  2761. IPAWANERR("Wrong interface_name name %s\n",
  2762. data->interface_name);
  2763. } else if (upstream_type == IPA_UPSTEAM_WLAN) {
  2764. rc = rmnet_ipa3_set_data_quota_wifi(data);
  2765. if (rc) {
  2766. IPAWANERR("set quota on wifi failed\n");
  2767. return rc;
  2768. }
  2769. } else {
  2770. rc = rmnet_ipa3_set_data_quota_modem(data);
  2771. if (rc) {
  2772. IPAWANERR("set quota on modem failed\n");
  2773. return rc;
  2774. }
  2775. }
  2776. return rc;
  2777. }
  2778. /* rmnet_ipa_set_tether_client_pipe() -
  2779. * @data - IOCTL data
  2780. *
  2781. * This function handles WAN_IOC_SET_DATA_QUOTA.
  2782. * It translates the given interface name to the Modem MUX ID and
  2783. * sends the request of the quota to the IPA Modem driver via QMI.
  2784. *
  2785. * Return codes:
  2786. * 0: Success
  2787. * -EFAULT: Invalid interface name provided
  2788. * other: See ipa_qmi_set_data_quota
  2789. */
  2790. int rmnet_ipa3_set_tether_client_pipe(
  2791. struct wan_ioctl_set_tether_client_pipe *data)
  2792. {
  2793. int number, i;
  2794. /* error checking if ul_src_pipe_len valid or not*/
  2795. if (data->ul_src_pipe_len > QMI_IPA_MAX_PIPES_V01 ||
  2796. data->ul_src_pipe_len < 0) {
  2797. IPAWANERR("UL src pipes %d exceeding max %d\n",
  2798. data->ul_src_pipe_len,
  2799. QMI_IPA_MAX_PIPES_V01);
  2800. return -EFAULT;
  2801. }
  2802. /* error checking if dl_dst_pipe_len valid or not*/
  2803. if (data->dl_dst_pipe_len > QMI_IPA_MAX_PIPES_V01 ||
  2804. data->dl_dst_pipe_len < 0) {
  2805. IPAWANERR("DL dst pipes %d exceeding max %d\n",
  2806. data->dl_dst_pipe_len,
  2807. QMI_IPA_MAX_PIPES_V01);
  2808. return -EFAULT;
  2809. }
  2810. IPAWANDBG("client %d, UL %d, DL %d, reset %d\n",
  2811. data->ipa_client,
  2812. data->ul_src_pipe_len,
  2813. data->dl_dst_pipe_len,
  2814. data->reset_client);
  2815. number = data->ul_src_pipe_len;
  2816. for (i = 0; i < number; i++) {
  2817. IPAWANDBG("UL index-%d pipe %d\n", i,
  2818. data->ul_src_pipe_list[i]);
  2819. if (data->reset_client)
  2820. ipa3_set_client(data->ul_src_pipe_list[i],
  2821. 0, false);
  2822. else
  2823. ipa3_set_client(data->ul_src_pipe_list[i],
  2824. data->ipa_client, true);
  2825. }
  2826. number = data->dl_dst_pipe_len;
  2827. for (i = 0; i < number; i++) {
  2828. IPAWANDBG("DL index-%d pipe %d\n", i,
  2829. data->dl_dst_pipe_list[i]);
  2830. if (data->reset_client)
  2831. ipa3_set_client(data->dl_dst_pipe_list[i],
  2832. 0, false);
  2833. else
  2834. ipa3_set_client(data->dl_dst_pipe_list[i],
  2835. data->ipa_client, false);
  2836. }
  2837. return 0;
  2838. }
  2839. static int rmnet_ipa3_query_tethering_stats_wifi(
  2840. struct wan_ioctl_query_tether_stats *data, bool reset)
  2841. {
  2842. struct ipa_get_wdi_sap_stats *sap_stats;
  2843. int rc;
  2844. sap_stats = kzalloc(sizeof(struct ipa_get_wdi_sap_stats),
  2845. GFP_KERNEL);
  2846. if (!sap_stats)
  2847. return -ENOMEM;
  2848. memset(sap_stats, 0, sizeof(struct ipa_get_wdi_sap_stats));
  2849. sap_stats->reset_stats = reset;
  2850. IPAWANDBG("reset the pipe stats %d\n", sap_stats->reset_stats);
  2851. rc = ipa3_get_wlan_stats(sap_stats);
  2852. if (rc) {
  2853. IPAWANERR_RL("can't get ipa3_get_wlan_stats\n");
  2854. kfree(sap_stats);
  2855. return rc;
  2856. } else if (data == NULL) {
  2857. IPAWANDBG("only reset wlan stats\n");
  2858. kfree(sap_stats);
  2859. return 0;
  2860. }
  2861. if (sap_stats->stats_valid) {
  2862. data->ipv4_tx_packets = sap_stats->ipv4_tx_packets;
  2863. data->ipv4_tx_bytes = sap_stats->ipv4_tx_bytes;
  2864. data->ipv4_rx_packets = sap_stats->ipv4_rx_packets;
  2865. data->ipv4_rx_bytes = sap_stats->ipv4_rx_bytes;
  2866. data->ipv6_tx_packets = sap_stats->ipv6_tx_packets;
  2867. data->ipv6_tx_bytes = sap_stats->ipv6_tx_bytes;
  2868. data->ipv6_rx_packets = sap_stats->ipv6_rx_packets;
  2869. data->ipv6_rx_bytes = sap_stats->ipv6_rx_bytes;
  2870. }
  2871. IPAWANDBG("v4_rx_p(%lu) v6_rx_p(%lu) v4_rx_b(%lu) v6_rx_b(%lu)\n",
  2872. (unsigned long) data->ipv4_rx_packets,
  2873. (unsigned long) data->ipv6_rx_packets,
  2874. (unsigned long) data->ipv4_rx_bytes,
  2875. (unsigned long) data->ipv6_rx_bytes);
  2876. IPAWANDBG("tx_p_v4(%lu)v6(%lu)tx_b_v4(%lu) v6(%lu)\n",
  2877. (unsigned long) data->ipv4_tx_packets,
  2878. (unsigned long) data->ipv6_tx_packets,
  2879. (unsigned long) data->ipv4_tx_bytes,
  2880. (unsigned long) data->ipv6_tx_bytes);
  2881. kfree(sap_stats);
  2882. return rc;
  2883. }
  2884. static int rmnet_ipa3_query_tethering_stats_modem(
  2885. struct wan_ioctl_query_tether_stats *data, bool reset)
  2886. {
  2887. struct ipa_get_data_stats_req_msg_v01 *req;
  2888. struct ipa_get_data_stats_resp_msg_v01 *resp;
  2889. int pipe_len, rc;
  2890. struct ipa_pipe_stats_info_type_v01 *stat_ptr;
  2891. req = kzalloc(sizeof(struct ipa_get_data_stats_req_msg_v01),
  2892. GFP_KERNEL);
  2893. if (!req)
  2894. return -ENOMEM;
  2895. resp = kzalloc(sizeof(struct ipa_get_data_stats_resp_msg_v01),
  2896. GFP_KERNEL);
  2897. if (!resp) {
  2898. kfree(req);
  2899. return -ENOMEM;
  2900. }
  2901. memset(req, 0, sizeof(struct ipa_get_data_stats_req_msg_v01));
  2902. memset(resp, 0, sizeof(struct ipa_get_data_stats_resp_msg_v01));
  2903. req->ipa_stats_type = QMI_IPA_STATS_TYPE_PIPE_V01;
  2904. if (reset) {
  2905. req->reset_stats_valid = true;
  2906. req->reset_stats = true;
  2907. IPAWANDBG("reset the pipe stats\n");
  2908. }
  2909. rc = ipa3_qmi_get_data_stats(req, resp);
  2910. if (rc) {
  2911. IPAWANERR("can't get ipa_qmi_get_data_stats\n");
  2912. kfree(req);
  2913. kfree(resp);
  2914. return rc;
  2915. } else if (data == NULL) {
  2916. IPAWANDBG("only reset modem stats\n");
  2917. kfree(req);
  2918. kfree(resp);
  2919. return 0;
  2920. }
  2921. if (resp->dl_dst_pipe_stats_list_valid) {
  2922. for (pipe_len = 0; pipe_len < resp->dl_dst_pipe_stats_list_len;
  2923. pipe_len++) {
  2924. stat_ptr =
  2925. &resp->dl_dst_pipe_stats_list[pipe_len];
  2926. IPAWANDBG_LOW("Check entry(%d) dl_dst_pipe(%d)\n",
  2927. pipe_len,
  2928. stat_ptr->pipe_index);
  2929. IPAWANDBG_LOW("dl_p_v4(%lu)v6(%lu)\n",
  2930. (unsigned long) stat_ptr->num_ipv4_packets,
  2931. (unsigned long) stat_ptr->num_ipv6_packets
  2932. );
  2933. IPAWANDBG_LOW("dl_b_v4(%lu)v6(%lu)\n",
  2934. (unsigned long) stat_ptr->num_ipv4_bytes,
  2935. (unsigned long) stat_ptr->num_ipv6_bytes);
  2936. if (ipa_get_client_uplink(
  2937. stat_ptr->pipe_index) == false) {
  2938. if (data->ipa_client == ipa_get_client(
  2939. stat_ptr->pipe_index)) {
  2940. /* update the DL stats */
  2941. data->ipv4_rx_packets +=
  2942. stat_ptr->num_ipv4_packets;
  2943. data->ipv6_rx_packets +=
  2944. stat_ptr->num_ipv6_packets;
  2945. data->ipv4_rx_bytes +=
  2946. stat_ptr->num_ipv4_bytes;
  2947. data->ipv6_rx_bytes +=
  2948. stat_ptr->num_ipv6_bytes;
  2949. }
  2950. }
  2951. }
  2952. }
  2953. IPAWANDBG("v4_rx_p(%lu) v6_rx_p(%lu) v4_rx_b(%lu) v6_rx_b(%lu)\n",
  2954. (unsigned long) data->ipv4_rx_packets,
  2955. (unsigned long) data->ipv6_rx_packets,
  2956. (unsigned long) data->ipv4_rx_bytes,
  2957. (unsigned long) data->ipv6_rx_bytes);
  2958. if (resp->ul_src_pipe_stats_list_valid) {
  2959. for (pipe_len = 0; pipe_len < resp->ul_src_pipe_stats_list_len;
  2960. pipe_len++) {
  2961. stat_ptr =
  2962. &resp->ul_src_pipe_stats_list[pipe_len];
  2963. IPAWANDBG_LOW("Check entry(%d) ul_dst_pipe(%d)\n",
  2964. pipe_len,
  2965. stat_ptr->pipe_index);
  2966. IPAWANDBG_LOW("ul_p_v4(%lu)v6(%lu)\n",
  2967. (unsigned long) stat_ptr->num_ipv4_packets,
  2968. (unsigned long) stat_ptr->num_ipv6_packets
  2969. );
  2970. IPAWANDBG_LOW("ul_b_v4(%lu)v6(%lu)\n",
  2971. (unsigned long)stat_ptr->num_ipv4_bytes,
  2972. (unsigned long) stat_ptr->num_ipv6_bytes);
  2973. if (ipa_get_client_uplink(
  2974. stat_ptr->pipe_index) == true) {
  2975. if (data->ipa_client == ipa_get_client(
  2976. stat_ptr->pipe_index)) {
  2977. /* update the DL stats */
  2978. data->ipv4_tx_packets +=
  2979. stat_ptr->num_ipv4_packets;
  2980. data->ipv6_tx_packets +=
  2981. stat_ptr->num_ipv6_packets;
  2982. data->ipv4_tx_bytes +=
  2983. stat_ptr->num_ipv4_bytes;
  2984. data->ipv6_tx_bytes +=
  2985. stat_ptr->num_ipv6_bytes;
  2986. }
  2987. }
  2988. }
  2989. }
  2990. IPAWANDBG("tx_p_v4(%lu)v6(%lu)tx_b_v4(%lu) v6(%lu)\n",
  2991. (unsigned long) data->ipv4_tx_packets,
  2992. (unsigned long) data->ipv6_tx_packets,
  2993. (unsigned long) data->ipv4_tx_bytes,
  2994. (unsigned long) data->ipv6_tx_bytes);
  2995. kfree(req);
  2996. kfree(resp);
  2997. return 0;
  2998. }
  2999. static int rmnet_ipa3_query_tethering_stats_hw(
  3000. struct wan_ioctl_query_tether_stats *data, bool reset)
  3001. {
  3002. int rc = 0, index = 0;
  3003. struct ipa_quota_stats_all *con_stats;
  3004. enum ipa_client_type wlan_client;
  3005. /* qet HW-stats */
  3006. rc = ipa_get_teth_stats();
  3007. if (rc) {
  3008. IPAWANDBG("ipa_get_teth_stats failed %d,\n", rc);
  3009. return rc;
  3010. }
  3011. /* query DL stats */
  3012. IPAWANDBG("reset the pipe stats? (%d)\n", reset);
  3013. con_stats = kzalloc(sizeof(*con_stats), GFP_KERNEL);
  3014. if (!con_stats) {
  3015. IPAWANERR("no memory\n");
  3016. return -ENOMEM;
  3017. }
  3018. if (rmnet_ipa3_ctx->ipa_config_is_apq) {
  3019. rc = ipa_query_teth_stats(IPA_CLIENT_MHI_PRIME_TETH_PROD,
  3020. con_stats, reset);
  3021. if (rc) {
  3022. IPAERR("MHI_PRIME_TETH_PROD query failed %d,\n", rc);
  3023. kfree(con_stats);
  3024. return rc;
  3025. }
  3026. } else {
  3027. rc = ipa_query_teth_stats(IPA_CLIENT_Q6_WAN_PROD,
  3028. con_stats, reset);
  3029. if (rc) {
  3030. IPAERR("IPA_CLIENT_Q6_WAN_PROD query failed %d,\n", rc);
  3031. kfree(con_stats);
  3032. return rc;
  3033. }
  3034. }
  3035. if (ipa3_ctx->ipa_hw_type == IPA_HW_v4_5)
  3036. wlan_client = IPA_CLIENT_WLAN2_CONS;
  3037. else
  3038. wlan_client = IPA_CLIENT_WLAN1_CONS;
  3039. IPAWANDBG("wlan: v4_rx_p-b(%d,%lld) v6_rx_p-b(%d,%lld),client(%d)\n",
  3040. con_stats->client[wlan_client].num_ipv4_pkts,
  3041. con_stats->client[wlan_client].num_ipv4_bytes,
  3042. con_stats->client[wlan_client].num_ipv6_pkts,
  3043. con_stats->client[wlan_client].num_ipv6_bytes,
  3044. wlan_client);
  3045. IPAWANDBG("usb: v4_rx_p(%d) b(%lld) v6_rx_p(%d) b(%lld)\n",
  3046. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv4_pkts,
  3047. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv4_bytes,
  3048. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv6_pkts,
  3049. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv6_bytes);
  3050. /* update the DL stats */
  3051. data->ipv4_rx_packets =
  3052. con_stats->client[wlan_client].num_ipv4_pkts +
  3053. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv4_pkts;
  3054. data->ipv6_rx_packets =
  3055. con_stats->client[wlan_client].num_ipv6_pkts +
  3056. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv6_pkts;
  3057. data->ipv4_rx_bytes =
  3058. con_stats->client[wlan_client].num_ipv4_bytes +
  3059. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv4_bytes;
  3060. data->ipv6_rx_bytes =
  3061. con_stats->client[wlan_client].num_ipv6_bytes +
  3062. con_stats->client[IPA_CLIENT_USB_CONS].num_ipv6_bytes;
  3063. IPAWANDBG("v4_rx_p(%lu) v6_rx_p(%lu) v4_rx_b(%lu) v6_rx_b(%lu)\n",
  3064. (unsigned long) data->ipv4_rx_packets,
  3065. (unsigned long) data->ipv6_rx_packets,
  3066. (unsigned long) data->ipv4_rx_bytes,
  3067. (unsigned long) data->ipv6_rx_bytes);
  3068. /* query USB UL stats */
  3069. memset(con_stats, 0, sizeof(struct ipa_quota_stats_all));
  3070. rc = ipa_query_teth_stats(IPA_CLIENT_USB_PROD, con_stats, reset);
  3071. if (rc) {
  3072. IPAERR("IPA_CLIENT_USB_PROD query failed %d\n", rc);
  3073. kfree(con_stats);
  3074. return rc;
  3075. }
  3076. if (rmnet_ipa3_ctx->ipa_config_is_apq)
  3077. index = IPA_CLIENT_MHI_PRIME_TETH_CONS;
  3078. else
  3079. index = IPA_CLIENT_Q6_WAN_CONS;
  3080. IPAWANDBG("usb: v4_tx_p(%d) b(%lld) v6_tx_p(%d) b(%lld)\n",
  3081. con_stats->client[index].num_ipv4_pkts,
  3082. con_stats->client[index].num_ipv4_bytes,
  3083. con_stats->client[index].num_ipv6_pkts,
  3084. con_stats->client[index].num_ipv6_bytes);
  3085. /* update the USB UL stats */
  3086. data->ipv4_tx_packets =
  3087. con_stats->client[index].num_ipv4_pkts;
  3088. data->ipv6_tx_packets =
  3089. con_stats->client[index].num_ipv6_pkts;
  3090. data->ipv4_tx_bytes =
  3091. con_stats->client[index].num_ipv4_bytes;
  3092. data->ipv6_tx_bytes =
  3093. con_stats->client[index].num_ipv6_bytes;
  3094. /* query WLAN UL stats */
  3095. memset(con_stats, 0, sizeof(struct ipa_quota_stats_all));
  3096. if (ipa3_ctx->ipa_hw_type == IPA_HW_v4_5)
  3097. rc = ipa_query_teth_stats(IPA_CLIENT_WLAN2_PROD,
  3098. con_stats, reset);
  3099. else
  3100. rc = ipa_query_teth_stats(IPA_CLIENT_WLAN1_PROD,
  3101. con_stats, reset);
  3102. if (rc) {
  3103. IPAERR("IPA_CLIENT_WLAN_PROD query failed %d\n", rc);
  3104. kfree(con_stats);
  3105. return rc;
  3106. }
  3107. if (rmnet_ipa3_ctx->ipa_config_is_apq)
  3108. index = IPA_CLIENT_MHI_PRIME_TETH_CONS;
  3109. else
  3110. index = IPA_CLIENT_Q6_WAN_CONS;
  3111. IPAWANDBG("wlan1: v4_tx_p(%d) b(%lld) v6_tx_p(%d) b(%lld)\n",
  3112. con_stats->client[index].num_ipv4_pkts,
  3113. con_stats->client[index].num_ipv4_bytes,
  3114. con_stats->client[index].num_ipv6_pkts,
  3115. con_stats->client[index].num_ipv6_bytes);
  3116. /* update the wlan UL stats */
  3117. data->ipv4_tx_packets +=
  3118. con_stats->client[index].num_ipv4_pkts;
  3119. data->ipv6_tx_packets +=
  3120. con_stats->client[index].num_ipv6_pkts;
  3121. data->ipv4_tx_bytes +=
  3122. con_stats->client[index].num_ipv4_bytes;
  3123. data->ipv6_tx_bytes +=
  3124. con_stats->client[index].num_ipv6_bytes;
  3125. IPAWANDBG("v4_tx_p(%lu) v6_tx_p(%lu) v4_tx_b(%lu) v6_tx_b(%lu)\n",
  3126. (unsigned long) data->ipv4_tx_packets,
  3127. (unsigned long) data->ipv6_tx_packets,
  3128. (unsigned long) data->ipv4_tx_bytes,
  3129. (unsigned long) data->ipv6_tx_bytes);
  3130. kfree(con_stats);
  3131. return rc;
  3132. }
  3133. int rmnet_ipa3_query_tethering_stats(struct wan_ioctl_query_tether_stats *data,
  3134. bool reset)
  3135. {
  3136. enum ipa_upstream_type upstream_type;
  3137. int rc = 0;
  3138. /* prevent string buffer overflows */
  3139. data->upstreamIface[IFNAMSIZ-1] = '\0';
  3140. data->tetherIface[IFNAMSIZ-1] = '\0';
  3141. /* get IPA backhaul type */
  3142. upstream_type = find_upstream_type(data->upstreamIface);
  3143. if (upstream_type == IPA_UPSTEAM_MAX) {
  3144. IPAWANERR(" Wrong upstreamIface name %s\n",
  3145. data->upstreamIface);
  3146. } else if (upstream_type == IPA_UPSTEAM_WLAN) {
  3147. IPAWANDBG_LOW(" query wifi-backhaul stats\n");
  3148. rc = rmnet_ipa3_query_tethering_stats_wifi(
  3149. data, false);
  3150. if (rc) {
  3151. IPAWANERR("wlan WAN_IOC_QUERY_TETHER_STATS failed\n");
  3152. return rc;
  3153. }
  3154. } else {
  3155. IPAWANDBG_LOW(" query modem-backhaul stats\n");
  3156. rc = rmnet_ipa3_query_tethering_stats_modem(
  3157. data, false);
  3158. if (rc) {
  3159. IPAWANERR("modem WAN_IOC_QUERY_TETHER_STATS failed\n");
  3160. return rc;
  3161. }
  3162. }
  3163. return rc;
  3164. }
  3165. int rmnet_ipa3_query_tethering_stats_all(
  3166. struct wan_ioctl_query_tether_stats_all *data)
  3167. {
  3168. struct wan_ioctl_query_tether_stats tether_stats;
  3169. enum ipa_upstream_type upstream_type;
  3170. int rc = 0;
  3171. memset(&tether_stats, 0, sizeof(struct wan_ioctl_query_tether_stats));
  3172. /* prevent string buffer overflows */
  3173. data->upstreamIface[IFNAMSIZ-1] = '\0';
  3174. /* get IPA backhaul type */
  3175. upstream_type = find_upstream_type(data->upstreamIface);
  3176. if (upstream_type == IPA_UPSTEAM_MAX) {
  3177. IPAWANERR(" Wrong upstreamIface name %s\n",
  3178. data->upstreamIface);
  3179. } else if (upstream_type == IPA_UPSTEAM_WLAN) {
  3180. IPAWANDBG_LOW(" query wifi-backhaul stats\n");
  3181. rc = rmnet_ipa3_query_tethering_stats_wifi(
  3182. &tether_stats, data->reset_stats);
  3183. if (rc) {
  3184. IPAWANERR_RL(
  3185. "wlan WAN_IOC_QUERY_TETHER_STATS failed\n");
  3186. return rc;
  3187. }
  3188. data->tx_bytes = tether_stats.ipv4_tx_bytes
  3189. + tether_stats.ipv6_tx_bytes;
  3190. data->rx_bytes = tether_stats.ipv4_rx_bytes
  3191. + tether_stats.ipv6_rx_bytes;
  3192. } else {
  3193. IPAWANDBG_LOW(" query modem-backhaul stats\n");
  3194. tether_stats.ipa_client = data->ipa_client;
  3195. if (ipa3_ctx->ipa_hw_type < IPA_HW_v4_0 ||
  3196. !ipa3_ctx->hw_stats.enabled) {
  3197. IPAWANDBG("hw version %d,hw_stats.enabled %d\n",
  3198. ipa3_ctx->ipa_hw_type,
  3199. ipa3_ctx->hw_stats.enabled);
  3200. /* get modem stats from QMI */
  3201. rc = rmnet_ipa3_query_tethering_stats_modem(
  3202. &tether_stats, data->reset_stats);
  3203. if (rc) {
  3204. IPAWANERR("modem QUERY_TETHER_STATS failed\n");
  3205. return rc;
  3206. }
  3207. } else {
  3208. /* get modem stats from IPA-HW counters */
  3209. rc = rmnet_ipa3_query_tethering_stats_hw(
  3210. &tether_stats, data->reset_stats);
  3211. if (rc) {
  3212. IPAWANERR("modem QUERY_TETHER_STATS failed\n");
  3213. return rc;
  3214. }
  3215. }
  3216. data->tx_bytes = tether_stats.ipv4_tx_bytes
  3217. + tether_stats.ipv6_tx_bytes;
  3218. data->rx_bytes = tether_stats.ipv4_rx_bytes
  3219. + tether_stats.ipv6_rx_bytes;
  3220. }
  3221. return rc;
  3222. }
  3223. int rmnet_ipa3_reset_tethering_stats(struct wan_ioctl_reset_tether_stats *data)
  3224. {
  3225. enum ipa_upstream_type upstream_type;
  3226. int rc = 0;
  3227. /* prevent string buffer overflows */
  3228. data->upstreamIface[IFNAMSIZ-1] = '\0';
  3229. /* get IPA backhaul type */
  3230. upstream_type = find_upstream_type(data->upstreamIface);
  3231. if (upstream_type == IPA_UPSTEAM_MAX) {
  3232. IPAWANERR(" Wrong upstreamIface name %s\n",
  3233. data->upstreamIface);
  3234. } else if (upstream_type == IPA_UPSTEAM_WLAN) {
  3235. IPAWANERR(" reset wifi-backhaul stats\n");
  3236. rc = rmnet_ipa3_query_tethering_stats_wifi(
  3237. NULL, true);
  3238. if (rc) {
  3239. IPAWANERR("reset WLAN stats failed\n");
  3240. return rc;
  3241. }
  3242. } else {
  3243. IPAWANERR(" reset modem-backhaul stats\n");
  3244. rc = rmnet_ipa3_query_tethering_stats_modem(
  3245. NULL, true);
  3246. if (rc) {
  3247. IPAWANERR("reset MODEM stats failed\n");
  3248. return rc;
  3249. }
  3250. }
  3251. return rc;
  3252. }
  3253. /**
  3254. * ipa3_broadcast_quota_reach_ind() - Send Netlink broadcast on Quota
  3255. * @mux_id - The MUX ID on which the quota has been reached
  3256. *
  3257. * This function broadcasts a Netlink event using the kobject of the
  3258. * rmnet_ipa interface in order to alert the user space that the quota
  3259. * on the specific interface which matches the mux_id has been reached.
  3260. *
  3261. */
  3262. void ipa3_broadcast_quota_reach_ind(u32 mux_id,
  3263. enum ipa_upstream_type upstream_type)
  3264. {
  3265. char alert_msg[IPA_QUOTA_REACH_ALERT_MAX_SIZE];
  3266. char iface_name_m[IPA_QUOTA_REACH_IF_NAME_MAX_SIZE];
  3267. char iface_name_l[IPA_QUOTA_REACH_IF_NAME_MAX_SIZE];
  3268. char *envp[IPA_UEVENT_NUM_EVNP] = {
  3269. alert_msg, iface_name_l, iface_name_m, NULL};
  3270. int res;
  3271. int index;
  3272. /* check upstream_type*/
  3273. if (upstream_type == IPA_UPSTEAM_MAX) {
  3274. IPAWANERR(" Wrong upstreamIface type %d\n", upstream_type);
  3275. return;
  3276. } else if (upstream_type == IPA_UPSTEAM_MODEM) {
  3277. index = ipa3_find_mux_channel_index(mux_id);
  3278. if (index == MAX_NUM_OF_MUX_CHANNEL) {
  3279. IPAWANERR("%u is an mux ID\n", mux_id);
  3280. return;
  3281. }
  3282. }
  3283. res = snprintf(alert_msg, IPA_QUOTA_REACH_ALERT_MAX_SIZE,
  3284. "ALERT_NAME=%s", "quotaReachedAlert");
  3285. if (res >= IPA_QUOTA_REACH_ALERT_MAX_SIZE) {
  3286. IPAWANERR("message too long (%d)", res);
  3287. return;
  3288. }
  3289. /* posting msg for L-release for CNE */
  3290. if (upstream_type == IPA_UPSTEAM_MODEM) {
  3291. res = snprintf(iface_name_l,
  3292. IPA_QUOTA_REACH_IF_NAME_MAX_SIZE,
  3293. "UPSTREAM=%s",
  3294. rmnet_ipa3_ctx->mux_channel[index].vchannel_name);
  3295. } else {
  3296. res = snprintf(iface_name_l, IPA_QUOTA_REACH_IF_NAME_MAX_SIZE,
  3297. "UPSTREAM=%s", IPA_UPSTEAM_WLAN_IFACE_NAME);
  3298. }
  3299. if (res >= IPA_QUOTA_REACH_IF_NAME_MAX_SIZE) {
  3300. IPAWANERR("message too long (%d)", res);
  3301. return;
  3302. }
  3303. /* posting msg for M-release for CNE */
  3304. if (upstream_type == IPA_UPSTEAM_MODEM) {
  3305. res = snprintf(iface_name_m,
  3306. IPA_QUOTA_REACH_IF_NAME_MAX_SIZE,
  3307. "INTERFACE=%s",
  3308. rmnet_ipa3_ctx->mux_channel[index].vchannel_name);
  3309. } else {
  3310. res = snprintf(iface_name_m,
  3311. IPA_QUOTA_REACH_IF_NAME_MAX_SIZE,
  3312. "INTERFACE=%s",
  3313. IPA_UPSTEAM_WLAN_IFACE_NAME);
  3314. }
  3315. if (res >= IPA_QUOTA_REACH_IF_NAME_MAX_SIZE) {
  3316. IPAWANERR("message too long (%d)", res);
  3317. return;
  3318. }
  3319. IPAWANERR("putting nlmsg: <%s> <%s> <%s>\n",
  3320. alert_msg, iface_name_l, iface_name_m);
  3321. kobject_uevent_env(&(IPA_NETDEV()->dev.kobj),
  3322. KOBJ_CHANGE, envp);
  3323. rmnet_ipa_send_quota_reach_ind();
  3324. }
  3325. /**
  3326. * ipa3_q6_handshake_complete() - Perform operations once Q6 is up
  3327. * @ssr_bootup - Indicates whether this is a cold boot-up or post-SSR.
  3328. *
  3329. * This function is invoked once the handshake between the IPA AP driver
  3330. * and IPA Q6 driver is complete. At this point, it is possible to perform
  3331. * operations which can't be performed until IPA Q6 driver is up.
  3332. *
  3333. */
  3334. void ipa3_q6_handshake_complete(bool ssr_bootup)
  3335. {
  3336. /* It is required to recover the network stats after SSR recovery */
  3337. if (ssr_bootup) {
  3338. /*
  3339. * In case the uC is required to be loaded by the Modem,
  3340. * the proxy vote will be removed only when uC loading is
  3341. * complete and indication is received by the AP. After SSR,
  3342. * uC is already loaded. Therefore, proxy vote can be removed
  3343. * once Modem init is complete.
  3344. */
  3345. ipa3_proxy_clk_unvote();
  3346. /* send SSR power-up notification to IPACM */
  3347. rmnet_ipa_send_ssr_notification(true);
  3348. /*
  3349. * It is required to recover the network stats after
  3350. * SSR recovery
  3351. */
  3352. rmnet_ipa_get_network_stats_and_update();
  3353. }
  3354. imp_handle_modem_ready();
  3355. }
  3356. static inline bool rmnet_ipa3_check_any_client_inited
  3357. (
  3358. enum ipacm_per_client_device_type device_type
  3359. )
  3360. {
  3361. int i = 0;
  3362. struct ipa_tether_device_info *teth_ptr = NULL;
  3363. for (; i < IPA_MAX_NUM_HW_PATH_CLIENTS; i++) {
  3364. teth_ptr = &rmnet_ipa3_ctx->tether_device[device_type];
  3365. if (teth_ptr->lan_client[i].client_idx != -1 &&
  3366. teth_ptr->lan_client[i].inited) {
  3367. IPAWANERR("Found client index: %d which is inited\n",
  3368. i);
  3369. return true;
  3370. }
  3371. }
  3372. return false;
  3373. }
  3374. static inline int rmnet_ipa3_get_lan_client_info
  3375. (
  3376. enum ipacm_per_client_device_type device_type,
  3377. uint8_t mac[]
  3378. )
  3379. {
  3380. int i = 0;
  3381. struct ipa_tether_device_info *teth_ptr = NULL;
  3382. IPAWANDBG("Client MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
  3383. mac[0], mac[1], mac[2],
  3384. mac[3], mac[4], mac[5]);
  3385. for (; i < IPA_MAX_NUM_HW_PATH_CLIENTS; i++) {
  3386. teth_ptr = &rmnet_ipa3_ctx->tether_device[device_type];
  3387. if (memcmp(
  3388. teth_ptr->lan_client[i].mac,
  3389. mac,
  3390. IPA_MAC_ADDR_SIZE) == 0) {
  3391. IPAWANDBG("Matched client index: %d\n", i);
  3392. return i;
  3393. }
  3394. }
  3395. return -EINVAL;
  3396. }
  3397. static inline int rmnet_ipa3_delete_lan_client_info
  3398. (
  3399. enum ipacm_per_client_device_type device_type,
  3400. int lan_clnt_idx
  3401. )
  3402. {
  3403. struct ipa_lan_client *lan_client = NULL;
  3404. int i;
  3405. struct ipa_tether_device_info *teth_ptr = NULL;
  3406. IPAWANDBG("Delete lan client info: %d, %d, %d\n",
  3407. rmnet_ipa3_ctx->tether_device[device_type].num_clients,
  3408. lan_clnt_idx, device_type);
  3409. /* Check if Device type is valid. */
  3410. if (device_type >= IPACM_MAX_CLIENT_DEVICE_TYPES ||
  3411. device_type < 0) {
  3412. IPAWANERR("Invalid Device type: %d\n", device_type);
  3413. return -EINVAL;
  3414. }
  3415. /* Check if the request is to clean up all clients. */
  3416. teth_ptr = &rmnet_ipa3_ctx->tether_device[device_type];
  3417. if (lan_clnt_idx == 0xffffffff) {
  3418. /* Reset the complete device info. */
  3419. memset(teth_ptr, 0,
  3420. sizeof(struct ipa_tether_device_info));
  3421. teth_ptr->ul_src_pipe = -1;
  3422. for (i = 0; i < IPA_MAX_NUM_HW_PATH_CLIENTS; i++)
  3423. teth_ptr->lan_client[i].client_idx = -1;
  3424. } else {
  3425. lan_client = &teth_ptr->lan_client[lan_clnt_idx];
  3426. /* Reset the client info before sending the message. */
  3427. memset(lan_client, 0, sizeof(struct ipa_lan_client));
  3428. lan_client->client_idx = -1;
  3429. /* Decrement the number of clients. */
  3430. rmnet_ipa3_ctx->tether_device[device_type].num_clients--;
  3431. }
  3432. return 0;
  3433. }
  3434. /* rmnet_ipa3_set_lan_client_info() -
  3435. * @data - IOCTL data
  3436. *
  3437. * This function handles WAN_IOC_SET_LAN_CLIENT_INFO.
  3438. * It is used to store LAN client information which
  3439. * is used to fetch the packet stats for a client.
  3440. *
  3441. * Return codes:
  3442. * 0: Success
  3443. * -EINVAL: Invalid args provided
  3444. */
  3445. int rmnet_ipa3_set_lan_client_info(
  3446. struct wan_ioctl_lan_client_info *data)
  3447. {
  3448. struct ipa_lan_client *lan_client = NULL;
  3449. struct ipa_tether_device_info *teth_ptr = NULL;
  3450. IPAWANDBG("Client MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
  3451. data->mac[0], data->mac[1], data->mac[2],
  3452. data->mac[3], data->mac[4], data->mac[5]);
  3453. /* Check if Device type is valid. */
  3454. if (data->device_type >= IPACM_MAX_CLIENT_DEVICE_TYPES ||
  3455. data->device_type < 0) {
  3456. IPAWANERR("Invalid Device type: %d\n", data->device_type);
  3457. return -EINVAL;
  3458. }
  3459. /* Check if Client index is valid. */
  3460. if (data->client_idx >= IPA_MAX_NUM_HW_PATH_CLIENTS ||
  3461. data->client_idx < 0) {
  3462. IPAWANERR("Invalid Client Index: %d\n", data->client_idx);
  3463. return -EINVAL;
  3464. }
  3465. mutex_lock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3466. if (data->client_init) {
  3467. /* check if the client is already inited. */
  3468. if (rmnet_ipa3_ctx->tether_device[data->device_type]
  3469. .lan_client[data->client_idx].inited) {
  3470. IPAWANERR("Client already inited: %d:%d\n",
  3471. data->device_type, data->client_idx);
  3472. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3473. return -EINVAL;
  3474. }
  3475. }
  3476. teth_ptr = &rmnet_ipa3_ctx->tether_device[data->device_type];
  3477. lan_client = &teth_ptr->lan_client[data->client_idx];
  3478. memcpy(lan_client->mac, data->mac, IPA_MAC_ADDR_SIZE);
  3479. lan_client->client_idx = data->client_idx;
  3480. /* Update the Source pipe. */
  3481. rmnet_ipa3_ctx->tether_device[data->device_type].ul_src_pipe =
  3482. ipa3_get_ep_mapping(data->ul_src_pipe);
  3483. /* Update the header length if not set. */
  3484. if (!rmnet_ipa3_ctx->tether_device[data->device_type].hdr_len)
  3485. rmnet_ipa3_ctx->tether_device[data->device_type].hdr_len =
  3486. data->hdr_len;
  3487. lan_client->inited = true;
  3488. rmnet_ipa3_ctx->tether_device[data->device_type].num_clients++;
  3489. IPAWANDBG("Set the lan client info: %d, %d, %d\n",
  3490. lan_client->client_idx,
  3491. rmnet_ipa3_ctx->tether_device[data->device_type].ul_src_pipe,
  3492. rmnet_ipa3_ctx->tether_device[data->device_type].num_clients);
  3493. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3494. return 0;
  3495. }
  3496. /* rmnet_ipa3_delete_lan_client_info() -
  3497. * @data - IOCTL data
  3498. *
  3499. * This function handles WAN_IOC_DELETE_LAN_CLIENT_INFO.
  3500. * It is used to delete LAN client information which
  3501. * is used to fetch the packet stats for a client.
  3502. *
  3503. * Return codes:
  3504. * 0: Success
  3505. * -EINVAL: Invalid args provided
  3506. */
  3507. int rmnet_ipa3_clear_lan_client_info(
  3508. struct wan_ioctl_lan_client_info *data)
  3509. {
  3510. struct ipa_lan_client *lan_client = NULL;
  3511. struct ipa_tether_device_info *teth_ptr = NULL;
  3512. IPAWANDBG("Client MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
  3513. data->mac[0], data->mac[1], data->mac[2],
  3514. data->mac[3], data->mac[4], data->mac[5]);
  3515. /* Check if Device type is valid. */
  3516. if (data->device_type >= IPACM_MAX_CLIENT_DEVICE_TYPES ||
  3517. data->device_type < 0) {
  3518. IPAWANERR("Invalid Device type: %d\n", data->device_type);
  3519. return -EINVAL;
  3520. }
  3521. /* Check if Client index is valid. */
  3522. if (data->client_idx >= IPA_MAX_NUM_HW_PATH_CLIENTS ||
  3523. data->client_idx < 0) {
  3524. IPAWANERR("Invalid Client Index: %d\n", data->client_idx);
  3525. return -EINVAL;
  3526. }
  3527. IPAWANDBG("Client : %d:%d:%d\n",
  3528. data->device_type, data->client_idx,
  3529. rmnet_ipa3_ctx->tether_device[data->device_type].num_clients);
  3530. teth_ptr = &rmnet_ipa3_ctx->tether_device[data->device_type];
  3531. mutex_lock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3532. lan_client = &teth_ptr->lan_client[data->client_idx];
  3533. if (!data->client_init) {
  3534. /* check if the client is already de-inited. */
  3535. if (!lan_client->inited) {
  3536. IPAWANERR("Client already de-inited: %d:%d\n",
  3537. data->device_type, data->client_idx);
  3538. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3539. return -EINVAL;
  3540. }
  3541. }
  3542. lan_client->inited = false;
  3543. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3544. return 0;
  3545. }
  3546. /* rmnet_ipa3_send_lan_client_msg() -
  3547. * @data - IOCTL data
  3548. *
  3549. * This function handles WAN_IOC_SEND_LAN_CLIENT_MSG.
  3550. * It is used to send LAN client information to IPACM.
  3551. *
  3552. * Return codes:
  3553. * 0: Success
  3554. * -EINVAL: Invalid args provided
  3555. */
  3556. int rmnet_ipa3_send_lan_client_msg(
  3557. struct wan_ioctl_send_lan_client_msg *data)
  3558. {
  3559. struct ipa_msg_meta msg_meta;
  3560. int rc;
  3561. struct ipa_lan_client_msg *lan_client;
  3562. /* Notify IPACM to reset the client index. */
  3563. lan_client = kzalloc(sizeof(struct ipa_lan_client_msg),
  3564. GFP_KERNEL);
  3565. if (!lan_client) {
  3566. IPAWANERR("Can't allocate memory for tether_info\n");
  3567. return -ENOMEM;
  3568. }
  3569. if (data->client_event != IPA_PER_CLIENT_STATS_CONNECT_EVENT &&
  3570. data->client_event != IPA_PER_CLIENT_STATS_DISCONNECT_EVENT) {
  3571. IPAWANERR("Wrong event given. Event:- %d\n",
  3572. data->client_event);
  3573. kfree(lan_client);
  3574. return -EINVAL;
  3575. }
  3576. data->lan_client.lanIface[IPA_RESOURCE_NAME_MAX-1] = '\0';
  3577. memset(&msg_meta, 0, sizeof(struct ipa_msg_meta));
  3578. memcpy(lan_client, &data->lan_client,
  3579. sizeof(struct ipa_lan_client_msg));
  3580. msg_meta.msg_type = data->client_event;
  3581. msg_meta.msg_len = sizeof(struct ipa_lan_client_msg);
  3582. rc = ipa_send_msg(&msg_meta, lan_client, rmnet_ipa_free_msg);
  3583. if (rc) {
  3584. IPAWANERR("ipa_send_msg failed: %d\n", rc);
  3585. kfree(lan_client);
  3586. return rc;
  3587. }
  3588. return 0;
  3589. }
  3590. /* rmnet_ipa3_enable_per_client_stats() -
  3591. * @data - IOCTL data
  3592. *
  3593. * This function handles WAN_IOC_ENABLE_PER_CLIENT_STATS.
  3594. * It is used to indicate Q6 to start capturing per client stats.
  3595. *
  3596. * Return codes:
  3597. * 0: Success
  3598. * -EINVAL: Invalid args provided
  3599. */
  3600. int rmnet_ipa3_enable_per_client_stats(
  3601. bool *data)
  3602. {
  3603. struct ipa_enable_per_client_stats_req_msg_v01 *req;
  3604. struct ipa_enable_per_client_stats_resp_msg_v01 *resp;
  3605. int rc;
  3606. req =
  3607. kzalloc(sizeof(struct ipa_enable_per_client_stats_req_msg_v01),
  3608. GFP_KERNEL);
  3609. if (!req) {
  3610. IPAWANERR("Can't allocate memory for stats message\n");
  3611. return -ENOMEM;
  3612. }
  3613. resp =
  3614. kzalloc(sizeof(struct ipa_enable_per_client_stats_resp_msg_v01),
  3615. GFP_KERNEL);
  3616. if (!resp) {
  3617. IPAWANERR("Can't allocate memory for stats message\n");
  3618. kfree(req);
  3619. return -ENOMEM;
  3620. }
  3621. memset(req, 0,
  3622. sizeof(struct ipa_enable_per_client_stats_req_msg_v01));
  3623. memset(resp, 0,
  3624. sizeof(struct ipa_enable_per_client_stats_resp_msg_v01));
  3625. if (*data)
  3626. req->enable_per_client_stats = 1;
  3627. else
  3628. req->enable_per_client_stats = 0;
  3629. rc = ipa3_qmi_enable_per_client_stats(req, resp);
  3630. if (rc) {
  3631. IPAWANERR("can't enable per client stats\n");
  3632. kfree(req);
  3633. kfree(resp);
  3634. return rc;
  3635. }
  3636. kfree(req);
  3637. kfree(resp);
  3638. return 0;
  3639. }
  3640. int rmnet_ipa3_query_per_client_stats(
  3641. struct wan_ioctl_query_per_client_stats *data)
  3642. {
  3643. struct ipa_get_stats_per_client_req_msg_v01 *req;
  3644. struct ipa_get_stats_per_client_resp_msg_v01 *resp;
  3645. int rc, lan_clnt_idx, lan_clnt_idx1, i;
  3646. struct ipa_lan_client *lan_client = NULL;
  3647. struct ipa_tether_device_info *teth_ptr = NULL;
  3648. IPAWANDBG("Client MAC %02x:%02x:%02x:%02x:%02x:%02x\n",
  3649. data->client_info[0].mac[0],
  3650. data->client_info[0].mac[1],
  3651. data->client_info[0].mac[2],
  3652. data->client_info[0].mac[3],
  3653. data->client_info[0].mac[4],
  3654. data->client_info[0].mac[5]);
  3655. /* Check if Device type is valid. */
  3656. if (data->device_type >= IPACM_MAX_CLIENT_DEVICE_TYPES ||
  3657. data->device_type < 0) {
  3658. IPAWANERR("Invalid Device type: %d\n", data->device_type);
  3659. return -EINVAL;
  3660. }
  3661. /* Check if num_clients is valid. */
  3662. if (data->num_clients != IPA_MAX_NUM_HW_PATH_CLIENTS &&
  3663. data->num_clients != 1) {
  3664. IPAWANERR("Invalid number of clients: %d\n", data->num_clients);
  3665. return -EINVAL;
  3666. }
  3667. mutex_lock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3668. /* Check if Source pipe is valid. */
  3669. if (rmnet_ipa3_ctx->tether_device
  3670. [data->device_type].ul_src_pipe == -1) {
  3671. IPAWANERR("Device not initialized: %d\n", data->device_type);
  3672. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3673. return -EINVAL;
  3674. }
  3675. /* Check if we have clients connected. */
  3676. if (rmnet_ipa3_ctx->tether_device[data->device_type].num_clients == 0) {
  3677. IPAWANERR("No clients connected: %d\n", data->device_type);
  3678. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3679. return -EINVAL;
  3680. }
  3681. if (data->num_clients == 1) {
  3682. /* Check if the client info is valid.*/
  3683. lan_clnt_idx1 = rmnet_ipa3_get_lan_client_info(
  3684. data->device_type,
  3685. data->client_info[0].mac);
  3686. if (lan_clnt_idx1 < 0) {
  3687. IPAWANERR("Client info not available return.\n");
  3688. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3689. return -EINVAL;
  3690. }
  3691. teth_ptr = &rmnet_ipa3_ctx->tether_device[data->device_type];
  3692. lan_client = &teth_ptr->lan_client[lan_clnt_idx1];
  3693. /*
  3694. * Check if disconnect flag is set and
  3695. * see if all the clients info are cleared.
  3696. */
  3697. if (data->disconnect_clnt &&
  3698. lan_client->inited) {
  3699. IPAWANERR("Client not inited. Try again.\n");
  3700. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3701. return -EAGAIN;
  3702. }
  3703. } else {
  3704. /* Max number of clients. */
  3705. /* Check if disconnect flag is set and
  3706. * see if all the clients info are cleared.
  3707. */
  3708. if (data->disconnect_clnt &&
  3709. rmnet_ipa3_check_any_client_inited(data->device_type)) {
  3710. IPAWANERR("CLient not inited. Try again.\n");
  3711. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3712. return -EAGAIN;
  3713. }
  3714. lan_clnt_idx1 = 0xffffffff;
  3715. }
  3716. req = kzalloc(sizeof(struct ipa_get_stats_per_client_req_msg_v01),
  3717. GFP_KERNEL);
  3718. if (!req) {
  3719. IPAWANERR("Can't allocate memory for stats message\n");
  3720. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3721. return -ENOMEM;
  3722. }
  3723. resp = kzalloc(sizeof(struct ipa_get_stats_per_client_resp_msg_v01),
  3724. GFP_KERNEL);
  3725. if (!resp) {
  3726. IPAWANERR("Can't allocate memory for stats message\n");
  3727. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3728. kfree(req);
  3729. return -ENOMEM;
  3730. }
  3731. memset(req, 0, sizeof(struct ipa_get_stats_per_client_req_msg_v01));
  3732. memset(resp, 0, sizeof(struct ipa_get_stats_per_client_resp_msg_v01));
  3733. IPAWANDBG("Reset stats: %s",
  3734. data->reset_stats?"Yes":"No");
  3735. if (data->reset_stats) {
  3736. req->reset_stats_valid = true;
  3737. req->reset_stats = true;
  3738. IPAWANDBG("fetch and reset the client stats\n");
  3739. }
  3740. req->client_id = lan_clnt_idx1;
  3741. req->src_pipe_id =
  3742. rmnet_ipa3_ctx->tether_device[data->device_type].ul_src_pipe;
  3743. IPAWANDBG("fetch the client stats for %d, %d\n", req->client_id,
  3744. req->src_pipe_id);
  3745. rc = ipa3_qmi_get_per_client_packet_stats(req, resp);
  3746. if (rc) {
  3747. IPAWANERR("can't get per client stats\n");
  3748. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3749. kfree(req);
  3750. kfree(resp);
  3751. return rc;
  3752. }
  3753. if (resp->per_client_stats_list_valid) {
  3754. for (i = 0; i < resp->per_client_stats_list_len
  3755. && i < IPA_MAX_NUM_HW_PATH_CLIENTS; i++) {
  3756. /* Subtract the header bytes from the DL bytes. */
  3757. data->client_info[i].ipv4_rx_bytes =
  3758. (resp->per_client_stats_list[i].num_dl_ipv4_bytes) -
  3759. (teth_ptr->hdr_len *
  3760. resp->per_client_stats_list[i].num_dl_ipv4_pkts);
  3761. /* UL header bytes are subtracted by Q6. */
  3762. data->client_info[i].ipv4_tx_bytes =
  3763. resp->per_client_stats_list[i].num_ul_ipv4_bytes;
  3764. /* Subtract the header bytes from the DL bytes. */
  3765. data->client_info[i].ipv6_rx_bytes =
  3766. (resp->per_client_stats_list[i].num_dl_ipv6_bytes) -
  3767. (teth_ptr->hdr_len *
  3768. resp->per_client_stats_list[i].num_dl_ipv6_pkts);
  3769. /* UL header bytes are subtracted by Q6. */
  3770. data->client_info[i].ipv6_tx_bytes =
  3771. resp->per_client_stats_list[i].num_ul_ipv6_bytes;
  3772. IPAWANDBG("tx_b_v4(%lu)v6(%lu)rx_b_v4(%lu) v6(%lu)\n",
  3773. (unsigned long) data->client_info[i].ipv4_tx_bytes,
  3774. (unsigned long) data->client_info[i].ipv6_tx_bytes,
  3775. (unsigned long) data->client_info[i].ipv4_rx_bytes,
  3776. (unsigned long) data->client_info[i].ipv6_rx_bytes);
  3777. /* Get the lan client index. */
  3778. lan_clnt_idx = resp->per_client_stats_list[i].client_id;
  3779. /* Check if lan_clnt_idx is valid. */
  3780. if (lan_clnt_idx < 0 ||
  3781. lan_clnt_idx >= IPA_MAX_NUM_HW_PATH_CLIENTS) {
  3782. IPAWANERR("Lan client index not valid.\n");
  3783. mutex_unlock(
  3784. &rmnet_ipa3_ctx->per_client_stats_guard);
  3785. kfree(req);
  3786. kfree(resp);
  3787. ipa_assert();
  3788. return -EINVAL;
  3789. }
  3790. memcpy(data->client_info[i].mac,
  3791. teth_ptr->lan_client[lan_clnt_idx].mac,
  3792. IPA_MAC_ADDR_SIZE);
  3793. }
  3794. }
  3795. IPAWANDBG("Disconnect clnt: %s",
  3796. data->disconnect_clnt?"Yes":"No");
  3797. if (data->disconnect_clnt) {
  3798. rmnet_ipa3_delete_lan_client_info(data->device_type,
  3799. lan_clnt_idx1);
  3800. }
  3801. mutex_unlock(&rmnet_ipa3_ctx->per_client_stats_guard);
  3802. kfree(req);
  3803. kfree(resp);
  3804. return 0;
  3805. }
  3806. #ifdef CONFIG_DEBUG_FS
  3807. static void rmnet_ipa_debugfs_init(void)
  3808. {
  3809. const mode_t read_write_mode = 0664;
  3810. struct rmnet_ipa_debugfs *dbgfs = &rmnet_ipa3_ctx->dbgfs;
  3811. dbgfs->dent = debugfs_create_dir("rmnet_ipa", 0);
  3812. if (IS_ERR(dbgfs->dent)) {
  3813. pr_err("fail to create folder in debug_fs\n");
  3814. return;
  3815. }
  3816. dbgfs->dfile_outstanding_high = debugfs_create_u32("outstanding_high",
  3817. read_write_mode, dbgfs->dent,
  3818. &rmnet_ipa3_ctx->outstanding_high);
  3819. if (!dbgfs->dfile_outstanding_high ||
  3820. IS_ERR(dbgfs->dfile_outstanding_high)) {
  3821. pr_err("failed to create file for outstanding_high\n");
  3822. goto fail;
  3823. }
  3824. dbgfs->dfile_outstanding_high_ctl =
  3825. debugfs_create_u32("outstanding_high_ctl",
  3826. read_write_mode, dbgfs->dent,
  3827. &rmnet_ipa3_ctx->outstanding_high_ctl);
  3828. if (!dbgfs->dfile_outstanding_high_ctl ||
  3829. IS_ERR(dbgfs->dfile_outstanding_high_ctl)) {
  3830. pr_err("failed to create file for outstanding_high_ctl\n");
  3831. goto fail;
  3832. }
  3833. dbgfs->dfile_outstanding_low = debugfs_create_u32("outstanding_low",
  3834. read_write_mode, dbgfs->dent,
  3835. &rmnet_ipa3_ctx->outstanding_low);
  3836. if (!dbgfs->dfile_outstanding_low ||
  3837. IS_ERR(dbgfs->dfile_outstanding_low)) {
  3838. pr_err("failed to create file for outstanding_low\n");
  3839. goto fail;
  3840. }
  3841. return;
  3842. fail:
  3843. debugfs_remove_recursive(dbgfs->dent);
  3844. memset(dbgfs, 0, sizeof(struct rmnet_ipa_debugfs));
  3845. }
  3846. static void rmnet_ipa_debugfs_remove(void)
  3847. {
  3848. if (IS_ERR(rmnet_ipa3_ctx->dbgfs.dent))
  3849. return;
  3850. debugfs_remove_recursive(rmnet_ipa3_ctx->dbgfs.dent);
  3851. memset(&rmnet_ipa3_ctx->dbgfs, 0, sizeof(struct rmnet_ipa_debugfs));
  3852. }
  3853. #else /* CONFIG_DEBUG_FS */
  3854. static void rmnet_ipa_debugfs_init(void){}
  3855. static void rmnet_ipa_debugfs_remove(void){}
  3856. #endif /* CONFIG_DEBUG_FS */
  3857. static int __init ipa3_wwan_init(void)
  3858. {
  3859. int i, j;
  3860. struct ipa_tether_device_info *teth_ptr = NULL;
  3861. void *ssr_hdl;
  3862. int rc = 0;
  3863. if (!ipa3_ctx) {
  3864. IPAWANERR_RL("ipa3_ctx was not initialized\n");
  3865. return -EINVAL;
  3866. }
  3867. rmnet_ipa3_ctx = kzalloc(sizeof(*rmnet_ipa3_ctx), GFP_KERNEL);
  3868. if (!rmnet_ipa3_ctx)
  3869. return -ENOMEM;
  3870. atomic_set(&rmnet_ipa3_ctx->is_initialized, 0);
  3871. atomic_set(&rmnet_ipa3_ctx->is_ssr, 0);
  3872. mutex_init(&rmnet_ipa3_ctx->pipe_handle_guard);
  3873. mutex_init(&rmnet_ipa3_ctx->add_mux_channel_lock);
  3874. mutex_init(&rmnet_ipa3_ctx->per_client_stats_guard);
  3875. /* Reset the Lan Stats. */
  3876. for (i = 0; i < IPACM_MAX_CLIENT_DEVICE_TYPES; i++) {
  3877. teth_ptr = &rmnet_ipa3_ctx->tether_device[i];
  3878. teth_ptr->ul_src_pipe = -1;
  3879. for (j = 0; j < IPA_MAX_NUM_HW_PATH_CLIENTS; j++)
  3880. teth_ptr->lan_client[j].client_idx = -1;
  3881. }
  3882. rmnet_ipa3_ctx->ipa3_to_apps_hdl = -1;
  3883. rmnet_ipa3_ctx->apps_to_ipa3_hdl = -1;
  3884. ipa3_qmi_init();
  3885. rmnet_ipa3_ctx->outstanding_high = OUTSTANDING_HIGH_DEFAULT;
  3886. rmnet_ipa3_ctx->outstanding_high_ctl = OUTSTANDING_HIGH_CTL_DEFAULT;
  3887. rmnet_ipa3_ctx->outstanding_low = OUTSTANDING_LOW_DEFAULT;
  3888. rmnet_ipa_debugfs_init();
  3889. /* Register for Local Modem SSR */
  3890. ssr_hdl = subsys_notif_register_notifier(SUBSYS_LOCAL_MODEM,
  3891. &ipa3_lcl_mdm_ssr_notifier);
  3892. if (!IS_ERR(ssr_hdl))
  3893. rmnet_ipa3_ctx->lcl_mdm_subsys_notify_handle = ssr_hdl;
  3894. else if (!rmnet_ipa3_ctx->ipa_config_is_apq) {
  3895. rc = PTR_ERR(ssr_hdl);
  3896. goto fail_dbgfs_rm;
  3897. }
  3898. if (rmnet_ipa3_ctx->ipa_config_is_apq) {
  3899. /* Register for Remote Modem SSR */
  3900. ssr_hdl = subsys_notif_register_notifier(SUBSYS_REMOTE_MODEM,
  3901. &ipa3_rmt_mdm_ssr_notifier);
  3902. if (IS_ERR(ssr_hdl)) {
  3903. rc = PTR_ERR(ssr_hdl);
  3904. goto fail_unreg_lcl_mdm_ssr;
  3905. }
  3906. rmnet_ipa3_ctx->rmt_mdm_subsys_notify_handle = ssr_hdl;
  3907. }
  3908. rc = platform_driver_register(&rmnet_ipa_driver);
  3909. if (rc)
  3910. goto fail_unreg_rmt_mdm_ssr;
  3911. return 0;
  3912. fail_unreg_rmt_mdm_ssr:
  3913. if (ipa3_ctx->platform_type == IPA_PLAT_TYPE_APQ) {
  3914. subsys_notif_unregister_notifier(
  3915. rmnet_ipa3_ctx->rmt_mdm_subsys_notify_handle,
  3916. &ipa3_rmt_mdm_ssr_notifier);
  3917. rmnet_ipa3_ctx->rmt_mdm_subsys_notify_handle = NULL;
  3918. }
  3919. fail_unreg_lcl_mdm_ssr:
  3920. if (rmnet_ipa3_ctx->lcl_mdm_subsys_notify_handle) {
  3921. subsys_notif_unregister_notifier(
  3922. rmnet_ipa3_ctx->lcl_mdm_subsys_notify_handle,
  3923. &ipa3_lcl_mdm_ssr_notifier);
  3924. rmnet_ipa3_ctx->lcl_mdm_subsys_notify_handle = NULL;
  3925. }
  3926. fail_dbgfs_rm:
  3927. rmnet_ipa_debugfs_remove();
  3928. return rc;
  3929. }
  3930. static void __exit ipa3_wwan_cleanup(void)
  3931. {
  3932. int ret;
  3933. platform_driver_unregister(&rmnet_ipa_driver);
  3934. if (rmnet_ipa3_ctx->lcl_mdm_subsys_notify_handle) {
  3935. ret = subsys_notif_unregister_notifier(
  3936. rmnet_ipa3_ctx->lcl_mdm_subsys_notify_handle,
  3937. &ipa3_lcl_mdm_ssr_notifier);
  3938. if (ret)
  3939. IPAWANERR(
  3940. "Failed to unregister subsys %s notifier ret=%d\n",
  3941. SUBSYS_LOCAL_MODEM, ret);
  3942. }
  3943. if (rmnet_ipa3_ctx->rmt_mdm_subsys_notify_handle) {
  3944. ret = subsys_notif_unregister_notifier(
  3945. rmnet_ipa3_ctx->rmt_mdm_subsys_notify_handle,
  3946. &ipa3_rmt_mdm_ssr_notifier);
  3947. if (ret)
  3948. IPAWANERR(
  3949. "Failed to unregister subsys %s notifier ret=%d\n",
  3950. SUBSYS_REMOTE_MODEM, ret);
  3951. }
  3952. rmnet_ipa_debugfs_remove();
  3953. ipa3_qmi_cleanup();
  3954. mutex_destroy(&rmnet_ipa3_ctx->per_client_stats_guard);
  3955. mutex_destroy(&rmnet_ipa3_ctx->add_mux_channel_lock);
  3956. mutex_destroy(&rmnet_ipa3_ctx->pipe_handle_guard);
  3957. kfree(rmnet_ipa3_ctx);
  3958. rmnet_ipa3_ctx = NULL;
  3959. }
  3960. static void ipa3_wwan_msg_free_cb(void *buff, u32 len, u32 type)
  3961. {
  3962. kfree(buff);
  3963. }
  3964. static int ipa3_rmnet_poll(struct napi_struct *napi, int budget)
  3965. {
  3966. int rcvd_pkts = 0;
  3967. rcvd_pkts = ipa_rx_poll(rmnet_ipa3_ctx->ipa3_to_apps_hdl,
  3968. NAPI_WEIGHT);
  3969. IPAWANDBG_LOW("rcvd packets: %d\n", rcvd_pkts);
  3970. return rcvd_pkts;
  3971. }
  3972. late_initcall(ipa3_wwan_init);
  3973. module_exit(ipa3_wwan_cleanup);
  3974. MODULE_DESCRIPTION("WWAN Network Interface");
  3975. MODULE_LICENSE("GPL v2");