target_if_spectral_phyerr.c 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146
  1. /*
  2. * Copyright (c) 2011,2017-2021 The Linux Foundation. All rights reserved.
  3. * Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for
  6. * any purpose with or without fee is hereby granted, provided that the
  7. * above copyright notice and this permission notice appear in all
  8. * copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  11. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  12. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  13. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  14. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  15. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  16. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  17. * PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. #include <osdep.h>
  20. #include <qdf_types.h>
  21. #include <qdf_module.h>
  22. #include <wlan_tgt_def_config.h>
  23. #include <hif.h>
  24. #include <hif_hw_version.h>
  25. #include <wmi_unified_api.h>
  26. #include <target_if_spectral.h>
  27. #include <wlan_lmac_if_def.h>
  28. #include <wlan_osif_priv.h>
  29. #include <reg_services_public_struct.h>
  30. #include <target_if.h>
  31. #ifdef DIRECT_BUF_RX_ENABLE
  32. #include <target_if_direct_buf_rx_api.h>
  33. #endif
  34. extern int spectral_debug_level;
  35. #ifdef WLAN_CONV_SPECTRAL_ENABLE
  36. #define SPECTRAL_HEXDUMP_OCTET_PRINT_SIZE (3)
  37. #define SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE (16)
  38. #define SPECTRAL_HEXDUMP_EXTRA_BUFFER_PER_LINE (16)
  39. /*
  40. * Provision for the expected hexdump line size as follows:
  41. *
  42. * Size per octet multiplied by number of octets per line
  43. * +
  44. * ASCII representation which is equivalent in print size to number of octets
  45. * per line
  46. * +
  47. * Some extra buffer
  48. */
  49. #define SPECTRAL_HEXDUMP_LINESIZE \
  50. ((SPECTRAL_HEXDUMP_OCTET_PRINT_SIZE * \
  51. SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE) + \
  52. SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE + \
  53. SPECTRAL_HEXDUMP_EXTRA_BUFFER_PER_LINE)
  54. /**
  55. * target_if_spectral_hexdump() - Print hexdump of the given buffer
  56. * @_buf: Pointer to buffer
  57. * @_len: Length of the buffer
  58. *
  59. * Print the hexdump of buffer upto given length. Print upto
  60. * SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE per line, followed by the ASCII
  61. * representation of these octets.
  62. */
  63. static inline void target_if_spectral_hexdump(unsigned char *_buf, int _len)
  64. {
  65. int i, mod;
  66. unsigned char ascii[SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE + 1];
  67. unsigned char *pc = (_buf);
  68. char hexdump_line[SPECTRAL_HEXDUMP_LINESIZE + 1];
  69. int loc = 0;
  70. qdf_mem_zero(hexdump_line, sizeof(hexdump_line));
  71. if (_len <= 0) {
  72. spectral_err("buffer len is %d, too short", _len);
  73. return;
  74. }
  75. for (i = 0; i < _len; i++) {
  76. mod = i % SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE;
  77. if (!mod) {
  78. if (i) {
  79. qdf_assert_always(loc < sizeof(hexdump_line));
  80. loc += snprintf(&hexdump_line[loc],
  81. sizeof(hexdump_line) - loc,
  82. " %s", ascii);
  83. spectral_debug("%s", hexdump_line);
  84. qdf_mem_zero(hexdump_line,
  85. sizeof(hexdump_line));
  86. loc = 0;
  87. }
  88. }
  89. qdf_assert_always(loc < sizeof(hexdump_line));
  90. loc += snprintf(&hexdump_line[loc], sizeof(hexdump_line) - loc,
  91. " %02x", pc[i]);
  92. if ((pc[i] < 0x20) || (pc[i] > 0x7e))
  93. ascii[mod] = '.';
  94. else
  95. ascii[mod] = pc[i];
  96. ascii[(mod) + 1] = '\0';
  97. }
  98. while ((i % SPECTRAL_HEXDUMP_NUM_OCTETS_PER_LINE) != 0) {
  99. qdf_assert_always(loc < sizeof(hexdump_line));
  100. loc += snprintf(&hexdump_line[loc], sizeof(hexdump_line) - loc,
  101. " ");
  102. i++;
  103. }
  104. qdf_assert_always(loc < sizeof(hexdump_line));
  105. snprintf(&hexdump_line[loc], sizeof(hexdump_line) - loc, " %s", ascii);
  106. spectral_debug("%s", hexdump_line);
  107. }
  108. /**
  109. * target_if_print_buf() - Prints given buffer for given length
  110. * @pbuf: Pointer to buffer
  111. * @len: length
  112. *
  113. * Prints given buffer for given length
  114. *
  115. * Return: void
  116. */
  117. static void
  118. target_if_print_buf(uint8_t *pbuf, int len)
  119. {
  120. int i = 0;
  121. for (i = 0; i < len; i++) {
  122. spectral_debug("%02X ", pbuf[i]);
  123. if (i % 32 == 31)
  124. spectral_debug("\n");
  125. }
  126. }
  127. int
  128. target_if_spectral_dump_fft(uint8_t *pfft, int fftlen)
  129. {
  130. int i = 0;
  131. /*
  132. * TODO : Do not delete the following print
  133. * The scripts used to validate Spectral depend on this Print
  134. */
  135. spectral_debug("SPECTRAL : FFT Length is 0x%x (%d)", fftlen, fftlen);
  136. spectral_debug("fft_data # ");
  137. for (i = 0; i < fftlen; i++)
  138. spectral_debug("%d ", pfft[i]);
  139. spectral_debug("\n");
  140. return 0;
  141. }
  142. QDF_STATUS target_if_spectral_fw_hang(struct target_if_spectral *spectral)
  143. {
  144. struct crash_inject param;
  145. struct wlan_objmgr_pdev *pdev;
  146. struct wlan_objmgr_psoc *psoc;
  147. struct target_if_psoc_spectral *psoc_spectral;
  148. if (!spectral) {
  149. spectral_err("Spectral LMAC object is null");
  150. return QDF_STATUS_E_INVAL;
  151. }
  152. pdev = spectral->pdev_obj;
  153. if (!pdev) {
  154. spectral_err("pdev is null");
  155. return QDF_STATUS_E_FAILURE;
  156. }
  157. psoc = wlan_pdev_get_psoc(pdev);
  158. if (!psoc) {
  159. spectral_err("psoc is null");
  160. return QDF_STATUS_E_FAILURE;
  161. }
  162. psoc_spectral = get_target_if_spectral_handle_from_psoc(psoc);
  163. if (!psoc_spectral) {
  164. spectral_err("spectral psoc object is null");
  165. return QDF_STATUS_E_FAILURE;
  166. }
  167. qdf_mem_set(&param, sizeof(param), 0);
  168. param.type = 1; //RECOVERY_SIM_ASSERT
  169. return psoc_spectral->wmi_ops.wmi_spectral_crash_inject(
  170. GET_WMI_HDL_FROM_PDEV(spectral->pdev_obj), &param);
  171. }
  172. #ifdef OPTIMIZED_SAMP_MESSAGE
  173. void
  174. target_if_dbg_print_samp_msg(struct spectral_samp_msg *ss_msg)
  175. {
  176. int span, det;
  177. struct samp_detector_info *det_info;
  178. struct samp_freq_span_info *span_info;
  179. spectral_dbg_line();
  180. spectral_debug("Spectral Message");
  181. spectral_dbg_line();
  182. spectral_debug("Signature : 0x%x", ss_msg->signature);
  183. spectral_debug("Freq : %u", ss_msg->pri20_freq);
  184. spectral_debug("sscan width : %d", ss_msg->sscan_bw);
  185. spectral_debug("sscan cfreq1 : %u", ss_msg->sscan_cfreq1);
  186. spectral_debug("sscan cfreq2 : %u", ss_msg->sscan_cfreq2);
  187. spectral_debug("bin power count : %d", ss_msg->bin_pwr_count);
  188. spectral_debug("Number of spans : %d", ss_msg->num_freq_spans);
  189. spectral_dbg_line();
  190. for (span = 0; span < ss_msg->num_freq_spans; span++) {
  191. span_info = &ss_msg->freq_span_info[span];
  192. spectral_debug("-------- Span ID : %d --------", span);
  193. spectral_debug("Number of detectors : %d",
  194. span_info->num_detectors);
  195. spectral_dbg_line();
  196. for (det = 0; det < span_info->num_detectors; det++) {
  197. det_info = &span_info->detector_info[det];
  198. spectral_debug("------ Detector ID : %d ------", det);
  199. spectral_dbg_line();
  200. spectral_debug("RSSI : %d", det_info->rssi);
  201. spectral_debug("Timestamp : %u",
  202. det_info->timestamp);
  203. spectral_debug("Start bin index : %d",
  204. det_info->start_bin_idx);
  205. spectral_debug("End bin index : %d",
  206. det_info->end_bin_idx);
  207. spectral_debug("Start frequency : %d",
  208. det_info->start_frequency);
  209. spectral_debug("End frequency : %d",
  210. det_info->end_frequency);
  211. spectral_dbg_line();
  212. }
  213. }
  214. }
  215. #else
  216. void
  217. target_if_dbg_print_samp_param(struct target_if_samp_msg_params *p)
  218. {
  219. spectral_debug("\nSAMP Packet : -------------------- START --------------------");
  220. spectral_debug("Freq = %d", p->freq);
  221. spectral_debug("RSSI = %d", p->rssi);
  222. spectral_debug("Bin Count = %d", p->pwr_count);
  223. spectral_debug("Timestamp = %d", p->tstamp);
  224. spectral_debug("SAMP Packet : -------------------- END -----------------------");
  225. }
  226. void
  227. target_if_dbg_print_samp_msg(struct spectral_samp_msg *ss_msg)
  228. {
  229. int i = 0;
  230. struct spectral_samp_data *p = &ss_msg->samp_data;
  231. struct spectral_classifier_params *pc = &p->classifier_params;
  232. struct interf_src_rsp *pi = &p->interf_list;
  233. spectral_dbg_line();
  234. spectral_debug("Spectral Message");
  235. spectral_dbg_line();
  236. spectral_debug("Signature : 0x%x", ss_msg->signature);
  237. spectral_debug("Freq : %d", ss_msg->freq);
  238. spectral_debug("Freq load : %d", ss_msg->freq_loading);
  239. spectral_debug("Intfnc type : %d", ss_msg->int_type);
  240. spectral_dbg_line();
  241. spectral_debug("Spectral Data info");
  242. spectral_dbg_line();
  243. spectral_debug("data length : %d", p->spectral_data_len);
  244. spectral_debug("rssi : %d", p->spectral_rssi);
  245. spectral_debug("combined rssi : %d", p->spectral_combined_rssi);
  246. spectral_debug("upper rssi : %d", p->spectral_upper_rssi);
  247. spectral_debug("lower rssi : %d", p->spectral_lower_rssi);
  248. spectral_debug("bw info : %d", p->spectral_bwinfo);
  249. spectral_debug("timestamp : %d", p->spectral_tstamp);
  250. spectral_debug("max index : %d", p->spectral_max_index);
  251. spectral_debug("max exp : %d", p->spectral_max_exp);
  252. spectral_debug("max mag : %d", p->spectral_max_mag);
  253. spectral_debug("last timstamp : %d", p->spectral_last_tstamp);
  254. spectral_debug("upper max idx : %d", p->spectral_upper_max_index);
  255. spectral_debug("lower max idx : %d", p->spectral_lower_max_index);
  256. spectral_debug("bin power count : %d", p->bin_pwr_count);
  257. spectral_dbg_line();
  258. spectral_debug("Classifier info");
  259. spectral_dbg_line();
  260. spectral_debug("20/40 Mode : %d", pc->spectral_20_40_mode);
  261. spectral_debug("dc index : %d", pc->spectral_dc_index);
  262. spectral_debug("dc in MHz : %d", pc->spectral_dc_in_mhz);
  263. spectral_debug("upper channel : %d", pc->upper_chan_in_mhz);
  264. spectral_debug("lower channel : %d", pc->lower_chan_in_mhz);
  265. spectral_dbg_line();
  266. spectral_debug("Interference info");
  267. spectral_dbg_line();
  268. spectral_debug("inter count : %d", pi->count);
  269. for (i = 0; i < pi->count; i++) {
  270. spectral_debug("inter type : %d",
  271. pi->interf[i].interf_type);
  272. spectral_debug("min freq : %d",
  273. pi->interf[i].interf_min_freq);
  274. spectral_debug("max freq : %d",
  275. pi->interf[i].interf_max_freq);
  276. }
  277. }
  278. #endif /* OPTIMIZED_SAMP_MESSAGE */
  279. uint32_t
  280. target_if_get_offset_swar_sec80(uint32_t channel_width)
  281. {
  282. uint32_t offset = 0;
  283. switch (channel_width) {
  284. case CH_WIDTH_20MHZ:
  285. offset = OFFSET_CH_WIDTH_20;
  286. break;
  287. case CH_WIDTH_40MHZ:
  288. offset = OFFSET_CH_WIDTH_40;
  289. break;
  290. case CH_WIDTH_80MHZ:
  291. offset = OFFSET_CH_WIDTH_80;
  292. break;
  293. case CH_WIDTH_160MHZ:
  294. case CH_WIDTH_80P80MHZ:
  295. offset = OFFSET_CH_WIDTH_160;
  296. break;
  297. default:
  298. offset = OFFSET_CH_WIDTH_80;
  299. break;
  300. }
  301. return offset;
  302. }
  303. /**
  304. * target_if_dump_summary_report_gen2() - Dump Spectral Summary Report for gen2
  305. * @ptlv: Pointer to Spectral Phyerr TLV
  306. * @tlvlen: length
  307. * @is_160_format: Indicates whether information provided by HW is in altered
  308. * format for 802.11ac 160/80+80 MHz support (QCA9984 onwards)
  309. *
  310. * Dump Spectral Summary Report for gen2
  311. *
  312. * Return: Success/Failure
  313. */
  314. static int
  315. target_if_dump_summary_report_gen2(struct spectral_phyerr_tlv_gen2 *ptlv,
  316. int tlvlen, bool is_160_format)
  317. {
  318. /*
  319. * For simplicity, everything is defined as uint32_t (except one).
  320. * Proper code will later use the right sizes.
  321. */
  322. /*
  323. * For easy comparison between MDK team and OS team, the MDK script
  324. * variable names have been used
  325. */
  326. uint32_t agc_mb_gain;
  327. uint32_t sscan_gidx;
  328. uint32_t agc_total_gain;
  329. uint32_t recent_rfsat;
  330. uint32_t ob_flag;
  331. uint32_t nb_mask;
  332. uint32_t peak_mag;
  333. int16_t peak_inx;
  334. uint32_t ss_summary_A = 0;
  335. uint32_t ss_summary_B = 0;
  336. uint32_t ss_summary_C = 0;
  337. uint32_t ss_summary_D = 0;
  338. uint32_t ss_summary_E = 0;
  339. struct spectral_phyerr_hdr_gen2 *phdr =
  340. (struct spectral_phyerr_hdr_gen2 *)(
  341. (uint8_t *)ptlv +
  342. sizeof(struct spectral_phyerr_tlv_gen2));
  343. spectral_debug("SPECTRAL : SPECTRAL SUMMARY REPORT");
  344. if (is_160_format) {
  345. if (tlvlen != 20) {
  346. spectral_err("Unexpected TLV length %d for Spectral Summary Report! Hexdump follows",
  347. tlvlen);
  348. target_if_print_buf((uint8_t *)ptlv, tlvlen + 4);
  349. return -EPERM;
  350. }
  351. /* Doing copy as the contents may not be aligned */
  352. qdf_mem_copy(&ss_summary_A, (uint8_t *)phdr, sizeof(int));
  353. qdf_mem_copy(&ss_summary_B,
  354. (uint8_t *)((uint8_t *)phdr + sizeof(int)),
  355. sizeof(int));
  356. qdf_mem_copy(&ss_summary_C,
  357. (uint8_t *)((uint8_t *)phdr + 2 * sizeof(int)),
  358. sizeof(int));
  359. qdf_mem_copy(&ss_summary_D,
  360. (uint8_t *)((uint8_t *)phdr + 3 * sizeof(int)),
  361. sizeof(int));
  362. qdf_mem_copy(&ss_summary_E,
  363. (uint8_t *)((uint8_t *)phdr + 4 * sizeof(int)),
  364. sizeof(int));
  365. /*
  366. * The following is adapted from MDK scripts for
  367. * easier comparability
  368. */
  369. recent_rfsat = ((ss_summary_A >> 8) & 0x1);
  370. sscan_gidx = (ss_summary_A & 0xff);
  371. spectral_debug("sscan_gidx=%d, is_recent_rfsat=%d",
  372. sscan_gidx, recent_rfsat);
  373. /* First segment */
  374. agc_mb_gain = ((ss_summary_B >> 10) & 0x7f);
  375. agc_total_gain = (ss_summary_B & 0x3ff);
  376. nb_mask = ((ss_summary_C >> 22) & 0xff);
  377. ob_flag = ((ss_summary_B >> 17) & 0x1);
  378. peak_inx = (ss_summary_C & 0xfff);
  379. if (peak_inx > 2047)
  380. peak_inx = peak_inx - 4096;
  381. peak_mag = ((ss_summary_C >> 12) & 0x3ff);
  382. spectral_debug("agc_total_gain_segid0 = 0x%.2x, agc_mb_gain_segid0=%d",
  383. agc_total_gain, agc_mb_gain);
  384. spectral_debug("nb_mask_segid0 = 0x%.2x, ob_flag_segid0=%d, peak_index_segid0=%d, peak_mag_segid0=%d",
  385. nb_mask, ob_flag, peak_inx, peak_mag);
  386. /* Second segment */
  387. agc_mb_gain = ((ss_summary_D >> 10) & 0x7f);
  388. agc_total_gain = (ss_summary_D & 0x3ff);
  389. nb_mask = ((ss_summary_E >> 22) & 0xff);
  390. ob_flag = ((ss_summary_D >> 17) & 0x1);
  391. peak_inx = (ss_summary_E & 0xfff);
  392. if (peak_inx > 2047)
  393. peak_inx = peak_inx - 4096;
  394. peak_mag = ((ss_summary_E >> 12) & 0x3ff);
  395. spectral_debug("agc_total_gain_segid1 = 0x%.2x, agc_mb_gain_segid1=%d",
  396. agc_total_gain, agc_mb_gain);
  397. spectral_debug("nb_mask_segid1 = 0x%.2x, ob_flag_segid1=%d, peak_index_segid1=%d, peak_mag_segid1=%d",
  398. nb_mask, ob_flag, peak_inx, peak_mag);
  399. } else {
  400. if (tlvlen != 8) {
  401. spectral_err("Unexpected TLV length %d for Spectral Summary Report! Hexdump follows",
  402. tlvlen);
  403. target_if_print_buf((uint8_t *)ptlv, tlvlen + 4);
  404. return -EPERM;
  405. }
  406. /* Doing copy as the contents may not be aligned */
  407. qdf_mem_copy(&ss_summary_A, (uint8_t *)phdr, sizeof(int));
  408. qdf_mem_copy(&ss_summary_B,
  409. (uint8_t *)((uint8_t *)phdr + sizeof(int)),
  410. sizeof(int));
  411. nb_mask = ((ss_summary_B >> 22) & 0xff);
  412. ob_flag = ((ss_summary_B >> 30) & 0x1);
  413. peak_inx = (ss_summary_B & 0xfff);
  414. if (peak_inx > 2047)
  415. peak_inx = peak_inx - 4096;
  416. peak_mag = ((ss_summary_B >> 12) & 0x3ff);
  417. agc_mb_gain = ((ss_summary_A >> 24) & 0x7f);
  418. agc_total_gain = (ss_summary_A & 0x3ff);
  419. sscan_gidx = ((ss_summary_A >> 16) & 0xff);
  420. recent_rfsat = ((ss_summary_B >> 31) & 0x1);
  421. spectral_debug("nb_mask = 0x%.2x, ob_flag=%d, peak_index=%d, peak_mag=%d, agc_mb_gain=%d, agc_total_gain=%d, sscan_gidx=%d, recent_rfsat=%d",
  422. nb_mask, ob_flag, peak_inx, peak_mag,
  423. agc_mb_gain, agc_total_gain, sscan_gidx,
  424. recent_rfsat);
  425. }
  426. return 0;
  427. }
  428. /**
  429. * target_if_process_sfft_report_gen2() - Process Search FFT Report
  430. * @ptlv: Pointer to Spectral Phyerr TLV
  431. * @tlvlen: length
  432. * @p_fft_info: Pointer to search fft info
  433. *
  434. * Dump Spectral Summary Report for gen2
  435. *
  436. * Return: Success/Failure
  437. */
  438. static int
  439. target_if_process_sfft_report_gen2(
  440. struct spectral_phyerr_tlv_gen2 *ptlv,
  441. int tlvlen,
  442. struct spectral_search_fft_info_gen2 *p_fft_info)
  443. {
  444. /*
  445. * For simplicity, everything is defined as uint32_t (except one).
  446. * Proper code will later use the right sizes.
  447. */
  448. /*
  449. * For easy comparison between MDK team and OS team, the MDK script
  450. * variable names have been used
  451. */
  452. uint32_t relpwr_db;
  453. uint32_t num_str_bins_ib;
  454. uint32_t base_pwr;
  455. uint32_t total_gain_info;
  456. uint32_t fft_chn_idx;
  457. int16_t peak_inx;
  458. uint32_t avgpwr_db;
  459. uint32_t peak_mag;
  460. uint32_t fft_summary_A = 0;
  461. uint32_t fft_summary_B = 0;
  462. uint8_t *tmp = (uint8_t *)ptlv;
  463. struct spectral_phyerr_hdr_gen2 *phdr =
  464. (struct spectral_phyerr_hdr_gen2 *)(
  465. tmp +
  466. sizeof(struct spectral_phyerr_tlv_gen2));
  467. /* Relook this */
  468. if (tlvlen < 8) {
  469. spectral_err("Unexpected TLV length %d for Spectral Summary Report! Hexdump follows",
  470. tlvlen);
  471. target_if_print_buf((uint8_t *)ptlv, tlvlen + 4);
  472. return -EPERM;
  473. }
  474. /* Doing copy as the contents may not be aligned */
  475. qdf_mem_copy(&fft_summary_A, (uint8_t *)phdr, sizeof(int));
  476. qdf_mem_copy(&fft_summary_B,
  477. (uint8_t *)((uint8_t *)phdr + sizeof(int)),
  478. sizeof(int));
  479. relpwr_db = ((fft_summary_B >> 26) & 0x3f);
  480. num_str_bins_ib = fft_summary_B & 0xff;
  481. base_pwr = ((fft_summary_A >> 14) & 0x1ff);
  482. total_gain_info = ((fft_summary_A >> 23) & 0x1ff);
  483. fft_chn_idx = ((fft_summary_A >> 12) & 0x3);
  484. peak_inx = fft_summary_A & 0xfff;
  485. if (peak_inx > 2047)
  486. peak_inx = peak_inx - 4096;
  487. avgpwr_db = ((fft_summary_B >> 18) & 0xff);
  488. peak_mag = ((fft_summary_B >> 8) & 0x3ff);
  489. /* Populate the Search FFT Info */
  490. if (p_fft_info) {
  491. p_fft_info->relpwr_db = relpwr_db;
  492. p_fft_info->num_str_bins_ib = num_str_bins_ib;
  493. p_fft_info->base_pwr = base_pwr;
  494. p_fft_info->total_gain_info = total_gain_info;
  495. p_fft_info->fft_chn_idx = fft_chn_idx;
  496. p_fft_info->peak_inx = peak_inx;
  497. p_fft_info->avgpwr_db = avgpwr_db;
  498. p_fft_info->peak_mag = peak_mag;
  499. }
  500. return 0;
  501. }
  502. /**
  503. * target_if_dump_adc_report_gen2() - Dump ADC Reports for gen2
  504. * @ptlv: Pointer to Spectral Phyerr TLV
  505. * @tlvlen: length
  506. *
  507. * Dump ADC Reports for gen2
  508. *
  509. * Return: Success/Failure
  510. */
  511. static int
  512. target_if_dump_adc_report_gen2(
  513. struct spectral_phyerr_tlv_gen2 *ptlv, int tlvlen)
  514. {
  515. int i;
  516. uint32_t *pdata;
  517. uint32_t data;
  518. /*
  519. * For simplicity, everything is defined as uint32_t (except one).
  520. * Proper code will later use the right sizes.
  521. */
  522. uint32_t samp_fmt;
  523. uint32_t chn_idx;
  524. uint32_t recent_rfsat;
  525. uint32_t agc_mb_gain;
  526. uint32_t agc_total_gain;
  527. uint32_t adc_summary = 0;
  528. uint8_t *ptmp = (uint8_t *)ptlv;
  529. spectral_debug("SPECTRAL : ADC REPORT");
  530. /* Relook this */
  531. if (tlvlen < 4) {
  532. spectral_err("Unexpected TLV length %d for ADC Report! Hexdump follows",
  533. tlvlen);
  534. target_if_print_buf((uint8_t *)ptlv, tlvlen + 4);
  535. return -EPERM;
  536. }
  537. qdf_mem_copy(&adc_summary, (uint8_t *)(ptlv + 4), sizeof(int));
  538. samp_fmt = ((adc_summary >> 28) & 0x1);
  539. chn_idx = ((adc_summary >> 24) & 0x3);
  540. recent_rfsat = ((adc_summary >> 23) & 0x1);
  541. agc_mb_gain = ((adc_summary >> 16) & 0x7f);
  542. agc_total_gain = adc_summary & 0x3ff;
  543. spectral_debug("samp_fmt= %u, chn_idx= %u, recent_rfsat= %u, agc_mb_gain=%u agc_total_gain=%u",
  544. samp_fmt, chn_idx, recent_rfsat, agc_mb_gain,
  545. agc_total_gain);
  546. for (i = 0; i < (tlvlen / 4); i++) {
  547. pdata = (uint32_t *)(ptmp + 4 + i * 4);
  548. data = *pdata;
  549. /* Interpreting capture format 1 */
  550. if (1) {
  551. uint8_t i1;
  552. uint8_t q1;
  553. uint8_t i2;
  554. uint8_t q2;
  555. int8_t si1;
  556. int8_t sq1;
  557. int8_t si2;
  558. int8_t sq2;
  559. i1 = data & 0xff;
  560. q1 = (data >> 8) & 0xff;
  561. i2 = (data >> 16) & 0xff;
  562. q2 = (data >> 24) & 0xff;
  563. if (i1 > 127)
  564. si1 = i1 - 256;
  565. else
  566. si1 = i1;
  567. if (q1 > 127)
  568. sq1 = q1 - 256;
  569. else
  570. sq1 = q1;
  571. if (i2 > 127)
  572. si2 = i2 - 256;
  573. else
  574. si2 = i2;
  575. if (q2 > 127)
  576. sq2 = q2 - 256;
  577. else
  578. sq2 = q2;
  579. spectral_debug("SPECTRAL ADC : Interpreting capture format 1");
  580. spectral_debug("adc_data_format_1 # %d %d %d",
  581. 2 * i, si1, sq1);
  582. spectral_debug("adc_data_format_1 # %d %d %d",
  583. 2 * i + 1, si2, sq2);
  584. }
  585. /* Interpreting capture format 0 */
  586. if (1) {
  587. uint16_t i1;
  588. uint16_t q1;
  589. int16_t si1;
  590. int16_t sq1;
  591. i1 = data & 0xffff;
  592. q1 = (data >> 16) & 0xffff;
  593. if (i1 > 32767)
  594. si1 = i1 - 65536;
  595. else
  596. si1 = i1;
  597. if (q1 > 32767)
  598. sq1 = q1 - 65536;
  599. else
  600. sq1 = q1;
  601. spectral_debug("SPECTRAL ADC : Interpreting capture format 0");
  602. spectral_debug("adc_data_format_2 # %d %d %d",
  603. i, si1, sq1);
  604. }
  605. }
  606. spectral_debug("\n");
  607. return 0;
  608. }
  609. /**
  610. * target_if_dump_sfft_report_gen2() - Process Search FFT Report for gen2
  611. * @ptlv: Pointer to Spectral Phyerr TLV
  612. * @tlvlen: length
  613. * @is_160_format: Indicates 160 format
  614. *
  615. * Process Search FFT Report for gen2
  616. *
  617. * Return: Success/Failure
  618. */
  619. static int
  620. target_if_dump_sfft_report_gen2(struct spectral_phyerr_tlv_gen2 *ptlv,
  621. int tlvlen, bool is_160_format)
  622. {
  623. int i;
  624. uint32_t fft_mag;
  625. /*
  626. * For simplicity, everything is defined as uint32_t (except one).
  627. * Proper code will later use the right sizes.
  628. */
  629. /*
  630. * For easy comparison between MDK team and OS team, the MDK script
  631. * variable names have been used
  632. */
  633. uint32_t relpwr_db;
  634. uint32_t num_str_bins_ib;
  635. uint32_t base_pwr;
  636. uint32_t total_gain_info;
  637. uint32_t fft_chn_idx;
  638. int16_t peak_inx;
  639. uint32_t avgpwr_db;
  640. uint32_t peak_mag;
  641. uint8_t segid;
  642. uint32_t fft_summary_A = 0;
  643. uint32_t fft_summary_B = 0;
  644. uint32_t fft_summary_C = 0;
  645. uint8_t *tmp = (uint8_t *)ptlv;
  646. struct spectral_phyerr_hdr_gen2 *phdr =
  647. (struct spectral_phyerr_hdr_gen2 *)(
  648. tmp +
  649. sizeof(struct spectral_phyerr_tlv_gen2));
  650. uint32_t segid_skiplen = 0;
  651. if (is_160_format)
  652. segid_skiplen = sizeof(SPECTRAL_SEGID_INFO);
  653. spectral_debug("SPECTRAL : SEARCH FFT REPORT");
  654. /* Relook this */
  655. if (tlvlen < (8 + segid_skiplen)) {
  656. spectral_err("Unexpected TLV length %d for Spectral Summary Report! Hexdump follows",
  657. tlvlen);
  658. target_if_print_buf((uint8_t *)ptlv, tlvlen + 4);
  659. return -EPERM;
  660. }
  661. /* Doing copy as the contents may not be aligned */
  662. qdf_mem_copy(&fft_summary_A, (uint8_t *)phdr, sizeof(int));
  663. qdf_mem_copy(&fft_summary_B,
  664. (uint8_t *)((uint8_t *)phdr + sizeof(int)),
  665. sizeof(int));
  666. if (is_160_format)
  667. qdf_mem_copy(&fft_summary_C,
  668. (uint8_t *)((uint8_t *)phdr + 2 * sizeof(int)),
  669. sizeof(int));
  670. relpwr_db = ((fft_summary_B >> 26) & 0x3f);
  671. num_str_bins_ib = fft_summary_B & 0xff;
  672. base_pwr = ((fft_summary_A >> 14) & 0x1ff);
  673. total_gain_info = ((fft_summary_A >> 23) & 0x1ff);
  674. fft_chn_idx = ((fft_summary_A >> 12) & 0x3);
  675. peak_inx = fft_summary_A & 0xfff;
  676. if (peak_inx > 2047)
  677. peak_inx = peak_inx - 4096;
  678. avgpwr_db = ((fft_summary_B >> 18) & 0xff);
  679. peak_mag = ((fft_summary_B >> 8) & 0x3ff);
  680. spectral_debug("Header A = 0x%x Header B = 0x%x",
  681. phdr->hdr_a, phdr->hdr_b);
  682. spectral_debug("Base Power= 0x%x, Total Gain= %d, relpwr_db=%d, num_str_bins_ib=%d fft_chn_idx=%d peak_inx=%d avgpwr_db=%d peak_mag=%d",
  683. base_pwr, total_gain_info, relpwr_db, num_str_bins_ib,
  684. fft_chn_idx, peak_inx, avgpwr_db, peak_mag);
  685. if (is_160_format) {
  686. segid = fft_summary_C & 0x1;
  687. spectral_debug("Segment ID: %hhu", segid);
  688. }
  689. spectral_debug("FFT bins:");
  690. for (i = 0; i < (tlvlen - 8 - segid_skiplen); i++) {
  691. fft_mag = ((uint8_t *)ptlv)[12 + segid_skiplen + i];
  692. spectral_debug("%d %d, ", i, fft_mag);
  693. }
  694. spectral_debug("\n");
  695. return 0;
  696. }
  697. #ifndef OPTIMIZED_SAMP_MESSAGE
  698. #ifdef SPECTRAL_DEBUG_SAMP_MSG
  699. /**
  700. * target_if_spectral_log_SAMP_param() - Log SAMP parameters
  701. * @params: Reference to target_if_samp_msg_params
  702. *
  703. * API to log spectral SAMP message parameters
  704. *
  705. * Return: None
  706. */
  707. static void
  708. target_if_spectral_log_SAMP_param(struct target_if_samp_msg_params *params)
  709. {
  710. target_if_dbg_print_samp_param(params);
  711. }
  712. #else
  713. static void
  714. target_if_spectral_log_SAMP_param(struct target_if_samp_msg_params *params)
  715. {
  716. }
  717. #endif
  718. #endif /* OPTIMIZED_SAMP_MESSAGE */
  719. #ifdef OPTIMIZED_SAMP_MESSAGE
  720. /**
  721. * target_if_spectral_unify_cfreq_format() - Unify the cfreq representations.
  722. * @spectral: Pointer to target_if spectral internal structure
  723. * @cfreq1: cfreq1 value received in the Spectral report
  724. * @cfreq2: cfreq2 value received in the Spectral report
  725. * @pri20_freq: Primary 20MHz frequency of operation
  726. * @ch_width: channel width. If the center frequencies are of operating channel,
  727. * pass the operating channel width, else pass the sscan channel width.
  728. * @smode: Spectral scan mode
  729. *
  730. * This API converts the cfreq1 and cfreq2 representations as follows.
  731. * For a contiguous channel, cfreq1 will represent the center of the entire
  732. * span and cfreq2 will be 0. For a discontiguous channel like 80p80, cfreq1
  733. * will represent the center of primary segment whereas cfreq2 will
  734. * represent the center of secondary segment.
  735. *
  736. * Return: Success/Failure
  737. */
  738. static QDF_STATUS
  739. target_if_spectral_unify_cfreq_format(struct target_if_spectral *spectral,
  740. uint32_t *cfreq1, uint32_t *cfreq2,
  741. uint32_t pri20_freq,
  742. enum phy_ch_width ch_width,
  743. enum spectral_scan_mode smode)
  744. {
  745. uint32_t reported_cfreq1, reported_cfreq2;
  746. struct wlan_objmgr_psoc *psoc;
  747. if (!spectral) {
  748. spectral_err_rl("Spectral LMAC object is null");
  749. return QDF_STATUS_E_NULL_VALUE;
  750. }
  751. if (!spectral->pdev_obj) {
  752. spectral_err_rl("Spectral PDEV is null");
  753. return QDF_STATUS_E_NULL_VALUE;
  754. }
  755. psoc = wlan_pdev_get_psoc(spectral->pdev_obj);
  756. if (!psoc) {
  757. spectral_err_rl("psoc is null");
  758. return QDF_STATUS_E_NULL_VALUE;
  759. }
  760. reported_cfreq1 = *cfreq1;
  761. reported_cfreq2 = *cfreq2;
  762. if (ch_width == CH_WIDTH_160MHZ &&
  763. spectral->rparams.fragmentation_160[smode]) {
  764. /* cfreq should be 0 for 160MHz as it is contiguous */
  765. *cfreq2 = 0;
  766. /**
  767. * For gen3 chipsets that use fragmentation, cfreq1 is center of
  768. * pri80, and cfreq2 is center of sec80. Averaging them gives
  769. * the center of the 160MHz span.
  770. * Whereas gen2 chipsets report the center of the 160MHz span in
  771. * cfreq2 itself.
  772. */
  773. if (spectral->spectral_gen == SPECTRAL_GEN3)
  774. *cfreq1 = (reported_cfreq1 + reported_cfreq2) >> 1;
  775. else
  776. *cfreq1 = reported_cfreq2;
  777. } else if (ch_width == CH_WIDTH_80P80MHZ &&
  778. wlan_psoc_nif_fw_ext_cap_get(
  779. psoc, WLAN_SOC_RESTRICTED_80P80_SUPPORT)) {
  780. /* In restricted 80p80 case */
  781. const struct bonded_channel_freq
  782. *bonded_chan_ptr = NULL;
  783. enum channel_state state;
  784. /* Get the 80MHz channel containing the pri20 freq */
  785. state =
  786. wlan_reg_get_5g_bonded_channel_and_state_for_pwrmode
  787. (spectral->pdev_obj, pri20_freq, CH_WIDTH_80MHZ,
  788. &bonded_chan_ptr, REG_CURRENT_PWR_MODE,
  789. NO_SCHANS_PUNC);
  790. if (state == CHANNEL_STATE_DISABLE ||
  791. state == CHANNEL_STATE_INVALID) {
  792. spectral_err_rl("Channel state is disable or invalid");
  793. return QDF_STATUS_E_FAILURE;
  794. }
  795. if (!bonded_chan_ptr) {
  796. spectral_err_rl("Bonded channel is not found");
  797. return QDF_STATUS_E_FAILURE;
  798. }
  799. /* cfreq1 is the center of the pri80 segment */
  800. *cfreq1 = (bonded_chan_ptr->start_freq +
  801. bonded_chan_ptr->end_freq) >> 1;
  802. /**
  803. * cfreq2 is 85MHz away from cfreq1. Whether it is
  804. * higher or lower depends on pri20_freq's relationship
  805. * with the reported center frequency.
  806. */
  807. if (pri20_freq < reported_cfreq1)
  808. *cfreq2 = *cfreq1 + FREQ_OFFSET_85MHZ;
  809. else
  810. *cfreq2 = *cfreq1 - FREQ_OFFSET_85MHZ;
  811. } else {
  812. /* All other cases are reporting the cfreq properly */
  813. *cfreq1 = reported_cfreq1;
  814. *cfreq2 = reported_cfreq2;
  815. }
  816. return QDF_STATUS_SUCCESS;
  817. }
  818. /**
  819. * target_if_populate_det_start_end_freqs() - Populate the start and end
  820. * frequencies, on per-detector level.
  821. * @spectral: Pointer to target_if spectral internal structure
  822. * @smode: Spectral scan mode
  823. *
  824. * Populate the start and end frequencies, on per-detector level.
  825. *
  826. * Return: Success/Failure
  827. */
  828. static QDF_STATUS
  829. target_if_populate_det_start_end_freqs(struct target_if_spectral *spectral,
  830. enum spectral_scan_mode smode)
  831. {
  832. struct per_session_report_info *rpt_info;
  833. struct per_session_det_map *det_map;
  834. struct per_session_dest_det_info *dest_det_info;
  835. enum phy_ch_width ch_width;
  836. struct sscan_detector_list *detector_list;
  837. bool is_fragmentation_160;
  838. uint8_t det;
  839. uint32_t cfreq;
  840. uint32_t start_end_freq_arr[2];
  841. if (!spectral) {
  842. spectral_err_rl("Spectral LMAC object is null");
  843. return QDF_STATUS_E_NULL_VALUE;
  844. }
  845. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  846. spectral_err_rl("Invalid Spectral mode");
  847. return QDF_STATUS_E_FAILURE;
  848. }
  849. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  850. ch_width = spectral->report_info[smode].sscan_bw;
  851. is_fragmentation_160 = spectral->rparams.fragmentation_160[smode];
  852. rpt_info = &spectral->report_info[smode];
  853. qdf_spin_lock_bh(&spectral->detector_list_lock);
  854. detector_list = &spectral->detector_list[smode][ch_width];
  855. for (det = 0; det < detector_list->num_detectors; det++) {
  856. qdf_spin_lock_bh(&spectral->session_det_map_lock);
  857. det_map = &spectral->det_map
  858. [detector_list->detectors[det]];
  859. dest_det_info = &det_map->dest_det_info[0];
  860. switch (det) {
  861. case 0:
  862. if (ch_width == CH_WIDTH_160MHZ &&
  863. is_fragmentation_160) {
  864. if (rpt_info->pri20_freq <
  865. rpt_info->sscan_cfreq1)
  866. cfreq = rpt_info->sscan_cfreq1 -
  867. FREQ_OFFSET_40MHZ;
  868. else
  869. cfreq = rpt_info->sscan_cfreq1 +
  870. FREQ_OFFSET_40MHZ;
  871. } else
  872. cfreq = rpt_info->sscan_cfreq1;
  873. break;
  874. case 1:
  875. if (ch_width == CH_WIDTH_160MHZ &&
  876. is_fragmentation_160) {
  877. if (rpt_info->pri20_freq <
  878. rpt_info->sscan_cfreq1)
  879. cfreq = rpt_info->sscan_cfreq1 +
  880. FREQ_OFFSET_40MHZ;
  881. else
  882. cfreq = rpt_info->sscan_cfreq1 -
  883. FREQ_OFFSET_40MHZ;
  884. } else
  885. cfreq = rpt_info->sscan_cfreq2;
  886. break;
  887. default:
  888. qdf_spin_unlock_bh(&spectral->session_det_map_lock);
  889. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  890. qdf_spin_unlock_bh(
  891. &spectral->session_report_info_lock);
  892. return QDF_STATUS_E_FAILURE;
  893. }
  894. /* Set start and end frequencies */
  895. target_if_spectral_set_start_end_freq(cfreq,
  896. ch_width,
  897. is_fragmentation_160,
  898. start_end_freq_arr);
  899. dest_det_info->start_freq = start_end_freq_arr[0];
  900. dest_det_info->end_freq = start_end_freq_arr[1];
  901. qdf_spin_unlock_bh(&spectral->session_det_map_lock);
  902. }
  903. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  904. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  905. return QDF_STATUS_SUCCESS;
  906. }
  907. QDF_STATUS
  908. target_if_populate_fft_bins_info(struct target_if_spectral *spectral,
  909. enum spectral_scan_mode smode)
  910. {
  911. struct per_session_det_map *det_map;
  912. struct per_session_dest_det_info *dest_det_info;
  913. enum phy_ch_width ch_width;
  914. struct sscan_detector_list *detector_list;
  915. bool is_fragmentation_160;
  916. uint8_t spectral_fft_size;
  917. uint8_t rpt_mode;
  918. uint32_t num_fft_bins;
  919. uint16_t start_bin;
  920. uint8_t det;
  921. if (!spectral) {
  922. spectral_err_rl("Spectral LMAC object is null");
  923. return QDF_STATUS_E_NULL_VALUE;
  924. }
  925. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  926. spectral_err_rl("Invalid Spectral mode");
  927. return QDF_STATUS_E_FAILURE;
  928. }
  929. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  930. ch_width = spectral->report_info[smode].sscan_bw;
  931. is_fragmentation_160 = spectral->rparams.fragmentation_160[smode];
  932. spectral_fft_size = spectral->params[smode].ss_fft_size;
  933. rpt_mode = spectral->params[smode].ss_rpt_mode;
  934. num_fft_bins =
  935. target_if_spectral_get_num_fft_bins(spectral_fft_size,
  936. rpt_mode);
  937. if (num_fft_bins < 0) {
  938. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  939. spectral_err_rl("Invalid number of FFT bins %d",
  940. num_fft_bins);
  941. return QDF_STATUS_E_FAILURE;
  942. }
  943. qdf_spin_lock_bh(&spectral->detector_list_lock);
  944. detector_list = &spectral->detector_list[smode][ch_width];
  945. for (det = 0; det < detector_list->num_detectors; det++) {
  946. uint16_t lb_extrabins_offset = 0;
  947. qdf_spin_lock_bh(&spectral->session_det_map_lock);
  948. det_map = &spectral->det_map
  949. [detector_list->detectors[det]];
  950. dest_det_info = &det_map->dest_det_info[0];
  951. dest_det_info->lb_extrabins_num = spectral->lb_edge_extrabins;
  952. dest_det_info->rb_extrabins_num = spectral->rb_edge_extrabins;
  953. switch (det) {
  954. case 0:
  955. if (ch_width == CH_WIDTH_160MHZ &&
  956. is_fragmentation_160 &&
  957. spectral->report_info[smode].pri20_freq >
  958. spectral->report_info[smode].sscan_cfreq1) {
  959. start_bin = num_fft_bins;
  960. lb_extrabins_offset =
  961. dest_det_info->lb_extrabins_num +
  962. dest_det_info->rb_extrabins_num;
  963. } else {
  964. start_bin = 0;
  965. }
  966. break;
  967. case 1:
  968. if (ch_width == CH_WIDTH_160MHZ &&
  969. is_fragmentation_160 &&
  970. spectral->report_info[smode].pri20_freq >
  971. spectral->report_info[smode].sscan_cfreq1)
  972. start_bin = 0;
  973. else {
  974. start_bin = num_fft_bins;
  975. lb_extrabins_offset =
  976. dest_det_info->lb_extrabins_num +
  977. dest_det_info->rb_extrabins_num;
  978. }
  979. break;
  980. default:
  981. qdf_spin_unlock_bh(&spectral->session_det_map_lock);
  982. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  983. qdf_spin_unlock_bh(
  984. &spectral->session_report_info_lock);
  985. return QDF_STATUS_E_FAILURE;
  986. }
  987. dest_det_info->dest_start_bin_idx = start_bin;
  988. dest_det_info->dest_end_bin_idx =
  989. dest_det_info->dest_start_bin_idx;
  990. if (num_fft_bins > 0)
  991. dest_det_info->dest_end_bin_idx += (num_fft_bins - 1);
  992. if (dest_det_info->lb_extrabins_num) {
  993. if (is_ch_width_160_or_80p80(ch_width)) {
  994. dest_det_info->lb_extrabins_start_idx =
  995. 2 * num_fft_bins +
  996. lb_extrabins_offset;
  997. } else {
  998. dest_det_info->lb_extrabins_start_idx =
  999. num_fft_bins;
  1000. }
  1001. }
  1002. if (dest_det_info->rb_extrabins_num)
  1003. dest_det_info->rb_extrabins_start_idx =
  1004. dest_det_info->lb_extrabins_start_idx +
  1005. dest_det_info->lb_extrabins_num;
  1006. dest_det_info->src_start_bin_idx = 0;
  1007. qdf_spin_unlock_bh(&spectral->session_det_map_lock);
  1008. }
  1009. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  1010. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  1011. return QDF_STATUS_SUCCESS;
  1012. }
  1013. /**
  1014. * target_if_update_session_info_from_report_ctx() - Update per-session
  1015. * information from the consume report context. This includes populating start
  1016. * and end bin indices, and set the start and end frequency per-detector.
  1017. * @spectral: Pointer to target_if spectral internal structure
  1018. * @fft_bin_size: Size of 1 FFT bin (in bytes)
  1019. * @cfreq1: Center frequency of Detector 1
  1020. * @cfreq2: Center frequency of Detector 2
  1021. * @smode: Spectral scan mode
  1022. *
  1023. * Update per-session information from the consume report context.
  1024. *
  1025. * Return: Success/Failure
  1026. */
  1027. static QDF_STATUS
  1028. target_if_update_session_info_from_report_ctx(
  1029. struct target_if_spectral *spectral,
  1030. uint8_t fft_bin_size,
  1031. uint32_t cfreq1, uint32_t cfreq2,
  1032. enum spectral_scan_mode smode)
  1033. {
  1034. struct target_if_spectral_ops *p_sops;
  1035. struct per_session_report_info *rpt_info;
  1036. struct per_session_det_map *det_map;
  1037. struct per_session_dest_det_info *dest_det_info;
  1038. enum phy_ch_width ch_width;
  1039. struct wlan_objmgr_psoc *psoc;
  1040. bool is_fragmentation_160;
  1041. uint32_t start_end_freq_arr[2];
  1042. QDF_STATUS ret;
  1043. bool is_session_info_expected;
  1044. if (!spectral) {
  1045. spectral_err_rl("Spectral LMAC object is null");
  1046. return QDF_STATUS_E_NULL_VALUE;
  1047. }
  1048. ret = spectral_is_session_info_expected_from_target(
  1049. spectral->pdev_obj,
  1050. &is_session_info_expected);
  1051. if (QDF_IS_STATUS_ERROR(ret)) {
  1052. spectral_err_rl("Failed to check if session info is expected");
  1053. return ret;
  1054. }
  1055. /* If FW sends this information, use it, no need to get it from here */
  1056. if (is_session_info_expected)
  1057. return QDF_STATUS_SUCCESS;
  1058. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  1059. spectral_err_rl("Invalid Spectral mode");
  1060. return QDF_STATUS_E_FAILURE;
  1061. }
  1062. if (!spectral->pdev_obj) {
  1063. spectral_err_rl("Spectral PDEV is null");
  1064. return QDF_STATUS_E_NULL_VALUE;
  1065. }
  1066. psoc = wlan_pdev_get_psoc(spectral->pdev_obj);
  1067. if (!psoc) {
  1068. spectral_err_rl("psoc is null");
  1069. return QDF_STATUS_E_NULL_VALUE;
  1070. }
  1071. p_sops = GET_TARGET_IF_SPECTRAL_OPS(spectral);
  1072. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  1073. rpt_info = &spectral->report_info[smode];
  1074. ch_width = rpt_info->sscan_bw;
  1075. is_fragmentation_160 = spectral->rparams.fragmentation_160[smode];
  1076. rpt_info->pri20_freq = p_sops->get_current_channel(spectral, smode);
  1077. rpt_info->cfreq1 = cfreq1;
  1078. rpt_info->cfreq2 = cfreq2;
  1079. if (spectral_debug_level & DEBUG_SPECTRAL4)
  1080. spectral_debug("Before conversion: cfreq1: %u cfreq2: %u",
  1081. rpt_info->cfreq1, rpt_info->cfreq2);
  1082. ret = target_if_spectral_unify_cfreq_format(
  1083. spectral, &rpt_info->cfreq1, &rpt_info->cfreq2,
  1084. rpt_info->pri20_freq, rpt_info->operating_bw, smode);
  1085. if (QDF_IS_STATUS_ERROR(ret)) {
  1086. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  1087. spectral_err_rl("Unable to unify cfreq1/cfreq2");
  1088. return QDF_STATUS_E_FAILURE;
  1089. }
  1090. if (spectral_debug_level & DEBUG_SPECTRAL4)
  1091. spectral_debug("After conversion: cfreq1: %d cfreq2: %d",
  1092. rpt_info->cfreq1, rpt_info->cfreq2);
  1093. /* For Agile mode, sscan_cfreq1 and sscan_cfreq2 are populated
  1094. * during Spectral start scan
  1095. */
  1096. if (smode == SPECTRAL_SCAN_MODE_NORMAL) {
  1097. rpt_info->sscan_cfreq1 = rpt_info->cfreq1;
  1098. rpt_info->sscan_cfreq2 = rpt_info->cfreq2;
  1099. }
  1100. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  1101. if (ch_width == CH_WIDTH_80P80MHZ && wlan_psoc_nif_fw_ext_cap_get(
  1102. psoc, WLAN_SOC_RESTRICTED_80P80_SUPPORT)) {
  1103. /* Restricted 80p80 */
  1104. struct spectral_fft_bin_markers_160_165mhz *marker;
  1105. struct sscan_detector_list *detector_list;
  1106. marker = &spectral->rparams.marker[smode];
  1107. if (!marker->is_valid)
  1108. return QDF_STATUS_E_FAILURE;
  1109. /**
  1110. * Restricted 80p80 on Pine has only 1 detector for
  1111. * normal/agile spectral scan. So, detector_list will
  1112. * have only one detector
  1113. */
  1114. qdf_spin_lock_bh(&spectral->detector_list_lock);
  1115. detector_list = &spectral->detector_list[smode][ch_width];
  1116. qdf_spin_lock_bh(&spectral->session_det_map_lock);
  1117. det_map = &spectral->det_map[detector_list->detectors[0]];
  1118. dest_det_info = &det_map->dest_det_info[0];
  1119. dest_det_info->dest_start_bin_idx = marker->start_pri80;
  1120. dest_det_info->dest_end_bin_idx =
  1121. dest_det_info->dest_start_bin_idx +
  1122. marker->num_pri80 - 1;
  1123. dest_det_info->src_start_bin_idx = marker->start_pri80 *
  1124. fft_bin_size;
  1125. /* Set start and end frequencies */
  1126. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  1127. target_if_spectral_set_start_end_freq(rpt_info->sscan_cfreq1,
  1128. ch_width,
  1129. is_fragmentation_160,
  1130. start_end_freq_arr);
  1131. dest_det_info->start_freq = start_end_freq_arr[0];
  1132. dest_det_info->end_freq = start_end_freq_arr[1];
  1133. dest_det_info = &det_map->dest_det_info[1];
  1134. dest_det_info->dest_start_bin_idx = marker->start_sec80;
  1135. dest_det_info->dest_end_bin_idx =
  1136. dest_det_info->dest_start_bin_idx +
  1137. marker->num_sec80 - 1;
  1138. dest_det_info->src_start_bin_idx = marker->start_sec80 *
  1139. fft_bin_size;
  1140. /* Set start and end frequencies */
  1141. target_if_spectral_set_start_end_freq(rpt_info->sscan_cfreq2,
  1142. ch_width,
  1143. is_fragmentation_160,
  1144. start_end_freq_arr);
  1145. dest_det_info->start_freq = start_end_freq_arr[0];
  1146. dest_det_info->end_freq = start_end_freq_arr[1];
  1147. dest_det_info = &det_map->dest_det_info[2];
  1148. dest_det_info->dest_start_bin_idx = marker->start_5mhz;
  1149. dest_det_info->dest_end_bin_idx =
  1150. dest_det_info->dest_start_bin_idx +
  1151. marker->num_5mhz - 1;
  1152. dest_det_info->src_start_bin_idx = marker->start_5mhz *
  1153. fft_bin_size;
  1154. /* Set start and end frequencies */
  1155. dest_det_info->start_freq =
  1156. min(det_map->dest_det_info[0].end_freq,
  1157. det_map->dest_det_info[1].end_freq);
  1158. dest_det_info->end_freq =
  1159. max(det_map->dest_det_info[0].start_freq,
  1160. det_map->dest_det_info[1].start_freq);
  1161. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  1162. qdf_spin_unlock_bh(&spectral->session_det_map_lock);
  1163. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  1164. } else {
  1165. ret = target_if_populate_fft_bins_info(spectral, smode);
  1166. if (QDF_IS_STATUS_ERROR(ret)) {
  1167. spectral_err_rl("Error in populating fft bins info");
  1168. return QDF_STATUS_E_FAILURE;
  1169. }
  1170. ret = target_if_populate_det_start_end_freqs(spectral, smode);
  1171. if (QDF_IS_STATUS_ERROR(ret)) {
  1172. spectral_err_rl("Failed to populate start/end freqs");
  1173. return QDF_STATUS_E_FAILURE;
  1174. }
  1175. }
  1176. return QDF_STATUS_SUCCESS;
  1177. }
  1178. #endif /* OPTIMIZED_SAMP_MESSAGE */
  1179. #ifdef OPTIMIZED_SAMP_MESSAGE
  1180. /**
  1181. * target_if_spectral_populate_samp_params_gen2() - Populate the SAMP params
  1182. * for gen2. SAMP params are to be used for populating SAMP msg.
  1183. * @spectral: Pointer to spectral object
  1184. * @phyerr_info: Pointer to processed phyerr info
  1185. * @params: Pointer to Spectral SAMP message fields to be populated
  1186. *
  1187. * Populate the SAMP params for gen2, which will be used to populate SAMP msg.
  1188. *
  1189. * Return: Success/Failure
  1190. */
  1191. static QDF_STATUS
  1192. target_if_spectral_populate_samp_params_gen2(
  1193. struct target_if_spectral *spectral,
  1194. struct spectral_process_phyerr_info_gen2 *phyerr_info,
  1195. struct target_if_samp_msg_params *params)
  1196. {
  1197. uint8_t chn_idx_highest_enabled;
  1198. uint8_t chn_idx_lowest_enabled;
  1199. int8_t control_rssi;
  1200. int8_t extension_rssi;
  1201. struct target_if_spectral_rfqual_info *p_rfqual;
  1202. struct spectral_search_fft_info_gen2 *p_sfft;
  1203. struct spectral_phyerr_fft_gen2 *pfft;
  1204. struct target_if_spectral_acs_stats *acs_stats;
  1205. enum phy_ch_width ch_width;
  1206. enum spectral_scan_mode smode = SPECTRAL_SCAN_MODE_NORMAL;
  1207. if (!spectral) {
  1208. spectral_err_rl("Spectral LMAC object is null");
  1209. return QDF_STATUS_E_NULL_VALUE;
  1210. }
  1211. if (!phyerr_info) {
  1212. spectral_err_rl("Pointer to phyerr info is null");
  1213. return QDF_STATUS_E_NULL_VALUE;
  1214. }
  1215. if (!params) {
  1216. spectral_err_rl("SAMP msg params structure is null");
  1217. return QDF_STATUS_E_NULL_VALUE;
  1218. }
  1219. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  1220. ch_width = spectral->report_info[smode].sscan_bw;
  1221. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  1222. acs_stats = phyerr_info->acs_stats;
  1223. pfft = phyerr_info->pfft;
  1224. p_sfft = phyerr_info->p_sfft;
  1225. p_rfqual = phyerr_info->p_rfqual;
  1226. params->hw_detector_id = phyerr_info->seg_id;
  1227. params->rssi = p_rfqual->rssi_comb;
  1228. if (spectral->is_sec80_rssi_war_required && phyerr_info->seg_id == 1)
  1229. params->rssi = target_if_get_combrssi_sec80_seg_gen2(spectral,
  1230. p_sfft);
  1231. chn_idx_highest_enabled =
  1232. ((spectral->params[smode].ss_chn_mask & 0x8) ? 3 :
  1233. (spectral->params[smode].ss_chn_mask & 0x4) ? 2 :
  1234. (spectral->params[smode].ss_chn_mask & 0x2) ? 1 : 0);
  1235. chn_idx_lowest_enabled =
  1236. ((spectral->params[smode].ss_chn_mask & 0x1) ? 0 :
  1237. (spectral->params[smode].ss_chn_mask & 0x2) ? 1 :
  1238. (spectral->params[smode].ss_chn_mask & 0x4) ? 2 : 3);
  1239. control_rssi =
  1240. p_rfqual->pc_rssi_info[chn_idx_highest_enabled].rssi_pri20;
  1241. extension_rssi =
  1242. p_rfqual->pc_rssi_info[chn_idx_highest_enabled].rssi_sec20;
  1243. if (spectral->upper_is_control)
  1244. params->upper_rssi = control_rssi;
  1245. else
  1246. params->upper_rssi = extension_rssi;
  1247. if (spectral->lower_is_control)
  1248. params->lower_rssi = control_rssi;
  1249. else
  1250. params->lower_rssi = extension_rssi;
  1251. if (spectral->sc_spectral_noise_pwr_cal) {
  1252. int idx;
  1253. for (idx = 0; idx < HOST_MAX_ANTENNA; idx++) {
  1254. params->chain_ctl_rssi[idx] =
  1255. p_rfqual->pc_rssi_info[idx].rssi_pri20;
  1256. params->chain_ext_rssi[idx] =
  1257. p_rfqual->pc_rssi_info[idx].rssi_sec20;
  1258. }
  1259. }
  1260. params->timestamp = (phyerr_info->tsf64 & SPECTRAL_TSMASK);
  1261. params->max_mag = p_sfft->peak_mag;
  1262. params->max_index = p_sfft->peak_inx;
  1263. /*
  1264. * For VHT80_80/VHT160, the noise floor for primary
  1265. * 80MHz segment is populated with the lowest enabled
  1266. * antenna chain and the noise floor for secondary 80MHz segment
  1267. * is populated with the highest enabled antenna chain.
  1268. * For modes upto VHT80, the noise floor is populated with the
  1269. * one corresponding to the highest enabled antenna chain.
  1270. */
  1271. if (is_ch_width_160_or_80p80(ch_width) && phyerr_info->seg_id == 0)
  1272. params->noise_floor =
  1273. p_rfqual->noise_floor[chn_idx_lowest_enabled];
  1274. else
  1275. params->noise_floor =
  1276. p_rfqual->noise_floor[chn_idx_highest_enabled];
  1277. acs_stats->ctrl_nf = params->noise_floor;
  1278. acs_stats->ext_nf = params->noise_floor;
  1279. acs_stats->nfc_ctl_rssi = control_rssi;
  1280. acs_stats->nfc_ext_rssi = extension_rssi;
  1281. params->bin_pwr_data = (uint8_t *)pfft;
  1282. return QDF_STATUS_SUCCESS;
  1283. }
  1284. int
  1285. target_if_process_phyerr_gen2(struct target_if_spectral *spectral,
  1286. uint8_t *data,
  1287. uint32_t datalen,
  1288. struct target_if_spectral_rfqual_info *p_rfqual,
  1289. struct target_if_spectral_chan_info *p_chaninfo,
  1290. uint64_t tsf64,
  1291. struct target_if_spectral_acs_stats *acs_stats)
  1292. {
  1293. /*
  1294. * XXX : The classifier do not use all the members of the SAMP
  1295. * message data format.
  1296. * The classifier only depends upon the following parameters
  1297. *
  1298. * 1. Frequency
  1299. * 2. Spectral RSSI
  1300. * 3. Bin Power Count
  1301. * 4. Bin Power values
  1302. * 5. Spectral Timestamp
  1303. * 6. MAC Address
  1304. *
  1305. * This function prepares the params structure and populates it
  1306. * with relevant values, this is in turn passed to
  1307. * spectral_fill_samp_msg()
  1308. * to prepare fully formatted Spectral SAMP message
  1309. *
  1310. * XXX : Need to verify
  1311. * 1. Order of FFT bin values
  1312. *
  1313. */
  1314. struct target_if_samp_msg_params params;
  1315. struct spectral_search_fft_info_gen2 search_fft_info;
  1316. struct spectral_search_fft_info_gen2 *p_sfft = &search_fft_info;
  1317. struct spectral_search_fft_info_gen2 search_fft_info_sec80;
  1318. struct spectral_search_fft_info_gen2 *p_sfft_sec80 =
  1319. &search_fft_info_sec80;
  1320. uint32_t segid_skiplen = 0;
  1321. struct spectral_phyerr_tlv_gen2 *ptlv = NULL;
  1322. struct spectral_phyerr_tlv_gen2 *ptlv_sec80 = NULL;
  1323. struct spectral_phyerr_fft_gen2 *pfft = NULL;
  1324. struct spectral_phyerr_fft_gen2 *pfft_sec80 = NULL;
  1325. struct spectral_process_phyerr_info_gen2 process_phyerr_fields;
  1326. struct spectral_process_phyerr_info_gen2 *phyerr_info =
  1327. &process_phyerr_fields;
  1328. uint8_t segid = 0;
  1329. uint8_t segid_sec80;
  1330. enum phy_ch_width ch_width;
  1331. QDF_STATUS ret;
  1332. struct target_if_spectral_ops *p_sops;
  1333. if (!spectral) {
  1334. spectral_err_rl("Spectral LMAC object is null");
  1335. return -EPERM;
  1336. }
  1337. p_sops = GET_TARGET_IF_SPECTRAL_OPS(spectral);
  1338. /* Drop the sample if Spectral is not active */
  1339. if (!p_sops->is_spectral_active(spectral,
  1340. SPECTRAL_SCAN_MODE_NORMAL)) {
  1341. spectral_info_rl("Spectral scan is not active");
  1342. goto fail_no_print;
  1343. }
  1344. if (!data) {
  1345. spectral_err_rl("Phyerror event buffer is null");
  1346. goto fail;
  1347. }
  1348. if (!p_rfqual) {
  1349. spectral_err_rl("RF quality information is null");
  1350. goto fail;
  1351. }
  1352. if (!p_chaninfo) {
  1353. spectral_err_rl("Channel information is null");
  1354. goto fail;
  1355. }
  1356. if (!acs_stats) {
  1357. spectral_err_rl("ACS stats pointer is null");
  1358. goto fail;
  1359. }
  1360. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  1361. ch_width = spectral->report_info[SPECTRAL_SCAN_MODE_NORMAL].sscan_bw;
  1362. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  1363. ptlv = (struct spectral_phyerr_tlv_gen2 *)data;
  1364. if (spectral->is_160_format)
  1365. segid_skiplen = sizeof(SPECTRAL_SEGID_INFO);
  1366. pfft = (struct spectral_phyerr_fft_gen2 *)(
  1367. data +
  1368. sizeof(struct spectral_phyerr_tlv_gen2) +
  1369. sizeof(struct spectral_phyerr_hdr_gen2) +
  1370. segid_skiplen);
  1371. /*
  1372. * XXX Extend SPECTRAL_DPRINTK() to use spectral_debug_level,
  1373. * and use this facility inside spectral_dump_phyerr_data()
  1374. * and supporting functions.
  1375. */
  1376. if (spectral_debug_level & (DEBUG_SPECTRAL2 | DEBUG_SPECTRAL4))
  1377. target_if_spectral_dump_phyerr_data_gen2(
  1378. data, datalen,
  1379. spectral->is_160_format);
  1380. if (ptlv->signature != SPECTRAL_PHYERR_SIGNATURE_GEN2) {
  1381. /*
  1382. * EV# 118023: We tentatively disable the below print
  1383. * and provide stats instead.
  1384. */
  1385. spectral->diag_stats.spectral_mismatch++;
  1386. goto fail;
  1387. }
  1388. qdf_mem_zero(&params, sizeof(params));
  1389. if (ptlv->tag == TLV_TAG_SEARCH_FFT_REPORT_GEN2) {
  1390. if (spectral->is_160_format) {
  1391. segid = *((SPECTRAL_SEGID_INFO *)(
  1392. (uint8_t *)ptlv +
  1393. sizeof(struct spectral_phyerr_tlv_gen2) +
  1394. sizeof(struct spectral_phyerr_hdr_gen2)));
  1395. if (segid != 0) {
  1396. struct spectral_diag_stats *p_diag_stats =
  1397. &spectral->diag_stats;
  1398. p_diag_stats->spectral_vhtseg1id_mismatch++;
  1399. goto fail;
  1400. }
  1401. }
  1402. target_if_process_sfft_report_gen2(ptlv, ptlv->length,
  1403. p_sfft);
  1404. ret = target_if_update_session_info_from_report_ctx(
  1405. spectral, FFT_BIN_SIZE_1BYTE,
  1406. p_chaninfo->center_freq1,
  1407. p_chaninfo->center_freq2,
  1408. SPECTRAL_SCAN_MODE_NORMAL);
  1409. if (QDF_IS_STATUS_ERROR(ret)) {
  1410. spectral_err_rl("Failed to update per-session info");
  1411. goto fail;
  1412. }
  1413. phyerr_info->p_rfqual = p_rfqual;
  1414. phyerr_info->p_sfft = p_sfft;
  1415. phyerr_info->pfft = pfft;
  1416. phyerr_info->acs_stats = acs_stats;
  1417. phyerr_info->tsf64 = tsf64;
  1418. phyerr_info->seg_id = segid;
  1419. ret = target_if_spectral_populate_samp_params_gen2(spectral,
  1420. phyerr_info,
  1421. &params);
  1422. if (QDF_IS_STATUS_ERROR(ret)) {
  1423. spectral_err_rl("Failed to populate SAMP params");
  1424. goto fail;
  1425. }
  1426. ret = target_if_spectral_fill_samp_msg(spectral, &params);
  1427. if (QDF_IS_STATUS_ERROR(ret)) {
  1428. spectral_err_rl("Failed to fill the SAMP msg");
  1429. goto fail;
  1430. }
  1431. if (spectral->is_160_format &&
  1432. is_ch_width_160_or_80p80(ch_width)) {
  1433. /*
  1434. * We expect to see one more Search FFT report, and it
  1435. * should be equal in size to the current one.
  1436. */
  1437. if (datalen < (
  1438. 2 * (sizeof(struct spectral_phyerr_tlv_gen2) +
  1439. ptlv->length))) {
  1440. struct spectral_diag_stats *p_diag_stats =
  1441. &spectral->diag_stats;
  1442. p_diag_stats->spectral_sec80_sfft_insufflen++;
  1443. goto fail;
  1444. }
  1445. ptlv_sec80 = (struct spectral_phyerr_tlv_gen2 *)(
  1446. data +
  1447. sizeof(struct spectral_phyerr_tlv_gen2) +
  1448. ptlv->length);
  1449. if (ptlv_sec80->signature !=
  1450. SPECTRAL_PHYERR_SIGNATURE_GEN2) {
  1451. spectral->diag_stats.spectral_mismatch++;
  1452. goto fail;
  1453. }
  1454. if (ptlv_sec80->tag != TLV_TAG_SEARCH_FFT_REPORT_GEN2) {
  1455. spectral->diag_stats.spectral_no_sec80_sfft++;
  1456. goto fail;
  1457. }
  1458. segid_sec80 = *((SPECTRAL_SEGID_INFO *)(
  1459. (uint8_t *)ptlv_sec80 +
  1460. sizeof(struct spectral_phyerr_tlv_gen2) +
  1461. sizeof(struct spectral_phyerr_hdr_gen2)));
  1462. if (segid_sec80 != 1) {
  1463. struct spectral_diag_stats *p_diag_stats =
  1464. &spectral->diag_stats;
  1465. p_diag_stats->spectral_vhtseg2id_mismatch++;
  1466. goto fail;
  1467. }
  1468. target_if_process_sfft_report_gen2(ptlv_sec80,
  1469. ptlv_sec80->length,
  1470. p_sfft_sec80);
  1471. pfft_sec80 = (struct spectral_phyerr_fft_gen2 *)(
  1472. ((uint8_t *)ptlv_sec80) +
  1473. sizeof(struct spectral_phyerr_tlv_gen2) +
  1474. sizeof(struct spectral_phyerr_hdr_gen2) +
  1475. segid_skiplen);
  1476. qdf_mem_zero(&params, sizeof(params));
  1477. phyerr_info->p_rfqual = p_rfqual;
  1478. phyerr_info->p_sfft = p_sfft_sec80;
  1479. phyerr_info->pfft = pfft_sec80;
  1480. phyerr_info->acs_stats = acs_stats;
  1481. phyerr_info->tsf64 = tsf64;
  1482. phyerr_info->seg_id = segid_sec80;
  1483. ret = target_if_spectral_populate_samp_params_gen2(
  1484. spectral, phyerr_info,
  1485. &params);
  1486. if (QDF_IS_STATUS_ERROR(ret)) {
  1487. spectral_err_rl("Failed to populate SAMP params");
  1488. goto fail;
  1489. }
  1490. ret = target_if_spectral_fill_samp_msg(spectral,
  1491. &params);
  1492. if (QDF_IS_STATUS_ERROR(ret)) {
  1493. spectral_err_rl("Failed to fill the SAMP msg");
  1494. goto fail;
  1495. }
  1496. }
  1497. }
  1498. if (spectral_debug_level & DEBUG_SPECTRAL4)
  1499. spectral_debug_level = DEBUG_SPECTRAL;
  1500. return 0;
  1501. fail:
  1502. spectral_err_rl("Error while processing Spectral report");
  1503. fail_no_print:
  1504. if (spectral_debug_level & DEBUG_SPECTRAL4)
  1505. spectral_debug_level = DEBUG_SPECTRAL;
  1506. free_samp_msg_skb(spectral, SPECTRAL_SCAN_MODE_NORMAL);
  1507. return -EPERM;
  1508. }
  1509. #else
  1510. int
  1511. target_if_process_phyerr_gen2(struct target_if_spectral *spectral,
  1512. uint8_t *data,
  1513. uint32_t datalen,
  1514. struct target_if_spectral_rfqual_info *p_rfqual,
  1515. struct target_if_spectral_chan_info *p_chaninfo,
  1516. uint64_t tsf64,
  1517. struct target_if_spectral_acs_stats *acs_stats)
  1518. {
  1519. /*
  1520. * XXX : The classifier do not use all the members of the SAMP
  1521. * message data format.
  1522. * The classifier only depends upon the following parameters
  1523. *
  1524. * 1. Frequency (freq, msg->freq)
  1525. * 2. Spectral RSSI (spectral_rssi,
  1526. * msg->samp_data.spectral_rssi)
  1527. * 3. Bin Power Count (bin_pwr_count,
  1528. * msg->samp_data.bin_pwr_count)
  1529. * 4. Bin Power values (bin_pwr, msg->samp_data.bin_pwr[0]
  1530. * 5. Spectral Timestamp (spectral_tstamp,
  1531. * msg->samp_data.spectral_tstamp)
  1532. * 6. MAC Address (macaddr, msg->macaddr)
  1533. *
  1534. * This function prepares the params structure and populates it
  1535. * with
  1536. * relevant values, this is in turn passed to
  1537. * spectral_create_samp_msg()
  1538. * to prepare fully formatted Spectral SAMP message
  1539. *
  1540. * XXX : Need to verify
  1541. * 1. Order of FFT bin values
  1542. *
  1543. */
  1544. struct target_if_samp_msg_params params;
  1545. struct spectral_search_fft_info_gen2 search_fft_info;
  1546. struct spectral_search_fft_info_gen2 *p_sfft = &search_fft_info;
  1547. struct spectral_search_fft_info_gen2 search_fft_info_sec80;
  1548. struct spectral_search_fft_info_gen2 *p_sfft_sec80 =
  1549. &search_fft_info_sec80;
  1550. uint32_t segid_skiplen = 0;
  1551. int8_t rssi_up = 0;
  1552. int8_t rssi_low = 0;
  1553. int8_t chn_idx_highest_enabled = 0;
  1554. int8_t chn_idx_lowest_enabled = 0;
  1555. uint8_t control_rssi = 0;
  1556. uint8_t extension_rssi = 0;
  1557. uint8_t combined_rssi = 0;
  1558. uint32_t tstamp = 0;
  1559. struct target_if_spectral_ops *p_sops =
  1560. GET_TARGET_IF_SPECTRAL_OPS(spectral);
  1561. struct spectral_phyerr_tlv_gen2 *ptlv =
  1562. (struct spectral_phyerr_tlv_gen2 *)data;
  1563. struct spectral_phyerr_tlv_gen2 *ptlv_sec80 = NULL;
  1564. struct spectral_phyerr_fft_gen2 *pfft = NULL;
  1565. struct spectral_phyerr_fft_gen2 *pfft_sec80 = NULL;
  1566. uint8_t segid = 0;
  1567. uint8_t segid_sec80 = 0;
  1568. enum phy_ch_width ch_width =
  1569. spectral->ch_width[SPECTRAL_SCAN_MODE_NORMAL];
  1570. if (spectral->is_160_format)
  1571. segid_skiplen = sizeof(SPECTRAL_SEGID_INFO);
  1572. pfft = (struct spectral_phyerr_fft_gen2 *)(
  1573. data +
  1574. sizeof(struct spectral_phyerr_tlv_gen2) +
  1575. sizeof(struct spectral_phyerr_hdr_gen2) +
  1576. segid_skiplen);
  1577. /*
  1578. * XXX Extend SPECTRAL_DPRINTK() to use spectral_debug_level,
  1579. * and use this facility inside spectral_dump_phyerr_data()
  1580. * and supporting functions.
  1581. */
  1582. if (spectral_debug_level & DEBUG_SPECTRAL2)
  1583. target_if_spectral_dump_phyerr_data_gen2(
  1584. data, datalen,
  1585. spectral->is_160_format);
  1586. if (spectral_debug_level & DEBUG_SPECTRAL4) {
  1587. target_if_spectral_dump_phyerr_data_gen2(
  1588. data, datalen,
  1589. spectral->is_160_format);
  1590. spectral_debug_level = DEBUG_SPECTRAL;
  1591. }
  1592. if (ptlv->signature != SPECTRAL_PHYERR_SIGNATURE_GEN2) {
  1593. /*
  1594. * EV# 118023: We tentatively disable the below print
  1595. * and provide stats instead.
  1596. */
  1597. spectral->diag_stats.spectral_mismatch++;
  1598. return -EPERM;
  1599. }
  1600. OS_MEMZERO(&params, sizeof(params));
  1601. /* Gen 2 only supports normal Spectral scan currently */
  1602. params.smode = SPECTRAL_SCAN_MODE_NORMAL;
  1603. if (ptlv->tag == TLV_TAG_SEARCH_FFT_REPORT_GEN2) {
  1604. if (spectral->is_160_format) {
  1605. segid = *((SPECTRAL_SEGID_INFO *)(
  1606. (uint8_t *)ptlv +
  1607. sizeof(struct spectral_phyerr_tlv_gen2) +
  1608. sizeof(struct spectral_phyerr_hdr_gen2)));
  1609. if (segid != 0) {
  1610. struct spectral_diag_stats *p_diag_stats =
  1611. &spectral->diag_stats;
  1612. p_diag_stats->spectral_vhtseg1id_mismatch++;
  1613. return -EPERM;
  1614. }
  1615. }
  1616. target_if_process_sfft_report_gen2(ptlv, ptlv->length,
  1617. &search_fft_info);
  1618. tstamp = p_sops->get_tsf64(spectral) & SPECTRAL_TSMASK;
  1619. combined_rssi = p_rfqual->rssi_comb;
  1620. if (spectral->upper_is_control)
  1621. rssi_up = control_rssi;
  1622. else
  1623. rssi_up = extension_rssi;
  1624. if (spectral->lower_is_control)
  1625. rssi_low = control_rssi;
  1626. else
  1627. rssi_low = extension_rssi;
  1628. params.rssi = p_rfqual->rssi_comb;
  1629. params.lower_rssi = rssi_low;
  1630. params.upper_rssi = rssi_up;
  1631. if (spectral->sc_spectral_noise_pwr_cal) {
  1632. params.chain_ctl_rssi[0] =
  1633. p_rfqual->pc_rssi_info[0].rssi_pri20;
  1634. params.chain_ctl_rssi[1] =
  1635. p_rfqual->pc_rssi_info[1].rssi_pri20;
  1636. params.chain_ctl_rssi[2] =
  1637. p_rfqual->pc_rssi_info[2].rssi_pri20;
  1638. params.chain_ext_rssi[0] =
  1639. p_rfqual->pc_rssi_info[0].rssi_sec20;
  1640. params.chain_ext_rssi[1] =
  1641. p_rfqual->pc_rssi_info[1].rssi_sec20;
  1642. params.chain_ext_rssi[2] =
  1643. p_rfqual->pc_rssi_info[2].rssi_sec20;
  1644. }
  1645. /*
  1646. * XXX : This actually depends on the programmed chain mask
  1647. * This value decides the per-chain enable mask to select
  1648. * the input ADC for search FTT.
  1649. * For modes upto VHT80, if more than one chain is
  1650. * enabled, the max valid chain
  1651. * is used. LSB corresponds to chain zero.
  1652. * For VHT80_80 and VHT160, the lowest enabled chain is
  1653. * used for primary
  1654. * detection and highest enabled chain is used for
  1655. * secondary detection.
  1656. *
  1657. * XXX : The current algorithm do not use these control and
  1658. * extension channel
  1659. * Instead, it just relies on the combined RSSI values
  1660. * only.
  1661. * For fool-proof detection algorithm, we should take
  1662. * these RSSI values in to account.
  1663. * This is marked for future enhancements.
  1664. */
  1665. chn_idx_highest_enabled =
  1666. ((spectral->params[params.smode].ss_chn_mask & 0x8) ? 3 :
  1667. (spectral->params[params.smode].ss_chn_mask & 0x4) ? 2 :
  1668. (spectral->params[params.smode].ss_chn_mask & 0x2) ? 1 : 0);
  1669. chn_idx_lowest_enabled =
  1670. ((spectral->params[params.smode].ss_chn_mask & 0x1) ? 0 :
  1671. (spectral->params[params.smode].ss_chn_mask & 0x2) ? 1 :
  1672. (spectral->params[params.smode].ss_chn_mask & 0x4) ? 2 : 3);
  1673. control_rssi = (uint8_t)
  1674. p_rfqual->pc_rssi_info[chn_idx_highest_enabled].rssi_pri20;
  1675. extension_rssi = (uint8_t)
  1676. p_rfqual->pc_rssi_info[chn_idx_highest_enabled].rssi_sec20;
  1677. params.bwinfo = 0;
  1678. params.tstamp = 0;
  1679. params.max_mag = p_sfft->peak_mag;
  1680. params.max_index = p_sfft->peak_inx;
  1681. params.max_exp = 0;
  1682. params.peak = 0;
  1683. params.bin_pwr_data = (uint8_t *)pfft;
  1684. params.freq = p_sops->get_current_channel(spectral,
  1685. params.smode);
  1686. params.freq_loading = 0;
  1687. params.interf_list.count = 0;
  1688. params.max_lower_index = 0;
  1689. params.max_upper_index = 0;
  1690. params.nb_lower = 0;
  1691. params.nb_upper = 0;
  1692. /*
  1693. * For modes upto VHT80, the noise floor is populated with the
  1694. * one corresponding
  1695. * to the highest enabled antenna chain
  1696. */
  1697. params.noise_floor =
  1698. p_rfqual->noise_floor[chn_idx_highest_enabled];
  1699. params.datalen = ptlv->length;
  1700. params.pwr_count = ptlv->length -
  1701. sizeof(struct spectral_phyerr_hdr_gen2) - segid_skiplen;
  1702. params.tstamp = (tsf64 & SPECTRAL_TSMASK);
  1703. acs_stats->ctrl_nf = params.noise_floor;
  1704. acs_stats->ext_nf = params.noise_floor;
  1705. acs_stats->nfc_ctl_rssi = control_rssi;
  1706. acs_stats->nfc_ext_rssi = extension_rssi;
  1707. if (spectral->is_160_format &&
  1708. is_ch_width_160_or_80p80(ch_width)) {
  1709. /*
  1710. * We expect to see one more Search FFT report, and it
  1711. * should be equal in size to the current one.
  1712. */
  1713. if (datalen < (
  1714. 2 * (
  1715. sizeof(struct spectral_phyerr_tlv_gen2) +
  1716. ptlv->length))) {
  1717. struct spectral_diag_stats *p_diag_stats =
  1718. &spectral->diag_stats;
  1719. p_diag_stats->spectral_sec80_sfft_insufflen++;
  1720. return -EPERM;
  1721. }
  1722. ptlv_sec80 = (struct spectral_phyerr_tlv_gen2 *)(
  1723. data +
  1724. sizeof(struct spectral_phyerr_tlv_gen2) +
  1725. ptlv->length);
  1726. if (ptlv_sec80->signature !=
  1727. SPECTRAL_PHYERR_SIGNATURE_GEN2) {
  1728. spectral->diag_stats.spectral_mismatch++;
  1729. return -EPERM;
  1730. }
  1731. if (ptlv_sec80->tag != TLV_TAG_SEARCH_FFT_REPORT_GEN2) {
  1732. spectral->diag_stats.spectral_no_sec80_sfft++;
  1733. return -EPERM;
  1734. }
  1735. segid_sec80 = *((SPECTRAL_SEGID_INFO *)(
  1736. (uint8_t *)ptlv_sec80 +
  1737. sizeof(struct spectral_phyerr_tlv_gen2) +
  1738. sizeof(struct spectral_phyerr_hdr_gen2)));
  1739. if (segid_sec80 != 1) {
  1740. struct spectral_diag_stats *p_diag_stats =
  1741. &spectral->diag_stats;
  1742. p_diag_stats->spectral_vhtseg2id_mismatch++;
  1743. return -EPERM;
  1744. }
  1745. params.vhtop_ch_freq_seg1 = p_chaninfo->center_freq1;
  1746. params.vhtop_ch_freq_seg2 = p_chaninfo->center_freq2;
  1747. target_if_process_sfft_report_gen2(
  1748. ptlv_sec80,
  1749. ptlv_sec80->length,
  1750. &search_fft_info_sec80);
  1751. pfft_sec80 = (struct spectral_phyerr_fft_gen2 *)(
  1752. ((uint8_t *)ptlv_sec80) +
  1753. sizeof(struct spectral_phyerr_tlv_gen2) +
  1754. sizeof(struct spectral_phyerr_hdr_gen2) +
  1755. segid_skiplen);
  1756. /* XXX: Confirm. TBD at SoD. */
  1757. params.rssi_sec80 = p_rfqual->rssi_comb;
  1758. if (spectral->is_sec80_rssi_war_required)
  1759. params.rssi_sec80 =
  1760. target_if_get_combrssi_sec80_seg_gen2
  1761. (spectral, &search_fft_info_sec80);
  1762. /* XXX: Determine dynamically. TBD at SoD. */
  1763. /*
  1764. * For VHT80_80/VHT160, the noise floor for primary
  1765. * 80MHz segment is populated with the
  1766. * lowest enabled antenna chain and the noise floor for
  1767. * secondary 80MHz segment is populated
  1768. * with the highest enabled antenna chain
  1769. */
  1770. params.noise_floor_sec80 =
  1771. p_rfqual->noise_floor[chn_idx_highest_enabled];
  1772. params.noise_floor =
  1773. p_rfqual->noise_floor[chn_idx_lowest_enabled];
  1774. params.max_mag_sec80 = p_sfft_sec80->peak_mag;
  1775. params.max_index_sec80 = p_sfft_sec80->peak_inx;
  1776. /* XXX Does this definition of datalen *still hold? */
  1777. params.datalen_sec80 = ptlv_sec80->length;
  1778. params.pwr_count_sec80 =
  1779. ptlv_sec80->length -
  1780. sizeof(struct spectral_phyerr_hdr_gen2) -
  1781. segid_skiplen;
  1782. params.bin_pwr_data_sec80 = (uint8_t *)pfft_sec80;
  1783. }
  1784. qdf_mem_copy(&params.classifier_params,
  1785. &spectral->classifier_params,
  1786. sizeof(struct spectral_classifier_params));
  1787. target_if_spectral_log_SAMP_param(&params);
  1788. target_if_spectral_create_samp_msg(spectral, &params);
  1789. }
  1790. return 0;
  1791. }
  1792. #endif /* OPTIMIZED_SAMP_MESSAGE */
  1793. int
  1794. target_if_spectral_dump_hdr_gen2(struct spectral_phyerr_hdr_gen2 *phdr)
  1795. {
  1796. uint32_t a = 0;
  1797. uint32_t b = 0;
  1798. qdf_mem_copy(&a, (uint8_t *)phdr, sizeof(int));
  1799. qdf_mem_copy(&b,
  1800. (uint8_t *)((uint8_t *)phdr + sizeof(int)),
  1801. sizeof(int));
  1802. spectral_debug("SPECTRAL : HEADER A 0x%x (%d)", a, a);
  1803. spectral_debug("SPECTRAL : HEADER B 0x%x (%d)", b, b);
  1804. return 0;
  1805. }
  1806. int8_t
  1807. target_if_get_combrssi_sec80_seg_gen2(
  1808. struct target_if_spectral *spectral,
  1809. struct spectral_search_fft_info_gen2 *p_sfft_sec80)
  1810. {
  1811. uint32_t avgpwr_db = 0;
  1812. uint32_t total_gain_db = 0;
  1813. uint32_t offset = 0;
  1814. int8_t comb_rssi = 0;
  1815. /* Obtain required parameters for algorithm from search FFT report */
  1816. avgpwr_db = p_sfft_sec80->avgpwr_db;
  1817. total_gain_db = p_sfft_sec80->total_gain_info;
  1818. /* Calculate offset */
  1819. offset = target_if_get_offset_swar_sec80(
  1820. spectral->ch_width[SPECTRAL_SCAN_MODE_NORMAL]);
  1821. /* Calculate RSSI */
  1822. comb_rssi = ((avgpwr_db - total_gain_db) + offset);
  1823. return comb_rssi;
  1824. }
  1825. int
  1826. target_if_spectral_dump_tlv_gen2(
  1827. struct spectral_phyerr_tlv_gen2 *ptlv, bool is_160_format)
  1828. {
  1829. int ret = 0;
  1830. /*
  1831. * TODO : Do not delete the following print
  1832. * The scripts used to validate Spectral depend on this Print
  1833. */
  1834. spectral_debug("SPECTRAL : TLV Length is 0x%x (%d)",
  1835. ptlv->length, ptlv->length);
  1836. switch (ptlv->tag) {
  1837. case TLV_TAG_SPECTRAL_SUMMARY_REPORT_GEN2:
  1838. ret =
  1839. target_if_dump_summary_report_gen2(
  1840. ptlv, ptlv->length, is_160_format);
  1841. break;
  1842. case TLV_TAG_SEARCH_FFT_REPORT_GEN2:
  1843. ret =
  1844. target_if_dump_sfft_report_gen2(ptlv, ptlv->length,
  1845. is_160_format);
  1846. break;
  1847. case TLV_TAG_ADC_REPORT_GEN2:
  1848. ret = target_if_dump_adc_report_gen2(ptlv, ptlv->length);
  1849. break;
  1850. default:
  1851. spectral_warn("INVALID TLV");
  1852. ret = -1;
  1853. break;
  1854. }
  1855. return ret;
  1856. }
  1857. int
  1858. target_if_spectral_dump_phyerr_data_gen2(uint8_t *data, uint32_t datalen,
  1859. bool is_160_format)
  1860. {
  1861. struct spectral_phyerr_tlv_gen2 *ptlv = NULL;
  1862. uint32_t bytes_processed = 0;
  1863. uint32_t bytes_remaining = datalen;
  1864. uint32_t curr_tlv_complete_size = 0;
  1865. if (datalen < sizeof(struct spectral_phyerr_tlv_gen2)) {
  1866. spectral_err("Total PHY error data length %u too short to contain any TLVs",
  1867. datalen);
  1868. return -EPERM;
  1869. }
  1870. while (bytes_processed < datalen) {
  1871. if (bytes_remaining < sizeof(struct spectral_phyerr_tlv_gen2)) {
  1872. spectral_err("Remaining PHY error data length %u too short to contain a TLV",
  1873. bytes_remaining);
  1874. return -EPERM;
  1875. }
  1876. ptlv = (struct spectral_phyerr_tlv_gen2 *)(data +
  1877. bytes_processed);
  1878. if (ptlv->signature != SPECTRAL_PHYERR_SIGNATURE_GEN2) {
  1879. spectral_err("Invalid signature 0x%x!",
  1880. ptlv->signature);
  1881. return -EPERM;
  1882. }
  1883. curr_tlv_complete_size =
  1884. sizeof(struct spectral_phyerr_tlv_gen2) +
  1885. ptlv->length;
  1886. if (curr_tlv_complete_size > bytes_remaining) {
  1887. spectral_err("TLV size %d greater than number of bytes remaining %d",
  1888. curr_tlv_complete_size, bytes_remaining);
  1889. return -EPERM;
  1890. }
  1891. if (target_if_spectral_dump_tlv_gen2(ptlv, is_160_format) == -1)
  1892. return -EPERM;
  1893. bytes_processed += curr_tlv_complete_size;
  1894. bytes_remaining = datalen - bytes_processed;
  1895. }
  1896. return 0;
  1897. }
  1898. QDF_STATUS
  1899. target_if_spectral_copy_fft_bins(struct target_if_spectral *spectral,
  1900. const void *src_fft_buf,
  1901. void *dest_fft_buf,
  1902. uint32_t fft_bin_count,
  1903. uint32_t *bytes_copied,
  1904. uint16_t pwr_format)
  1905. {
  1906. uint16_t idx, dword_idx, fft_bin_idx;
  1907. uint8_t num_bins_per_dword, hw_fft_bin_width_bits;
  1908. uint32_t num_dwords;
  1909. uint16_t fft_bin_val;
  1910. struct spectral_report_params *rparams;
  1911. const uint32_t *dword_ptr;
  1912. uint32_t dword;
  1913. uint8_t *fft_bin_buf;
  1914. *bytes_copied = 0;
  1915. if (!spectral) {
  1916. spectral_err("spectral lmac object is NULL");
  1917. return QDF_STATUS_E_NULL_VALUE;
  1918. }
  1919. if (!src_fft_buf) {
  1920. spectral_err("source fft bin buffer is NULL");
  1921. return QDF_STATUS_E_NULL_VALUE;
  1922. }
  1923. if (!dest_fft_buf) {
  1924. spectral_err("destination fft bin buffer is NULL");
  1925. return QDF_STATUS_E_NULL_VALUE;
  1926. }
  1927. rparams = &spectral->rparams;
  1928. num_bins_per_dword = SPECTRAL_DWORD_SIZE / rparams->hw_fft_bin_width;
  1929. num_dwords = fft_bin_count / num_bins_per_dword;
  1930. hw_fft_bin_width_bits = rparams->hw_fft_bin_width * QDF_CHAR_BIT;
  1931. fft_bin_idx = 0;
  1932. dword_ptr = src_fft_buf;
  1933. fft_bin_buf = dest_fft_buf;
  1934. for (dword_idx = 0; dword_idx < num_dwords; dword_idx++) {
  1935. dword = *dword_ptr++; /* Read a DWORD */
  1936. for (idx = 0; idx < num_bins_per_dword; idx++) {
  1937. /**
  1938. * If we use QDF_GET_BITS, when hw_fft_bin_width_bits is
  1939. * 32, on certain platforms, we could end up doing a
  1940. * 32-bit left shift operation on 32-bit constant
  1941. * integer '1'. As per C standard, result of shifting an
  1942. * operand by a count greater than or equal to width
  1943. * (in bits) of the operand is undefined.
  1944. * If we use QDF_GET_BITS_64, we can avoid that.
  1945. */
  1946. fft_bin_val = (uint16_t)QDF_GET_BITS64(
  1947. dword,
  1948. idx * hw_fft_bin_width_bits,
  1949. hw_fft_bin_width_bits);
  1950. fft_bin_buf[fft_bin_idx++] =
  1951. clamp_fft_bin_value(fft_bin_val, pwr_format);
  1952. }
  1953. }
  1954. *bytes_copied = num_dwords * SPECTRAL_DWORD_SIZE;
  1955. return QDF_STATUS_SUCCESS;
  1956. }
  1957. #ifdef DIRECT_BUF_RX_ENABLE
  1958. /**
  1959. * target_if_get_spectral_mode() - Get Spectral scan mode corresponding to a
  1960. * detector id
  1961. * @detector_id: detector id in the Spectral report
  1962. * @rparams: pointer to report params object
  1963. *
  1964. * Helper API to get Spectral scan mode from the detector ID. This mapping is
  1965. * target specific.
  1966. *
  1967. * Return: Spectral scan mode
  1968. */
  1969. static enum spectral_scan_mode
  1970. target_if_get_spectral_mode(enum spectral_detector_id detector_id,
  1971. struct spectral_report_params *rparams)
  1972. {
  1973. if (detector_id >= SPECTRAL_DETECTOR_ID_MAX) {
  1974. spectral_err_rl("Invalid detector id %d", detector_id);
  1975. return SPECTRAL_SCAN_MODE_INVALID;
  1976. }
  1977. return rparams->detid_mode_table[detector_id];
  1978. }
  1979. /**
  1980. * target_if_spectral_get_bin_count_after_len_adj() - Get number of FFT bins in
  1981. * Spectral FFT report
  1982. * @fft_bin_len: FFT bin length reported by target
  1983. * @rpt_mode: Spectral report mode
  1984. * @swar: Spectral FFT bin length adjustments SWAR parameters
  1985. * @fft_bin_size: Size of one FFT bin in bytes
  1986. *
  1987. * Get actual number of FFT bins in the FFT report after adjusting the length
  1988. * by applying the SWARs for getting correct length.
  1989. *
  1990. * Return: FFT bin count
  1991. */
  1992. static size_t
  1993. target_if_spectral_get_bin_count_after_len_adj(
  1994. size_t fft_bin_len, uint8_t rpt_mode,
  1995. struct spectral_fft_bin_len_adj_swar *swar,
  1996. size_t *fft_bin_size)
  1997. {
  1998. size_t fft_bin_count = fft_bin_len;
  1999. if (rpt_mode == 1 && swar->null_fftbin_adj) {
  2000. /*
  2001. * No FFT bins are expected. Explicitly set FFT bin
  2002. * count to 0.
  2003. */
  2004. fft_bin_count = 0;
  2005. *fft_bin_size = 0;
  2006. } else {
  2007. /*
  2008. * Divide fft bin length by appropriate factor depending
  2009. * on the value of fftbin_size_war.
  2010. */
  2011. switch (swar->fftbin_size_war) {
  2012. case SPECTRAL_FFTBIN_SIZE_WAR_4BYTE_TO_1BYTE:
  2013. fft_bin_count >>= 2;
  2014. *fft_bin_size = 4;
  2015. break;
  2016. case SPECTRAL_FFTBIN_SIZE_WAR_2BYTE_TO_1BYTE:
  2017. fft_bin_count >>= 1;
  2018. *fft_bin_size = 2;
  2019. /* Ideally we should be dividing fft bin length
  2020. * by 2. Due to a HW bug, actual length is two
  2021. * times the expected length.
  2022. */
  2023. if (swar->packmode_fftbin_size_adj)
  2024. fft_bin_count >>= 1;
  2025. break;
  2026. case SPECTRAL_FFTBIN_SIZE_NO_WAR:
  2027. *fft_bin_size = 1;
  2028. /* No length adjustment */
  2029. break;
  2030. default:
  2031. qdf_assert_always(0);
  2032. }
  2033. if (rpt_mode == 2 && swar->inband_fftbin_size_adj)
  2034. fft_bin_count >>= 1;
  2035. }
  2036. return fft_bin_count;
  2037. }
  2038. #ifndef OPTIMIZED_SAMP_MESSAGE
  2039. /**
  2040. * target_if_process_sfft_report_gen3() - Process Search FFT Report for gen3
  2041. * @p_fft_report: Pointer to fft report
  2042. * @p_sfft: Pointer to search fft report
  2043. * @rparams: pointer to report params object
  2044. *
  2045. * Process Search FFT Report for gen3
  2046. *
  2047. * Return: Success/Failure
  2048. */
  2049. static int
  2050. target_if_process_sfft_report_gen3(
  2051. struct spectral_phyerr_fft_report_gen3 *p_fft_report,
  2052. struct spectral_search_fft_info_gen3 *p_sfft,
  2053. struct spectral_report_params *rparams)
  2054. {
  2055. int32_t peak_sidx = 0;
  2056. int32_t peak_mag;
  2057. qdf_assert_always(p_fft_report);
  2058. qdf_assert_always(p_sfft);
  2059. qdf_assert_always(rparams);
  2060. /*
  2061. * For simplicity, everything is defined as uint32_t (except one).
  2062. * Proper code will later use the right sizes.
  2063. */
  2064. /*
  2065. * For easy comparison between MDK team and OS team, the MDK script
  2066. * variable names have been used
  2067. */
  2068. /* Populate the Search FFT Info */
  2069. p_sfft->timestamp = p_fft_report->fft_timestamp;
  2070. p_sfft->fft_detector_id = get_bitfield(p_fft_report->hdr_a,
  2071. 2, 0);
  2072. p_sfft->fft_num = get_bitfield(p_fft_report->hdr_a, 3, 2);
  2073. switch (rparams->version) {
  2074. case SPECTRAL_REPORT_FORMAT_VERSION_1:
  2075. p_sfft->fft_radar_check = get_bitfield(p_fft_report->hdr_a,
  2076. 12, 5);
  2077. peak_sidx = get_bitfield(p_fft_report->hdr_a, 11, 17);
  2078. p_sfft->fft_chn_idx = get_bitfield(p_fft_report->hdr_a, 3, 28);
  2079. p_sfft->fft_base_pwr_db = get_bitfield(p_fft_report->hdr_b,
  2080. 9, 0);
  2081. p_sfft->fft_total_gain_db = get_bitfield(p_fft_report->hdr_b,
  2082. 8, 9);
  2083. break;
  2084. case SPECTRAL_REPORT_FORMAT_VERSION_2:
  2085. p_sfft->fft_radar_check = get_bitfield(p_fft_report->hdr_a,
  2086. 14, 5);
  2087. peak_sidx = get_bitfield(p_fft_report->hdr_a, 11, 19);
  2088. p_sfft->fft_chn_idx = get_bitfield(p_fft_report->hdr_b, 3, 0);
  2089. p_sfft->fft_base_pwr_db = get_bitfield(p_fft_report->hdr_b,
  2090. 9, 3);
  2091. p_sfft->fft_total_gain_db = get_bitfield(p_fft_report->hdr_b,
  2092. 8, 12);
  2093. break;
  2094. default:
  2095. qdf_assert_always(0);
  2096. }
  2097. p_sfft->fft_peak_sidx = unsigned_to_signed(peak_sidx, 11);
  2098. p_sfft->fft_num_str_bins_ib = get_bitfield(p_fft_report->hdr_c,
  2099. 8, 0);
  2100. peak_mag = get_bitfield(p_fft_report->hdr_c, 10, 8);
  2101. p_sfft->fft_peak_mag = unsigned_to_signed(peak_mag, 10);
  2102. p_sfft->fft_avgpwr_db = get_bitfield(p_fft_report->hdr_c,
  2103. 7, 18);
  2104. p_sfft->fft_relpwr_db = get_bitfield(p_fft_report->hdr_c,
  2105. 7, 25);
  2106. return 0;
  2107. }
  2108. #endif
  2109. /**
  2110. * target_if_dump_fft_report_gen3() - Dump FFT Report for gen3
  2111. * @spectral: Pointer to Spectral object
  2112. * @smode: Spectral scan mode
  2113. * @p_fft_report: Pointer to fft report
  2114. * @p_sfft: Pointer to search fft report
  2115. *
  2116. * Dump FFT Report for gen3
  2117. *
  2118. * Return: void
  2119. */
  2120. static void
  2121. target_if_dump_fft_report_gen3(struct target_if_spectral *spectral,
  2122. enum spectral_scan_mode smode,
  2123. struct spectral_phyerr_fft_report_gen3 *p_fft_report,
  2124. struct spectral_search_fft_info_gen3 *p_sfft)
  2125. {
  2126. size_t fft_hdr_length;
  2127. size_t report_len;
  2128. size_t fft_bin_len;
  2129. size_t fft_bin_count;
  2130. size_t fft_bin_size;
  2131. size_t fft_bin_len_inband_tfer = 0;
  2132. uint8_t tag, signature;
  2133. qdf_assert_always(spectral);
  2134. /* There won't be FFT report/bins in report mode 0, so return */
  2135. if (!spectral->params[smode].ss_rpt_mode)
  2136. return;
  2137. fft_hdr_length = get_bitfield(
  2138. p_fft_report->fft_hdr_lts,
  2139. SPECTRAL_REPORT_LTS_HDR_LENGTH_SIZE_GEN3,
  2140. SPECTRAL_REPORT_LTS_HDR_LENGTH_POS_GEN3) * 4;
  2141. tag = get_bitfield(p_fft_report->fft_hdr_lts,
  2142. SPECTRAL_REPORT_LTS_TAG_SIZE_GEN3,
  2143. SPECTRAL_REPORT_LTS_TAG_POS_GEN3);
  2144. signature = get_bitfield(p_fft_report->fft_hdr_lts,
  2145. SPECTRAL_REPORT_LTS_SIGNATURE_SIZE_GEN3,
  2146. SPECTRAL_REPORT_LTS_SIGNATURE_POS_GEN3);
  2147. report_len = (fft_hdr_length + 8);
  2148. fft_bin_len = fft_hdr_length - spectral->rparams.fft_report_hdr_len;
  2149. fft_bin_count = target_if_spectral_get_bin_count_after_len_adj(
  2150. fft_bin_len,
  2151. spectral->params[smode].ss_rpt_mode,
  2152. &spectral->len_adj_swar, &fft_bin_size);
  2153. if ((spectral->params[smode].ss_rpt_mode == 2) &&
  2154. spectral->len_adj_swar.inband_fftbin_size_adj)
  2155. fft_bin_len_inband_tfer = fft_bin_len >> 1;
  2156. spectral_debug("Spectral FFT Report");
  2157. spectral_debug("fft_timestamp = 0x%x", p_fft_report->fft_timestamp);
  2158. spectral_debug("fft_hdr_length = %zu(32 bit words)",
  2159. fft_hdr_length >> 2);
  2160. spectral_debug("fft_hdr_tag = 0x%x", tag);
  2161. spectral_debug("fft_hdr_sig = 0x%x", signature);
  2162. spectral_debug("Length field in search fft report is %zu(0x%zx) bytes",
  2163. fft_hdr_length, fft_hdr_length);
  2164. spectral_debug("Total length of search fft report is %zu(0x%zx) bytes",
  2165. report_len, report_len);
  2166. spectral_debug("Target reported fftbins in report is %zu(0x%zx)",
  2167. fft_bin_len, fft_bin_len);
  2168. if ((spectral->params[smode].ss_rpt_mode == 1) &&
  2169. spectral->len_adj_swar.null_fftbin_adj)
  2170. spectral_debug("WAR: Considering number of FFT bins as 0");
  2171. else if ((spectral->params[smode].ss_rpt_mode == 2) &&
  2172. spectral->len_adj_swar.inband_fftbin_size_adj) {
  2173. spectral_debug("FW fftbins actually transferred (in-band report mode) %zu(0x%zx)",
  2174. fft_bin_len_inband_tfer,
  2175. fft_bin_len_inband_tfer);
  2176. }
  2177. spectral_debug("Actual number of fftbins in report is %zu(0x%zx)",
  2178. fft_bin_count, fft_bin_count);
  2179. spectral_debug("fft_detector_id = %u", p_sfft->fft_detector_id);
  2180. spectral_debug("fft_num = %u", p_sfft->fft_num);
  2181. spectral_debug("fft_radar_check = %u", p_sfft->fft_radar_check);
  2182. spectral_debug("fft_peak_sidx = %d", p_sfft->fft_peak_sidx);
  2183. spectral_debug("fft_chn_idx = %u", p_sfft->fft_chn_idx);
  2184. spectral_debug("fft_base_pwr_db = %u", p_sfft->fft_base_pwr_db);
  2185. spectral_debug("fft_total_gain_db = %u", p_sfft->fft_total_gain_db);
  2186. spectral_debug("fft_num_str_bins_ib = %u", p_sfft->fft_num_str_bins_ib);
  2187. spectral_debug("fft_peak_mag = %d", p_sfft->fft_peak_mag);
  2188. spectral_debug("fft_avgpwr_db = %u", p_sfft->fft_avgpwr_db);
  2189. spectral_debug("fft_relpwr_db = %u", p_sfft->fft_relpwr_db);
  2190. if (fft_bin_count > 0) {
  2191. uint8_t *fft_bin_buf;
  2192. uint32_t bytes_copied;
  2193. QDF_STATUS status;
  2194. fft_bin_buf = qdf_mem_malloc(fft_bin_count);
  2195. if (!fft_bin_buf) {
  2196. spectral_err_rl("memory allocation failed");
  2197. return;
  2198. }
  2199. status = target_if_spectral_copy_fft_bins(
  2200. spectral, &p_fft_report->buf,
  2201. fft_bin_buf, fft_bin_count, &bytes_copied,
  2202. spectral->params[smode].ss_pwr_format);
  2203. if (QDF_IS_STATUS_ERROR(status)) {
  2204. spectral_err_rl("Unable to populate FFT bins");
  2205. qdf_mem_free(fft_bin_buf);
  2206. return;
  2207. }
  2208. spectral_debug("FFT bin buffer size = %zu", fft_bin_count);
  2209. spectral_debug("FFT bins:");
  2210. target_if_spectral_hexdump(fft_bin_buf, fft_bin_count);
  2211. qdf_mem_free(fft_bin_buf);
  2212. }
  2213. }
  2214. #endif
  2215. #ifdef OPTIMIZED_SAMP_MESSAGE
  2216. QDF_STATUS
  2217. target_if_160mhz_delivery_state_change(struct target_if_spectral *spectral,
  2218. enum spectral_scan_mode smode,
  2219. uint8_t detector_id) {
  2220. QDF_STATUS status = QDF_STATUS_SUCCESS;
  2221. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  2222. spectral_err_rl("Invalid Spectral mode %d", smode);
  2223. return QDF_STATUS_E_INVAL;
  2224. }
  2225. if (!is_ch_width_160_or_80p80(spectral->report_info[smode].sscan_bw)) {
  2226. spectral_err_rl("Scan BW %d is not 160/80p80 for mode %d",
  2227. spectral->report_info[smode].sscan_bw, smode);
  2228. return QDF_STATUS_E_FAILURE;
  2229. }
  2230. switch (spectral->state_160mhz_delivery[smode]) {
  2231. case SPECTRAL_REPORT_WAIT_PRIMARY80:
  2232. if (detector_id == SPECTRAL_DETECTOR_ID_0)
  2233. spectral->state_160mhz_delivery[smode] =
  2234. SPECTRAL_REPORT_WAIT_SECONDARY80;
  2235. else {
  2236. status = QDF_STATUS_E_FAILURE;
  2237. spectral->diag_stats.spectral_vhtseg1id_mismatch++;
  2238. }
  2239. break;
  2240. case SPECTRAL_REPORT_WAIT_SECONDARY80:
  2241. if (detector_id == SPECTRAL_DETECTOR_ID_1)
  2242. spectral->state_160mhz_delivery[smode] =
  2243. SPECTRAL_REPORT_WAIT_PRIMARY80;
  2244. else {
  2245. spectral->state_160mhz_delivery[smode] =
  2246. SPECTRAL_REPORT_WAIT_PRIMARY80;
  2247. status = QDF_STATUS_E_FAILURE;
  2248. spectral->diag_stats.spectral_vhtseg2id_mismatch++;
  2249. }
  2250. break;
  2251. default:
  2252. break;
  2253. }
  2254. return status;
  2255. }
  2256. #else
  2257. QDF_STATUS
  2258. target_if_160mhz_delivery_state_change(struct target_if_spectral *spectral,
  2259. enum spectral_scan_mode smode,
  2260. uint8_t detector_id) {
  2261. QDF_STATUS status = QDF_STATUS_SUCCESS;
  2262. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  2263. spectral_err_rl("Invalid Spectral mode %d", smode);
  2264. return QDF_STATUS_E_INVAL;
  2265. }
  2266. if (!is_ch_width_160_or_80p80(spectral->ch_width[smode])) {
  2267. spectral_err_rl("Scan BW %d is not 160/80p80 for mode %d",
  2268. spectral->ch_width[smode], smode);
  2269. return QDF_STATUS_E_FAILURE;
  2270. }
  2271. switch (spectral->state_160mhz_delivery[smode]) {
  2272. case SPECTRAL_REPORT_WAIT_PRIMARY80:
  2273. if (detector_id == SPECTRAL_DETECTOR_ID_0)
  2274. spectral->state_160mhz_delivery[smode] =
  2275. SPECTRAL_REPORT_RX_PRIMARY80;
  2276. else {
  2277. status = QDF_STATUS_E_FAILURE;
  2278. spectral->diag_stats.spectral_vhtseg1id_mismatch++;
  2279. }
  2280. break;
  2281. case SPECTRAL_REPORT_WAIT_SECONDARY80:
  2282. if (detector_id == SPECTRAL_DETECTOR_ID_1)
  2283. spectral->state_160mhz_delivery[smode] =
  2284. SPECTRAL_REPORT_RX_SECONDARY80;
  2285. else {
  2286. spectral->state_160mhz_delivery[smode] =
  2287. SPECTRAL_REPORT_WAIT_PRIMARY80;
  2288. status = QDF_STATUS_E_FAILURE;
  2289. spectral->diag_stats.spectral_vhtseg2id_mismatch++;
  2290. }
  2291. break;
  2292. case SPECTRAL_REPORT_RX_SECONDARY80:
  2293. /* We don't care about detector id in this state. */
  2294. reset_160mhz_delivery_state_machine(spectral, smode);
  2295. break;
  2296. case SPECTRAL_REPORT_RX_PRIMARY80:
  2297. /* We don't care about detector id in this state */
  2298. spectral->state_160mhz_delivery[smode] =
  2299. SPECTRAL_REPORT_WAIT_SECONDARY80;
  2300. break;
  2301. default:
  2302. break;
  2303. }
  2304. return status;
  2305. }
  2306. #endif /* OPTIMIZED_SAMP_MESSAGE */
  2307. #ifdef DIRECT_BUF_RX_ENABLE
  2308. /**
  2309. * target_if_get_detector_id_sscan_summary_report_gen3() - Get Spectral detector
  2310. * ID from Spectral summary report
  2311. * @data: Pointer to Spectral summary report
  2312. *
  2313. * Return: Detector ID
  2314. */
  2315. static uint8_t
  2316. target_if_get_detector_id_sscan_summary_report_gen3(uint8_t *data) {
  2317. struct spectral_sscan_summary_report_gen3 *psscan_summary_report;
  2318. uint8_t detector_id;
  2319. qdf_assert_always(data);
  2320. psscan_summary_report =
  2321. (struct spectral_sscan_summary_report_gen3 *)data;
  2322. detector_id = get_bitfield(
  2323. psscan_summary_report->hdr_a,
  2324. SSCAN_SUMMARY_REPORT_HDR_A_DETECTOR_ID_SIZE_GEN3,
  2325. SSCAN_SUMMARY_REPORT_HDR_A_DETECTOR_ID_POS_GEN3);
  2326. return detector_id;
  2327. }
  2328. #ifndef OPTIMIZED_SAMP_MESSAGE
  2329. /**
  2330. * target_if_consume_sscan_summary_report_gen3() - Consume Spectral summary
  2331. * report
  2332. * @data: Pointer to Spectral summary report
  2333. * @fields: Pointer to structure to be populated with extracted fields
  2334. * @rparams: Pointer to structure with Spectral report params
  2335. *
  2336. * Consume Spectral summary report for gen3
  2337. *
  2338. * Return: void
  2339. */
  2340. static void
  2341. target_if_consume_sscan_summary_report_gen3(
  2342. uint8_t *data,
  2343. struct sscan_report_fields_gen3 *fields,
  2344. struct spectral_report_params *rparams) {
  2345. struct spectral_sscan_summary_report_gen3 *psscan_summary_report;
  2346. qdf_assert_always(data);
  2347. qdf_assert_always(fields);
  2348. qdf_assert_always(rparams);
  2349. psscan_summary_report =
  2350. (struct spectral_sscan_summary_report_gen3 *)data;
  2351. fields->sscan_agc_total_gain = get_bitfield(
  2352. psscan_summary_report->hdr_a,
  2353. SSCAN_SUMMARY_REPORT_HDR_A_AGC_TOTAL_GAIN_SIZE_GEN3,
  2354. SSCAN_SUMMARY_REPORT_HDR_A_AGC_TOTAL_GAIN_POS_GEN3);
  2355. fields->inband_pwr_db = get_bitfield(
  2356. psscan_summary_report->hdr_a,
  2357. SSCAN_SUMMARY_REPORT_HDR_A_INBAND_PWR_DB_SIZE_GEN3,
  2358. SSCAN_SUMMARY_REPORT_HDR_A_INBAND_PWR_DB_POS_GEN3);
  2359. fields->sscan_pri80 = get_bitfield(
  2360. psscan_summary_report->hdr_a,
  2361. SSCAN_SUMMARY_REPORT_HDR_A_PRI80_SIZE_GEN3,
  2362. SSCAN_SUMMARY_REPORT_HDR_A_PRI80_POS_GEN3);
  2363. switch (rparams->version) {
  2364. case SPECTRAL_REPORT_FORMAT_VERSION_1:
  2365. fields->sscan_gainchange = get_bitfield(
  2366. psscan_summary_report->hdr_b,
  2367. SSCAN_SUMMARY_REPORT_HDR_B_GAINCHANGE_SIZE_GEN3_V1,
  2368. SSCAN_SUMMARY_REPORT_HDR_B_GAINCHANGE_POS_GEN3_V1);
  2369. break;
  2370. case SPECTRAL_REPORT_FORMAT_VERSION_2:
  2371. fields->sscan_gainchange = get_bitfield(
  2372. psscan_summary_report->hdr_c,
  2373. SSCAN_SUMMARY_REPORT_HDR_C_GAINCHANGE_SIZE_GEN3_V2,
  2374. SSCAN_SUMMARY_REPORT_HDR_C_GAINCHANGE_POS_GEN3_V2);
  2375. break;
  2376. default:
  2377. qdf_assert_always(0);
  2378. }
  2379. }
  2380. #endif
  2381. /**
  2382. * target_if_verify_sig_and_tag_gen3() - Verify tag and signature
  2383. * of spectral report
  2384. * @spectral: Pointer to spectral object
  2385. * @data: Pointer to spectral summary report
  2386. * @exp_tag: iexpected tag value
  2387. *
  2388. * Process fft report for gen3
  2389. *
  2390. * Return: SUCCESS/FAILURE
  2391. */
  2392. static int
  2393. target_if_verify_sig_and_tag_gen3(struct target_if_spectral *spectral,
  2394. uint8_t *data, uint8_t exp_tag)
  2395. {
  2396. uint8_t tag = 0;
  2397. uint8_t signature = 0;
  2398. uint32_t lts;
  2399. lts = *((uint32_t *)(data + SPECTRAL_PHYERR_HDR_LTS_POS));
  2400. /* Peek into the data to figure out whether
  2401. * 1) Signature matches the expected value
  2402. * 2) What is inside the package (TAG ID is used for finding this)
  2403. */
  2404. tag = get_bitfield(lts,
  2405. SPECTRAL_REPORT_LTS_TAG_SIZE_GEN3,
  2406. SPECTRAL_REPORT_LTS_TAG_POS_GEN3);
  2407. signature = get_bitfield(lts,
  2408. SPECTRAL_REPORT_LTS_SIGNATURE_SIZE_GEN3,
  2409. SPECTRAL_REPORT_LTS_SIGNATURE_POS_GEN3);
  2410. if (signature != SPECTRAL_PHYERR_SIGNATURE_GEN3) {
  2411. spectral->diag_stats.spectral_mismatch++;
  2412. return -EINVAL;
  2413. }
  2414. if (tag != exp_tag) {
  2415. spectral->diag_stats.spectral_mismatch++;
  2416. return -EINVAL;
  2417. }
  2418. return 0;
  2419. }
  2420. static uint8_t
  2421. target_if_spectral_get_lowest_chn_idx(uint8_t chainmask)
  2422. {
  2423. uint8_t idx;
  2424. for (idx = 0; idx < DBR_MAX_CHAINS; idx++) {
  2425. if (chainmask & 0x1)
  2426. break;
  2427. chainmask >>= 1;
  2428. }
  2429. return idx;
  2430. }
  2431. #ifdef DIRECT_BUF_RX_DEBUG
  2432. static void target_if_spectral_check_buffer_poisoning(
  2433. struct target_if_spectral *spectral,
  2434. struct spectral_report *report,
  2435. int num_fft_bins, enum spectral_scan_mode smode)
  2436. {
  2437. uint32_t *data;
  2438. size_t len;
  2439. size_t words_to_check =
  2440. sizeof(struct spectral_sscan_summary_report_gen3) >> 2;
  2441. bool poisoned_words_found = false;
  2442. if (!spectral) {
  2443. spectral_err_rl("Spectral LMAC object is null");
  2444. return;
  2445. }
  2446. if (!spectral->dbr_buff_debug)
  2447. return;
  2448. if (!report) {
  2449. spectral_err_rl("Spectral report is null");
  2450. return;
  2451. }
  2452. /* Add search FFT report */
  2453. if (spectral->params[smode].ss_rpt_mode > 0)
  2454. words_to_check +=
  2455. sizeof(struct spectral_phyerr_fft_report_gen3) >> 2;
  2456. /* Now add the number of FFT bins */
  2457. if (spectral->params[smode].ss_rpt_mode > 1) {
  2458. /* Caller should take care to pass correct number of FFT bins */
  2459. if (spectral->len_adj_swar.fftbin_size_war ==
  2460. SPECTRAL_FFTBIN_SIZE_WAR_4BYTE_TO_1BYTE)
  2461. words_to_check += num_fft_bins;
  2462. else if (spectral->len_adj_swar.fftbin_size_war ==
  2463. SPECTRAL_FFTBIN_SIZE_WAR_2BYTE_TO_1BYTE)
  2464. words_to_check += (num_fft_bins >> 1);
  2465. }
  2466. data = (uint32_t *)report->data;
  2467. for (len = 0; len < words_to_check; ++len) {
  2468. if (*data == MEM_POISON_SIGNATURE) {
  2469. spectral_err("Pattern(%x) found in Spectral search FFT report at position %zu in the buffer %pK",
  2470. MEM_POISON_SIGNATURE,
  2471. (len << 2), report->data);
  2472. poisoned_words_found = true;
  2473. break;
  2474. }
  2475. ++data;
  2476. }
  2477. /* Crash the FW even if one word is poisoned */
  2478. if (poisoned_words_found) {
  2479. spectral_err("Pattern(%x) found in Spectral report, Hex dump of the sfft follows",
  2480. MEM_POISON_SIGNATURE);
  2481. target_if_spectral_hexdump((unsigned char *)report->data,
  2482. words_to_check << 2);
  2483. spectral_err("Asserting the FW");
  2484. target_if_spectral_fw_hang(spectral);
  2485. }
  2486. }
  2487. #ifdef OPTIMIZED_SAMP_MESSAGE
  2488. static void target_if_spectral_verify_ts(struct target_if_spectral *spectral,
  2489. uint8_t *buf, uint32_t current_ts,
  2490. uint8_t detector_id)
  2491. {
  2492. if (!spectral) {
  2493. spectral_err_rl("Spectral LMAC object is null");
  2494. return;
  2495. }
  2496. if (detector_id >= MAX_DETECTORS_PER_PDEV) {
  2497. spectral_err_rl("Spectral detector_id %d exceeds range",
  2498. detector_id);
  2499. return;
  2500. }
  2501. if (!spectral->dbr_buff_debug)
  2502. return;
  2503. if (spectral->prev_tstamp[detector_id]) {
  2504. if (current_ts == spectral->prev_tstamp[detector_id]) {
  2505. spectral_err("Spectral timestamp(%u) in the current buffer(%pK) is equal to the previous timestamp, same report DMAed twice? Asserting the FW",
  2506. current_ts, buf);
  2507. target_if_spectral_fw_hang(spectral);
  2508. }
  2509. }
  2510. spectral->prev_tstamp[detector_id] = current_ts;
  2511. }
  2512. #else
  2513. static void target_if_spectral_verify_ts(struct target_if_spectral *spectral,
  2514. uint8_t *buf, uint32_t current_ts)
  2515. {
  2516. if (!spectral) {
  2517. spectral_err_rl("Spectral LMAC object is null");
  2518. return;
  2519. }
  2520. if (!spectral->dbr_buff_debug)
  2521. return;
  2522. if (spectral->prev_tstamp) {
  2523. if (current_ts == spectral->prev_tstamp) {
  2524. spectral_err("Spectral timestamp(%u) in the current buffer(%pK) is equal to the previous timestamp, same report DMAed twice? Asserting the FW",
  2525. current_ts, buf);
  2526. target_if_spectral_fw_hang(spectral);
  2527. }
  2528. }
  2529. spectral->prev_tstamp = current_ts;
  2530. }
  2531. #endif /* OPTIMIZED_SAMP_MESSAGE */
  2532. #else
  2533. static void target_if_spectral_check_buffer_poisoning(
  2534. struct target_if_spectral *spectral,
  2535. struct spectral_report *report,
  2536. int num_fft_bins, enum spectral_scan_mode smode)
  2537. {
  2538. }
  2539. #ifdef OPTIMIZED_SAMP_MESSAGE
  2540. static void target_if_spectral_verify_ts(struct target_if_spectral *spectral,
  2541. uint8_t *buf, uint32_t current_ts,
  2542. uint8_t detector_id)
  2543. {
  2544. }
  2545. #else
  2546. static void target_if_spectral_verify_ts(struct target_if_spectral *spectral,
  2547. uint8_t *buf, uint32_t current_ts)
  2548. {
  2549. }
  2550. #endif /* OPTIMIZED_SAMP_MESSAGE */
  2551. #endif
  2552. /**
  2553. * target_if_spectral_get_adjusted_timestamp() - Adjust Spectral time
  2554. * stamp to account for reset in time stamp due to target reset
  2555. * @twar: Spectral time stamp WAR related information
  2556. * @raw_timestamp: Spectral time stamp reported by target
  2557. * @reset_delay: Reset delay at target
  2558. * @smode: Spectral scan mode
  2559. *
  2560. * Correct time stamp to account for reset in time stamp due to target reset
  2561. *
  2562. * Return: Adjusted time stamp
  2563. */
  2564. static uint32_t
  2565. target_if_spectral_get_adjusted_timestamp(struct spectral_timestamp_war *twar,
  2566. uint32_t raw_timestamp,
  2567. uint32_t reset_delay,
  2568. enum spectral_scan_mode smode) {
  2569. qdf_assert_always(smode < SPECTRAL_SCAN_MODE_MAX);
  2570. if (reset_delay) {
  2571. enum spectral_scan_mode m =
  2572. SPECTRAL_SCAN_MODE_NORMAL;
  2573. /* Adjust the offset for all the Spectral modes.
  2574. * Target will be sending the non zero reset delay for
  2575. * the first Spectral report after reset. This delay is
  2576. * common for all the Spectral modes.
  2577. */
  2578. for (; m < SPECTRAL_SCAN_MODE_MAX; m++)
  2579. twar->timestamp_war_offset[m] += (reset_delay +
  2580. twar->last_fft_timestamp[m]);
  2581. twar->target_reset_count++;
  2582. }
  2583. twar->last_fft_timestamp[smode] = raw_timestamp;
  2584. return raw_timestamp + twar->timestamp_war_offset[smode];
  2585. }
  2586. #ifdef BIG_ENDIAN_HOST
  2587. QDF_STATUS target_if_byte_swap_spectral_headers_gen3(
  2588. struct target_if_spectral *spectral,
  2589. void *data)
  2590. {
  2591. int i;
  2592. uint32_t *ptr32;
  2593. size_t words32;
  2594. qdf_assert_always(data);
  2595. qdf_assert_always(spectral);
  2596. ptr32 = (uint32_t *)data;
  2597. /* Summary Report */
  2598. words32 = sizeof(struct spectral_sscan_summary_report_gen3) >> 2;
  2599. for (i = 0; i < words32; ++i) {
  2600. *ptr32 = qdf_le32_to_cpu(*ptr32);
  2601. ++ptr32;
  2602. }
  2603. /* No need to swap the padding bytes */
  2604. ptr32 += (spectral->rparams.ssummary_padding_bytes >> 2);
  2605. /* Search FFT Report */
  2606. words32 = sizeof(struct spectral_phyerr_fft_report_gen3) >> 2;
  2607. for (i = 0; i < words32; ++i) {
  2608. *ptr32 = qdf_le32_to_cpu(*ptr32);
  2609. ++ptr32;
  2610. }
  2611. return QDF_STATUS_SUCCESS;
  2612. }
  2613. QDF_STATUS target_if_byte_swap_spectral_fft_bins_gen3(
  2614. const struct spectral_report_params *rparams,
  2615. void *bin_pwr_data, size_t num_fftbins)
  2616. {
  2617. uint16_t dword_idx, num_dwords;
  2618. uint8_t num_bins_per_dword;
  2619. uint32_t *dword_ptr;
  2620. qdf_assert_always(bin_pwr_data);
  2621. qdf_assert_always(rparams);
  2622. num_bins_per_dword = SPECTRAL_DWORD_SIZE / rparams->hw_fft_bin_width;
  2623. num_dwords = num_fftbins / num_bins_per_dword;
  2624. dword_ptr = (uint32_t *)bin_pwr_data;
  2625. for (dword_idx = 0; dword_idx < num_dwords; dword_idx++) {
  2626. /* Read a DWORD, byteswap it, and copy it back */
  2627. *dword_ptr = qdf_le32_to_cpu(*dword_ptr);
  2628. ++dword_ptr;
  2629. }
  2630. return QDF_STATUS_SUCCESS;
  2631. }
  2632. #endif /* BIG_ENDIAN_HOST */
  2633. #ifdef OPTIMIZED_SAMP_MESSAGE
  2634. /**
  2635. * target_if_consume_sscan_summary_report_gen3() - Consume Spectral summary
  2636. * report
  2637. * @data: Pointer to Spectral summary report
  2638. * @fields: Pointer to structure to be populated with extracted fields
  2639. * @spectral: Pointer to spectral object
  2640. *
  2641. * Consume Spectral summary report for gen3
  2642. *
  2643. * Return: Success/Failure
  2644. */
  2645. static QDF_STATUS
  2646. target_if_consume_sscan_summary_report_gen3(
  2647. uint8_t **data,
  2648. struct sscan_report_fields_gen3 *fields,
  2649. struct target_if_spectral *spectral)
  2650. {
  2651. struct spectral_sscan_summary_report_gen3 *psscan_summary_report;
  2652. struct spectral_sscan_summary_report_padding_gen3_v2 *padding;
  2653. bool scan_radio_blanking;
  2654. if (!data) {
  2655. spectral_err_rl("Summary report buffer is null");
  2656. return QDF_STATUS_E_NULL_VALUE;
  2657. }
  2658. if (!fields) {
  2659. spectral_err_rl("Invalid pointer to Summary report fields");
  2660. return QDF_STATUS_E_NULL_VALUE;
  2661. }
  2662. if (!spectral) {
  2663. spectral_err_rl("Spectral LMAC object is null");
  2664. return QDF_STATUS_E_NULL_VALUE;
  2665. }
  2666. /* Validate Spectral scan summary report */
  2667. if (target_if_verify_sig_and_tag_gen3(
  2668. spectral, *data,
  2669. TLV_TAG_SPECTRAL_SUMMARY_REPORT_GEN3) != 0) {
  2670. spectral_err_rl("Wrong tag/sig in sscan summary");
  2671. return QDF_STATUS_E_FAILURE;
  2672. }
  2673. fields->sscan_detector_id =
  2674. target_if_get_detector_id_sscan_summary_report_gen3(*data);
  2675. if (fields->sscan_detector_id >=
  2676. spectral->rparams.num_spectral_detectors) {
  2677. spectral->diag_stats.spectral_invalid_detector_id++;
  2678. spectral_err_rl("Invalid detector id %u, expected is 0 to %u",
  2679. fields->sscan_detector_id,
  2680. spectral->rparams.num_spectral_detectors);
  2681. return QDF_STATUS_E_FAILURE;
  2682. }
  2683. psscan_summary_report =
  2684. (struct spectral_sscan_summary_report_gen3 *)*data;
  2685. fields->sscan_agc_total_gain = get_bitfield(
  2686. psscan_summary_report->hdr_a,
  2687. SSCAN_SUMMARY_REPORT_HDR_A_AGC_TOTAL_GAIN_SIZE_GEN3,
  2688. SSCAN_SUMMARY_REPORT_HDR_A_AGC_TOTAL_GAIN_POS_GEN3);
  2689. fields->inband_pwr_db = get_bitfield(
  2690. psscan_summary_report->hdr_a,
  2691. SSCAN_SUMMARY_REPORT_HDR_A_INBAND_PWR_DB_SIZE_GEN3,
  2692. SSCAN_SUMMARY_REPORT_HDR_A_INBAND_PWR_DB_POS_GEN3);
  2693. fields->sscan_pri80 = get_bitfield(
  2694. psscan_summary_report->hdr_a,
  2695. SSCAN_SUMMARY_REPORT_HDR_A_PRI80_SIZE_GEN3,
  2696. SSCAN_SUMMARY_REPORT_HDR_A_PRI80_POS_GEN3);
  2697. switch (spectral->rparams.version) {
  2698. case SPECTRAL_REPORT_FORMAT_VERSION_1:
  2699. fields->sscan_gainchange = get_bitfield(
  2700. psscan_summary_report->hdr_b,
  2701. SSCAN_SUMMARY_REPORT_HDR_B_GAINCHANGE_SIZE_GEN3_V1,
  2702. SSCAN_SUMMARY_REPORT_HDR_B_GAINCHANGE_POS_GEN3_V1);
  2703. break;
  2704. case SPECTRAL_REPORT_FORMAT_VERSION_2:
  2705. fields->sscan_gainchange = get_bitfield(
  2706. psscan_summary_report->hdr_c,
  2707. SSCAN_SUMMARY_REPORT_HDR_C_GAINCHANGE_SIZE_GEN3_V2,
  2708. SSCAN_SUMMARY_REPORT_HDR_C_GAINCHANGE_POS_GEN3_V2);
  2709. break;
  2710. default:
  2711. qdf_assert_always(0);
  2712. }
  2713. /* Advance buf pointer to the search fft report */
  2714. *data += sizeof(struct spectral_sscan_summary_report_gen3);
  2715. if (!spectral->rparams.ssummary_padding_bytes)
  2716. return QDF_STATUS_SUCCESS;
  2717. scan_radio_blanking =
  2718. wlan_pdev_nif_feat_ext_cap_get(spectral->pdev_obj,
  2719. WLAN_PDEV_FEXT_SCAN_BLANKING_EN);
  2720. padding = (struct spectral_sscan_summary_report_padding_gen3_v2 *)*data;
  2721. if (scan_radio_blanking) {
  2722. uint32_t blanking_tag;
  2723. uint8_t blanking_tag_size;
  2724. uint8_t blanking_tag_pos;
  2725. blanking_tag_size =
  2726. SSCAN_SUMMARY_REPORT_PAD_HDR_A_BLANKING_SIZE_GEN3_V2;
  2727. blanking_tag_pos =
  2728. SSCAN_SUMMARY_REPORT_PAD_HDR_A_BLANKING_POS_GEN3_V2;
  2729. blanking_tag = get_bitfield(padding->hdr_a, blanking_tag_size,
  2730. blanking_tag_pos);
  2731. if (blanking_tag ==
  2732. SSCAN_SUMMARY_REPORT_PAD_HDR_A_BLANKING_TAG_GEN3_V2)
  2733. fields->blanking_status = 1;
  2734. else
  2735. fields->blanking_status = 0;
  2736. }
  2737. *data += sizeof(struct spectral_sscan_summary_report_padding_gen3_v2);
  2738. return QDF_STATUS_SUCCESS;
  2739. }
  2740. /**
  2741. * target_if_process_sfft_report_gen3() - Validate and Process Search
  2742. * FFT Report for gen3
  2743. * @data: Pointer to Spectral FFT report
  2744. * @p_sfft: Pointer to search fft report
  2745. * @spectral: Pointer to spectral object
  2746. * @sscan_detector_id: Spectral detector id extracted from Summary report
  2747. * @reset_delay: Time taken for warm reset in usec
  2748. *
  2749. * Validate and Process Search FFT Report for gen3
  2750. *
  2751. * Return: Success/Failure
  2752. */
  2753. static QDF_STATUS
  2754. target_if_process_sfft_report_gen3(
  2755. uint8_t *data,
  2756. struct spectral_search_fft_info_gen3 *p_sfft,
  2757. struct target_if_spectral *spectral,
  2758. enum spectral_detector_id sscan_detector_id,
  2759. uint32_t reset_delay)
  2760. {
  2761. struct spectral_phyerr_fft_report_gen3 *p_fft_report;
  2762. int32_t peak_sidx = 0;
  2763. int32_t peak_mag;
  2764. int fft_hdr_length = 0;
  2765. struct target_if_spectral_ops *p_sops;
  2766. enum spectral_scan_mode spectral_mode;
  2767. QDF_STATUS ret;
  2768. if (!data) {
  2769. spectral_err_rl("FFT report buffer is null");
  2770. return QDF_STATUS_E_NULL_VALUE;
  2771. }
  2772. if (!p_sfft) {
  2773. spectral_err_rl("Invalid pointer to Search FFT report info");
  2774. return QDF_STATUS_E_NULL_VALUE;
  2775. }
  2776. if (!spectral) {
  2777. spectral_err_rl("Spectral LMAC object is null");
  2778. return QDF_STATUS_E_NULL_VALUE;
  2779. }
  2780. /*
  2781. * For easy comparison between MDK team and OS team, the MDK script
  2782. * variable names have been used
  2783. */
  2784. p_sops = GET_TARGET_IF_SPECTRAL_OPS(spectral);
  2785. /* Validate Spectral search FFT report */
  2786. if (target_if_verify_sig_and_tag_gen3(
  2787. spectral, data, TLV_TAG_SEARCH_FFT_REPORT_GEN3) != 0) {
  2788. spectral_err_rl("Unexpected tag/sig in sfft, detid= %u",
  2789. sscan_detector_id);
  2790. return QDF_STATUS_E_FAILURE;
  2791. }
  2792. p_fft_report = (struct spectral_phyerr_fft_report_gen3 *)data;
  2793. fft_hdr_length = get_bitfield(
  2794. p_fft_report->fft_hdr_lts,
  2795. SPECTRAL_REPORT_LTS_HDR_LENGTH_SIZE_GEN3,
  2796. SPECTRAL_REPORT_LTS_HDR_LENGTH_POS_GEN3) * 4;
  2797. if (fft_hdr_length < 16) {
  2798. spectral_err("Wrong TLV length %u, detector id = %d",
  2799. fft_hdr_length, sscan_detector_id);
  2800. return QDF_STATUS_E_FAILURE;
  2801. }
  2802. p_sfft->fft_detector_id = get_bitfield(
  2803. p_fft_report->hdr_a,
  2804. FFT_REPORT_HDR_A_DETECTOR_ID_SIZE_GEN3,
  2805. FFT_REPORT_HDR_A_DETECTOR_ID_POS_GEN3);
  2806. /* It is expected to have same detector id for
  2807. * summary and fft report
  2808. */
  2809. if (sscan_detector_id != p_sfft->fft_detector_id) {
  2810. spectral_err_rl("Different detid in ssummary(%u) and sfft(%u)",
  2811. sscan_detector_id, p_sfft->fft_detector_id);
  2812. return QDF_STATUS_E_FAILURE;
  2813. }
  2814. if (p_sfft->fft_detector_id >
  2815. spectral->rparams.num_spectral_detectors) {
  2816. spectral->diag_stats.spectral_invalid_detector_id++;
  2817. spectral_err("Invalid detector id %u, expected is 0 to %u",
  2818. p_sfft->fft_detector_id,
  2819. spectral->rparams.num_spectral_detectors);
  2820. return QDF_STATUS_E_FAILURE;
  2821. }
  2822. spectral_mode = target_if_get_spectral_mode(p_sfft->fft_detector_id,
  2823. &spectral->rparams);
  2824. if (spectral_mode >= SPECTRAL_SCAN_MODE_MAX) {
  2825. spectral_err_rl("No valid Spectral mode for detector id %u",
  2826. p_sfft->fft_detector_id);
  2827. return QDF_STATUS_E_FAILURE;
  2828. }
  2829. /* Populate the Search FFT Info */
  2830. p_sfft->timestamp = p_fft_report->fft_timestamp;
  2831. p_sfft->last_raw_timestamp = spectral->timestamp_war.
  2832. last_fft_timestamp[spectral_mode];
  2833. p_sfft->adjusted_timestamp = target_if_spectral_get_adjusted_timestamp(
  2834. &spectral->timestamp_war,
  2835. p_sfft->timestamp,
  2836. reset_delay,
  2837. spectral_mode);
  2838. /* Timestamp verification */
  2839. target_if_spectral_verify_ts(spectral, data,
  2840. p_sfft->adjusted_timestamp,
  2841. p_sfft->fft_detector_id);
  2842. p_sfft->fft_num = get_bitfield(p_fft_report->hdr_a,
  2843. FFT_REPORT_HDR_A_FFT_NUM_SIZE_GEN3,
  2844. FFT_REPORT_HDR_A_FFT_NUM_POS_GEN3);
  2845. switch (spectral->rparams.version) {
  2846. case SPECTRAL_REPORT_FORMAT_VERSION_1:
  2847. p_sfft->fft_radar_check = get_bitfield(p_fft_report->hdr_a,
  2848. FFT_REPORT_HDR_A_RADAR_CHECK_SIZE_GEN3_V1,
  2849. FFT_REPORT_HDR_A_RADAR_CHECK_POS_GEN3_V1);
  2850. peak_sidx = get_bitfield(
  2851. p_fft_report->hdr_a,
  2852. FFT_REPORT_HDR_A_PEAK_INDEX_SIZE_GEN3_V1,
  2853. FFT_REPORT_HDR_A_PEAK_INDEX_POS_GEN3_V1);
  2854. p_sfft->fft_chn_idx = get_bitfield(p_fft_report->hdr_a,
  2855. FFT_REPORT_HDR_A_CHAIN_INDEX_SIZE_GEN3_V1,
  2856. FFT_REPORT_HDR_A_CHAIN_INDEX_POS_GEN3_V1);
  2857. p_sfft->fft_base_pwr_db = get_bitfield(p_fft_report->hdr_b,
  2858. FFT_REPORT_HDR_B_BASE_PWR_SIZE_GEN3_V1,
  2859. FFT_REPORT_HDR_B_BASE_PWR_POS_GEN3_V1);
  2860. p_sfft->fft_total_gain_db = get_bitfield(p_fft_report->hdr_b,
  2861. FFT_REPORT_HDR_B_TOTAL_GAIN_SIZE_GEN3_V1,
  2862. FFT_REPORT_HDR_B_TOTAL_GAIN_POS_GEN3_V1);
  2863. break;
  2864. case SPECTRAL_REPORT_FORMAT_VERSION_2:
  2865. p_sfft->fft_radar_check = get_bitfield(p_fft_report->hdr_a,
  2866. FFT_REPORT_HDR_A_RADAR_CHECK_SIZE_GEN3_V2,
  2867. FFT_REPORT_HDR_A_RADAR_CHECK_POS_GEN3_V2);
  2868. peak_sidx = get_bitfield(
  2869. p_fft_report->hdr_a,
  2870. FFT_REPORT_HDR_A_PEAK_INDEX_SIZE_GEN3_V2,
  2871. FFT_REPORT_HDR_A_PEAK_INDEX_POS_GEN3_V2);
  2872. p_sfft->fft_chn_idx = get_bitfield(p_fft_report->hdr_b,
  2873. FFT_REPORT_HDR_B_CHAIN_INDEX_SIZE_GEN3_V2,
  2874. FFT_REPORT_HDR_B_CHAIN_INDEX_POS_GEN3_V2);
  2875. p_sfft->fft_base_pwr_db = get_bitfield(p_fft_report->hdr_b,
  2876. FFT_REPORT_HDR_B_BASE_PWR_SIZE_GEN3_V2,
  2877. FFT_REPORT_HDR_B_BASE_PWR_POS_GEN3_V2);
  2878. p_sfft->fft_total_gain_db = get_bitfield(p_fft_report->hdr_b,
  2879. FFT_REPORT_HDR_B_TOTAL_GAIN_SIZE_GEN3_V2,
  2880. FFT_REPORT_HDR_B_TOTAL_GAIN_POS_GEN3_V2);
  2881. break;
  2882. default:
  2883. qdf_assert_always(0);
  2884. }
  2885. p_sfft->fft_peak_sidx = unsigned_to_signed(peak_sidx,
  2886. FFT_REPORT_HDR_A_PEAK_INDEX_SIZE_GEN3_V1);
  2887. p_sfft->fft_num_str_bins_ib = get_bitfield(p_fft_report->hdr_c,
  2888. FFT_REPORT_HDR_C_NUM_STRONG_BINS_SIZE_GEN3,
  2889. FFT_REPORT_HDR_C_NUM_STRONG_BINS_POS_GEN3);
  2890. peak_mag = get_bitfield(p_fft_report->hdr_c,
  2891. FFT_REPORT_HDR_C_PEAK_MAGNITUDE_SIZE_GEN3,
  2892. FFT_REPORT_HDR_C_PEAK_MAGNITUDE_POS_GEN3);
  2893. p_sfft->fft_peak_mag = unsigned_to_signed(peak_mag,
  2894. FFT_REPORT_HDR_C_PEAK_MAGNITUDE_SIZE_GEN3);
  2895. p_sfft->fft_avgpwr_db = get_bitfield(p_fft_report->hdr_c,
  2896. FFT_REPORT_HDR_C_AVG_PWR_SIZE_GEN3,
  2897. FFT_REPORT_HDR_C_AVG_PWR_POS_GEN3);
  2898. p_sfft->fft_relpwr_db = get_bitfield(p_fft_report->hdr_c,
  2899. FFT_REPORT_HDR_C_RELATIVE_PWR_SIZE_GEN3,
  2900. FFT_REPORT_HDR_C_RELATIVE_PWR_POS_GEN3);
  2901. p_sfft->fft_bin_count =
  2902. target_if_spectral_get_bin_count_after_len_adj(
  2903. fft_hdr_length - spectral->rparams.fft_report_hdr_len,
  2904. spectral->params[spectral_mode].ss_rpt_mode,
  2905. &spectral->len_adj_swar,
  2906. (size_t *)&p_sfft->fft_bin_size);
  2907. p_sfft->bin_pwr_data = (uint8_t *)p_fft_report + SPECTRAL_FFT_BINS_POS;
  2908. /* Apply byte-swap on the FFT bins.
  2909. * NOTE: Until this point, bytes of the FFT bins could be in
  2910. * reverse order on a big-endian machine. If the consumers
  2911. * of FFT bins expects bytes in the correct order,
  2912. * they should use them only after this point.
  2913. */
  2914. if (p_sops->byte_swap_fft_bins) {
  2915. ret = p_sops->byte_swap_fft_bins(&spectral->rparams,
  2916. &p_sfft->bin_pwr_data,
  2917. p_sfft->fft_bin_count);
  2918. if (QDF_IS_STATUS_ERROR(ret)) {
  2919. spectral_err_rl("Byte-swap on the FFT bins failed");
  2920. return QDF_STATUS_E_FAILURE;
  2921. }
  2922. }
  2923. return QDF_STATUS_SUCCESS;
  2924. }
  2925. /**
  2926. * target_if_spectral_populate_samp_params_gen3() - Populate the SAMP params
  2927. * for gen3. SAMP params are to be used for populating SAMP msg.
  2928. * @spectral: Pointer to spectral object
  2929. * @p_sfft: Fields extracted from FFT report
  2930. * @sscan_fields: Fields extracted from Summary report
  2931. * @report: Pointer to spectral report
  2932. * @params: Pointer to Spectral SAMP message fields to be populated
  2933. *
  2934. * Populate the SAMP params for gen3, which will be used to populate SAMP msg.
  2935. *
  2936. * Return: Success/Failure
  2937. */
  2938. static QDF_STATUS
  2939. target_if_spectral_populate_samp_params_gen3(
  2940. struct target_if_spectral *spectral,
  2941. struct spectral_search_fft_info_gen3 *p_sfft,
  2942. struct sscan_report_fields_gen3 *sscan_fields,
  2943. struct spectral_report *report,
  2944. struct target_if_samp_msg_params *params)
  2945. {
  2946. enum spectral_scan_mode spectral_mode;
  2947. uint8_t chn_idx_lowest_enabled;
  2948. struct wlan_objmgr_vdev *vdev;
  2949. uint8_t vdev_rxchainmask;
  2950. if (!p_sfft) {
  2951. spectral_err_rl("Invalid pointer to Search FFT report info");
  2952. return QDF_STATUS_E_NULL_VALUE;
  2953. }
  2954. if (!spectral) {
  2955. spectral_err_rl("Spectral LMAC object is null");
  2956. return QDF_STATUS_E_NULL_VALUE;
  2957. }
  2958. if (!sscan_fields) {
  2959. spectral_err_rl("Invalid pointer to Summary report fields");
  2960. return QDF_STATUS_E_NULL_VALUE;
  2961. }
  2962. if (!report) {
  2963. spectral_err_rl("Spectral report is null");
  2964. return QDF_STATUS_E_NULL_VALUE;
  2965. }
  2966. if (!params) {
  2967. spectral_err_rl("SAMP msg params structure is null");
  2968. return QDF_STATUS_E_NULL_VALUE;
  2969. }
  2970. /* RSSI is in 1/2 dBm steps, Convert it to dBm scale */
  2971. params->rssi = (sscan_fields->inband_pwr_db) >> 1;
  2972. params->hw_detector_id = p_sfft->fft_detector_id;
  2973. params->raw_timestamp = p_sfft->timestamp;
  2974. params->last_raw_timestamp = p_sfft->last_raw_timestamp;
  2975. params->timestamp = p_sfft->adjusted_timestamp;
  2976. params->reset_delay = report->reset_delay;
  2977. params->max_mag = p_sfft->fft_peak_mag;
  2978. spectral_mode = target_if_get_spectral_mode(params->hw_detector_id,
  2979. &spectral->rparams);
  2980. vdev = target_if_spectral_get_vdev(spectral, spectral_mode);
  2981. if (!vdev) {
  2982. spectral_debug("First vdev is NULL");
  2983. return QDF_STATUS_E_FAILURE;
  2984. }
  2985. vdev_rxchainmask = wlan_vdev_mlme_get_rxchainmask(vdev);
  2986. QDF_ASSERT(vdev_rxchainmask != 0);
  2987. wlan_objmgr_vdev_release_ref(vdev, WLAN_SPECTRAL_ID);
  2988. chn_idx_lowest_enabled =
  2989. target_if_spectral_get_lowest_chn_idx(vdev_rxchainmask);
  2990. if (chn_idx_lowest_enabled >= DBR_MAX_CHAINS) {
  2991. spectral_err("Invalid chain index, detector id = %u",
  2992. params->hw_detector_id);
  2993. return QDF_STATUS_E_FAILURE;
  2994. }
  2995. params->noise_floor = report->noisefloor[chn_idx_lowest_enabled];
  2996. params->agc_total_gain = sscan_fields->sscan_agc_total_gain;
  2997. params->gainchange = sscan_fields->sscan_gainchange;
  2998. params->blanking_status = sscan_fields->blanking_status;
  2999. params->pri80ind = sscan_fields->sscan_pri80;
  3000. params->bin_pwr_data = p_sfft->bin_pwr_data;
  3001. return QDF_STATUS_SUCCESS;
  3002. }
  3003. int
  3004. target_if_consume_spectral_report_gen3(
  3005. struct target_if_spectral *spectral,
  3006. struct spectral_report *report)
  3007. {
  3008. /*
  3009. * XXX : The classifier do not use all the members of the SAMP
  3010. * message data format.
  3011. * The classifier only depends upon the following parameters
  3012. *
  3013. * 1. Frequency
  3014. * 2. Spectral RSSI
  3015. * 3. Bin Power Count
  3016. * 4. Bin Power values
  3017. * 5. Spectral Timestamp
  3018. * 6. MAC Address
  3019. *
  3020. * This function processes the Spectral summary and FFT reports
  3021. * and passes the processed information
  3022. * target_if_spectral_fill_samp_msg()
  3023. * to prepare fully formatted Spectral SAMP message
  3024. *
  3025. * XXX : Need to verify
  3026. * 1. Order of FFT bin values
  3027. *
  3028. */
  3029. struct target_if_samp_msg_params params = {0};
  3030. struct spectral_search_fft_info_gen3 search_fft_info;
  3031. struct spectral_search_fft_info_gen3 *p_sfft = &search_fft_info;
  3032. struct target_if_spectral_ops *p_sops;
  3033. struct spectral_phyerr_fft_report_gen3 *p_fft_report;
  3034. uint8_t *data;
  3035. struct sscan_report_fields_gen3 sscan_report_fields = {0};
  3036. QDF_STATUS ret;
  3037. enum spectral_scan_mode spectral_mode = SPECTRAL_SCAN_MODE_INVALID;
  3038. bool finite_scan = false;
  3039. int det = 0;
  3040. struct sscan_detector_list *det_list;
  3041. struct spectral_data_stats *spectral_dp_stats;
  3042. bool print_fail_msg = true;
  3043. if (!spectral) {
  3044. spectral_err_rl("Spectral LMAC object is null");
  3045. print_fail_msg = false;
  3046. goto fail;
  3047. }
  3048. qdf_spin_lock_bh(&spectral->spectral_lock);
  3049. spectral_dp_stats = &spectral->data_stats;
  3050. spectral_dp_stats->consume_spectral_calls++;
  3051. if (!report) {
  3052. spectral_err_rl("Spectral report is null");
  3053. print_fail_msg = false;
  3054. goto fail_unlock;
  3055. }
  3056. p_sops = GET_TARGET_IF_SPECTRAL_OPS(spectral);
  3057. data = report->data;
  3058. /* Apply byte-swap on the headers */
  3059. if (p_sops->byte_swap_headers) {
  3060. ret = p_sops->byte_swap_headers(spectral, data);
  3061. if (QDF_IS_STATUS_ERROR(ret)) {
  3062. spectral_err_rl("Byte-swap on Spectral headers failed");
  3063. goto fail_unlock;
  3064. }
  3065. }
  3066. /* Validate and Process Spectral scan summary report */
  3067. ret = target_if_consume_sscan_summary_report_gen3(&data,
  3068. &sscan_report_fields,
  3069. spectral);
  3070. if (QDF_IS_STATUS_ERROR(ret)) {
  3071. spectral_err_rl("Failed to process Spectral summary report");
  3072. goto fail_unlock;
  3073. }
  3074. spectral_mode = target_if_get_spectral_mode(
  3075. sscan_report_fields.sscan_detector_id,
  3076. &spectral->rparams);
  3077. if (spectral_mode >= SPECTRAL_SCAN_MODE_MAX) {
  3078. spectral_err_rl("No valid Spectral mode for detector id %u",
  3079. sscan_report_fields.sscan_detector_id);
  3080. goto fail_unlock;
  3081. }
  3082. /* Drop the sample if Spectral is not active for the current mode */
  3083. if (!p_sops->is_spectral_active(spectral, spectral_mode)) {
  3084. spectral_info_rl("Spectral scan is not active");
  3085. print_fail_msg = false;
  3086. goto fail_unlock;
  3087. }
  3088. /* Validate and Process the search FFT report */
  3089. ret = target_if_process_sfft_report_gen3(
  3090. data, p_sfft,
  3091. spectral,
  3092. sscan_report_fields.sscan_detector_id,
  3093. report->reset_delay);
  3094. if (QDF_IS_STATUS_ERROR(ret)) {
  3095. spectral_err_rl("Failed to process search FFT report");
  3096. goto fail_unlock;
  3097. }
  3098. qdf_spin_lock_bh(&spectral->detector_list_lock);
  3099. det_list = &spectral->detector_list[spectral_mode]
  3100. [spectral->report_info[spectral_mode].sscan_bw];
  3101. for (det = 0; det < det_list->num_detectors; det++) {
  3102. if (p_sfft->fft_detector_id == det_list->detectors[det])
  3103. break;
  3104. if (det == det_list->num_detectors - 1) {
  3105. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  3106. spectral_info("Incorrect det id %d for given scan mode and channel width",
  3107. p_sfft->fft_detector_id);
  3108. print_fail_msg = false;
  3109. goto fail_unlock;
  3110. }
  3111. }
  3112. qdf_spin_unlock_bh(&spectral->detector_list_lock);
  3113. ret = target_if_update_session_info_from_report_ctx(
  3114. spectral,
  3115. p_sfft->fft_bin_size,
  3116. report->cfreq1, report->cfreq2,
  3117. spectral_mode);
  3118. if (QDF_IS_STATUS_ERROR(ret)) {
  3119. spectral_err_rl("Failed to update per-session info");
  3120. goto fail_unlock;
  3121. }
  3122. qdf_spin_lock_bh(&spectral->session_report_info_lock);
  3123. /* Check FFT report are in order for 160 MHz and 80p80 */
  3124. if (is_ch_width_160_or_80p80(
  3125. spectral->report_info[spectral_mode].sscan_bw) &&
  3126. spectral->rparams.fragmentation_160[spectral_mode]) {
  3127. ret = target_if_160mhz_delivery_state_change(
  3128. spectral, spectral_mode,
  3129. p_sfft->fft_detector_id);
  3130. if (ret != QDF_STATUS_SUCCESS) {
  3131. qdf_spin_unlock_bh(
  3132. &spectral->session_report_info_lock);
  3133. goto fail_unlock;
  3134. }
  3135. }
  3136. qdf_spin_unlock_bh(&spectral->session_report_info_lock);
  3137. p_fft_report = (struct spectral_phyerr_fft_report_gen3 *)data;
  3138. if (spectral_debug_level & (DEBUG_SPECTRAL2 | DEBUG_SPECTRAL4))
  3139. target_if_dump_fft_report_gen3(spectral, spectral_mode,
  3140. p_fft_report, p_sfft);
  3141. target_if_spectral_check_buffer_poisoning(spectral, report,
  3142. p_sfft->fft_bin_count,
  3143. spectral_mode);
  3144. /* Populate SAMP params */
  3145. ret = target_if_spectral_populate_samp_params_gen3(
  3146. spectral, p_sfft,
  3147. &sscan_report_fields,
  3148. report, &params);
  3149. if (QDF_IS_STATUS_ERROR(ret)) {
  3150. spectral_err_rl("Failed to populate SAMP params");
  3151. goto fail_unlock;
  3152. }
  3153. /* Fill SAMP message */
  3154. ret = target_if_spectral_fill_samp_msg(spectral, &params);
  3155. if (QDF_IS_STATUS_ERROR(ret)) {
  3156. spectral_err_rl("Failed to fill the SAMP msg");
  3157. goto fail_unlock;
  3158. }
  3159. qdf_spin_unlock_bh(&spectral->spectral_lock);
  3160. ret = target_if_spectral_is_finite_scan(spectral, spectral_mode,
  3161. &finite_scan);
  3162. if (QDF_IS_STATUS_ERROR(ret)) {
  3163. spectral_err_rl("Failed to check scan is finite");
  3164. goto fail;
  3165. }
  3166. if (finite_scan) {
  3167. ret = target_if_spectral_finite_scan_update(spectral,
  3168. spectral_mode);
  3169. if (QDF_IS_STATUS_ERROR(ret)) {
  3170. spectral_err_rl("Failed to update scan count");
  3171. goto fail;
  3172. }
  3173. }
  3174. return 0;
  3175. fail_unlock:
  3176. qdf_spin_unlock_bh(&spectral->spectral_lock);
  3177. fail:
  3178. if (print_fail_msg)
  3179. spectral_err_rl("Error while processing Spectral report");
  3180. if (spectral_mode != SPECTRAL_SCAN_MODE_INVALID)
  3181. reset_160mhz_delivery_state_machine(spectral, spectral_mode);
  3182. return -EPERM;
  3183. }
  3184. #else
  3185. int
  3186. target_if_consume_spectral_report_gen3(
  3187. struct target_if_spectral *spectral,
  3188. struct spectral_report *report)
  3189. {
  3190. /*
  3191. * XXX : The classifier do not use all the members of the SAMP
  3192. * message data format.
  3193. * The classifier only depends upon the following parameters
  3194. *
  3195. * 1. Frequency (freq, msg->freq)
  3196. * 2. Spectral RSSI (spectral_rssi,
  3197. * msg->samp_data.spectral_rssi)
  3198. * 3. Bin Power Count (bin_pwr_count,
  3199. * msg->samp_data.bin_pwr_count)
  3200. * 4. Bin Power values (bin_pwr, msg->samp_data.bin_pwr[0]
  3201. * 5. Spectral Timestamp (spectral_tstamp,
  3202. * msg->samp_data.spectral_tstamp)
  3203. * 6. MAC Address (macaddr, msg->macaddr)
  3204. *
  3205. * This function prepares the params structure and populates it
  3206. * with
  3207. * relevant values, this is in turn passed to
  3208. * spectral_create_samp_msg()
  3209. * to prepare fully formatted Spectral SAMP message
  3210. *
  3211. * XXX : Need to verify
  3212. * 1. Order of FFT bin values
  3213. *
  3214. */
  3215. struct target_if_samp_msg_params params = {0};
  3216. struct spectral_search_fft_info_gen3 search_fft_info;
  3217. struct spectral_search_fft_info_gen3 *p_sfft = &search_fft_info;
  3218. int8_t chn_idx_lowest_enabled = 0;
  3219. int fft_hdr_length = 0;
  3220. int report_len = 0;
  3221. size_t fft_bin_count;
  3222. size_t fft_bin_size;
  3223. struct target_if_spectral_ops *p_sops =
  3224. GET_TARGET_IF_SPECTRAL_OPS(spectral);
  3225. struct spectral_phyerr_fft_report_gen3 *p_fft_report;
  3226. int8_t rssi;
  3227. uint8_t *data = report->data;
  3228. struct wlan_objmgr_vdev *vdev;
  3229. uint8_t vdev_rxchainmask;
  3230. struct sscan_report_fields_gen3 sscan_report_fields = {0};
  3231. enum spectral_detector_id detector_id;
  3232. QDF_STATUS ret;
  3233. enum spectral_scan_mode spectral_mode = SPECTRAL_SCAN_MODE_INVALID;
  3234. uint8_t *temp;
  3235. bool finite_scan = false;
  3236. /* Apply byte-swap on the headers */
  3237. if (p_sops->byte_swap_headers) {
  3238. ret = p_sops->byte_swap_headers(spectral, data);
  3239. if (QDF_IS_STATUS_ERROR(ret)) {
  3240. spectral_err_rl("Byte-swap on Spectral headers failed");
  3241. goto fail;
  3242. }
  3243. }
  3244. /* Process Spectral scan summary report */
  3245. if (target_if_verify_sig_and_tag_gen3(
  3246. spectral, data,
  3247. TLV_TAG_SPECTRAL_SUMMARY_REPORT_GEN3) != 0) {
  3248. spectral_err_rl("Wrong tag/sig in sscan summary");
  3249. goto fail;
  3250. }
  3251. detector_id = target_if_get_detector_id_sscan_summary_report_gen3(data);
  3252. if (detector_id >= spectral->rparams.num_spectral_detectors) {
  3253. spectral->diag_stats.spectral_invalid_detector_id++;
  3254. spectral_err("Invalid detector id %u, expected is 0/1/2",
  3255. detector_id);
  3256. goto fail;
  3257. }
  3258. spectral_mode = target_if_get_spectral_mode(detector_id,
  3259. &spectral->rparams);
  3260. if (spectral_mode >= SPECTRAL_SCAN_MODE_MAX) {
  3261. spectral_err_rl("No valid Spectral mode for detector id %u",
  3262. detector_id);
  3263. goto fail;
  3264. }
  3265. /* Drop the sample if Spectral is not active for the current mode */
  3266. if (!p_sops->is_spectral_active(spectral, spectral_mode)) {
  3267. spectral_info_rl("Spectral scan is not active");
  3268. goto fail_no_print;
  3269. }
  3270. ret = target_if_spectral_is_finite_scan(spectral, spectral_mode,
  3271. &finite_scan);
  3272. if (QDF_IS_STATUS_ERROR(ret)) {
  3273. spectral_err_rl("Failed to check scan is finite");
  3274. goto fail;
  3275. }
  3276. if (finite_scan) {
  3277. ret = target_if_spectral_finite_scan_update(spectral,
  3278. spectral_mode);
  3279. if (QDF_IS_STATUS_ERROR(ret)) {
  3280. spectral_err_rl("Failed to update scan count");
  3281. goto fail;
  3282. }
  3283. }
  3284. target_if_consume_sscan_summary_report_gen3(data, &sscan_report_fields,
  3285. &spectral->rparams);
  3286. /* Advance buf pointer to the search fft report */
  3287. data += sizeof(struct spectral_sscan_summary_report_gen3);
  3288. data += spectral->rparams.ssummary_padding_bytes;
  3289. params.vhtop_ch_freq_seg1 = report->cfreq1;
  3290. params.vhtop_ch_freq_seg2 = report->cfreq2;
  3291. if (is_primaryseg_expected(spectral, spectral_mode)) {
  3292. /* RSSI is in 1/2 dBm steps, Convert it to dBm scale */
  3293. rssi = (sscan_report_fields.inband_pwr_db) >> 1;
  3294. params.agc_total_gain =
  3295. sscan_report_fields.sscan_agc_total_gain;
  3296. params.gainchange = sscan_report_fields.sscan_gainchange;
  3297. params.pri80ind = sscan_report_fields.sscan_pri80;
  3298. /* Process Spectral search FFT report */
  3299. if (target_if_verify_sig_and_tag_gen3(
  3300. spectral, data,
  3301. TLV_TAG_SEARCH_FFT_REPORT_GEN3) != 0) {
  3302. spectral_err_rl("Unexpected tag/sig in sfft, detid= %u",
  3303. detector_id);
  3304. goto fail;
  3305. }
  3306. p_fft_report = (struct spectral_phyerr_fft_report_gen3 *)data;
  3307. fft_hdr_length = get_bitfield(
  3308. p_fft_report->fft_hdr_lts,
  3309. SPECTRAL_REPORT_LTS_HDR_LENGTH_SIZE_GEN3,
  3310. SPECTRAL_REPORT_LTS_HDR_LENGTH_POS_GEN3) * 4;
  3311. if (fft_hdr_length < 16) {
  3312. spectral_err("Wrong TLV length %u, detector id = %d",
  3313. fft_hdr_length, detector_id);
  3314. goto fail;
  3315. }
  3316. report_len = (fft_hdr_length + 8);
  3317. target_if_process_sfft_report_gen3(p_fft_report, p_sfft,
  3318. &spectral->rparams);
  3319. /* It is expected to have same detector id for
  3320. * summary and fft report
  3321. */
  3322. if (detector_id != p_sfft->fft_detector_id) {
  3323. spectral_err_rl
  3324. ("Different detid in ssummary(%u) and sfft(%u)",
  3325. detector_id, p_sfft->fft_detector_id);
  3326. goto fail;
  3327. }
  3328. if (detector_id > spectral->rparams.num_spectral_detectors) {
  3329. spectral->diag_stats.spectral_invalid_detector_id++;
  3330. spectral_err("Invalid detector id %u, expected is 0/2",
  3331. detector_id);
  3332. goto fail;
  3333. }
  3334. params.smode = spectral_mode;
  3335. fft_bin_count = target_if_spectral_get_bin_count_after_len_adj(
  3336. fft_hdr_length - spectral->rparams.fft_report_hdr_len,
  3337. spectral->params[spectral_mode].ss_rpt_mode,
  3338. &spectral->len_adj_swar, &fft_bin_size);
  3339. params.last_raw_timestamp = spectral->timestamp_war.
  3340. last_fft_timestamp[spectral_mode];
  3341. params.reset_delay = report->reset_delay;
  3342. params.raw_timestamp = p_sfft->timestamp;
  3343. params.tstamp = target_if_spectral_get_adjusted_timestamp(
  3344. &spectral->timestamp_war,
  3345. p_sfft->timestamp, report->reset_delay,
  3346. spectral_mode);
  3347. params.timestamp_war_offset = spectral->timestamp_war.
  3348. timestamp_war_offset[spectral_mode];
  3349. params.target_reset_count = spectral->timestamp_war.
  3350. target_reset_count;
  3351. /* Take care of state transitions for 160 MHz and 80p80 */
  3352. if (is_ch_width_160_or_80p80(spectral->ch_width
  3353. [spectral_mode]) && spectral->rparams.
  3354. fragmentation_160[spectral_mode]) {
  3355. ret = target_if_160mhz_delivery_state_change(
  3356. spectral, spectral_mode,
  3357. detector_id);
  3358. if (ret != QDF_STATUS_SUCCESS)
  3359. goto fail;
  3360. }
  3361. params.rssi = rssi;
  3362. vdev = target_if_spectral_get_vdev(spectral, spectral_mode);
  3363. if (!vdev) {
  3364. spectral_debug("First vdev is NULL");
  3365. reset_160mhz_delivery_state_machine(
  3366. spectral, spectral_mode);
  3367. return -EPERM;
  3368. }
  3369. vdev_rxchainmask = wlan_vdev_mlme_get_rxchainmask(vdev);
  3370. QDF_ASSERT(vdev_rxchainmask != 0);
  3371. wlan_objmgr_vdev_release_ref(vdev, WLAN_SPECTRAL_ID);
  3372. chn_idx_lowest_enabled =
  3373. target_if_spectral_get_lowest_chn_idx(vdev_rxchainmask);
  3374. if (chn_idx_lowest_enabled >= DBR_MAX_CHAINS) {
  3375. spectral_err("Invalid chain index, detector id = %u",
  3376. detector_id);
  3377. goto fail;
  3378. }
  3379. params.max_mag = p_sfft->fft_peak_mag;
  3380. params.freq = p_sops->get_current_channel(spectral,
  3381. spectral_mode);
  3382. params.agile_freq1 = spectral->params[SPECTRAL_SCAN_MODE_AGILE].
  3383. ss_frequency.cfreq1;
  3384. params.agile_freq2 = spectral->params[SPECTRAL_SCAN_MODE_AGILE].
  3385. ss_frequency.cfreq2;
  3386. params.noise_floor =
  3387. report->noisefloor[chn_idx_lowest_enabled];
  3388. temp = (uint8_t *)p_fft_report + SPECTRAL_FFT_BINS_POS;
  3389. if (is_ch_width_160_or_80p80(spectral->ch_width
  3390. [spectral_mode]) && !spectral->rparams.
  3391. fragmentation_160[spectral_mode]) {
  3392. struct wlan_objmgr_psoc *psoc;
  3393. struct spectral_fft_bin_markers_160_165mhz *marker;
  3394. qdf_assert_always(spectral->pdev_obj);
  3395. psoc = wlan_pdev_get_psoc(spectral->pdev_obj);
  3396. qdf_assert_always(psoc);
  3397. params.agc_total_gain_sec80 =
  3398. sscan_report_fields.sscan_agc_total_gain;
  3399. params.gainchange_sec80 =
  3400. sscan_report_fields.sscan_gainchange;
  3401. params.raw_timestamp_sec80 = p_sfft->timestamp;
  3402. params.rssi_sec80 = rssi;
  3403. params.noise_floor_sec80 =
  3404. report->noisefloor[chn_idx_lowest_enabled];
  3405. params.max_mag_sec80 = p_sfft->fft_peak_mag;
  3406. params.datalen = fft_hdr_length * 2;
  3407. params.datalen_sec80 = fft_hdr_length * 2;
  3408. marker = &spectral->rparams.marker[spectral_mode];
  3409. if (!marker->is_valid) {
  3410. /* update stats */
  3411. goto fail_no_print;
  3412. }
  3413. params.bin_pwr_data = temp +
  3414. marker->start_pri80 * fft_bin_size;
  3415. params.pwr_count = marker->num_pri80;
  3416. params.bin_pwr_data_sec80 = temp +
  3417. marker->start_sec80 * fft_bin_size;
  3418. params.pwr_count_sec80 = marker->num_sec80;
  3419. if (spectral->ch_width[spectral_mode] ==
  3420. CH_WIDTH_80P80MHZ && wlan_psoc_nif_fw_ext_cap_get(
  3421. psoc, WLAN_SOC_RESTRICTED_80P80_SUPPORT)) {
  3422. params.bin_pwr_data_5mhz = temp +
  3423. marker->start_5mhz * fft_bin_size;
  3424. params.pwr_count_5mhz = marker->num_5mhz;
  3425. }
  3426. } else {
  3427. params.bin_pwr_data = temp;
  3428. params.pwr_count = fft_bin_count;
  3429. params.datalen = (fft_hdr_length * 4);
  3430. }
  3431. /* Apply byte-swap on the FFT bins.
  3432. * NOTE: Until this point, bytes of the FFT bins could be in
  3433. * reverse order on a big-endian machine. If the consumers
  3434. * of FFT bins expects bytes in the correct order,
  3435. * they should use them only after this point.
  3436. */
  3437. if (p_sops->byte_swap_fft_bins) {
  3438. ret = p_sops->byte_swap_fft_bins(
  3439. &spectral->rparams,
  3440. temp, fft_bin_count);
  3441. if (QDF_IS_STATUS_ERROR(ret)) {
  3442. spectral_err_rl("Byte-swap on the FFT bins failed");
  3443. goto fail;
  3444. }
  3445. }
  3446. if (spectral_debug_level & (DEBUG_SPECTRAL2 | DEBUG_SPECTRAL4))
  3447. target_if_dump_fft_report_gen3(spectral, spectral_mode,
  3448. p_fft_report, p_sfft);
  3449. target_if_spectral_verify_ts(spectral, report->data,
  3450. params.tstamp);
  3451. } else if (is_secondaryseg_expected(spectral, spectral_mode)) {
  3452. /* RSSI is in 1/2 dBm steps, Convert it to dBm scale */
  3453. rssi = (sscan_report_fields.inband_pwr_db) >> 1;
  3454. params.agc_total_gain_sec80 =
  3455. sscan_report_fields.sscan_agc_total_gain;
  3456. params.gainchange_sec80 = sscan_report_fields.sscan_gainchange;
  3457. params.pri80ind_sec80 = sscan_report_fields.sscan_pri80;
  3458. /* Process Spectral search FFT report */
  3459. if (target_if_verify_sig_and_tag_gen3(
  3460. spectral, data,
  3461. TLV_TAG_SEARCH_FFT_REPORT_GEN3) != 0) {
  3462. spectral_err_rl("Unexpected tag/sig in sfft, detid= %u",
  3463. detector_id);
  3464. goto fail;
  3465. }
  3466. p_fft_report = (struct spectral_phyerr_fft_report_gen3 *)data;
  3467. fft_hdr_length = get_bitfield(
  3468. p_fft_report->fft_hdr_lts,
  3469. SPECTRAL_REPORT_LTS_HDR_LENGTH_SIZE_GEN3,
  3470. SPECTRAL_REPORT_LTS_HDR_LENGTH_POS_GEN3) * 4;
  3471. if (fft_hdr_length < 16) {
  3472. spectral_err("Wrong TLV length %u, detector id = %u",
  3473. fft_hdr_length, detector_id);
  3474. goto fail;
  3475. }
  3476. report_len = (fft_hdr_length + 8);
  3477. target_if_process_sfft_report_gen3(p_fft_report, p_sfft,
  3478. &spectral->rparams);
  3479. /* It is expected to have same detector id for
  3480. * summary and fft report
  3481. */
  3482. if (detector_id != p_sfft->fft_detector_id) {
  3483. spectral_err_rl
  3484. ("Different detid in ssummary(%u) and sfft(%u)",
  3485. detector_id, p_sfft->fft_detector_id);
  3486. goto fail;
  3487. }
  3488. if (detector_id > spectral->rparams.num_spectral_detectors) {
  3489. spectral->diag_stats.spectral_invalid_detector_id++;
  3490. spectral_err("Invalid detector id %u, expected is 1",
  3491. detector_id);
  3492. goto fail;
  3493. }
  3494. params.smode = spectral_mode;
  3495. fft_bin_count = target_if_spectral_get_bin_count_after_len_adj(
  3496. fft_hdr_length - spectral->rparams.fft_report_hdr_len,
  3497. spectral->params[spectral_mode].ss_rpt_mode,
  3498. &spectral->len_adj_swar, &fft_bin_size);
  3499. params.raw_timestamp_sec80 = p_sfft->timestamp;
  3500. /* Take care of state transitions for 160 MHz and 80p80 */
  3501. if (is_ch_width_160_or_80p80(spectral->ch_width
  3502. [spectral_mode]) && spectral->rparams.
  3503. fragmentation_160[spectral_mode]) {
  3504. ret = target_if_160mhz_delivery_state_change(
  3505. spectral, spectral_mode,
  3506. detector_id);
  3507. if (ret != QDF_STATUS_SUCCESS)
  3508. goto fail;
  3509. }
  3510. params.rssi_sec80 = rssi;
  3511. vdev = target_if_spectral_get_vdev(spectral, spectral_mode);
  3512. if (!vdev) {
  3513. spectral_info("First vdev is NULL");
  3514. reset_160mhz_delivery_state_machine
  3515. (spectral, spectral_mode);
  3516. return -EPERM;
  3517. }
  3518. vdev_rxchainmask = wlan_vdev_mlme_get_rxchainmask(vdev);
  3519. QDF_ASSERT(vdev_rxchainmask != 0);
  3520. wlan_objmgr_vdev_release_ref(vdev, WLAN_SPECTRAL_ID);
  3521. chn_idx_lowest_enabled =
  3522. target_if_spectral_get_lowest_chn_idx(vdev_rxchainmask);
  3523. if (chn_idx_lowest_enabled >= DBR_MAX_CHAINS) {
  3524. spectral_err("Invalid chain index");
  3525. goto fail;
  3526. }
  3527. /* Need to change this as per FW team's inputs */
  3528. params.noise_floor_sec80 =
  3529. report->noisefloor[chn_idx_lowest_enabled];
  3530. params.max_mag_sec80 = p_sfft->fft_peak_mag;
  3531. /* params.max_index_sec80 = p_sfft->peak_inx; */
  3532. /* XXX Does this definition of datalen *still hold? */
  3533. params.datalen_sec80 = fft_hdr_length * 4;
  3534. params.pwr_count_sec80 = fft_bin_count;
  3535. params.bin_pwr_data_sec80 =
  3536. (uint8_t *)((uint8_t *)p_fft_report +
  3537. SPECTRAL_FFT_BINS_POS);
  3538. /* Apply byte-swap on the FFT bins.
  3539. * NOTE: Until this point, bytes of the FFT bins could be in
  3540. * reverse order on a big-endian machine. If the consumers
  3541. * of FFT bins expects bytes in the correct order,
  3542. * they should use them only after this point.
  3543. */
  3544. if (p_sops->byte_swap_fft_bins) {
  3545. ret = p_sops->byte_swap_fft_bins(
  3546. &spectral->rparams,
  3547. params.bin_pwr_data_sec80,
  3548. fft_bin_count);
  3549. if (QDF_IS_STATUS_ERROR(ret)) {
  3550. spectral_err_rl("Byte-swap on the FFT bins failed");
  3551. goto fail;
  3552. }
  3553. }
  3554. if (spectral_debug_level & (DEBUG_SPECTRAL2 | DEBUG_SPECTRAL4))
  3555. target_if_dump_fft_report_gen3(spectral, spectral_mode,
  3556. p_fft_report, p_sfft);
  3557. } else {
  3558. spectral_err("Spectral state machine in undefined state");
  3559. goto fail;
  3560. }
  3561. target_if_spectral_check_buffer_poisoning(spectral, report,
  3562. fft_bin_count, spectral_mode);
  3563. qdf_mem_copy(&params.classifier_params,
  3564. &spectral->classifier_params,
  3565. sizeof(struct spectral_classifier_params));
  3566. target_if_spectral_log_SAMP_param(&params);
  3567. target_if_spectral_create_samp_msg(spectral, &params);
  3568. return 0;
  3569. fail:
  3570. spectral_err_rl("Error while processing Spectral report");
  3571. fail_no_print:
  3572. if (spectral_mode != SPECTRAL_SCAN_MODE_INVALID)
  3573. reset_160mhz_delivery_state_machine(spectral, spectral_mode);
  3574. return -EPERM;
  3575. }
  3576. #endif /* OPTIMIZED_SAMP_MESSAGE */
  3577. int target_if_spectral_process_report_gen3(
  3578. struct wlan_objmgr_pdev *pdev,
  3579. void *buf)
  3580. {
  3581. int ret = 0;
  3582. struct direct_buf_rx_data *payload = buf;
  3583. struct target_if_spectral *spectral;
  3584. struct spectral_report report = {0};
  3585. int samp_msg_index;
  3586. struct spectral_data_stats *spectral_dp_stats;
  3587. spectral = get_target_if_spectral_handle_from_pdev(pdev);
  3588. if (!spectral) {
  3589. spectral_err("Spectral target object is null");
  3590. return -EINVAL;
  3591. }
  3592. spectral_dp_stats = &spectral->data_stats;
  3593. spectral_dp_stats->spectral_rx_events++;
  3594. report.data = payload->vaddr;
  3595. if (payload->meta_data_valid) {
  3596. qdf_mem_copy(report.noisefloor, payload->meta_data.noisefloor,
  3597. qdf_min(sizeof(report.noisefloor),
  3598. sizeof(payload->meta_data.noisefloor)));
  3599. report.reset_delay = payload->meta_data.reset_delay;
  3600. report.cfreq1 = payload->meta_data.cfreq1;
  3601. report.cfreq2 = payload->meta_data.cfreq2;
  3602. report.ch_width = payload->meta_data.ch_width;
  3603. }
  3604. if (spectral_debug_level & (DEBUG_SPECTRAL2 | DEBUG_SPECTRAL4)) {
  3605. spectral_debug("Printing the spectral phyerr buffer for debug");
  3606. spectral_debug("Datalength of buffer = 0x%zx(%zd) bufptr = 0x%pK",
  3607. payload->dbr_len,
  3608. payload->dbr_len,
  3609. payload->vaddr);
  3610. target_if_spectral_hexdump((unsigned char *)payload->vaddr,
  3611. 1024);
  3612. }
  3613. samp_msg_index = spectral->spectral_sent_msg;
  3614. ret = target_if_consume_spectral_report_gen3(spectral, &report);
  3615. /* Reset debug level when SAMP msg is sent successfully or on error */
  3616. if ((spectral_debug_level & DEBUG_SPECTRAL4) &&
  3617. (ret != 0 || spectral->spectral_sent_msg == samp_msg_index + 1))
  3618. spectral_debug_level = DEBUG_SPECTRAL;
  3619. return ret;
  3620. }
  3621. #else
  3622. int target_if_spectral_process_report_gen3(
  3623. struct wlan_objmgr_pdev *pdev,
  3624. void *buf)
  3625. {
  3626. spectral_err("Direct dma support is not enabled");
  3627. return -EINVAL;
  3628. }
  3629. #endif
  3630. qdf_export_symbol(target_if_spectral_process_report_gen3);
  3631. /* END of spectral GEN III HW specific functions */
  3632. #endif /* WLAN_CONV_SPECTRAL_ENABLE */