spectral_ioctl.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455
  1. /*
  2. * Copyright (c) 2011, 2017-2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef _SPECTRAL_IOCTL_H_
  19. #define _SPECTRAL_IOCTL_H_
  20. #include <wlan_dfs_ioctl.h>
  21. #ifndef AH_MAX_CHAINS
  22. #define AH_MAX_CHAINS 3
  23. #endif
  24. /*
  25. * ioctl defines
  26. */
  27. #define SPECTRAL_SET_CONFIG (DFS_LAST_IOCTL + 1)
  28. #define SPECTRAL_GET_CONFIG (DFS_LAST_IOCTL + 2)
  29. #define SPECTRAL_SHOW_INTERFERENCE (DFS_LAST_IOCTL + 3)
  30. #define SPECTRAL_ENABLE_SCAN (DFS_LAST_IOCTL + 4)
  31. #define SPECTRAL_DISABLE_SCAN (DFS_LAST_IOCTL + 5)
  32. #define SPECTRAL_ACTIVATE_SCAN (DFS_LAST_IOCTL + 6)
  33. #define SPECTRAL_STOP_SCAN (DFS_LAST_IOCTL + 7)
  34. #define SPECTRAL_SET_DEBUG_LEVEL (DFS_LAST_IOCTL + 8)
  35. #define SPECTRAL_IS_ACTIVE (DFS_LAST_IOCTL + 9)
  36. #define SPECTRAL_IS_ENABLED (DFS_LAST_IOCTL + 10)
  37. #define SPECTRAL_CLASSIFY_SCAN (DFS_LAST_IOCTL + 11)
  38. #define SPECTRAL_GET_CLASSIFIER_CONFIG (DFS_LAST_IOCTL + 12)
  39. #define SPECTRAL_EACS (DFS_LAST_IOCTL + 13)
  40. #define SPECTRAL_ACTIVATE_FULL_SCAN (DFS_LAST_IOCTL + 14)
  41. #define SPECTRAL_STOP_FULL_SCAN (DFS_LAST_IOCTL + 15)
  42. #define SPECTRAL_GET_CAPABILITY_INFO (DFS_LAST_IOCTL + 16)
  43. #define SPECTRAL_GET_DIAG_STATS (DFS_LAST_IOCTL + 17)
  44. #define SPECTRAL_GET_CHAN_WIDTH (DFS_LAST_IOCTL + 18)
  45. #define SPECTRAL_GET_CHANINFO (DFS_LAST_IOCTL + 19)
  46. #define SPECTRAL_CLEAR_CHANINFO (DFS_LAST_IOCTL + 20)
  47. #define SPECTRAL_SET_ICM_ACTIVE (DFS_LAST_IOCTL + 21)
  48. #define SPECTRAL_GET_NOMINAL_NOISEFLOOR (DFS_LAST_IOCTL + 22)
  49. #define SPECTRAL_GET_DEBUG_LEVEL (DFS_LAST_IOCTL + 23)
  50. #define SPECTRAL_SET_DMA_DEBUG (DFS_LAST_IOCTL + 24)
  51. /*
  52. * ioctl parameter types
  53. */
  54. enum spectral_params {
  55. SPECTRAL_PARAM_FFT_PERIOD,
  56. SPECTRAL_PARAM_SCAN_PERIOD,
  57. SPECTRAL_PARAM_SCAN_COUNT,
  58. SPECTRAL_PARAM_SHORT_REPORT,
  59. SPECTRAL_PARAM_SPECT_PRI,
  60. SPECTRAL_PARAM_FFT_SIZE,
  61. SPECTRAL_PARAM_GC_ENA,
  62. SPECTRAL_PARAM_RESTART_ENA,
  63. SPECTRAL_PARAM_NOISE_FLOOR_REF,
  64. SPECTRAL_PARAM_INIT_DELAY,
  65. SPECTRAL_PARAM_NB_TONE_THR,
  66. SPECTRAL_PARAM_STR_BIN_THR,
  67. SPECTRAL_PARAM_WB_RPT_MODE,
  68. SPECTRAL_PARAM_RSSI_RPT_MODE,
  69. SPECTRAL_PARAM_RSSI_THR,
  70. SPECTRAL_PARAM_PWR_FORMAT,
  71. SPECTRAL_PARAM_RPT_MODE,
  72. SPECTRAL_PARAM_BIN_SCALE,
  73. SPECTRAL_PARAM_DBM_ADJ,
  74. SPECTRAL_PARAM_CHN_MASK,
  75. SPECTRAL_PARAM_ACTIVE,
  76. SPECTRAL_PARAM_STOP,
  77. SPECTRAL_PARAM_ENABLE,
  78. SPECTRAL_PARAM_FREQUENCY,
  79. SPECTRAL_PARAM_CHAN_FREQUENCY,
  80. SPECTRAL_PARAM_CHAN_WIDTH,
  81. SPECTRAL_PARAM_MAX,
  82. };
  83. /**
  84. * enum spectral_scan_mode - Spectral scan mode
  85. * @SPECTRAL_SCAN_MODE_NORMAL: Normal mode
  86. * @SPECTRAL_SCAN_MODE_AGILE: Agile mode
  87. */
  88. enum spectral_scan_mode {
  89. SPECTRAL_SCAN_MODE_NORMAL,
  90. SPECTRAL_SCAN_MODE_AGILE,
  91. SPECTRAL_SCAN_MODE_MAX,
  92. };
  93. struct spectral_ioctl_params {
  94. int16_t spectral_fft_period;
  95. int16_t pectral_period;
  96. int16_t spectral_count;
  97. uint16_t spectral_short_report;
  98. uint16_t spectral_pri;
  99. };
  100. /**
  101. * spectral_cap_hw_gen: Definitions for the Spectral hardware generation.
  102. * This corresponds to definitions in qca_wlan_vendor_spectral_scan_cap_hw_gen.
  103. * @SPECTRAL_CAP_HW_GEN_1: Generation 1
  104. * @SPECTRAL_CAP_HW_GEN_2: Generation 2
  105. * @SPECTRAL_CAP_HW_GEN_3: Generation 3
  106. */
  107. enum spectral_cap_hw_gen {
  108. SPECTRAL_CAP_HW_GEN_1 = 0,
  109. SPECTRAL_CAP_HW_GEN_2 = 1,
  110. SPECTRAL_CAP_HW_GEN_3 = 2,
  111. };
  112. /**
  113. * struct spectral_config - spectral config parameters
  114. * @ss_fft_period: Skip interval for FFT reports
  115. * @ss_period: Spectral scan period
  116. * @ss_count: # of reports to return from ss_active
  117. * @ss_short_report: Set to report only 1 set of FFT results
  118. * @radar_bin_thresh_sel: Select threshold to classify strong bin for FFT
  119. * @ss_spectral_pri: Priority, and are we doing a noise power cal ?
  120. * @ss_fft_size: Defines the number of FFT data points to compute,
  121. * defined as a log index num_fft_pts =
  122. * 2^ss_fft_size
  123. * @ss_gc_ena: Set, to enable targeted gain change before
  124. * starting the spectral scan FFT
  125. * @ss_restart_ena: Set, to enable abort of receive frames when in high
  126. * priority and a spectral scan is queued
  127. * @ss_noise_floor_ref: Noise floor reference number (signed) for the
  128. * calculation of bin power (dBm) Though stored as an
  129. * unsigned this should be treated as a signed 8-bit int.
  130. * @ss_init_delay: Disallow spectral scan triggers after tx/rx packets
  131. * by setting this delay value to roughly SIFS time
  132. * period or greater Delay timer count in units of 0.25us
  133. * @ss_nb_tone_thr: Number of strong bins (inclusive) per sub-channel,
  134. * below which a signal is declared a narrowband tone
  135. * @ss_str_bin_thr: Bin/max_bin ratio threshold over which a bin is
  136. * declared strong (for spectral scan bandwidth analysis)
  137. * @ss_wb_rpt_mode: Set this bit to report spectral scans as EXT_BLOCKER
  138. * (phy_error=36), if none of the sub-channels are
  139. * deemed narrowband
  140. * @ss_rssi_rpt_mode: Set this bit to report spectral scans as EXT_BLOCKER
  141. * (phy_error=36), if the ADC RSSI is below the
  142. * threshold ss_rssi_thr
  143. * @ss_rssi_thr: ADC RSSI must be greater than or equal to this
  144. * threshold (signed Db) to ensure spectral scan
  145. * reporting with normal phy error codes (please see
  146. * ss_rssi_rpt_mode above).Though stored as an unsigned
  147. * value, this should be treated as a signed 8-bit int
  148. * @ss_pwr_format: Format of frequency bin magnitude for spectral scan
  149. * triggered FFTs 0: linear magnitude
  150. * 1: log magnitude (20*log10(lin_mag), 1/2 dB step size)
  151. * @ss_rpt_mode: Format of per-FFT reports to software for spectral
  152. * scan triggered FFTs
  153. * 0: No FFT report (only pulse end summary)
  154. * 1: 2-dword summary of metrics for each completed FFT
  155. * 2: 2-dword summary + 1x-oversampled bins(in-band) per
  156. * FFT
  157. * 3: 2-dword summary + 2x-oversampled bins (all) per FFT
  158. * @ss_bin_scale: Number of LSBs to shift out to scale the FFT bins
  159. * for spectral scan triggered FFTs
  160. * @ss_dbm_adj: Set (with ss_pwr_format=1), to report bin
  161. * magnitudes
  162. * converted to dBm power using the noisefloor
  163. * calibration results
  164. * @ss_chn_mask: Per chain enable mask to select input ADC for search
  165. * FFT
  166. * @ss_nf_cal: nf calibrated values for ctl+ext
  167. * @ss_nf_pwr: nf pwr values for ctl+ext
  168. * @ss_nf_temp_data: temperature data taken during nf scan
  169. * @ss_frequency: This specifies the frequency span over which Spectral
  170. * scan would be carried out. Its value depends on the
  171. * Spectral scan mode.
  172. * Normal mode:-
  173. * Not applicable. Spectral scan would happen in the
  174. * operating span.
  175. * Agile mode:-
  176. * Center frequency (in MHz) of the interested span
  177. * or center frequency (in MHz) of any WLAN channel
  178. * in the interested span.
  179. */
  180. struct spectral_config {
  181. uint16_t ss_fft_period;
  182. uint16_t ss_period;
  183. uint16_t ss_count;
  184. uint16_t ss_short_report;
  185. uint8_t radar_bin_thresh_sel;
  186. uint16_t ss_spectral_pri;
  187. uint16_t ss_fft_size;
  188. uint16_t ss_gc_ena;
  189. uint16_t ss_restart_ena;
  190. uint16_t ss_noise_floor_ref;
  191. uint16_t ss_init_delay;
  192. uint16_t ss_nb_tone_thr;
  193. uint16_t ss_str_bin_thr;
  194. uint16_t ss_wb_rpt_mode;
  195. uint16_t ss_rssi_rpt_mode;
  196. uint16_t ss_rssi_thr;
  197. uint16_t ss_pwr_format;
  198. uint16_t ss_rpt_mode;
  199. uint16_t ss_bin_scale;
  200. uint16_t ss_dbm_adj;
  201. uint16_t ss_chn_mask;
  202. int8_t ss_nf_cal[AH_MAX_CHAINS * 2];
  203. int8_t ss_nf_pwr[AH_MAX_CHAINS * 2];
  204. int32_t ss_nf_temp_data;
  205. uint32_t ss_frequency;
  206. };
  207. /**
  208. * struct spectral_caps - Spectral capabilities structure
  209. * @phydiag_cap: Phydiag capability
  210. * @radar_cap: Radar detection capability
  211. * @spectral_cap: Spectral capability
  212. * @advncd_spectral_cap: Advanced spectral capability
  213. * @hw_gen: Spectral hw generation as defined in spectral_cap_hw_gen
  214. * @is_scaling_params_populated: indicates whether scaling params is populated
  215. * @formula_id: formula_id
  216. * @low_level_offset: low_level_offset
  217. * @high_level_offset: high_level_offset
  218. * @rssi_thr: rssi_thr
  219. * @default_agc_max_gain: default_agc_max_gain
  220. * @agile_spectral_cap: agile Spectral capability for 20/40/80
  221. * @agile_spectral_cap_160: agile Spectral capability for 160 MHz
  222. * @agile_spectral_cap_80p80: agile Spectral capability for 80p80
  223. */
  224. struct spectral_caps {
  225. uint8_t phydiag_cap;
  226. uint8_t radar_cap;
  227. uint8_t spectral_cap;
  228. uint8_t advncd_spectral_cap;
  229. uint32_t hw_gen;
  230. bool is_scaling_params_populated;
  231. uint16_t formula_id;
  232. int16_t low_level_offset;
  233. int16_t high_level_offset;
  234. int16_t rssi_thr;
  235. uint8_t default_agc_max_gain;
  236. bool agile_spectral_cap;
  237. bool agile_spectral_cap_160;
  238. bool agile_spectral_cap_80p80;
  239. };
  240. #define SPECTRAL_IOCTL_PARAM_NOVAL (65535)
  241. #define MAX_SPECTRAL_CHAINS 3
  242. #define MAX_NUM_BINS 520
  243. /* 5 categories x (lower + upper) bands */
  244. #define MAX_INTERF 10
  245. /**
  246. * enum dcs_int_type - Interference type indicated by DCS
  247. * @SPECTRAL_DCS_INT_NONE: No interference
  248. * @SPECTRAL_DCS_INT_CW: CW interference
  249. * @SPECTRAL_DCS_INT_WIFI: WLAN interference
  250. */
  251. enum dcs_int_type {
  252. SPECTRAL_DCS_INT_NONE,
  253. SPECTRAL_DCS_INT_CW,
  254. SPECTRAL_DCS_INT_WIFI
  255. };
  256. /**
  257. * struct interf_rsp - Interference record
  258. * @interf_type: eINTERF_TYPE giving type of interference
  259. * @interf_min_freq: Minimum frequency in MHz at which interference has been
  260. * found
  261. * @interf_max_freq: Maximum frequency in MHz at which interference has been
  262. * found
  263. * @advncd_spectral_cap: Advanced spectral capability
  264. */
  265. struct interf_rsp {
  266. uint8_t interf_type;
  267. uint16_t interf_min_freq;
  268. uint16_t interf_max_freq;
  269. } __packed;
  270. /**
  271. * struct interf_src_rsp - List of interference sources
  272. * @count: Number of interference records
  273. * @interf: Array of interference records
  274. */
  275. struct interf_src_rsp {
  276. uint16_t count;
  277. struct interf_rsp interf[MAX_INTERF];
  278. } __packed;
  279. /**
  280. * struct spectral_classifier_params - spectral classifier parameters
  281. * @spectral_20_40_mode: Is AP in 20/40 mode?
  282. * @spectral_dc_index: DC index
  283. * @spectral_dc_in_mhz: DC in MHz
  284. * @upper_chan_in_mhz: Upper channel in MHz
  285. * @lower_chan_in_mhz: Lower channel in MHz
  286. */
  287. struct spectral_classifier_params {
  288. int spectral_20_40_mode;
  289. int spectral_dc_index;
  290. int spectral_dc_in_mhz;
  291. int upper_chan_in_mhz;
  292. int lower_chan_in_mhz;
  293. } __packed;
  294. /**
  295. * struct spectral_samp_data - Spectral Analysis Messaging Protocol Data format
  296. * @spectral_data_len: Indicates the bin size
  297. * @spectral_data_len_sec80: Indicates the bin size for secondary 80 segment
  298. * @spectral_rssi: Indicates RSSI
  299. * @spectral_rssi_sec80: Indicates RSSI for secondary 80 segment
  300. * @spectral_combined_rssi: Indicates combined RSSI from all antennas
  301. * @spectral_upper_rssi: Indicates RSSI of upper band
  302. * @spectral_lower_rssi: Indicates RSSI of lower band
  303. * @spectral_chain_ctl_rssi: RSSI for control channel, for all antennas
  304. * @spectral_chain_ext_rssi: RSSI for extension channel, for all antennas
  305. * @spectral_max_scale: Indicates scale factor
  306. * @spectral_bwinfo: Indicates bandwidth info
  307. * @spectral_tstamp: Indicates timestamp
  308. * @spectral_max_index: Indicates the index of max magnitude
  309. * @spectral_max_index_sec80: Indicates the index of max magnitude for secondary
  310. * 80 segment
  311. * @spectral_max_mag: Indicates the maximum magnitude
  312. * @spectral_max_mag_sec80: Indicates the maximum magnitude for secondary 80
  313. * segment
  314. * @spectral_max_exp: Indicates the max exp
  315. * @spectral_last_tstamp: Indicates the last time stamp
  316. * @spectral_upper_max_index: Indicates the index of max mag in upper band
  317. * @spectral_lower_max_index: Indicates the index of max mag in lower band
  318. * @spectral_nb_upper: Not Used
  319. * @spectral_nb_lower: Not Used
  320. * @classifier_params: Indicates classifier parameters
  321. * @bin_pwr_count: Indicates the number of FFT bins
  322. * @lb_edge_extrabins: Number of extra bins on left band edge
  323. * @rb_edge_extrabins: Number of extra bins on right band edge
  324. * @bin_pwr_count_sec80: Indicates the number of FFT bins in secondary 80
  325. * segment
  326. * @bin_pwr: Contains FFT magnitudes
  327. * @bin_pwr_sec80: Contains FFT magnitudes for the secondary 80
  328. * segment
  329. * @interf_list: List of interfernce sources
  330. * @noise_floor: Indicates the current noise floor
  331. * @noise_floor_sec80: Indicates the current noise floor for secondary 80
  332. * segment
  333. * @ch_width: Channel width 20/40/80/160 MHz
  334. * @spectral_mode: Spectral scan mode
  335. * @spectral_pri80ind: Indication from hardware that the sample was
  336. * received on the primary 80 MHz segment. If this
  337. * is set when smode = SPECTRAL_SCAN_MODE_AGILE, it
  338. * indicates that Spectral was carried out on pri80
  339. * instead of the Agile frequency due to a
  340. * channel switch - Software may choose
  341. * to ignore the sample in this case.
  342. * @spectral_pri80ind_sec80: Indication from hardware that the sample was
  343. * received on the primary 80 MHz segment instead of
  344. * the secondary 80 MHz segment due to a channel
  345. * switch - Software may choose to ignore the sample
  346. * if this is set. Applicable only if smode =
  347. * SPECTRAL_SCAN_MODE_NORMAL and for 160/80+80 MHz
  348. * Spectral operation.
  349. */
  350. struct spectral_samp_data {
  351. int16_t spectral_data_len;
  352. int16_t spectral_data_len_sec80;
  353. int16_t spectral_rssi;
  354. int16_t spectral_rssi_sec80;
  355. int8_t spectral_combined_rssi;
  356. int8_t spectral_upper_rssi;
  357. int8_t spectral_lower_rssi;
  358. int8_t spectral_chain_ctl_rssi[MAX_SPECTRAL_CHAINS];
  359. int8_t spectral_chain_ext_rssi[MAX_SPECTRAL_CHAINS];
  360. uint8_t spectral_max_scale;
  361. int16_t spectral_bwinfo;
  362. int32_t spectral_tstamp;
  363. int16_t spectral_max_index;
  364. int16_t spectral_max_index_sec80;
  365. int16_t spectral_max_mag;
  366. int16_t spectral_max_mag_sec80;
  367. uint8_t spectral_max_exp;
  368. int32_t spectral_last_tstamp;
  369. int16_t spectral_upper_max_index;
  370. int16_t spectral_lower_max_index;
  371. uint8_t spectral_nb_upper;
  372. uint8_t spectral_nb_lower;
  373. struct spectral_classifier_params classifier_params;
  374. uint16_t bin_pwr_count;
  375. /*
  376. * For 11ac chipsets prior to AR900B version 2.0, a max of 512 bins are
  377. * delivered. However, there can be additional bins reported for
  378. * AR900B version 2.0 and QCA9984 as described next:
  379. *
  380. * AR900B version 2.0: An additional tone is processed on the right
  381. * hand side in order to facilitate detection of radar pulses out to
  382. * the extreme band-edge of the channel frequency.
  383. * Since the HW design processes four tones at a time,
  384. * this requires one additional Dword to be added to the
  385. * search FFT report.
  386. *
  387. * QCA9984: When spectral_scan_rpt_mode=2, i.e 2-dword summary +
  388. * 1x-oversampled bins (in-band) per FFT,
  389. * then 8 more bins (4 more on left side and 4 more on right side)
  390. * are added.
  391. */
  392. uint8_t lb_edge_extrabins;
  393. uint8_t rb_edge_extrabins;
  394. uint16_t bin_pwr_count_sec80;
  395. uint8_t bin_pwr[MAX_NUM_BINS];
  396. uint8_t bin_pwr_sec80[MAX_NUM_BINS];
  397. struct interf_src_rsp interf_list;
  398. int16_t noise_floor;
  399. int16_t noise_floor_sec80;
  400. uint32_t ch_width;
  401. uint8_t spectral_agc_total_gain;
  402. uint8_t spectral_agc_total_gain_sec80;
  403. uint8_t spectral_gainchange;
  404. uint8_t spectral_gainchange_sec80;
  405. enum spectral_scan_mode spectral_mode;
  406. uint8_t spectral_pri80ind;
  407. uint8_t spectral_pri80ind_sec80;
  408. } __packed;
  409. /**
  410. * struct spectral_samp_msg - Spectral SAMP message
  411. * @signature: Validates the SAMP message
  412. * @freq: Operating frequency in MHz
  413. * @vhtop_ch_freq_seg1: VHT Segment 1 centre frequency in MHz
  414. * @vhtop_ch_freq_seg2: VHT Segment 2 centre frequency in MHz
  415. * @agile_freq: Center frequency in MHz of the entire span across which
  416. * Agile Spectral is carried out. Applicable only for Agile
  417. * Spectral samples.
  418. * @freq_loading: How busy was the channel
  419. * @dcs_enabled: Whether DCS is enabled
  420. * @int_type: Interference type indicated by DCS
  421. * @macaddr: Indicates the device interface
  422. * @samp_data: SAMP Data
  423. */
  424. struct spectral_samp_msg {
  425. uint32_t signature;
  426. uint16_t freq;
  427. uint16_t vhtop_ch_freq_seg1;
  428. uint16_t vhtop_ch_freq_seg2;
  429. uint16_t agile_freq;
  430. uint16_t freq_loading;
  431. uint16_t dcs_enabled;
  432. enum dcs_int_type int_type;
  433. uint8_t macaddr[6];
  434. struct spectral_samp_data samp_data;
  435. } __packed;
  436. #endif