target_if_spectral.h 94 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  1. /*
  2. * Copyright (c) 2011,2017-2021 The Linux Foundation. All rights reserved.
  3. *
  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. #ifndef _TARGET_IF_SPECTRAL_H_
  20. #define _TARGET_IF_SPECTRAL_H_
  21. #include <wlan_objmgr_cmn.h>
  22. #include <wlan_objmgr_psoc_obj.h>
  23. #include <wlan_objmgr_pdev_obj.h>
  24. #include <wlan_objmgr_vdev_obj.h>
  25. #include <wlan_reg_services_api.h>
  26. #include <qdf_lock.h>
  27. #include <wlan_spectral_public_structs.h>
  28. #include <reg_services_public_struct.h>
  29. #ifdef DIRECT_BUF_RX_ENABLE
  30. #include <target_if_direct_buf_rx_api.h>
  31. #endif
  32. #ifdef WIN32
  33. #pragma pack(push, target_if_spectral, 1)
  34. #define __ATTRIB_PACK
  35. #else
  36. #ifndef __ATTRIB_PACK
  37. #define __ATTRIB_PACK __attribute__ ((packed))
  38. #endif
  39. #endif
  40. #include <spectral_defs_i.h>
  41. #include <wmi_unified_param.h>
  42. #define FREQ_OFFSET_10MHZ (10)
  43. #define FREQ_OFFSET_40MHZ (40)
  44. #define FREQ_OFFSET_80MHZ (80)
  45. #define FREQ_OFFSET_85MHZ (85)
  46. #ifndef SPECTRAL_USE_NL_BCAST
  47. #define SPECTRAL_USE_NL_BCAST (0)
  48. #endif
  49. #define STATUS_PASS 1
  50. #define STATUS_FAIL 0
  51. #undef spectral_dbg_line
  52. #define spectral_dbg_line() \
  53. spectral_debug("----------------------------------------------------")
  54. #undef spectral_ops_not_registered
  55. #define spectral_ops_not_registered(str) \
  56. spectral_info("SPECTRAL : %s not registered\n", (str))
  57. #undef not_yet_implemented
  58. #define not_yet_implemented() \
  59. spectral_info("SPECTRAL : %s : %d Not yet implemented\n", \
  60. __func__, __LINE__)
  61. #define SPECTRAL_HT20_NUM_BINS 56
  62. #define SPECTRAL_HT20_FFT_LEN 56
  63. #define SPECTRAL_HT20_DC_INDEX (SPECTRAL_HT20_FFT_LEN / 2)
  64. #define SPECTRAL_HT20_DATA_LEN 60
  65. #define SPECTRAL_HT20_TOTAL_DATA_LEN (SPECTRAL_HT20_DATA_LEN + 3)
  66. #define SPECTRAL_HT40_TOTAL_NUM_BINS 128
  67. #define SPECTRAL_HT40_DATA_LEN 135
  68. #define SPECTRAL_HT40_TOTAL_DATA_LEN (SPECTRAL_HT40_DATA_LEN + 3)
  69. #define SPECTRAL_HT40_FFT_LEN 128
  70. #define SPECTRAL_HT40_DC_INDEX (SPECTRAL_HT40_FFT_LEN / 2)
  71. /*
  72. * Used for the SWAR to obtain approximate combined rssi
  73. * in secondary 80Mhz segment
  74. */
  75. #define OFFSET_CH_WIDTH_20 65
  76. #define OFFSET_CH_WIDTH_40 62
  77. #define OFFSET_CH_WIDTH_80 56
  78. #define OFFSET_CH_WIDTH_160 50
  79. /* Min and max for relevant Spectral params */
  80. #define SPECTRAL_PARAM_FFT_SIZE_MIN_GEN2 (1)
  81. #define SPECTRAL_PARAM_FFT_SIZE_MAX_GEN2 (9)
  82. #define SPECTRAL_PARAM_FFT_SIZE_MIN_GEN3 (5)
  83. #define SPECTRAL_PARAM_FFT_SIZE_MAX_GEN3_DEFAULT (9)
  84. #define SPECTRAL_PARAM_FFT_SIZE_MAX_GEN3_QCN9000 (10)
  85. #define SPECTRAL_PARAM_RPT_MODE_MIN (0)
  86. #define SPECTRAL_PARAM_RPT_MODE_MAX (3)
  87. #define MAX_FFTBIN_VALUE (255)
  88. /* DBR ring debug size for Spectral */
  89. #define SPECTRAL_DBR_RING_DEBUG_SIZE 512
  90. #ifdef BIG_ENDIAN_HOST
  91. #define SPECTRAL_MESSAGE_COPY_CHAR_ARRAY(destp, srcp, len) do { \
  92. int j; \
  93. uint32_t *src, *dest; \
  94. src = (uint32_t *)(srcp); \
  95. dest = (uint32_t *)(destp); \
  96. for (j = 0; j < roundup((len), sizeof(uint32_t)) / 4; j++) { \
  97. *(dest + j) = qdf_le32_to_cpu(*(src + j)); \
  98. } \
  99. } while (0)
  100. #else
  101. #define SPECTRAL_MESSAGE_COPY_CHAR_ARRAY(destp, srcp, len) \
  102. OS_MEMCPY((destp), (srcp), (len));
  103. #endif
  104. #define DUMMY_NF_VALUE (-123)
  105. /* 5 categories x (lower + upper) bands */
  106. #define MAX_INTERF 10
  107. #define HOST_MAX_ANTENNA 3
  108. /* Mask for time stamp from descriptor */
  109. #define SPECTRAL_TSMASK 0xFFFFFFFF
  110. #define SPECTRAL_SIGNATURE 0xdeadbeef
  111. /* Signature to write onto spectral buffer and then later validate */
  112. #define MEM_POISON_SIGNATURE (htobe32(0xdeadbeef))
  113. /* START of spectral GEN II HW specific details */
  114. #define SPECTRAL_PHYERR_SIGNATURE_GEN2 0xbb
  115. #define TLV_TAG_SPECTRAL_SUMMARY_REPORT_GEN2 0xF9
  116. #define TLV_TAG_ADC_REPORT_GEN2 0xFA
  117. #define TLV_TAG_SEARCH_FFT_REPORT_GEN2 0xFB
  118. /**
  119. * The Maximum number of detector informations to be filled in the SAMP msg
  120. * is 3, only for 165MHz case. For all other cases this value will be 1.
  121. */
  122. #define MAX_NUM_DEST_DETECTOR_INFO (3)
  123. #define MAX_DETECTORS_PER_PDEV (3)
  124. #define FFT_BIN_SIZE_1BYTE (1)
  125. #ifdef OPTIMIZED_SAMP_MESSAGE
  126. /**
  127. * enum spectral_160mhz_report_delivery_state - 160 MHz state machine states
  128. * @SPECTRAL_REPORT_WAIT_PRIMARY80: Wait for primary80 report
  129. * @SPECTRAL_REPORT_WAIT_SECONDARY80: Wait for secondory 80 report
  130. */
  131. enum spectral_160mhz_report_delivery_state {
  132. SPECTRAL_REPORT_WAIT_PRIMARY80,
  133. SPECTRAL_REPORT_WAIT_SECONDARY80,
  134. };
  135. #else
  136. /**
  137. * enum spectral_160mhz_report_delivery_state - 160 MHz state machine states
  138. * @SPECTRAL_REPORT_WAIT_PRIMARY80: Wait for primary80 report
  139. * @SPECTRAL_REPORT_RX_PRIMARY80: Receive primary 80 report
  140. * @SPECTRAL_REPORT_WAIT_SECONDARY80: Wait for secondory 80 report
  141. * @SPECTRAL_REPORT_RX_SECONDARY80: Receive secondary 80 report
  142. */
  143. enum spectral_160mhz_report_delivery_state {
  144. SPECTRAL_REPORT_WAIT_PRIMARY80,
  145. SPECTRAL_REPORT_RX_PRIMARY80,
  146. SPECTRAL_REPORT_WAIT_SECONDARY80,
  147. SPECTRAL_REPORT_RX_SECONDARY80,
  148. };
  149. #endif /* OPTIMIZED_SAMP_MESSAGE */
  150. /**
  151. * enum spectral_freq_span_id - Spectral frequency span id
  152. * @SPECTRAL_FREQ_SPAN_ID_0: Frequency span 0
  153. * @SPECTRAL_FREQ_SPAN_ID_1: Frequency span 1
  154. * @SPECTRAL_FREQ_SPAN_ID_2: Frequency span 2
  155. */
  156. enum spectral_freq_span_id {
  157. SPECTRAL_FREQ_SPAN_ID_0,
  158. SPECTRAL_FREQ_SPAN_ID_1,
  159. SPECTRAL_FREQ_SPAN_ID_2,
  160. };
  161. /**
  162. * enum spectral_detector_id - Spectral detector id
  163. * @SPECTRAL_DETECTOR_ID_0: Spectral detector 0
  164. * @SPECTRAL_DETECTOR_ID_1: Spectral detector 1
  165. * @SPECTRAL_DETECTOR_ID_2: Spectral detector 2
  166. * @SPECTRAL_DETECTOR_ID_MAX: Max Spectral detector ID
  167. * @SPECTRAL_DETECTOR_ID_INVALID: Invalid Spectral detector ID
  168. */
  169. enum spectral_detector_id {
  170. SPECTRAL_DETECTOR_ID_0,
  171. SPECTRAL_DETECTOR_ID_1,
  172. SPECTRAL_DETECTOR_ID_2,
  173. SPECTRAL_DETECTOR_ID_MAX,
  174. SPECTRAL_DETECTOR_ID_INVALID = 0xff,
  175. };
  176. /**
  177. * struct spectral_search_fft_info_gen2 - spectral search fft report for gen2
  178. * @relpwr_db: Total bin power in db
  179. * @num_str_bins_ib: Number of strong bins
  180. * @base_pwr: Base power
  181. * @total_gain_info: Total gain
  182. * @fft_chn_idx: FFT chain on which report is originated
  183. * @avgpwr_db: Average power in db
  184. * @peak_mag: Peak power seen in the bins
  185. * @peak_inx: Index of bin holding peak power
  186. */
  187. struct spectral_search_fft_info_gen2 {
  188. uint32_t relpwr_db;
  189. uint32_t num_str_bins_ib;
  190. uint32_t base_pwr;
  191. uint32_t total_gain_info;
  192. uint32_t fft_chn_idx;
  193. uint32_t avgpwr_db;
  194. uint32_t peak_mag;
  195. int16_t peak_inx;
  196. };
  197. /*
  198. * XXX Check if we should be handling the endinness difference in some
  199. * other way opaque to the host
  200. */
  201. #ifdef BIG_ENDIAN_HOST
  202. /**
  203. * struct spectral_phyerr_tlv_gen2 - phyerr tlv info for big endian host
  204. * @signature: signature
  205. * @tag: tag
  206. * @length: length
  207. */
  208. struct spectral_phyerr_tlv_gen2 {
  209. uint8_t signature;
  210. uint8_t tag;
  211. uint16_t length;
  212. } __ATTRIB_PACK;
  213. #else
  214. /**
  215. * struct spectral_phyerr_tlv_gen2 - phyerr tlv info for little endian host
  216. * @length: length
  217. * @tag: tag
  218. * @signature: signature
  219. */
  220. struct spectral_phyerr_tlv_gen2 {
  221. uint16_t length;
  222. uint8_t tag;
  223. uint8_t signature;
  224. } __ATTRIB_PACK;
  225. #endif /* BIG_ENDIAN_HOST */
  226. /**
  227. * struct spectral_phyerr_hdr_gen2 - phyerr header for gen2 HW
  228. * @hdr_a: Header[0:31]
  229. * @hdr_b: Header[32:63]
  230. */
  231. struct spectral_phyerr_hdr_gen2 {
  232. uint32_t hdr_a;
  233. uint32_t hdr_b;
  234. };
  235. /*
  236. * Segment ID information for 80+80.
  237. *
  238. * If the HW micro-architecture specification extends this DWORD for other
  239. * purposes, then redefine+rename accordingly. For now, the specification
  240. * mentions only segment ID (though this doesn't require an entire DWORD)
  241. * without mention of any generic terminology for the DWORD, or any reservation.
  242. * We use nomenclature accordingly.
  243. */
  244. typedef uint32_t SPECTRAL_SEGID_INFO;
  245. /**
  246. * struct spectral_phyerr_fft_gen2 - fft info in phyerr event
  247. * @buf: fft report
  248. */
  249. struct spectral_phyerr_fft_gen2 {
  250. uint8_t buf[0];
  251. };
  252. /**
  253. * struct spectral_process_phyerr_info_gen2 - Processed phyerr info structures
  254. * needed to fill SAMP params for gen2
  255. * @p_rfqual: Pointer to RF quality info
  256. * @p_sfft: Pointer to Search fft report info
  257. * @pfft: Pointer to FFT info in Phyerr event
  258. * @acs_stats: Pointer to ACS stats struct
  259. * @tsf64: 64 bit TSF value
  260. * @seg_d : Segment ID
  261. */
  262. struct spectral_process_phyerr_info_gen2 {
  263. struct target_if_spectral_rfqual_info *p_rfqual;
  264. struct spectral_search_fft_info_gen2 *p_sfft;
  265. struct spectral_phyerr_fft_gen2 *pfft;
  266. struct target_if_spectral_acs_stats *acs_stats;
  267. uint64_t tsf64;
  268. uint8_t seg_id;
  269. };
  270. /* END of spectral GEN II HW specific details */
  271. /* START of spectral GEN III HW specific details */
  272. #define get_bitfield(value, size, pos) \
  273. (((value) >> (pos)) & ((1 << (size)) - 1))
  274. #define unsigned_to_signed(value, width) \
  275. (((value) >= (1 << ((width) - 1))) ? \
  276. (value - (1 << (width))) : (value))
  277. #define SSCAN_SUMMARY_REPORT_HDR_A_DETECTOR_ID_POS_GEN3 (29)
  278. #define SSCAN_SUMMARY_REPORT_HDR_A_DETECTOR_ID_SIZE_GEN3 (2)
  279. #define SSCAN_SUMMARY_REPORT_HDR_A_AGC_TOTAL_GAIN_POS_GEN3 (0)
  280. #define SSCAN_SUMMARY_REPORT_HDR_A_AGC_TOTAL_GAIN_SIZE_GEN3 (8)
  281. #define SSCAN_SUMMARY_REPORT_HDR_A_INBAND_PWR_DB_POS_GEN3 (18)
  282. #define SSCAN_SUMMARY_REPORT_HDR_A_INBAND_PWR_DB_SIZE_GEN3 (10)
  283. #define SSCAN_SUMMARY_REPORT_HDR_A_PRI80_POS_GEN3 (31)
  284. #define SSCAN_SUMMARY_REPORT_HDR_A_PRI80_SIZE_GEN3 (1)
  285. #define SSCAN_SUMMARY_REPORT_HDR_B_GAINCHANGE_POS_GEN3_V1 (30)
  286. #define SSCAN_SUMMARY_REPORT_HDR_B_GAINCHANGE_SIZE_GEN3_V1 (1)
  287. #define SSCAN_SUMMARY_REPORT_HDR_C_GAINCHANGE_POS_GEN3_V2 (16)
  288. #define SSCAN_SUMMARY_REPORT_HDR_C_GAINCHANGE_SIZE_GEN3_V2 (1)
  289. #define SPECTRAL_REPORT_LTS_HDR_LENGTH_POS_GEN3 (0)
  290. #define SPECTRAL_REPORT_LTS_HDR_LENGTH_SIZE_GEN3 (16)
  291. #define SPECTRAL_REPORT_LTS_TAG_POS_GEN3 (16)
  292. #define SPECTRAL_REPORT_LTS_TAG_SIZE_GEN3 (8)
  293. #define SPECTRAL_REPORT_LTS_SIGNATURE_POS_GEN3 (24)
  294. #define SPECTRAL_REPORT_LTS_SIGNATURE_SIZE_GEN3 (8)
  295. #define FFT_REPORT_HDR_A_DETECTOR_ID_POS_GEN3 (0)
  296. #define FFT_REPORT_HDR_A_DETECTOR_ID_SIZE_GEN3 (2)
  297. #define FFT_REPORT_HDR_A_FFT_NUM_POS_GEN3 (2)
  298. #define FFT_REPORT_HDR_A_FFT_NUM_SIZE_GEN3 (3)
  299. #define FFT_REPORT_HDR_A_RADAR_CHECK_POS_GEN3_V1 (5)
  300. #define FFT_REPORT_HDR_A_RADAR_CHECK_SIZE_GEN3_V1 (12)
  301. #define FFT_REPORT_HDR_A_RADAR_CHECK_POS_GEN3_V2 (5)
  302. #define FFT_REPORT_HDR_A_RADAR_CHECK_SIZE_GEN3_V2 (14)
  303. #define FFT_REPORT_HDR_A_PEAK_INDEX_POS_GEN3_V1 (17)
  304. #define FFT_REPORT_HDR_A_PEAK_INDEX_SIZE_GEN3_V1 (11)
  305. #define FFT_REPORT_HDR_A_PEAK_INDEX_POS_GEN3_V2 (19)
  306. #define FFT_REPORT_HDR_A_PEAK_INDEX_SIZE_GEN3_V2 (11)
  307. #define FFT_REPORT_HDR_A_CHAIN_INDEX_POS_GEN3_V1 (28)
  308. #define FFT_REPORT_HDR_A_CHAIN_INDEX_SIZE_GEN3_V1 (3)
  309. #define FFT_REPORT_HDR_B_CHAIN_INDEX_POS_GEN3_V2 (0)
  310. #define FFT_REPORT_HDR_B_CHAIN_INDEX_SIZE_GEN3_V2 (3)
  311. #define FFT_REPORT_HDR_B_BASE_PWR_POS_GEN3_V1 (0)
  312. #define FFT_REPORT_HDR_B_BASE_PWR_SIZE_GEN3_V1 (9)
  313. #define FFT_REPORT_HDR_B_BASE_PWR_POS_GEN3_V2 (3)
  314. #define FFT_REPORT_HDR_B_BASE_PWR_SIZE_GEN3_V2 (9)
  315. #define FFT_REPORT_HDR_B_TOTAL_GAIN_POS_GEN3_V1 (9)
  316. #define FFT_REPORT_HDR_B_TOTAL_GAIN_SIZE_GEN3_V1 (8)
  317. #define FFT_REPORT_HDR_B_TOTAL_GAIN_POS_GEN3_V2 (12)
  318. #define FFT_REPORT_HDR_B_TOTAL_GAIN_SIZE_GEN3_V2 (8)
  319. #define FFT_REPORT_HDR_C_NUM_STRONG_BINS_POS_GEN3 (0)
  320. #define FFT_REPORT_HDR_C_NUM_STRONG_BINS_SIZE_GEN3 (8)
  321. #define FFT_REPORT_HDR_C_PEAK_MAGNITUDE_POS_GEN3 (8)
  322. #define FFT_REPORT_HDR_C_PEAK_MAGNITUDE_SIZE_GEN3 (10)
  323. #define FFT_REPORT_HDR_C_AVG_PWR_POS_GEN3 (18)
  324. #define FFT_REPORT_HDR_C_AVG_PWR_SIZE_GEN3 (7)
  325. #define FFT_REPORT_HDR_C_RELATIVE_PWR_POS_GEN3 (25)
  326. #define FFT_REPORT_HDR_C_RELATIVE_PWR_SIZE_GEN3 (7)
  327. #define SPECTRAL_PHYERR_SIGNATURE_GEN3 (0xFA)
  328. #define TLV_TAG_SPECTRAL_SUMMARY_REPORT_GEN3 (0x02)
  329. #define TLV_TAG_SEARCH_FFT_REPORT_GEN3 (0x03)
  330. #define SPECTRAL_PHYERR_TLVSIZE_GEN3 (4)
  331. #define NUM_SPECTRAL_DETECTORS_GEN3_V1 (3)
  332. #define NUM_SPECTRAL_DETECTORS_GEN3_V2 (2)
  333. #define FFT_REPORT_HEADER_LENGTH_GEN3_V2 (24)
  334. #define FFT_REPORT_HEADER_LENGTH_GEN3_V1 (16)
  335. #define NUM_PADDING_BYTES_SSCAN_SUMARY_REPORT_GEN3_V1 (0)
  336. #define NUM_PADDING_BYTES_SSCAN_SUMARY_REPORT_GEN3_V2 (16)
  337. #define SPECTRAL_PHYERR_HDR_LTS_POS \
  338. (offsetof(struct spectral_phyerr_fft_report_gen3, fft_hdr_lts))
  339. #define SPECTRAL_FFT_BINS_POS \
  340. (offsetof(struct spectral_phyerr_fft_report_gen3, buf))
  341. /**
  342. * struct phyerr_info - spectral search fft report for gen3
  343. * @data: handle to phyerror buffer
  344. * @datalen: length of phyerror bufer
  345. * @p_rfqual: rf quality matrices
  346. * @p_chaninfo: pointer to chaninfo
  347. * @tsf64: 64 bit TSF
  348. * @acs_stats: acs stats
  349. */
  350. struct phyerr_info {
  351. uint8_t *data;
  352. uint32_t datalen;
  353. struct target_if_spectral_rfqual_info *p_rfqual;
  354. struct target_if_spectral_chan_info *p_chaninfo;
  355. uint64_t tsf64;
  356. struct target_if_spectral_acs_stats *acs_stats;
  357. };
  358. /**
  359. * struct spectral_search_fft_info_gen3 - spectral search fft report for gen3
  360. * @timestamp: Timestamp at which fft report was generated
  361. * @last_raw_timestamp: Previous FFT report's raw timestamp
  362. * @adjusted_timestamp: Adjusted timestamp to account for target reset
  363. * @fft_detector_id: Which radio generated this report
  364. * @fft_num: The FFT count number. Set to 0 for short FFT.
  365. * @fft_radar_check: NA for spectral
  366. * @fft_peak_sidx: Index of bin with maximum power
  367. * @fft_chn_idx: Rx chain index
  368. * @fft_base_pwr_db: Base power in dB
  369. * @fft_total_gain_db: Total gain in dB
  370. * @fft_num_str_bins_ib: Number of strong bins in the report
  371. * @fft_peak_mag: Peak magnitude
  372. * @fft_avgpwr_db: Average power in dB
  373. * @fft_relpwr_db: Relative power in dB
  374. * @fft_bin_count: Number of FFT bins in the FFT report
  375. * @fft_bin_size: Size of one FFT bin in bytes
  376. * @bin_pwr_data: Contains FFT bins extracted from the report
  377. */
  378. struct spectral_search_fft_info_gen3 {
  379. uint32_t timestamp;
  380. uint32_t last_raw_timestamp;
  381. uint32_t adjusted_timestamp;
  382. uint32_t fft_detector_id;
  383. uint32_t fft_num;
  384. uint32_t fft_radar_check;
  385. int32_t fft_peak_sidx;
  386. uint32_t fft_chn_idx;
  387. uint32_t fft_base_pwr_db;
  388. uint32_t fft_total_gain_db;
  389. uint32_t fft_num_str_bins_ib;
  390. int32_t fft_peak_mag;
  391. uint32_t fft_avgpwr_db;
  392. uint32_t fft_relpwr_db;
  393. uint32_t fft_bin_count;
  394. uint8_t fft_bin_size;
  395. uint8_t *bin_pwr_data;
  396. };
  397. /**
  398. * struct spectral_phyerr_sfftreport_gen3 - fft info in phyerr event
  399. * @fft_timestamp: Timestamp at which fft report was generated
  400. * @fft_hdr_lts: length, tag, signature fields
  401. * @hdr_a: Header[0:31]
  402. * @hdr_b: Header[32:63]
  403. * @hdr_c: Header[64:95]
  404. * @resv: Header[96:127]
  405. * @buf: fft bins
  406. */
  407. struct spectral_phyerr_fft_report_gen3 {
  408. uint32_t fft_timestamp;
  409. uint32_t fft_hdr_lts;
  410. uint32_t hdr_a;
  411. uint32_t hdr_b;
  412. uint32_t hdr_c;
  413. uint32_t resv;
  414. uint8_t buf[0];
  415. } __ATTRIB_PACK;
  416. /**
  417. * struct sscan_report_fields_gen3 - Fields of spectral report
  418. * @sscan_agc_total_gain: The AGC total gain in DB.
  419. * @inband_pwr_db: The in-band power of the signal in 1/2 DB steps
  420. * @sscan_gainchange: This bit is set to 1 if a gainchange occurred during
  421. * the spectral scan FFT. Software may choose to
  422. * disregard the results.
  423. * @sscan_pri80: This is set to 1 to indicate that the Spectral scan was
  424. * performed on the pri80 segment. Software may choose to
  425. * disregard the FFT sample if this is set to 1 but detector ID
  426. * does not correspond to the ID for the pri80 segment.
  427. * @sscan_detector_id: Detector ID in Spectral scan report
  428. */
  429. struct sscan_report_fields_gen3 {
  430. uint8_t sscan_agc_total_gain;
  431. int16_t inband_pwr_db;
  432. uint8_t sscan_gainchange;
  433. uint8_t sscan_pri80;
  434. uint8_t sscan_detector_id;
  435. };
  436. /**
  437. * struct spectral_sscan_summary_report_gen3 - Spectral summary report
  438. * event
  439. * @sscan_timestamp: Timestamp at which fft report was generated
  440. * @sscan_hdr_lts: length, tag, signature fields
  441. * @hdr_a: Header[0:31]
  442. * @resv: Header[32:63]
  443. * @hdr_b: Header[64:95]
  444. * @hdr_c: Header[96:127]
  445. */
  446. struct spectral_sscan_summary_report_gen3 {
  447. u_int32_t sscan_timestamp;
  448. u_int32_t sscan_hdr_lts;
  449. u_int32_t hdr_a;
  450. u_int32_t res1;
  451. u_int32_t hdr_b;
  452. u_int32_t hdr_c;
  453. } __ATTRIB_PACK;
  454. #ifdef DIRECT_BUF_RX_ENABLE
  455. /**
  456. * struct Spectral_report - spectral report
  457. * @data: Report buffer
  458. * @noisefloor: Noise floor values
  459. * @reset_delay: Time taken for warm reset in us
  460. * @cfreq1: center frequency 1
  461. * @cfreq2: center frequency 2
  462. * @ch_width: channel width
  463. */
  464. struct spectral_report {
  465. uint8_t *data;
  466. int32_t noisefloor[DBR_MAX_CHAINS];
  467. uint32_t reset_delay;
  468. uint32_t cfreq1;
  469. uint32_t cfreq2;
  470. uint32_t ch_width;
  471. };
  472. #endif
  473. /* END of spectral GEN III HW specific details */
  474. typedef signed char pwr_dbm;
  475. /**
  476. * enum spectral_gen - spectral hw generation
  477. * @SPECTRAL_GEN1 : spectral hw gen 1
  478. * @SPECTRAL_GEN2 : spectral hw gen 2
  479. * @SPECTRAL_GEN3 : spectral hw gen 3
  480. */
  481. enum spectral_gen {
  482. SPECTRAL_GEN1,
  483. SPECTRAL_GEN2,
  484. SPECTRAL_GEN3,
  485. };
  486. /**
  487. * enum spectral_fftbin_size_war - spectral fft bin size war
  488. * @SPECTRAL_FFTBIN_SIZE_NO_WAR : No WAR applicable for Spectral FFT bin size
  489. * @SPECTRAL_FFTBIN_SIZE_2BYTE_TO_1BYTE : Spectral FFT bin size: Retain only
  490. * least significant byte from 2 byte
  491. * FFT bin transferred by HW
  492. * @SPECTRAL_FFTBIN_SIZE_4BYTE_TO_1BYTE : Spectral FFT bin size: Retain only
  493. * least significant byte from 4 byte
  494. * FFT bin transferred by HW
  495. */
  496. enum spectral_fftbin_size_war {
  497. SPECTRAL_FFTBIN_SIZE_NO_WAR = 0,
  498. SPECTRAL_FFTBIN_SIZE_WAR_2BYTE_TO_1BYTE = 1,
  499. SPECTRAL_FFTBIN_SIZE_WAR_4BYTE_TO_1BYTE = 2,
  500. };
  501. /**
  502. * enum spectral_report_format_version - This represents the report format
  503. * version number within each Spectral generation.
  504. * @SPECTRAL_REPORT_FORMAT_VERSION_1 : version 1
  505. * @SPECTRAL_REPORT_FORMAT_VERSION_2 : version 2
  506. */
  507. enum spectral_report_format_version {
  508. SPECTRAL_REPORT_FORMAT_VERSION_1,
  509. SPECTRAL_REPORT_FORMAT_VERSION_2,
  510. };
  511. /**
  512. * struct spectral_fft_bin_len_adj_swar - Encapsulate information required for
  513. * Spectral FFT bin length adjusting software WARS.
  514. * @inband_fftbin_size_adj: Whether to carry out FFT bin size adjustment for
  515. * in-band report format. This would be required on some chipsets under the
  516. * following circumstances: In report mode 2 only the in-band bins are DMA'ed.
  517. * Scatter/gather is used. However, the HW generates all bins, not just in-band,
  518. * and reports the number of bins accordingly. The subsystem arranging for the
  519. * DMA cannot change this value. On such chipsets the adjustment required at the
  520. * host driver is to check if report format is 2, and if so halve the number of
  521. * bins reported to get the number actually DMA'ed.
  522. * @null_fftbin_adj: Whether to remove NULL FFT bins for report mode (1) in
  523. * which only summary of metrics for each completed FFT + spectral scan summary
  524. * report are to be provided. This would be required on some chipsets under the
  525. * following circumstances: In report mode 1, HW reports a length corresponding
  526. * to all bins, and provides bins with value 0. This is because the subsystem
  527. * arranging for the FFT information does not arrange for DMA of FFT bin values
  528. * (as expected), but cannot arrange for a smaller length to be reported by HW.
  529. * In these circumstances, the driver would have to disregard the NULL bins and
  530. * report a bin count of 0 to higher layers.
  531. * @packmode_fftbin_size_adj: Pack mode in HW refers to packing of each Spectral
  532. * FFT bin into 2 bytes. But due to a bug HW reports 2 times the expected length
  533. * when packmode is enabled. This SWAR compensates this bug by dividing the
  534. * length with 2.
  535. * @fftbin_size_war: Type of FFT bin size SWAR
  536. */
  537. struct spectral_fft_bin_len_adj_swar {
  538. u_int8_t inband_fftbin_size_adj;
  539. u_int8_t null_fftbin_adj;
  540. uint8_t packmode_fftbin_size_adj;
  541. enum spectral_fftbin_size_war fftbin_size_war;
  542. };
  543. /**
  544. * struct spectral_report_params - Parameters related to format of Spectral
  545. * report.
  546. * @version: This represents the report format version number within each
  547. * Spectral generation.
  548. * @ssumaary_padding_bytes: Number of bytes of padding after Spectral summary
  549. * report
  550. * @fft_report_hdr_len: Number of bytes in the header of the FFT report. This
  551. * has to be subtracted from the length field of FFT report to find the length
  552. * of FFT bins.
  553. * @fragmentation_160: This indicates whether Spectral reports in 160/80p80 is
  554. * fragmented.
  555. * @max_agile_ch_width: Maximum agile BW supported by the target
  556. * @detid_mode_table: Detector ID to Spectral scan mode table
  557. * @num_spectral_detectors: Total number of Spectral detectors
  558. * @marker: Describes the boundaries of pri80, 5 MHz and sec80 bins
  559. */
  560. struct spectral_report_params {
  561. enum spectral_report_format_version version;
  562. uint8_t ssumaary_padding_bytes;
  563. uint8_t fft_report_hdr_len;
  564. bool fragmentation_160[SPECTRAL_SCAN_MODE_MAX];
  565. enum phy_ch_width max_agile_ch_width;
  566. enum spectral_scan_mode detid_mode_table[SPECTRAL_DETECTOR_ID_MAX];
  567. uint8_t num_spectral_detectors;
  568. struct spectral_fft_bin_markers_160_165mhz
  569. marker[SPECTRAL_SCAN_MODE_MAX];
  570. };
  571. /**
  572. * struct spectral_param_min_max - Spectral parameter minimum and maximum values
  573. * @fft_size_min: Minimum value of fft_size
  574. * @fft_size_max: Maximum value of fft_size for each BW
  575. */
  576. struct spectral_param_min_max {
  577. uint16_t fft_size_min;
  578. uint16_t fft_size_max[CH_WIDTH_MAX];
  579. };
  580. /**
  581. * struct spectral_timestamp_swar - Spectral time stamp WAR related parameters
  582. * @timestamp_war_offset: Offset to be added to correct timestamp
  583. * @target_reset_count: Number of times target exercised the reset routine
  584. * @last_fft_timestamp: last fft report timestamp
  585. */
  586. struct spectral_timestamp_war {
  587. uint32_t timestamp_war_offset[SPECTRAL_SCAN_MODE_MAX];
  588. uint64_t target_reset_count;
  589. uint32_t last_fft_timestamp[SPECTRAL_SCAN_MODE_MAX];
  590. };
  591. #if ATH_PERF_PWR_OFFLOAD
  592. /**
  593. * enum target_if_spectral_info - Enumerations for specifying which spectral
  594. * information (among parameters and states)
  595. * is desired.
  596. * @TARGET_IF_SPECTRAL_INFO_ACTIVE: Indicated whether spectral is active
  597. * @TARGET_IF_SPECTRAL_INFO_ENABLED: Indicated whether spectral is enabled
  598. * @TARGET_IF_SPECTRAL_INFO_PARAMS: Config params
  599. */
  600. enum target_if_spectral_info {
  601. TARGET_IF_SPECTRAL_INFO_ACTIVE,
  602. TARGET_IF_SPECTRAL_INFO_ENABLED,
  603. TARGET_IF_SPECTRAL_INFO_PARAMS,
  604. };
  605. #endif /* ATH_PERF_PWR_OFFLOAD */
  606. /* forward declaration */
  607. struct target_if_spectral;
  608. /**
  609. * struct target_if_spectral_chan_info - Channel information
  610. * @center_freq1: center frequency 1 in MHz
  611. * @center_freq2: center frequency 2 in MHz -valid only for
  612. * 11ACVHT 80PLUS80 mode
  613. * @chan_width: channel width in MHz
  614. */
  615. struct target_if_spectral_chan_info {
  616. uint16_t center_freq1;
  617. uint16_t center_freq2;
  618. uint8_t chan_width;
  619. };
  620. /**
  621. * struct target_if_spectral_acs_stats - EACS stats from spectral samples
  622. * @nfc_ctl_rssi: Control chan rssi
  623. * @nfc_ext_rssi: Extension chan rssi
  624. * @ctrl_nf: Control chan Noise Floor
  625. * @ext_nf: Extension chan Noise Floor
  626. */
  627. struct target_if_spectral_acs_stats {
  628. int8_t nfc_ctl_rssi;
  629. int8_t nfc_ext_rssi;
  630. int8_t ctrl_nf;
  631. int8_t ext_nf;
  632. };
  633. /**
  634. * struct target_if_spectral_perchain_rssi_info - per chain rssi info
  635. * @rssi_pri20: Rssi of primary 20 Mhz
  636. * @rssi_sec20: Rssi of secondary 20 Mhz
  637. * @rssi_sec40: Rssi of secondary 40 Mhz
  638. * @rssi_sec80: Rssi of secondary 80 Mhz
  639. */
  640. struct target_if_spectral_perchain_rssi_info {
  641. int8_t rssi_pri20;
  642. int8_t rssi_sec20;
  643. int8_t rssi_sec40;
  644. int8_t rssi_sec80;
  645. };
  646. /**
  647. * struct target_if_spectral_rfqual_info - RF measurement information
  648. * @rssi_comb: RSSI Information
  649. * @pc_rssi_info: XXX : For now, we know we are getting information
  650. * for only 4 chains at max. For future extensions
  651. * use a define
  652. * @noise_floor: Noise floor information
  653. */
  654. struct target_if_spectral_rfqual_info {
  655. int8_t rssi_comb;
  656. struct target_if_spectral_perchain_rssi_info pc_rssi_info[4];
  657. int16_t noise_floor[4];
  658. };
  659. #define GET_TARGET_IF_SPECTRAL_OPS(spectral) \
  660. ((struct target_if_spectral_ops *)(&((spectral)->spectral_ops)))
  661. /**
  662. * struct target_if_spectral_ops - spectral low level ops table
  663. * @get_tsf64: Get 64 bit TSF value
  664. * @get_capability: Get capability info
  665. * @set_rxfilter: Set rx filter
  666. * @get_rxfilter: Get rx filter
  667. * @is_spectral_active: Check whether icm is active
  668. * @is_spectral_enabled: Check whether spectral is enabled
  669. * @start_spectral_scan: Start spectral scan
  670. * @stop_spectral_scan: Stop spectral scan
  671. * @get_extension_channel: Get extension channel
  672. * @get_ctl_noisefloor: Get control noise floor
  673. * @get_ext_noisefloor: Get extension noise floor
  674. * @configure_spectral: Set spectral configurations
  675. * @get_spectral_config: Get spectral configurations
  676. * @get_ent_spectral_mask: Get spectral mask
  677. * @get_mac_address: Get mac address
  678. * @get_current_channel: Get current channel
  679. * @reset_hw: Reset HW
  680. * @get_chain_noise_floor: Get Channel noise floor
  681. * @spectral_process_phyerr: Process phyerr event
  682. * @process_spectral_report: Process spectral report
  683. * @byte_swap_headers: Apply byte-swap on report headers
  684. * @byte_swap_fft_bins: Apply byte-swap on FFT bins
  685. */
  686. struct target_if_spectral_ops {
  687. uint64_t (*get_tsf64)(void *arg);
  688. uint32_t (*get_capability)(
  689. void *arg, enum spectral_capability_type type);
  690. uint32_t (*set_rxfilter)(void *arg, int rxfilter);
  691. uint32_t (*get_rxfilter)(void *arg);
  692. uint32_t (*is_spectral_active)(void *arg,
  693. enum spectral_scan_mode smode);
  694. uint32_t (*is_spectral_enabled)(void *arg,
  695. enum spectral_scan_mode smode);
  696. uint32_t (*start_spectral_scan)(void *arg,
  697. enum spectral_scan_mode smode,
  698. enum spectral_cp_error_code *err);
  699. uint32_t (*stop_spectral_scan)(void *arg,
  700. enum spectral_scan_mode smode);
  701. uint32_t (*get_extension_channel)(void *arg,
  702. enum spectral_scan_mode smode);
  703. int8_t (*get_ctl_noisefloor)(void *arg);
  704. int8_t (*get_ext_noisefloor)(void *arg);
  705. uint32_t (*configure_spectral)(
  706. void *arg,
  707. struct spectral_config *params,
  708. enum spectral_scan_mode smode);
  709. uint32_t (*get_spectral_config)(
  710. void *arg,
  711. struct spectral_config *params,
  712. enum spectral_scan_mode smode);
  713. uint32_t (*get_ent_spectral_mask)(void *arg);
  714. uint32_t (*get_mac_address)(void *arg, char *addr);
  715. uint32_t (*get_current_channel)(void *arg,
  716. enum spectral_scan_mode smode);
  717. uint32_t (*reset_hw)(void *arg);
  718. uint32_t (*get_chain_noise_floor)(void *arg, int16_t *nf_buf);
  719. int (*spectral_process_phyerr)(struct target_if_spectral *spectral,
  720. uint8_t *data, uint32_t datalen,
  721. struct target_if_spectral_rfqual_info *p_rfqual,
  722. struct target_if_spectral_chan_info *p_chaninfo,
  723. uint64_t tsf64,
  724. struct target_if_spectral_acs_stats *acs_stats);
  725. int (*process_spectral_report)(struct wlan_objmgr_pdev *pdev,
  726. void *payload);
  727. QDF_STATUS (*byte_swap_headers)(
  728. struct target_if_spectral *spectral,
  729. void *data);
  730. QDF_STATUS (*byte_swap_fft_bins)(
  731. struct spectral_fft_bin_len_adj_swar *swar,
  732. void *bin_pwr_data, size_t num_fftbins);
  733. };
  734. /**
  735. * struct target_if_spectral_stats - spectral stats info
  736. * @num_spectral_detects: Total num. of spectral detects
  737. * @total_phy_errors: Total number of phyerrors
  738. * @owl_phy_errors: Indicated phyerrors in old gen1 chipsets
  739. * @pri_phy_errors: Phyerrors in primary channel
  740. * @ext_phy_errors: Phyerrors in secondary channel
  741. * @dc_phy_errors: Phyerrors due to dc
  742. * @early_ext_phy_errors: Early secondary channel phyerrors
  743. * @bwinfo_errors: Bandwidth info errors
  744. * @datalen_discards: Invalid data length errors, seen in gen1 chipsets
  745. * @rssi_discards bw: Indicates reports dropped due to RSSI threshold
  746. * @last_reset_tstamp: Last reset time stamp
  747. */
  748. struct target_if_spectral_stats {
  749. uint32_t num_spectral_detects;
  750. uint32_t total_phy_errors;
  751. uint32_t owl_phy_errors;
  752. uint32_t pri_phy_errors;
  753. uint32_t ext_phy_errors;
  754. uint32_t dc_phy_errors;
  755. uint32_t early_ext_phy_errors;
  756. uint32_t bwinfo_errors;
  757. uint32_t datalen_discards;
  758. uint32_t rssi_discards;
  759. uint64_t last_reset_tstamp;
  760. };
  761. /**
  762. * struct target_if_spectral_event - spectral event structure
  763. * @se_ts: Original 15 bit recv timestamp
  764. * @se_full_ts: 64-bit full timestamp from interrupt time
  765. * @se_rssi: Rssi of spectral event
  766. * @se_bwinfo: Rssi of spectral event
  767. * @se_dur: Duration of spectral pulse
  768. * @se_chanindex: Channel of event
  769. * @se_list: List of spectral events
  770. */
  771. struct target_if_spectral_event {
  772. uint32_t se_ts;
  773. uint64_t se_full_ts;
  774. uint8_t se_rssi;
  775. uint8_t se_bwinfo;
  776. uint8_t se_dur;
  777. uint8_t se_chanindex;
  778. STAILQ_ENTRY(spectral_event) se_list;
  779. };
  780. /**
  781. * struct target_if_chain_noise_pwr_info - Noise power info for each channel
  782. * @rptcount: Count of reports in pwr array
  783. * @un_cal_nf: Uncalibrated noise floor
  784. * @factory_cal_nf: Noise floor as calibrated at the factory for module
  785. * @median_pwr: Median power (median of pwr array)
  786. * @pwr: Power reports
  787. */
  788. struct target_if_chain_noise_pwr_info {
  789. int rptcount;
  790. pwr_dbm un_cal_nf;
  791. pwr_dbm factory_cal_nf;
  792. pwr_dbm median_pwr;
  793. pwr_dbm pwr[];
  794. } __ATTRIB_PACK;
  795. /**
  796. * struct target_if_spectral_chan_stats - Channel information
  797. * @cycle_count: Cycle count
  798. * @channel_load: Channel load
  799. * @per: Period
  800. * @noisefloor: Noise floor
  801. * @comp_usablity: Computed usability
  802. * @maxregpower: Maximum allowed regulatary power
  803. * @comp_usablity_sec80: Computed usability of secondary 80 Mhz
  804. * @maxregpower_sec80: Max regulatory power in secondary 80 Mhz
  805. */
  806. struct target_if_spectral_chan_stats {
  807. int cycle_count;
  808. int channel_load;
  809. int per;
  810. int noisefloor;
  811. uint16_t comp_usablity;
  812. int8_t maxregpower;
  813. uint16_t comp_usablity_sec80;
  814. int8_t maxregpower_sec80;
  815. };
  816. #if ATH_PERF_PWR_OFFLOAD
  817. /**
  818. * struct target_if_spectral_cache - Cache used to minimize WMI operations
  819. * in offload architecture
  820. * @osc_spectral_enabled: Whether Spectral is enabled
  821. * @osc_spectral_active: Whether spectral is active
  822. * XXX: Ideally, we should NOT cache this
  823. * since the hardware can self clear the bit,
  824. * the firmware can possibly stop spectral due to
  825. * intermittent off-channel activity, etc
  826. * A WMI read command should be introduced to handle
  827. * this This will be discussed.
  828. * @osc_params: Spectral parameters
  829. * @osc_is_valid: Whether the cache is valid
  830. */
  831. struct target_if_spectral_cache {
  832. uint8_t osc_spectral_enabled;
  833. uint8_t osc_spectral_active;
  834. struct spectral_config osc_params;
  835. uint8_t osc_is_valid;
  836. };
  837. /**
  838. * struct target_if_spectral_param_state_info - Structure used to represent and
  839. * manage spectral information
  840. * (parameters and states)
  841. * @osps_lock: Lock to synchronize accesses to information
  842. * @osps_cache: Cacheable' information
  843. */
  844. struct target_if_spectral_param_state_info {
  845. qdf_spinlock_t osps_lock;
  846. struct target_if_spectral_cache osps_cache;
  847. /* XXX - Non-cacheable information goes here, in the future */
  848. };
  849. #endif /* ATH_PERF_PWR_OFFLOAD */
  850. struct vdev_spectral_configure_params;
  851. struct vdev_spectral_enable_params;
  852. /**
  853. * struct spectral_wmi_ops - structure used holding the operations
  854. * related to Spectral WMI
  855. * @wmi_spectral_configure_cmd_send: Configure Spectral parameters
  856. * @wmi_spectral_enable_cmd_send: Enable/Disable Spectral
  857. * @wmi_spectral_crash_inject: Inject FW crash
  858. * @wmi_extract_pdev_sscan_fw_cmd_fixed_param: Extract Fixed params from
  859. * start scan response event
  860. * @wmi_extract_pdev_sscan_fft_bin_index: Extract TLV which describes FFT
  861. * bin indices from start scan response event
  862. * @wmi_unified_register_event_handler: Register WMI event handler
  863. * @wmi_unified_unregister_event_handler: Unregister WMI event handler
  864. * @wmi_service_enabled: API to check whether a given WMI service is enabled
  865. */
  866. struct spectral_wmi_ops {
  867. QDF_STATUS (*wmi_spectral_configure_cmd_send)(
  868. wmi_unified_t wmi_hdl,
  869. struct vdev_spectral_configure_params *param);
  870. QDF_STATUS (*wmi_spectral_enable_cmd_send)(
  871. wmi_unified_t wmi_hdl,
  872. struct vdev_spectral_enable_params *param);
  873. QDF_STATUS (*wmi_spectral_crash_inject)(
  874. wmi_unified_t wmi_handle, struct crash_inject *param);
  875. QDF_STATUS (*wmi_extract_pdev_sscan_fw_cmd_fixed_param)(
  876. wmi_unified_t wmi_handle, uint8_t *evt_buf,
  877. struct spectral_startscan_resp_params *param);
  878. QDF_STATUS (*wmi_extract_pdev_sscan_fft_bin_index)(
  879. wmi_unified_t wmi_handle, uint8_t *evt_buf,
  880. struct spectral_fft_bin_markers_160_165mhz *param);
  881. QDF_STATUS (*wmi_unified_register_event_handler)(
  882. wmi_unified_t wmi_handle,
  883. wmi_conv_event_id event_id,
  884. wmi_unified_event_handler handler_func,
  885. uint8_t rx_ctx);
  886. QDF_STATUS (*wmi_unified_unregister_event_handler)(
  887. wmi_unified_t wmi_handle,
  888. wmi_conv_event_id event_id);
  889. bool (*wmi_service_enabled)(wmi_unified_t wmi_handle,
  890. uint32_t service_id);
  891. };
  892. /**
  893. * struct spectral_tgt_ops - structure used holding the operations
  894. * related to target operations
  895. * @tgt_get_psoc_from_scn_hdl: Function to get psoc from scn
  896. */
  897. struct spectral_tgt_ops {
  898. struct wlan_objmgr_psoc *(*tgt_get_psoc_from_scn_hdl)(void *scn_handle);
  899. };
  900. /**
  901. * struct spectral_param_properties - structure holding Spectral
  902. * parameter properties
  903. * @supported: Parameter is supported or not
  904. * @common_all_modes: Parameter should be common for all modes or not
  905. */
  906. struct spectral_param_properties {
  907. bool supported;
  908. bool common_all_modes;
  909. };
  910. /**
  911. * struct target_if_finite_spectral_scan_params - Parameters related to finite
  912. * Spectral scan
  913. * @finite_spectral_scan: Indicates the Spectrl scan is finite/infinite
  914. * @num_reports_expected: Number of Spectral reports expected from target for a
  915. * finite Spectral scan
  916. */
  917. struct target_if_finite_spectral_scan_params {
  918. bool finite_spectral_scan;
  919. uint32_t num_reports_expected;
  920. };
  921. /**
  922. * struct per_session_dest_det_info - Per-session Detector information to be
  923. * filled to samp_detector_info
  924. * @freq_span_id: Contiguous frequency span ID within the SAMP message
  925. * @is_sec80: Indicates pri80/sec80 segment for 160/80p80 BW
  926. * @det_id: Detector ID within samp_freq_span_info corresponding to
  927. * freq_span_id
  928. * @dest_start_bin_idx: Start index of FFT bins within SAMP msg's bin_pwr array
  929. * @dest_end_bin_idx: End index of FFT bins within SAMP msg's bin_pwr array
  930. * @lb_extrabins_start_idx: Left band edge extra bins start index
  931. * @lb_extrabins_num: Number of left band edge extra bins
  932. * @rb_extrabins_start_idx: Right band edge extra bins start index
  933. * @rb_extrabins_num: Number of right band edge extra bins
  934. * @start_freq: Indicates start frequency per-detector (in MHz)
  935. * @end_freq: Indicates last frequency per-detector (in MHz)
  936. * @src_start_bin_idx: Start index within the Spectral report's bin_pwr array,
  937. * where the FFT bins corresponding to this dest_det_id start
  938. */
  939. struct per_session_dest_det_info {
  940. uint8_t freq_span_id;
  941. bool is_sec80;
  942. uint8_t det_id;
  943. uint16_t dest_start_bin_idx;
  944. uint16_t dest_end_bin_idx;
  945. uint16_t lb_extrabins_start_idx;
  946. uint16_t lb_extrabins_num;
  947. uint16_t rb_extrabins_start_idx;
  948. uint16_t rb_extrabins_num;
  949. uint32_t start_freq;
  950. uint32_t end_freq;
  951. uint16_t src_start_bin_idx;
  952. };
  953. /**
  954. * struct per_session_det_map - A map of per-session detector information,
  955. * keyed by the detector id obtained from the Spectral FFT report, mapping to
  956. * detination detector info in SAMP message.
  957. * @dest_det_info: Struct containing per-session detector information
  958. * @num_dest_det_info: Number of destination detectors to which information
  959. * of this detector is to be filled
  960. * @spectral_msg_buf_type: Spectral message buffer type
  961. * @send_to_upper_layers: Indicates whether to send SAMP msg to upper layers
  962. * @det_map_valid: Indicates whether detector map is valid or not
  963. */
  964. struct per_session_det_map {
  965. struct per_session_dest_det_info
  966. dest_det_info[MAX_NUM_DEST_DETECTOR_INFO];
  967. uint8_t num_dest_det_info;
  968. enum spectral_msg_buf_type buf_type;
  969. bool send_to_upper_layers;
  970. bool det_map_valid;
  971. };
  972. /**
  973. * struct per_session_report_info - Consists of per-session Spectral report
  974. * information to be filled at report level in SAMP message.
  975. * @pri20_freq: Primary 20MHz operating frequency in MHz
  976. * @cfreq1: Centre frequency of the frequency span for 20/40/80 MHz BW.
  977. * Segment 1 centre frequency in MHz for 80p80/160 BW.
  978. * @cfreq2: For 80p80, indicates segment 2 centre frequency in MHz. For 160MHz,
  979. * indicates the center frequency of 160MHz span.
  980. * @operating_bw: Device's operating bandwidth.Valid values = enum phy_ch_width
  981. * @sscan_cfreq1: Normal/Agile scan Centre frequency of the frequency span for
  982. * 20/40/80 MHz BW. Center frequency of Primary Segment in MHz for 80p80/160 BW
  983. * Based on Spectral scan mode.
  984. * @sscan_cfreq2: For 80p80, Normal/Agile scan Center frequency for Sec80
  985. * segment. For 160MHz, indicates the center frequency of 160MHz span. Based on
  986. * spectral scan mode
  987. * @sscan_bw: Normal/Agile Scan BW based on Spectral scan mode.
  988. * Valid values = enum phy_ch_width
  989. * @num_spans: Number of frequency spans
  990. */
  991. struct per_session_report_info {
  992. uint32_t pri20_freq;
  993. uint32_t cfreq1;
  994. uint32_t cfreq2;
  995. enum phy_ch_width operating_bw;
  996. uint32_t sscan_cfreq1;
  997. uint32_t sscan_cfreq2;
  998. enum phy_ch_width sscan_bw;
  999. uint8_t num_spans;
  1000. };
  1001. /**
  1002. * struct sscan_detector_list - Spectral scan Detector list, for given Spectral
  1003. * scan mode and operating BW
  1004. * @detectors: List of detectors
  1005. * @num_detectors: Number of detectors for given spectral scan mode, BW
  1006. * and target type
  1007. */
  1008. struct sscan_detector_list {
  1009. uint8_t detectors[SPECTRAL_DETECTOR_ID_MAX];
  1010. uint8_t num_detectors;
  1011. };
  1012. /**
  1013. * struct target_if_spectral - main spectral structure
  1014. * @pdev: Pointer to pdev
  1015. * @spectral_ops: Target if internal Spectral low level operations table
  1016. * @capability: Spectral capabilities structure
  1017. * @properties: Spectral parameter properties per mode
  1018. * @spectral_lock: Lock used for internal Spectral operations
  1019. * @vdev_id: VDEV id for all spectral modes
  1020. * @spectral_curchan_radindex: Current channel spectral index
  1021. * @spectral_extchan_radindex: Extension channel spectral index
  1022. * @spectraldomain: Current Spectral domain
  1023. * @spectral_proc_phyerr: Flags to process for PHY errors
  1024. * @spectral_defaultparams: Default PHY params per Spectral stat
  1025. * @spectral_stats: Spectral related stats
  1026. * @events: Events structure
  1027. * @sc_spectral_ext_chan_ok: Can spectral be detected on the extension channel?
  1028. * @sc_spectral_combined_rssi_ok: Can use combined spectral RSSI?
  1029. * @sc_spectral_20_40_mode: Is AP in 20-40 mode?
  1030. * @sc_spectral_noise_pwr_cal: Noise power cal required?
  1031. * @sc_spectral_non_edma: Is the spectral capable device Non-EDMA?
  1032. * @upper_is_control: Upper segment is primary
  1033. * @upper_is_extension: Upper segment is secondary
  1034. * @lower_is_control: Lower segment is primary
  1035. * @lower_is_extension: Lower segment is secondary
  1036. * @sc_spectraltest_ieeechan: IEEE channel number to return to after a spectral
  1037. * mute test
  1038. * @spectral_numbins: Number of bins
  1039. * @spectral_fft_len: FFT length
  1040. * @spectral_data_len: Total phyerror report length
  1041. * @lb_edge_extrabins: Number of extra bins on left band edge
  1042. * @rb_edge_extrabins: Number of extra bins on right band edge
  1043. * @spectral_max_index_offset: Max FFT index offset (20 MHz mode)
  1044. * @spectral_upper_max_index_offset: Upper max FFT index offset (20/40 MHz mode)
  1045. * @spectral_lower_max_index_offset: Lower max FFT index offset (20/40 MHz mode)
  1046. * @spectral_dc_index: At which index DC is present
  1047. * @send_single_packet: Deprecated
  1048. * @spectral_sent_msg: Indicates whether we send report to upper layers
  1049. * @params: Spectral parameters
  1050. * @last_capture_time: Indicates timestamp of previouse report
  1051. * @num_spectral_data: Number of Spectral samples received in current session
  1052. * @total_spectral_data: Total number of Spectral samples received
  1053. * @max_rssi: Maximum RSSI
  1054. * @detects_control_channel: NA
  1055. * @detects_extension_channel: NA
  1056. * @detects_below_dc: NA
  1057. * @detects_above_dc: NA
  1058. * @sc_scanning: Indicates active wifi scan
  1059. * @sc_spectral_scan: Indicates active specral scan
  1060. * @sc_spectral_full_scan: Deprecated
  1061. * @scan_start_tstamp: Deprecated
  1062. * @last_tstamp: Deprecated
  1063. * @first_tstamp: Deprecated
  1064. * @spectral_samp_count: Deprecated
  1065. * @sc_spectral_samp_count: Deprecated
  1066. * @noise_pwr_reports_reqd: Number of noise power reports required
  1067. * @noise_pwr_reports_recv: Number of noise power reports received
  1068. * @noise_pwr_reports_lock: Lock used for Noise power report processing
  1069. * @noise_pwr_chain_ctl: Noise power report - control channel
  1070. * @noise_pwr_chain_ext: Noise power report - extension channel
  1071. * @chaninfo: Channel statistics
  1072. * @tsf64: Latest TSF Value
  1073. * @param_info: Offload architecture Spectral parameter cache information
  1074. * @ch_width: Indicates Channel Width 20/40/80/160 MHz for each Spectral mode
  1075. * @diag_stats: Diagnostic statistics
  1076. * @is_160_format: Indicates whether information provided by HW is in altered
  1077. * format for 802.11ac 160/80+80 MHz support (QCA9984 onwards)
  1078. * @is_lb_edge_extrabins_format: Indicates whether information provided by
  1079. * HW has 4 extra bins, at left band edge, for report mode 2
  1080. * @is_rb_edge_extrabins_format: Indicates whether information provided
  1081. * by HW has 4 extra bins, at right band edge, for report mode 2
  1082. * @is_sec80_rssi_war_required: Indicates whether the software workaround is
  1083. * required to obtain approximate combined RSSI for secondary 80Mhz segment
  1084. * @simctx: Spectral Simulation context
  1085. * @spectral_gen: Spectral hardware generation
  1086. * @hdr_sig_exp: Expected signature in PHYERR TLV header, for the given hardware
  1087. * generation
  1088. * @tag_sscan_summary_exp: Expected Spectral Scan Summary tag in PHYERR TLV
  1089. * header, for the given hardware generation
  1090. * @tag_sscan_fft_exp: Expected Spectral Scan FFT report tag in PHYERR TLV
  1091. * header, for the given hardware generation
  1092. * @tlvhdr_size: Expected PHYERR TLV header size, for the given hardware
  1093. * generation
  1094. * @nl_cb: Netlink callbacks
  1095. * @use_nl_bcast: Whether to use Netlink broadcast/unicast
  1096. * @send_phy_data: Send data to the application layer for a particular msg type
  1097. * @len_adj_swar: Spectral fft bin length adjustment SWAR related info
  1098. * @timestamp_war: Spectral time stamp WAR related info
  1099. * @dbr_ring_debug: Whether Spectral DBR ring debug is enabled
  1100. * @dbr_buff_debug: Whether Spectral DBR buffer debug is enabled
  1101. * @direct_dma_support: Whether Direct-DMA is supported on the current radio
  1102. * @prev_tstamp: Timestamp of the previously received sample, which has to be
  1103. * compared with the current tstamp to check descrepancy
  1104. * @rparams: Parameters related to Spectral report structure
  1105. * @param_min_max: Spectral parameter's minimum and maximum values
  1106. * @finite_scan: Parameters for finite Spectral scan
  1107. * @detector_list: Detector list for a given Spectral scan mode and channel
  1108. * width, based on the target type.
  1109. * @det_map: Map of per-session detector information keyed by the Spectral HW
  1110. * detector id.
  1111. * @report_info: Per session info to be filled at report level in SAMP message
  1112. */
  1113. struct target_if_spectral {
  1114. struct wlan_objmgr_pdev *pdev_obj;
  1115. struct target_if_spectral_ops spectral_ops;
  1116. struct spectral_caps capability;
  1117. struct spectral_param_properties
  1118. properties[SPECTRAL_SCAN_MODE_MAX][SPECTRAL_PARAM_MAX];
  1119. qdf_spinlock_t spectral_lock;
  1120. uint8_t vdev_id[SPECTRAL_SCAN_MODE_MAX];
  1121. int16_t spectral_curchan_radindex;
  1122. int16_t spectral_extchan_radindex;
  1123. uint32_t spectraldomain;
  1124. uint32_t spectral_proc_phyerr;
  1125. struct spectral_config spectral_defaultparams;
  1126. struct target_if_spectral_stats spectral_stats;
  1127. struct target_if_spectral_event *events;
  1128. unsigned int sc_spectral_ext_chan_ok:1,
  1129. sc_spectral_combined_rssi_ok:1,
  1130. sc_spectral_20_40_mode:1,
  1131. sc_spectral_noise_pwr_cal:1,
  1132. sc_spectral_non_edma:1;
  1133. int upper_is_control;
  1134. int upper_is_extension;
  1135. int lower_is_control;
  1136. int lower_is_extension;
  1137. uint8_t sc_spectraltest_ieeechan;
  1138. int spectral_numbins;
  1139. int spectral_fft_len;
  1140. int spectral_data_len;
  1141. /*
  1142. * For 11ac chipsets prior to AR900B version 2.0, a max of 512 bins are
  1143. * delivered. However, there can be additional bins reported for
  1144. * AR900B version 2.0 and QCA9984 as described next:
  1145. *
  1146. * AR900B version 2.0: An additional tone is processed on the right
  1147. * hand side in order to facilitate detection of radar pulses out to
  1148. * the extreme band-edge of the channel frequency. Since the HW design
  1149. * processes four tones at a time, this requires one additional Dword
  1150. * to be added to the search FFT report.
  1151. *
  1152. * QCA9984: When spectral_scan_rpt_mode = 2, i.e 2-dword summary +
  1153. * 1x-oversampled bins (in-band) per FFT, then 8 more bins
  1154. * (4 more on left side and 4 more on right side)are added.
  1155. */
  1156. int lb_edge_extrabins;
  1157. int rb_edge_extrabins;
  1158. int spectral_max_index_offset;
  1159. int spectral_upper_max_index_offset;
  1160. int spectral_lower_max_index_offset;
  1161. int spectral_dc_index;
  1162. int send_single_packet;
  1163. int spectral_sent_msg;
  1164. int classify_scan;
  1165. qdf_timer_t classify_timer;
  1166. struct spectral_config params[SPECTRAL_SCAN_MODE_MAX];
  1167. bool params_valid[SPECTRAL_SCAN_MODE_MAX];
  1168. struct spectral_classifier_params classifier_params;
  1169. int last_capture_time;
  1170. int num_spectral_data;
  1171. int total_spectral_data;
  1172. int max_rssi;
  1173. int detects_control_channel;
  1174. int detects_extension_channel;
  1175. int detects_below_dc;
  1176. int detects_above_dc;
  1177. int sc_scanning;
  1178. int sc_spectral_scan;
  1179. int sc_spectral_full_scan;
  1180. uint64_t scan_start_tstamp;
  1181. uint32_t last_tstamp;
  1182. uint32_t first_tstamp;
  1183. uint32_t spectral_samp_count;
  1184. uint32_t sc_spectral_samp_count;
  1185. int noise_pwr_reports_reqd;
  1186. int noise_pwr_reports_recv;
  1187. qdf_spinlock_t noise_pwr_reports_lock;
  1188. struct target_if_chain_noise_pwr_info
  1189. *noise_pwr_chain_ctl[HOST_MAX_ANTENNA];
  1190. struct target_if_chain_noise_pwr_info
  1191. *noise_pwr_chain_ext[HOST_MAX_ANTENNA];
  1192. uint64_t tsf64;
  1193. #if ATH_PERF_PWR_OFFLOAD
  1194. struct target_if_spectral_param_state_info
  1195. param_info[SPECTRAL_SCAN_MODE_MAX];
  1196. #endif
  1197. enum phy_ch_width ch_width[SPECTRAL_SCAN_MODE_MAX];
  1198. struct spectral_diag_stats diag_stats;
  1199. bool is_160_format;
  1200. bool is_lb_edge_extrabins_format;
  1201. bool is_rb_edge_extrabins_format;
  1202. bool is_sec80_rssi_war_required;
  1203. #ifdef QCA_SUPPORT_SPECTRAL_SIMULATION
  1204. void *simctx;
  1205. #endif
  1206. enum spectral_gen spectral_gen;
  1207. uint8_t hdr_sig_exp;
  1208. uint8_t tag_sscan_summary_exp;
  1209. uint8_t tag_sscan_fft_exp;
  1210. uint8_t tlvhdr_size;
  1211. struct spectral_nl_cb nl_cb;
  1212. bool use_nl_bcast;
  1213. int (*send_phy_data)(struct wlan_objmgr_pdev *pdev,
  1214. enum spectral_msg_type smsg_type);
  1215. struct spectral_fft_bin_len_adj_swar len_adj_swar;
  1216. struct spectral_timestamp_war timestamp_war;
  1217. enum spectral_160mhz_report_delivery_state
  1218. state_160mhz_delivery[SPECTRAL_SCAN_MODE_MAX];
  1219. bool dbr_ring_debug;
  1220. bool dbr_buff_debug;
  1221. bool direct_dma_support;
  1222. #ifdef OPTIMIZED_SAMP_MESSAGE
  1223. uint32_t prev_tstamp[MAX_DETECTORS_PER_PDEV];
  1224. #else
  1225. uint32_t prev_tstamp;
  1226. #endif
  1227. struct spectral_report_params rparams;
  1228. struct spectral_param_min_max param_min_max;
  1229. struct target_if_finite_spectral_scan_params
  1230. finite_scan[SPECTRAL_SCAN_MODE_MAX];
  1231. struct sscan_detector_list
  1232. detector_list[SPECTRAL_SCAN_MODE_MAX][CH_WIDTH_MAX];
  1233. struct per_session_det_map det_map[MAX_DETECTORS_PER_PDEV];
  1234. struct per_session_report_info report_info[SPECTRAL_SCAN_MODE_MAX];
  1235. };
  1236. /**
  1237. * struct target_if_psoc_spectral - Target if psoc Spectral object
  1238. * @psoc_obj: psoc object
  1239. * @wmi_ops: Spectral WMI operations
  1240. */
  1241. struct target_if_psoc_spectral {
  1242. struct wlan_objmgr_psoc *psoc_obj;
  1243. struct spectral_wmi_ops wmi_ops;
  1244. };
  1245. #ifdef OPTIMIZED_SAMP_MESSAGE
  1246. /**
  1247. * struct target_if_samp_msg_params - Spectral Analysis Messaging Protocol
  1248. * data format
  1249. * @hw_detector_id: Spectral HW detector ID
  1250. * @rssi: Spectral RSSI
  1251. * @lower_rssi: RSSI of lower band
  1252. * @upper_rssi: RSSI of upper band
  1253. * @chain_ctl_rssi: RSSI for control channel, for all antennas
  1254. * @chain_ext_rssi: RSSI for extension channel, for all antennas
  1255. * @last_raw_timestamp: Previous FFT report's raw timestamp.
  1256. * @raw_timestamp: FFT timestamp reported by HW on primary segment.
  1257. * @timestamp: timestamp
  1258. * @reset_delay: Time gap between the last spectral report before reset and the
  1259. * end of reset.
  1260. * @max_mag: maximum magnitude
  1261. * @max_index: index of max magnitude
  1262. * @noise_floor: current noise floor
  1263. * @pri80ind: Indication from hardware that the sample was received on the
  1264. * primary 80 MHz segment. If this is set when smode =
  1265. * SPECTRAL_SCAN_MODE_AGILE, it indicates that Spectral was carried
  1266. * out on pri80 instead of the Agile frequency due to a channel
  1267. * switch - Software may choose to ignore the sample in this case.
  1268. * @bin_pwr_data: Contains FFT magnitudes
  1269. */
  1270. struct target_if_samp_msg_params {
  1271. uint8_t hw_detector_id;
  1272. int8_t rssi;
  1273. int8_t lower_rssi;
  1274. int8_t upper_rssi;
  1275. int8_t chain_ctl_rssi[HOST_MAX_ANTENNA];
  1276. int8_t chain_ext_rssi[HOST_MAX_ANTENNA];
  1277. uint32_t last_raw_timestamp;
  1278. uint32_t raw_timestamp;
  1279. uint32_t timestamp;
  1280. uint32_t reset_delay;
  1281. uint16_t max_mag;
  1282. uint16_t max_index;
  1283. int16_t noise_floor;
  1284. uint8_t agc_total_gain;
  1285. uint8_t gainchange;
  1286. uint8_t pri80ind;
  1287. uint8_t *bin_pwr_data;
  1288. };
  1289. #else
  1290. /**
  1291. * struct target_if_samp_msg_params - Spectral Analysis Messaging Protocol
  1292. * data format
  1293. * @rssi: RSSI (except for secondary 80 segment)
  1294. * @rssi_sec80: RSSI for secondary 80 segment
  1295. * @lower_rssi: RSSI of lower band
  1296. * @upper_rssi: RSSI of upper band
  1297. * @chain_ctl_rssi: RSSI for control channel, for all antennas
  1298. * @chain_ext_rssi: RSSI for extension channel, for all antennas
  1299. * @bwinfo: bandwidth info
  1300. * @data_len: length of FFT data (except for secondary 80 segment)
  1301. * @data_len_sec80: length of FFT data for secondary 80 segment
  1302. * @tstamp: timestamp
  1303. * @last_tstamp: last time stamp
  1304. * @max_mag: maximum magnitude (except for secondary 80 segment)
  1305. * @max_mag_sec80: maximum magnitude for secondary 80 segment
  1306. * @max_index: index of max magnitude (except for secondary 80 segment)
  1307. * @max_index_sec80: index of max magnitude for secondary 80 segment
  1308. * @max_exp: max exp
  1309. * @peak: peak frequency (obsolete)
  1310. * @pwr_count: number of FFT bins (except for secondary 80 segment)
  1311. * @pwr_count_5mhz: number of FFT bins in extra 5 MHz in
  1312. * 165 MHz/restricted 80p80 mode
  1313. * @pwr_count_sec80: number of FFT bins in secondary 80 segment
  1314. * @nb_lower: This is deprecated
  1315. * @nb_upper: This is deprecated
  1316. * @max_upper_index: index of max mag in upper band
  1317. * @max_lower_index: index of max mag in lower band
  1318. * @bin_pwr_data: Contains FFT magnitudes (except for secondary 80 segment)
  1319. * @bin_pwr_data_5mhz: Contains FFT magnitudes for the extra 5 MHz
  1320. * in 165 MHz/restricted 80p80 mode
  1321. * @bin_pwr_data_sec80: Contains FFT magnitudes for the secondary 80 segment
  1322. * @freq: Center frequency of primary 20MHz channel in MHz
  1323. * @vhtop_ch_freq_seg1: VHT operation first segment center frequency in MHz
  1324. * @vhtop_ch_freq_seg2: VHT operation second segment center frequency in MHz
  1325. * @agile_freq1: Center frequency in MHz of the entire span(for 80+80 MHz
  1326. * agile Scan it is primary 80 MHz span) across which
  1327. * Agile Spectral is carried out. Applicable only for Agile
  1328. * Spectral samples.
  1329. * @agile_freq2: Center frequency in MHz of the secondary 80 MHz span
  1330. * across which Agile Spectral is carried out. Applicable
  1331. * only for Agile Spectral samples in 80+80 MHz mode.
  1332. * @freq_loading: spectral control duty cycles
  1333. * @noise_floor: current noise floor (except for secondary 80 segment)
  1334. * @noise_floor_sec80: current noise floor for secondary 80 segment
  1335. * @interf_list: List of interfernce sources
  1336. * @classifier_params: classifier parameters
  1337. * @sc: classifier parameters
  1338. * @pri80ind: Indication from hardware that the sample was received on the
  1339. * primary 80 MHz segment. If this is set when smode =
  1340. * SPECTRAL_SCAN_MODE_AGILE, it indicates that Spectral was carried out on
  1341. * pri80 instead of the Agile frequency due to a channel switch - Software may
  1342. * choose to ignore the sample in this case.
  1343. * @pri80ind_sec80: Indication from hardware that the sample was received on the
  1344. * primary 80 MHz segment instead of the secondary 80 MHz segment due to a
  1345. * channel switch - Software may choose to ignore the sample if this is set.
  1346. * Applicable only if smode = SPECTRAL_SCAN_MODE_NORMAL and for 160/80+80 MHz
  1347. * Spectral operation and if the chipset supports fragmented 160/80+80 MHz
  1348. * operation.
  1349. * @last_raw_timestamp: Previous FFT report's raw timestamp. In case of 160MHz
  1350. * it will be primary 80 segment's timestamp as both primary & secondary
  1351. * segment's timestamps are expected to be almost equal
  1352. * @timestamp_war_offset: Offset calculated based on reset_delay and
  1353. * last_raw_stamp. It will be added to raw_timestamp to get tstamp.
  1354. * @raw_timestamp: FFT timestamp reported by HW on primary segment.
  1355. * @raw_timestamp_sec80: FFT timestamp reported by HW on secondary 80 segment.
  1356. * @reset_delay: Time gap between the last spectral report before reset and the
  1357. * end of reset.
  1358. * @target_reset_count: Indicates the the number of times the target went
  1359. * through reset routine after spectral was enabled.
  1360. */
  1361. struct target_if_samp_msg_params {
  1362. int8_t rssi;
  1363. int8_t rssi_sec80;
  1364. int8_t lower_rssi;
  1365. int8_t upper_rssi;
  1366. int8_t chain_ctl_rssi[HOST_MAX_ANTENNA];
  1367. int8_t chain_ext_rssi[HOST_MAX_ANTENNA];
  1368. uint16_t bwinfo;
  1369. uint16_t datalen;
  1370. uint16_t datalen_sec80;
  1371. uint32_t tstamp;
  1372. uint32_t last_tstamp;
  1373. uint16_t max_mag;
  1374. uint16_t max_mag_sec80;
  1375. uint16_t max_index;
  1376. uint16_t max_index_sec80;
  1377. uint8_t max_exp;
  1378. int peak;
  1379. int pwr_count;
  1380. int pwr_count_5mhz;
  1381. int pwr_count_sec80;
  1382. int8_t nb_lower;
  1383. int8_t nb_upper;
  1384. uint16_t max_lower_index;
  1385. uint16_t max_upper_index;
  1386. uint8_t *bin_pwr_data;
  1387. uint8_t *bin_pwr_data_5mhz;
  1388. uint8_t *bin_pwr_data_sec80;
  1389. uint16_t freq;
  1390. uint16_t vhtop_ch_freq_seg1;
  1391. uint16_t vhtop_ch_freq_seg2;
  1392. uint16_t agile_freq1;
  1393. uint16_t agile_freq2;
  1394. uint16_t freq_loading;
  1395. int16_t noise_floor;
  1396. int16_t noise_floor_sec80;
  1397. struct interf_src_rsp interf_list;
  1398. struct spectral_classifier_params classifier_params;
  1399. struct ath_softc *sc;
  1400. uint8_t agc_total_gain;
  1401. uint8_t agc_total_gain_sec80;
  1402. uint8_t gainchange;
  1403. uint8_t gainchange_sec80;
  1404. enum spectral_scan_mode smode;
  1405. uint8_t pri80ind;
  1406. uint8_t pri80ind_sec80;
  1407. uint32_t last_raw_timestamp;
  1408. uint32_t timestamp_war_offset;
  1409. uint32_t raw_timestamp;
  1410. uint32_t raw_timestamp_sec80;
  1411. uint32_t reset_delay;
  1412. uint32_t target_reset_count;
  1413. };
  1414. #endif
  1415. /**
  1416. * struct target_if_spectral_agile_mode_cap - Structure to hold agile
  1417. * Spetcral scan capability
  1418. * @agile_spectral_cap: agile Spectral scan capability for 20/40/80 MHz
  1419. * @agile_spectral_cap_160: agile Spectral scan capability for 160 MHz
  1420. * @agile_spectral_cap_80p80: agile Spectral scan capability for 80+80 MHz
  1421. */
  1422. struct target_if_spectral_agile_mode_cap {
  1423. bool agile_spectral_cap;
  1424. bool agile_spectral_cap_160;
  1425. bool agile_spectral_cap_80p80;
  1426. };
  1427. #ifdef WLAN_CONV_SPECTRAL_ENABLE
  1428. /**
  1429. * target_if_spectral_dump_fft() - Dump Spectral FFT
  1430. * @pfft: Pointer to Spectral Phyerr FFT
  1431. * @fftlen: FFT length
  1432. *
  1433. * Return: Success or failure
  1434. */
  1435. int target_if_spectral_dump_fft(uint8_t *pfft, int fftlen);
  1436. /**
  1437. * target_if_dbg_print_samp_param() - Print contents of SAMP struct
  1438. * @p: Pointer to SAMP message
  1439. *
  1440. * Return: Void
  1441. */
  1442. void target_if_dbg_print_samp_param(struct target_if_samp_msg_params *p);
  1443. /**
  1444. * target_if_get_offset_swar_sec80() - Get offset for SWAR according to
  1445. * the channel width
  1446. * @channel_width: Channel width
  1447. *
  1448. * Return: Offset for SWAR
  1449. */
  1450. uint32_t target_if_get_offset_swar_sec80(uint32_t channel_width);
  1451. /**
  1452. * target_if_sptrl_register_tx_ops() - Register Spectral target_if Tx Ops
  1453. * @tx_ops: Tx Ops
  1454. *
  1455. * Return: void
  1456. */
  1457. void target_if_sptrl_register_tx_ops(struct wlan_lmac_if_tx_ops *tx_ops);
  1458. #ifndef OPTIMIZED_SAMP_MESSAGE
  1459. /**
  1460. * target_if_spectral_create_samp_msg() - Create the spectral samp message
  1461. * @spectral : Pointer to spectral internal structure
  1462. * @params : spectral samp message parameters
  1463. *
  1464. * API to create the spectral samp message
  1465. *
  1466. * Return: void
  1467. */
  1468. void target_if_spectral_create_samp_msg(
  1469. struct target_if_spectral *spectral,
  1470. struct target_if_samp_msg_params *params);
  1471. #endif
  1472. #ifdef OPTIMIZED_SAMP_MESSAGE
  1473. /**
  1474. * target_if_spectral_fill_samp_msg() - Fill the Spectral SAMP message
  1475. * @spectral : Pointer to spectral internal structure
  1476. * @params: Spectral SAMP message fields
  1477. *
  1478. * Fill the spectral SAMP message fields using params and detector map.
  1479. *
  1480. * Return: Success/Failure
  1481. */
  1482. QDF_STATUS target_if_spectral_fill_samp_msg(
  1483. struct target_if_spectral *spectral,
  1484. struct target_if_samp_msg_params *params);
  1485. #endif
  1486. /**
  1487. * target_if_spectral_process_phyerr_gen3() - Process phyerror event for gen3
  1488. * @pdev: Pointer to pdev object
  1489. * @payload: Pointer to spectral report
  1490. *
  1491. * Process phyerror event for gen3
  1492. *
  1493. * Return: Success/Failure
  1494. */
  1495. int target_if_spectral_process_report_gen3(
  1496. struct wlan_objmgr_pdev *pdev,
  1497. void *buf);
  1498. /**
  1499. * target_if_process_phyerr_gen2() - Process PHY Error for gen2
  1500. * @spectral: Pointer to Spectral object
  1501. * @data: Pointer to phyerror event buffer
  1502. * @datalen: Data length
  1503. * @p_rfqual: RF quality info
  1504. * @p_chaninfo: Channel info
  1505. * @tsf64: 64 bit tsf timestamp
  1506. * @acs_stats: ACS stats
  1507. *
  1508. * Process PHY Error for gen2
  1509. *
  1510. * Return: Success/Failure
  1511. */
  1512. int target_if_process_phyerr_gen2(
  1513. struct target_if_spectral *spectral,
  1514. uint8_t *data,
  1515. uint32_t datalen, struct target_if_spectral_rfqual_info *p_rfqual,
  1516. struct target_if_spectral_chan_info *p_chaninfo,
  1517. uint64_t tsf64,
  1518. struct target_if_spectral_acs_stats *acs_stats);
  1519. /**
  1520. * target_if_spectral_send_intf_found_msg() - Indicate to application layer that
  1521. * interference has been found
  1522. * @pdev: Pointer to pdev
  1523. * @cw_int: 1 if CW interference is found, 0 if WLAN interference is found
  1524. * @dcs_enabled: 1 if DCS is enabled, 0 if DCS is disabled
  1525. *
  1526. * Send message to application layer
  1527. * indicating that interference has been found
  1528. *
  1529. * Return: None
  1530. */
  1531. void target_if_spectral_send_intf_found_msg(
  1532. struct wlan_objmgr_pdev *pdev,
  1533. uint16_t cw_int, uint32_t dcs_enabled);
  1534. /**
  1535. * target_if_stop_spectral_scan() - Stop spectral scan
  1536. * @pdev: Pointer to pdev object
  1537. * @smode: Spectral scan mode
  1538. * @err: Pointer to error code
  1539. *
  1540. * API to stop the current on-going spectral scan
  1541. *
  1542. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  1543. */
  1544. QDF_STATUS target_if_stop_spectral_scan(struct wlan_objmgr_pdev *pdev,
  1545. const enum spectral_scan_mode smode,
  1546. enum spectral_cp_error_code *err);
  1547. /**
  1548. * target_if_spectral_get_vdev() - Get pointer to vdev to be used for Spectral
  1549. * operations
  1550. * @spectral: Pointer to Spectral target_if internal private data
  1551. * @smode: spectral scan mode
  1552. *
  1553. * Spectral operates on pdev. However, in order to retrieve some WLAN
  1554. * properties, a vdev is required. To facilitate this, the function returns the
  1555. * first vdev in our pdev. The caller should release the reference to the vdev
  1556. * once it is done using it.
  1557. * TODO: If the framework later provides an API to obtain the first active
  1558. * vdev, then it would be preferable to use this API.
  1559. *
  1560. * Return: Pointer to vdev on success, NULL on failure
  1561. */
  1562. struct wlan_objmgr_vdev *target_if_spectral_get_vdev(
  1563. struct target_if_spectral *spectral,
  1564. enum spectral_scan_mode smode);
  1565. /**
  1566. * target_if_spectral_dump_hdr_gen2() - Dump Spectral header for gen2
  1567. * @phdr: Pointer to Spectral Phyerr Header
  1568. *
  1569. * Dump Spectral header
  1570. *
  1571. * Return: Success/Failure
  1572. */
  1573. int target_if_spectral_dump_hdr_gen2(struct spectral_phyerr_hdr_gen2 *phdr);
  1574. /**
  1575. * target_if_get_combrssi_sec80_seg_gen2() - Get approximate combined RSSI
  1576. * for Secondary 80 segment
  1577. * @spectral: Pointer to spectral object
  1578. * @p_sfft_sec80: Pointer to search fft info of secondary 80 segment
  1579. *
  1580. * Get approximate combined RSSI for Secondary 80 segment
  1581. *
  1582. * Return: Combined RSSI for secondary 80Mhz segment
  1583. */
  1584. int8_t target_if_get_combrssi_sec80_seg_gen2(
  1585. struct target_if_spectral *spectral,
  1586. struct spectral_search_fft_info_gen2 *p_sfft_sec80);
  1587. /**
  1588. * target_if_spectral_dump_tlv_gen2() - Dump Spectral TLV for gen2
  1589. * @ptlv: Pointer to Spectral Phyerr TLV
  1590. * @is_160_format: Indicates 160 format
  1591. *
  1592. * Dump Spectral TLV for gen2
  1593. *
  1594. * Return: Success/Failure
  1595. */
  1596. int target_if_spectral_dump_tlv_gen2(
  1597. struct spectral_phyerr_tlv_gen2 *ptlv, bool is_160_format);
  1598. /**
  1599. * target_if_spectral_dump_phyerr_data_gen2() - Dump Spectral
  1600. * related PHY Error for gen2
  1601. * @data: Pointer to phyerror buffer
  1602. * @datalen: Data length
  1603. * @is_160_format: Indicates 160 format
  1604. *
  1605. * Dump Spectral related PHY Error for gen2
  1606. *
  1607. * Return: Success/Failure
  1608. */
  1609. int target_if_spectral_dump_phyerr_data_gen2(
  1610. uint8_t *data,
  1611. uint32_t datalen,
  1612. bool is_160_format);
  1613. /**
  1614. * target_if_dbg_print_samp_msg() - Print contents of SAMP Message
  1615. * @p: Pointer to SAMP message
  1616. *
  1617. * Print contents of SAMP Message
  1618. *
  1619. * Return: Void
  1620. */
  1621. void target_if_dbg_print_samp_msg(struct spectral_samp_msg *pmsg);
  1622. /**
  1623. * get_target_if_spectral_handle_from_pdev() - Get handle to target_if internal
  1624. * Spectral data
  1625. * @pdev: Pointer to pdev
  1626. *
  1627. * Return: Handle to target_if internal Spectral data on success, NULL on
  1628. * failure
  1629. */
  1630. struct target_if_spectral *get_target_if_spectral_handle_from_pdev(
  1631. struct wlan_objmgr_pdev *pdev);
  1632. /**
  1633. * get_target_if_spectral_handle_from_psoc() - Get handle to psoc target_if
  1634. * internal Spectral data
  1635. * @psoc: Pointer to psoc
  1636. *
  1637. * Return: Handle to target_if psoc internal Spectral data on success, NULL on
  1638. * failure
  1639. */
  1640. static inline
  1641. struct target_if_psoc_spectral *get_target_if_spectral_handle_from_psoc(
  1642. struct wlan_objmgr_psoc *psoc)
  1643. {
  1644. struct wlan_lmac_if_rx_ops *rx_ops;
  1645. struct target_if_psoc_spectral *psoc_spectral;
  1646. if (!psoc) {
  1647. spectral_err("psoc is null");
  1648. return NULL;
  1649. }
  1650. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1651. if (!rx_ops) {
  1652. spectral_err("rx_ops is null");
  1653. return NULL;
  1654. }
  1655. psoc_spectral = (struct target_if_psoc_spectral *)
  1656. rx_ops->sptrl_rx_ops.sptrlro_get_psoc_target_handle(psoc);
  1657. return psoc_spectral;
  1658. }
  1659. /**
  1660. * target_if_vdev_get_chan_freq() - Get the operating channel frequency of a
  1661. * given vdev
  1662. * @pdev: Pointer to vdev
  1663. *
  1664. * Get the operating channel frequency of a given vdev
  1665. *
  1666. * Return: Operating channel frequency of a vdev
  1667. */
  1668. static inline
  1669. int16_t target_if_vdev_get_chan_freq(struct wlan_objmgr_vdev *vdev)
  1670. {
  1671. struct wlan_objmgr_psoc *psoc = NULL;
  1672. struct wlan_lmac_if_rx_ops *rx_ops;
  1673. psoc = wlan_vdev_get_psoc(vdev);
  1674. if (!psoc) {
  1675. spectral_err("psoc is NULL");
  1676. return -EINVAL;
  1677. }
  1678. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1679. if (!rx_ops) {
  1680. spectral_err("rx_ops is null");
  1681. return -EINVAL;
  1682. }
  1683. return rx_ops->sptrl_rx_ops.sptrlro_vdev_get_chan_freq(
  1684. vdev);
  1685. }
  1686. /**
  1687. * target_if_vdev_get_chan_freq_seg2() - Get center frequency of secondary 80 of
  1688. * given vdev
  1689. * @vdev: Pointer to vdev
  1690. *
  1691. * Get the center frequency of secondary 80 of given vdev
  1692. *
  1693. * Return: center frequency of secondary 80
  1694. */
  1695. static inline
  1696. int16_t target_if_vdev_get_chan_freq_seg2(struct wlan_objmgr_vdev *vdev)
  1697. {
  1698. struct wlan_objmgr_psoc *psoc = NULL;
  1699. struct wlan_lmac_if_rx_ops *rx_ops;
  1700. psoc = wlan_vdev_get_psoc(vdev);
  1701. if (!psoc) {
  1702. spectral_err("psoc is NULL");
  1703. return -EINVAL;
  1704. }
  1705. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1706. if (!rx_ops) {
  1707. spectral_err("rx_ops is null");
  1708. return -EINVAL;
  1709. }
  1710. return rx_ops->sptrl_rx_ops.sptrlro_vdev_get_chan_freq_seg2(vdev);
  1711. }
  1712. /**
  1713. * target_if_vdev_get_ch_width() - Get the operating channel bandwidth of a
  1714. * given vdev
  1715. * @pdev: Pointer to vdev
  1716. *
  1717. * Get the operating channel bandwidth of a given vdev
  1718. *
  1719. * Return: channel bandwidth enumeration corresponding to the vdev
  1720. */
  1721. static inline
  1722. enum phy_ch_width target_if_vdev_get_ch_width(struct wlan_objmgr_vdev *vdev)
  1723. {
  1724. struct wlan_objmgr_psoc *psoc = NULL;
  1725. enum phy_ch_width ch_width;
  1726. struct wlan_lmac_if_rx_ops *rx_ops;
  1727. psoc = wlan_vdev_get_psoc(vdev);
  1728. if (!psoc) {
  1729. spectral_err("psoc is NULL");
  1730. return CH_WIDTH_INVALID;
  1731. }
  1732. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1733. if (!rx_ops) {
  1734. spectral_err("rx_ops is null");
  1735. return CH_WIDTH_INVALID;
  1736. }
  1737. ch_width = rx_ops->sptrl_rx_ops.sptrlro_vdev_get_ch_width(vdev);
  1738. if (ch_width == CH_WIDTH_160MHZ) {
  1739. int16_t cfreq2;
  1740. cfreq2 = target_if_vdev_get_chan_freq_seg2(vdev);
  1741. if (cfreq2 < 0) {
  1742. spectral_err("Invalid value for cfreq2 %d", cfreq2);
  1743. return CH_WIDTH_INVALID;
  1744. }
  1745. /* Use non zero cfreq2 to identify 80p80 */
  1746. if (cfreq2)
  1747. ch_width = CH_WIDTH_80P80MHZ;
  1748. }
  1749. return ch_width;
  1750. }
  1751. /**
  1752. * target_if_vdev_get_sec20chan_freq_mhz() - Get the frequency of secondary
  1753. * 20 MHz channel for a given vdev
  1754. * @pdev: Pointer to vdev
  1755. *
  1756. * Get the frequency of secondary 20Mhz channel for a given vdev
  1757. *
  1758. * Return: Frequency of secondary 20Mhz channel for a given vdev
  1759. */
  1760. static inline
  1761. int target_if_vdev_get_sec20chan_freq_mhz(
  1762. struct wlan_objmgr_vdev *vdev,
  1763. uint16_t *sec20chan_freq)
  1764. {
  1765. struct wlan_objmgr_psoc *psoc = NULL;
  1766. struct wlan_lmac_if_rx_ops *rx_ops;
  1767. psoc = wlan_vdev_get_psoc(vdev);
  1768. if (!psoc) {
  1769. spectral_err("psoc is NULL");
  1770. return -EINVAL;
  1771. }
  1772. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1773. if (!rx_ops) {
  1774. spectral_err("rx_ops is null");
  1775. return -EINVAL;
  1776. }
  1777. return rx_ops->sptrl_rx_ops.
  1778. sptrlro_vdev_get_sec20chan_freq_mhz(vdev, sec20chan_freq);
  1779. }
  1780. /**
  1781. * target_if_spectral_is_feature_disabled_psoc() - Check if Spectral feature is
  1782. * disabled for a given psoc
  1783. * @psoc: Pointer to psoc
  1784. *
  1785. * Return: true or false
  1786. */
  1787. static inline
  1788. bool target_if_spectral_is_feature_disabled_psoc(struct wlan_objmgr_psoc *psoc)
  1789. {
  1790. struct wlan_lmac_if_rx_ops *rx_ops;
  1791. if (!psoc) {
  1792. spectral_err("psoc is NULL");
  1793. return true;
  1794. }
  1795. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1796. if (!rx_ops) {
  1797. spectral_err("rx_ops is null");
  1798. return true;
  1799. }
  1800. if (rx_ops->sptrl_rx_ops.
  1801. sptrlro_spectral_is_feature_disabled_psoc)
  1802. return rx_ops->sptrl_rx_ops.
  1803. sptrlro_spectral_is_feature_disabled_psoc(psoc);
  1804. return true;
  1805. }
  1806. /**
  1807. * target_if_spectral_is_feature_disabled_pdev() - Check if Spectral feature is
  1808. * disabled for a given pdev
  1809. * @pdev: Pointer to pdev
  1810. *
  1811. * Return: true or false
  1812. */
  1813. static inline
  1814. bool target_if_spectral_is_feature_disabled_pdev(struct wlan_objmgr_pdev *pdev)
  1815. {
  1816. struct wlan_lmac_if_rx_ops *rx_ops;
  1817. struct wlan_objmgr_psoc *psoc;
  1818. if (!pdev) {
  1819. spectral_err("pdev is NULL");
  1820. return true;
  1821. }
  1822. psoc = wlan_pdev_get_psoc(pdev);
  1823. if (!psoc) {
  1824. spectral_err("psoc is NULL");
  1825. return true;
  1826. }
  1827. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1828. if (!rx_ops) {
  1829. spectral_err("rx_ops is null");
  1830. return true;
  1831. }
  1832. if (rx_ops->sptrl_rx_ops.
  1833. sptrlro_spectral_is_feature_disabled_pdev)
  1834. return rx_ops->sptrl_rx_ops.
  1835. sptrlro_spectral_is_feature_disabled_pdev(pdev);
  1836. return true;
  1837. }
  1838. /**
  1839. * target_if_spectral_set_rxchainmask() - Set Spectral Rx chainmask
  1840. * @pdev: Pointer to pdev
  1841. * @spectral_rx_chainmask: Spectral Rx chainmask
  1842. *
  1843. * Return: None
  1844. */
  1845. static inline
  1846. void target_if_spectral_set_rxchainmask(struct wlan_objmgr_pdev *pdev,
  1847. uint8_t spectral_rx_chainmask)
  1848. {
  1849. struct wlan_objmgr_psoc *psoc = NULL;
  1850. struct target_if_spectral *spectral = NULL;
  1851. enum spectral_scan_mode smode = SPECTRAL_SCAN_MODE_NORMAL;
  1852. struct wlan_lmac_if_rx_ops *rx_ops;
  1853. psoc = wlan_pdev_get_psoc(pdev);
  1854. if (!psoc) {
  1855. spectral_err("psoc is NULL");
  1856. return;
  1857. }
  1858. rx_ops = wlan_psoc_get_lmac_if_rxops(psoc);
  1859. if (!rx_ops) {
  1860. spectral_err("rx_ops is null");
  1861. return;
  1862. }
  1863. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  1864. spectral_err("Invalid Spectral mode %u", smode);
  1865. return;
  1866. }
  1867. if (rx_ops->sptrl_rx_ops.
  1868. sptrlro_spectral_is_feature_disabled_pdev(pdev)) {
  1869. spectral_info("Spectral feature is disabled");
  1870. return;
  1871. }
  1872. spectral = get_target_if_spectral_handle_from_pdev(pdev);
  1873. if (!spectral) {
  1874. spectral_err("Spectral target if object is null");
  1875. return;
  1876. }
  1877. /* set chainmask for all the modes */
  1878. for (; smode < SPECTRAL_SCAN_MODE_MAX; smode++)
  1879. spectral->params[smode].ss_chn_mask = spectral_rx_chainmask;
  1880. }
  1881. /**
  1882. * target_if_spectral_process_phyerr() - Process Spectral PHY error
  1883. * @pdev: Pointer to pdev
  1884. * @data: PHY error data received from FW
  1885. * @datalen: Length of data
  1886. * @p_rfqual: Pointer to RF Quality information
  1887. * @p_chaninfo: Pointer to channel information
  1888. * @tsf: TSF time instance at which the Spectral sample was received
  1889. * @acs_stats: ACS stats
  1890. *
  1891. * Process Spectral PHY error by extracting necessary information from the data
  1892. * sent by FW, and send the extracted information to application layer.
  1893. *
  1894. * Return: None
  1895. */
  1896. static inline
  1897. void target_if_spectral_process_phyerr(
  1898. struct wlan_objmgr_pdev *pdev,
  1899. uint8_t *data, uint32_t datalen,
  1900. struct target_if_spectral_rfqual_info *p_rfqual,
  1901. struct target_if_spectral_chan_info *p_chaninfo,
  1902. uint64_t tsf64,
  1903. struct target_if_spectral_acs_stats *acs_stats)
  1904. {
  1905. struct target_if_spectral *spectral = NULL;
  1906. struct target_if_spectral_ops *p_sops = NULL;
  1907. spectral = get_target_if_spectral_handle_from_pdev(pdev);
  1908. if (!spectral) {
  1909. spectral_err("Spectral target if object is null");
  1910. return;
  1911. }
  1912. p_sops = GET_TARGET_IF_SPECTRAL_OPS(spectral);
  1913. p_sops->spectral_process_phyerr(spectral, data, datalen,
  1914. p_rfqual, p_chaninfo,
  1915. tsf64, acs_stats);
  1916. }
  1917. static QDF_STATUS
  1918. target_if_get_spectral_msg_type(enum spectral_scan_mode smode,
  1919. enum spectral_msg_type *msg_type) {
  1920. switch (smode) {
  1921. case SPECTRAL_SCAN_MODE_NORMAL:
  1922. *msg_type = SPECTRAL_MSG_NORMAL_MODE;
  1923. break;
  1924. case SPECTRAL_SCAN_MODE_AGILE:
  1925. *msg_type = SPECTRAL_MSG_AGILE_MODE;
  1926. break;
  1927. default:
  1928. spectral_err("Invalid spectral mode");
  1929. return QDF_STATUS_E_FAILURE;
  1930. }
  1931. return QDF_STATUS_SUCCESS;
  1932. }
  1933. static inline bool
  1934. is_ch_width_160_or_80p80(enum phy_ch_width ch_width)
  1935. {
  1936. return (ch_width == CH_WIDTH_160MHZ || ch_width == CH_WIDTH_80P80MHZ);
  1937. }
  1938. /**
  1939. * free_samp_msg_skb() - Free SAMP message skb
  1940. * @spectral: Pointer to Spectral
  1941. * @smode: Spectral Scan mode
  1942. *
  1943. * Free SAMP message skb, if error in report processing
  1944. *
  1945. * Return: void
  1946. */
  1947. static inline void
  1948. free_samp_msg_skb(struct target_if_spectral *spectral,
  1949. enum spectral_scan_mode smode)
  1950. {
  1951. enum spectral_msg_type smsg_type;
  1952. QDF_STATUS ret;
  1953. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  1954. spectral_err_rl("Invalid Spectral mode %d", smode);
  1955. return;
  1956. }
  1957. if (is_ch_width_160_or_80p80(spectral->ch_width[smode])) {
  1958. ret = target_if_get_spectral_msg_type(smode, &smsg_type);
  1959. if (QDF_IS_STATUS_ERROR(ret)) {
  1960. spectral_err("Failed to get spectral message type");
  1961. return;
  1962. }
  1963. spectral->nl_cb.free_sbuff(spectral->pdev_obj,
  1964. smsg_type);
  1965. }
  1966. }
  1967. /**
  1968. * init_160mhz_delivery_state_machine() - Initialize 160MHz Spectral
  1969. * state machine
  1970. * @spectral: Pointer to Spectral
  1971. *
  1972. * Initialize 160MHz Spectral state machine
  1973. *
  1974. * Return: void
  1975. */
  1976. static inline void
  1977. init_160mhz_delivery_state_machine(struct target_if_spectral *spectral)
  1978. {
  1979. uint8_t smode;
  1980. smode = 0;
  1981. for (; smode < SPECTRAL_SCAN_MODE_MAX; smode++)
  1982. spectral->state_160mhz_delivery[smode] =
  1983. SPECTRAL_REPORT_WAIT_PRIMARY80;
  1984. }
  1985. /**
  1986. * reset_160mhz_delivery_state_machine() - Reset 160MHz Spectral state machine
  1987. * @spectral: Pointer to Spectral
  1988. *
  1989. * Reset 160MHz Spectral state machine
  1990. *
  1991. * Return: void
  1992. */
  1993. static inline void
  1994. reset_160mhz_delivery_state_machine(struct target_if_spectral *spectral,
  1995. enum spectral_scan_mode smode)
  1996. {
  1997. if (smode >= SPECTRAL_SCAN_MODE_MAX) {
  1998. spectral_err_rl("Invalid Spectral mode %d", smode);
  1999. return;
  2000. }
  2001. free_samp_msg_skb(spectral, smode);
  2002. if (is_ch_width_160_or_80p80(spectral->ch_width[smode])) {
  2003. spectral->state_160mhz_delivery[smode] =
  2004. SPECTRAL_REPORT_WAIT_PRIMARY80;
  2005. }
  2006. }
  2007. /**
  2008. * is_secondaryseg_expected() - Is waiting for secondary 80 report
  2009. * @spectral: Pointer to Spectral
  2010. * @smode: Spectral scan mode
  2011. *
  2012. * Return true if secondary 80 report expected and mode is 160 MHz
  2013. *
  2014. * Return: true or false
  2015. */
  2016. static inline
  2017. bool is_secondaryseg_expected(struct target_if_spectral *spectral,
  2018. enum spectral_scan_mode smode)
  2019. {
  2020. return
  2021. (is_ch_width_160_or_80p80(spectral->ch_width[smode]) &&
  2022. spectral->rparams.fragmentation_160[smode] &&
  2023. (spectral->state_160mhz_delivery[smode] ==
  2024. SPECTRAL_REPORT_WAIT_SECONDARY80));
  2025. }
  2026. /**
  2027. * is_primaryseg_expected() - Is waiting for primary 80 report
  2028. * @spectral: Pointer to Spectral
  2029. * @smode: Spectral scan mode
  2030. *
  2031. * Return true if mode is 160 Mhz and primary 80 report expected or
  2032. * mode is not 160 Mhz
  2033. *
  2034. * Return: true or false
  2035. */
  2036. static inline
  2037. bool is_primaryseg_expected(struct target_if_spectral *spectral,
  2038. enum spectral_scan_mode smode)
  2039. {
  2040. return
  2041. (!is_ch_width_160_or_80p80(spectral->ch_width[smode]) ||
  2042. !spectral->rparams.fragmentation_160[smode] ||
  2043. (spectral->state_160mhz_delivery[smode] ==
  2044. SPECTRAL_REPORT_WAIT_PRIMARY80));
  2045. }
  2046. #ifndef OPTIMIZED_SAMP_MESSAGE
  2047. /**
  2048. * is_primaryseg_rx_inprog() - Is primary 80 report processing is in progress
  2049. * @spectral: Pointer to Spectral
  2050. * @smode: Spectral scan mode
  2051. *
  2052. * Is primary 80 report processing is in progress
  2053. *
  2054. * Return: true or false
  2055. */
  2056. static inline
  2057. bool is_primaryseg_rx_inprog(struct target_if_spectral *spectral,
  2058. enum spectral_scan_mode smode)
  2059. {
  2060. return
  2061. (!is_ch_width_160_or_80p80(spectral->ch_width[smode]) ||
  2062. spectral->spectral_gen == SPECTRAL_GEN2 ||
  2063. (spectral->spectral_gen == SPECTRAL_GEN3 &&
  2064. (!spectral->rparams.fragmentation_160[smode] ||
  2065. spectral->state_160mhz_delivery[smode] ==
  2066. SPECTRAL_REPORT_RX_PRIMARY80)));
  2067. }
  2068. /**
  2069. * is_secondaryseg_rx_inprog() - Is secondary80 report processing is in progress
  2070. * @spectral: Pointer to Spectral
  2071. * @smode: Spectral scan mode
  2072. *
  2073. * Is secondary 80 report processing is in progress
  2074. *
  2075. * Return: true or false
  2076. */
  2077. static inline
  2078. bool is_secondaryseg_rx_inprog(struct target_if_spectral *spectral,
  2079. enum spectral_scan_mode smode)
  2080. {
  2081. return
  2082. (is_ch_width_160_or_80p80(spectral->ch_width[smode]) &&
  2083. (spectral->spectral_gen == SPECTRAL_GEN2 ||
  2084. ((spectral->spectral_gen == SPECTRAL_GEN3) &&
  2085. (!spectral->rparams.fragmentation_160[smode] ||
  2086. spectral->state_160mhz_delivery[smode] ==
  2087. SPECTRAL_REPORT_RX_SECONDARY80))));
  2088. }
  2089. #endif
  2090. /**
  2091. * target_if_160mhz_delivery_state_change() - State transition for 160Mhz
  2092. * Spectral
  2093. * @spectral: Pointer to spectral object
  2094. * @smode: Spectral scan mode
  2095. * @detector_id: Detector id
  2096. *
  2097. * Move the states of state machine for 160MHz spectral scan report receive
  2098. *
  2099. * Return: QDF_STATUS
  2100. */
  2101. QDF_STATUS
  2102. target_if_160mhz_delivery_state_change(struct target_if_spectral *spectral,
  2103. enum spectral_scan_mode smode,
  2104. uint8_t detector_id);
  2105. /**
  2106. * target_if_sops_is_spectral_enabled() - Get whether Spectral is enabled
  2107. * @arg: Pointer to handle for Spectral target_if internal private data
  2108. * @smode: Spectral scan mode
  2109. *
  2110. * Function to check whether Spectral is enabled
  2111. *
  2112. * Return: True if Spectral is enabled, false if Spectral is not enabled
  2113. */
  2114. uint32_t target_if_sops_is_spectral_enabled(void *arg,
  2115. enum spectral_scan_mode smode);
  2116. /**
  2117. * target_if_sops_is_spectral_active() - Get whether Spectral is active
  2118. * @arg: Pointer to handle for Spectral target_if internal private data
  2119. * @smode: Spectral scan mode
  2120. *
  2121. * Function to check whether Spectral is active
  2122. *
  2123. * Return: True if Spectral is active, false if Spectral is not active
  2124. */
  2125. uint32_t target_if_sops_is_spectral_active(void *arg,
  2126. enum spectral_scan_mode smode);
  2127. /**
  2128. * target_if_sops_start_spectral_scan() - Start Spectral scan
  2129. * @arg: Pointer to handle for Spectral target_if internal private data
  2130. * @smode: Spectral scan mode
  2131. * @err: Pointer to error code
  2132. *
  2133. * Function to start spectral scan
  2134. *
  2135. * Return: 0 on success else failure
  2136. */
  2137. uint32_t target_if_sops_start_spectral_scan(void *arg,
  2138. enum spectral_scan_mode smode,
  2139. enum spectral_cp_error_code *err);
  2140. /**
  2141. * target_if_sops_stop_spectral_scan() - Stop Spectral scan
  2142. * @arg: Pointer to handle for Spectral target_if internal private data
  2143. * @smode: Spectral scan mode
  2144. *
  2145. * Function to stop spectral scan
  2146. *
  2147. * Return: 0 in case of success, -1 on failure
  2148. */
  2149. uint32_t target_if_sops_stop_spectral_scan(void *arg,
  2150. enum spectral_scan_mode smode);
  2151. /**
  2152. * target_if_spectral_get_extension_channel() - Get the current Extension
  2153. * channel (in MHz)
  2154. * @arg: Pointer to handle for Spectral target_if internal private data
  2155. * @smode: Spectral scan mode
  2156. *
  2157. * Return: Current Extension channel (in MHz) on success, 0 on failure or if
  2158. * extension channel is not present.
  2159. */
  2160. uint32_t
  2161. target_if_spectral_get_extension_channel(void *arg,
  2162. enum spectral_scan_mode smode);
  2163. /**
  2164. * target_if_spectral_get_current_channel() - Get the current channel (in MHz)
  2165. * @arg: Pointer to handle for Spectral target_if internal private data
  2166. * @smode: Spectral scan mode
  2167. *
  2168. * Return: Current channel (in MHz) on success, 0 on failure
  2169. */
  2170. uint32_t
  2171. target_if_spectral_get_current_channel(void *arg,
  2172. enum spectral_scan_mode smode);
  2173. /**
  2174. * target_if_spectral_reset_hw() - Reset the hardware
  2175. * @arg: Pointer to handle for Spectral target_if internal private data
  2176. *
  2177. * This is only a placeholder since it is not currently required in the offload
  2178. * case.
  2179. *
  2180. * Return: 0
  2181. */
  2182. uint32_t target_if_spectral_reset_hw(void *arg);
  2183. /**
  2184. * target_if_spectral_get_chain_noise_floor() - Get the Chain noise floor from
  2185. * Noisefloor history buffer
  2186. * @arg: Pointer to handle for Spectral target_if internal private data
  2187. * @nf_buf: Pointer to buffer into which chain Noise Floor data should be copied
  2188. *
  2189. * This is only a placeholder since it is not currently required in the offload
  2190. * case.
  2191. *
  2192. * Return: 0
  2193. */
  2194. uint32_t target_if_spectral_get_chain_noise_floor(void *arg, int16_t *nf_buf);
  2195. /**
  2196. * target_if_spectral_get_ext_noisefloor() - Get the extension channel
  2197. * noisefloor
  2198. * @arg: Pointer to handle for Spectral target_if internal private data
  2199. *
  2200. * This is only a placeholder since it is not currently required in the offload
  2201. * case.
  2202. *
  2203. * Return: 0
  2204. */
  2205. int8_t target_if_spectral_get_ext_noisefloor(void *arg);
  2206. /**
  2207. * target_if_spectral_get_ctl_noisefloor() - Get the control channel noisefloor
  2208. * @arg: Pointer to handle for Spectral target_if internal private data
  2209. *
  2210. * This is only a placeholder since it is not currently required in the offload
  2211. * case.
  2212. *
  2213. * Return: 0
  2214. */
  2215. int8_t target_if_spectral_get_ctl_noisefloor(void *arg);
  2216. /**
  2217. * target_if_spectral_get_capability() - Get whether a given Spectral hardware
  2218. * capability is available
  2219. * @arg: Pointer to handle for Spectral target_if internal private data
  2220. * @type: Spectral hardware capability type
  2221. *
  2222. * Return: True if the capability is available, false if the capability is not
  2223. * available
  2224. */
  2225. uint32_t target_if_spectral_get_capability(
  2226. void *arg, enum spectral_capability_type type);
  2227. /**
  2228. * target_if_spectral_set_rxfilter() - Set the RX Filter before Spectral start
  2229. * @arg: Pointer to handle for Spectral target_if internal private data
  2230. * @rxfilter: Rx filter to be used
  2231. *
  2232. * Note: This is only a placeholder function. It is not currently required since
  2233. * FW should be taking care of setting the required filters.
  2234. *
  2235. * Return: 0
  2236. */
  2237. uint32_t target_if_spectral_set_rxfilter(void *arg, int rxfilter);
  2238. /**
  2239. * target_if_spectral_sops_configure_params() - Configure user supplied Spectral
  2240. * parameters
  2241. * @arg: Pointer to handle for Spectral target_if internal private data
  2242. * @params: Spectral parameters
  2243. * @smode: Spectral scan mode
  2244. *
  2245. * Return: 0 in case of success, -1 on failure
  2246. */
  2247. uint32_t target_if_spectral_sops_configure_params(
  2248. void *arg, struct spectral_config *params,
  2249. enum spectral_scan_mode smode);
  2250. /**
  2251. * target_if_spectral_get_rxfilter() - Get the current RX Filter settings
  2252. * @arg: Pointer to handle for Spectral target_if internal private data
  2253. *
  2254. * Note: This is only a placeholder function. It is not currently required since
  2255. * FW should be taking care of setting the required filters.
  2256. *
  2257. * Return: 0
  2258. */
  2259. uint32_t target_if_spectral_get_rxfilter(void *arg);
  2260. /**
  2261. * target_if_pdev_spectral_deinit() - De-initialize target_if Spectral
  2262. * functionality for the given pdev
  2263. * @pdev: Pointer to pdev object
  2264. *
  2265. * Return: None
  2266. */
  2267. void target_if_pdev_spectral_deinit(struct wlan_objmgr_pdev *pdev);
  2268. /**
  2269. * target_if_set_spectral_config() - Set spectral config
  2270. * @pdev: Pointer to pdev object
  2271. * @param: Spectral parameter id and value
  2272. * @smode: Spectral scan mode
  2273. * @err: Pointer to Spectral error code
  2274. *
  2275. * API to set spectral configurations
  2276. *
  2277. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2278. */
  2279. QDF_STATUS target_if_set_spectral_config(struct wlan_objmgr_pdev *pdev,
  2280. const struct spectral_cp_param *param,
  2281. const enum spectral_scan_mode smode,
  2282. enum spectral_cp_error_code *err);
  2283. /**
  2284. * target_if_pdev_spectral_init() - Initialize target_if Spectral
  2285. * functionality for the given pdev
  2286. * @pdev: Pointer to pdev object
  2287. *
  2288. * Return: On success, pointer to Spectral target_if internal private data, on
  2289. * failure, NULL
  2290. */
  2291. void *target_if_pdev_spectral_init(struct wlan_objmgr_pdev *pdev);
  2292. /**
  2293. * target_if_spectral_sops_get_params() - Get user configured Spectral
  2294. * parameters
  2295. * @arg: Pointer to handle for Spectral target_if internal private data
  2296. * @params: Pointer to buffer into which Spectral parameters should be copied
  2297. * @smode: Spectral scan mode
  2298. *
  2299. * Return: 0 in case of success, -1 on failure
  2300. */
  2301. uint32_t target_if_spectral_sops_get_params(
  2302. void *arg, struct spectral_config *params,
  2303. enum spectral_scan_mode smode);
  2304. /**
  2305. * target_if_init_spectral_capability() - Initialize Spectral capability
  2306. *
  2307. * @spectral: Pointer to Spectral target_if internal private data
  2308. * @target_type: target type
  2309. *
  2310. * This is a workaround.
  2311. *
  2312. * Return: QDF_STATUS
  2313. */
  2314. QDF_STATUS
  2315. target_if_init_spectral_capability(struct target_if_spectral *spectral,
  2316. uint32_t target_type);
  2317. /**
  2318. * target_if_start_spectral_scan() - Start spectral scan
  2319. * @pdev: Pointer to pdev object
  2320. * @vdev_id: VDEV id
  2321. * @smode: Spectral scan mode
  2322. * @err: Spectral error code
  2323. *
  2324. * API to start spectral scan
  2325. *
  2326. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2327. */
  2328. QDF_STATUS target_if_start_spectral_scan(struct wlan_objmgr_pdev *pdev,
  2329. uint8_t vdev_id,
  2330. enum spectral_scan_mode smode,
  2331. enum spectral_cp_error_code *err);
  2332. /**
  2333. * target_if_get_spectral_config() - Get spectral configuration
  2334. * @pdev: Pointer to pdev object
  2335. * @param: Pointer to spectral_config structure in which the configuration
  2336. * should be returned
  2337. * @smode: Spectral scan mode
  2338. *
  2339. * API to get the current spectral configuration
  2340. *
  2341. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2342. */
  2343. QDF_STATUS target_if_get_spectral_config(struct wlan_objmgr_pdev *pdev,
  2344. struct spectral_config *param,
  2345. enum spectral_scan_mode smode);
  2346. /**
  2347. * target_if_spectral_scan_enable_params() - Enable use of desired Spectral
  2348. * parameters
  2349. * @spectral: Pointer to Spectral target_if internal private data
  2350. * @spectral_params: Pointer to Spectral parameters
  2351. * @smode: Spectral scan mode
  2352. * @err: Spectral error code
  2353. *
  2354. * Enable use of desired Spectral parameters by configuring them into HW, and
  2355. * starting Spectral scan
  2356. *
  2357. * Return: 0 on success, 1 on failure
  2358. */
  2359. int target_if_spectral_scan_enable_params(
  2360. struct target_if_spectral *spectral,
  2361. struct spectral_config *spectral_params,
  2362. enum spectral_scan_mode smode,
  2363. enum spectral_cp_error_code *err);
  2364. /**
  2365. * target_if_is_spectral_active() - Get whether Spectral is active
  2366. * @pdev: Pointer to pdev object
  2367. * @smode: Spectral scan mode
  2368. *
  2369. * Return: True if Spectral is active, false if Spectral is not active
  2370. */
  2371. bool target_if_is_spectral_active(struct wlan_objmgr_pdev *pdev,
  2372. enum spectral_scan_mode smode);
  2373. /**
  2374. * target_if_is_spectral_enabled() - Get whether Spectral is enabled
  2375. * @pdev: Pointer to pdev object
  2376. * @smode: Spectral scan mode
  2377. *
  2378. * Return: True if Spectral is enabled, false if Spectral is not enabled
  2379. */
  2380. bool target_if_is_spectral_enabled(struct wlan_objmgr_pdev *pdev,
  2381. enum spectral_scan_mode smode);
  2382. /**
  2383. * target_if_set_debug_level() - Set debug level for Spectral
  2384. * @pdev: Pointer to pdev object
  2385. * @debug_level: Debug level
  2386. *
  2387. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2388. *
  2389. */
  2390. QDF_STATUS target_if_set_debug_level(struct wlan_objmgr_pdev *pdev,
  2391. uint32_t debug_level);
  2392. /**
  2393. * target_if_get_debug_level() - Get debug level for Spectral
  2394. * @pdev: Pointer to pdev object
  2395. *
  2396. * Return: Current debug level
  2397. */
  2398. uint32_t target_if_get_debug_level(struct wlan_objmgr_pdev *pdev);
  2399. /**
  2400. * target_if_get_spectral_capinfo() - Get Spectral capability information
  2401. * @pdev: Pointer to pdev object
  2402. * @scaps: Buffer into which data should be copied
  2403. *
  2404. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2405. */
  2406. QDF_STATUS target_if_get_spectral_capinfo(struct wlan_objmgr_pdev *pdev,
  2407. struct spectral_caps *scaps);
  2408. /**
  2409. * target_if_get_spectral_diagstats() - Get Spectral diagnostic statistics
  2410. * @pdev: Pointer to pdev object
  2411. * @stats: Buffer into which data should be copied
  2412. *
  2413. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2414. */
  2415. QDF_STATUS target_if_get_spectral_diagstats(struct wlan_objmgr_pdev *pdev,
  2416. struct spectral_diag_stats *stats);
  2417. QDF_STATUS
  2418. target_if_160mhz_delivery_state_change(struct target_if_spectral *spectral,
  2419. enum spectral_scan_mode smode,
  2420. uint8_t detector_id);
  2421. #ifdef OPTIMIZED_SAMP_MESSAGE
  2422. /**
  2423. * target_if_spectral_get_num_fft_bins() - Get number of FFT bins from FFT size
  2424. * according to the Spectral report mode.
  2425. * @fft_size: FFT length
  2426. * @report_mode: Spectral report mode
  2427. *
  2428. * Get number of FFT bins from FFT size according to the Spectral
  2429. * report mode.
  2430. *
  2431. * Return: Number of FFT bins
  2432. */
  2433. static inline uint32_t
  2434. target_if_spectral_get_num_fft_bins(uint32_t fft_size,
  2435. enum spectral_report_mode report_mode)
  2436. {
  2437. switch (report_mode) {
  2438. case SPECTRAL_REPORT_MODE_0:
  2439. case SPECTRAL_REPORT_MODE_1:
  2440. return 0;
  2441. case SPECTRAL_REPORT_MODE_2:
  2442. return (1 << (fft_size - 1));
  2443. case SPECTRAL_REPORT_MODE_3:
  2444. return (1 << fft_size);
  2445. default:
  2446. return -EINVAL;
  2447. }
  2448. }
  2449. #endif /* OPTIMIZED_SAMP_MESSAGE */
  2450. #ifdef OPTIMIZED_SAMP_MESSAGE
  2451. /**
  2452. * target_if_get_detector_chwidth() - Get per-detector bandwidth
  2453. * based on channel width and fragmentation.
  2454. * @ch_width: Spectral scan channel width
  2455. * @fragmentation_160: Target type has fragmentation or not
  2456. *
  2457. * Get per-detector BW.
  2458. *
  2459. * Return: detector BW
  2460. */
  2461. static inline
  2462. enum phy_ch_width target_if_get_detector_chwidth(enum phy_ch_width ch_width,
  2463. bool fragmentation_160)
  2464. {
  2465. return ((ch_width == CH_WIDTH_160MHZ && fragmentation_160) ?
  2466. CH_WIDTH_80MHZ : ((ch_width == CH_WIDTH_80P80MHZ) ?
  2467. CH_WIDTH_80MHZ : ch_width));
  2468. }
  2469. /**
  2470. * target_if_spectral_set_start_end_freq() - Set start and end frequencies for
  2471. * a given center frequency
  2472. * @cfreq: Center frequency for which start and end freq need to be set
  2473. * @ch_width: Spectral scan Channel width
  2474. * @fragmentation_160: Target type has fragmentation or not
  2475. * @start_end_freq: Array containing start and end frequency of detector
  2476. *
  2477. * Set the start and end frequencies for given center frequency in destination
  2478. * detector info struct
  2479. *
  2480. * Return: void
  2481. */
  2482. static inline
  2483. void target_if_spectral_set_start_end_freq(uint32_t cfreq,
  2484. enum phy_ch_width ch_width,
  2485. bool fragmentation_160,
  2486. uint32_t *start_end_freq)
  2487. {
  2488. enum phy_ch_width det_ch_width;
  2489. det_ch_width = target_if_get_detector_chwidth(ch_width,
  2490. fragmentation_160);
  2491. start_end_freq[0] = cfreq - (wlan_reg_get_bw_value(det_ch_width) >> 1);
  2492. start_end_freq[1] = cfreq + (wlan_reg_get_bw_value(det_ch_width) >> 1);
  2493. }
  2494. #endif /* OPTIMIZED_SAMP_MESSAGE */
  2495. #ifdef DIRECT_BUF_RX_ENABLE
  2496. /**
  2497. * target_if_consume_sfft_report_gen3() - Process fft report for gen3
  2498. * @spectral: Pointer to spectral object
  2499. * @report: Pointer to spectral report
  2500. *
  2501. * Process fft report for gen3
  2502. *
  2503. * Return: Success/Failure
  2504. */
  2505. int
  2506. target_if_consume_spectral_report_gen3(
  2507. struct target_if_spectral *spectral,
  2508. struct spectral_report *report);
  2509. #endif
  2510. /**
  2511. * target_if_spectral_fw_hang() - Crash the FW from Spectral module
  2512. * @spectral: Pointer to Spectral LMAC object
  2513. *
  2514. * Return: QDF_STATUS of operation
  2515. */
  2516. QDF_STATUS target_if_spectral_fw_hang(struct target_if_spectral *spectral);
  2517. /**
  2518. * target_if_spectral_finite_scan_update() - Update scan count for finite scan
  2519. * and stop Spectral scan when required
  2520. * @spectral: Pointer to Spectral target_if internal private data
  2521. * @smode: Spectral scan mode
  2522. *
  2523. * This API decrements the number of Spectral reports expected from target for
  2524. * a finite Spectral scan. When expected number of reports are received from
  2525. * target Spectral scan is stopped.
  2526. *
  2527. * Return: QDF_STATUS on success
  2528. */
  2529. QDF_STATUS
  2530. target_if_spectral_finite_scan_update(struct target_if_spectral *spectral,
  2531. enum spectral_scan_mode smode);
  2532. /**
  2533. * target_if_spectral_is_finite_scan() - Check Spectral scan is finite/infinite
  2534. * @spectral: Pointer to Spectral target_if internal private data
  2535. * @smode: Spectral scan mode
  2536. *
  2537. * API to check whether Spectral scan is finite/infinite for the give mode.
  2538. * A non zero scan count indicates that scan is finite. Scan count of 0
  2539. * indicates an infinite Spectral scan.
  2540. *
  2541. * Return: QDF_STATUS on success
  2542. */
  2543. QDF_STATUS
  2544. target_if_spectral_is_finite_scan(struct target_if_spectral *spectral,
  2545. enum spectral_scan_mode smode,
  2546. bool *finite_spectral_scan);
  2547. #ifdef BIG_ENDIAN_HOST
  2548. /**
  2549. * target_if_byte_swap_spectral_headers_gen3() - Apply byte-swap on headers
  2550. * @spectral: Pointer to Spectral target_if internal private data
  2551. * @data: Pointer to the start of Spectral Scan Summary report
  2552. *
  2553. * This API is only required for Big-endian Host platforms.
  2554. * It applies 32-bit byte-swap on Spectral Scan Summary and Search FFT reports
  2555. * and copies them back to the source location.
  2556. * Padding bytes that lie between the reports won't be touched.
  2557. *
  2558. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2559. */
  2560. QDF_STATUS target_if_byte_swap_spectral_headers_gen3(
  2561. struct target_if_spectral *spectral,
  2562. void *data);
  2563. /**
  2564. * target_if_byte_swap_spectral_fft_bins_gen3() - Apply byte-swap on FFT bins
  2565. * @spectral: Pointer to Spectral FFT bin length adjustment WAR
  2566. * @bin_pwr_data: Pointer to the start of FFT bins
  2567. * @pwr_count: Number of FFT bins
  2568. *
  2569. * This API is only required for Big-endian Host platforms.
  2570. * It applies pack-mode-aware byte-swap on the FFT bins as below:
  2571. * 1. pack-mode 0 (i.e., 1 FFT bin per DWORD):
  2572. * Reads the least significant 2 bytes of each DWORD, applies 16-bit
  2573. * byte-swap on that value, and copies it back to the source location.
  2574. * 2. pack-mode 1 (i.e., 2 FFT bins per DWORD):
  2575. * Reads each FFT bin, applies 16-bit byte-swap on that value,
  2576. * and copies it back to the source location.
  2577. * 3. pack-mode 2 (4 FFT bins per DWORD):
  2578. * Nothing
  2579. *
  2580. * Return: QDF_STATUS_SUCCESS in case of success, else QDF_STATUS_E_FAILURE
  2581. */
  2582. QDF_STATUS target_if_byte_swap_spectral_fft_bins_gen3(
  2583. struct spectral_fft_bin_len_adj_swar *swar,
  2584. void *bin_pwr_data, size_t pwr_count);
  2585. #endif /* BIG_ENDIAN_HOST */
  2586. #ifdef WIN32
  2587. #pragma pack(pop, target_if_spectral)
  2588. #endif
  2589. #ifdef __ATTRIB_PACK
  2590. #undef __ATTRIB_PACK
  2591. #endif
  2592. #endif /* WLAN_CONV_SPECTRAL_ENABLE */
  2593. #endif /* _TARGET_IF_SPECTRAL_H_ */