ipa.h 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2012-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef _IPA_H_
  7. #define _IPA_H_
  8. #include <linux/if_ether.h>
  9. #include <linux/ip.h>
  10. #include <linux/ipv6.h>
  11. #include <linux/msm_ipa.h>
  12. #include <linux/skbuff.h>
  13. #include <linux/types.h>
  14. #include <linux/ipa_qmi_service_v01.h>
  15. #include <linux/msm_gsi.h>
  16. #define IPA_APPS_MAX_BW_IN_MBPS 700
  17. #define IPA_BW_THRESHOLD_MAX 3
  18. #define IPA_MAX_CH_STATS_SUPPORTED 5
  19. #define IPA_EP_ARR_SIZE 2
  20. #define IPA_EP_PER_REG 32
  21. /* Notifiers for rmnet driver */
  22. #define BUFF_ABOVE_HIGH_THRESHOLD_FOR_DEFAULT_PIPE 1
  23. #define BUFF_ABOVE_HIGH_THRESHOLD_FOR_COAL_PIPE 2
  24. #define BUFF_BELOW_LOW_THRESHOLD_FOR_DEFAULT_PIPE 3
  25. #define BUFF_BELOW_LOW_THRESHOLD_FOR_COAL_PIPE 4
  26. #define BUFF_ABOVE_HIGH_THRESHOLD_FOR_LL_PIPE 5
  27. #define BUFF_BELOW_LOW_THRESHOLD_FOR_LL_PIPE 6
  28. #define FREE_PAGE_TASK_SCHEDULED 7
  29. #define FREE_PAGE_TASK_SCHEDULED_LL 8
  30. /**
  31. * the attributes of the socksv5 options
  32. */
  33. #define IPA_SOCKSv5_ENTRY_VALID (1ul << 0)
  34. #define IPA_SOCKSv5_IPV4 (1ul << 1)
  35. #define IPA_SOCKSv5_IPV6 (1ul << 2)
  36. #define IPA_SOCKSv5_OPT_TS (1ul << 3)
  37. #define IPA_SOCKSv5_OPT_SACK (1ul << 4)
  38. #define IPA_SOCKSv5_OPT_WS_STC (1ul << 5)
  39. #define IPA_SOCKSv5_OPT_WS_DMC (1ul << 6)
  40. #define IPA_SOCKsv5_ADD_COM_ID 15
  41. #define IPA_SOCKsv5_ADD_V6_V4_COM_PM 1
  42. #define IPA_SOCKsv5_ADD_V4_V6_COM_PM 2
  43. #define IPA_SOCKsv5_ADD_V6_V6_COM_PM 3
  44. /**
  45. * enum ipa_transport_type
  46. * transport type: either GSI or SPS
  47. */
  48. enum ipa_transport_type {
  49. IPA_TRANSPORT_TYPE_SPS,
  50. IPA_TRANSPORT_TYPE_GSI
  51. };
  52. /**
  53. * enum ipa_nat_en_type - NAT setting type in IPA end-point
  54. */
  55. enum ipa_nat_en_type {
  56. IPA_BYPASS_NAT,
  57. IPA_SRC_NAT,
  58. IPA_DST_NAT,
  59. };
  60. /**
  61. * enum ipa_ipv6ct_en_type - IPv6CT setting type in IPA end-point
  62. */
  63. enum ipa_ipv6ct_en_type {
  64. IPA_BYPASS_IPV6CT,
  65. IPA_ENABLE_IPV6CT,
  66. };
  67. /**
  68. * enum ipa_mode_type - mode setting type in IPA end-point
  69. * @BASIC: basic mode
  70. * @ENABLE_FRAMING_HDLC: not currently supported
  71. * @ENABLE_DEFRAMING_HDLC: not currently supported
  72. * @DMA: all data arriving IPA will not go through IPA logic blocks, this
  73. * allows IPA to work as DMA for specific pipes.
  74. */
  75. enum ipa_mode_type {
  76. IPA_BASIC,
  77. IPA_ENABLE_FRAMING_HDLC,
  78. IPA_ENABLE_DEFRAMING_HDLC,
  79. IPA_DMA,
  80. };
  81. /**
  82. * enum ipa_aggr_en_type - aggregation setting type in IPA
  83. * end-point
  84. */
  85. enum ipa_aggr_en_type {
  86. IPA_BYPASS_AGGR,
  87. IPA_ENABLE_AGGR,
  88. IPA_ENABLE_DEAGGR,
  89. };
  90. /**
  91. * enum ipa_aggr_type - type of aggregation in IPA end-point
  92. */
  93. enum ipa_aggr_type {
  94. IPA_MBIM_16 = 0,
  95. IPA_HDLC = 1,
  96. IPA_TLP = 2,
  97. IPA_RNDIS = 3,
  98. IPA_GENERIC = 4,
  99. IPA_COALESCE = 5,
  100. IPA_QCMAP = 6,
  101. };
  102. /**
  103. * enum ipa_aggr_mode - global aggregation mode
  104. */
  105. enum ipa_aggr_mode {
  106. IPA_MBIM_AGGR,
  107. IPA_QCNCM_AGGR,
  108. };
  109. /**
  110. * enum ipa_dp_evt_type - type of event client callback is
  111. * invoked for on data path
  112. * @IPA_RECEIVE: data is struct sk_buff
  113. * @IPA_WRITE_DONE: data is struct sk_buff
  114. */
  115. enum ipa_dp_evt_type {
  116. IPA_RECEIVE,
  117. IPA_WRITE_DONE,
  118. };
  119. /**
  120. * enum hdr_total_len_or_pad_type - type of value held by TOTAL_LEN_OR_PAD
  121. * field in header configuration register.
  122. * @IPA_HDR_PAD: field is used as padding length
  123. * @IPA_HDR_TOTAL_LEN: field is used as total length
  124. */
  125. enum hdr_total_len_or_pad_type {
  126. IPA_HDR_PAD = 0,
  127. IPA_HDR_TOTAL_LEN = 1,
  128. };
  129. /**
  130. * struct ipa_ep_cfg_nat - NAT configuration in IPA end-point
  131. * @nat_en: This defines the default NAT mode for the pipe: in case of
  132. * filter miss - the default NAT mode defines the NATing operation
  133. * on the packet. Valid for Input Pipes only (IPA consumer)
  134. * @nat_exc_suppress: 1 - NAT exception is supressed and packet will be
  135. * routed using configured routing tables.
  136. * 0 - NAT exception is allowed and packets will be routed to exception
  137. * pipe. Valid for input pipes only (IPA consumer)
  138. */
  139. struct ipa_ep_cfg_nat {
  140. enum ipa_nat_en_type nat_en;
  141. bool nat_exc_suppress;
  142. };
  143. /**
  144. * struct ipa_ep_cfg_conn_track - IPv6 Connection tracking configuration in
  145. * IPA end-point
  146. * @conn_track_en: Defines speculative conn_track action, means if specific
  147. * pipe needs to have UL/DL IPv6 Connection Tracking or Bypass
  148. * IPv6 Connection Tracking. 0: Bypass IPv6 Connection Tracking
  149. * 1: IPv6 UL/DL Connection Tracking.
  150. * Valid for Input Pipes only (IPA consumer)
  151. */
  152. struct ipa_ep_cfg_conn_track {
  153. enum ipa_ipv6ct_en_type conn_track_en;
  154. };
  155. /**
  156. * struct ipa_ep_cfg_hdr - header configuration in IPA end-point
  157. *
  158. * @hdr_len:Header length in bytes to be added/removed. Assuming
  159. * header len is constant per endpoint. Valid for
  160. * both Input and Output Pipes
  161. * @hdr_ofst_metadata_valid: 0: Metadata_Ofst value is invalid, i.e., no
  162. * metadata within header.
  163. * 1: Metadata_Ofst value is valid, i.e., metadata
  164. * within header is in offset Metadata_Ofst Valid
  165. * for Input Pipes only (IPA Consumer) (for output
  166. * pipes, metadata already set within the header)
  167. * @hdr_ofst_metadata: Offset within header in which metadata resides
  168. * Size of metadata - 4bytes
  169. * Example - Stream ID/SSID/mux ID.
  170. * Valid for Input Pipes only (IPA Consumer) (for output
  171. * pipes, metadata already set within the header)
  172. * @hdr_additional_const_len: Defines the constant length that should be added
  173. * to the payload length in order for IPA to update
  174. * correctly the length field within the header
  175. * (valid only in case Hdr_Ofst_Pkt_Size_Valid=1)
  176. * Valid for Output Pipes (IPA Producer)
  177. * Starting IPA4.5, this field in H/W requires more bits
  178. * to support larger range, but no spare bits to use.
  179. * So the MSB part is done thourgh the EXT register.
  180. * When accessing this register, need to access the EXT
  181. * register as well.
  182. * @hdr_ofst_pkt_size_valid: 0: Hdr_Ofst_Pkt_Size value is invalid, i.e., no
  183. * length field within the inserted header
  184. * 1: Hdr_Ofst_Pkt_Size value is valid, i.e., a
  185. * packet length field resides within the header
  186. * Valid for Output Pipes (IPA Producer)
  187. * @hdr_ofst_pkt_size: Offset within header in which packet size reside. Upon
  188. * Header Insertion, IPA will update this field within the
  189. * header with the packet length . Assumption is that
  190. * header length field size is constant and is 2Bytes
  191. * Valid for Output Pipes (IPA Producer)
  192. * Starting IPA4.5, this field in H/W requires more bits
  193. * to support larger range, but no spare bits to use.
  194. * So the MSB part is done thourgh the EXT register.
  195. * When accessing this register, need to access the EXT
  196. * register as well.
  197. * @hdr_a5_mux: Determines whether A5 Mux header should be added to the packet.
  198. * This bit is valid only when Hdr_En=01(Header Insertion)
  199. * SW should set this bit for IPA-to-A5 pipes.
  200. * 0: Do not insert A5 Mux Header
  201. * 1: Insert A5 Mux Header
  202. * Valid for Output Pipes (IPA Producer)
  203. * @hdr_remove_additional: bool switch, remove more of the header
  204. * based on the aggregation configuration (register
  205. * HDR_LEN_INC_DEAGG_HDR)
  206. * @hdr_metadata_reg_valid: bool switch, metadata from
  207. * register INIT_HDR_METADATA_n is valid.
  208. * (relevant only for IPA Consumer pipes)
  209. * Starting IPA4.5, this parameter is irrelevant and H/W
  210. * assumes it is always valid.
  211. */
  212. struct ipa_ep_cfg_hdr {
  213. u32 hdr_len;
  214. u32 hdr_ofst_metadata_valid;
  215. u32 hdr_ofst_metadata;
  216. u32 hdr_additional_const_len;
  217. u32 hdr_ofst_pkt_size_valid;
  218. u32 hdr_ofst_pkt_size;
  219. u32 hdr_a5_mux;
  220. u32 hdr_remove_additional;
  221. u32 hdr_metadata_reg_valid;
  222. };
  223. /**
  224. * struct ipa_ep_cfg_hdr_ext - extended header configuration in IPA end-point
  225. * @hdr_pad_to_alignment: Pad packet to specified alignment
  226. * (2^pad to alignment value), i.e. value of 3 means pad to 2^3 = 8 bytes
  227. * alignment. Alignment is to 0,2 up to 32 bytes (IPAv2 does not support 64
  228. * byte alignment). Valid for Output Pipes only (IPA Producer).
  229. * @hdr_total_len_or_pad_offset: Offset to length field containing either
  230. * total length or pad length, per hdr_total_len_or_pad config
  231. * @hdr_payload_len_inc_padding: 0-IPA_ENDP_INIT_HDR_n's
  232. * HDR_OFST_PKT_SIZE does
  233. * not includes padding bytes size, payload_len = packet length,
  234. * 1-IPA_ENDP_INIT_HDR_n's HDR_OFST_PKT_SIZE includes
  235. * padding bytes size, payload_len = packet length + padding
  236. * @hdr_total_len_or_pad: field is used as PAD length ot as Total length
  237. * (header + packet + padding)
  238. * @hdr_total_len_or_pad_valid: 0-Ignore TOTAL_LEN_OR_PAD field, 1-Process
  239. * TOTAL_LEN_OR_PAD field
  240. * @hdr_little_endian: 0-Big Endian, 1-Little Endian
  241. * @hdr: The header structure. Used starting IPA4.5 where part of the info
  242. * at the header structure is implemented via the EXT register at the H/W
  243. * @hdr_bytes_to_remove_valid: 0-Ignore hdr_bytes_to_remove field, 1-Process
  244. * hdr_bytes_to_remove field
  245. * @hdr_bytes_to_remove: desired bytes to remove from top of the packet for
  246. * partial L2 header retention
  247. */
  248. struct ipa_ep_cfg_hdr_ext {
  249. u32 hdr_pad_to_alignment;
  250. u32 hdr_total_len_or_pad_offset;
  251. bool hdr_payload_len_inc_padding;
  252. enum hdr_total_len_or_pad_type hdr_total_len_or_pad;
  253. bool hdr_total_len_or_pad_valid;
  254. bool hdr_little_endian;
  255. struct ipa_ep_cfg_hdr *hdr;
  256. bool hdr_bytes_to_remove_valid;
  257. u32 hdr_bytes_to_remove;
  258. };
  259. /**
  260. * struct ipa_ep_cfg_mode - mode configuration in IPA end-point
  261. * @mode: Valid for Input Pipes only (IPA Consumer)
  262. * @dst: This parameter specifies the output pipe to which the packets
  263. * will be routed to.
  264. * This parameter is valid for Mode=DMA and not valid for
  265. * Mode=Basic
  266. * Valid for Input Pipes only (IPA Consumer)
  267. */
  268. struct ipa_ep_cfg_mode {
  269. enum ipa_mode_type mode;
  270. enum ipa_client_type dst;
  271. };
  272. /**
  273. * struct ipa_ep_cfg_aggr - aggregation configuration in IPA end-point
  274. *
  275. * @aggr_en: Valid for both Input and Output Pipes
  276. * @aggr: aggregation type (Valid for both Input and Output Pipes)
  277. * @aggr_byte_limit: Limit of aggregated packet size in KB (<=32KB) When set
  278. * to 0, there is no size limitation on the aggregation.
  279. * When both, Aggr_Byte_Limit and Aggr_Time_Limit are set
  280. * to 0, there is no aggregation, every packet is sent
  281. * independently according to the aggregation structure
  282. * Valid for Output Pipes only (IPA Producer )
  283. * @aggr_time_limit: Timer to close aggregated packet When set to 0,
  284. * there is no time limitation on the aggregation. When
  285. * both, Aggr_Byte_Limit and Aggr_Time_Limit are set to 0,
  286. * there is no aggregation, every packet is sent
  287. * independently according to the aggregation structure
  288. * Valid for Output Pipes only (IPA Producer).
  289. * Time unit is -->> usec <<--
  290. * @aggr_pkt_limit: Defines if EOF close aggregation or not. if set to false
  291. * HW closes aggregation (sends EOT) only based on its
  292. * aggregation config (byte/time limit, etc). if set to
  293. * true EOF closes aggregation in addition to HW based
  294. * aggregation closure. Valid for Output Pipes only (IPA
  295. * Producer). EOF affects only Pipes configured for
  296. * generic aggregation.
  297. * @aggr_hard_byte_limit_en: If set to 1, byte-limit aggregation for this
  298. * pipe will apply a hard-limit behavior which will not
  299. * allow frames to be closed with more than byte-limit
  300. * bytes. If set to 0, previous byte-limit behavior
  301. * will apply - frames close once a packet causes the
  302. * accumulated byte-count to cross the byte-limit
  303. * threshold (closed frame will contain that packet).
  304. * @aggr_sw_eof_active: 0: EOF does not close aggregation. HW closes aggregation
  305. * (sends EOT) only based on its aggregation config
  306. * (byte/time limit, etc).
  307. * 1: EOF closes aggregation in addition to HW based
  308. * aggregation closure. Valid for Output Pipes only (IPA
  309. * Producer). EOF affects only Pipes configured for generic
  310. * aggregation.
  311. * @pulse_generator: Pulse generator number to be used.
  312. * For internal use.
  313. * Supported starting IPA4.5.
  314. * @scaled_time: Time limit in accordance to the pulse generator
  315. * granularity.
  316. * For internal use
  317. * Supported starting IPA4.5
  318. * @aggr_coal_l2: enable L2 coalescing on the specifid dest pipe,
  319. * work only if AGGR_TYPE set to AGGR_TYPE_COALESCING.
  320. * Supported starting IPA5.5
  321. */
  322. struct ipa_ep_cfg_aggr {
  323. enum ipa_aggr_en_type aggr_en;
  324. enum ipa_aggr_type aggr;
  325. u32 aggr_byte_limit;
  326. u32 aggr_time_limit;
  327. u32 aggr_pkt_limit;
  328. u32 aggr_hard_byte_limit_en;
  329. bool aggr_sw_eof_active;
  330. u8 pulse_generator;
  331. u8 scaled_time;
  332. bool aggr_coal_l2;
  333. };
  334. /**
  335. * struct ipa_ep_cfg_route - route configuration in IPA end-point
  336. * @rt_tbl_hdl: Defines the default routing table index to be used in case there
  337. * is no filter rule matching, valid for Input Pipes only (IPA
  338. * Consumer). Clients should set this to 0 which will cause default
  339. * v4 and v6 routes setup internally by IPA driver to be used for
  340. * this end-point
  341. */
  342. struct ipa_ep_cfg_route {
  343. u32 rt_tbl_hdl;
  344. };
  345. /**
  346. * struct ipa_ep_cfg_holb - head of line blocking configuration in IPA end-point
  347. * @en: enable(1 => ok to drop pkt)/disable(0 => never drop pkt)
  348. * @tmr_val: duration in units of 128 IPA clk clock cyles [0,511], 1 clk=1.28us
  349. * IPAv2.5 support 32 bit HOLB timeout value, previous versions
  350. * supports 16 bit
  351. * IPAv4.2: splitting timer value into 2 fields. Timer value is:
  352. * BASE_VALUE * (2^SCALE)
  353. * IPA4.5: tmr_val is in -->>msec<<--. Range is dynamic based
  354. * on H/W configuration. (IPA4.5 absolute maximum is 0.65535*31 -> ~20sec).
  355. * @base_val : IPA4.2 only field. base value of the timer.
  356. * @scale : IPA4.2 only field. scale value for timer.
  357. * @pulse_generator: Pulse generator number to be used.
  358. * For internal use.
  359. * Supported starting IPA4.5.
  360. * @scaled_time: Time limit in accordance to the pulse generator granularity
  361. * For internal use
  362. * Supported starting IPA4.5
  363. */
  364. struct ipa_ep_cfg_holb {
  365. u32 tmr_val;
  366. u32 base_val;
  367. u32 scale;
  368. u16 en;
  369. u8 pulse_generator;
  370. u8 scaled_time;
  371. };
  372. /**
  373. * struct ipa_ep_cfg_deaggr - deaggregation configuration in IPA end-point
  374. * @deaggr_hdr_len: Deaggregation Header length in bytes. Valid only for Input
  375. * Pipes, which are configured for 'Generic' deaggregation.
  376. * @syspipe_err_detection - If set to 1, enables error detection for
  377. * de-aggregration. Valid only for Input Pipes, which are configured
  378. * for 'Generic' deaggregation.
  379. * Note: if this bit is set, de-aggregated frames must be contiguous
  380. * in memory.
  381. * @packet_offset_valid: - 0: PACKET_OFFSET is not used, 1: PACKET_OFFSET is
  382. * used.
  383. * @packet_offset_location: Location of packet offset field, which specifies
  384. * the offset to the packet from the start of the packet offset field.
  385. * @ignore_min_pkt_err - Ignore packets smaller than header. This is intended
  386. * for use in RNDIS de-aggregated pipes, to silently ignore a redundant
  387. * 1-byte trailer in MSFT implementation.
  388. * @max_packet_len: DEAGGR Max Packet Length in Bytes. A Packet with higher
  389. * size wil be treated as an error. 0 - Packet Length is not Bound,
  390. * IPA should not check for a Max Packet Length.
  391. */
  392. struct ipa_ep_cfg_deaggr {
  393. u32 deaggr_hdr_len;
  394. bool syspipe_err_detection;
  395. bool packet_offset_valid;
  396. u32 packet_offset_location;
  397. bool ignore_min_pkt_err;
  398. u32 max_packet_len;
  399. };
  400. /**
  401. * enum ipa_cs_offload - checksum offload setting
  402. */
  403. enum ipa_cs_offload {
  404. IPA_DISABLE_CS_OFFLOAD,
  405. /*
  406. * For enum value = 1, we check the csum required/valid bit which is the
  407. * same bit used for both DL and UL but have different meanings.
  408. * For UL pipe, HW checks if it needs to perform Csum caluclation.
  409. * For DL pipe, HW checks if the csum is valid or invalid
  410. */
  411. IPA_ENABLE_CS_OFFLOAD_UL,
  412. IPA_ENABLE_CS_DL_QMAP = IPA_ENABLE_CS_OFFLOAD_UL,
  413. IPA_ENABLE_CS_OFFLOAD_DL,
  414. IPA_CS_RSVD
  415. };
  416. /**
  417. * struct ipa_ep_cfg_cfg - IPA ENDP_INIT Configuration register
  418. * @frag_offload_en: - 0 - IP packet fragment handling is disabled. IP packet
  419. * fragments should be sent to SW. SW is responsible for
  420. * configuring filter rules, and IP packet filter exception should be
  421. * used to send all fragments to SW. 1 - IP packet fragment
  422. * handling is enabled. IPA checks for fragments and uses frag
  423. * rules table for processing fragments. Valid only for Input Pipes
  424. * (IPA Consumer)
  425. * @cs_offload_en: Checksum offload enable: 00: Disable checksum offload, 01:
  426. * Enable checksum calculation offload (UL) - For output pipe
  427. * (IPA producer) specifies that checksum trailer is to be added.
  428. * For input pipe (IPA consumer) specifies presence of checksum
  429. * header and IPA checksum calculation accordingly. 10: Enable
  430. * checksum calculation offload (DL) - For output pipe (IPA
  431. * producer) specifies that checksum trailer is to be added. For
  432. * input pipe (IPA consumer) specifies IPA checksum calculation.
  433. * 11: Reserved
  434. * @cs_metadata_hdr_offset: Offset in Words (4 bytes) within header in which
  435. * checksum metadata info header (4 bytes) starts (UL). Values are 0-15, which
  436. * mean 0 - 60 byte checksum header offset. Valid for input
  437. * pipes only (IPA consumer)
  438. * @gen_qmb_master_sel: Select bit for ENDP GEN-QMB master. This is used to
  439. * separate DDR & PCIe transactions in-order to limit them as
  440. * a group (using MAX_WRITES/READS limiation). Valid for input and
  441. * output pipes (IPA consumer+producer)
  442. * @pipe_replicate_en: 1 - For consumer pipe - consumer DPL will be active.
  443. * For producer pipe - producer DPL will be active.
  444. * 0 - packet replication disabled for both consumer and producer pipe.
  445. * Supported from IPA5.5 onwards.
  446. */
  447. struct ipa_ep_cfg_cfg {
  448. bool frag_offload_en;
  449. enum ipa_cs_offload cs_offload_en;
  450. u8 cs_metadata_hdr_offset;
  451. u8 gen_qmb_master_sel;
  452. u8 tx_instance;
  453. bool pipe_replicate_en;
  454. };
  455. /**
  456. * struct ipa_ep_cfg_prod_cfg - IPA ENDP_INIT Producer Configuration register
  457. * @tx_instance: - 0 - select TX_0 instance.
  458. * 1 - select TX_1 instance.
  459. * @tsp_enable: boolean to indicate TSP-enablement per producer pipe.
  460. * @max_output_size_drop_enable: enable policing by max output size for TSP
  461. * feature. In case of TSP_ENABLE == 1 + valid egress_tc, max output size
  462. * policing will be valid regardless to this bit.
  463. * @tsp_idx: TSP producer-index. Controls pointer to producer-rate database.
  464. * Valid only when TSP_ENABLE field is set. Value should be unique.
  465. * @max_output_size: max output size allowed per producer. Value is in 64-byte
  466. * resolution for TSP feature
  467. * @egress_tc_lowest: Lowest egress traffic-class index assignes to this
  468. * producer.
  469. * @egress_tc_highest: Highest egress traffic-class index assignes to this
  470. * producer.
  471. */
  472. struct ipa_ep_cfg_prod_cfg {
  473. u8 tx_instance;
  474. bool tsp_enable;
  475. bool max_output_size_drop_enable;
  476. u8 tsp_idx;
  477. u8 max_output_size;
  478. u8 egress_tc_lowest;
  479. u8 egress_tc_highest;
  480. };
  481. /**
  482. * struct ipa_ep_cfg_metadata_mask - Endpoint initialization hdr metadata mask
  483. * @metadata_mask: Mask specifying which metadata bits to write to
  484. * IPA_ENDP_INIT_HDR_n.s HDR_OFST_METADATA. Only
  485. * masked metadata bits (set to 1) will be written. Valid for Output
  486. * Pipes only (IPA Producer)
  487. */
  488. struct ipa_ep_cfg_metadata_mask {
  489. u32 metadata_mask;
  490. };
  491. /**
  492. * struct ipa_ep_cfg_metadata - Metadata configuration in IPA end-point
  493. * @md: This defines the metadata from tx data descriptor
  494. * @qmap_id: qmap id
  495. */
  496. struct ipa_ep_cfg_metadata {
  497. u32 qmap_id;
  498. };
  499. /**
  500. * struct ipa_ep_cfg_seq - HPS/DPS sequencer type configuration in IPA end-point
  501. * @set_dynamic: 0 - HPS/DPS seq type is configured statically,
  502. * 1 - HPS/DPS seq type is set to seq_type
  503. * @seq_type: HPS/DPS sequencer type configuration
  504. */
  505. struct ipa_ep_cfg_seq {
  506. bool set_dynamic;
  507. int seq_type;
  508. };
  509. /**
  510. * struct ipa_ep_cfg_ulso - ULSO configurations
  511. * @ipid_min_max_idx: A value in the range [0, 2]. Determines the registers
  512. * pair from which to read the minimum and maximum of IPv4 packets ID. It
  513. * is set to 0 as this range is platform specific and there is no need for
  514. * more than one pair values for this range. The minimum and maximum values
  515. * are taken from the device tree in pre_init and are stored in dedicated
  516. * registers.
  517. * @is_ulso_pipe: Indicates whether the pipe is in ulso operation mode.
  518. */
  519. struct ipa_ep_cfg_ulso {
  520. int ipid_min_max_idx;
  521. bool is_ulso_pipe;
  522. };
  523. /**
  524. * struct ipa_ep_cfg - configuration of IPA end-point
  525. * @nat: NAT parameters
  526. * @conn_track: IPv6CT parameters
  527. * @hdr: Header parameters
  528. * @hdr_ext: Extended header parameters
  529. * @mode: Mode parameters
  530. * @aggr: Aggregation parameters
  531. * @deaggr: Deaggregation params
  532. * @route: Routing parameters
  533. * @cfg: Configuration register data
  534. * @metadata_mask: Hdr metadata mask
  535. * @meta: Metadata
  536. * @seq: HPS/DPS sequencers configuration
  537. * @ulso: ULSO configuration
  538. * @prod_cfg: Producer specific Configuration register data
  539. */
  540. struct ipa_ep_cfg {
  541. struct ipa_ep_cfg_nat nat;
  542. struct ipa_ep_cfg_conn_track conn_track;
  543. struct ipa_ep_cfg_hdr hdr;
  544. struct ipa_ep_cfg_hdr_ext hdr_ext;
  545. struct ipa_ep_cfg_mode mode;
  546. struct ipa_ep_cfg_aggr aggr;
  547. struct ipa_ep_cfg_deaggr deaggr;
  548. struct ipa_ep_cfg_route route;
  549. struct ipa_ep_cfg_cfg cfg;
  550. struct ipa_ep_cfg_metadata_mask metadata_mask;
  551. struct ipa_ep_cfg_metadata meta;
  552. struct ipa_ep_cfg_seq seq;
  553. struct ipa_ep_cfg_ulso ulso;
  554. struct ipa_ep_cfg_prod_cfg prod_cfg;
  555. };
  556. /**
  557. * struct ipa_ep_cfg_ctrl - Control configuration in IPA end-point
  558. * @ipa_ep_suspend: 0 - ENDP is enabled, 1 - ENDP is suspended (disabled).
  559. * Valid for PROD Endpoints
  560. * @ipa_ep_delay: 0 - ENDP is free-running, 1 - ENDP is delayed.
  561. * SW controls the data flow of an endpoint usind this bit.
  562. * Valid for CONS Endpoints
  563. */
  564. struct ipa_ep_cfg_ctrl {
  565. bool ipa_ep_suspend;
  566. bool ipa_ep_delay;
  567. };
  568. /**
  569. * x should be in bytes
  570. */
  571. #define IPA_NUM_OF_FIFO_DESC(x) (x/sizeof(struct sps_iovec))
  572. typedef void (*ipa_notify_cb)(void *priv, enum ipa_dp_evt_type evt,
  573. unsigned long data);
  574. /**
  575. * enum ipa_wdi_meter_evt_type - type of event client callback is
  576. * for AP+STA mode metering
  577. * @IPA_GET_WDI_SAP_STATS: get IPA_stats betwen SAP and STA -
  578. * use ipa_get_wdi_sap_stats structure
  579. * @IPA_SET_WIFI_QUOTA: set quota limit on STA -
  580. * use ipa_set_wifi_quota structure
  581. * @IPA_SET_WLAN_BW: set wlan BW -
  582. * use ipa_set_wlan_bw structure
  583. */
  584. enum ipa_wdi_meter_evt_type {
  585. IPA_GET_WDI_SAP_STATS,
  586. IPA_SET_WIFI_QUOTA,
  587. IPA_INFORM_WLAN_BW,
  588. };
  589. struct ipa_get_wdi_sap_stats {
  590. /* indicate to reset stats after query */
  591. uint8_t reset_stats;
  592. /* indicate valid stats from wlan-fw */
  593. uint8_t stats_valid;
  594. /* Tx: SAP->STA */
  595. uint64_t ipv4_tx_packets;
  596. uint64_t ipv4_tx_bytes;
  597. /* Rx: STA->SAP */
  598. uint64_t ipv4_rx_packets;
  599. uint64_t ipv4_rx_bytes;
  600. uint64_t ipv6_tx_packets;
  601. uint64_t ipv6_tx_bytes;
  602. uint64_t ipv6_rx_packets;
  603. uint64_t ipv6_rx_bytes;
  604. };
  605. /**
  606. * struct ipa_set_wifi_quota - structure used for
  607. * IPA_SET_WIFI_QUOTA.
  608. *
  609. * @quota_bytes: Quota (in bytes) for the STA interface.
  610. * @set_quota: Indicate whether to set the quota (use 1) or
  611. * unset the quota.
  612. *
  613. */
  614. struct ipa_set_wifi_quota {
  615. uint64_t quota_bytes;
  616. uint8_t set_quota;
  617. /* indicate valid quota set from wlan-fw */
  618. uint8_t set_valid;
  619. };
  620. /**
  621. * struct ipa_inform_wlan_bw - structure used for
  622. * IPA_INFORM_WLAN_BW.
  623. *
  624. * @index: Indicate which bw-index hit
  625. * @throughput: throughput usage
  626. *
  627. */
  628. struct ipa_inform_wlan_bw {
  629. uint8_t index;
  630. uint64_t throughput;
  631. };
  632. typedef void (*ipa_wdi_meter_notifier_cb)(enum ipa_wdi_meter_evt_type evt,
  633. void *data);
  634. /**
  635. * struct ipa_tx_intf - interface tx properties
  636. * @num_props: number of tx properties
  637. * @prop: the tx properties array
  638. */
  639. struct ipa_tx_intf {
  640. u32 num_props;
  641. struct ipa_ioc_tx_intf_prop *prop;
  642. };
  643. /**
  644. * struct ipa_rx_intf - interface rx properties
  645. * @num_props: number of rx properties
  646. * @prop: the rx properties array
  647. */
  648. struct ipa_rx_intf {
  649. u32 num_props;
  650. struct ipa_ioc_rx_intf_prop *prop;
  651. };
  652. /**
  653. * struct ipa_ext_intf - interface ext properties
  654. * @excp_pipe_valid: is next field valid?
  655. * @excp_pipe: exception packets should be routed to this pipe
  656. * @num_props: number of ext properties
  657. * @prop: the ext properties array
  658. */
  659. struct ipa_ext_intf {
  660. bool excp_pipe_valid;
  661. enum ipa_client_type excp_pipe;
  662. u32 num_props;
  663. struct ipa_ioc_ext_intf_prop *prop;
  664. };
  665. /**
  666. * struct ipa_sys_connect_params - information needed to setup an IPA end-point
  667. * in system-BAM mode
  668. * @ipa_ep_cfg: IPA EP configuration
  669. * @client: the type of client who "owns" the EP
  670. * @desc_fifo_sz: size of desc FIFO. This number is used to allocate the desc
  671. * fifo for BAM. For GSI, this size is used by IPA driver as a
  672. * baseline to calculate the GSI ring size in the following way:
  673. * For PROD pipes, GSI ring is 4 * desc_fifo_sz.
  674. For PROD pipes, GSI ring is 2 * desc_fifo_sz.
  675. * @priv: callback cookie
  676. * @notify: callback
  677. * priv - callback cookie
  678. * evt - type of event
  679. * data - data relevant to event. May not be valid. See event_type
  680. * enum for valid cases.
  681. * @skip_ep_cfg: boolean field that determines if EP should be configured
  682. * by IPA driver
  683. * @keep_ipa_awake: when true, IPA will not be clock gated
  684. * @napi_enabled: when true, IPA call client callback to start polling
  685. * @bypass_agg: when true, IPA bypasses the aggregation
  686. * @int_modt: GSI event ring interrupt moderation time
  687. * cycles base interrupt moderation (32KHz clock)
  688. * @int_modc: GSI event ring interrupt moderation packet counter
  689. * @buff_size: Actual buff size of rx_pkt
  690. * @ext_ioctl_v2: Flag to determine whether ioctl_v2 received
  691. */
  692. struct ipa_sys_connect_params {
  693. struct ipa_ep_cfg ipa_ep_cfg;
  694. enum ipa_client_type client;
  695. u32 desc_fifo_sz;
  696. void *priv;
  697. ipa_notify_cb notify;
  698. bool skip_ep_cfg;
  699. bool keep_ipa_awake;
  700. struct napi_struct *napi_obj;
  701. bool recycle_enabled;
  702. bool bypass_agg;
  703. u32 int_modt;
  704. u32 int_modc;
  705. u32 buff_size;
  706. bool ext_ioctl_v2;
  707. };
  708. /**
  709. * struct ipa_tx_meta - metadata for the TX packet
  710. * @dma_address: dma mapped address of TX packet
  711. * @dma_address_valid: is above field valid?
  712. */
  713. struct ipa_tx_meta {
  714. u8 pkt_init_dst_ep;
  715. bool pkt_init_dst_ep_valid;
  716. bool pkt_init_dst_ep_remote;
  717. dma_addr_t dma_address;
  718. bool dma_address_valid;
  719. };
  720. /**
  721. * typedef ipa_msg_free_fn - callback function
  722. * @param buff - [in] the message payload to free
  723. * @param len - [in] size of message payload
  724. * @param type - [in] the message type
  725. *
  726. * Message callback registered by kernel client with IPA driver to
  727. * free message payload after IPA driver processing is complete
  728. *
  729. * No return value
  730. */
  731. typedef void (*ipa_msg_free_fn)(void *buff, u32 len, u32 type);
  732. /**
  733. * typedef ipa_msg_pull_fn - callback function
  734. * @param buff - [in] where to copy message payload
  735. * @param len - [in] size of buffer to copy payload into
  736. * @param type - [in] the message type
  737. *
  738. * Message callback registered by kernel client with IPA driver for
  739. * IPA driver to pull messages from the kernel client upon demand from
  740. * user-space
  741. *
  742. * Returns how many bytes were copied into the buffer.
  743. */
  744. typedef int (*ipa_msg_pull_fn)(void *buff, u32 len, u32 type);
  745. /**
  746. * enum ipa_voltage_level - IPA Voltage levels
  747. */
  748. enum ipa_voltage_level {
  749. IPA_VOLTAGE_UNSPECIFIED,
  750. IPA_VOLTAGE_SVS2 = IPA_VOLTAGE_UNSPECIFIED,
  751. IPA_VOLTAGE_SVS,
  752. IPA_VOLTAGE_NOMINAL,
  753. IPA_VOLTAGE_TURBO,
  754. IPA_VOLTAGE_MAX,
  755. };
  756. /**
  757. * enum ipa_rm_event - IPA RM events
  758. *
  759. * Indicate the resource state change
  760. */
  761. enum ipa_rm_event {
  762. IPA_RM_RESOURCE_GRANTED,
  763. IPA_RM_RESOURCE_RELEASED
  764. };
  765. typedef void (*ipa_rm_notify_cb)(void *user_data,
  766. enum ipa_rm_event event,
  767. unsigned long data);
  768. /**
  769. * struct ipa_rm_register_params - information needed to
  770. * register IPA RM client with IPA RM
  771. *
  772. * @user_data: IPA RM client provided information
  773. * to be passed to notify_cb callback below
  774. * @notify_cb: callback which is called by resource
  775. * to notify the IPA RM client about its state
  776. * change IPA RM client is expected to perform non
  777. * blocking operations only in notify_cb and
  778. * release notification context as soon as
  779. * possible.
  780. */
  781. struct ipa_rm_register_params {
  782. void *user_data;
  783. ipa_rm_notify_cb notify_cb;
  784. };
  785. /**
  786. * struct ipa_rm_create_params - information needed to initialize
  787. * the resource
  788. * @name: resource name
  789. * @floor_voltage: floor voltage needed for client to operate in maximum
  790. * bandwidth.
  791. * @reg_params: register parameters, contains are ignored
  792. * for consumer resource NULL should be provided
  793. * for consumer resource
  794. * @request_resource: function which should be called to request resource,
  795. * NULL should be provided for producer resource
  796. * @release_resource: function which should be called to release resource,
  797. * NULL should be provided for producer resource
  798. *
  799. * IPA RM client is expected to perform non blocking operations only
  800. * in request_resource and release_resource functions and
  801. * release notification context as soon as possible.
  802. */
  803. struct ipa_rm_create_params {
  804. enum ipa_rm_resource_name name;
  805. enum ipa_voltage_level floor_voltage;
  806. struct ipa_rm_register_params reg_params;
  807. int (*request_resource)(void);
  808. int (*release_resource)(void);
  809. };
  810. /**
  811. * struct ipa_rm_perf_profile - information regarding IPA RM client performance
  812. * profile
  813. *
  814. * @max_bandwidth_mbps: maximum bandwidth need of the client in Mbps
  815. */
  816. struct ipa_rm_perf_profile {
  817. u32 max_supported_bandwidth_mbps;
  818. };
  819. #define A2_MUX_HDR_NAME_V4_PREF "dmux_hdr_v4_"
  820. #define A2_MUX_HDR_NAME_V6_PREF "dmux_hdr_v6_"
  821. /**
  822. * struct ipa_tx_data_desc - information needed
  823. * to send data packet to HW link: link to data descriptors
  824. * priv: client specific private data
  825. * @pyld_buffer: pointer to the data buffer that holds frame
  826. * @pyld_len: length of the data packet
  827. */
  828. struct ipa_tx_data_desc {
  829. struct list_head link;
  830. void *priv;
  831. void *pyld_buffer;
  832. u16 pyld_len;
  833. };
  834. /**
  835. * struct ipa_rx_data - information needed
  836. * to send to wlan driver on receiving data from ipa hw
  837. * @skb: skb
  838. * @dma_addr: DMA address of this Rx packet
  839. */
  840. struct ipa_rx_data {
  841. struct sk_buff *skb;
  842. dma_addr_t dma_addr;
  843. };
  844. /**
  845. * enum ipa_irq_type - IPA Interrupt Type
  846. * Used to register handlers for IPA interrupts
  847. *
  848. * Below enum is a logical mapping and not the actual interrupt bit in HW
  849. */
  850. enum ipa_irq_type {
  851. IPA_BAD_SNOC_ACCESS_IRQ,
  852. IPA_UC_IRQ_0,
  853. IPA_UC_IRQ_1,
  854. IPA_UC_IRQ_2,
  855. IPA_UC_IRQ_3,
  856. IPA_UC_IN_Q_NOT_EMPTY_IRQ,
  857. IPA_UC_RX_CMD_Q_NOT_FULL_IRQ,
  858. IPA_PROC_TO_UC_ACK_Q_NOT_EMPTY_IRQ,
  859. IPA_RX_ERR_IRQ,
  860. IPA_DEAGGR_ERR_IRQ,
  861. IPA_TX_ERR_IRQ,
  862. IPA_STEP_MODE_IRQ,
  863. IPA_PROC_ERR_IRQ,
  864. IPA_TX_SUSPEND_IRQ,
  865. IPA_TX_HOLB_DROP_IRQ,
  866. IPA_BAM_GSI_IDLE_IRQ,
  867. IPA_PIPE_YELLOW_MARKER_BELOW_IRQ,
  868. IPA_PIPE_RED_MARKER_BELOW_IRQ,
  869. IPA_PIPE_YELLOW_MARKER_ABOVE_IRQ,
  870. IPA_PIPE_RED_MARKER_ABOVE_IRQ,
  871. IPA_UCP_IRQ,
  872. IPA_DCMP_IRQ,
  873. IPA_GSI_EE_IRQ,
  874. IPA_GSI_IPA_IF_TLV_RCVD_IRQ,
  875. IPA_GSI_UC_IRQ,
  876. IPA_TLV_LEN_MIN_DSM_IRQ,
  877. IPA_DRBIP_PKT_EXCEED_MAX_SIZE_IRQ,
  878. IPA_DRBIP_DATA_SCTR_CFG_ERROR_IRQ,
  879. IPA_DRBIP_IMM_CMD_NO_FLSH_HZRD_IRQ,
  880. IPA_IRQ_MAX
  881. };
  882. /**
  883. * typedef ipa_irq_handler_t - irq handler/callback type
  884. * @param ipa_irq_type - [in] interrupt type
  885. * @param private_data - [in, out] the client private data
  886. * @param interrupt_data - [out] interrupt information data
  887. *
  888. * callback registered by ipa_add_interrupt_handler function to
  889. * handle a specific interrupt type
  890. *
  891. * No return value
  892. */
  893. typedef void (*ipa_irq_handler_t)(enum ipa_irq_type interrupt,
  894. void *private_data,
  895. void *interrupt_data);
  896. /**
  897. * struct IpaHwBamStats_t - Structure holding the BAM statistics
  898. *
  899. * @bamFifoFull : Number of times Bam Fifo got full - For In Ch: Good,
  900. * For Out Ch: Bad
  901. * @bamFifoEmpty : Number of times Bam Fifo got empty - For In Ch: Bad,
  902. * For Out Ch: Good
  903. * @bamFifoUsageHigh : Number of times Bam fifo usage went above 75% -
  904. * For In Ch: Good, For Out Ch: Bad
  905. * @bamFifoUsageLow : Number of times Bam fifo usage went below 25% -
  906. * For In Ch: Bad, For Out Ch: Good
  907. */
  908. struct IpaHwBamStats_t {
  909. u32 bamFifoFull;
  910. u32 bamFifoEmpty;
  911. u32 bamFifoUsageHigh;
  912. u32 bamFifoUsageLow;
  913. u32 bamUtilCount;
  914. } __packed;
  915. /**
  916. * struct IpaHwRingStats_t - Structure holding the Ring statistics
  917. *
  918. * @ringFull : Number of times Transfer Ring got full - For In Ch: Good,
  919. * For Out Ch: Bad
  920. * @ringEmpty : Number of times Transfer Ring got empty - For In Ch: Bad,
  921. * For Out Ch: Good
  922. * @ringUsageHigh : Number of times Transfer Ring usage went above 75% -
  923. * For In Ch: Good, For Out Ch: Bad
  924. * @ringUsageLow : Number of times Transfer Ring usage went below 25% -
  925. * For In Ch: Bad, For Out Ch: Good
  926. */
  927. struct IpaHwRingStats_t {
  928. u32 ringFull;
  929. u32 ringEmpty;
  930. u32 ringUsageHigh;
  931. u32 ringUsageLow;
  932. u32 RingUtilCount;
  933. } __packed;
  934. /**
  935. * struct ipa_uc_dbg_rtk_ring_stats - uC dbg stats info for RTK
  936. * offloading protocol
  937. * @commStats: common stats
  938. * @trCount: transfer ring count
  939. * @erCount: event ring count
  940. * @totalAosCount: total AoS completion count
  941. * @busyTime: total busy time
  942. */
  943. struct ipa_uc_dbg_rtk_ring_stats {
  944. struct IpaHwRingStats_t commStats;
  945. u32 trCount;
  946. u32 erCount;
  947. u32 totalAosCount;
  948. u64 busyTime;
  949. } __packed;
  950. /**
  951. * struct IpaHwStatsWDIRxInfoData_t - Structure holding the WDI Rx channel
  952. * structures
  953. *
  954. * @max_outstanding_pkts : Number of outstanding packets in Rx Ring
  955. * @num_pkts_processed : Number of packets processed - cumulative
  956. * @rx_ring_rp_value : Read pointer last advertized to the WLAN FW
  957. * @rx_ind_ring_stats : Ring info
  958. * @bam_stats : BAM info
  959. * @num_bam_int_handled : Number of Bam Interrupts handled by FW
  960. * @num_db : Number of times the doorbell was rung
  961. * @num_unexpected_db : Number of unexpected doorbells
  962. * @num_pkts_in_dis_uninit_state : number of completions we
  963. * received in disabled or uninitialized state
  964. * @num_ic_inj_vdev_change : Number of times the Imm Cmd is
  965. * injected due to vdev_id change
  966. * @num_ic_inj_fw_desc_change : Number of times the Imm Cmd is
  967. * injected due to fw_desc change
  968. * @num_qmb_int_handled : Number of QMB interrupts handled
  969. */
  970. struct IpaHwStatsWDIRxInfoData_t {
  971. u32 max_outstanding_pkts;
  972. u32 num_pkts_processed;
  973. u32 rx_ring_rp_value;
  974. struct IpaHwRingStats_t rx_ind_ring_stats;
  975. struct IpaHwBamStats_t bam_stats;
  976. u32 num_bam_int_handled;
  977. u32 num_db;
  978. u32 num_unexpected_db;
  979. u32 num_pkts_in_dis_uninit_state;
  980. u32 num_ic_inj_vdev_change;
  981. u32 num_ic_inj_fw_desc_change;
  982. u32 num_qmb_int_handled;
  983. u32 reserved1;
  984. u32 reserved2;
  985. } __packed;
  986. /**
  987. * struct IpaHwStatsWDITxInfoData_t - Structure holding the WDI Tx channel
  988. * structures
  989. *
  990. * @num_pkts_processed : Number of packets processed - cumulative
  991. * @copy_engine_doorbell_value : latest value of doorbell written to copy engine
  992. * @num_db_fired : Number of DB from uC FW to Copy engine
  993. * @tx_comp_ring_stats : ring info
  994. * @bam_stats : BAM info
  995. * @num_db : Number of times the doorbell was rung
  996. * @num_unexpected_db : Number of unexpected doorbells
  997. * @num_bam_int_handled : Number of Bam Interrupts handled by FW
  998. * @num_bam_int_in_non_running_state : Number of Bam interrupts while not in
  999. * Running state
  1000. * @num_qmb_int_handled : Number of QMB interrupts handled
  1001. */
  1002. struct IpaHwStatsWDITxInfoData_t {
  1003. u32 num_pkts_processed;
  1004. u32 copy_engine_doorbell_value;
  1005. u32 num_db_fired;
  1006. struct IpaHwRingStats_t tx_comp_ring_stats;
  1007. struct IpaHwBamStats_t bam_stats;
  1008. u32 num_db;
  1009. u32 num_unexpected_db;
  1010. u32 num_bam_int_handled;
  1011. u32 num_bam_int_in_non_running_state;
  1012. u32 num_qmb_int_handled;
  1013. u32 num_bam_int_handled_while_wait_for_bam;
  1014. } __packed;
  1015. /**
  1016. * struct IpaHwStatsWDIInfoData_t - Structure holding the WDI channel structures
  1017. *
  1018. * @rx_ch_stats : RX stats
  1019. * @tx_ch_stats : TX stats
  1020. */
  1021. struct IpaHwStatsWDIInfoData_t {
  1022. struct IpaHwStatsWDIRxInfoData_t rx_ch_stats;
  1023. struct IpaHwStatsWDITxInfoData_t tx_ch_stats;
  1024. } __packed;
  1025. /**
  1026. * struct ipa_wdi_ul_params - WDI_RX configuration
  1027. * @rdy_ring_base_pa: physical address of the base of the Rx ring (containing
  1028. * Rx buffers)
  1029. * @rdy_ring_size: size of the Rx ring in bytes
  1030. * @rdy_ring_rp_pa: physical address of the location through which IPA uc is
  1031. * reading (WDI-1.0)
  1032. * @rdy_comp_ring_base_pa: physical address of the base of the Rx completion
  1033. * ring (WDI-2.0)
  1034. * @rdy_comp_ring_wp_pa: physical address of the location through which IPA
  1035. * uc is writing (WDI-2.0)
  1036. * @rdy_comp_ring_size: size of the Rx_completion ring in bytes
  1037. * expected to communicate about the Read pointer into the Rx Ring
  1038. */
  1039. struct ipa_wdi_ul_params {
  1040. phys_addr_t rdy_ring_base_pa;
  1041. u32 rdy_ring_size;
  1042. phys_addr_t rdy_ring_rp_pa;
  1043. phys_addr_t rdy_comp_ring_base_pa;
  1044. phys_addr_t rdy_comp_ring_wp_pa;
  1045. u32 rdy_comp_ring_size;
  1046. u32 *rdy_ring_rp_va;
  1047. u32 *rdy_comp_ring_wp_va;
  1048. bool is_txr_rn_db_pcie_addr;
  1049. bool is_evt_rn_db_pcie_addr;
  1050. };
  1051. /**
  1052. * struct ipa_wdi_ul_params_smmu - WDI_RX configuration (with WLAN SMMU)
  1053. * @rdy_ring: SG table describing the Rx ring (containing Rx buffers)
  1054. * @rdy_ring_size: size of the Rx ring in bytes
  1055. * @rdy_ring_rp_pa: physical address of the location through which IPA uc is
  1056. * expected to communicate about the Read pointer into the Rx Ring
  1057. */
  1058. struct ipa_wdi_ul_params_smmu {
  1059. struct sg_table rdy_ring;
  1060. u32 rdy_ring_size;
  1061. phys_addr_t rdy_ring_rp_pa;
  1062. struct sg_table rdy_comp_ring;
  1063. phys_addr_t rdy_comp_ring_wp_pa;
  1064. u32 rdy_comp_ring_size;
  1065. u32 *rdy_ring_rp_va;
  1066. u32 *rdy_comp_ring_wp_va;
  1067. bool is_txr_rn_db_pcie_addr;
  1068. bool is_evt_rn_db_pcie_addr;
  1069. };
  1070. /**
  1071. * struct ipa_wdi_dl_params - WDI_TX configuration
  1072. * @comp_ring_base_pa: physical address of the base of the Tx completion ring
  1073. * @comp_ring_size: size of the Tx completion ring in bytes
  1074. * @ce_ring_base_pa: physical address of the base of the Copy Engine Source
  1075. * Ring
  1076. * @ce_door_bell_pa: physical address of the doorbell that the IPA uC has to
  1077. * write into to trigger the copy engine
  1078. * @ce_ring_size: Copy Engine Ring size in bytes
  1079. * @num_tx_buffers: Number of pkt buffers allocated
  1080. */
  1081. struct ipa_wdi_dl_params {
  1082. phys_addr_t comp_ring_base_pa;
  1083. u32 comp_ring_size;
  1084. phys_addr_t ce_ring_base_pa;
  1085. phys_addr_t ce_door_bell_pa;
  1086. u32 ce_ring_size;
  1087. u32 num_tx_buffers;
  1088. bool is_txr_rn_db_pcie_addr;
  1089. bool is_evt_rn_db_pcie_addr;
  1090. };
  1091. /**
  1092. * struct ipa_wdi_dl_params_smmu - WDI_TX configuration (with WLAN SMMU)
  1093. * @comp_ring: SG table describing the Tx completion ring
  1094. * @comp_ring_size: size of the Tx completion ring in bytes
  1095. * @ce_ring: SG table describing the Copy Engine Source Ring
  1096. * @ce_door_bell_pa: physical address of the doorbell that the IPA uC has to
  1097. * write into to trigger the copy engine
  1098. * @ce_ring_size: Copy Engine Ring size in bytes
  1099. * @num_tx_buffers: Number of pkt buffers allocated
  1100. */
  1101. struct ipa_wdi_dl_params_smmu {
  1102. struct sg_table comp_ring;
  1103. u32 comp_ring_size;
  1104. struct sg_table ce_ring;
  1105. phys_addr_t ce_door_bell_pa;
  1106. u32 ce_ring_size;
  1107. u32 num_tx_buffers;
  1108. bool is_txr_rn_db_pcie_addr;
  1109. bool is_evt_rn_db_pcie_addr;
  1110. };
  1111. /**
  1112. * struct ipa_wdi_in_params - information provided by WDI client
  1113. * @sys: IPA EP configuration info
  1114. * @ul: WDI_RX configuration info
  1115. * @dl: WDI_TX configuration info
  1116. * @ul_smmu: WDI_RX configuration info when WLAN uses SMMU
  1117. * @dl_smmu: WDI_TX configuration info when WLAN uses SMMU
  1118. * @smmu_enabled: true if WLAN uses SMMU
  1119. * @ipa_wdi_meter_notifier_cb: Get WDI stats and quato info
  1120. */
  1121. struct ipa_wdi_in_params {
  1122. struct ipa_sys_connect_params sys;
  1123. union {
  1124. struct ipa_wdi_ul_params ul;
  1125. struct ipa_wdi_dl_params dl;
  1126. struct ipa_wdi_ul_params_smmu ul_smmu;
  1127. struct ipa_wdi_dl_params_smmu dl_smmu;
  1128. } u;
  1129. bool smmu_enabled;
  1130. #ifdef IPA_WAN_MSG_IPv6_ADDR_GW_LEN
  1131. ipa_wdi_meter_notifier_cb wdi_notify;
  1132. #endif
  1133. };
  1134. enum ipa_upstream_type {
  1135. IPA_UPSTEAM_MODEM = 1,
  1136. IPA_UPSTEAM_WLAN,
  1137. IPA_UPSTEAM_MAX
  1138. };
  1139. /**
  1140. * struct ipa_wdi_out_params - information provided to WDI client
  1141. * @uc_door_bell_pa: physical address of IPA uc doorbell
  1142. * @clnt_hdl: opaque handle assigned to client
  1143. */
  1144. struct ipa_wdi_out_params {
  1145. phys_addr_t uc_door_bell_pa;
  1146. u32 clnt_hdl;
  1147. };
  1148. /**
  1149. * struct ipa_wdi_db_params - information provided to retrieve
  1150. * physical address of uC doorbell
  1151. * @client: type of "client" (IPA_CLIENT_WLAN#_PROD/CONS)
  1152. * @uc_door_bell_pa: physical address of IPA uc doorbell
  1153. */
  1154. struct ipa_wdi_db_params {
  1155. enum ipa_client_type client;
  1156. phys_addr_t uc_door_bell_pa;
  1157. };
  1158. /**
  1159. * struct ipa_wdi_uc_ready_params - uC ready CB parameters
  1160. * @is_uC_ready: uC loaded or not
  1161. * @priv : callback cookie
  1162. * @notify: callback
  1163. */
  1164. typedef void (*ipa_uc_ready_cb)(void *priv);
  1165. struct ipa_wdi_uc_ready_params {
  1166. bool is_uC_ready;
  1167. void *priv;
  1168. ipa_uc_ready_cb notify;
  1169. };
  1170. /**
  1171. * struct ipa_wdi_buffer_info - address info of a WLAN allocated buffer
  1172. * @pa: physical address of the buffer
  1173. * @iova: IOVA of the buffer as embedded inside the WDI descriptors
  1174. * @size: size in bytes of the buffer
  1175. * @result: result of map or unmap operations (out param)
  1176. *
  1177. * IPA driver will create/release IOMMU mapping in IPA SMMU from iova->pa
  1178. */
  1179. struct ipa_wdi_buffer_info {
  1180. phys_addr_t pa;
  1181. unsigned long iova;
  1182. size_t size;
  1183. int result;
  1184. };
  1185. /**
  1186. * struct ipa_wdi_bw_info - address info of a WLAN allocated buffer
  1187. * @threshold: throughput wants to be monitored
  1188. * @num: number of threshold entries
  1189. * @stop: true to stop monitoring
  1190. *
  1191. * IPA driver will create/release IOMMU mapping in IPA SMMU from iova->pa
  1192. */
  1193. struct ipa_wdi_bw_info {
  1194. uint64_t threshold[IPA_BW_THRESHOLD_MAX];
  1195. int num;
  1196. bool stop;
  1197. };
  1198. /**
  1199. * struct ipa_wdi_tx_info - sw tx info from WLAN
  1200. * @sta_tx: sw tx stats on sta interface
  1201. * @ap_tx: sw tx stats on ap interface
  1202. *
  1203. * IPA driver will create/release IOMMU mapping in IPA SMMU from iova->pa
  1204. */
  1205. struct ipa_wdi_tx_info {
  1206. uint64_t sta_tx;
  1207. uint64_t ap_tx;
  1208. };
  1209. /**
  1210. * struct ipa_gsi_ep_config - IPA GSI endpoint configurations
  1211. *
  1212. * @ipa_ep_num: IPA EP pipe number
  1213. * @ipa_gsi_chan_num: GSI channel number
  1214. * @ipa_if_tlv: number of IPA_IF TLV
  1215. * @ipa_if_aos: number of IPA_IF AOS
  1216. * @ee: Execution environment
  1217. * @prefetch_mode: Prefetch mode to be used
  1218. * @prefetch_threshold: Prefetch empty level threshold.
  1219. * relevant for smart and free prefetch modes
  1220. */
  1221. struct ipa_gsi_ep_config {
  1222. int ipa_ep_num;
  1223. int ipa_gsi_chan_num;
  1224. int ipa_if_tlv;
  1225. int ipa_if_aos;
  1226. int ee;
  1227. enum gsi_prefetch_mode prefetch_mode;
  1228. uint8_t prefetch_threshold;
  1229. };
  1230. /**
  1231. * struct ipa_smmu_in_params - information provided from client
  1232. * @ipa_smmu_client_type: clinet requesting for the smmu info.
  1233. */
  1234. enum ipa_smmu_client_type {
  1235. IPA_SMMU_WLAN_CLIENT,
  1236. IPA_SMMU_AP_CLIENT,
  1237. IPA_SMMU_WIGIG_CLIENT,
  1238. IPA_SMMU_WLAN1_CLIENT,
  1239. IPA_SMMU_ETH_CLIENT,
  1240. IPA_SMMU_ETH1_CLIENT,
  1241. IPA_SMMU_CLIENT_MAX
  1242. };
  1243. struct ipa_smmu_in_params {
  1244. enum ipa_smmu_client_type smmu_client;
  1245. };
  1246. /**
  1247. * struct ipa_smmu_out_params - information provided to IPA client
  1248. * @smmu_enable: IPA S1 SMMU enable/disable status
  1249. * @shared_cb: is client CB shared (mappings should be done by client only)
  1250. */
  1251. struct ipa_smmu_out_params {
  1252. bool smmu_enable;
  1253. bool shared_cb;
  1254. };
  1255. struct iphdr_rsv {
  1256. struct iphdr ipv4_temp; /* 20 bytes */
  1257. uint32_t rsv1;
  1258. uint32_t rsv2;
  1259. uint32_t rsv3;
  1260. uint32_t rsv4;
  1261. uint32_t rsv5;
  1262. } __packed;
  1263. union ip_hdr_temp {
  1264. struct iphdr_rsv ipv4_rsv; /* 40 bytes */
  1265. struct ipv6hdr ipv6_temp; /* 40 bytes */
  1266. } __packed;
  1267. struct ipa_socksv5_uc_tmpl {
  1268. uint16_t cmd_id;
  1269. uint16_t rsv;
  1270. uint32_t cmd_param;
  1271. uint16_t pkt_count;
  1272. uint16_t rsv2;
  1273. uint32_t byte_count;
  1274. union ip_hdr_temp ip_hdr;
  1275. /* 2B src/dst port */
  1276. uint16_t src_port;
  1277. uint16_t dst_port;
  1278. /* attribute mask */
  1279. uint32_t ipa_sockv5_mask;
  1280. /* reqquired update 4B/4B Seq/Ack/SACK */
  1281. uint32_t out_irs;
  1282. uint32_t out_iss;
  1283. uint32_t in_irs;
  1284. uint32_t in_iss;
  1285. /* option 10B: time-stamp */
  1286. uint32_t out_ircv_tsval;
  1287. uint32_t in_ircv_tsecr;
  1288. uint32_t out_ircv_tsecr;
  1289. uint32_t in_ircv_tsval;
  1290. /* option 2B: window-scaling/dynamic */
  1291. uint16_t in_isnd_wscale:4;
  1292. uint16_t out_isnd_wscale:4;
  1293. uint16_t in_ircv_wscale:4;
  1294. uint16_t out_ircv_wscale:4;
  1295. uint16_t MAX_WINDOW_SIZE;
  1296. /* 11*4 + 40 bytes = 84 bytes */
  1297. uint32_t rsv3;
  1298. uint32_t rsv4;
  1299. uint32_t rsv5;
  1300. uint32_t rsv6;
  1301. uint32_t rsv7;
  1302. uint32_t rsv8;
  1303. uint32_t rsv9;
  1304. } __packed;
  1305. /*reserve 16 bytes : 16 bytes+ 40 bytes + 44 bytes = 100 bytes (28 bytes left)*/
  1306. struct ipa_socksv5_info {
  1307. /* ipa-uc info */
  1308. struct ipa_socksv5_uc_tmpl ul_out;
  1309. struct ipa_socksv5_uc_tmpl dl_out;
  1310. /* ipacm info */
  1311. struct ipacm_socksv5_info ul_in;
  1312. struct ipacm_socksv5_info dl_in;
  1313. /* output: handle (index) */
  1314. uint16_t handle;
  1315. };
  1316. struct ipa_ipv6_nat_uc_tmpl {
  1317. uint16_t cmd_id;
  1318. uint16_t rsv;
  1319. uint32_t cmd_param;
  1320. uint16_t pkt_count;
  1321. uint16_t rsv2;
  1322. uint32_t byte_count;
  1323. uint64_t private_address_lsb;
  1324. uint64_t private_address_msb;
  1325. uint64_t public_address_lsb;
  1326. uint64_t public_address_msb;
  1327. uint16_t private_port;
  1328. uint16_t public_port;
  1329. uint32_t rsv3;
  1330. uint64_t rsv4;
  1331. uint64_t rsv5;
  1332. uint64_t rsv6;
  1333. uint64_t rsv7;
  1334. uint64_t rsv8;
  1335. uint64_t rsv9;
  1336. uint64_t rsv10;
  1337. uint64_t rsv11;
  1338. uint64_t rsv12;
  1339. } __packed;
  1340. #if IS_ENABLED(CONFIG_IPA3)
  1341. /*
  1342. * Configuration
  1343. */
  1344. /**
  1345. * ipa_cfg_ep_ctrl() - IPA end-point Control configuration
  1346. * @clnt_hdl: [in] opaque client handle assigned by IPA to client
  1347. * @ipa_ep_cfg_ctrl: [in] IPA end-point configuration params
  1348. *
  1349. * Returns: 0 on success, negative on failure
  1350. */
  1351. int ipa_cfg_ep_ctrl(u32 clnt_hdl, const struct ipa_ep_cfg_ctrl *ep_ctrl);
  1352. /*
  1353. * Routing
  1354. */
  1355. /**
  1356. * ipa_add_rt_rule() - Add the specified routing rules to SW and optionally
  1357. * commit to IPA HW
  1358. * @rules: [inout] set of routing rules to add
  1359. *
  1360. * Returns: 0 on success, negative on failure
  1361. *
  1362. * Note: Should not be called from atomic context
  1363. */
  1364. int ipa_add_rt_rule(struct ipa_ioc_add_rt_rule *rules);
  1365. /**
  1366. * ipa_put_rt_tbl() - Release the specified routing table handle
  1367. * @rt_tbl_hdl: [in] the routing table handle to release
  1368. *
  1369. * Returns: 0 on success, negative on failure
  1370. *
  1371. * Note: Should not be called from atomic context
  1372. */
  1373. int ipa_put_rt_tbl(u32 rt_tbl_hdl);
  1374. /*
  1375. * Interface
  1376. */
  1377. int ipa_register_intf(const char *name,
  1378. const struct ipa_tx_intf *tx,
  1379. const struct ipa_rx_intf *rx);
  1380. int ipa_deregister_intf(const char *name);
  1381. /*
  1382. * Aggregation
  1383. */
  1384. /**
  1385. * ipa_set_aggr_mode() - Set the aggregation mode which is a global setting
  1386. * @mode: [in] the desired aggregation mode for e.g. straight MBIM, QCNCM,
  1387. * etc
  1388. *
  1389. * Returns: 0 on success
  1390. */
  1391. int ipa_set_aggr_mode(enum ipa_aggr_mode mode);
  1392. /**
  1393. * ipa_set_qcncm_ndp_sig() - Set the NDP signature used for QCNCM aggregation
  1394. * mode
  1395. * @sig: [in] the first 3 bytes of QCNCM NDP signature (expected to be
  1396. * "QND")
  1397. *
  1398. * Set the NDP signature used for QCNCM aggregation mode. The fourth byte
  1399. * (expected to be 'P') needs to be set using the header addition mechanism
  1400. *
  1401. * Returns: 0 on success, negative on failure
  1402. */
  1403. int ipa_set_qcncm_ndp_sig(char sig[3]);
  1404. /**
  1405. * ipa_set_single_ndp_per_mbim() - Enable/disable single NDP per MBIM frame
  1406. * configuration
  1407. * @enable: [in] true for single NDP/MBIM; false otherwise
  1408. *
  1409. * Returns: 0 on success
  1410. */
  1411. int ipa_set_single_ndp_per_mbim(bool enable);
  1412. /*
  1413. * interrupts
  1414. */
  1415. /**
  1416. * ipa_add_interrupt_handler() - Adds handler to an interrupt type
  1417. * @interrupt: Interrupt type
  1418. * @handler: The handler to be added
  1419. * @deferred_flag: whether the handler processing should be deferred in
  1420. * a workqueue
  1421. * @private_data: the client's private data
  1422. *
  1423. * Adds handler to an interrupt type and enable the specific bit
  1424. * in IRQ_EN register, associated interrupt in IRQ_STTS register will be enabled
  1425. */
  1426. int ipa_add_interrupt_handler(enum ipa_irq_type interrupt,
  1427. ipa_irq_handler_t handler,
  1428. bool deferred_flag,
  1429. void *private_data);
  1430. /**
  1431. * ipa_restore_suspend_handler() - restores the original suspend IRQ handler
  1432. * as it was registered in the IPA init sequence.
  1433. * Return codes:
  1434. * 0: success
  1435. * -EPERM: failed to remove current handler or failed to add original handler
  1436. */
  1437. int ipa_restore_suspend_handler(void);
  1438. /*
  1439. * Messaging
  1440. */
  1441. /**
  1442. * ipa_send_msg() - Send "message" from kernel client to IPA driver
  1443. * @metadata: [in] message metadata
  1444. * @buff: [in] the payload for message
  1445. * @callback: [in] free callback
  1446. *
  1447. * Client supplies the message metadata and payload which IPA driver buffers
  1448. * till read by user-space. After read from user space IPA driver invokes the
  1449. * callback supplied to free the message payload. Client must not touch/free
  1450. * the message payload after calling this API.
  1451. *
  1452. * Returns: 0 on success, negative on failure
  1453. *
  1454. * Note: Should not be called from atomic context
  1455. */
  1456. int ipa_send_msg(struct ipa_msg_meta *metadata, void *buff,
  1457. ipa_msg_free_fn callback);
  1458. /*
  1459. * Data path
  1460. */
  1461. /**
  1462. * ipa_tx_dp() - Data-path tx handler
  1463. * @dst: [in] which IPA destination to route tx packets to
  1464. * @skb: [in] the packet to send
  1465. * @metadata: [in] TX packet metadata
  1466. *
  1467. * Data-path tx handler, this is used for both SW data-path which by-passes most
  1468. * IPA HW blocks AND the regular HW data-path for WLAN AMPDU traffic only. If
  1469. * dst is a "valid" CONS type, then SW data-path is used. If dst is the
  1470. * WLAN_AMPDU PROD type, then HW data-path for WLAN AMPDU is used. Anything else
  1471. * is an error. For errors, client needs to free the skb as needed. For success,
  1472. * IPA driver will later invoke client callback if one was supplied. That
  1473. * callback should free the skb. If no callback supplied, IPA driver will free
  1474. * the skb internally
  1475. *
  1476. * The function will use two descriptors for this send command
  1477. * (for A5_WLAN_AMPDU_PROD only one desciprtor will be sent),
  1478. * the first descriptor will be used to inform the IPA hardware that
  1479. * apps need to push data into the IPA (IP_PACKET_INIT immediate command).
  1480. * Once this send was done from SPS point-of-view the IPA driver will
  1481. * get notified by the supplied callback - ipa_sps_irq_tx_comp()
  1482. *
  1483. * ipa_sps_irq_tx_comp will call to the user supplied
  1484. * callback (from ipa_connect)
  1485. *
  1486. * Returns: 0 on success, negative on failure
  1487. */
  1488. int ipa_tx_dp(enum ipa_client_type dst, struct sk_buff *skb,
  1489. struct ipa_tx_meta *metadata);
  1490. /*
  1491. * ipa_rmnet_ctl_xmit - QMAP Flow control TX
  1492. *
  1493. * @skb - tx QMAP control packet
  1494. *
  1495. * Note: This need to be called after client receive rmnet_ctl_
  1496. * ready_cb and want to send TX flow control message.
  1497. *
  1498. * This funciton will return 0 on success, -EAGAIN if pipe if full.
  1499. */
  1500. int ipa_rmnet_ctl_xmit(struct sk_buff *skb);
  1501. /*
  1502. * ipa_rmnet_ll_xmit - Low lat data Tx
  1503. *
  1504. * @skb - tx low lat data packet
  1505. *
  1506. * Note: This need to be called after client receive rmnet_ll_
  1507. * ready_cb and want to send TX ll data message.
  1508. *
  1509. * This funciton will return 0 on success, -EAGAIN if pipe if full.
  1510. */
  1511. int ipa_rmnet_ll_xmit(struct sk_buff *skb);
  1512. /*
  1513. * ipa_register_notifier - Register for IPA atomic notifier
  1514. *
  1515. * @fn_ptr - Function pointer to get the notification
  1516. *
  1517. * This funciton will return 0 on success, -EAGAIN if reg fails.
  1518. */
  1519. int ipa_register_notifier(void *fn_ptr);
  1520. /*
  1521. * ipa_unregister_notifier - Unregister for IPA atomic notifier
  1522. *
  1523. * @fn_ptr - Same function pointer used to get the notification
  1524. *
  1525. * This funciton will return 0 on success, -EAGAIN if reg fails.
  1526. */
  1527. int ipa_unregister_notifier(void *fn_ptr);
  1528. void ipa_free_skb(struct ipa_rx_data *data);
  1529. /*
  1530. * System pipes
  1531. */
  1532. /**
  1533. * ipa_setup_sys_pipe() - Setup an IPA end-point in system-BAM mode and perform
  1534. * IPA EP configuration
  1535. * @sys_in: [in] input needed to setup BAM pipe and configure EP
  1536. * @clnt_hdl: [out] client handle
  1537. *
  1538. * - configure the end-point registers with the supplied
  1539. * parameters from the user.
  1540. * - call SPS APIs to create a system-to-bam connection with IPA.
  1541. * - allocate descriptor FIFO
  1542. * - register callback function(ipa_sps_irq_rx_notify or
  1543. * ipa_sps_irq_tx_notify - depends on client type) in case the driver is
  1544. * not configured to pulling mode
  1545. *
  1546. * Returns: 0 on success, negative on failure
  1547. */
  1548. int ipa_setup_sys_pipe(struct ipa_sys_connect_params *sys_in, u32 *clnt_hdl);
  1549. /**
  1550. * ipa_teardown_sys_pipe() - Teardown the system-BAM pipe and cleanup IPA EP
  1551. * @clnt_hdl: [in] the handle obtained from ipa_setup_sys_pipe
  1552. *
  1553. * Returns: 0 on success, negative on failure
  1554. */
  1555. int ipa_teardown_sys_pipe(u32 clnt_hdl);
  1556. int ipa_connect_wdi_pipe(struct ipa_wdi_in_params *in,
  1557. struct ipa_wdi_out_params *out);
  1558. int ipa_disconnect_wdi_pipe(u32 clnt_hdl);
  1559. int ipa_enable_wdi_pipe(u32 clnt_hdl);
  1560. int ipa_disable_wdi_pipe(u32 clnt_hdl);
  1561. int ipa_resume_wdi_pipe(u32 clnt_hdl);
  1562. int ipa_suspend_wdi_pipe(u32 clnt_hdl);
  1563. int ipa_reg_uc_rdyCB(struct ipa_wdi_uc_ready_params *param);
  1564. int ipa_dereg_uc_rdyCB(void);
  1565. int ipa_add_hdr(struct ipa_ioc_add_hdr *hdrs);
  1566. int ipa_del_hdr(struct ipa_ioc_del_hdr *hdls);
  1567. int ipa_get_hdr(struct ipa_ioc_get_hdr *lookup);
  1568. /**
  1569. * ipa_get_wdi_stats() - Query WDI statistics from uc
  1570. * @stats: [inout] stats blob from client populated by driver
  1571. *
  1572. * Returns: 0 on success, negative on failure
  1573. *
  1574. * @note Cannot be called from atomic context
  1575. *
  1576. */
  1577. int ipa_get_wdi_stats(struct IpaHwStatsWDIInfoData_t *stats);
  1578. int ipa_uc_bw_monitor(struct ipa_wdi_bw_info *info);
  1579. /**
  1580. * ipa_broadcast_wdi_quota_reach_ind() - quota reach
  1581. * @uint32_t fid: [in] input netdev ID
  1582. * @uint64_t num_bytes: [in] used bytes
  1583. *
  1584. * Returns: 0 on success, negative on failure
  1585. */
  1586. int ipa_broadcast_wdi_quota_reach_ind(uint32_t fid,
  1587. uint64_t num_bytes);
  1588. /*
  1589. * To retrieve doorbell physical address of
  1590. * wlan pipes
  1591. */
  1592. int ipa_uc_wdi_get_dbpa(struct ipa_wdi_db_params *out);
  1593. /*
  1594. * IPADMA
  1595. */
  1596. /**
  1597. * ipa_dma_init() -Initialize IPADMA.
  1598. *
  1599. * This function initialize all IPADMA internal data and connect in dma:
  1600. * MEMCPY_DMA_SYNC_PROD ->MEMCPY_DMA_SYNC_CONS
  1601. * MEMCPY_DMA_ASYNC_PROD->MEMCPY_DMA_SYNC_CONS
  1602. *
  1603. * Return codes: 0: success
  1604. * -EFAULT: IPADMA is already initialized
  1605. * -ENOMEM: allocating memory error
  1606. * -EPERM: pipe connection failed
  1607. */
  1608. int ipa_dma_init(void);
  1609. /**
  1610. * ipa_dma_enable() -Vote for IPA clocks.
  1611. *
  1612. *Return codes: 0: success
  1613. * -EINVAL: IPADMA is not initialized
  1614. * -EPERM: Operation not permitted as ipa_dma is already
  1615. * enabled
  1616. */
  1617. int ipa_dma_enable(void);
  1618. /**
  1619. * ipa_dma_disable()- Unvote for IPA clocks.
  1620. *
  1621. * enter to power save mode.
  1622. *
  1623. * Return codes: 0: success
  1624. * -EINVAL: IPADMA is not initialized
  1625. * -EPERM: Operation not permitted as ipa_dma is already
  1626. * disabled
  1627. * -EFAULT: can not disable ipa_dma as there are pending
  1628. * memcopy works
  1629. */
  1630. int ipa_dma_disable(void);
  1631. /**
  1632. * ipa_dma_sync_memcpy()- Perform synchronous memcpy using IPA.
  1633. *
  1634. * @dest: physical address to store the copied data.
  1635. * @src: physical address of the source data to copy.
  1636. * @len: number of bytes to copy.
  1637. *
  1638. * Return codes: 0: success
  1639. * -EINVAL: invalid params
  1640. * -EPERM: operation not permitted as ipa_dma isn't enable or
  1641. * initialized
  1642. * -SPS_ERROR: on sps faliures
  1643. * -EFAULT: other
  1644. */
  1645. int ipa_dma_sync_memcpy(u64 dest, u64 src, int len);
  1646. /**
  1647. * ipa_dma_async_memcpy()- Perform asynchronous memcpy using IPA.
  1648. *
  1649. * @dest: physical address to store the copied data.
  1650. * @src: physical address of the source data to copy.
  1651. * @len: number of bytes to copy.
  1652. * @user_cb: callback function to notify the client when the copy was done.
  1653. * @user_param: cookie for user_cb.
  1654. *
  1655. * Return codes: 0: success
  1656. * -EINVAL: invalid params
  1657. * -EPERM: operation not permitted as ipa_dma isn't enable or
  1658. * initialized
  1659. * -SPS_ERROR: on sps faliures
  1660. * -EFAULT: descr fifo is full.
  1661. */
  1662. int ipa_dma_async_memcpy(u64 dest, u64 src, int len,
  1663. void (*user_cb)(void *user1), void *user_param);
  1664. /**
  1665. * ipa_dma_destroy() -teardown IPADMA pipes and release ipadma.
  1666. *
  1667. * this is a blocking function, returns just after destroying IPADMA.
  1668. */
  1669. void ipa_dma_destroy(void);
  1670. /*
  1671. * Miscellaneous
  1672. */
  1673. void ipa_bam_reg_dump(void);
  1674. int ipa_get_ep_mapping(enum ipa_client_type client);
  1675. bool ipa_is_ready(void);
  1676. void ipa_proxy_clk_vote(void);
  1677. void ipa_proxy_clk_unvote(void);
  1678. #ifdef CONFIG_DEEPSLEEP
  1679. int ipa_fmwk_deepsleep_entry_ipa(void);
  1680. int ipa_fmwk_deepsleep_exit_ipa(void);
  1681. #endif
  1682. enum ipa_hw_type ipa_get_hw_type(void);
  1683. const struct ipa_gsi_ep_config *ipa_get_gsi_ep_info(
  1684. enum ipa_client_type client);
  1685. int ipa_stop_gsi_channel(u32 clnt_hdl);
  1686. typedef void (*ipa_ready_cb)(void *user_data);
  1687. typedef void (*ipa_rmnet_ctl_ready_cb)(void *user_data);
  1688. typedef void (*ipa_rmnet_ctl_stop_cb)(void *user_data);
  1689. typedef void (*ipa_rmnet_ctl_rx_notify_cb)(void *user_data, void *rx_data);
  1690. typedef void (*ipa_rmnet_ll_ready_cb)(void *user_data);
  1691. typedef void (*ipa_rmnet_ll_stop_cb)(void *user_data);
  1692. typedef void (*ipa_rmnet_ll_rx_notify_cb)(void *user_data, void *rx_data);
  1693. int ipa_get_default_aggr_time_limit(enum ipa_client_type client,
  1694. u32 *default_aggr_time_limit);
  1695. /**
  1696. * ipa_register_ipa_ready_cb() - register a callback to be invoked
  1697. * when IPA core driver initialization is complete.
  1698. *
  1699. * @ipa_ready_cb: CB to be triggered.
  1700. * @user_data: Data to be sent to the originator of the CB.
  1701. *
  1702. * Note: This function is expected to be utilized when ipa_is_ready
  1703. * function returns false.
  1704. * An IPA client may also use this function directly rather than
  1705. * calling ipa_is_ready beforehand, as if this API returns -EEXIST,
  1706. * this means IPA initialization is complete (and no callback will
  1707. * be triggered).
  1708. * When the callback is triggered, the client MUST perform his
  1709. * operations in a different context.
  1710. *
  1711. * The function will return 0 on success, -ENOMEM on memory issues and
  1712. * -EEXIST if IPA initialization is complete already.
  1713. */
  1714. int ipa_register_ipa_ready_cb(void (*ipa_ready_cb)(void *user_data),
  1715. void *user_data);
  1716. /**
  1717. * ipa_register_rmnet_ctl_cb() - register callbacks to be invoked
  1718. * to rmnet_ctl for qmap flow control pipes setup/teardown/rx_notify.
  1719. *
  1720. * @ipa_rmnet_ctl_ready_cb: CB to be called when pipes setup.
  1721. * @user_data1: user_data for ipa_rmnet_ctl_ready_cb.
  1722. * @ipa_rmnet_ctl_stop_cb: CB to be called when pipes teardown.
  1723. * @user_data2: user_data for ipa_rmnet_ctl_stop_cb.
  1724. * @ipa_rmnet_ctl_rx_notify_cb: CB to be called when receive rx pkts.
  1725. * @user_data3: user_data for ipa_rmnet_ctl_rx_notify_cb.
  1726. * @rx_data: RX data buffer.
  1727. *
  1728. * Note: This function is expected to be utilized for rmnet_ctl
  1729. * module when new qmap flow control is enabled.
  1730. *
  1731. * The function will return 0 on success, -EAGAIN if IPA not ready,
  1732. * -ENXIO is feature is not enabled, -EEXIST if already called.
  1733. */
  1734. int ipa_register_rmnet_ctl_cb(
  1735. void (*ipa_rmnet_ctl_ready_cb)(void *user_data1),
  1736. void *user_data1,
  1737. void (*ipa_rmnet_ctl_stop_cb)(void *user_data2),
  1738. void *user_data2,
  1739. void (*ipa_rmnet_ctl_rx_notify_cb)(void *user_data3, void *rx_data),
  1740. void *user_data3);
  1741. /**
  1742. * ipa_unregister_rmnet_ctl_cb() - unregister callbacks to be
  1743. * invoked to rmnet_ctl for qmap flow control pipes
  1744. * setup/teardown/rx_notify.
  1745. *
  1746. * Note: This function is expected to be utilized for rmnet_ctl
  1747. * module when new qmap flow control is enabled.
  1748. *
  1749. * The function will return 0 on success, -EAGAIN if IPA not ready,
  1750. * -ENXIO is feature is not enabled.
  1751. */
  1752. int ipa_unregister_rmnet_ctl_cb(void);
  1753. /**
  1754. * ipa_register_rmnet_ll_cb() - register callbacks to be invoked
  1755. * to rmnet_ll for low latency data pipes setup/teardown/rx_notify.
  1756. *
  1757. * @ipa_rmnet_ll_ready_cb: CB to be called when pipes setup.
  1758. * @user_data1: user_data for ipa_rmnet_ctl_ready_cb.
  1759. * @ipa_rmnet_ll_stop_cb: CB to be called when pipes teardown.
  1760. * @user_data2: user_data for ipa_rmnet_ctl_stop_cb.
  1761. * @ipa_rmnet_ll_rx_notify_cb: CB to be called when receive rx pkts.
  1762. * @user_data3: user_data for ipa_rmnet_ctl_rx_notify_cb.
  1763. * @rx_data: RX data buffer.
  1764. *
  1765. * Note: This function is expected to be utilized for rmnet_ll
  1766. * module.
  1767. *
  1768. * The function will return 0 on success, -EAGAIN if IPA not ready,
  1769. * -ENXIO is feature is not enabled, -EEXIST if already called.
  1770. */
  1771. int ipa_register_rmnet_ll_cb(
  1772. void (*ipa_rmnet_ll_ready_cb)(void *user_data1),
  1773. void *user_data1,
  1774. void (*ipa_rmnet_ll_stop_cb)(void *user_data2),
  1775. void *user_data2,
  1776. void (*ipa_rmnet_ll_rx_notify_cb)(void *user_data3, void *rx_data),
  1777. void *user_data3);
  1778. /**
  1779. * ipa_unregister_rmnet_ll_cb() - unregister callbacks to be
  1780. * invoked to rmnet_ll for low lat data pipes
  1781. * setup/teardown/rx_notify.
  1782. *
  1783. * Note: This function is expected to be utilized for rmnet_ll
  1784. * module.
  1785. *
  1786. * The function will return 0 on success, -EAGAIN if IPA not ready,
  1787. * -ENXIO is feature is not enabled.
  1788. */
  1789. int ipa_unregister_rmnet_ll_cb(void);
  1790. int ipa_get_smmu_params(struct ipa_smmu_in_params *in,
  1791. struct ipa_smmu_out_params *out);
  1792. /**
  1793. * ipa_is_vlan_mode - check if a LAN driver should load in VLAN mode
  1794. * @iface - type of vlan capable device
  1795. * @res - query result: true for vlan mode, false for non vlan mode
  1796. *
  1797. * API must be called after ipa_is_ready() returns true, otherwise it will fail
  1798. *
  1799. * Returns: 0 on success, negative on failure
  1800. */
  1801. int ipa_is_vlan_mode(enum ipa_vlan_ifaces iface, bool *res);
  1802. /**
  1803. * ipa_get_lan_rx_napi - returns true if NAPI is enabled in the LAN RX dp
  1804. */
  1805. bool ipa_get_lan_rx_napi(void);
  1806. /*
  1807. * ipa_add_socksv5_conn - add socksv5 info to ipa driver
  1808. */
  1809. int ipa_add_socksv5_conn(struct ipa_socksv5_info *info);
  1810. /*
  1811. * ipa_del_socksv5_conn - del socksv5 info to ipa driver
  1812. */
  1813. int ipa_del_socksv5_conn(uint32_t handle);
  1814. int ipa_mhi_handle_ipa_config_req(struct ipa_config_req_msg_v01 *config_req);
  1815. int ipa_wigig_save_regs(void);
  1816. #else /* IS_ENABLED(CONFIG_IPA3) */
  1817. /*
  1818. * Configuration
  1819. */
  1820. static inline int ipa_cfg_ep_ctrl(u32 clnt_hdl,
  1821. const struct ipa_ep_cfg_ctrl *ep_ctrl)
  1822. {
  1823. return -EPERM;
  1824. }
  1825. /*
  1826. * Routing
  1827. */
  1828. static inline int ipa_add_rt_rule(struct ipa_ioc_add_rt_rule *rules)
  1829. {
  1830. return -EPERM;
  1831. }
  1832. static inline int ipa_put_rt_tbl(u32 rt_tbl_hdl)
  1833. {
  1834. return -EPERM;
  1835. }
  1836. /*
  1837. * Interface
  1838. */
  1839. static inline int ipa_register_intf(const char *name,
  1840. const struct ipa_tx_intf *tx,
  1841. const struct ipa_rx_intf *rx)
  1842. {
  1843. return -EPERM;
  1844. }
  1845. /*
  1846. * Aggregation
  1847. */
  1848. static inline int ipa_set_aggr_mode(enum ipa_aggr_mode mode)
  1849. {
  1850. return -EPERM;
  1851. }
  1852. static inline int ipa_set_qcncm_ndp_sig(char sig[3])
  1853. {
  1854. return -EPERM;
  1855. }
  1856. static inline int ipa_set_single_ndp_per_mbim(bool enable)
  1857. {
  1858. return -EPERM;
  1859. }
  1860. /*
  1861. * interrupts
  1862. */
  1863. static inline int ipa_add_interrupt_handler(enum ipa_irq_type interrupt,
  1864. ipa_irq_handler_t handler,
  1865. bool deferred_flag,
  1866. void *private_data)
  1867. {
  1868. return -EPERM;
  1869. }
  1870. static inline int ipa_restore_suspend_handler(void)
  1871. {
  1872. return -EPERM;
  1873. }
  1874. /*
  1875. * Messaging
  1876. */
  1877. static inline int ipa_send_msg(struct ipa_msg_meta *metadata, void *buff,
  1878. ipa_msg_free_fn callback)
  1879. {
  1880. return -EPERM;
  1881. }
  1882. /*
  1883. * Data path
  1884. */
  1885. static inline int ipa_tx_dp(enum ipa_client_type dst, struct sk_buff *skb,
  1886. struct ipa_tx_meta *metadata)
  1887. {
  1888. return -EPERM;
  1889. }
  1890. /*
  1891. * QMAP Flow control TX
  1892. */
  1893. static inline int ipa_rmnet_ctl_xmit(struct sk_buff *skb)
  1894. {
  1895. return -EPERM;
  1896. }
  1897. /*
  1898. * Low Latency data Tx
  1899. */
  1900. static inline int ipa_rmnet_ll_xmit(struct sk_buff *skb)
  1901. {
  1902. return -EPERM;
  1903. }
  1904. /*
  1905. * Yellow water mark notifier register
  1906. */
  1907. static inline int ipa_register_notifier(void *fn_ptr)
  1908. {
  1909. return -EPERM;
  1910. }
  1911. /*
  1912. * Yellow water mark notifier unregister
  1913. */
  1914. static inline int ipa_unregister_notifier(void *fn_ptr)
  1915. {
  1916. return -EPERM;
  1917. }
  1918. static inline void ipa_free_skb(struct ipa_rx_data *rx_in)
  1919. {
  1920. }
  1921. /*
  1922. * System pipes
  1923. */
  1924. static inline int ipa_setup_sys_pipe(struct ipa_sys_connect_params *sys_in,
  1925. u32 *clnt_hdl)
  1926. {
  1927. return -EPERM;
  1928. }
  1929. static inline int ipa_teardown_sys_pipe(u32 clnt_hdl)
  1930. {
  1931. return -EPERM;
  1932. }
  1933. static inline int ipa_connect_wdi_pipe(struct ipa_wdi_in_params *in,
  1934. struct ipa_wdi_out_params *out)
  1935. {
  1936. return -EPERM;
  1937. }
  1938. static inline int ipa_disconnect_wdi_pipe(u32 clnt_hdl)
  1939. {
  1940. return -EPERM;
  1941. }
  1942. static inline int ipa_enable_wdi_pipe(u32 clnt_hdl)
  1943. {
  1944. return -EPERM;
  1945. }
  1946. static inline int ipa_disable_wdi_pipe(u32 clnt_hdl)
  1947. {
  1948. return -EPERM;
  1949. }
  1950. static inline int ipa_resume_wdi_pipe(u32 clnt_hdl)
  1951. {
  1952. return -EPERM;
  1953. }
  1954. static inline int ipa_suspend_wdi_pipe(u32 clnt_hdl)
  1955. {
  1956. return -EPERM;
  1957. }
  1958. static inline int ipa_broadcast_wdi_quota_reach_ind(uint32_t fid,
  1959. uint64_t num_bytes)
  1960. {
  1961. return -EPERM;
  1962. }
  1963. static inline int ipa_uc_wdi_get_dbpa(
  1964. struct ipa_wdi_db_params *out)
  1965. {
  1966. return -EPERM;
  1967. }
  1968. /*
  1969. * IPADMA
  1970. */
  1971. static inline int ipa_dma_init(void)
  1972. {
  1973. return -EPERM;
  1974. }
  1975. static inline int ipa_dma_enable(void)
  1976. {
  1977. return -EPERM;
  1978. }
  1979. static inline int ipa_dma_disable(void)
  1980. {
  1981. return -EPERM;
  1982. }
  1983. static inline int ipa_dma_sync_memcpy(phys_addr_t dest, phys_addr_t src
  1984. , int len)
  1985. {
  1986. return -EPERM;
  1987. }
  1988. static inline int ipa_dma_async_memcpy(phys_addr_t dest, phys_addr_t src
  1989. , int len, void (*user_cb)(void *user1),
  1990. void *user_param)
  1991. {
  1992. return -EPERM;
  1993. }
  1994. static inline void ipa_dma_destroy(void)
  1995. {
  1996. }
  1997. /*
  1998. * Miscellaneous
  1999. */
  2000. static inline int ipa_get_wdi_stats(struct IpaHwStatsWDIInfoData_t *stats)
  2001. {
  2002. return -EPERM;
  2003. }
  2004. static inline int ipa_uc_bw_monitor(struct ipa_wdi_bw_info *info)
  2005. {
  2006. return -EPERM;
  2007. }
  2008. static inline int ipa_get_ep_mapping(enum ipa_client_type client)
  2009. {
  2010. return -EPERM;
  2011. }
  2012. static inline bool ipa_is_ready(void)
  2013. {
  2014. return false;
  2015. }
  2016. static inline int ipa_fmwk_deepsleep_entry_ipa(void)
  2017. {
  2018. return -EPERM;
  2019. }
  2020. static inline int ipa_fmwk_deepsleep_exit_ipa(void)
  2021. {
  2022. return -EPERM;
  2023. }
  2024. static inline enum ipa_hw_type ipa_get_hw_type(void)
  2025. {
  2026. return IPA_HW_None;
  2027. }
  2028. static inline int ipa_register_ipa_ready_cb(
  2029. void (*ipa_ready_cb)(void *user_data),
  2030. void *user_data)
  2031. {
  2032. return -EPERM;
  2033. }
  2034. static inline int ipa_is_vlan_mode(enum ipa_vlan_ifaces iface, bool *res)
  2035. {
  2036. return -EPERM;
  2037. }
  2038. static inline bool ipa_get_lan_rx_napi(void)
  2039. {
  2040. return false;
  2041. }
  2042. static inline int ipa_add_socksv5_conn(struct ipa_socksv5_info *info)
  2043. {
  2044. return -EPERM;
  2045. }
  2046. static inline int ipa_del_socksv5_conn(uint32_t handle)
  2047. {
  2048. return -EPERM;
  2049. }
  2050. static inline const struct ipa_gsi_ep_config *ipa_get_gsi_ep_info(
  2051. enum ipa_client_type client)
  2052. {
  2053. return NULL;
  2054. }
  2055. static inline int ipa_stop_gsi_channel(u32 clnt_hdl)
  2056. {
  2057. return -EPERM;
  2058. }
  2059. static inline int ipa_register_rmnet_ctl_cb(
  2060. void (*ipa_rmnet_ctl_ready_cb)(void *user_data1),
  2061. void *user_data1,
  2062. void (*ipa_rmnet_ctl_stop_cb)(void *user_data2),
  2063. void *user_data2,
  2064. void (*ipa_rmnet_ctl_rx_notify_cb)(void *user_data3, void *rx_data),
  2065. void *user_data3)
  2066. {
  2067. return -EPERM;
  2068. }
  2069. static inline int ipa_unregister_rmnet_ctl_cb(void)
  2070. {
  2071. return -EPERM;
  2072. }
  2073. static inline int ipa3_uc_reg_rdyCB(
  2074. struct ipa_wdi_uc_ready_params *inout)
  2075. {
  2076. return -EPERM;
  2077. }
  2078. static inline int ipa_register_rmnet_ll_cb(
  2079. void (*ipa_rmnet_ll_ready_cb)(void *user_data1),
  2080. void *user_data1,
  2081. void (*ipa_rmnet_ll_stop_cb)(void *user_data2),
  2082. void *user_data2,
  2083. void (*ipa_rmnet_ll_rx_notify_cb)(void *user_data3, void *rx_data),
  2084. void *user_data3)
  2085. {
  2086. return -EPERM;
  2087. }
  2088. static inline int ipa_get_default_aggr_time_limit(enum ipa_client_type client,
  2089. u32 *default_aggr_time_limit)
  2090. {
  2091. return -EPERM;
  2092. }
  2093. static inline int ipa_unregister_rmnet_ll_cb(void)
  2094. {
  2095. return -EPERM;
  2096. }
  2097. #endif /* IS_ENABLED(CONFIG_IPA3) */
  2098. /* stubs - to be removed once dependent drivers remove references */
  2099. static inline int ipa_reset_endpoint(u32 clnt_hdl)
  2100. {
  2101. return -EPERM;
  2102. }
  2103. static inline int ipa_clear_endpoint_delay(u32 clnt_hdl)
  2104. {
  2105. return -EPERM;
  2106. }
  2107. static inline int ipa_commit_hdr(void)
  2108. {
  2109. return -EPERM;
  2110. }
  2111. static inline int ipa_put_hdr(u32 hdr_hdl)
  2112. {
  2113. return -EPERM;
  2114. }
  2115. static inline int ipa_deregister_pull_msg(struct ipa_msg_meta *metadata)
  2116. {
  2117. return -EPERM;
  2118. }
  2119. /*
  2120. * Miscellaneous
  2121. */
  2122. static inline int ipa_rm_delete_resource(
  2123. enum ipa_rm_resource_name resource_name)
  2124. {
  2125. return -EPERM;
  2126. }
  2127. static inline int ipa_rm_deregister(
  2128. enum ipa_rm_resource_name resource_name,
  2129. struct ipa_rm_register_params *reg_params)
  2130. {
  2131. return -EPERM;
  2132. }
  2133. static inline int ipa_rm_set_perf_profile(
  2134. enum ipa_rm_resource_name resource_name,
  2135. struct ipa_rm_perf_profile *profile)
  2136. {
  2137. return -EPERM;
  2138. }
  2139. static inline int ipa_rm_add_dependency(
  2140. enum ipa_rm_resource_name resource_name,
  2141. enum ipa_rm_resource_name depends_on_name)
  2142. {
  2143. return -EPERM;
  2144. }
  2145. static inline int ipa_rm_add_dependency_sync(
  2146. enum ipa_rm_resource_name resource_name,
  2147. enum ipa_rm_resource_name depends_on_name)
  2148. {
  2149. return -EPERM;
  2150. }
  2151. static inline int ipa_rm_delete_dependency(
  2152. enum ipa_rm_resource_name resource_name,
  2153. enum ipa_rm_resource_name depends_on_name)
  2154. {
  2155. return -EPERM;
  2156. }
  2157. static inline int ipa_rm_request_resource(
  2158. enum ipa_rm_resource_name resource_name)
  2159. {
  2160. return -EPERM;
  2161. }
  2162. static inline int ipa_rm_inactivity_timer_init(
  2163. enum ipa_rm_resource_name resource_name,
  2164. unsigned long msecs)
  2165. {
  2166. return -EPERM;
  2167. }
  2168. static inline int ipa_rm_release_resource(
  2169. enum ipa_rm_resource_name resource_name)
  2170. {
  2171. return -EPERM;
  2172. }
  2173. static inline int ipa_rm_notify_completion(enum ipa_rm_event event,
  2174. enum ipa_rm_resource_name resource_name)
  2175. {
  2176. return -EPERM;
  2177. }
  2178. static inline int ipa_rm_inactivity_timer_destroy(
  2179. enum ipa_rm_resource_name resource_name)
  2180. {
  2181. return -EPERM;
  2182. }
  2183. static inline int ipa_rm_inactivity_timer_request_resource(
  2184. enum ipa_rm_resource_name resource_name)
  2185. {
  2186. return -EPERM;
  2187. }
  2188. static inline int ipa_rm_inactivity_timer_release_resource(
  2189. enum ipa_rm_resource_name resource_name)
  2190. {
  2191. return -EPERM;
  2192. }
  2193. static inline enum ipa_rm_resource_name ipa_get_rm_resource_from_ep(
  2194. int pipe_idx)
  2195. {
  2196. return -EPERM;
  2197. }
  2198. static inline bool ipa_is_client_handle_valid(u32 clnt_hdl)
  2199. {
  2200. return false;
  2201. }
  2202. static inline enum ipa_client_type ipa_get_client_mapping(int pipe_idx)
  2203. {
  2204. return -EPERM;
  2205. }
  2206. static inline bool ipa_get_modem_cfg_emb_pipe_flt(void)
  2207. {
  2208. return false;
  2209. }
  2210. static inline enum ipa_transport_type ipa_get_transport_type(void)
  2211. {
  2212. return IPA_TRANSPORT_TYPE_GSI;
  2213. }
  2214. static inline struct device *ipa_get_dma_dev(void)
  2215. {
  2216. return NULL;
  2217. }
  2218. static inline struct iommu_domain *ipa_get_smmu_domain(void)
  2219. {
  2220. return NULL;
  2221. }
  2222. static inline int ipa_disable_apps_wan_cons_deaggr(
  2223. uint32_t agg_size, uint32_t agg_count)
  2224. {
  2225. return -EPERM;
  2226. }
  2227. #endif /* _IPA_H_ */