1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520
|
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
/*
* Copyright (C) 2024-2025 Intel Corporation
*/
#include "mld.h"
#include "stats.h"
#include "sta.h"
#include "mlo.h"
#include "hcmd.h"
#include "iface.h"
#include "scan.h"
#include "phy.h"
#include "fw/api/stats.h"
static int iwl_mld_send_fw_stats_cmd(struct iwl_mld *mld, u32 cfg_mask,
u32 cfg_time, u32 type_mask)
{
u32 cmd_id = WIDE_ID(SYSTEM_GROUP, SYSTEM_STATISTICS_CMD);
struct iwl_system_statistics_cmd stats_cmd = {
.cfg_mask = cpu_to_le32(cfg_mask),
.config_time_sec = cpu_to_le32(cfg_time),
.type_id_mask = cpu_to_le32(type_mask),
};
return iwl_mld_send_cmd_pdu(mld, cmd_id, &stats_cmd);
}
int iwl_mld_clear_stats_in_fw(struct iwl_mld *mld)
{
u32 cfg_mask = IWL_STATS_CFG_FLG_ON_DEMAND_NTFY_MSK;
u32 type_mask = IWL_STATS_NTFY_TYPE_ID_OPER |
IWL_STATS_NTFY_TYPE_ID_OPER_PART1;
return iwl_mld_send_fw_stats_cmd(mld, cfg_mask, 0, type_mask);
}
static void
iwl_mld_fill_stats_from_oper_notif(struct iwl_mld *mld,
struct iwl_rx_packet *pkt,
u8 fw_sta_id, struct station_info *sinfo)
{
const struct iwl_system_statistics_notif_oper *notif =
(void *)&pkt->data;
const struct iwl_stats_ntfy_per_sta *per_sta =
¬if->per_sta[fw_sta_id];
struct ieee80211_link_sta *link_sta;
struct iwl_mld_link_sta *mld_link_sta;
/* 0 isn't a valid value, but FW might send 0.
* In that case, set the latest non-zero value we stored
*/
rcu_read_lock();
link_sta = rcu_dereference(mld->fw_id_to_link_sta[fw_sta_id]);
if (IS_ERR_OR_NULL(link_sta))
goto unlock;
mld_link_sta = iwl_mld_link_sta_from_mac80211(link_sta);
if (WARN_ON(!mld_link_sta))
goto unlock;
if (per_sta->average_energy)
mld_link_sta->signal_avg =
-(s8)le32_to_cpu(per_sta->average_energy);
sinfo->signal_avg = mld_link_sta->signal_avg;
sinfo->filled |= BIT_ULL(NL80211_STA_INFO_SIGNAL_AVG);
unlock:
rcu_read_unlock();
}
struct iwl_mld_stats_data {
u8 fw_sta_id;
struct station_info *sinfo;
struct iwl_mld *mld;
};
static bool iwl_mld_wait_stats_handler(struct iwl_notif_wait_data *notif_data,
struct iwl_rx_packet *pkt, void *data)
{
struct iwl_mld_stats_data *stats_data = data;
u16 cmd = WIDE_ID(pkt->hdr.group_id, pkt->hdr.cmd);
switch (cmd) {
case WIDE_ID(STATISTICS_GROUP, STATISTICS_OPER_NOTIF):
iwl_mld_fill_stats_from_oper_notif(stats_data->mld, pkt,
stats_data->fw_sta_id,
stats_data->sinfo);
break;
case WIDE_ID(STATISTICS_GROUP, STATISTICS_OPER_PART1_NOTIF):
break;
case WIDE_ID(SYSTEM_GROUP, SYSTEM_STATISTICS_END_NOTIF):
return true;
}
return false;
}
static int
iwl_mld_fw_stats_to_mac80211(struct iwl_mld *mld, struct iwl_mld_sta *mld_sta,
struct station_info *sinfo)
{
u32 cfg_mask = IWL_STATS_CFG_FLG_ON_DEMAND_NTFY_MSK |
IWL_STATS_CFG_FLG_RESET_MSK;
u32 type_mask = IWL_STATS_NTFY_TYPE_ID_OPER |
IWL_STATS_NTFY_TYPE_ID_OPER_PART1;
static const u16 notifications[] = {
WIDE_ID(STATISTICS_GROUP, STATISTICS_OPER_NOTIF),
WIDE_ID(STATISTICS_GROUP, STATISTICS_OPER_PART1_NOTIF),
WIDE_ID(SYSTEM_GROUP, SYSTEM_STATISTICS_END_NOTIF),
};
struct iwl_mld_stats_data wait_stats_data = {
/* We don't support drv_sta_statistics in EMLSR */
.fw_sta_id = mld_sta->deflink.fw_id,
.sinfo = sinfo,
.mld = mld,
};
struct iwl_notification_wait stats_wait;
int ret;
iwl_init_notification_wait(&mld->notif_wait, &stats_wait,
notifications, ARRAY_SIZE(notifications),
iwl_mld_wait_stats_handler,
&wait_stats_data);
ret = iwl_mld_send_fw_stats_cmd(mld, cfg_mask, 0, type_mask);
if (ret) {
iwl_remove_notification(&mld->notif_wait, &stats_wait);
return ret;
}
/* Wait 500ms for OPERATIONAL, PART1, and END notifications,
* which should be sufficient for the firmware to gather data
* from all LMACs and send notifications to the host.
*/
ret = iwl_wait_notification(&mld->notif_wait, &stats_wait, HZ / 2);
if (ret)
return ret;
/* When periodic statistics are sent, FW will clear its statistics DB.
* If the statistics request here happens shortly afterwards,
* the response will contain data collected over a short time
* interval. The response we got here shouldn't be processed by
* the general statistics processing because it's incomplete.
* So, we delete it from the list so it won't be processed.
*/
iwl_mld_delete_handlers(mld, notifications, ARRAY_SIZE(notifications));
return 0;
}
#define PERIODIC_STATS_SECONDS 5
int iwl_mld_request_periodic_fw_stats(struct iwl_mld *mld, bool enable)
{
u32 cfg_mask = enable ? 0 : IWL_STATS_CFG_FLG_DISABLE_NTFY_MSK;
u32 type_mask = enable ? (IWL_STATS_NTFY_TYPE_ID_OPER |
IWL_STATS_NTFY_TYPE_ID_OPER_PART1) : 0;
u32 cfg_time = enable ? PERIODIC_STATS_SECONDS : 0;
return iwl_mld_send_fw_stats_cmd(mld, cfg_mask, cfg_time, type_mask);
}
static void iwl_mld_sta_stats_fill_txrate(struct iwl_mld_sta *mld_sta,
struct station_info *sinfo)
{
struct rate_info *rinfo = &sinfo->txrate;
u32 rate_n_flags = mld_sta->deflink.last_rate_n_flags;
u32 format = rate_n_flags & RATE_MCS_MOD_TYPE_MSK;
u32 gi_ltf;
sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BITRATE);
switch (rate_n_flags & RATE_MCS_CHAN_WIDTH_MSK) {
case RATE_MCS_CHAN_WIDTH_20:
rinfo->bw = RATE_INFO_BW_20;
break;
case RATE_MCS_CHAN_WIDTH_40:
rinfo->bw = RATE_INFO_BW_40;
break;
case RATE_MCS_CHAN_WIDTH_80:
rinfo->bw = RATE_INFO_BW_80;
break;
case RATE_MCS_CHAN_WIDTH_160:
rinfo->bw = RATE_INFO_BW_160;
break;
case RATE_MCS_CHAN_WIDTH_320:
rinfo->bw = RATE_INFO_BW_320;
break;
}
if (format == RATE_MCS_MOD_TYPE_CCK ||
format == RATE_MCS_MOD_TYPE_LEGACY_OFDM) {
int rate = u32_get_bits(rate_n_flags, RATE_LEGACY_RATE_MSK);
/* add the offset needed to get to the legacy ofdm indices */
if (format == RATE_MCS_MOD_TYPE_LEGACY_OFDM)
rate += IWL_FIRST_OFDM_RATE;
switch (rate) {
case IWL_RATE_1M_INDEX:
rinfo->legacy = 10;
break;
case IWL_RATE_2M_INDEX:
rinfo->legacy = 20;
break;
case IWL_RATE_5M_INDEX:
rinfo->legacy = 55;
break;
case IWL_RATE_11M_INDEX:
rinfo->legacy = 110;
break;
case IWL_RATE_6M_INDEX:
rinfo->legacy = 60;
break;
case IWL_RATE_9M_INDEX:
rinfo->legacy = 90;
break;
case IWL_RATE_12M_INDEX:
rinfo->legacy = 120;
break;
case IWL_RATE_18M_INDEX:
rinfo->legacy = 180;
break;
case IWL_RATE_24M_INDEX:
rinfo->legacy = 240;
break;
case IWL_RATE_36M_INDEX:
rinfo->legacy = 360;
break;
case IWL_RATE_48M_INDEX:
rinfo->legacy = 480;
break;
case IWL_RATE_54M_INDEX:
rinfo->legacy = 540;
}
return;
}
rinfo->nss = u32_get_bits(rate_n_flags, RATE_MCS_NSS_MSK) + 1;
if (format == RATE_MCS_MOD_TYPE_HT)
rinfo->mcs = RATE_HT_MCS_INDEX(rate_n_flags);
else
rinfo->mcs = u32_get_bits(rate_n_flags, RATE_MCS_CODE_MSK);
if (rate_n_flags & RATE_MCS_SGI_MSK)
rinfo->flags |= RATE_INFO_FLAGS_SHORT_GI;
switch (format) {
case RATE_MCS_MOD_TYPE_EHT:
rinfo->flags |= RATE_INFO_FLAGS_EHT_MCS;
break;
case RATE_MCS_MOD_TYPE_HE:
gi_ltf = u32_get_bits(rate_n_flags, RATE_MCS_HE_GI_LTF_MSK);
rinfo->flags |= RATE_INFO_FLAGS_HE_MCS;
if (rate_n_flags & RATE_MCS_HE_106T_MSK) {
rinfo->bw = RATE_INFO_BW_HE_RU;
rinfo->he_ru_alloc = NL80211_RATE_INFO_HE_RU_ALLOC_106;
}
switch (rate_n_flags & RATE_MCS_HE_TYPE_MSK) {
case RATE_MCS_HE_TYPE_SU:
case RATE_MCS_HE_TYPE_EXT_SU:
if (gi_ltf == 0 || gi_ltf == 1)
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_0_8;
else if (gi_ltf == 2)
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_1_6;
else if (gi_ltf == 3)
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_3_2;
else
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_0_8;
break;
case RATE_MCS_HE_TYPE_MU:
if (gi_ltf == 0 || gi_ltf == 1)
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_0_8;
else if (gi_ltf == 2)
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_1_6;
else
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_3_2;
break;
case RATE_MCS_HE_TYPE_TRIG:
if (gi_ltf == 0 || gi_ltf == 1)
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_1_6;
else
rinfo->he_gi = NL80211_RATE_INFO_HE_GI_3_2;
break;
}
if (rate_n_flags & RATE_HE_DUAL_CARRIER_MODE_MSK)
rinfo->he_dcm = 1;
break;
case RATE_MCS_MOD_TYPE_HT:
rinfo->flags |= RATE_INFO_FLAGS_MCS;
break;
case RATE_MCS_MOD_TYPE_VHT:
rinfo->flags |= RATE_INFO_FLAGS_VHT_MCS;
break;
}
}
void iwl_mld_mac80211_sta_statistics(struct ieee80211_hw *hw,
struct ieee80211_vif *vif,
struct ieee80211_sta *sta,
struct station_info *sinfo)
{
struct iwl_mld_sta *mld_sta = iwl_mld_sta_from_mac80211(sta);
/* This API is not EMLSR ready, so we cannot provide complete
* information if EMLSR is active
*/
if (hweight16(vif->active_links) > 1)
return;
if (iwl_mld_fw_stats_to_mac80211(mld_sta->mld, mld_sta, sinfo))
return;
iwl_mld_sta_stats_fill_txrate(mld_sta, sinfo);
/* TODO: NL80211_STA_INFO_BEACON_RX */
/* TODO: NL80211_STA_INFO_BEACON_SIGNAL_AVG */
}
#define IWL_MLD_TRAFFIC_LOAD_MEDIUM_THRESH 10 /* percentage */
#define IWL_MLD_TRAFFIC_LOAD_HIGH_THRESH 50 /* percentage */
#define IWL_MLD_TRAFFIC_LOAD_MIN_WINDOW_USEC (500 * 1000)
static u8 iwl_mld_stats_load_percentage(u32 last_ts_usec, u32 curr_ts_usec,
u32 total_airtime_usec)
{
u32 elapsed_usec = curr_ts_usec - last_ts_usec;
if (elapsed_usec < IWL_MLD_TRAFFIC_LOAD_MIN_WINDOW_USEC)
return 0;
return (100 * total_airtime_usec / elapsed_usec);
}
static void iwl_mld_stats_recalc_traffic_load(struct iwl_mld *mld,
u32 total_airtime_usec,
u32 curr_ts_usec)
{
u32 last_ts_usec = mld->scan.traffic_load.last_stats_ts_usec;
u8 load_prec;
/* Skip the calculation as this is the first notification received */
if (!last_ts_usec)
goto out;
load_prec = iwl_mld_stats_load_percentage(last_ts_usec, curr_ts_usec,
total_airtime_usec);
if (load_prec > IWL_MLD_TRAFFIC_LOAD_HIGH_THRESH)
mld->scan.traffic_load.status = IWL_MLD_TRAFFIC_HIGH;
else if (load_prec > IWL_MLD_TRAFFIC_LOAD_MEDIUM_THRESH)
mld->scan.traffic_load.status = IWL_MLD_TRAFFIC_MEDIUM;
else
mld->scan.traffic_load.status = IWL_MLD_TRAFFIC_LOW;
out:
mld->scan.traffic_load.last_stats_ts_usec = curr_ts_usec;
}
static void iwl_mld_update_link_sig(struct ieee80211_vif *vif, int sig,
struct ieee80211_bss_conf *bss_conf)
{
struct iwl_mld *mld = iwl_mld_vif_from_mac80211(vif)->mld;
int exit_emlsr_thresh;
if (sig == 0) {
IWL_DEBUG_RX(mld, "RSSI is 0 - skip signal based decision\n");
return;
}
/* TODO: task=statistics handle CQM notifications */
if (sig < IWL_MLD_LOW_RSSI_MLO_SCAN_THRESH)
iwl_mld_int_mlo_scan(mld, vif);
if (!iwl_mld_emlsr_active(vif))
return;
/* We are in EMLSR, check if we need to exit */
exit_emlsr_thresh =
iwl_mld_get_emlsr_rssi_thresh(mld, &bss_conf->chanreq.oper,
true);
if (sig < exit_emlsr_thresh)
iwl_mld_exit_emlsr(mld, vif, IWL_MLD_EMLSR_EXIT_LOW_RSSI,
iwl_mld_get_other_link(vif,
bss_conf->link_id));
}
static void
iwl_mld_process_per_link_stats(struct iwl_mld *mld,
const struct iwl_stats_ntfy_per_link *per_link,
u32 curr_ts_usec)
{
u32 total_airtime_usec = 0;
for (u32 fw_id = 0;
fw_id < ARRAY_SIZE(mld->fw_id_to_bss_conf);
fw_id++) {
const struct iwl_stats_ntfy_per_link *link_stats;
struct ieee80211_bss_conf *bss_conf;
int sig;
bss_conf = wiphy_dereference(mld->wiphy,
mld->fw_id_to_bss_conf[fw_id]);
if (!bss_conf || bss_conf->vif->type != NL80211_IFTYPE_STATION)
continue;
link_stats = &per_link[fw_id];
total_airtime_usec += le32_to_cpu(link_stats->air_time);
sig = -le32_to_cpu(link_stats->beacon_filter_average_energy);
iwl_mld_update_link_sig(bss_conf->vif, sig, bss_conf);
/* TODO: parse more fields here (task=statistics)*/
}
iwl_mld_stats_recalc_traffic_load(mld, total_airtime_usec,
curr_ts_usec);
}
static void
iwl_mld_process_per_sta_stats(struct iwl_mld *mld,
const struct iwl_stats_ntfy_per_sta *per_sta)
{
for (int i = 0; i < mld->fw->ucode_capa.num_stations; i++) {
struct ieee80211_link_sta *link_sta =
wiphy_dereference(mld->wiphy,
mld->fw_id_to_link_sta[i]);
struct iwl_mld_link_sta *mld_link_sta;
s8 avg_energy =
-(s8)le32_to_cpu(per_sta[i].average_energy);
if (IS_ERR_OR_NULL(link_sta) || !avg_energy)
continue;
mld_link_sta = iwl_mld_link_sta_from_mac80211(link_sta);
if (WARN_ON(!mld_link_sta))
continue;
mld_link_sta->signal_avg = avg_energy;
}
}
static void iwl_mld_fill_chanctx_stats(struct ieee80211_hw *hw,
struct ieee80211_chanctx_conf *ctx,
void *data)
{
struct iwl_mld_phy *phy = iwl_mld_phy_from_mac80211(ctx);
const struct iwl_stats_ntfy_per_phy *per_phy = data;
u32 new_load, old_load;
if (WARN_ON(phy->fw_id >= IWL_STATS_MAX_PHY_OPERATIONAL))
return;
phy->channel_load_by_us =
le32_to_cpu(per_phy[phy->fw_id].channel_load_by_us);
old_load = phy->avg_channel_load_not_by_us;
new_load = le32_to_cpu(per_phy[phy->fw_id].channel_load_not_by_us);
if (IWL_FW_CHECK(phy->mld,
new_load != IWL_STATS_UNKNOWN_CHANNEL_LOAD &&
new_load > 100,
"Invalid channel load %u\n", new_load))
return;
if (new_load != IWL_STATS_UNKNOWN_CHANNEL_LOAD) {
/* update giving a weight of 0.5 for the old value */
phy->avg_channel_load_not_by_us = (new_load >> 1) +
(old_load >> 1);
}
iwl_mld_emlsr_check_chan_load(hw, phy, old_load);
}
static void
iwl_mld_process_per_phy_stats(struct iwl_mld *mld,
const struct iwl_stats_ntfy_per_phy *per_phy)
{
ieee80211_iter_chan_contexts_mtx(mld->hw,
iwl_mld_fill_chanctx_stats,
(void *)(uintptr_t)per_phy);
}
void iwl_mld_handle_stats_oper_notif(struct iwl_mld *mld,
struct iwl_rx_packet *pkt)
{
const struct iwl_system_statistics_notif_oper *stats =
(void *)&pkt->data;
u32 curr_ts_usec = le32_to_cpu(stats->time_stamp);
BUILD_BUG_ON(ARRAY_SIZE(stats->per_sta) != IWL_STATION_COUNT_MAX);
BUILD_BUG_ON(ARRAY_SIZE(stats->per_link) <
ARRAY_SIZE(mld->fw_id_to_bss_conf));
iwl_mld_process_per_link_stats(mld, stats->per_link, curr_ts_usec);
iwl_mld_process_per_sta_stats(mld, stats->per_sta);
iwl_mld_process_per_phy_stats(mld, stats->per_phy);
iwl_mld_check_omi_bw_reduction(mld);
}
void iwl_mld_handle_stats_oper_part1_notif(struct iwl_mld *mld,
struct iwl_rx_packet *pkt)
{
/* TODO */
}
|