mirror of
https://github.com/OpenIntelWireless/itlwm.git
synced 2025-05-12 07:42:48 +00:00
123 lines
4.5 KiB
C
123 lines
4.5 KiB
C
/*
|
|
* Copyright (C) 2020 钟先耀
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* 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.
|
|
*/
|
|
/* $OpenBSD: ieee80211_ra.h,v 1.1 2021/03/12 16:26:27 stsp Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 2021 Christian Ehrhardt <ehrhardt@genua.de>
|
|
* Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
|
|
*
|
|
* Permission to use, copy, modify, and 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.
|
|
*/
|
|
|
|
#ifndef _NET80211_IEEE80211_RA_H_
|
|
#define _NET80211_IEEE80211_RA_H_
|
|
|
|
/*
|
|
* Goodput statistics struct. Measures the effective data rate of an MCS.
|
|
* All uint64_t numbers in this struct use fixed-point arithmetic.
|
|
*/
|
|
struct ieee80211_ra_goodput_stats {
|
|
uint64_t measured; /* Most recently measured goodput. */
|
|
uint64_t average; /* Average measured goodput. */
|
|
uint64_t stddeviation; /* Goodput standard deviation. */
|
|
uint64_t loss; /* This rate's loss percentage SFER. */
|
|
uint32_t nprobe_pkts; /* Number of packets in current probe. */
|
|
uint32_t nprobe_fail; /* Number of failed packets. */
|
|
};
|
|
|
|
#define IEEE80211_RATESET_MAX_NRATES 11
|
|
#define IEEE80211_RATESET_MAX_RATE_SET max(IEEE80211_HT_NUM_RATESETS, IEEE80211_VHT_NUM_RATESETS)
|
|
|
|
struct ieee80211_ra_rate {
|
|
int min_mcs;
|
|
int max_mcs;
|
|
int band_width;
|
|
int sgi;
|
|
int nss;
|
|
int rs_index;
|
|
uint32_t nrates;
|
|
uint32_t rates[IEEE80211_RATESET_MAX_NRATES]; /* 500 kbit/s units */
|
|
};
|
|
|
|
/*
|
|
* Rate adaptation state.
|
|
*
|
|
* Drivers should not modify any fields of this structure directly.
|
|
* Use ieee80211_ra_init() and ieee80211_ra_add_stats() only.
|
|
*/
|
|
struct ieee80211_ra_node {
|
|
/* Bitmaps MCS 0-31. */
|
|
uint32_t valid_probes;
|
|
uint32_t valid_rates;
|
|
uint32_t candidate_rates;
|
|
uint32_t probed_rates;
|
|
|
|
/* Probing state. */
|
|
int probing;
|
|
#define IEEE80211_RA_NOT_PROBING 0x0
|
|
#define IEEE80211_RA_PROBING_DOWN 0x1
|
|
#define IEEE80211_RA_PROBING_UP 0x2
|
|
#define IEEE80211_RA_PROBING_INTER 0x4 /* combined with UP or DOWN */
|
|
|
|
/* The current best MCS found by probing. */
|
|
int best_mcs;
|
|
|
|
/* Goodput statistics for each MCS. */
|
|
struct ieee80211_ra_goodput_stats g[IEEE80211_HT_RATESET_NUM_MCS];
|
|
|
|
int bw;
|
|
int sgi;
|
|
int nss;
|
|
|
|
int rs_index;
|
|
|
|
uint32_t active_rs_count;
|
|
enum ieee80211_phymode rs_phymode;
|
|
struct ieee80211_ra_rate active_rs[IEEE80211_RATESET_MAX_RATE_SET];
|
|
};
|
|
|
|
/* Initialize rate adaptation state. */
|
|
void ieee80211_ra_node_init(struct ieee80211com *, struct ieee80211_ra_node *, struct ieee80211_node *);
|
|
|
|
/*
|
|
* Drivers report information about 802.11n/HT Tx attempts here.
|
|
* mcs: The HT MCS used during this Tx attempt.
|
|
* total: How many Tx attempts (initial attempt + any retries) were made?
|
|
* fail: How many of these Tx attempts failed?
|
|
*/
|
|
void ieee80211_ra_add_stats_ht(struct ieee80211_ra_node *,
|
|
struct ieee80211com *, struct ieee80211_node *,
|
|
int mcs, unsigned int total, unsigned int fail);
|
|
|
|
/* Drivers call this function to update ni->ni_txmcs. */
|
|
void ieee80211_ra_choose(struct ieee80211_ra_node *,
|
|
struct ieee80211com *, struct ieee80211_node *);
|
|
|
|
/* Get the HT rateset for a particular HT MCS with SGI on/off. */
|
|
const struct ieee80211_ra_rate *ieee80211_ra_get_rateset(struct ieee80211_ra_node *, struct ieee80211com *,
|
|
struct ieee80211_node *, int);
|
|
/* Check whether SGI should be used. */
|
|
int ieee80211_ra_use_ht_sgi(struct ieee80211_node *);
|
|
#endif /* _NET80211_IEEE80211_RA_H_ */
|