blob: 9e93011918602b1d8ec5cf4c1bcf209e872650af [file] [log] [blame]
developer27057f82023-07-10 17:23:13 +08001From ece45354ac0191c2474b3f57cdfc26060db9efec Mon Sep 17 00:00:00 2001
developer683be522023-05-11 14:24:50 +08002From: "himanshu.goyal" <himanshu.goyal@mediatek.com>
3Date: Fri, 3 Mar 2023 12:45:42 +0800
developer27057f82023-07-10 17:23:13 +08004Subject: [PATCH 19/32] hostapd: mtk: Mark DFS channel as available for CSA.
developer683be522023-05-11 14:24:50 +08005
6---
7 hostapd/ctrl_iface.c | 10 ++++++++++
8 hostapd/hostapd_cli.c | 2 +-
9 src/ap/ctrl_iface_ap.c | 1 +
10 3 files changed, 12 insertions(+), 1 deletion(-)
11
12diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c
developer27057f82023-07-10 17:23:13 +080013index f89bb58f1..bad9790ca 100644
developer683be522023-05-11 14:24:50 +080014--- a/hostapd/ctrl_iface.c
15+++ b/hostapd/ctrl_iface.c
developer27057f82023-07-10 17:23:13 +080016@@ -2815,6 +2815,16 @@ static int hostapd_ctrl_iface_chan_switch(struct hostapd_iface *iface,
17 settings.freq_params.eht_enabled = iface->conf->ieee80211be;
developer683be522023-05-11 14:24:50 +080018 }
19
20+ if (settings.freq_params.radar_background) {
21+ hostapd_dfs_sta_update_state(iface,
22+ settings.freq_params.freq,
23+ settings.freq_params.ht_enabled,
24+ settings.freq_params.sec_channel_offset,
25+ bandwidth, settings.freq_params.center_freq1,
26+ settings.freq_params.center_freq2,
27+ HOSTAPD_CHAN_DFS_AVAILABLE);
28+ }
29+
30 if (settings.freq_params.center_freq1)
31 dfs_range += hostapd_is_dfs_overlap(
32 iface, bandwidth, settings.freq_params.center_freq1);
33diff --git a/hostapd/hostapd_cli.c b/hostapd/hostapd_cli.c
developer27057f82023-07-10 17:23:13 +080034index d59373062..0a374be8e 100644
developer683be522023-05-11 14:24:50 +080035--- a/hostapd/hostapd_cli.c
36+++ b/hostapd/hostapd_cli.c
37@@ -1715,7 +1715,7 @@ static const struct hostapd_cli_cmd hostapd_cli_commands[] = {
38 "<addr> = send QoS Map Configure frame" },
39 { "chan_switch", hostapd_cli_cmd_chan_switch, NULL,
40 "<cs_count> <freq> [sec_channel_offset=] [center_freq1=]\n"
41- " [center_freq2=] [bandwidth=] [blocktx] [ht|vht]\n"
42+ " [center_freq2=] [bandwidth=] [blocktx] [ht|vht] [skip_cac]\n"
43 " = initiate channel switch announcement" },
44 { "hs20_wnm_notif", hostapd_cli_cmd_hs20_wnm_notif, NULL,
45 "<addr> <url>\n"
46diff --git a/src/ap/ctrl_iface_ap.c b/src/ap/ctrl_iface_ap.c
developer27057f82023-07-10 17:23:13 +080047index cf1cff447..aab8a4665 100644
developer683be522023-05-11 14:24:50 +080048--- a/src/ap/ctrl_iface_ap.c
49+++ b/src/ap/ctrl_iface_ap.c
developer27057f82023-07-10 17:23:13 +080050@@ -1014,6 +1014,7 @@ int hostapd_parse_csa_settings(const char *pos,
developer683be522023-05-11 14:24:50 +080051 settings->freq_params.vht_enabled = !!os_strstr(pos, " vht");
52 settings->freq_params.he_enabled = !!os_strstr(pos, " he");
53 settings->freq_params.eht_enabled = !!os_strstr(pos, " eht");
54+ settings->freq_params.radar_background = !!os_strstr(pos, " skip_cac");
55 settings->block_tx = !!os_strstr(pos, " blocktx");
56 #undef SET_CSA_SETTING
57 #undef SET_CSA_SETTING_EXT
58--
developer27057f82023-07-10 17:23:13 +0800592.39.2
developer683be522023-05-11 14:24:50 +080060