2011-12-14 20:16:34 -08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008-2011 Atheros Communications Inc.
|
|
|
|
* Copyright (c) 2011 Neratec Solutions AG
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/debugfs.h>
|
|
|
|
#include <linux/export.h>
|
|
|
|
|
|
|
|
#include "ath9k.h"
|
|
|
|
#include "dfs_debug.h"
|
2013-10-14 11:06:06 +02:00
|
|
|
#include "../dfs_pattern_detector.h"
|
2011-12-14 20:16:34 -08:00
|
|
|
|
2013-10-14 11:06:04 +02:00
|
|
|
static struct ath_dfs_pool_stats dfs_pool_stats = { 0 };
|
2012-04-20 17:20:34 +02:00
|
|
|
|
2011-12-14 20:16:34 -08:00
|
|
|
#define ATH9K_DFS_STAT(s, p) \
|
2013-09-05 14:11:57 +02:00
|
|
|
len += scnprintf(buf + len, size - len, "%28s : %10u\n", s, \
|
2020-12-07 16:16:24 +02:00
|
|
|
sc->debug.stats.dfs_stats.p)
|
2012-04-20 17:20:34 +02:00
|
|
|
#define ATH9K_DFS_POOL_STAT(s, p) \
|
2013-09-05 14:11:57 +02:00
|
|
|
len += scnprintf(buf + len, size - len, "%28s : %10u\n", s, \
|
2013-10-14 11:06:04 +02:00
|
|
|
dfs_pool_stats.p);
|
2011-12-14 20:16:34 -08:00
|
|
|
|
|
|
|
static ssize_t read_file_dfs(struct file *file, char __user *user_buf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct ath_softc *sc = file->private_data;
|
|
|
|
struct ath9k_hw_version *hw_ver = &sc->sc_ah->hw_version;
|
|
|
|
char *buf;
|
|
|
|
unsigned int len = 0, size = 8000;
|
|
|
|
ssize_t retval = 0;
|
|
|
|
|
|
|
|
buf = kzalloc(size, GFP_KERNEL);
|
|
|
|
if (buf == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2013-09-05 14:11:57 +02:00
|
|
|
len += scnprintf(buf + len, size - len, "DFS support for "
|
|
|
|
"macVersion = 0x%x, macRev = 0x%x: %s\n",
|
|
|
|
hw_ver->macVersion, hw_ver->macRev,
|
|
|
|
(sc->sc_ah->caps.hw_caps & ATH9K_HW_CAP_DFS) ?
|
2011-12-14 20:16:34 -08:00
|
|
|
"enabled" : "disabled");
|
2013-11-01 21:05:28 +01:00
|
|
|
|
|
|
|
if (!sc->dfs_detector) {
|
|
|
|
len += scnprintf(buf + len, size - len,
|
|
|
|
"DFS detector not enabled\n");
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
dfs_pool_stats = sc->dfs_detector->get_stats(sc->dfs_detector);
|
|
|
|
|
2013-09-05 14:11:57 +02:00
|
|
|
len += scnprintf(buf + len, size - len, "Pulse detector statistics:\n");
|
2012-04-20 17:20:34 +02:00
|
|
|
ATH9K_DFS_STAT("pulse events reported ", pulses_total);
|
|
|
|
ATH9K_DFS_STAT("invalid pulse events ", pulses_no_dfs);
|
2011-12-14 20:16:34 -08:00
|
|
|
ATH9K_DFS_STAT("DFS pulses detected ", pulses_detected);
|
|
|
|
ATH9K_DFS_STAT("Datalen discards ", datalen_discards);
|
|
|
|
ATH9K_DFS_STAT("RSSI discards ", rssi_discards);
|
|
|
|
ATH9K_DFS_STAT("BW info discards ", bwinfo_discards);
|
|
|
|
ATH9K_DFS_STAT("Primary channel pulses ", pri_phy_errors);
|
|
|
|
ATH9K_DFS_STAT("Secondary channel pulses", ext_phy_errors);
|
|
|
|
ATH9K_DFS_STAT("Dual channel pulses ", dc_phy_errors);
|
2013-09-05 14:11:57 +02:00
|
|
|
len += scnprintf(buf + len, size - len, "Radar detector statistics "
|
|
|
|
"(current DFS region: %d)\n",
|
|
|
|
sc->dfs_detector->region);
|
2012-04-20 17:20:34 +02:00
|
|
|
ATH9K_DFS_STAT("Pulse events processed ", pulses_processed);
|
|
|
|
ATH9K_DFS_STAT("Radars detected ", radar_detected);
|
2013-09-05 14:11:57 +02:00
|
|
|
len += scnprintf(buf + len, size - len, "Global Pool statistics:\n");
|
2012-04-20 17:20:34 +02:00
|
|
|
ATH9K_DFS_POOL_STAT("Pool references ", pool_reference);
|
|
|
|
ATH9K_DFS_POOL_STAT("Pulses allocated ", pulse_allocated);
|
|
|
|
ATH9K_DFS_POOL_STAT("Pulses alloc error ", pulse_alloc_error);
|
|
|
|
ATH9K_DFS_POOL_STAT("Pulses in use ", pulse_used);
|
|
|
|
ATH9K_DFS_POOL_STAT("Seqs. allocated ", pseq_allocated);
|
|
|
|
ATH9K_DFS_POOL_STAT("Seqs. alloc error ", pseq_alloc_error);
|
|
|
|
ATH9K_DFS_POOL_STAT("Seqs. in use ", pseq_used);
|
2011-12-14 20:16:34 -08:00
|
|
|
|
2013-11-01 21:05:28 +01:00
|
|
|
exit:
|
2011-12-14 20:16:34 -08:00
|
|
|
if (len > size)
|
|
|
|
len = size;
|
|
|
|
|
|
|
|
retval = simple_read_from_buffer(user_buf, count, ppos, buf, len);
|
|
|
|
kfree(buf);
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2012-04-20 17:20:34 +02:00
|
|
|
/* magic number to prevent accidental reset of DFS statistics */
|
|
|
|
#define DFS_STATS_RESET_MAGIC 0x80000000
|
|
|
|
static ssize_t write_file_dfs(struct file *file, const char __user *user_buf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct ath_softc *sc = file->private_data;
|
|
|
|
unsigned long val;
|
2023-07-26 21:50:08 +03:00
|
|
|
ssize_t ret;
|
2012-04-20 17:20:34 +02:00
|
|
|
|
2023-07-26 21:50:08 +03:00
|
|
|
ret = kstrtoul_from_user(user_buf, count, 0, &val);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
2012-04-20 17:20:34 +02:00
|
|
|
if (val == DFS_STATS_RESET_MAGIC)
|
|
|
|
memset(&sc->debug.stats.dfs_stats, 0,
|
|
|
|
sizeof(sc->debug.stats.dfs_stats));
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2013-04-03 18:31:30 +02:00
|
|
|
static ssize_t write_file_simulate_radar(struct file *file,
|
|
|
|
const char __user *user_buf,
|
|
|
|
size_t count, loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct ath_softc *sc = file->private_data;
|
|
|
|
|
wifi: mac80211: handle ieee80211_radar_detected() for MLO
Currently DFS works under assumption there could be only one channel
context in the hardware. Hence, drivers just calls the function
ieee80211_radar_detected() passing the hardware structure. However, with
MLO, this obviously will not work since number of channel contexts will be
more than one and hence drivers would need to pass the channel information
as well on which the radar is detected.
Also, when radar is detected in one of the links, other link's CAC should
not be cancelled.
Hence, in order to support DFS with MLO, do the following changes -
* Add channel context conf pointer as an argument to the function
ieee80211_radar_detected(). During MLO, drivers would have to pass on
which channel context conf radar is detected. Otherwise, drivers could
just pass NULL.
* ieee80211_radar_detected() will iterate over all channel contexts
present and
* if channel context conf is passed, only mark that as radar
detected
* if NULL is passed, then mark all channel contexts as radar
detected
* Then as usual, schedule the radar detected work.
* In the worker, go over all the contexts again and for all such context
which is marked with radar detected, cancel the ongoing CAC by calling
ieee80211_dfs_cac_cancel() and then notify cfg80211 via
cfg80211_radar_event().
* To cancel the CAC, pass the channel context as well where radar is
detected to ieee80211_dfs_cac_cancel(). This ensures that CAC is
canceled only on the links using the provided context, leaving other
links unaffected.
This would also help in scenarios where there is split phy 5 GHz radio,
which is capable of DFS channels in both lower and upper band. In this
case, simultaneous radars can be detected.
Signed-off-by: Aditya Kumar Singh <quic_adisi@quicinc.com>
Link: https://patch.msgid.link/20240906064426.2101315-9-quic_adisi@quicinc.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
2024-09-06 12:14:26 +05:30
|
|
|
ieee80211_radar_detected(sc->hw, NULL);
|
2013-04-03 18:31:30 +02:00
|
|
|
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations fops_simulate_radar = {
|
|
|
|
.write = write_file_simulate_radar,
|
|
|
|
.open = simple_open,
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.llseek = default_llseek,
|
|
|
|
};
|
|
|
|
|
2011-12-14 20:16:34 -08:00
|
|
|
static const struct file_operations fops_dfs_stats = {
|
|
|
|
.read = read_file_dfs,
|
2012-04-20 17:20:34 +02:00
|
|
|
.write = write_file_dfs,
|
2012-04-05 14:25:11 -07:00
|
|
|
.open = simple_open,
|
2011-12-14 20:16:34 -08:00
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.llseek = default_llseek,
|
|
|
|
};
|
|
|
|
|
|
|
|
void ath9k_dfs_init_debug(struct ath_softc *sc)
|
|
|
|
{
|
2018-03-23 15:54:37 -07:00
|
|
|
debugfs_create_file("dfs_stats", 0400,
|
2011-12-14 20:16:34 -08:00
|
|
|
sc->debug.debugfs_phy, sc, &fops_dfs_stats);
|
2018-03-23 15:54:37 -07:00
|
|
|
debugfs_create_file("dfs_simulate_radar", 0200,
|
2013-04-03 18:31:30 +02:00
|
|
|
sc->debug.debugfs_phy, sc, &fops_simulate_radar);
|
2011-12-14 20:16:34 -08:00
|
|
|
}
|