wlan_spectral_public_structs.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623
  1. /*
  2. * Copyright (c) 2011,2017-2018 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. #include <qdf_types.h>
  20. #include "wlan_dfs_ioctl.h"
  21. #include <spectral_ioctl.h>
  22. #ifndef __KERNEL__
  23. #include <math.h>
  24. #endif /* __KERNEL__ */
  25. #ifndef _WLAN_SPECTRAL_PUBLIC_STRUCTS_H_
  26. #define _WLAN_SPECTRAL_PUBLIC_STRUCTS_H_
  27. #ifdef WIN32
  28. #pragma pack(push, spectral, 1)
  29. #define __ATTRIB_PACKED
  30. #else
  31. #ifndef __ATTRIB_PACKED
  32. #define __ATTRIB_PACKED __attribute__ ((packed))
  33. #endif
  34. #endif
  35. #ifndef AH_MAX_CHAINS
  36. #define AH_MAX_CHAINS 3
  37. #endif
  38. #define MAX_NUM_CHANNELS 255
  39. #define MAX_SPECTRAL_CHAINS 3
  40. #define MAX_NUM_BINS 520
  41. #define SPECTRAL_PHYERR_PARAM_NOVAL 65535
  42. /* 5 categories x (lower + upper) bands */
  43. #define MAX_INTERF 10
  44. #ifdef SPECTRAL_USE_EMU_DEFAULTS
  45. /* Use defaults from emulation */
  46. #define SPECTRAL_SCAN_ACTIVE_DEFAULT (0x0)
  47. #define SPECTRAL_SCAN_ENABLE_DEFAULT (0x0)
  48. #define SPECTRAL_SCAN_COUNT_DEFAULT (0x0)
  49. #define SPECTRAL_SCAN_PERIOD_DEFAULT (250)
  50. #define SPECTRAL_SCAN_PRIORITY_DEFAULT (0x1)
  51. #define SPECTRAL_SCAN_FFT_SIZE_DEFAULT (0x7)
  52. #define SPECTRAL_SCAN_GC_ENA_DEFAULT (0x1)
  53. #define SPECTRAL_SCAN_RESTART_ENA_DEFAULT (0x0)
  54. #define SPECTRAL_SCAN_NOISE_FLOOR_REF_DEFAULT (0xa0)
  55. #define SPECTRAL_SCAN_INIT_DELAY_DEFAULT (0x50)
  56. #define SPECTRAL_SCAN_NB_TONE_THR_DEFAULT (0xc)
  57. #define SPECTRAL_SCAN_STR_BIN_THR_DEFAULT (0x7)
  58. #define SPECTRAL_SCAN_WB_RPT_MODE_DEFAULT (0x0)
  59. #define SPECTRAL_SCAN_RSSI_RPT_MODE_DEFAULT (0x1)
  60. #define SPECTRAL_SCAN_RSSI_THR_DEFAULT (0xf)
  61. #define SPECTRAL_SCAN_PWR_FORMAT_DEFAULT (0x1)
  62. #define SPECTRAL_SCAN_RPT_MODE_DEFAULT (0x2)
  63. #define SPECTRAL_SCAN_BIN_SCALE_DEFAULT (0x1)
  64. #define SPECTRAL_SCAN_DBM_ADJ_DEFAULT (0x0)
  65. #define SPECTRAL_SCAN_CHN_MASK_DEFAULT (0x1)
  66. #else
  67. /*
  68. * Static default values for spectral state and configuration.
  69. * These definitions should be treated as temporary. Ideally,
  70. * we should get the defaults from firmware - this will be discussed.
  71. *
  72. * Use defaults from Spectral Hardware Micro-Architecture
  73. * document (v1.0)
  74. */
  75. #define SPECTRAL_SCAN_ACTIVE_DEFAULT (0)
  76. #define SPECTRAL_SCAN_ENABLE_DEFAULT (0)
  77. #define SPECTRAL_SCAN_COUNT_DEFAULT (0)
  78. #define SPECTRAL_SCAN_PERIOD_GEN_I_DEFAULT (35)
  79. #define SPECTRAL_SCAN_PERIOD_GEN_II_DEFAULT (35)
  80. #define SPECTRAL_SCAN_PERIOD_GEN_III_DEFAULT (224)
  81. #define SPECTRAL_SCAN_PRIORITY_DEFAULT (1)
  82. #define SPECTRAL_SCAN_FFT_SIZE_DEFAULT (7)
  83. #define SPECTRAL_SCAN_GC_ENA_DEFAULT (1)
  84. #define SPECTRAL_SCAN_RESTART_ENA_DEFAULT (0)
  85. #define SPECTRAL_SCAN_NOISE_FLOOR_REF_DEFAULT (-96)
  86. #define SPECTRAL_SCAN_INIT_DELAY_DEFAULT (80)
  87. #define SPECTRAL_SCAN_NB_TONE_THR_DEFAULT (12)
  88. #define SPECTRAL_SCAN_STR_BIN_THR_DEFAULT (8)
  89. #define SPECTRAL_SCAN_WB_RPT_MODE_DEFAULT (0)
  90. #define SPECTRAL_SCAN_RSSI_RPT_MODE_DEFAULT (0)
  91. #define SPECTRAL_SCAN_RSSI_THR_DEFAULT (0xf0)
  92. #define SPECTRAL_SCAN_PWR_FORMAT_DEFAULT (0)
  93. #define SPECTRAL_SCAN_RPT_MODE_DEFAULT (2)
  94. #define SPECTRAL_SCAN_BIN_SCALE_DEFAULT (1)
  95. #define SPECTRAL_SCAN_DBM_ADJ_DEFAULT (1)
  96. #define SPECTRAL_SCAN_CHN_MASK_DEFAULT (1)
  97. #endif /* SPECTRAL_USE_EMU_DEFAULTS */
  98. /* The below two definitions apply only to pre-11ac chipsets */
  99. #define SPECTRAL_SCAN_SHORT_REPORT_DEFAULT (1)
  100. #define SPECTRAL_SCAN_FFT_PERIOD_DEFAULT (1)
  101. /*
  102. * Definitions to help in scaling of gen3 linear format Spectral bins to values
  103. * similar to those from gen2 chipsets.
  104. */
  105. /*
  106. * Max gain for QCA9984. Since this chipset is a prime representative of gen2
  107. * chipsets, it is chosen for this value.
  108. */
  109. #define SPECTRAL_QCA9984_MAX_GAIN (78)
  110. /* Temporary section for hard-coded values. These need to come from FW. */
  111. /* Max gain for IPQ8074 */
  112. #define SPECTRAL_IPQ8074_DEFAULT_MAX_GAIN_HARDCODE (62)
  113. /*
  114. * Section for values needing tuning per customer platform. These too may need
  115. * to come from FW. To be considered as hard-coded for now.
  116. */
  117. /*
  118. * If customers have a different gain line up than QCA reference designs for
  119. * IPQ8074 and/or QCA9984, they may have to tune the low level threshold and
  120. * the RSSI threshold.
  121. */
  122. #define SPECTRAL_SCALING_LOW_LEVEL_OFFSET (7)
  123. #define SPECTRAL_SCALING_RSSI_THRESH (5)
  124. /*
  125. * If customers set the AGC backoff differently, they may have to tune the high
  126. * level threshold.
  127. */
  128. #define SPECTRAL_SCALING_HIGH_LEVEL_OFFSET (5)
  129. /* End of section for values needing fine tuning. */
  130. /* End of temporary section for hard-coded values */
  131. /**
  132. * enum wlan_cfg80211_spectral_vendorcmd_handler_idx - Indices to cfg80211
  133. * spectral vendor command handlers
  134. * @SPECTRAL_SCAN_START_HANDLER_IDX: Index to SPECTRAL_SCAN_START handler
  135. * @SPECTRAL_SCAN_STOP_HANDLER_IDX: Index to SPECTRAL_SCAN_STOP handler
  136. * @SPECTRAL_SCAN_GET_CONFIG_HANDLER_IDX: Index to SPECTRAL_SCAN_GET_CONFIG
  137. * handler
  138. * @SPECTRAL_SCAN_GET_DIAG_STATS_HANDLER_IDX: Index to
  139. * SPECTRAL_SCAN_GET_DIAG_STATS handler
  140. * @SPECTRAL_SCAN_GET_CAP_HANDLER_IDX: Index to SPECTRAL_SCAN_GET_CAP handler
  141. * @SPECTRAL_SCAN_GET_STATUS_HANDLER_IDX: Index to SPECTRAL_SCAN_GET_STATUS
  142. * handler
  143. * @SPECTRAL_SCAN_VENDOR_CMD_HANDLER_MAX: Number of cfg80211 spectral
  144. * vendor command handlers supported
  145. */
  146. enum wlan_cfg80211_spectral_vendorcmd_handler_idx {
  147. SPECTRAL_SCAN_START_HANDLER_IDX,
  148. SPECTRAL_SCAN_STOP_HANDLER_IDX,
  149. SPECTRAL_SCAN_GET_CONFIG_HANDLER_IDX,
  150. SPECTRAL_SCAN_GET_DIAG_STATS_HANDLER_IDX,
  151. SPECTRAL_SCAN_GET_CAP_HANDLER_IDX,
  152. SPECTRAL_SCAN_GET_STATUS_HANDLER_IDX,
  153. SPECTRAL_SCAN_VENDOR_CMD_HANDLER_MAX,
  154. };
  155. /**
  156. * enum spectral_debug - Spectral debug level
  157. * @DEBUG_SPECTRAL: Minimal SPECTRAL debug
  158. * @DEBUG_SPECTRAL1: Normal SPECTRAL debug
  159. * @DEBUG_SPECTRAL2: Maximal SPECTRAL debug
  160. * @DEBUG_SPECTRAL3: Matched filterID display
  161. * @DEBUG_SPECTRAL4: One time dump of FFT report
  162. */
  163. enum spectral_debug {
  164. DEBUG_SPECTRAL = 0x00000100,
  165. DEBUG_SPECTRAL1 = 0x00000200,
  166. DEBUG_SPECTRAL2 = 0x00000400,
  167. DEBUG_SPECTRAL3 = 0x00000800,
  168. DEBUG_SPECTRAL4 = 0x00001000,
  169. };
  170. /**
  171. * enum spectral_capability_type - Spectral capability type
  172. * @SPECTRAL_CAP_PHYDIAG: Phydiag capability
  173. * @SPECTRAL_CAP_RADAR: Radar detection capability
  174. * @SPECTRAL_CAP_SPECTRAL_SCAN: Spectral capability
  175. * @SPECTRAL_CAP_ADVNCD_SPECTRAL_SCAN: Advanced spectral capability
  176. */
  177. enum spectral_capability_type {
  178. SPECTRAL_CAP_PHYDIAG,
  179. SPECTRAL_CAP_RADAR,
  180. SPECTRAL_CAP_SPECTRAL_SCAN,
  181. SPECTRAL_CAP_ADVNCD_SPECTRAL_SCAN,
  182. };
  183. /**
  184. * struct spectral_chan_stats - channel status info
  185. * @cycle_count: Cycle count
  186. * @channel_load: Channel load
  187. * @per: Period
  188. * @noisefloor: Noise floor
  189. * @comp_usablity: Computed usability
  190. * @maxregpower: Maximum allowed regulatory power
  191. * @comp_usablity_sec80: Computed usability of secondary 80 Mhz
  192. * @maxregpower_sec80: Max regulatory power of secondary 80 Mhz
  193. */
  194. struct spectral_chan_stats {
  195. int cycle_count;
  196. int channel_load;
  197. int per;
  198. int noisefloor;
  199. uint16_t comp_usablity;
  200. int8_t maxregpower;
  201. uint16_t comp_usablity_sec80;
  202. int8_t maxregpower_sec80;
  203. };
  204. /**
  205. * struct spectral_diag_stats - spectral diag stats
  206. * @spectral_mismatch: Spectral TLV signature mismatches
  207. * @spectral_sec80_sfft_insufflen: Insufficient length when parsing for
  208. * Secondary 80 Search FFT report
  209. * @spectral_no_sec80_sfft: Secondary 80 Search FFT report
  210. * TLV not found
  211. * @spectral_vhtseg1id_mismatch: VHT Operation Segment 1 ID
  212. * mismatches in Search FFT report
  213. * @spectral_vhtseg2id_mismatch: VHT Operation Segment 2 ID
  214. * mismatches in Search FFT report
  215. * @spectral_invalid_detector_id: Invalid detector id
  216. */
  217. struct spectral_diag_stats {
  218. uint64_t spectral_mismatch;
  219. uint64_t spectral_sec80_sfft_insufflen;
  220. uint64_t spectral_no_sec80_sfft;
  221. uint64_t spectral_vhtseg1id_mismatch;
  222. uint64_t spectral_vhtseg2id_mismatch;
  223. uint64_t spectral_invalid_detector_id;
  224. };
  225. /**
  226. * struct spectral_config - spectral config parameters
  227. * @ss_fft_period: Skip interval for FFT reports
  228. * @ss_period: Spectral scan period
  229. * @ss_count: # of reports to return from ss_active
  230. * @ss_short_report: Set to report only 1 set of FFT results
  231. * @radar_bin_thresh_sel: Select threshold to classify strong bin for FFT
  232. * @ss_spectral_pri: Priority, and are we doing a noise power cal ?
  233. * @ss_fft_size: Defines the number of FFT data points to compute,
  234. * defined as a log index num_fft_pts =
  235. * 2^ss_fft_size
  236. * @ss_gc_ena: Set, to enable targeted gain change before
  237. * starting the spectral scan FFT
  238. * @ss_restart_ena: Set, to enable abort of receive frames when in high
  239. * priority and a spectral scan is queued
  240. * @ss_noise_floor_ref: Noise floor reference number (signed) for the
  241. * calculation of bin power (dBm) Though stored as an
  242. * unsigned this should be treated as a signed 8-bit int.
  243. * @ss_init_delay: Disallow spectral scan triggers after tx/rx packets
  244. * by setting this delay value to roughly SIFS time
  245. * period or greater Delay timer count in units of 0.25us
  246. * @ss_nb_tone_thr: Number of strong bins (inclusive) per sub-channel,
  247. * below which a signal is declared a narrowband tone
  248. * @ss_str_bin_thr: Bin/max_bin ratio threshold over which a bin is
  249. * declared strong (for spectral scan bandwidth analysis)
  250. * @ss_wb_rpt_mode: Set this bit to report spectral scans as EXT_BLOCKER
  251. * (phy_error=36), if none of the sub-channels are
  252. * deemed narrowband
  253. * @ss_rssi_rpt_mode: Set this bit to report spectral scans as EXT_BLOCKER
  254. * (phy_error=36), if the ADC RSSI is below the
  255. * threshold ss_rssi_thr
  256. * @ss_rssi_thr: ADC RSSI must be greater than or equal to this
  257. * threshold (signed Db) to ensure spectral scan
  258. * reporting with normal phy error codes (please see
  259. * ss_rssi_rpt_mode above).Though stored as an unsigned
  260. * value, this should be treated as a signed 8-bit int
  261. * @ss_pwr_format: Format of frequency bin magnitude for spectral scan
  262. * triggered FFTs 0: linear magnitude
  263. * 1: log magnitude (20*log10(lin_mag), 1/2 dB step size)
  264. * @ss_rpt_mode: Format of per-FFT reports to software for spectral
  265. * scan triggered FFTs
  266. * 0: No FFT report (only pulse end summary)
  267. * 1: 2-dword summary of metrics for each completed FFT
  268. * 2: 2-dword summary + 1x-oversampled bins(in-band) per
  269. * FFT
  270. * 3: 2-dword summary + 2x-oversampled bins (all) per FFT
  271. * @ss_bin_scale: Number of LSBs to shift out to scale the FFT bins
  272. * for spectral scan triggered FFTs
  273. * @ss_dbm_adj: Set (with ss_pwr_format=1), to report bin
  274. * magnitudes
  275. * converted to dBm power using the noisefloor
  276. * calibration results
  277. * @ss_chn_mask: Per chain enable mask to select input ADC for search
  278. * FFT
  279. * @ss_nf_cal: nf calibrated values for ctl+ext
  280. * @ss_nf_pwr: nf pwr values for ctl+ext
  281. * @ss_nf_temp_data: temperature data taken during nf scan
  282. */
  283. struct spectral_config {
  284. uint16_t ss_fft_period;
  285. uint16_t ss_period;
  286. uint16_t ss_count;
  287. uint16_t ss_short_report;
  288. uint8_t radar_bin_thresh_sel;
  289. uint16_t ss_spectral_pri;
  290. uint16_t ss_fft_size;
  291. uint16_t ss_gc_ena;
  292. uint16_t ss_restart_ena;
  293. uint16_t ss_noise_floor_ref;
  294. uint16_t ss_init_delay;
  295. uint16_t ss_nb_tone_thr;
  296. uint16_t ss_str_bin_thr;
  297. uint16_t ss_wb_rpt_mode;
  298. uint16_t ss_rssi_rpt_mode;
  299. uint16_t ss_rssi_thr;
  300. uint16_t ss_pwr_format;
  301. uint16_t ss_rpt_mode;
  302. uint16_t ss_bin_scale;
  303. uint16_t ss_dbm_adj;
  304. uint16_t ss_chn_mask;
  305. int8_t ss_nf_cal[AH_MAX_CHAINS * 2];
  306. int8_t ss_nf_pwr[AH_MAX_CHAINS * 2];
  307. int32_t ss_nf_temp_data;
  308. };
  309. /**
  310. * struct spectral_scan_state - State of spectral scan
  311. * @is_active: Is spectral scan active
  312. * @is_enabled: Is spectral scan enabled
  313. */
  314. struct spectral_scan_state {
  315. uint8_t is_active;
  316. uint8_t is_enabled;
  317. };
  318. /**
  319. * enum dcs_int_type - Interference type indicated by DCS
  320. * @SPECTRAL_DCS_INT_NONE: No interference
  321. * @SPECTRAL_DCS_INT_CW: CW interference
  322. * @SPECTRAL_DCS_INT_WIFI: WLAN interference
  323. */
  324. enum dcs_int_type {
  325. SPECTRAL_DCS_INT_NONE,
  326. SPECTRAL_DCS_INT_CW,
  327. SPECTRAL_DCS_INT_WIFI
  328. };
  329. /**
  330. * struct interf_rsp - Interference record
  331. * @interf_type: eINTERF_TYPE giving type of interference
  332. * @interf_min_freq: Minimum frequency in MHz at which interference has been
  333. * found
  334. * @interf_max_freq: Maximum frequency in MHz at which interference has been
  335. * found
  336. * @advncd_spectral_cap: Advanced spectral capability
  337. */
  338. struct interf_rsp {
  339. uint8_t interf_type;
  340. uint16_t interf_min_freq;
  341. uint16_t interf_max_freq;
  342. } __ATTRIB_PACKED;
  343. /**
  344. * struct interf_src_rsp - List of interference sources
  345. * @count: Number of interference records
  346. * @interf: Array of interference records
  347. */
  348. struct interf_src_rsp {
  349. uint16_t count;
  350. struct interf_rsp interf[MAX_INTERF];
  351. } __ATTRIB_PACKED;
  352. /**
  353. * struct spectral_classifier_params - spectral classifier parameters
  354. * @spectral_20_40_mode: Is AP in 20/40 mode?
  355. * @spectral_dc_index: DC index
  356. * @spectral_dc_in_mhz: DC in MHz
  357. * @upper_chan_in_mhz: Upper channel in MHz
  358. * @lower_chan_in_mhz: Lower channel in MHz
  359. */
  360. struct spectral_classifier_params {
  361. int spectral_20_40_mode;
  362. int spectral_dc_index;
  363. int spectral_dc_in_mhz;
  364. int upper_chan_in_mhz;
  365. int lower_chan_in_mhz;
  366. } __ATTRIB_PACKED;
  367. /**
  368. * struct spectral_samp_data - Spectral Analysis Messaging Protocol Data format
  369. * @spectral_data_len: Indicates the bin size
  370. * @spectral_data_len_sec80: Indicates the bin size for secondary 80 segment
  371. * @spectral_rssi: Indicates RSSI
  372. * @spectral_rssi_sec80: Indicates RSSI for secondary 80 segment
  373. * @spectral_combined_rssi: Indicates combined RSSI from all antennas
  374. * @spectral_upper_rssi: Indicates RSSI of upper band
  375. * @spectral_lower_rssi: Indicates RSSI of lower band
  376. * @spectral_chain_ctl_rssi: RSSI for control channel, for all antennas
  377. * @spectral_chain_ext_rssi: RSSI for extension channel, for all antennas
  378. * @spectral_max_scale: Indicates scale factor
  379. * @spectral_bwinfo: Indicates bandwidth info
  380. * @spectral_tstamp: Indicates timestamp
  381. * @spectral_max_index: Indicates the index of max magnitude
  382. * @spectral_max_index_sec80: Indicates the index of max magnitude for secondary
  383. * 80 segment
  384. * @spectral_max_mag: Indicates the maximum magnitude
  385. * @spectral_max_mag_sec80: Indicates the maximum magnitude for secondary 80
  386. * segment
  387. * @spectral_max_exp: Indicates the max exp
  388. * @spectral_last_tstamp: Indicates the last time stamp
  389. * @spectral_upper_max_index: Indicates the index of max mag in upper band
  390. * @spectral_lower_max_index: Indicates the index of max mag in lower band
  391. * @spectral_nb_upper: Not Used
  392. * @spectral_nb_lower: Not Used
  393. * @classifier_params: Indicates classifier parameters
  394. * @bin_pwr_count: Indicates the number of FFT bins
  395. * @lb_edge_extrabins: Number of extra bins on left band edge
  396. * @rb_edge_extrabins: Number of extra bins on right band edge
  397. * @bin_pwr_count_sec80: Indicates the number of FFT bins in secondary 80
  398. * segment
  399. * @bin_pwr: Contains FFT magnitudes
  400. * @bin_pwr_sec80: Contains FFT magnitudes for the secondary 80
  401. * segment
  402. * @interf_list: List of interfernce sources
  403. * @noise_floor: Indicates the current noise floor
  404. * @noise_floor_sec80: Indicates the current noise floor for secondary 80
  405. * segment
  406. * @ch_width: Channel width 20/40/80/160 MHz
  407. */
  408. struct spectral_samp_data {
  409. int16_t spectral_data_len;
  410. int16_t spectral_data_len_sec80;
  411. int16_t spectral_rssi;
  412. int16_t spectral_rssi_sec80;
  413. int8_t spectral_combined_rssi;
  414. int8_t spectral_upper_rssi;
  415. int8_t spectral_lower_rssi;
  416. int8_t spectral_chain_ctl_rssi[MAX_SPECTRAL_CHAINS];
  417. int8_t spectral_chain_ext_rssi[MAX_SPECTRAL_CHAINS];
  418. uint8_t spectral_max_scale;
  419. int16_t spectral_bwinfo;
  420. int32_t spectral_tstamp;
  421. int16_t spectral_max_index;
  422. int16_t spectral_max_index_sec80;
  423. int16_t spectral_max_mag;
  424. int16_t spectral_max_mag_sec80;
  425. uint8_t spectral_max_exp;
  426. int32_t spectral_last_tstamp;
  427. int16_t spectral_upper_max_index;
  428. int16_t spectral_lower_max_index;
  429. uint8_t spectral_nb_upper;
  430. uint8_t spectral_nb_lower;
  431. struct spectral_classifier_params classifier_params;
  432. uint16_t bin_pwr_count;
  433. /*
  434. * For 11ac chipsets prior to AR900B version 2.0, a max of 512 bins are
  435. * delivered. However, there can be additional bins reported for
  436. * AR900B version 2.0 and QCA9984 as described next:
  437. *
  438. * AR900B version 2.0: An additional tone is processed on the right
  439. * hand side in order to facilitate detection of radar pulses out to
  440. * the extreme band-edge of the channel frequency.
  441. * Since the HW design processes four tones at a time,
  442. * this requires one additional Dword to be added to the
  443. * search FFT report.
  444. *
  445. * QCA9984: When spectral_scan_rpt_mode=2, i.e 2-dword summary +
  446. * 1x-oversampled bins (in-band) per FFT,
  447. * then 8 more bins (4 more on left side and 4 more on right side)
  448. * are added.
  449. */
  450. uint8_t lb_edge_extrabins;
  451. uint8_t rb_edge_extrabins;
  452. uint16_t bin_pwr_count_sec80;
  453. uint8_t bin_pwr[MAX_NUM_BINS];
  454. uint8_t bin_pwr_sec80[MAX_NUM_BINS];
  455. struct interf_src_rsp interf_list;
  456. int16_t noise_floor;
  457. int16_t noise_floor_sec80;
  458. uint32_t ch_width;
  459. uint8_t spectral_agc_total_gain;
  460. uint8_t spectral_agc_total_gain_sec80;
  461. uint8_t spectral_gainchange;
  462. uint8_t spectral_gainchange_sec80;
  463. } __ATTRIB_PACKED;
  464. /**
  465. * struct spectral_samp_msg - Spectral SAMP message
  466. * @signature: Validates the SAMP message
  467. * @freq: Operating frequency in MHz
  468. * @vhtop_ch_freq_seg1: VHT Segment 1 centre frequency in MHz
  469. * @vhtop_ch_freq_seg2: VHT Segment 2 centre frequency in MHz
  470. * @freq_loading: How busy was the channel
  471. * @dcs_enabled: Whether DCS is enabled
  472. * @int_type: Interference type indicated by DCS
  473. * @macaddr: Indicates the device interface
  474. * @samp_data: SAMP Data
  475. */
  476. struct spectral_samp_msg {
  477. uint32_t signature;
  478. uint16_t freq;
  479. uint16_t vhtop_ch_freq_seg1;
  480. uint16_t vhtop_ch_freq_seg2;
  481. uint16_t freq_loading;
  482. uint16_t dcs_enabled;
  483. enum dcs_int_type int_type;
  484. uint8_t macaddr[6];
  485. struct spectral_samp_data samp_data;
  486. } __ATTRIB_PACKED;
  487. /* Forward declarations */
  488. struct wlan_objmgr_pdev;
  489. /**
  490. * struct spectral_nl_cb - Spectral Netlink callbacks
  491. * @get_nbuff: Get the socket buffer to send the data to the application
  492. * @send_nl_bcast: Send data to the application using netlink broadcast
  493. * @send_nl_unicast: Send data to the application using netlink unicast
  494. */
  495. struct spectral_nl_cb {
  496. void *(*get_nbuff)(struct wlan_objmgr_pdev *pdev);
  497. int (*send_nl_bcast)(struct wlan_objmgr_pdev *pdev);
  498. int (*send_nl_unicast)(struct wlan_objmgr_pdev *pdev);
  499. void (*free_nbuff)(struct wlan_objmgr_pdev *pdev);
  500. };
  501. #ifndef __KERNEL__
  502. static inline int16_t
  503. spectral_pwfactor_max(int16_t pwfactor1,
  504. int16_t pwfactor2)
  505. {
  506. return ((pwfactor1 > pwfactor2) ? pwfactor1 : pwfactor2);
  507. }
  508. /**
  509. * get_spectral_scale_rssi_corr() - Compute RSSI correction factor for scaling
  510. * @agc_total_gain_db: AGC total gain in dB steps
  511. * @gen3_defmaxgain: Default max gain value of the gen III chipset
  512. * @gen2_maxgain: Max gain value used by the reference gen II chipset
  513. * @lowlevel_offset: Low level offset for scaling
  514. * @inband_pwr: In band power in dB steps
  515. * @rssi_thr: RSSI threshold for scaling
  516. *
  517. * Helper function to compute RSSI correction factor for Gen III linear format
  518. * Spectral scaling. It is the responsibility of the caller to ensure that
  519. * correct values are passed.
  520. *
  521. * Return: RSSI correction factor
  522. */
  523. static inline int16_t
  524. get_spectral_scale_rssi_corr(u_int8_t agc_total_gain_db,
  525. u_int8_t gen3_defmaxgain, u_int8_t gen2_maxgain,
  526. int16_t lowlevel_offset, int16_t inband_pwr,
  527. int16_t rssi_thr)
  528. {
  529. return ((agc_total_gain_db < gen3_defmaxgain) ?
  530. (gen2_maxgain - gen3_defmaxgain + lowlevel_offset) :
  531. spectral_pwfactor_max((inband_pwr - rssi_thr), 0));
  532. }
  533. /**
  534. * spectral_scale_linear_to_gen2() - Scale linear bin value to gen II equivalent
  535. * @gen3_binmag: Captured FFT bin value from the Spectral Search FFT report
  536. * generated by the Gen III chipset
  537. * @gen2_maxgain: Max gain value used by the reference gen II chipset
  538. * @gen3_defmaxgain: Default max gain value of the gen III chipset
  539. * @lowlevel_offset: Low level offset for scaling
  540. * @inband_pwr: In band power in dB steps
  541. * @rssi_thr: RSSI threshold for scaling
  542. * @agc_total_gain_db: AGC total gain in dB steps
  543. * @highlevel_offset: High level offset for scaling
  544. * @gen2_bin_scale: Bin scale value used on reference gen II chipset
  545. * @gen3_bin_scale: Bin scale value used on gen III chipset
  546. *
  547. * Helper function to scale a given gen III linear format bin value into an
  548. * approximately equivalent gen II value. The scaled value can possibly be
  549. * higher than 8 bits. If the caller is incapable of handling values larger
  550. * than 8 bits, the caller can saturate the value at 255. This function does not
  551. * carry out this saturation for the sake of flexibility so that callers
  552. * interested in the larger values can avail of this. Also note it is the
  553. * responsibility of the caller to ensure that correct values are passed.
  554. *
  555. * Return: Scaled bin value
  556. */
  557. static inline u_int32_t
  558. spectral_scale_linear_to_gen2(u_int8_t gen3_binmag,
  559. u_int8_t gen2_maxgain, u_int8_t gen3_defmaxgain,
  560. int16_t lowlevel_offset, int16_t inband_pwr,
  561. int16_t rssi_thr, u_int8_t agc_total_gain_db,
  562. int16_t highlevel_offset, u_int8_t gen2_bin_scale,
  563. u_int8_t gen3_bin_scale)
  564. {
  565. return (gen3_binmag *
  566. sqrt(pow(10, (((double)spectral_pwfactor_max(gen2_maxgain -
  567. gen3_defmaxgain + lowlevel_offset -
  568. get_spectral_scale_rssi_corr(agc_total_gain_db,
  569. gen3_defmaxgain,
  570. gen2_maxgain,
  571. lowlevel_offset,
  572. inband_pwr,
  573. rssi_thr),
  574. (agc_total_gain_db < gen3_defmaxgain) *
  575. highlevel_offset)) / 10))) *
  576. pow(2, (gen3_bin_scale - gen2_bin_scale)));
  577. }
  578. #endif /* __KERNEL__ */
  579. #ifdef WIN32
  580. #pragma pack(pop, spectral)
  581. #endif
  582. #ifdef __ATTRIB_PACKED
  583. #undef __ATTRIB_PACKED
  584. #endif
  585. #endif /* _WLAN_SPECTRAL_PUBLIC_STRUCTS_H_ */