|
@@ -107,185 +107,6 @@ static void wlan_spectral_intit_config(struct spectral_config *config_req)
|
|
|
config_req->ss_chn_mask = SPECTRAL_PHYERR_PARAM_NOVAL;
|
|
|
}
|
|
|
|
|
|
-static int wlan_spectral_set_config(struct wlan_objmgr_pdev *pdev,
|
|
|
- struct spectral_config *config_req)
|
|
|
-{
|
|
|
- int status;
|
|
|
-
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_SET_CONFIG,
|
|
|
- config_req,
|
|
|
- sizeof(struct spectral_config),
|
|
|
- NULL,
|
|
|
- NULL);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_spectral_set_debug_level(struct wlan_objmgr_pdev *pdev,
|
|
|
- uint32_t spectral_dbg_level)
|
|
|
-{
|
|
|
- int status;
|
|
|
-
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_SET_DEBUG_LEVEL,
|
|
|
- &spectral_dbg_level,
|
|
|
- sizeof(uint32_t),
|
|
|
- NULL,
|
|
|
- NULL);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_spectral_get_debug_level(struct wlan_objmgr_pdev *pdev,
|
|
|
- uint32_t *spectral_dbg_level)
|
|
|
-{
|
|
|
- int status;
|
|
|
- uint32_t outsize;
|
|
|
-
|
|
|
- outsize = sizeof(uint32_t);
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_GET_DEBUG_LEVEL,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- spectral_dbg_level,
|
|
|
- &outsize);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_spectral_get_config(struct wlan_objmgr_pdev *pdev,
|
|
|
- struct spectral_config *config_req)
|
|
|
-{
|
|
|
- int status;
|
|
|
- uint32_t outsize;
|
|
|
-
|
|
|
- outsize = sizeof(struct spectral_config);
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_GET_CONFIG,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- config_req,
|
|
|
- &outsize);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_spectral_get_cap(struct wlan_objmgr_pdev *pdev,
|
|
|
- struct spectral_caps *spectral_cap)
|
|
|
-{
|
|
|
- int status;
|
|
|
- uint32_t outsize;
|
|
|
-
|
|
|
- outsize = sizeof(struct spectral_caps);
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_GET_CAPABILITY_INFO,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- spectral_cap,
|
|
|
- &outsize);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_spectral_get_diag_stats(
|
|
|
- struct wlan_objmgr_pdev *pdev,
|
|
|
- struct spectral_diag_stats *spectral_diag)
|
|
|
-{
|
|
|
- int status;
|
|
|
- uint32_t outsize;
|
|
|
-
|
|
|
- outsize = sizeof(struct spectral_diag_stats);
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_GET_DIAG_STATS,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- spectral_diag,
|
|
|
- &outsize);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_spectral_scan_get_status(
|
|
|
- struct wlan_objmgr_pdev *pdev,
|
|
|
- struct spectral_scan_state *sscan_state)
|
|
|
-{
|
|
|
- uint32_t is_active;
|
|
|
- uint32_t is_enabled;
|
|
|
- int status;
|
|
|
- uint32_t outsize;
|
|
|
-
|
|
|
- outsize = sizeof(uint32_t);
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_IS_ACTIVE,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- &is_active,
|
|
|
- &outsize);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- sscan_state->is_active = is_active;
|
|
|
-
|
|
|
- outsize = sizeof(uint32_t);
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_IS_ENABLED,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- &is_enabled,
|
|
|
- &outsize);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- sscan_state->is_enabled = is_enabled;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_start_spectral_scan(struct wlan_objmgr_pdev *pdev)
|
|
|
-{
|
|
|
- int status;
|
|
|
-
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_ACTIVATE_SCAN,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- NULL,
|
|
|
- NULL);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
-static int wlan_stop_spectral_scan(struct wlan_objmgr_pdev *pdev)
|
|
|
-{
|
|
|
- int status;
|
|
|
-
|
|
|
- status = ucfg_spectral_control(pdev,
|
|
|
- SPECTRAL_STOP_SCAN,
|
|
|
- NULL,
|
|
|
- 0,
|
|
|
- NULL,
|
|
|
- NULL);
|
|
|
- if (status < 0)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|
|
|
-
|
|
|
int wlan_cfg80211_spectral_scan_config_and_start(struct wiphy *wiphy,
|
|
|
struct wlan_objmgr_pdev *pdev,
|
|
|
const void *data,
|
|
@@ -298,6 +119,8 @@ int wlan_cfg80211_spectral_scan_config_and_start(struct wiphy *wiphy,
|
|
|
struct sk_buff *skb;
|
|
|
uint32_t spectral_dbg_level;
|
|
|
uint32_t scan_req_type = 0;
|
|
|
+ struct spectral_cp_request sscan_req;
|
|
|
+ enum spectral_scan_mode sscan_mode = SPECTRAL_SCAN_MODE_NORMAL;
|
|
|
|
|
|
if (wlan_cfg80211_nla_parse(
|
|
|
tb,
|
|
@@ -394,9 +217,11 @@ int wlan_cfg80211_spectral_scan_config_and_start(struct wiphy *wiphy,
|
|
|
if (tb[QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DEBUG_LEVEL]) {
|
|
|
spectral_dbg_level = nla_get_u32(tb
|
|
|
[QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DEBUG_LEVEL]);
|
|
|
- status = wlan_spectral_set_debug_level(pdev,
|
|
|
- spectral_dbg_level);
|
|
|
- if (QDF_STATUS_SUCCESS != status)
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.debug_req.spectral_dbg_level = spectral_dbg_level;
|
|
|
+ sscan_req.req_id = SPECTRAL_SET_DEBUG_LEVEL;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
@@ -405,14 +230,21 @@ int wlan_cfg80211_spectral_scan_config_and_start(struct wiphy *wiphy,
|
|
|
[QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE]);
|
|
|
|
|
|
if (CONFIG_REQUESTED(scan_req_type)) {
|
|
|
- status = wlan_spectral_set_config(pdev, &config_req);
|
|
|
- if (QDF_STATUS_SUCCESS != status)
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_SET_CONFIG;
|
|
|
+ qdf_mem_copy(&sscan_req.config_req.sscan_config, &config_req,
|
|
|
+ qdf_min(sizeof(sscan_req.config_req.sscan_config),
|
|
|
+ sizeof(config_req)));
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
if (SCAN_REQUESTED(scan_req_type)) {
|
|
|
- status = wlan_start_spectral_scan(pdev);
|
|
|
- if (QDF_STATUS_SUCCESS != status)
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_ACTIVATE_SCAN;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
@@ -442,10 +274,15 @@ int wlan_cfg80211_spectral_scan_stop(struct wiphy *wiphy,
|
|
|
int data_len)
|
|
|
{
|
|
|
QDF_STATUS status;
|
|
|
+ struct spectral_cp_request sscan_req;
|
|
|
+ enum spectral_scan_mode sscan_mode = SPECTRAL_SCAN_MODE_NORMAL;
|
|
|
|
|
|
- status = wlan_stop_spectral_scan(pdev);
|
|
|
- if (QDF_STATUS_SUCCESS != status)
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_STOP_SCAN;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
return -EINVAL;
|
|
|
+
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -454,12 +291,14 @@ int wlan_cfg80211_spectral_scan_get_config(struct wiphy *wiphy,
|
|
|
const void *data,
|
|
|
int data_len)
|
|
|
{
|
|
|
- struct spectral_config config_buf;
|
|
|
+ struct spectral_config *sconfig;
|
|
|
uint32_t spectral_dbg_level;
|
|
|
struct sk_buff *skb;
|
|
|
+ struct spectral_cp_request sscan_req;
|
|
|
+ enum spectral_scan_mode sscan_mode = SPECTRAL_SCAN_MODE_NORMAL;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
|
|
|
- wlan_spectral_get_config(pdev, &config_buf);
|
|
|
- wlan_spectral_get_debug_level(pdev, &spectral_dbg_level);
|
|
|
|
|
|
skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, (21 * sizeof(u32)) +
|
|
|
NLA_HDRLEN + NLMSG_HDRLEN);
|
|
@@ -468,68 +307,80 @@ int wlan_cfg80211_spectral_scan_get_config(struct wiphy *wiphy,
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_GET_CONFIG;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ sconfig = &sscan_req.config_req.sscan_config;
|
|
|
if (nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_SCAN_COUNT,
|
|
|
- config_buf.ss_count) ||
|
|
|
+ sconfig->ss_count) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_SCAN_PERIOD,
|
|
|
- config_buf.ss_period) ||
|
|
|
+ sconfig->ss_period) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_PRIORITY,
|
|
|
- config_buf.ss_spectral_pri) ||
|
|
|
+ sconfig->ss_spectral_pri) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_FFT_SIZE,
|
|
|
- config_buf.ss_fft_size) ||
|
|
|
+ sconfig->ss_fft_size) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_GC_ENA,
|
|
|
- config_buf.ss_gc_ena) ||
|
|
|
+ sconfig->ss_gc_ena) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RESTART_ENA,
|
|
|
- config_buf.ss_restart_ena) ||
|
|
|
+ sconfig->ss_restart_ena) ||
|
|
|
nla_put_u32(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_NOISE_FLOOR_REF,
|
|
|
- config_buf.ss_noise_floor_ref) ||
|
|
|
+ sconfig->ss_noise_floor_ref) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_INIT_DELAY,
|
|
|
- config_buf.ss_init_delay) ||
|
|
|
+ sconfig->ss_init_delay) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_NB_TONE_THR,
|
|
|
- config_buf.ss_nb_tone_thr) ||
|
|
|
+ sconfig->ss_nb_tone_thr) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_STR_BIN_THR,
|
|
|
- config_buf.ss_str_bin_thr) ||
|
|
|
+ sconfig->ss_str_bin_thr) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_WB_RPT_MODE,
|
|
|
- config_buf.ss_wb_rpt_mode) ||
|
|
|
+ sconfig->ss_wb_rpt_mode) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RSSI_RPT_MODE,
|
|
|
- config_buf.ss_rssi_rpt_mode) ||
|
|
|
+ sconfig->ss_rssi_rpt_mode) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RSSI_THR,
|
|
|
- config_buf.ss_rssi_thr) ||
|
|
|
+ sconfig->ss_rssi_thr) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_PWR_FORMAT,
|
|
|
- config_buf.ss_pwr_format) ||
|
|
|
+ sconfig->ss_pwr_format) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RPT_MODE,
|
|
|
- config_buf.ss_rpt_mode) ||
|
|
|
+ sconfig->ss_rpt_mode) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_BIN_SCALE,
|
|
|
- config_buf.ss_bin_scale) ||
|
|
|
+ sconfig->ss_bin_scale) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DBM_ADJ,
|
|
|
- config_buf.ss_dbm_adj) ||
|
|
|
+ sconfig->ss_dbm_adj) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_CHN_MASK,
|
|
|
- config_buf.ss_chn_mask) ||
|
|
|
+ sconfig->ss_chn_mask) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_FFT_PERIOD,
|
|
|
- config_buf.ss_fft_period) ||
|
|
|
+ sconfig->ss_fft_period) ||
|
|
|
nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_SHORT_REPORT,
|
|
|
- config_buf.ss_short_report) ||
|
|
|
- nla_put_u32(skb,
|
|
|
+ sconfig->ss_short_report)) {
|
|
|
+ kfree_skb(skb);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_GET_DEBUG_LEVEL;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ spectral_dbg_level = sscan_req.debug_req.spectral_dbg_level;
|
|
|
+ if (nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DEBUG_LEVEL,
|
|
|
spectral_dbg_level)) {
|
|
|
kfree_skb(skb);
|
|
@@ -545,10 +396,16 @@ int wlan_cfg80211_spectral_scan_get_cap(struct wiphy *wiphy,
|
|
|
const void *data,
|
|
|
int data_len)
|
|
|
{
|
|
|
- struct spectral_caps spectral_cap;
|
|
|
+ struct spectral_caps *scaps;
|
|
|
struct sk_buff *skb;
|
|
|
+ struct spectral_cp_request sscan_req;
|
|
|
+ enum spectral_scan_mode sscan_mode = SPECTRAL_SCAN_MODE_NORMAL;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
- wlan_spectral_get_cap(pdev, &spectral_cap);
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_GET_CAPABILITY_INFO;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ scaps = &sscan_req.caps_req.sscan_caps;
|
|
|
|
|
|
skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, 10 * sizeof(u32) +
|
|
|
NLA_HDRLEN + NLMSG_HDRLEN);
|
|
@@ -557,24 +414,24 @@ int wlan_cfg80211_spectral_scan_get_cap(struct wiphy *wiphy,
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
|
|
|
- if (spectral_cap.phydiag_cap)
|
|
|
+ if (scaps->phydiag_cap)
|
|
|
if (nla_put_flag(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_PHYDIAG))
|
|
|
goto fail;
|
|
|
|
|
|
- if (spectral_cap.radar_cap)
|
|
|
+ if (scaps->radar_cap)
|
|
|
if (nla_put_flag(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_RADAR))
|
|
|
goto fail;
|
|
|
|
|
|
- if (spectral_cap.spectral_cap)
|
|
|
+ if (scaps->spectral_cap)
|
|
|
if (nla_put_flag(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_SPECTRAL))
|
|
|
goto fail;
|
|
|
|
|
|
- if (spectral_cap.advncd_spectral_cap)
|
|
|
+ if (scaps->advncd_spectral_cap)
|
|
|
if (nla_put_flag(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_ADVANCED_SPECTRAL))
|
|
@@ -582,38 +439,38 @@ int wlan_cfg80211_spectral_scan_get_cap(struct wiphy *wiphy,
|
|
|
|
|
|
if (nla_put_u32(skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_HW_GEN,
|
|
|
- spectral_cap.hw_gen))
|
|
|
+ scaps->hw_gen))
|
|
|
goto fail;
|
|
|
|
|
|
- if (spectral_cap.is_scaling_params_populated) {
|
|
|
+ if (scaps->is_scaling_params_populated) {
|
|
|
if (nla_put_u16(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_FORMULA_ID,
|
|
|
- spectral_cap.formula_id))
|
|
|
+ scaps->formula_id))
|
|
|
goto fail;
|
|
|
|
|
|
if (nla_put_u16(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_LOW_LEVEL_OFFSET,
|
|
|
- spectral_cap.low_level_offset))
|
|
|
+ scaps->low_level_offset))
|
|
|
goto fail;
|
|
|
|
|
|
if (nla_put_u16(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_HIGH_LEVEL_OFFSET,
|
|
|
- spectral_cap.high_level_offset))
|
|
|
+ scaps->high_level_offset))
|
|
|
goto fail;
|
|
|
|
|
|
if (nla_put_u16(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_RSSI_THR,
|
|
|
- spectral_cap.rssi_thr))
|
|
|
+ scaps->rssi_thr))
|
|
|
goto fail;
|
|
|
|
|
|
if (nla_put_u8(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_DEFAULT_AGC_MAX_GAIN,
|
|
|
- spectral_cap.default_agc_max_gain))
|
|
|
+ scaps->default_agc_max_gain))
|
|
|
goto fail;
|
|
|
}
|
|
|
|
|
@@ -631,10 +488,16 @@ int wlan_cfg80211_spectral_scan_get_diag_stats(struct wiphy *wiphy,
|
|
|
const void *data,
|
|
|
int data_len)
|
|
|
{
|
|
|
- struct spectral_diag_stats spetcral_diag;
|
|
|
+ struct spectral_diag_stats *spetcral_diag;
|
|
|
struct sk_buff *skb;
|
|
|
+ struct spectral_cp_request sscan_req;
|
|
|
+ enum spectral_scan_mode sscan_mode = SPECTRAL_SCAN_MODE_NORMAL;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
- wlan_spectral_get_diag_stats(pdev, &spetcral_diag);
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_GET_DIAG_STATS;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ spetcral_diag = &sscan_req.diag_req.sscan_diag;
|
|
|
|
|
|
skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, 5 * sizeof(u64) +
|
|
|
NLA_HDRLEN + NLMSG_HDRLEN);
|
|
@@ -646,23 +509,23 @@ int wlan_cfg80211_spectral_scan_get_diag_stats(struct wiphy *wiphy,
|
|
|
if (wlan_cfg80211_nla_put_u64(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_SIG_MISMATCH,
|
|
|
- spetcral_diag.spectral_mismatch) ||
|
|
|
+ spetcral_diag->spectral_mismatch) ||
|
|
|
wlan_cfg80211_nla_put_u64(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_SEC80_SFFT_INSUFFLEN,
|
|
|
- spetcral_diag.spectral_sec80_sfft_insufflen) ||
|
|
|
+ spetcral_diag->spectral_sec80_sfft_insufflen) ||
|
|
|
wlan_cfg80211_nla_put_u64(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_NOSEC80_SFFT,
|
|
|
- spetcral_diag.spectral_no_sec80_sfft) ||
|
|
|
+ spetcral_diag->spectral_no_sec80_sfft) ||
|
|
|
wlan_cfg80211_nla_put_u64(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_VHTSEG1ID_MISMATCH,
|
|
|
- spetcral_diag.spectral_vhtseg1id_mismatch) ||
|
|
|
+ spetcral_diag->spectral_vhtseg1id_mismatch) ||
|
|
|
wlan_cfg80211_nla_put_u64(
|
|
|
skb,
|
|
|
QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_VHTSEG2ID_MISMATCH,
|
|
|
- spetcral_diag.spectral_vhtseg2id_mismatch)) {
|
|
|
+ spetcral_diag->spectral_vhtseg2id_mismatch)) {
|
|
|
kfree_skb(skb);
|
|
|
return -EINVAL;
|
|
|
}
|
|
@@ -678,6 +541,9 @@ int wlan_cfg80211_spectral_scan_get_status(struct wiphy *wiphy,
|
|
|
{
|
|
|
struct spectral_scan_state sscan_state = { 0 };
|
|
|
struct sk_buff *skb;
|
|
|
+ struct spectral_cp_request sscan_req;
|
|
|
+ enum spectral_scan_mode sscan_mode = SPECTRAL_SCAN_MODE_NORMAL;
|
|
|
+ QDF_STATUS status;
|
|
|
|
|
|
skb = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, 2 * sizeof(u32) +
|
|
|
NLA_HDRLEN + NLMSG_HDRLEN);
|
|
@@ -686,7 +552,16 @@ int wlan_cfg80211_spectral_scan_get_status(struct wiphy *wiphy,
|
|
|
return -ENOMEM;
|
|
|
}
|
|
|
|
|
|
- wlan_spectral_scan_get_status(pdev, &sscan_state);
|
|
|
+ /* Sending a request and extracting response from it has to be atomic */
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_IS_ACTIVE;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ sscan_state.is_active = sscan_req.status_req.is_active;
|
|
|
+
|
|
|
+ sscan_req.ss_mode = sscan_mode;
|
|
|
+ sscan_req.req_id = SPECTRAL_IS_ENABLED;
|
|
|
+ status = ucfg_spectral_control(pdev, &sscan_req);
|
|
|
+ sscan_state.is_enabled = sscan_req.status_req.is_enabled;
|
|
|
|
|
|
if (sscan_state.is_enabled)
|
|
|
if (nla_put_flag(
|