cregit-Linux how code gets into the kernel

Release 4.11 drivers/net/wireless/ti/wl18xx/scan.c

/*
 * This file is part of wl18xx
 *
 * Copyright (C) 2012 Texas Instruments. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA
 *
 */

#include <linux/ieee80211.h>
#include "scan.h"
#include "../wlcore/debug.h"


static void wl18xx_adjust_channels(struct wl18xx_cmd_scan_params *cmd, struct wlcore_scan_channels *cmd_channels) { memcpy(cmd->passive, cmd_channels->passive, sizeof(cmd->passive)); memcpy(cmd->active, cmd_channels->active, sizeof(cmd->active)); cmd->dfs = cmd_channels->dfs; cmd->passive_active = cmd_channels->passive_active; memcpy(cmd->channels_2, cmd_channels->channels_2, sizeof(cmd->channels_2)); memcpy(cmd->channels_5, cmd_channels->channels_5, sizeof(cmd->channels_5)); /* channels_4 are not supported, so no need to copy them */ }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller105100.00%2100.00%
Total105100.00%2100.00%


static int wl18xx_scan_send(struct wl1271 *wl, struct wl12xx_vif *wlvif, struct cfg80211_scan_request *req) { struct wl18xx_cmd_scan_params *cmd; struct wlcore_scan_channels *cmd_channels = NULL; int ret; cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); if (!cmd) { ret = -ENOMEM; goto out; } /* scan on the dev role if the regular one is not started */ if (wlcore_is_p2p_mgmt(wlvif)) cmd->role_id = wlvif->dev_role_id; else cmd->role_id = wlvif->role_id; if (WARN_ON(cmd->role_id == WL12XX_INVALID_ROLE_ID)) { ret = -EINVAL; goto out; } cmd->scan_type = SCAN_TYPE_SEARCH; cmd->rssi_threshold = -127; cmd->snr_threshold = 0; cmd->bss_type = SCAN_BSS_TYPE_ANY; cmd->ssid_from_list = 0; cmd->filter = 0; cmd->add_broadcast = 0; cmd->urgency = 0; cmd->protect = 0; cmd->n_probe_reqs = wl->conf.scan.num_probe_reqs; cmd->terminate_after = 0; /* configure channels */ WARN_ON(req->n_ssids > 1); cmd_channels = kzalloc(sizeof(*cmd_channels), GFP_KERNEL); if (!cmd_channels) { ret = -ENOMEM; goto out; } wlcore_set_scan_chan_params(wl, cmd_channels, req->channels, req->n_channels, req->n_ssids, SCAN_TYPE_SEARCH); wl18xx_adjust_channels(cmd, cmd_channels); /* * all the cycles params (except total cycles) should * remain 0 for normal scan */ cmd->total_cycles = 1; if (req->no_cck) cmd->rate = WL18XX_SCAN_RATE_6; cmd->tag = WL1271_SCAN_DEFAULT_TAG; if (req->n_ssids) { cmd->ssid_len = req->ssids[0].ssid_len; memcpy(cmd->ssid, req->ssids[0].ssid, cmd->ssid_len); } /* TODO: per-band ies? */ if (cmd->active[0]) { u8 band = NL80211_BAND_2GHZ; ret = wl12xx_cmd_build_probe_req(wl, wlvif, cmd->role_id, band, req->ssids ? req->ssids[0].ssid : NULL, req->ssids ? req->ssids[0].ssid_len : 0, req->ie, req->ie_len, NULL, 0, false); if (ret < 0) { wl1271_error("2.4GHz PROBE request template failed"); goto out; } } if (cmd->active[1] || cmd->dfs) { u8 band = NL80211_BAND_5GHZ; ret = wl12xx_cmd_build_probe_req(wl, wlvif, cmd->role_id, band, req->ssids ? req->ssids[0].ssid : NULL, req->ssids ? req->ssids[0].ssid_len : 0, req->ie, req->ie_len, NULL, 0, false); if (ret < 0) { wl1271_error("5GHz PROBE request template failed"); goto out; } } wl1271_dump(DEBUG_SCAN, "SCAN: ", cmd, sizeof(*cmd)); ret = wl1271_cmd_send(wl, CMD_SCAN, cmd, sizeof(*cmd), 0); if (ret < 0) { wl1271_error("SCAN failed"); goto out; } out: kfree(cmd_channels); kfree(cmd); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller52993.30%350.00%
Arik Nemtsov284.94%116.67%
David Spinadel81.41%116.67%
Johannes Berg20.35%116.67%
Total567100.00%6100.00%


void wl18xx_scan_completed(struct wl1271 *wl, struct wl12xx_vif *wlvif) { wl->scan.failed = false; cancel_delayed_work(&wl->scan_complete_work); ieee80211_queue_delayed_work(wl->hw, &wl->scan_complete_work, msecs_to_jiffies(0)); }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller48100.00%1100.00%
Total48100.00%1100.00%


static int wl18xx_scan_sched_scan_config(struct wl1271 *wl, struct wl12xx_vif *wlvif, struct cfg80211_sched_scan_request *req, struct ieee80211_scan_ies *ies) { struct wl18xx_cmd_scan_params *cmd; struct wlcore_scan_channels *cmd_channels = NULL; struct conf_sched_scan_settings *c = &wl->conf.sched_scan; int ret; int filter_type; wl1271_debug(DEBUG_CMD, "cmd sched_scan scan config"); filter_type = wlcore_scan_sched_scan_ssid_list(wl, wlvif, req); if (filter_type < 0) return filter_type; cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); if (!cmd) { ret = -ENOMEM; goto out; } cmd->role_id = wlvif->role_id; if (WARN_ON(cmd->role_id == WL12XX_INVALID_ROLE_ID)) { ret = -EINVAL; goto out; } cmd->scan_type = SCAN_TYPE_PERIODIC; cmd->rssi_threshold = c->rssi_threshold; cmd->snr_threshold = c->snr_threshold; /* don't filter on BSS type */ cmd->bss_type = SCAN_BSS_TYPE_ANY; cmd->ssid_from_list = 1; if (filter_type == SCAN_SSID_FILTER_LIST) cmd->filter = 1; cmd->add_broadcast = 0; cmd->urgency = 0; cmd->protect = 0; cmd->n_probe_reqs = c->num_probe_reqs; /* don't stop scanning automatically when something is found */ cmd->terminate_after = 0; cmd_channels = kzalloc(sizeof(*cmd_channels), GFP_KERNEL); if (!cmd_channels) { ret = -ENOMEM; goto out; } /* configure channels */ wlcore_set_scan_chan_params(wl, cmd_channels, req->channels, req->n_channels, req->n_ssids, SCAN_TYPE_PERIODIC); wl18xx_adjust_channels(cmd, cmd_channels); if (c->num_short_intervals && c->long_interval && c->long_interval > req->scan_plans[0].interval * MSEC_PER_SEC) { cmd->short_cycles_msec = cpu_to_le16(req->scan_plans[0].interval * MSEC_PER_SEC); cmd->long_cycles_msec = cpu_to_le16(c->long_interval); cmd->short_cycles_count = c->num_short_intervals; } else { cmd->short_cycles_msec = 0; cmd->long_cycles_msec = cpu_to_le16(req->scan_plans[0].interval * MSEC_PER_SEC); cmd->short_cycles_count = 0; } wl1271_debug(DEBUG_SCAN, "short_interval: %d, long_interval: %d, num_short: %d", le16_to_cpu(cmd->short_cycles_msec), le16_to_cpu(cmd->long_cycles_msec), cmd->short_cycles_count); cmd->total_cycles = 0; cmd->tag = WL1271_SCAN_DEFAULT_TAG; /* create a PERIODIC_SCAN_REPORT_EVENT whenever we've got a match */ cmd->report_threshold = 1; cmd->terminate_on_report = 0; if (cmd->active[0]) { u8 band = NL80211_BAND_2GHZ; ret = wl12xx_cmd_build_probe_req(wl, wlvif, cmd->role_id, band, req->ssids ? req->ssids[0].ssid : NULL, req->ssids ? req->ssids[0].ssid_len : 0, ies->ies[band], ies->len[band], ies->common_ies, ies->common_ie_len, true); if (ret < 0) { wl1271_error("2.4GHz PROBE request template failed"); goto out; } } if (cmd->active[1] || cmd->dfs) { u8 band = NL80211_BAND_5GHZ; ret = wl12xx_cmd_build_probe_req(wl, wlvif, cmd->role_id, band, req->ssids ? req->ssids[0].ssid : NULL, req->ssids ? req->ssids[0].ssid_len : 0, ies->ies[band], ies->len[band], ies->common_ies, ies->common_ie_len, true); if (ret < 0) { wl1271_error("5GHz PROBE request template failed"); goto out; } } wl1271_dump(DEBUG_SCAN, "SCAN: ", cmd, sizeof(*cmd)); ret = wl1271_cmd_send(wl, CMD_SCAN, cmd, sizeof(*cmd), 0); if (ret < 0) { wl1271_error("SCAN failed"); goto out; } out: kfree(cmd_channels); kfree(cmd); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller61288.06%337.50%
Arik Nemtsov284.03%112.50%
Avraham Stern213.02%112.50%
David Spinadel192.73%112.50%
Eyal Shapira131.87%112.50%
Johannes Berg20.29%112.50%
Total695100.00%8100.00%


int wl18xx_sched_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif, struct cfg80211_sched_scan_request *req, struct ieee80211_scan_ies *ies) { return wl18xx_scan_sched_scan_config(wl, wlvif, req, ies); }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller3697.30%150.00%
David Spinadel12.70%150.00%
Total37100.00%2100.00%


static int __wl18xx_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 scan_type) { struct wl18xx_cmd_scan_stop *stop; int ret; wl1271_debug(DEBUG_CMD, "cmd periodic scan stop"); stop = kzalloc(sizeof(*stop), GFP_KERNEL); if (!stop) { wl1271_error("failed to alloc memory to send sched scan stop"); return -ENOMEM; } stop->role_id = wlvif->role_id; stop->scan_type = scan_type; ret = wl1271_cmd_send(wl, CMD_STOP_SCAN, stop, sizeof(*stop), 0); if (ret < 0) { wl1271_error("failed to send sched scan stop command"); goto out_free; } out_free: kfree(stop); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller122100.00%1100.00%
Total122100.00%1100.00%


void wl18xx_scan_sched_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif) { __wl18xx_scan_stop(wl, wlvif, SCAN_TYPE_PERIODIC); }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller24100.00%1100.00%
Total24100.00%1100.00%


int wl18xx_scan_start(struct wl1271 *wl, struct wl12xx_vif *wlvif, struct cfg80211_scan_request *req) { return wl18xx_scan_send(wl, wlvif, req); }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller30100.00%1100.00%
Total30100.00%1100.00%


int wl18xx_scan_stop(struct wl1271 *wl, struct wl12xx_vif *wlvif) { return __wl18xx_scan_stop(wl, wlvif, SCAN_TYPE_SEARCH); }

Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller25100.00%1100.00%
Total25100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Eliad Peller154192.66%550.00%
Arik Nemtsov563.37%110.00%
David Spinadel281.68%110.00%
Avraham Stern211.26%110.00%
Eyal Shapira130.78%110.00%
Johannes Berg40.24%110.00%
Total1663100.00%10100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.