target_if_spectral.h 86 KB

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