123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- /*
- * Copyright (c) 2017-2020 The Linux Foundation. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * DOC: This file contains all SCAN component's APIs
- */
- #include "cfg_ucfg_api.h"
- #include "wlan_scan_api.h"
- #include "../../core/src/wlan_scan_manager.h"
- void wlan_scan_cfg_get_passive_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t *dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *dwell_time = scan_obj->scan_def.passive_dwell;
- }
- void wlan_scan_cfg_set_passive_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- scan_obj->scan_def.passive_dwell = dwell_time;
- }
- void wlan_scan_cfg_get_active_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t *dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *dwell_time = scan_obj->scan_def.active_dwell;
- }
- void wlan_scan_cfg_set_active_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- scan_obj->scan_def.active_dwell = dwell_time;
- }
- void wlan_scan_cfg_get_active_2g_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t *dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *dwell_time = scan_obj->scan_def.active_dwell_2g;
- }
- void wlan_scan_cfg_set_active_2g_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- scan_obj->scan_def.active_dwell_2g = dwell_time;
- }
- void wlan_scan_cfg_get_conc_active_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t *dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *dwell_time = scan_obj->scan_def.conc_active_dwell;
- }
- void wlan_scan_cfg_set_conc_active_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- scan_obj->scan_def.conc_active_dwell = dwell_time;
- }
- void wlan_scan_cfg_get_conc_passive_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t *dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *dwell_time = scan_obj->scan_def.conc_passive_dwell;
- }
- void wlan_scan_cfg_set_conc_passive_dwelltime(struct wlan_objmgr_psoc *psoc,
- uint32_t dwell_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- scan_obj->scan_def.conc_passive_dwell = dwell_time;
- }
- void
- wlan_scan_cfg_get_dfs_chan_scan_allowed(struct wlan_objmgr_psoc *psoc,
- bool *enable_dfs_scan)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *enable_dfs_scan = scan_obj->scan_def.allow_dfs_chan_in_scan;
- }
- void
- wlan_scan_cfg_set_dfs_chan_scan_allowed(struct wlan_objmgr_psoc *psoc,
- bool enable_dfs_scan)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- scan_obj->scan_def.allow_dfs_chan_in_scan = enable_dfs_scan;
- }
- bool wlan_scan_cfg_honour_nl_scan_policy_flags(struct wlan_objmgr_psoc *psoc)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return false;
- return scan_obj->scan_def.honour_nl_scan_policy_flags;
- }
- void wlan_scan_cfg_get_conc_max_resttime(struct wlan_objmgr_psoc *psoc,
- uint32_t *rest_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *rest_time = scan_obj->scan_def.conc_max_rest_time;
- }
- void wlan_scan_cfg_get_conc_min_resttime(struct wlan_objmgr_psoc *psoc,
- uint32_t *rest_time)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return;
- *rest_time = scan_obj->scan_def.conc_min_rest_time;
- }
- bool wlan_scan_is_snr_monitor_enabled(struct wlan_objmgr_psoc *psoc)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return cfg_default(CFG_ENABLE_SNR_MONITORING);
- return scan_obj->scan_def.scan_f_chan_stat_evnt;
- }
- QDF_STATUS
- wlan_scan_process_bcn_probe_rx_sync(struct wlan_objmgr_psoc *psoc,
- qdf_nbuf_t buf,
- struct mgmt_rx_event_params *rx_param,
- enum mgmt_frame_type frm_type)
- {
- struct scan_bcn_probe_event *bcn = NULL;
- QDF_STATUS status;
- if ((frm_type != MGMT_PROBE_RESP) &&
- (frm_type != MGMT_BEACON)) {
- scm_err("frame is not beacon or probe resp");
- status = QDF_STATUS_E_INVAL;
- goto free;
- }
- bcn = qdf_mem_malloc_atomic(sizeof(*bcn));
- if (!bcn) {
- status = QDF_STATUS_E_NOMEM;
- goto free;
- }
- bcn->rx_data =
- qdf_mem_malloc_atomic(sizeof(*rx_param));
- if (!bcn->rx_data) {
- status = QDF_STATUS_E_NOMEM;
- goto free;
- }
- if (frm_type == MGMT_PROBE_RESP)
- bcn->frm_type = MGMT_SUBTYPE_PROBE_RESP;
- else
- bcn->frm_type = MGMT_SUBTYPE_BEACON;
- status = wlan_objmgr_psoc_try_get_ref(psoc, WLAN_SCAN_ID);
- if (QDF_IS_STATUS_ERROR(status)) {
- scm_info("unable to get reference");
- goto free;
- }
- bcn->psoc = psoc;
- bcn->buf = buf;
- qdf_mem_copy(bcn->rx_data, rx_param, sizeof(*rx_param));
- return __scm_handle_bcn_probe(bcn);
- free:
- if (bcn && bcn->rx_data)
- qdf_mem_free(bcn->rx_data);
- if (bcn)
- qdf_mem_free(bcn);
- if (buf)
- qdf_nbuf_free(buf);
- return status;
- }
- qdf_time_t wlan_scan_get_aging_time(struct wlan_objmgr_psoc *psoc)
- {
- struct wlan_scan_obj *scan_obj;
- scan_obj = wlan_psoc_get_scan_obj(psoc);
- if (!scan_obj)
- return cfg_default(CFG_SCAN_AGING_TIME) * 1000;
- return scan_obj->scan_def.scan_cache_aging_time;
- }
- QDF_STATUS wlan_scan_start(struct scan_start_request *req)
- {
- struct scheduler_msg msg = {0};
- QDF_STATUS status;
- if (!req || !req->vdev) {
- scm_err("req or vdev within req is NULL");
- if (req)
- scm_scan_free_scan_request_mem(req);
- return QDF_STATUS_E_NULL_VALUE;
- }
- if (!scm_is_scan_allowed(req->vdev)) {
- scm_err_rl("scan disabled, rejecting the scan req");
- scm_scan_free_scan_request_mem(req);
- return QDF_STATUS_E_AGAIN;
- }
- /*
- * Try to get vdev reference. Return if reference could
- * not be taken. Reference will be released once scan
- * request handling completes along with free of @req.
- */
- status = wlan_objmgr_vdev_try_get_ref(req->vdev, WLAN_SCAN_ID);
- if (QDF_IS_STATUS_ERROR(status)) {
- scm_info("unable to get reference");
- scm_scan_free_scan_request_mem(req);
- return status;
- }
- msg.bodyptr = req;
- msg.callback = scm_scan_start_req;
- msg.flush_callback = scm_scan_start_flush_callback;
- status = scheduler_post_message(QDF_MODULE_ID_OS_IF,
- QDF_MODULE_ID_SCAN,
- QDF_MODULE_ID_OS_IF, &msg);
- if (QDF_IS_STATUS_ERROR(status)) {
- wlan_objmgr_vdev_release_ref(req->vdev, WLAN_SCAN_ID);
- scm_scan_free_scan_request_mem(req);
- }
- return status;
- }
- QDF_STATUS wlan_scan_cancel(struct scan_cancel_request *req)
- {
- struct scheduler_msg msg = {0};
- QDF_STATUS status;
- if (!req || !req->vdev) {
- scm_err("req or vdev within req is NULL");
- if (req)
- qdf_mem_free(req);
- return QDF_STATUS_E_NULL_VALUE;
- }
- status = wlan_objmgr_vdev_try_get_ref(req->vdev, WLAN_SCAN_ID);
- if (QDF_IS_STATUS_ERROR(status)) {
- scm_info("Failed to get vdev ref; status:%d", status);
- goto req_free;
- }
- msg.bodyptr = req;
- msg.callback = scm_scan_cancel_req;
- msg.flush_callback = scm_scan_cancel_flush_callback;
- status = scheduler_post_message(QDF_MODULE_ID_OS_IF,
- QDF_MODULE_ID_SCAN,
- QDF_MODULE_ID_OS_IF, &msg);
- if (QDF_IS_STATUS_ERROR(status))
- goto vdev_put;
- return QDF_STATUS_SUCCESS;
- vdev_put:
- wlan_objmgr_vdev_release_ref(req->vdev, WLAN_SCAN_ID);
- req_free:
- qdf_mem_free(req);
- return status;
- }
|