4694 lines
109 KiB
C
4694 lines
109 KiB
C
|
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
|
||
|
/* Copyright(c) 2019-2020 Realtek Corporation
|
||
|
*/
|
||
|
|
||
|
#ifndef __RTW89_CORE_H__
|
||
|
#define __RTW89_CORE_H__
|
||
|
|
||
|
#include <linux/average.h>
|
||
|
#include <linux/bitfield.h>
|
||
|
#include <linux/firmware.h>
|
||
|
#include <linux/iopoll.h>
|
||
|
#include <linux/workqueue.h>
|
||
|
#include <net/mac80211.h>
|
||
|
|
||
|
struct rtw89_dev;
|
||
|
struct rtw89_pci_info;
|
||
|
|
||
|
extern const struct ieee80211_ops rtw89_ops;
|
||
|
|
||
|
#define MASKBYTE0 0xff
|
||
|
#define MASKBYTE1 0xff00
|
||
|
#define MASKBYTE2 0xff0000
|
||
|
#define MASKBYTE3 0xff000000
|
||
|
#define MASKBYTE4 0xff00000000ULL
|
||
|
#define MASKHWORD 0xffff0000
|
||
|
#define MASKLWORD 0x0000ffff
|
||
|
#define MASKDWORD 0xffffffff
|
||
|
#define RFREG_MASK 0xfffff
|
||
|
#define INV_RF_DATA 0xffffffff
|
||
|
|
||
|
#define RTW89_TRACK_WORK_PERIOD round_jiffies_relative(HZ * 2)
|
||
|
#define RTW89_FORBID_BA_TIMER round_jiffies_relative(HZ * 4)
|
||
|
#define CFO_TRACK_MAX_USER 64
|
||
|
#define MAX_RSSI 110
|
||
|
#define RSSI_FACTOR 1
|
||
|
#define RTW89_RSSI_RAW_TO_DBM(rssi) ((s8)((rssi) >> RSSI_FACTOR) - MAX_RSSI)
|
||
|
#define RTW89_TX_DIV_RSSI_RAW_TH (2 << RSSI_FACTOR)
|
||
|
#define RTW89_RADIOTAP_ROOM ALIGN(sizeof(struct ieee80211_radiotap_he), 64)
|
||
|
|
||
|
#define RTW89_HTC_MASK_VARIANT GENMASK(1, 0)
|
||
|
#define RTW89_HTC_VARIANT_HE 3
|
||
|
#define RTW89_HTC_MASK_CTL_ID GENMASK(5, 2)
|
||
|
#define RTW89_HTC_VARIANT_HE_CID_OM 1
|
||
|
#define RTW89_HTC_VARIANT_HE_CID_CAS 6
|
||
|
#define RTW89_HTC_MASK_CTL_INFO GENMASK(31, 6)
|
||
|
|
||
|
#define RTW89_HTC_MASK_HTC_OM_RX_NSS GENMASK(8, 6)
|
||
|
enum htc_om_channel_width {
|
||
|
HTC_OM_CHANNEL_WIDTH_20 = 0,
|
||
|
HTC_OM_CHANNEL_WIDTH_40 = 1,
|
||
|
HTC_OM_CHANNEL_WIDTH_80 = 2,
|
||
|
HTC_OM_CHANNEL_WIDTH_160_OR_80_80 = 3,
|
||
|
};
|
||
|
#define RTW89_HTC_MASK_HTC_OM_CH_WIDTH GENMASK(10, 9)
|
||
|
#define RTW89_HTC_MASK_HTC_OM_UL_MU_DIS BIT(11)
|
||
|
#define RTW89_HTC_MASK_HTC_OM_TX_NSTS GENMASK(14, 12)
|
||
|
#define RTW89_HTC_MASK_HTC_OM_ER_SU_DIS BIT(15)
|
||
|
#define RTW89_HTC_MASK_HTC_OM_DL_MU_MIMO_RR BIT(16)
|
||
|
#define RTW89_HTC_MASK_HTC_OM_UL_MU_DATA_DIS BIT(17)
|
||
|
|
||
|
#define RTW89_TF_PAD GENMASK(11, 0)
|
||
|
#define RTW89_TF_BASIC_USER_INFO_SZ 6
|
||
|
|
||
|
#define RTW89_GET_TF_USER_INFO_AID12(data) \
|
||
|
le32_get_bits(*((const __le32 *)(data)), GENMASK(11, 0))
|
||
|
#define RTW89_GET_TF_USER_INFO_RUA(data) \
|
||
|
le32_get_bits(*((const __le32 *)(data)), GENMASK(19, 12))
|
||
|
#define RTW89_GET_TF_USER_INFO_UL_MCS(data) \
|
||
|
le32_get_bits(*((const __le32 *)(data)), GENMASK(24, 21))
|
||
|
|
||
|
enum rtw89_subband {
|
||
|
RTW89_CH_2G = 0,
|
||
|
RTW89_CH_5G_BAND_1 = 1,
|
||
|
/* RTW89_CH_5G_BAND_2 = 2, unused */
|
||
|
RTW89_CH_5G_BAND_3 = 3,
|
||
|
RTW89_CH_5G_BAND_4 = 4,
|
||
|
|
||
|
RTW89_CH_6G_BAND_IDX0, /* Low */
|
||
|
RTW89_CH_6G_BAND_IDX1, /* Low */
|
||
|
RTW89_CH_6G_BAND_IDX2, /* Mid */
|
||
|
RTW89_CH_6G_BAND_IDX3, /* Mid */
|
||
|
RTW89_CH_6G_BAND_IDX4, /* High */
|
||
|
RTW89_CH_6G_BAND_IDX5, /* High */
|
||
|
RTW89_CH_6G_BAND_IDX6, /* Ultra-high */
|
||
|
RTW89_CH_6G_BAND_IDX7, /* Ultra-high */
|
||
|
|
||
|
RTW89_SUBBAND_NR,
|
||
|
RTW89_SUBBAND_2GHZ_5GHZ_NR = RTW89_CH_5G_BAND_4 + 1,
|
||
|
};
|
||
|
|
||
|
enum rtw89_gain_offset {
|
||
|
RTW89_GAIN_OFFSET_2G_CCK,
|
||
|
RTW89_GAIN_OFFSET_2G_OFDM,
|
||
|
RTW89_GAIN_OFFSET_5G_LOW,
|
||
|
RTW89_GAIN_OFFSET_5G_MID,
|
||
|
RTW89_GAIN_OFFSET_5G_HIGH,
|
||
|
|
||
|
RTW89_GAIN_OFFSET_NR,
|
||
|
};
|
||
|
|
||
|
enum rtw89_hci_type {
|
||
|
RTW89_HCI_TYPE_PCIE,
|
||
|
RTW89_HCI_TYPE_USB,
|
||
|
RTW89_HCI_TYPE_SDIO,
|
||
|
};
|
||
|
|
||
|
enum rtw89_core_chip_id {
|
||
|
RTL8852A,
|
||
|
RTL8852B,
|
||
|
RTL8852C,
|
||
|
};
|
||
|
|
||
|
enum rtw89_cv {
|
||
|
CHIP_CAV,
|
||
|
CHIP_CBV,
|
||
|
CHIP_CCV,
|
||
|
CHIP_CDV,
|
||
|
CHIP_CEV,
|
||
|
CHIP_CFV,
|
||
|
CHIP_CV_MAX,
|
||
|
CHIP_CV_INVALID = CHIP_CV_MAX,
|
||
|
};
|
||
|
|
||
|
enum rtw89_core_tx_type {
|
||
|
RTW89_CORE_TX_TYPE_DATA,
|
||
|
RTW89_CORE_TX_TYPE_MGMT,
|
||
|
RTW89_CORE_TX_TYPE_FWCMD,
|
||
|
};
|
||
|
|
||
|
enum rtw89_core_rx_type {
|
||
|
RTW89_CORE_RX_TYPE_WIFI = 0,
|
||
|
RTW89_CORE_RX_TYPE_PPDU_STAT = 1,
|
||
|
RTW89_CORE_RX_TYPE_CHAN_INFO = 2,
|
||
|
RTW89_CORE_RX_TYPE_BB_SCOPE = 3,
|
||
|
RTW89_CORE_RX_TYPE_F2P_TXCMD = 4,
|
||
|
RTW89_CORE_RX_TYPE_SS2FW = 5,
|
||
|
RTW89_CORE_RX_TYPE_TX_REPORT = 6,
|
||
|
RTW89_CORE_RX_TYPE_TX_REL_HOST = 7,
|
||
|
RTW89_CORE_RX_TYPE_DFS_REPORT = 8,
|
||
|
RTW89_CORE_RX_TYPE_TX_REL_CPU = 9,
|
||
|
RTW89_CORE_RX_TYPE_C2H = 10,
|
||
|
RTW89_CORE_RX_TYPE_CSI = 11,
|
||
|
RTW89_CORE_RX_TYPE_CQI = 12,
|
||
|
RTW89_CORE_RX_TYPE_H2C = 13,
|
||
|
RTW89_CORE_RX_TYPE_FWDL = 14,
|
||
|
};
|
||
|
|
||
|
enum rtw89_txq_flags {
|
||
|
RTW89_TXQ_F_AMPDU = 0,
|
||
|
RTW89_TXQ_F_BLOCK_BA = 1,
|
||
|
RTW89_TXQ_F_FORBID_BA = 2,
|
||
|
};
|
||
|
|
||
|
enum rtw89_net_type {
|
||
|
RTW89_NET_TYPE_NO_LINK = 0,
|
||
|
RTW89_NET_TYPE_AD_HOC = 1,
|
||
|
RTW89_NET_TYPE_INFRA = 2,
|
||
|
RTW89_NET_TYPE_AP_MODE = 3,
|
||
|
};
|
||
|
|
||
|
enum rtw89_wifi_role {
|
||
|
RTW89_WIFI_ROLE_NONE,
|
||
|
RTW89_WIFI_ROLE_STATION,
|
||
|
RTW89_WIFI_ROLE_AP,
|
||
|
RTW89_WIFI_ROLE_AP_VLAN,
|
||
|
RTW89_WIFI_ROLE_ADHOC,
|
||
|
RTW89_WIFI_ROLE_ADHOC_MASTER,
|
||
|
RTW89_WIFI_ROLE_MESH_POINT,
|
||
|
RTW89_WIFI_ROLE_MONITOR,
|
||
|
RTW89_WIFI_ROLE_P2P_DEVICE,
|
||
|
RTW89_WIFI_ROLE_P2P_CLIENT,
|
||
|
RTW89_WIFI_ROLE_P2P_GO,
|
||
|
RTW89_WIFI_ROLE_NAN,
|
||
|
RTW89_WIFI_ROLE_MLME_MAX
|
||
|
};
|
||
|
|
||
|
enum rtw89_upd_mode {
|
||
|
RTW89_ROLE_CREATE,
|
||
|
RTW89_ROLE_REMOVE,
|
||
|
RTW89_ROLE_TYPE_CHANGE,
|
||
|
RTW89_ROLE_INFO_CHANGE,
|
||
|
RTW89_ROLE_CON_DISCONN,
|
||
|
RTW89_ROLE_BAND_SW,
|
||
|
RTW89_ROLE_FW_RESTORE,
|
||
|
};
|
||
|
|
||
|
enum rtw89_self_role {
|
||
|
RTW89_SELF_ROLE_CLIENT,
|
||
|
RTW89_SELF_ROLE_AP,
|
||
|
RTW89_SELF_ROLE_AP_CLIENT
|
||
|
};
|
||
|
|
||
|
enum rtw89_msk_sO_el {
|
||
|
RTW89_NO_MSK,
|
||
|
RTW89_SMA,
|
||
|
RTW89_TMA,
|
||
|
RTW89_BSSID
|
||
|
};
|
||
|
|
||
|
enum rtw89_sch_tx_sel {
|
||
|
RTW89_SCH_TX_SEL_ALL,
|
||
|
RTW89_SCH_TX_SEL_HIQ,
|
||
|
RTW89_SCH_TX_SEL_MG0,
|
||
|
RTW89_SCH_TX_SEL_MACID,
|
||
|
};
|
||
|
|
||
|
/* RTW89_ADDR_CAM_SEC_NONE : not enabled
|
||
|
* RTW89_ADDR_CAM_SEC_ALL_UNI : 0 - 6 unicast
|
||
|
* RTW89_ADDR_CAM_SEC_NORMAL : 0 - 1 unicast, 2 - 4 group, 5 - 6 BIP
|
||
|
* RTW89_ADDR_CAM_SEC_4GROUP : 0 - 1 unicast, 2 - 5 group, 6 BIP
|
||
|
*/
|
||
|
enum rtw89_add_cam_sec_mode {
|
||
|
RTW89_ADDR_CAM_SEC_NONE = 0,
|
||
|
RTW89_ADDR_CAM_SEC_ALL_UNI = 1,
|
||
|
RTW89_ADDR_CAM_SEC_NORMAL = 2,
|
||
|
RTW89_ADDR_CAM_SEC_4GROUP = 3,
|
||
|
};
|
||
|
|
||
|
enum rtw89_sec_key_type {
|
||
|
RTW89_SEC_KEY_TYPE_NONE = 0,
|
||
|
RTW89_SEC_KEY_TYPE_WEP40 = 1,
|
||
|
RTW89_SEC_KEY_TYPE_WEP104 = 2,
|
||
|
RTW89_SEC_KEY_TYPE_TKIP = 3,
|
||
|
RTW89_SEC_KEY_TYPE_WAPI = 4,
|
||
|
RTW89_SEC_KEY_TYPE_GCMSMS4 = 5,
|
||
|
RTW89_SEC_KEY_TYPE_CCMP128 = 6,
|
||
|
RTW89_SEC_KEY_TYPE_CCMP256 = 7,
|
||
|
RTW89_SEC_KEY_TYPE_GCMP128 = 8,
|
||
|
RTW89_SEC_KEY_TYPE_GCMP256 = 9,
|
||
|
RTW89_SEC_KEY_TYPE_BIP_CCMP128 = 10,
|
||
|
};
|
||
|
|
||
|
enum rtw89_port {
|
||
|
RTW89_PORT_0 = 0,
|
||
|
RTW89_PORT_1 = 1,
|
||
|
RTW89_PORT_2 = 2,
|
||
|
RTW89_PORT_3 = 3,
|
||
|
RTW89_PORT_4 = 4,
|
||
|
RTW89_PORT_NUM
|
||
|
};
|
||
|
|
||
|
enum rtw89_band {
|
||
|
RTW89_BAND_2G = 0,
|
||
|
RTW89_BAND_5G = 1,
|
||
|
RTW89_BAND_6G = 2,
|
||
|
RTW89_BAND_MAX,
|
||
|
};
|
||
|
|
||
|
enum rtw89_hw_rate {
|
||
|
RTW89_HW_RATE_CCK1 = 0x0,
|
||
|
RTW89_HW_RATE_CCK2 = 0x1,
|
||
|
RTW89_HW_RATE_CCK5_5 = 0x2,
|
||
|
RTW89_HW_RATE_CCK11 = 0x3,
|
||
|
RTW89_HW_RATE_OFDM6 = 0x4,
|
||
|
RTW89_HW_RATE_OFDM9 = 0x5,
|
||
|
RTW89_HW_RATE_OFDM12 = 0x6,
|
||
|
RTW89_HW_RATE_OFDM18 = 0x7,
|
||
|
RTW89_HW_RATE_OFDM24 = 0x8,
|
||
|
RTW89_HW_RATE_OFDM36 = 0x9,
|
||
|
RTW89_HW_RATE_OFDM48 = 0xA,
|
||
|
RTW89_HW_RATE_OFDM54 = 0xB,
|
||
|
RTW89_HW_RATE_MCS0 = 0x80,
|
||
|
RTW89_HW_RATE_MCS1 = 0x81,
|
||
|
RTW89_HW_RATE_MCS2 = 0x82,
|
||
|
RTW89_HW_RATE_MCS3 = 0x83,
|
||
|
RTW89_HW_RATE_MCS4 = 0x84,
|
||
|
RTW89_HW_RATE_MCS5 = 0x85,
|
||
|
RTW89_HW_RATE_MCS6 = 0x86,
|
||
|
RTW89_HW_RATE_MCS7 = 0x87,
|
||
|
RTW89_HW_RATE_MCS8 = 0x88,
|
||
|
RTW89_HW_RATE_MCS9 = 0x89,
|
||
|
RTW89_HW_RATE_MCS10 = 0x8A,
|
||
|
RTW89_HW_RATE_MCS11 = 0x8B,
|
||
|
RTW89_HW_RATE_MCS12 = 0x8C,
|
||
|
RTW89_HW_RATE_MCS13 = 0x8D,
|
||
|
RTW89_HW_RATE_MCS14 = 0x8E,
|
||
|
RTW89_HW_RATE_MCS15 = 0x8F,
|
||
|
RTW89_HW_RATE_MCS16 = 0x90,
|
||
|
RTW89_HW_RATE_MCS17 = 0x91,
|
||
|
RTW89_HW_RATE_MCS18 = 0x92,
|
||
|
RTW89_HW_RATE_MCS19 = 0x93,
|
||
|
RTW89_HW_RATE_MCS20 = 0x94,
|
||
|
RTW89_HW_RATE_MCS21 = 0x95,
|
||
|
RTW89_HW_RATE_MCS22 = 0x96,
|
||
|
RTW89_HW_RATE_MCS23 = 0x97,
|
||
|
RTW89_HW_RATE_MCS24 = 0x98,
|
||
|
RTW89_HW_RATE_MCS25 = 0x99,
|
||
|
RTW89_HW_RATE_MCS26 = 0x9A,
|
||
|
RTW89_HW_RATE_MCS27 = 0x9B,
|
||
|
RTW89_HW_RATE_MCS28 = 0x9C,
|
||
|
RTW89_HW_RATE_MCS29 = 0x9D,
|
||
|
RTW89_HW_RATE_MCS30 = 0x9E,
|
||
|
RTW89_HW_RATE_MCS31 = 0x9F,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS0 = 0x100,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS1 = 0x101,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS2 = 0x102,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS3 = 0x103,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS4 = 0x104,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS5 = 0x105,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS6 = 0x106,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS7 = 0x107,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS8 = 0x108,
|
||
|
RTW89_HW_RATE_VHT_NSS1_MCS9 = 0x109,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS0 = 0x110,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS1 = 0x111,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS2 = 0x112,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS3 = 0x113,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS4 = 0x114,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS5 = 0x115,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS6 = 0x116,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS7 = 0x117,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS8 = 0x118,
|
||
|
RTW89_HW_RATE_VHT_NSS2_MCS9 = 0x119,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS0 = 0x120,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS1 = 0x121,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS2 = 0x122,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS3 = 0x123,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS4 = 0x124,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS5 = 0x125,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS6 = 0x126,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS7 = 0x127,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS8 = 0x128,
|
||
|
RTW89_HW_RATE_VHT_NSS3_MCS9 = 0x129,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS0 = 0x130,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS1 = 0x131,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS2 = 0x132,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS3 = 0x133,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS4 = 0x134,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS5 = 0x135,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS6 = 0x136,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS7 = 0x137,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS8 = 0x138,
|
||
|
RTW89_HW_RATE_VHT_NSS4_MCS9 = 0x139,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS0 = 0x180,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS1 = 0x181,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS2 = 0x182,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS3 = 0x183,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS4 = 0x184,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS5 = 0x185,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS6 = 0x186,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS7 = 0x187,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS8 = 0x188,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS9 = 0x189,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS10 = 0x18A,
|
||
|
RTW89_HW_RATE_HE_NSS1_MCS11 = 0x18B,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS0 = 0x190,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS1 = 0x191,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS2 = 0x192,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS3 = 0x193,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS4 = 0x194,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS5 = 0x195,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS6 = 0x196,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS7 = 0x197,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS8 = 0x198,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS9 = 0x199,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS10 = 0x19A,
|
||
|
RTW89_HW_RATE_HE_NSS2_MCS11 = 0x19B,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS0 = 0x1A0,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS1 = 0x1A1,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS2 = 0x1A2,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS3 = 0x1A3,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS4 = 0x1A4,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS5 = 0x1A5,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS6 = 0x1A6,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS7 = 0x1A7,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS8 = 0x1A8,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS9 = 0x1A9,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS10 = 0x1AA,
|
||
|
RTW89_HW_RATE_HE_NSS3_MCS11 = 0x1AB,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS0 = 0x1B0,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS1 = 0x1B1,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS2 = 0x1B2,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS3 = 0x1B3,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS4 = 0x1B4,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS5 = 0x1B5,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS6 = 0x1B6,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS7 = 0x1B7,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS8 = 0x1B8,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS9 = 0x1B9,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS10 = 0x1BA,
|
||
|
RTW89_HW_RATE_HE_NSS4_MCS11 = 0x1BB,
|
||
|
RTW89_HW_RATE_NR,
|
||
|
|
||
|
RTW89_HW_RATE_MASK_MOD = GENMASK(8, 7),
|
||
|
RTW89_HW_RATE_MASK_VAL = GENMASK(6, 0),
|
||
|
};
|
||
|
|
||
|
/* 2G channels,
|
||
|
* 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
|
||
|
*/
|
||
|
#define RTW89_2G_CH_NUM 14
|
||
|
|
||
|
/* 5G channels,
|
||
|
* 36, 38, 40, 42, 44, 46, 48, 50,
|
||
|
* 52, 54, 56, 58, 60, 62, 64,
|
||
|
* 100, 102, 104, 106, 108, 110, 112, 114,
|
||
|
* 116, 118, 120, 122, 124, 126, 128, 130,
|
||
|
* 132, 134, 136, 138, 140, 142, 144,
|
||
|
* 149, 151, 153, 155, 157, 159, 161, 163,
|
||
|
* 165, 167, 169, 171, 173, 175, 177
|
||
|
*/
|
||
|
#define RTW89_5G_CH_NUM 53
|
||
|
|
||
|
/* 6G channels,
|
||
|
* 1, 3, 5, 7, 9, 11, 13, 15,
|
||
|
* 17, 19, 21, 23, 25, 27, 29, 33,
|
||
|
* 35, 37, 39, 41, 43, 45, 47, 49,
|
||
|
* 51, 53, 55, 57, 59, 61, 65, 67,
|
||
|
* 69, 71, 73, 75, 77, 79, 81, 83,
|
||
|
* 85, 87, 89, 91, 93, 97, 99, 101,
|
||
|
* 103, 105, 107, 109, 111, 113, 115, 117,
|
||
|
* 119, 121, 123, 125, 129, 131, 133, 135,
|
||
|
* 137, 139, 141, 143, 145, 147, 149, 151,
|
||
|
* 153, 155, 157, 161, 163, 165, 167, 169,
|
||
|
* 171, 173, 175, 177, 179, 181, 183, 185,
|
||
|
* 187, 189, 193, 195, 197, 199, 201, 203,
|
||
|
* 205, 207, 209, 211, 213, 215, 217, 219,
|
||
|
* 221, 225, 227, 229, 231, 233, 235, 237,
|
||
|
* 239, 241, 243, 245, 247, 249, 251, 253,
|
||
|
*/
|
||
|
#define RTW89_6G_CH_NUM 120
|
||
|
|
||
|
enum rtw89_rate_section {
|
||
|
RTW89_RS_CCK,
|
||
|
RTW89_RS_OFDM,
|
||
|
RTW89_RS_MCS, /* for HT/VHT/HE */
|
||
|
RTW89_RS_HEDCM,
|
||
|
RTW89_RS_OFFSET,
|
||
|
RTW89_RS_MAX,
|
||
|
RTW89_RS_LMT_NUM = RTW89_RS_MCS + 1,
|
||
|
RTW89_RS_TX_SHAPE_NUM = RTW89_RS_OFDM + 1,
|
||
|
};
|
||
|
|
||
|
enum rtw89_rate_max {
|
||
|
RTW89_RATE_CCK_MAX = 4,
|
||
|
RTW89_RATE_OFDM_MAX = 8,
|
||
|
RTW89_RATE_MCS_MAX = 12,
|
||
|
RTW89_RATE_HEDCM_MAX = 4, /* for HEDCM MCS0/1/3/4 */
|
||
|
RTW89_RATE_OFFSET_MAX = 5, /* for HE(HEDCM)/VHT/HT/OFDM/CCK offset */
|
||
|
};
|
||
|
|
||
|
enum rtw89_nss {
|
||
|
RTW89_NSS_1 = 0,
|
||
|
RTW89_NSS_2 = 1,
|
||
|
/* HE DCM only support 1ss and 2ss */
|
||
|
RTW89_NSS_HEDCM_MAX = RTW89_NSS_2 + 1,
|
||
|
RTW89_NSS_3 = 2,
|
||
|
RTW89_NSS_4 = 3,
|
||
|
RTW89_NSS_MAX,
|
||
|
};
|
||
|
|
||
|
enum rtw89_ntx {
|
||
|
RTW89_1TX = 0,
|
||
|
RTW89_2TX = 1,
|
||
|
RTW89_NTX_NUM,
|
||
|
};
|
||
|
|
||
|
enum rtw89_beamforming_type {
|
||
|
RTW89_NONBF = 0,
|
||
|
RTW89_BF = 1,
|
||
|
RTW89_BF_NUM,
|
||
|
};
|
||
|
|
||
|
enum rtw89_regulation_type {
|
||
|
RTW89_WW = 0,
|
||
|
RTW89_ETSI = 1,
|
||
|
RTW89_FCC = 2,
|
||
|
RTW89_MKK = 3,
|
||
|
RTW89_NA = 4,
|
||
|
RTW89_IC = 5,
|
||
|
RTW89_KCC = 6,
|
||
|
RTW89_ACMA = 7,
|
||
|
RTW89_NCC = 8,
|
||
|
RTW89_MEXICO = 9,
|
||
|
RTW89_CHILE = 10,
|
||
|
RTW89_UKRAINE = 11,
|
||
|
RTW89_CN = 12,
|
||
|
RTW89_QATAR = 13,
|
||
|
RTW89_UK = 14,
|
||
|
RTW89_REGD_NUM,
|
||
|
};
|
||
|
|
||
|
enum rtw89_fw_pkt_ofld_type {
|
||
|
RTW89_PKT_OFLD_TYPE_PROBE_RSP = 0,
|
||
|
RTW89_PKT_OFLD_TYPE_PS_POLL = 1,
|
||
|
RTW89_PKT_OFLD_TYPE_NULL_DATA = 2,
|
||
|
RTW89_PKT_OFLD_TYPE_QOS_NULL = 3,
|
||
|
RTW89_PKT_OFLD_TYPE_CTS2SELF = 4,
|
||
|
RTW89_PKT_OFLD_TYPE_ARP_RSP = 5,
|
||
|
RTW89_PKT_OFLD_TYPE_NDP = 6,
|
||
|
RTW89_PKT_OFLD_TYPE_EAPOL_KEY = 7,
|
||
|
RTW89_PKT_OFLD_TYPE_SA_QUERY = 8,
|
||
|
RTW89_PKT_OFLD_TYPE_PROBE_REQ = 12,
|
||
|
RTW89_PKT_OFLD_TYPE_NUM,
|
||
|
};
|
||
|
|
||
|
struct rtw89_txpwr_byrate {
|
||
|
s8 cck[RTW89_RATE_CCK_MAX];
|
||
|
s8 ofdm[RTW89_RATE_OFDM_MAX];
|
||
|
s8 mcs[RTW89_NSS_MAX][RTW89_RATE_MCS_MAX];
|
||
|
s8 hedcm[RTW89_NSS_HEDCM_MAX][RTW89_RATE_HEDCM_MAX];
|
||
|
s8 offset[RTW89_RATE_OFFSET_MAX];
|
||
|
};
|
||
|
|
||
|
enum rtw89_bandwidth_section_num {
|
||
|
RTW89_BW20_SEC_NUM = 8,
|
||
|
RTW89_BW40_SEC_NUM = 4,
|
||
|
RTW89_BW80_SEC_NUM = 2,
|
||
|
};
|
||
|
|
||
|
#define RTW89_TXPWR_LMT_PAGE_SIZE 40
|
||
|
|
||
|
struct rtw89_txpwr_limit {
|
||
|
s8 cck_20m[RTW89_BF_NUM];
|
||
|
s8 cck_40m[RTW89_BF_NUM];
|
||
|
s8 ofdm[RTW89_BF_NUM];
|
||
|
s8 mcs_20m[RTW89_BW20_SEC_NUM][RTW89_BF_NUM];
|
||
|
s8 mcs_40m[RTW89_BW40_SEC_NUM][RTW89_BF_NUM];
|
||
|
s8 mcs_80m[RTW89_BW80_SEC_NUM][RTW89_BF_NUM];
|
||
|
s8 mcs_160m[RTW89_BF_NUM];
|
||
|
s8 mcs_40m_0p5[RTW89_BF_NUM];
|
||
|
s8 mcs_40m_2p5[RTW89_BF_NUM];
|
||
|
};
|
||
|
|
||
|
#define RTW89_RU_SEC_NUM 8
|
||
|
|
||
|
#define RTW89_TXPWR_LMT_RU_PAGE_SIZE 24
|
||
|
|
||
|
struct rtw89_txpwr_limit_ru {
|
||
|
s8 ru26[RTW89_RU_SEC_NUM];
|
||
|
s8 ru52[RTW89_RU_SEC_NUM];
|
||
|
s8 ru106[RTW89_RU_SEC_NUM];
|
||
|
};
|
||
|
|
||
|
struct rtw89_rate_desc {
|
||
|
enum rtw89_nss nss;
|
||
|
enum rtw89_rate_section rs;
|
||
|
u8 idx;
|
||
|
};
|
||
|
|
||
|
#define PHY_STS_HDR_LEN 8
|
||
|
#define RF_PATH_MAX 4
|
||
|
#define RTW89_MAX_PPDU_CNT 8
|
||
|
struct rtw89_rx_phy_ppdu {
|
||
|
u8 *buf;
|
||
|
u32 len;
|
||
|
u8 rssi_avg;
|
||
|
u8 rssi[RF_PATH_MAX];
|
||
|
u8 mac_id;
|
||
|
u8 chan_idx;
|
||
|
u8 ie;
|
||
|
u16 rate;
|
||
|
bool to_self;
|
||
|
bool valid;
|
||
|
};
|
||
|
|
||
|
enum rtw89_mac_idx {
|
||
|
RTW89_MAC_0 = 0,
|
||
|
RTW89_MAC_1 = 1,
|
||
|
};
|
||
|
|
||
|
enum rtw89_phy_idx {
|
||
|
RTW89_PHY_0 = 0,
|
||
|
RTW89_PHY_1 = 1,
|
||
|
RTW89_PHY_MAX
|
||
|
};
|
||
|
|
||
|
enum rtw89_sub_entity_idx {
|
||
|
RTW89_SUB_ENTITY_0 = 0,
|
||
|
|
||
|
NUM_OF_RTW89_SUB_ENTITY,
|
||
|
};
|
||
|
|
||
|
enum rtw89_rf_path {
|
||
|
RF_PATH_A = 0,
|
||
|
RF_PATH_B = 1,
|
||
|
RF_PATH_C = 2,
|
||
|
RF_PATH_D = 3,
|
||
|
RF_PATH_AB,
|
||
|
RF_PATH_AC,
|
||
|
RF_PATH_AD,
|
||
|
RF_PATH_BC,
|
||
|
RF_PATH_BD,
|
||
|
RF_PATH_CD,
|
||
|
RF_PATH_ABC,
|
||
|
RF_PATH_ABD,
|
||
|
RF_PATH_ACD,
|
||
|
RF_PATH_BCD,
|
||
|
RF_PATH_ABCD,
|
||
|
};
|
||
|
|
||
|
enum rtw89_rf_path_bit {
|
||
|
RF_A = BIT(0),
|
||
|
RF_B = BIT(1),
|
||
|
RF_C = BIT(2),
|
||
|
RF_D = BIT(3),
|
||
|
|
||
|
RF_AB = (RF_A | RF_B),
|
||
|
RF_AC = (RF_A | RF_C),
|
||
|
RF_AD = (RF_A | RF_D),
|
||
|
RF_BC = (RF_B | RF_C),
|
||
|
RF_BD = (RF_B | RF_D),
|
||
|
RF_CD = (RF_C | RF_D),
|
||
|
|
||
|
RF_ABC = (RF_A | RF_B | RF_C),
|
||
|
RF_ABD = (RF_A | RF_B | RF_D),
|
||
|
RF_ACD = (RF_A | RF_C | RF_D),
|
||
|
RF_BCD = (RF_B | RF_C | RF_D),
|
||
|
|
||
|
RF_ABCD = (RF_A | RF_B | RF_C | RF_D),
|
||
|
};
|
||
|
|
||
|
enum rtw89_bandwidth {
|
||
|
RTW89_CHANNEL_WIDTH_20 = 0,
|
||
|
RTW89_CHANNEL_WIDTH_40 = 1,
|
||
|
RTW89_CHANNEL_WIDTH_80 = 2,
|
||
|
RTW89_CHANNEL_WIDTH_160 = 3,
|
||
|
RTW89_CHANNEL_WIDTH_80_80 = 4,
|
||
|
RTW89_CHANNEL_WIDTH_5 = 5,
|
||
|
RTW89_CHANNEL_WIDTH_10 = 6,
|
||
|
};
|
||
|
|
||
|
enum rtw89_ps_mode {
|
||
|
RTW89_PS_MODE_NONE = 0,
|
||
|
RTW89_PS_MODE_RFOFF = 1,
|
||
|
RTW89_PS_MODE_CLK_GATED = 2,
|
||
|
RTW89_PS_MODE_PWR_GATED = 3,
|
||
|
};
|
||
|
|
||
|
#define RTW89_2G_BW_NUM (RTW89_CHANNEL_WIDTH_40 + 1)
|
||
|
#define RTW89_5G_BW_NUM (RTW89_CHANNEL_WIDTH_160 + 1)
|
||
|
#define RTW89_6G_BW_NUM (RTW89_CHANNEL_WIDTH_160 + 1)
|
||
|
#define RTW89_PPE_BW_NUM (RTW89_CHANNEL_WIDTH_160 + 1)
|
||
|
|
||
|
enum rtw89_ru_bandwidth {
|
||
|
RTW89_RU26 = 0,
|
||
|
RTW89_RU52 = 1,
|
||
|
RTW89_RU106 = 2,
|
||
|
RTW89_RU_NUM,
|
||
|
};
|
||
|
|
||
|
enum rtw89_sc_offset {
|
||
|
RTW89_SC_DONT_CARE = 0,
|
||
|
RTW89_SC_20_UPPER = 1,
|
||
|
RTW89_SC_20_LOWER = 2,
|
||
|
RTW89_SC_20_UPMOST = 3,
|
||
|
RTW89_SC_20_LOWEST = 4,
|
||
|
RTW89_SC_20_UP2X = 5,
|
||
|
RTW89_SC_20_LOW2X = 6,
|
||
|
RTW89_SC_20_UP3X = 7,
|
||
|
RTW89_SC_20_LOW3X = 8,
|
||
|
RTW89_SC_40_UPPER = 9,
|
||
|
RTW89_SC_40_LOWER = 10,
|
||
|
};
|
||
|
|
||
|
enum rtw89_wow_flags {
|
||
|
RTW89_WOW_FLAG_EN_MAGIC_PKT,
|
||
|
RTW89_WOW_FLAG_EN_REKEY_PKT,
|
||
|
RTW89_WOW_FLAG_EN_DISCONNECT,
|
||
|
RTW89_WOW_FLAG_NUM,
|
||
|
};
|
||
|
|
||
|
struct rtw89_chan {
|
||
|
u8 channel;
|
||
|
u8 primary_channel;
|
||
|
enum rtw89_band band_type;
|
||
|
enum rtw89_bandwidth band_width;
|
||
|
|
||
|
/* The follow-up are derived from the above. We must ensure that it
|
||
|
* is assigned correctly in rtw89_chan_create() if new one is added.
|
||
|
*/
|
||
|
u32 freq;
|
||
|
enum rtw89_subband subband_type;
|
||
|
enum rtw89_sc_offset pri_ch_idx;
|
||
|
};
|
||
|
|
||
|
struct rtw89_chan_rcd {
|
||
|
u8 prev_primary_channel;
|
||
|
enum rtw89_band prev_band_type;
|
||
|
};
|
||
|
|
||
|
struct rtw89_channel_help_params {
|
||
|
u32 tx_en;
|
||
|
};
|
||
|
|
||
|
struct rtw89_port_reg {
|
||
|
u32 port_cfg;
|
||
|
u32 tbtt_prohib;
|
||
|
u32 bcn_area;
|
||
|
u32 bcn_early;
|
||
|
u32 tbtt_early;
|
||
|
u32 tbtt_agg;
|
||
|
u32 bcn_space;
|
||
|
u32 bcn_forcetx;
|
||
|
u32 bcn_err_cnt;
|
||
|
u32 bcn_err_flag;
|
||
|
u32 dtim_ctrl;
|
||
|
u32 tbtt_shift;
|
||
|
u32 bcn_cnt_tmr;
|
||
|
u32 tsftr_l;
|
||
|
u32 tsftr_h;
|
||
|
};
|
||
|
|
||
|
struct rtw89_txwd_body {
|
||
|
__le32 dword0;
|
||
|
__le32 dword1;
|
||
|
__le32 dword2;
|
||
|
__le32 dword3;
|
||
|
__le32 dword4;
|
||
|
__le32 dword5;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_txwd_body_v1 {
|
||
|
__le32 dword0;
|
||
|
__le32 dword1;
|
||
|
__le32 dword2;
|
||
|
__le32 dword3;
|
||
|
__le32 dword4;
|
||
|
__le32 dword5;
|
||
|
__le32 dword6;
|
||
|
__le32 dword7;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_txwd_info {
|
||
|
__le32 dword0;
|
||
|
__le32 dword1;
|
||
|
__le32 dword2;
|
||
|
__le32 dword3;
|
||
|
__le32 dword4;
|
||
|
__le32 dword5;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_rx_desc_info {
|
||
|
u16 pkt_size;
|
||
|
u8 pkt_type;
|
||
|
u8 drv_info_size;
|
||
|
u8 shift;
|
||
|
u8 wl_hd_iv_len;
|
||
|
bool long_rxdesc;
|
||
|
bool bb_sel;
|
||
|
bool mac_info_valid;
|
||
|
u16 data_rate;
|
||
|
u8 gi_ltf;
|
||
|
u8 bw;
|
||
|
u32 free_run_cnt;
|
||
|
u8 user_id;
|
||
|
bool sr_en;
|
||
|
u8 ppdu_cnt;
|
||
|
u8 ppdu_type;
|
||
|
bool icv_err;
|
||
|
bool crc32_err;
|
||
|
bool hw_dec;
|
||
|
bool sw_dec;
|
||
|
bool addr1_match;
|
||
|
u8 frag;
|
||
|
u16 seq;
|
||
|
u8 frame_type;
|
||
|
u8 rx_pl_id;
|
||
|
bool addr_cam_valid;
|
||
|
u8 addr_cam_id;
|
||
|
u8 sec_cam_id;
|
||
|
u8 mac_id;
|
||
|
u16 offset;
|
||
|
bool ready;
|
||
|
};
|
||
|
|
||
|
struct rtw89_rxdesc_short {
|
||
|
__le32 dword0;
|
||
|
__le32 dword1;
|
||
|
__le32 dword2;
|
||
|
__le32 dword3;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_rxdesc_long {
|
||
|
__le32 dword0;
|
||
|
__le32 dword1;
|
||
|
__le32 dword2;
|
||
|
__le32 dword3;
|
||
|
__le32 dword4;
|
||
|
__le32 dword5;
|
||
|
__le32 dword6;
|
||
|
__le32 dword7;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_tx_desc_info {
|
||
|
u16 pkt_size;
|
||
|
u8 wp_offset;
|
||
|
u8 mac_id;
|
||
|
u8 qsel;
|
||
|
u8 ch_dma;
|
||
|
u8 hdr_llc_len;
|
||
|
bool is_bmc;
|
||
|
bool en_wd_info;
|
||
|
bool wd_page;
|
||
|
bool use_rate;
|
||
|
bool dis_data_fb;
|
||
|
bool tid_indicate;
|
||
|
bool agg_en;
|
||
|
bool bk;
|
||
|
u8 ampdu_density;
|
||
|
u8 ampdu_num;
|
||
|
bool sec_en;
|
||
|
u8 addr_info_nr;
|
||
|
u8 sec_keyid;
|
||
|
u8 sec_type;
|
||
|
u8 sec_cam_idx;
|
||
|
u8 sec_seq[6];
|
||
|
u16 data_rate;
|
||
|
u16 data_retry_lowest_rate;
|
||
|
bool fw_dl;
|
||
|
u16 seq;
|
||
|
bool a_ctrl_bsr;
|
||
|
u8 hw_ssn_sel;
|
||
|
#define RTW89_MGMT_HW_SSN_SEL 1
|
||
|
u8 hw_seq_mode;
|
||
|
#define RTW89_MGMT_HW_SEQ_MODE 1
|
||
|
bool hiq;
|
||
|
u8 port;
|
||
|
bool er_cap;
|
||
|
};
|
||
|
|
||
|
struct rtw89_core_tx_request {
|
||
|
enum rtw89_core_tx_type tx_type;
|
||
|
|
||
|
struct sk_buff *skb;
|
||
|
struct ieee80211_vif *vif;
|
||
|
struct ieee80211_sta *sta;
|
||
|
struct rtw89_tx_desc_info desc_info;
|
||
|
};
|
||
|
|
||
|
struct rtw89_txq {
|
||
|
struct list_head list;
|
||
|
unsigned long flags;
|
||
|
int wait_cnt;
|
||
|
};
|
||
|
|
||
|
struct rtw89_mac_ax_gnt {
|
||
|
u8 gnt_bt_sw_en;
|
||
|
u8 gnt_bt;
|
||
|
u8 gnt_wl_sw_en;
|
||
|
u8 gnt_wl;
|
||
|
} __packed;
|
||
|
|
||
|
#define RTW89_MAC_AX_COEX_GNT_NR 2
|
||
|
struct rtw89_mac_ax_coex_gnt {
|
||
|
struct rtw89_mac_ax_gnt band[RTW89_MAC_AX_COEX_GNT_NR];
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_ncnt {
|
||
|
BTC_NCNT_POWER_ON = 0x0,
|
||
|
BTC_NCNT_POWER_OFF,
|
||
|
BTC_NCNT_INIT_COEX,
|
||
|
BTC_NCNT_SCAN_START,
|
||
|
BTC_NCNT_SCAN_FINISH,
|
||
|
BTC_NCNT_SPECIAL_PACKET,
|
||
|
BTC_NCNT_SWITCH_BAND,
|
||
|
BTC_NCNT_RFK_TIMEOUT,
|
||
|
BTC_NCNT_SHOW_COEX_INFO,
|
||
|
BTC_NCNT_ROLE_INFO,
|
||
|
BTC_NCNT_CONTROL,
|
||
|
BTC_NCNT_RADIO_STATE,
|
||
|
BTC_NCNT_CUSTOMERIZE,
|
||
|
BTC_NCNT_WL_RFK,
|
||
|
BTC_NCNT_WL_STA,
|
||
|
BTC_NCNT_FWINFO,
|
||
|
BTC_NCNT_TIMER,
|
||
|
BTC_NCNT_NUM
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_btinfo {
|
||
|
BTC_BTINFO_L0 = 0,
|
||
|
BTC_BTINFO_L1,
|
||
|
BTC_BTINFO_L2,
|
||
|
BTC_BTINFO_L3,
|
||
|
BTC_BTINFO_H0,
|
||
|
BTC_BTINFO_H1,
|
||
|
BTC_BTINFO_H2,
|
||
|
BTC_BTINFO_H3,
|
||
|
BTC_BTINFO_MAX
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_dcnt {
|
||
|
BTC_DCNT_RUN = 0x0,
|
||
|
BTC_DCNT_CX_RUNINFO,
|
||
|
BTC_DCNT_RPT,
|
||
|
BTC_DCNT_RPT_FREEZE,
|
||
|
BTC_DCNT_CYCLE,
|
||
|
BTC_DCNT_CYCLE_FREEZE,
|
||
|
BTC_DCNT_W1,
|
||
|
BTC_DCNT_W1_FREEZE,
|
||
|
BTC_DCNT_B1,
|
||
|
BTC_DCNT_B1_FREEZE,
|
||
|
BTC_DCNT_TDMA_NONSYNC,
|
||
|
BTC_DCNT_SLOT_NONSYNC,
|
||
|
BTC_DCNT_BTCNT_FREEZE,
|
||
|
BTC_DCNT_WL_SLOT_DRIFT,
|
||
|
BTC_DCNT_BT_SLOT_DRIFT,
|
||
|
BTC_DCNT_WL_STA_LAST,
|
||
|
BTC_DCNT_NUM,
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_wl_state_cnt {
|
||
|
BTC_WCNT_SCANAP = 0x0,
|
||
|
BTC_WCNT_DHCP,
|
||
|
BTC_WCNT_EAPOL,
|
||
|
BTC_WCNT_ARP,
|
||
|
BTC_WCNT_SCBDUPDATE,
|
||
|
BTC_WCNT_RFK_REQ,
|
||
|
BTC_WCNT_RFK_GO,
|
||
|
BTC_WCNT_RFK_REJECT,
|
||
|
BTC_WCNT_RFK_TIMEOUT,
|
||
|
BTC_WCNT_CH_UPDATE,
|
||
|
BTC_WCNT_NUM
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_bt_state_cnt {
|
||
|
BTC_BCNT_RETRY = 0x0,
|
||
|
BTC_BCNT_REINIT,
|
||
|
BTC_BCNT_REENABLE,
|
||
|
BTC_BCNT_SCBDREAD,
|
||
|
BTC_BCNT_RELINK,
|
||
|
BTC_BCNT_IGNOWL,
|
||
|
BTC_BCNT_INQPAG,
|
||
|
BTC_BCNT_INQ,
|
||
|
BTC_BCNT_PAGE,
|
||
|
BTC_BCNT_ROLESW,
|
||
|
BTC_BCNT_AFH,
|
||
|
BTC_BCNT_INFOUPDATE,
|
||
|
BTC_BCNT_INFOSAME,
|
||
|
BTC_BCNT_SCBDUPDATE,
|
||
|
BTC_BCNT_HIPRI_TX,
|
||
|
BTC_BCNT_HIPRI_RX,
|
||
|
BTC_BCNT_LOPRI_TX,
|
||
|
BTC_BCNT_LOPRI_RX,
|
||
|
BTC_BCNT_POLUT,
|
||
|
BTC_BCNT_RATECHG,
|
||
|
BTC_BCNT_NUM
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_bt_profile {
|
||
|
BTC_BT_NOPROFILE = 0,
|
||
|
BTC_BT_HFP = BIT(0),
|
||
|
BTC_BT_HID = BIT(1),
|
||
|
BTC_BT_A2DP = BIT(2),
|
||
|
BTC_BT_PAN = BIT(3),
|
||
|
BTC_PROFILE_MAX = 4,
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_ant_info {
|
||
|
u8 type; /* shared, dedicated */
|
||
|
u8 num;
|
||
|
u8 isolation;
|
||
|
|
||
|
u8 single_pos: 1;/* Single antenna at S0 or S1 */
|
||
|
u8 diversity: 1;
|
||
|
};
|
||
|
|
||
|
enum rtw89_tfc_dir {
|
||
|
RTW89_TFC_UL,
|
||
|
RTW89_TFC_DL,
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_smap {
|
||
|
u32 busy: 1;
|
||
|
u32 scan: 1;
|
||
|
u32 connecting: 1;
|
||
|
u32 roaming: 1;
|
||
|
u32 _4way: 1;
|
||
|
u32 rf_off: 1;
|
||
|
u32 lps: 2;
|
||
|
u32 ips: 1;
|
||
|
u32 init_ok: 1;
|
||
|
u32 traffic_dir : 2;
|
||
|
u32 rf_off_pre: 1;
|
||
|
u32 lps_pre: 2;
|
||
|
};
|
||
|
|
||
|
enum rtw89_tfc_lv {
|
||
|
RTW89_TFC_IDLE,
|
||
|
RTW89_TFC_ULTRA_LOW,
|
||
|
RTW89_TFC_LOW,
|
||
|
RTW89_TFC_MID,
|
||
|
RTW89_TFC_HIGH,
|
||
|
};
|
||
|
|
||
|
#define RTW89_TP_SHIFT 18 /* bytes/2s --> Mbps */
|
||
|
DECLARE_EWMA(tp, 10, 2);
|
||
|
|
||
|
struct rtw89_traffic_stats {
|
||
|
/* units in bytes */
|
||
|
u64 tx_unicast;
|
||
|
u64 rx_unicast;
|
||
|
u32 tx_avg_len;
|
||
|
u32 rx_avg_len;
|
||
|
|
||
|
/* count for packets */
|
||
|
u64 tx_cnt;
|
||
|
u64 rx_cnt;
|
||
|
|
||
|
/* units in Mbps */
|
||
|
u32 tx_throughput;
|
||
|
u32 rx_throughput;
|
||
|
u32 tx_throughput_raw;
|
||
|
u32 rx_throughput_raw;
|
||
|
|
||
|
u32 rx_tf_acc;
|
||
|
u32 rx_tf_periodic;
|
||
|
|
||
|
enum rtw89_tfc_lv tx_tfc_lv;
|
||
|
enum rtw89_tfc_lv rx_tfc_lv;
|
||
|
struct ewma_tp tx_ewma_tp;
|
||
|
struct ewma_tp rx_ewma_tp;
|
||
|
|
||
|
u16 tx_rate;
|
||
|
u16 rx_rate;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_statistic {
|
||
|
u8 rssi; /* 0%~110% (dBm = rssi -110) */
|
||
|
struct rtw89_traffic_stats traffic;
|
||
|
};
|
||
|
|
||
|
#define BTC_WL_RSSI_THMAX 4
|
||
|
|
||
|
struct rtw89_btc_wl_link_info {
|
||
|
struct rtw89_btc_statistic stat;
|
||
|
enum rtw89_tfc_dir dir;
|
||
|
u8 rssi_state[BTC_WL_RSSI_THMAX];
|
||
|
u8 mac_addr[ETH_ALEN];
|
||
|
u8 busy;
|
||
|
u8 ch;
|
||
|
u8 bw;
|
||
|
u8 band;
|
||
|
u8 role;
|
||
|
u8 pid;
|
||
|
u8 phy;
|
||
|
u8 dtim_period;
|
||
|
u8 mode;
|
||
|
|
||
|
u8 mac_id;
|
||
|
u8 tx_retry;
|
||
|
|
||
|
u32 bcn_period;
|
||
|
u32 busy_t;
|
||
|
u32 tx_time;
|
||
|
u32 client_cnt;
|
||
|
u32 rx_rate_drop_cnt;
|
||
|
|
||
|
u32 active: 1;
|
||
|
u32 noa: 1;
|
||
|
u32 client_ps: 1;
|
||
|
u32 connected: 2;
|
||
|
};
|
||
|
|
||
|
union rtw89_btc_wl_state_map {
|
||
|
u32 val;
|
||
|
struct rtw89_btc_wl_smap map;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_hfp_desc {
|
||
|
u32 exist: 1;
|
||
|
u32 type: 2;
|
||
|
u32 rsvd: 29;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_hid_desc {
|
||
|
u32 exist: 1;
|
||
|
u32 slot_info: 2;
|
||
|
u32 pair_cnt: 2;
|
||
|
u32 type: 8;
|
||
|
u32 rsvd: 19;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_a2dp_desc {
|
||
|
u8 exist: 1;
|
||
|
u8 exist_last: 1;
|
||
|
u8 play_latency: 1;
|
||
|
u8 type: 3;
|
||
|
u8 active: 1;
|
||
|
u8 sink: 1;
|
||
|
|
||
|
u8 bitpool;
|
||
|
u16 vendor_id;
|
||
|
u32 device_name;
|
||
|
u32 flush_time;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_pan_desc {
|
||
|
u32 exist: 1;
|
||
|
u32 type: 1;
|
||
|
u32 active: 1;
|
||
|
u32 rsvd: 29;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_rfk_info {
|
||
|
u32 run: 1;
|
||
|
u32 req: 1;
|
||
|
u32 timeout: 1;
|
||
|
u32 rsvd: 29;
|
||
|
};
|
||
|
|
||
|
union rtw89_btc_bt_rfk_info_map {
|
||
|
u32 val;
|
||
|
struct rtw89_btc_bt_rfk_info map;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_ver_info {
|
||
|
u32 fw_coex; /* match with which coex_ver */
|
||
|
u32 fw;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bool_sta_chg {
|
||
|
u32 now: 1;
|
||
|
u32 last: 1;
|
||
|
u32 remain: 1;
|
||
|
u32 srvd: 29;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_u8_sta_chg {
|
||
|
u8 now;
|
||
|
u8 last;
|
||
|
u8 remain;
|
||
|
u8 rsvd;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_scan_info {
|
||
|
u8 band[RTW89_PHY_MAX];
|
||
|
u8 phy_map;
|
||
|
u8 rsvd;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_dbcc_info {
|
||
|
u8 op_band[RTW89_PHY_MAX]; /* op band in each phy */
|
||
|
u8 scan_band[RTW89_PHY_MAX]; /* scan band in each phy */
|
||
|
u8 real_band[RTW89_PHY_MAX];
|
||
|
u8 role[RTW89_PHY_MAX]; /* role in each phy */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_active_role {
|
||
|
u8 connected: 1;
|
||
|
u8 pid: 3;
|
||
|
u8 phy: 1;
|
||
|
u8 noa: 1;
|
||
|
u8 band: 2;
|
||
|
|
||
|
u8 client_ps: 1;
|
||
|
u8 bw: 7;
|
||
|
|
||
|
u8 role;
|
||
|
u8 ch;
|
||
|
|
||
|
u16 tx_lvl;
|
||
|
u16 rx_lvl;
|
||
|
u16 tx_rate;
|
||
|
u16 rx_rate;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_active_role_v1 {
|
||
|
u8 connected: 1;
|
||
|
u8 pid: 3;
|
||
|
u8 phy: 1;
|
||
|
u8 noa: 1;
|
||
|
u8 band: 2;
|
||
|
|
||
|
u8 client_ps: 1;
|
||
|
u8 bw: 7;
|
||
|
|
||
|
u8 role;
|
||
|
u8 ch;
|
||
|
|
||
|
u16 tx_lvl;
|
||
|
u16 rx_lvl;
|
||
|
u16 tx_rate;
|
||
|
u16 rx_rate;
|
||
|
|
||
|
u32 noa_duration; /* ms */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_role_info_bpos {
|
||
|
u16 none: 1;
|
||
|
u16 station: 1;
|
||
|
u16 ap: 1;
|
||
|
u16 vap: 1;
|
||
|
u16 adhoc: 1;
|
||
|
u16 adhoc_master: 1;
|
||
|
u16 mesh: 1;
|
||
|
u16 moniter: 1;
|
||
|
u16 p2p_device: 1;
|
||
|
u16 p2p_gc: 1;
|
||
|
u16 p2p_go: 1;
|
||
|
u16 nan: 1;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_scc_ctrl {
|
||
|
u8 null_role1;
|
||
|
u8 null_role2;
|
||
|
u8 ebt_null; /* if tx null at EBT slot */
|
||
|
};
|
||
|
|
||
|
union rtw89_btc_wl_role_info_map {
|
||
|
u16 val;
|
||
|
struct rtw89_btc_wl_role_info_bpos role;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_role_info { /* struct size must be n*4 bytes */
|
||
|
u8 connect_cnt;
|
||
|
u8 link_mode;
|
||
|
union rtw89_btc_wl_role_info_map role_map;
|
||
|
struct rtw89_btc_wl_active_role active_role[RTW89_PORT_NUM];
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_role_info_v1 { /* struct size must be n*4 bytes */
|
||
|
u8 connect_cnt;
|
||
|
u8 link_mode;
|
||
|
union rtw89_btc_wl_role_info_map role_map;
|
||
|
struct rtw89_btc_wl_active_role_v1 active_role_v1[RTW89_PORT_NUM];
|
||
|
u32 mrole_type; /* btc_wl_mrole_type */
|
||
|
u32 mrole_noa_duration; /* ms */
|
||
|
|
||
|
u32 dbcc_en: 1;
|
||
|
u32 dbcc_chg: 1;
|
||
|
u32 dbcc_2g_phy: 2; /* which phy operate in 2G, HW_PHY_0 or HW_PHY_1 */
|
||
|
u32 link_mode_chg: 1;
|
||
|
u32 rsvd: 27;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_ver_info {
|
||
|
u32 fw_coex; /* match with which coex_ver */
|
||
|
u32 fw;
|
||
|
u32 mac;
|
||
|
u32 bb;
|
||
|
u32 rf;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_afh_info {
|
||
|
u8 en;
|
||
|
u8 ch;
|
||
|
u8 bw;
|
||
|
u8 rsvd;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_wl_rfk_info {
|
||
|
u32 state: 2;
|
||
|
u32 path_map: 4;
|
||
|
u32 phy_map: 2;
|
||
|
u32 band: 2;
|
||
|
u32 type: 8;
|
||
|
u32 rsvd: 14;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_smap {
|
||
|
u32 connect: 1;
|
||
|
u32 ble_connect: 1;
|
||
|
u32 acl_busy: 1;
|
||
|
u32 sco_busy: 1;
|
||
|
u32 mesh_busy: 1;
|
||
|
u32 inq_pag: 1;
|
||
|
};
|
||
|
|
||
|
union rtw89_btc_bt_state_map {
|
||
|
u32 val;
|
||
|
struct rtw89_btc_bt_smap map;
|
||
|
};
|
||
|
|
||
|
#define BTC_BT_RSSI_THMAX 4
|
||
|
#define BTC_BT_AFH_GROUP 12
|
||
|
#define BTC_BT_AFH_LE_GROUP 5
|
||
|
|
||
|
struct rtw89_btc_bt_link_info {
|
||
|
struct rtw89_btc_u8_sta_chg profile_cnt;
|
||
|
struct rtw89_btc_bool_sta_chg multi_link;
|
||
|
struct rtw89_btc_bool_sta_chg relink;
|
||
|
struct rtw89_btc_bt_hfp_desc hfp_desc;
|
||
|
struct rtw89_btc_bt_hid_desc hid_desc;
|
||
|
struct rtw89_btc_bt_a2dp_desc a2dp_desc;
|
||
|
struct rtw89_btc_bt_pan_desc pan_desc;
|
||
|
union rtw89_btc_bt_state_map status;
|
||
|
|
||
|
u8 sut_pwr_level[BTC_PROFILE_MAX];
|
||
|
u8 golden_rx_shift[BTC_PROFILE_MAX];
|
||
|
u8 rssi_state[BTC_BT_RSSI_THMAX];
|
||
|
u8 afh_map[BTC_BT_AFH_GROUP];
|
||
|
u8 afh_map_le[BTC_BT_AFH_LE_GROUP];
|
||
|
|
||
|
u32 role_sw: 1;
|
||
|
u32 slave_role: 1;
|
||
|
u32 afh_update: 1;
|
||
|
u32 cqddr: 1;
|
||
|
u32 rssi: 8;
|
||
|
u32 tx_3m: 1;
|
||
|
u32 rsvd: 19;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_3rdcx_info {
|
||
|
u8 type; /* 0: none, 1:zigbee, 2:LTE */
|
||
|
u8 hw_coex;
|
||
|
u16 rsvd;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_dm_emap {
|
||
|
u32 init: 1;
|
||
|
u32 pta_owner: 1;
|
||
|
u32 wl_rfk_timeout: 1;
|
||
|
u32 bt_rfk_timeout: 1;
|
||
|
|
||
|
u32 wl_fw_hang: 1;
|
||
|
u32 offload_mismatch: 1;
|
||
|
u32 cycle_hang: 1;
|
||
|
u32 w1_hang: 1;
|
||
|
|
||
|
u32 b1_hang: 1;
|
||
|
u32 tdma_no_sync: 1;
|
||
|
u32 wl_slot_drift: 1;
|
||
|
};
|
||
|
|
||
|
union rtw89_btc_dm_error_map {
|
||
|
u32 val;
|
||
|
struct rtw89_btc_dm_emap map;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rf_para {
|
||
|
u32 tx_pwr_freerun;
|
||
|
u32 rx_gain_freerun;
|
||
|
u32 tx_pwr_perpkt;
|
||
|
u32 rx_gain_perpkt;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_info {
|
||
|
struct rtw89_btc_wl_link_info link_info[RTW89_PORT_NUM];
|
||
|
struct rtw89_btc_wl_rfk_info rfk_info;
|
||
|
struct rtw89_btc_wl_ver_info ver_info;
|
||
|
struct rtw89_btc_wl_afh_info afh_info;
|
||
|
struct rtw89_btc_wl_role_info role_info;
|
||
|
struct rtw89_btc_wl_role_info_v1 role_info_v1;
|
||
|
struct rtw89_btc_wl_scan_info scan_info;
|
||
|
struct rtw89_btc_wl_dbcc_info dbcc_info;
|
||
|
struct rtw89_btc_rf_para rf_para;
|
||
|
union rtw89_btc_wl_state_map status;
|
||
|
|
||
|
u8 port_id[RTW89_WIFI_ROLE_MLME_MAX];
|
||
|
u8 rssi_level;
|
||
|
|
||
|
bool scbd_change;
|
||
|
u32 scbd;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_module {
|
||
|
struct rtw89_btc_ant_info ant;
|
||
|
u8 rfe_type;
|
||
|
u8 cv;
|
||
|
|
||
|
u8 bt_solo: 1;
|
||
|
u8 bt_pos: 1;
|
||
|
u8 switch_type: 1;
|
||
|
|
||
|
u8 rsvd;
|
||
|
};
|
||
|
|
||
|
#define RTW89_BTC_DM_MAXSTEP 30
|
||
|
#define RTW89_BTC_DM_CNT_MAX (RTW89_BTC_DM_MAXSTEP * 8)
|
||
|
|
||
|
struct rtw89_btc_dm_step {
|
||
|
u16 step[RTW89_BTC_DM_MAXSTEP];
|
||
|
u8 step_pos;
|
||
|
bool step_ov;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_init_info {
|
||
|
struct rtw89_btc_module module;
|
||
|
u8 wl_guard_ch;
|
||
|
|
||
|
u8 wl_only: 1;
|
||
|
u8 wl_init_ok: 1;
|
||
|
u8 dbcc_en: 1;
|
||
|
u8 cx_other: 1;
|
||
|
u8 bt_only: 1;
|
||
|
|
||
|
u16 rsvd;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_wl_tx_limit_para {
|
||
|
u16 enable;
|
||
|
u32 tx_time; /* unit: us */
|
||
|
u16 tx_retry;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_scan_info {
|
||
|
u16 win;
|
||
|
u16 intvl;
|
||
|
u32 enable: 1;
|
||
|
u32 interlace: 1;
|
||
|
u32 rsvd: 30;
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_bt_scan_type {
|
||
|
BTC_SCAN_INQ = 0,
|
||
|
BTC_SCAN_PAGE,
|
||
|
BTC_SCAN_BLE,
|
||
|
BTC_SCAN_INIT,
|
||
|
BTC_SCAN_TV,
|
||
|
BTC_SCAN_ADV,
|
||
|
BTC_SCAN_MAX1,
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_bt_info {
|
||
|
struct rtw89_btc_bt_link_info link_info;
|
||
|
struct rtw89_btc_bt_scan_info scan_info[BTC_SCAN_MAX1];
|
||
|
struct rtw89_btc_bt_ver_info ver_info;
|
||
|
struct rtw89_btc_bool_sta_chg enable;
|
||
|
struct rtw89_btc_bool_sta_chg inq_pag;
|
||
|
struct rtw89_btc_rf_para rf_para;
|
||
|
union rtw89_btc_bt_rfk_info_map rfk_info;
|
||
|
|
||
|
u8 raw_info[BTC_BTINFO_MAX]; /* raw bt info from mailbox */
|
||
|
|
||
|
u32 scbd;
|
||
|
u32 feature;
|
||
|
|
||
|
u32 mbx_avl: 1;
|
||
|
u32 whql_test: 1;
|
||
|
u32 igno_wl: 1;
|
||
|
u32 reinit: 1;
|
||
|
u32 ble_scan_en: 1;
|
||
|
u32 btg_type: 1;
|
||
|
u32 inq: 1;
|
||
|
u32 pag: 1;
|
||
|
u32 run_patch_code: 1;
|
||
|
u32 hi_lna_rx: 1;
|
||
|
u32 scan_rx_low_pri: 1;
|
||
|
u32 rsvd: 21;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_cx {
|
||
|
struct rtw89_btc_wl_info wl;
|
||
|
struct rtw89_btc_bt_info bt;
|
||
|
struct rtw89_btc_3rdcx_info other;
|
||
|
u32 state_map;
|
||
|
u32 cnt_bt[BTC_BCNT_NUM];
|
||
|
u32 cnt_wl[BTC_WCNT_NUM];
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_fbtc_tdma {
|
||
|
u8 type; /* btc_ver::fcxtdma */
|
||
|
u8 rxflctrl;
|
||
|
u8 txpause;
|
||
|
u8 wtgle_n;
|
||
|
u8 leak_n;
|
||
|
u8 ext_ctrl;
|
||
|
u8 rxflctrl_role;
|
||
|
u8 option_ctrl;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_tdma_v3 {
|
||
|
u8 fver; /* btc_ver::fcxtdma */
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd1;
|
||
|
struct rtw89_btc_fbtc_tdma tdma;
|
||
|
} __packed;
|
||
|
|
||
|
union rtw89_btc_fbtc_tdma_le32 {
|
||
|
struct rtw89_btc_fbtc_tdma v1;
|
||
|
struct rtw89_btc_fbtc_tdma_v3 v3;
|
||
|
};
|
||
|
|
||
|
#define CXMREG_MAX 30
|
||
|
#define FCXMAX_STEP 255 /*STEP trace record cnt, Max:65535, default:255*/
|
||
|
#define BTC_CYCLE_SLOT_MAX 48 /* must be even number, non-zero */
|
||
|
|
||
|
enum rtw89_btc_bt_sta_counter {
|
||
|
BTC_BCNT_RFK_REQ = 0,
|
||
|
BTC_BCNT_RFK_GO = 1,
|
||
|
BTC_BCNT_RFK_REJECT = 2,
|
||
|
BTC_BCNT_RFK_FAIL = 3,
|
||
|
BTC_BCNT_RFK_TIMEOUT = 4,
|
||
|
BTC_BCNT_HI_TX = 5,
|
||
|
BTC_BCNT_HI_RX = 6,
|
||
|
BTC_BCNT_LO_TX = 7,
|
||
|
BTC_BCNT_LO_RX = 8,
|
||
|
BTC_BCNT_POLLUTED = 9,
|
||
|
BTC_BCNT_STA_MAX
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_v1 {
|
||
|
u16 fver; /* btc_ver::fcxbtcrpt */
|
||
|
u16 rpt_cnt; /* tmr counters */
|
||
|
u32 wl_fw_coex_ver; /* match which driver's coex version */
|
||
|
u32 wl_fw_cx_offload;
|
||
|
u32 wl_fw_ver;
|
||
|
u32 rpt_enable;
|
||
|
u32 rpt_para; /* ms */
|
||
|
u32 mb_send_fail_cnt; /* fw send mailbox fail counter */
|
||
|
u32 mb_send_ok_cnt; /* fw send mailbox ok counter */
|
||
|
u32 mb_recv_cnt; /* fw recv mailbox counter */
|
||
|
u32 mb_a2dp_empty_cnt; /* a2dp empty count */
|
||
|
u32 mb_a2dp_flct_cnt; /* a2dp empty flow control counter */
|
||
|
u32 mb_a2dp_full_cnt; /* a2dp empty full counter */
|
||
|
u32 bt_rfk_cnt[BTC_BCNT_HI_TX];
|
||
|
u32 c2h_cnt; /* fw send c2h counter */
|
||
|
u32 h2c_cnt; /* fw recv h2c counter */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_info {
|
||
|
__le32 cnt; /* fw report counter */
|
||
|
__le32 en; /* report map */
|
||
|
__le32 para; /* not used */
|
||
|
|
||
|
__le32 cnt_c2h; /* fw send c2h counter */
|
||
|
__le32 cnt_h2c; /* fw recv h2c counter */
|
||
|
__le32 len_c2h; /* The total length of the last C2H */
|
||
|
|
||
|
__le32 cnt_aoac_rf_on; /* rf-on counter for aoac switch notify */
|
||
|
__le32 cnt_aoac_rf_off; /* rf-off counter for aoac switch notify */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_info_v5 {
|
||
|
__le32 cx_ver; /* match which driver's coex version */
|
||
|
__le32 fw_ver;
|
||
|
__le32 en; /* report map */
|
||
|
|
||
|
__le16 cnt; /* fw report counter */
|
||
|
__le16 cnt_c2h; /* fw send c2h counter */
|
||
|
__le16 cnt_h2c; /* fw recv h2c counter */
|
||
|
__le16 len_c2h; /* The total length of the last C2H */
|
||
|
|
||
|
__le16 cnt_aoac_rf_on; /* rf-on counter for aoac switch notify */
|
||
|
__le16 cnt_aoac_rf_off; /* rf-off counter for aoac switch notify */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_wl_fw_info {
|
||
|
__le32 cx_ver; /* match which driver's coex version */
|
||
|
__le32 cx_offload;
|
||
|
__le32 fw_ver;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_a2dp_empty {
|
||
|
__le32 cnt_empty; /* a2dp empty count */
|
||
|
__le32 cnt_flowctrl; /* a2dp empty flow control counter */
|
||
|
__le32 cnt_tx;
|
||
|
__le32 cnt_ack;
|
||
|
__le32 cnt_nack;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_bt_mailbox {
|
||
|
__le32 cnt_send_ok; /* fw send mailbox ok counter */
|
||
|
__le32 cnt_send_fail; /* fw send mailbox fail counter */
|
||
|
__le32 cnt_recv; /* fw recv mailbox counter */
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_a2dp_empty a2dp;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_v4 {
|
||
|
u8 fver;
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd1;
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_info rpt_info;
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_wl_fw_info wl_fw_info;
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_bt_mailbox bt_mbx_info;
|
||
|
__le32 bt_cnt[BTC_BCNT_STA_MAX];
|
||
|
struct rtw89_mac_ax_gnt gnt_val[RTW89_PHY_MAX];
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_v5 {
|
||
|
u8 fver;
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd1;
|
||
|
|
||
|
u8 gnt_val[RTW89_PHY_MAX][4];
|
||
|
__le16 bt_cnt[BTC_BCNT_STA_MAX];
|
||
|
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_info_v5 rpt_info;
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_bt_mailbox bt_mbx_info;
|
||
|
} __packed;
|
||
|
|
||
|
union rtw89_btc_fbtc_rpt_ctrl_ver_info {
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_v1 v1;
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_v4 v4;
|
||
|
struct rtw89_btc_fbtc_rpt_ctrl_v5 v5;
|
||
|
};
|
||
|
|
||
|
enum rtw89_fbtc_ext_ctrl_type {
|
||
|
CXECTL_OFF = 0x0, /* tdma off */
|
||
|
CXECTL_B2 = 0x1, /* allow B2 (beacon-early) */
|
||
|
CXECTL_EXT = 0x2,
|
||
|
CXECTL_MAX
|
||
|
};
|
||
|
|
||
|
union rtw89_btc_fbtc_rxflct {
|
||
|
u8 val;
|
||
|
u8 type: 3;
|
||
|
u8 tgln_n: 5;
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_cxst_state {
|
||
|
CXST_OFF = 0x0,
|
||
|
CXST_B2W = 0x1,
|
||
|
CXST_W1 = 0x2,
|
||
|
CXST_W2 = 0x3,
|
||
|
CXST_W2B = 0x4,
|
||
|
CXST_B1 = 0x5,
|
||
|
CXST_B2 = 0x6,
|
||
|
CXST_B3 = 0x7,
|
||
|
CXST_B4 = 0x8,
|
||
|
CXST_LK = 0x9,
|
||
|
CXST_BLK = 0xa,
|
||
|
CXST_E2G = 0xb,
|
||
|
CXST_E5G = 0xc,
|
||
|
CXST_EBT = 0xd,
|
||
|
CXST_ENULL = 0xe,
|
||
|
CXST_WLK = 0xf,
|
||
|
CXST_W1FDD = 0x10,
|
||
|
CXST_B1FDD = 0x11,
|
||
|
CXST_MAX = 0x12,
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_cxevnt {
|
||
|
CXEVNT_TDMA_ENTRY = 0x0,
|
||
|
CXEVNT_WL_TMR,
|
||
|
CXEVNT_B1_TMR,
|
||
|
CXEVNT_B2_TMR,
|
||
|
CXEVNT_B3_TMR,
|
||
|
CXEVNT_B4_TMR,
|
||
|
CXEVNT_W2B_TMR,
|
||
|
CXEVNT_B2W_TMR,
|
||
|
CXEVNT_BCN_EARLY,
|
||
|
CXEVNT_A2DP_EMPTY,
|
||
|
CXEVNT_LK_END,
|
||
|
CXEVNT_RX_ISR,
|
||
|
CXEVNT_RX_FC0,
|
||
|
CXEVNT_RX_FC1,
|
||
|
CXEVNT_BT_RELINK,
|
||
|
CXEVNT_BT_RETRY,
|
||
|
CXEVNT_E2G,
|
||
|
CXEVNT_E5G,
|
||
|
CXEVNT_EBT,
|
||
|
CXEVNT_ENULL,
|
||
|
CXEVNT_DRV_WLK,
|
||
|
CXEVNT_BCN_OK,
|
||
|
CXEVNT_BT_CHANGE,
|
||
|
CXEVNT_EBT_EXTEND,
|
||
|
CXEVNT_E2G_NULL1,
|
||
|
CXEVNT_B1FDD_TMR,
|
||
|
CXEVNT_MAX
|
||
|
};
|
||
|
|
||
|
enum {
|
||
|
CXBCN_ALL = 0x0,
|
||
|
CXBCN_ALL_OK,
|
||
|
CXBCN_BT_SLOT,
|
||
|
CXBCN_BT_OK,
|
||
|
CXBCN_MAX
|
||
|
};
|
||
|
|
||
|
enum btc_slot_type {
|
||
|
SLOT_MIX = 0x0, /* accept BT Lower-Pri Tx/Rx request 0x778 = 1 */
|
||
|
SLOT_ISO = 0x1, /* no accept BT Lower-Pri Tx/Rx request 0x778 = d*/
|
||
|
CXSTYPE_NUM,
|
||
|
};
|
||
|
|
||
|
enum { /* TIME */
|
||
|
CXT_BT = 0x0,
|
||
|
CXT_WL = 0x1,
|
||
|
CXT_MAX
|
||
|
};
|
||
|
|
||
|
enum { /* TIME-A2DP */
|
||
|
CXT_FLCTRL_OFF = 0x0,
|
||
|
CXT_FLCTRL_ON = 0x1,
|
||
|
CXT_FLCTRL_MAX
|
||
|
};
|
||
|
|
||
|
enum { /* STEP TYPE */
|
||
|
CXSTEP_NONE = 0x0,
|
||
|
CXSTEP_EVNT = 0x1,
|
||
|
CXSTEP_SLOT = 0x2,
|
||
|
CXSTEP_MAX,
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_afh_map_type { /*AFH MAP TYPE */
|
||
|
RPT_BT_AFH_SEQ_LEGACY = 0x10,
|
||
|
RPT_BT_AFH_SEQ_LE = 0x20
|
||
|
};
|
||
|
|
||
|
#define BTC_DBG_MAX1 32
|
||
|
struct rtw89_btc_fbtc_gpio_dbg {
|
||
|
u8 fver; /* btc_ver::fcxgpiodbg */
|
||
|
u8 rsvd;
|
||
|
u16 rsvd2;
|
||
|
u32 en_map; /* which debug signal (see btc_wl_gpio_debug) is enable */
|
||
|
u32 pre_state; /* the debug signal is 1 or 0 */
|
||
|
u8 gpio_map[BTC_DBG_MAX1]; /*the debug signals to GPIO-Position */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_mreg_val {
|
||
|
u8 fver; /* btc_ver::fcxmreg */
|
||
|
u8 reg_num;
|
||
|
__le16 rsvd;
|
||
|
__le32 mreg_val[CXMREG_MAX];
|
||
|
} __packed;
|
||
|
|
||
|
#define RTW89_DEF_FBTC_MREG(__type, __bytes, __offset) \
|
||
|
{ .type = cpu_to_le16(__type), .bytes = cpu_to_le16(__bytes), \
|
||
|
.offset = cpu_to_le32(__offset), }
|
||
|
|
||
|
struct rtw89_btc_fbtc_mreg {
|
||
|
__le16 type;
|
||
|
__le16 bytes;
|
||
|
__le32 offset;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_slot {
|
||
|
__le16 dur;
|
||
|
__le32 cxtbl;
|
||
|
__le16 cxtype;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_slots {
|
||
|
u8 fver; /* btc_ver::fcxslots */
|
||
|
u8 tbl_num;
|
||
|
__le16 rsvd;
|
||
|
__le32 update_map;
|
||
|
struct rtw89_btc_fbtc_slot slot[CXST_MAX];
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_step {
|
||
|
u8 type;
|
||
|
u8 val;
|
||
|
__le16 difft;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_steps_v2 {
|
||
|
u8 fver; /* btc_ver::fcxstep */
|
||
|
u8 rsvd;
|
||
|
__le16 cnt;
|
||
|
__le16 pos_old;
|
||
|
__le16 pos_new;
|
||
|
struct rtw89_btc_fbtc_step step[FCXMAX_STEP];
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_steps_v3 {
|
||
|
u8 fver;
|
||
|
u8 en;
|
||
|
__le16 rsvd;
|
||
|
__le32 cnt;
|
||
|
struct rtw89_btc_fbtc_step step[FCXMAX_STEP];
|
||
|
} __packed;
|
||
|
|
||
|
union rtw89_btc_fbtc_steps_info {
|
||
|
struct rtw89_btc_fbtc_steps_v2 v2;
|
||
|
struct rtw89_btc_fbtc_steps_v3 v3;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_fbtc_cysta_v2 { /* statistics for cycles */
|
||
|
u8 fver; /* btc_ver::fcxcysta */
|
||
|
u8 rsvd;
|
||
|
__le16 cycles; /* total cycle number */
|
||
|
__le16 cycles_a2dp[CXT_FLCTRL_MAX];
|
||
|
__le16 a2dpept; /* a2dp empty cnt */
|
||
|
__le16 a2dpeptto; /* a2dp empty timeout cnt*/
|
||
|
__le16 tavg_cycle[CXT_MAX]; /* avg wl/bt cycle time */
|
||
|
__le16 tmax_cycle[CXT_MAX]; /* max wl/bt cycle time */
|
||
|
__le16 tmaxdiff_cycle[CXT_MAX]; /* max wl-wl bt-bt cycle diff time */
|
||
|
__le16 tavg_a2dp[CXT_FLCTRL_MAX]; /* avg a2dp PSTDMA/TDMA time */
|
||
|
__le16 tmax_a2dp[CXT_FLCTRL_MAX]; /* max a2dp PSTDMA/TDMA time */
|
||
|
__le16 tavg_a2dpept; /* avg a2dp empty time */
|
||
|
__le16 tmax_a2dpept; /* max a2dp empty time */
|
||
|
__le16 tavg_lk; /* avg leak-slot time */
|
||
|
__le16 tmax_lk; /* max leak-slot time */
|
||
|
__le32 slot_cnt[CXST_MAX]; /* slot count */
|
||
|
__le32 bcn_cnt[CXBCN_MAX];
|
||
|
__le32 leakrx_cnt; /* the rximr occur at leak slot */
|
||
|
__le32 collision_cnt; /* counter for event/timer occur at same time */
|
||
|
__le32 skip_cnt;
|
||
|
__le32 exception;
|
||
|
__le32 except_cnt;
|
||
|
__le16 tslot_cycle[BTC_CYCLE_SLOT_MAX];
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_fdd_try_info {
|
||
|
__le16 cycles[CXT_FLCTRL_MAX];
|
||
|
__le16 tavg[CXT_FLCTRL_MAX]; /* avg try BT-Slot-TDD/BT-slot-FDD time */
|
||
|
__le16 tmax[CXT_FLCTRL_MAX]; /* max try BT-Slot-TDD/BT-slot-FDD time */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_cycle_time_info {
|
||
|
__le16 tavg[CXT_MAX]; /* avg wl/bt cycle time */
|
||
|
__le16 tmax[CXT_MAX]; /* max wl/bt cycle time */
|
||
|
__le16 tmaxdiff[CXT_MAX]; /* max wl-wl bt-bt cycle diff time */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_a2dp_trx_stat {
|
||
|
u8 empty_cnt;
|
||
|
u8 retry_cnt;
|
||
|
u8 tx_rate;
|
||
|
u8 tx_cnt;
|
||
|
u8 ack_cnt;
|
||
|
u8 nack_cnt;
|
||
|
u8 rsvd1;
|
||
|
u8 rsvd2;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_a2dp_trx_stat_v4 {
|
||
|
u8 empty_cnt;
|
||
|
u8 retry_cnt;
|
||
|
u8 tx_rate;
|
||
|
u8 tx_cnt;
|
||
|
u8 ack_cnt;
|
||
|
u8 nack_cnt;
|
||
|
u8 no_empty_cnt;
|
||
|
u8 rsvd;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_cycle_a2dp_empty_info {
|
||
|
__le16 cnt; /* a2dp empty cnt */
|
||
|
__le16 cnt_timeout; /* a2dp empty timeout cnt*/
|
||
|
__le16 tavg; /* avg a2dp empty time */
|
||
|
__le16 tmax; /* max a2dp empty time */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_cycle_leak_info {
|
||
|
__le32 cnt_rximr; /* the rximr occur at leak slot */
|
||
|
__le16 tavg; /* avg leak-slot time */
|
||
|
__le16 tmax; /* max leak-slot time */
|
||
|
} __packed;
|
||
|
|
||
|
#define RTW89_BTC_FDDT_PHASE_CYCLE GENMASK(9, 0)
|
||
|
#define RTW89_BTC_FDDT_TRAIN_STEP GENMASK(15, 10)
|
||
|
|
||
|
struct rtw89_btc_fbtc_cycle_fddt_info {
|
||
|
__le16 train_cycle;
|
||
|
__le16 tp;
|
||
|
|
||
|
s8 tx_power; /* absolute Tx power (dBm), 0xff-> no BTC control */
|
||
|
s8 bt_tx_power; /* decrease Tx power (dB) */
|
||
|
s8 bt_rx_gain; /* LNA constrain level */
|
||
|
u8 no_empty_cnt;
|
||
|
|
||
|
u8 rssi; /* [7:4] -> bt_rssi_level, [3:0]-> wl_rssi_level */
|
||
|
u8 cn; /* condition_num */
|
||
|
u8 train_status; /* [7:4]-> train-state, [3:0]-> train-phase */
|
||
|
u8 train_result; /* refer to enum btc_fddt_check_map */
|
||
|
} __packed;
|
||
|
|
||
|
#define RTW89_BTC_FDDT_CELL_TRAIN_STATE GENMASK(3, 0)
|
||
|
#define RTW89_BTC_FDDT_CELL_TRAIN_PHASE GENMASK(7, 4)
|
||
|
|
||
|
struct rtw89_btc_fbtc_fddt_cell_status {
|
||
|
s8 wl_tx_pwr;
|
||
|
s8 bt_tx_pwr;
|
||
|
s8 bt_rx_gain;
|
||
|
u8 state_phase; /* [0:3] train state, [4:7] train phase */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_cysta_v3 { /* statistics for cycles */
|
||
|
u8 fver;
|
||
|
u8 rsvd;
|
||
|
__le16 cycles; /* total cycle number */
|
||
|
__le16 slot_step_time[BTC_CYCLE_SLOT_MAX];
|
||
|
struct rtw89_btc_fbtc_cycle_time_info cycle_time;
|
||
|
struct rtw89_btc_fbtc_fdd_try_info fdd_try;
|
||
|
struct rtw89_btc_fbtc_cycle_a2dp_empty_info a2dp_ept;
|
||
|
struct rtw89_btc_fbtc_a2dp_trx_stat a2dp_trx[BTC_CYCLE_SLOT_MAX];
|
||
|
struct rtw89_btc_fbtc_cycle_leak_info leak_slot;
|
||
|
__le32 slot_cnt[CXST_MAX]; /* slot count */
|
||
|
__le32 bcn_cnt[CXBCN_MAX];
|
||
|
__le32 collision_cnt; /* counter for event/timer occur at the same time */
|
||
|
__le32 skip_cnt;
|
||
|
__le32 except_cnt;
|
||
|
__le32 except_map;
|
||
|
} __packed;
|
||
|
|
||
|
#define FDD_TRAIN_WL_DIRECTION 2
|
||
|
#define FDD_TRAIN_WL_RSSI_LEVEL 5
|
||
|
#define FDD_TRAIN_BT_RSSI_LEVEL 5
|
||
|
|
||
|
struct rtw89_btc_fbtc_cysta_v4 { /* statistics for cycles */
|
||
|
u8 fver;
|
||
|
u8 rsvd;
|
||
|
u8 collision_cnt; /* counter for event/timer occur at the same time */
|
||
|
u8 except_cnt;
|
||
|
|
||
|
__le16 skip_cnt;
|
||
|
__le16 cycles; /* total cycle number */
|
||
|
|
||
|
__le16 slot_step_time[BTC_CYCLE_SLOT_MAX]; /* record the wl/bt slot time */
|
||
|
__le16 slot_cnt[CXST_MAX]; /* slot count */
|
||
|
__le16 bcn_cnt[CXBCN_MAX];
|
||
|
struct rtw89_btc_fbtc_cycle_time_info cycle_time;
|
||
|
struct rtw89_btc_fbtc_cycle_leak_info leak_slot;
|
||
|
struct rtw89_btc_fbtc_cycle_a2dp_empty_info a2dp_ept;
|
||
|
struct rtw89_btc_fbtc_a2dp_trx_stat_v4 a2dp_trx[BTC_CYCLE_SLOT_MAX];
|
||
|
struct rtw89_btc_fbtc_cycle_fddt_info fddt_trx[BTC_CYCLE_SLOT_MAX];
|
||
|
struct rtw89_btc_fbtc_fddt_cell_status fddt_cells[FDD_TRAIN_WL_DIRECTION]
|
||
|
[FDD_TRAIN_WL_RSSI_LEVEL]
|
||
|
[FDD_TRAIN_BT_RSSI_LEVEL];
|
||
|
__le32 except_map;
|
||
|
} __packed;
|
||
|
|
||
|
union rtw89_btc_fbtc_cysta_info {
|
||
|
struct rtw89_btc_fbtc_cysta_v2 v2;
|
||
|
struct rtw89_btc_fbtc_cysta_v3 v3;
|
||
|
struct rtw89_btc_fbtc_cysta_v4 v4;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_fbtc_cynullsta_v1 { /* cycle null statistics */
|
||
|
u8 fver; /* btc_ver::fcxnullsta */
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd2;
|
||
|
__le32 max_t[2]; /* max_t for 0:null0/1:null1 */
|
||
|
__le32 avg_t[2]; /* avg_t for 0:null0/1:null1 */
|
||
|
__le32 result[2][4]; /* 0:fail, 1:ok, 2:on_time, 3:retry */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_cynullsta_v2 { /* cycle null statistics */
|
||
|
u8 fver; /* btc_ver::fcxnullsta */
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd2;
|
||
|
__le32 max_t[2]; /* max_t for 0:null0/1:null1 */
|
||
|
__le32 avg_t[2]; /* avg_t for 0:null0/1:null1 */
|
||
|
__le32 result[2][5]; /* 0:fail, 1:ok, 2:on_time, 3:retry, 4:tx */
|
||
|
} __packed;
|
||
|
|
||
|
union rtw89_btc_fbtc_cynullsta_info {
|
||
|
struct rtw89_btc_fbtc_cynullsta_v1 v1; /* info from fw */
|
||
|
struct rtw89_btc_fbtc_cynullsta_v2 v2;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_fbtc_btver {
|
||
|
u8 fver; /* btc_ver::fcxbtver */
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd2;
|
||
|
__le32 coex_ver; /*bit[15:8]->shared, bit[7:0]->non-shared */
|
||
|
__le32 fw_ver;
|
||
|
__le32 feature;
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_btscan {
|
||
|
u8 fver; /* btc_ver::fcxbtscan */
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd2;
|
||
|
u8 scan[6];
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_btafh {
|
||
|
u8 fver; /* btc_ver::fcxbtafh */
|
||
|
u8 rsvd;
|
||
|
__le16 rsvd2;
|
||
|
u8 afh_l[4]; /*bit0:2402, bit1: 2403.... bit31:2433 */
|
||
|
u8 afh_m[4]; /*bit0:2434, bit1: 2435.... bit31:2465 */
|
||
|
u8 afh_h[4]; /*bit0:2466, bit1:2467......bit14:2480 */
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_btafh_v2 {
|
||
|
u8 fver; /* btc_ver::fcxbtafh */
|
||
|
u8 rsvd;
|
||
|
u8 rsvd2;
|
||
|
u8 map_type;
|
||
|
u8 afh_l[4];
|
||
|
u8 afh_m[4];
|
||
|
u8 afh_h[4];
|
||
|
u8 afh_le_a[4];
|
||
|
u8 afh_le_b[4];
|
||
|
} __packed;
|
||
|
|
||
|
struct rtw89_btc_fbtc_btdevinfo {
|
||
|
u8 fver; /* btc_ver::fcxbtdevinfo */
|
||
|
u8 rsvd;
|
||
|
__le16 vendor_id;
|
||
|
__le32 dev_name; /* only 24 bits valid */
|
||
|
__le32 flush_time;
|
||
|
} __packed;
|
||
|
|
||
|
#define RTW89_BTC_WL_DEF_TX_PWR GENMASK(7, 0)
|
||
|
struct rtw89_btc_rf_trx_para {
|
||
|
u32 wl_tx_power; /* absolute Tx power (dBm), 0xff-> no BTC control */
|
||
|
u32 wl_rx_gain; /* rx gain table index (TBD.) */
|
||
|
u8 bt_tx_power; /* decrease Tx power (dB) */
|
||
|
u8 bt_rx_gain; /* LNA constrain level */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_dm {
|
||
|
struct rtw89_btc_fbtc_slot slot[CXST_MAX];
|
||
|
struct rtw89_btc_fbtc_slot slot_now[CXST_MAX];
|
||
|
struct rtw89_btc_fbtc_tdma tdma;
|
||
|
struct rtw89_btc_fbtc_tdma tdma_now;
|
||
|
struct rtw89_mac_ax_coex_gnt gnt;
|
||
|
struct rtw89_btc_init_info init_info; /* pass to wl_fw if offload */
|
||
|
struct rtw89_btc_rf_trx_para rf_trx_para;
|
||
|
struct rtw89_btc_wl_tx_limit_para wl_tx_limit;
|
||
|
struct rtw89_btc_dm_step dm_step;
|
||
|
struct rtw89_btc_wl_scc_ctrl wl_scc;
|
||
|
union rtw89_btc_dm_error_map error;
|
||
|
u32 cnt_dm[BTC_DCNT_NUM];
|
||
|
u32 cnt_notify[BTC_NCNT_NUM];
|
||
|
|
||
|
u32 update_slot_map;
|
||
|
u32 set_ant_path;
|
||
|
|
||
|
u32 wl_only: 1;
|
||
|
u32 wl_fw_cx_offload: 1;
|
||
|
u32 freerun: 1;
|
||
|
u32 wl_ps_ctrl: 2;
|
||
|
u32 wl_mimo_ps: 1;
|
||
|
u32 leak_ap: 1;
|
||
|
u32 noisy_level: 3;
|
||
|
u32 coex_info_map: 8;
|
||
|
u32 bt_only: 1;
|
||
|
u32 wl_btg_rx: 1;
|
||
|
u32 trx_para_level: 8;
|
||
|
u32 wl_stb_chg: 1;
|
||
|
u32 pta_owner: 1;
|
||
|
u32 tdma_instant_excute: 1;
|
||
|
u32 rsvd: 1;
|
||
|
|
||
|
u16 slot_dur[CXST_MAX];
|
||
|
|
||
|
u8 run_reason;
|
||
|
u8 run_action;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_ctrl {
|
||
|
u32 manual: 1;
|
||
|
u32 igno_bt: 1;
|
||
|
u32 always_freerun: 1;
|
||
|
u32 trace_step: 16;
|
||
|
u32 rsvd: 12;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_dbg {
|
||
|
/* cmd "rb" */
|
||
|
bool rb_done;
|
||
|
u32 rb_val;
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_btf_fw_event {
|
||
|
BTF_EVNT_RPT = 0,
|
||
|
BTF_EVNT_BT_INFO = 1,
|
||
|
BTF_EVNT_BT_SCBD = 2,
|
||
|
BTF_EVNT_BT_REG = 3,
|
||
|
BTF_EVNT_CX_RUNINFO = 4,
|
||
|
BTF_EVNT_BT_PSD = 5,
|
||
|
BTF_EVNT_BUF_OVERFLOW,
|
||
|
BTF_EVNT_C2H_LOOPBACK,
|
||
|
BTF_EVNT_MAX,
|
||
|
};
|
||
|
|
||
|
enum btf_fw_event_report {
|
||
|
BTC_RPT_TYPE_CTRL = 0x0,
|
||
|
BTC_RPT_TYPE_TDMA,
|
||
|
BTC_RPT_TYPE_SLOT,
|
||
|
BTC_RPT_TYPE_CYSTA,
|
||
|
BTC_RPT_TYPE_STEP,
|
||
|
BTC_RPT_TYPE_NULLSTA,
|
||
|
BTC_RPT_TYPE_MREG,
|
||
|
BTC_RPT_TYPE_GPIO_DBG,
|
||
|
BTC_RPT_TYPE_BT_VER,
|
||
|
BTC_RPT_TYPE_BT_SCAN,
|
||
|
BTC_RPT_TYPE_BT_AFH,
|
||
|
BTC_RPT_TYPE_BT_DEVICE,
|
||
|
BTC_RPT_TYPE_TEST,
|
||
|
BTC_RPT_TYPE_MAX = 31
|
||
|
};
|
||
|
|
||
|
enum rtw_btc_btf_reg_type {
|
||
|
REG_MAC = 0x0,
|
||
|
REG_BB = 0x1,
|
||
|
REG_RF = 0x2,
|
||
|
REG_BT_RF = 0x3,
|
||
|
REG_BT_MODEM = 0x4,
|
||
|
REG_BT_BLUEWIZE = 0x5,
|
||
|
REG_BT_VENDOR = 0x6,
|
||
|
REG_BT_LE = 0x7,
|
||
|
REG_MAX_TYPE,
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_cmn_info {
|
||
|
u32 rx_cnt;
|
||
|
u32 rx_len;
|
||
|
u32 req_len; /* expected rsp len */
|
||
|
u8 req_fver; /* expected rsp fver */
|
||
|
u8 rsp_fver; /* fver from fw */
|
||
|
u8 valid;
|
||
|
} __packed;
|
||
|
|
||
|
union rtw89_btc_fbtc_btafh_info {
|
||
|
struct rtw89_btc_fbtc_btafh v1;
|
||
|
struct rtw89_btc_fbtc_btafh_v2 v2;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_report_ctrl_state {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
union rtw89_btc_fbtc_rpt_ctrl_ver_info finfo;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_tdma {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
union rtw89_btc_fbtc_tdma_le32 finfo;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_slots {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
struct rtw89_btc_fbtc_slots finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_cysta {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
union rtw89_btc_fbtc_cysta_info finfo;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_step {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
union rtw89_btc_fbtc_steps_info finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_nullsta {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
union rtw89_btc_fbtc_cynullsta_info finfo;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_mreg {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
struct rtw89_btc_fbtc_mreg_val finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_gpio_dbg {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
struct rtw89_btc_fbtc_gpio_dbg finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_btver {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
struct rtw89_btc_fbtc_btver finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_btscan {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
struct rtw89_btc_fbtc_btscan finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_btafh {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
union rtw89_btc_fbtc_btafh_info finfo;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_rpt_fbtc_btdev {
|
||
|
struct rtw89_btc_rpt_cmn_info cinfo; /* common info, by driver */
|
||
|
struct rtw89_btc_fbtc_btdevinfo finfo; /* info from fw */
|
||
|
};
|
||
|
|
||
|
enum rtw89_btc_btfre_type {
|
||
|
BTFRE_INVALID_INPUT = 0x0, /* invalid input parameters */
|
||
|
BTFRE_UNDEF_TYPE,
|
||
|
BTFRE_EXCEPTION,
|
||
|
BTFRE_MAX,
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_btf_fwinfo {
|
||
|
u32 cnt_c2h;
|
||
|
u32 cnt_h2c;
|
||
|
u32 cnt_h2c_fail;
|
||
|
u32 event[BTF_EVNT_MAX];
|
||
|
|
||
|
u32 err[BTFRE_MAX];
|
||
|
u32 len_mismch;
|
||
|
u32 fver_mismch;
|
||
|
u32 rpt_en_map;
|
||
|
|
||
|
struct rtw89_btc_report_ctrl_state rpt_ctrl;
|
||
|
struct rtw89_btc_rpt_fbtc_tdma rpt_fbtc_tdma;
|
||
|
struct rtw89_btc_rpt_fbtc_slots rpt_fbtc_slots;
|
||
|
struct rtw89_btc_rpt_fbtc_cysta rpt_fbtc_cysta;
|
||
|
struct rtw89_btc_rpt_fbtc_step rpt_fbtc_step;
|
||
|
struct rtw89_btc_rpt_fbtc_nullsta rpt_fbtc_nullsta;
|
||
|
struct rtw89_btc_rpt_fbtc_mreg rpt_fbtc_mregval;
|
||
|
struct rtw89_btc_rpt_fbtc_gpio_dbg rpt_fbtc_gpio_dbg;
|
||
|
struct rtw89_btc_rpt_fbtc_btver rpt_fbtc_btver;
|
||
|
struct rtw89_btc_rpt_fbtc_btscan rpt_fbtc_btscan;
|
||
|
struct rtw89_btc_rpt_fbtc_btafh rpt_fbtc_btafh;
|
||
|
struct rtw89_btc_rpt_fbtc_btdev rpt_fbtc_btdev;
|
||
|
};
|
||
|
|
||
|
struct rtw89_btc_ver {
|
||
|
enum rtw89_core_chip_id chip_id;
|
||
|
u32 fw_ver_code;
|
||
|
|
||
|
u8 fcxbtcrpt;
|
||
|
u8 fcxtdma;
|
||
|
u8 fcxslots;
|
||
|
u8 fcxcysta;
|
||
|
u8 fcxstep;
|
||
|
u8 fcxnullsta;
|
||
|
u8 fcxmreg;
|
||
|
u8 fcxgpiodbg;
|
||
|
u8 fcxbtver;
|
||
|
u8 fcxbtscan;
|
||
|
u8 fcxbtafh;
|
||
|
u8 fcxbtdevinfo;
|
||
|
u8 fwlrole;
|
||
|
u8 frptmap;
|
||
|
u8 fcxctrl;
|
||
|
|
||
|
u16 info_buf;
|
||
|
u8 max_role_num;
|
||
|
};
|
||
|
|
||
|
#define RTW89_BTC_POLICY_MAXLEN 512
|
||
|
|
||
|
struct rtw89_btc {
|
||
|
const struct rtw89_btc_ver *ver;
|
||
|
|
||
|
struct rtw89_btc_cx cx;
|
||
|
struct rtw89_btc_dm dm;
|
||
|
struct rtw89_btc_ctrl ctrl;
|
||
|
struct rtw89_btc_module mdinfo;
|
||
|
struct rtw89_btc_btf_fwinfo fwinfo;
|
||
|
struct rtw89_btc_dbg dbg;
|
||
|
|
||
|
struct work_struct eapol_notify_work;
|
||
|
struct work_struct arp_notify_work;
|
||
|
struct work_struct dhcp_notify_work;
|
||
|
struct work_struct icmp_notify_work;
|
||
|
|
||
|
u32 bt_req_len;
|
||
|
|
||
|
u8 policy[RTW89_BTC_POLICY_MAXLEN];
|
||
|
u16 policy_len;
|
||
|
u16 policy_type;
|
||
|
bool bt_req_en;
|
||
|
bool update_policy_force;
|
||
|
bool lps;
|
||
|
};
|
||
|
|
||
|
enum rtw89_ra_mode {
|
||
|
RTW89_RA_MODE_CCK = BIT(0),
|
||
|
RTW89_RA_MODE_OFDM = BIT(1),
|
||
|
RTW89_RA_MODE_HT = BIT(2),
|
||
|
RTW89_RA_MODE_VHT = BIT(3),
|
||
|
RTW89_RA_MODE_HE = BIT(4),
|
||
|
};
|
||
|
|
||
|
enum rtw89_ra_report_mode {
|
||
|
RTW89_RA_RPT_MODE_LEGACY,
|
||
|
RTW89_RA_RPT_MODE_HT,
|
||
|
RTW89_RA_RPT_MODE_VHT,
|
||
|
RTW89_RA_RPT_MODE_HE,
|
||
|
};
|
||
|
|
||
|
enum rtw89_dig_noisy_level {
|
||
|
RTW89_DIG_NOISY_LEVEL0 = -1,
|
||
|
RTW89_DIG_NOISY_LEVEL1 = 0,
|
||
|
RTW89_DIG_NOISY_LEVEL2 = 1,
|
||
|
RTW89_DIG_NOISY_LEVEL3 = 2,
|
||
|
RTW89_DIG_NOISY_LEVEL_MAX = 3,
|
||
|
};
|
||
|
|
||
|
enum rtw89_gi_ltf {
|
||
|
RTW89_GILTF_LGI_4XHE32 = 0,
|
||
|
RTW89_GILTF_SGI_4XHE08 = 1,
|
||
|
RTW89_GILTF_2XHE16 = 2,
|
||
|
RTW89_GILTF_2XHE08 = 3,
|
||
|
RTW89_GILTF_1XHE16 = 4,
|
||
|
RTW89_GILTF_1XHE08 = 5,
|
||
|
RTW89_GILTF_MAX
|
||
|
};
|
||
|
|
||
|
enum rtw89_rx_frame_type {
|
||
|
RTW89_RX_TYPE_MGNT = 0,
|
||
|
RTW89_RX_TYPE_CTRL = 1,
|
||
|
RTW89_RX_TYPE_DATA = 2,
|
||
|
RTW89_RX_TYPE_RSVD = 3,
|
||
|
};
|
||
|
|
||
|
struct rtw89_ra_info {
|
||
|
u8 is_dis_ra:1;
|
||
|
/* Bit0 : CCK
|
||
|
* Bit1 : OFDM
|
||
|
* Bit2 : HT
|
||
|
* Bit3 : VHT
|
||
|
* Bit4 : HE
|
||
|
*/
|
||
|
u8 mode_ctrl:5;
|
||
|
u8 bw_cap:2;
|
||
|
u8 macid;
|
||
|
u8 dcm_cap:1;
|
||
|
u8 er_cap:1;
|
||
|
u8 init_rate_lv:2;
|
||
|
u8 upd_all:1;
|
||
|
u8 en_sgi:1;
|
||
|
u8 ldpc_cap:1;
|
||
|
u8 stbc_cap:1;
|
||
|
u8 ss_num:3;
|
||
|
u8 giltf:3;
|
||
|
u8 upd_bw_nss_mask:1;
|
||
|
u8 upd_mask:1;
|
||
|
u64 ra_mask; /* 63 bits ra_mask + 1 bit CSI ctrl */
|
||
|
/* BFee CSI */
|
||
|
u8 band_num;
|
||
|
u8 ra_csi_rate_en:1;
|
||
|
u8 fixed_csi_rate_en:1;
|
||
|
u8 cr_tbl_sel:1;
|
||
|
u8 fix_giltf_en:1;
|
||
|
u8 fix_giltf:3;
|
||
|
u8 rsvd2:1;
|
||
|
u8 csi_mcs_ss_idx;
|
||
|
u8 csi_mode:2;
|
||
|
u8 csi_gi_ltf:3;
|
||
|
u8 csi_bw:3;
|
||
|
};
|
||
|
|
||
|
#define RTW89_PPDU_MAX_USR 4
|
||
|
#define RTW89_PPDU_MAC_INFO_USR_SIZE 4
|
||
|
#define RTW89_PPDU_MAC_INFO_SIZE 8
|
||
|
#define RTW89_PPDU_MAC_RX_CNT_SIZE 96
|
||
|
|
||
|
#define RTW89_MAX_RX_AGG_NUM 64
|
||
|
#define RTW89_MAX_TX_AGG_NUM 128
|
||
|
|
||
|
struct rtw89_ampdu_params {
|
||
|
u16 agg_num;
|
||
|
bool amsdu;
|
||
|
};
|
||
|
|
||
|
struct rtw89_ra_report {
|
||
|
struct rate_info txrate;
|
||
|
u32 bit_rate;
|
||
|
u16 hw_rate;
|
||
|
bool might_fallback_legacy;
|
||
|
};
|
||
|
|
||
|
DECLARE_EWMA(rssi, 10, 16);
|
||
|
|
||
|
struct rtw89_ba_cam_entry {
|
||
|
struct list_head list;
|
||
|
u8 tid;
|
||
|
};
|
||
|
|
||
|
#define RTW89_MAX_ADDR_CAM_NUM 128
|
||
|
#define RTW89_MAX_BSSID_CAM_NUM 20
|
||
|
#define RTW89_MAX_SEC_CAM_NUM 128
|
||
|
#define RTW89_MAX_BA_CAM_NUM 8
|
||
|
#define RTW89_SEC_CAM_IN_ADDR_CAM 7
|
||
|
|
||
|
struct rtw89_addr_cam_entry {
|
||
|
u8 addr_cam_idx;
|
||
|
u8 offset;
|
||
|
u8 len;
|
||
|
u8 valid : 1;
|
||
|
u8 addr_mask : 6;
|
||
|
u8 wapi : 1;
|
||
|
u8 mask_sel : 2;
|
||
|
u8 bssid_cam_idx: 6;
|
||
|
|
||
|
u8 sec_ent_mode;
|
||
|
DECLARE_BITMAP(sec_cam_map, RTW89_SEC_CAM_IN_ADDR_CAM);
|
||
|
u8 sec_ent_keyid[RTW89_SEC_CAM_IN_ADDR_CAM];
|
||
|
u8 sec_ent[RTW89_SEC_CAM_IN_ADDR_CAM];
|
||
|
struct rtw89_sec_cam_entry *sec_entries[RTW89_SEC_CAM_IN_ADDR_CAM];
|
||
|
};
|
||
|
|
||
|
struct rtw89_bssid_cam_entry {
|
||
|
u8 bssid[ETH_ALEN];
|
||
|
u8 phy_idx;
|
||
|
u8 bssid_cam_idx;
|
||
|
u8 offset;
|
||
|
u8 len;
|
||
|
u8 valid : 1;
|
||
|
u8 num;
|
||
|
};
|
||
|
|
||
|
struct rtw89_sec_cam_entry {
|
||
|
u8 sec_cam_idx;
|
||
|
u8 offset;
|
||
|
u8 len;
|
||
|
u8 type : 4;
|
||
|
u8 ext_key : 1;
|
||
|
u8 spp_mode : 1;
|
||
|
/* 256 bits */
|
||
|
u8 key[32];
|
||
|
};
|
||
|
|
||
|
struct rtw89_sta {
|
||
|
u8 mac_id;
|
||
|
bool disassoc;
|
||
|
bool er_cap;
|
||
|
struct rtw89_dev *rtwdev;
|
||
|
struct rtw89_vif *rtwvif;
|
||
|
struct rtw89_ra_info ra;
|
||
|
struct rtw89_ra_report ra_report;
|
||
|
int max_agg_wait;
|
||
|
u8 prev_rssi;
|
||
|
struct ewma_rssi avg_rssi;
|
||
|
struct ewma_rssi rssi[RF_PATH_MAX];
|
||
|
struct rtw89_ampdu_params ampdu_params[IEEE80211_NUM_TIDS];
|
||
|
struct ieee80211_rx_status rx_status;
|
||
|
u16 rx_hw_rate;
|
||
|
__le32 htc_template;
|
||
|
struct rtw89_addr_cam_entry addr_cam; /* AP mode or TDLS peer only */
|
||
|
struct rtw89_bssid_cam_entry bssid_cam; /* TDLS peer only */
|
||
|
struct list_head ba_cam_list;
|
||
|
|
||
|
bool use_cfg_mask;
|
||
|
struct cfg80211_bitrate_mask mask;
|
||
|
|
||
|
bool cctl_tx_time;
|
||
|
u32 ampdu_max_time:4;
|
||
|
bool cctl_tx_retry_limit;
|
||
|
u32 data_tx_cnt_lmt:6;
|
||
|
};
|
||
|
|
||
|
struct rtw89_efuse {
|
||
|
bool valid;
|
||
|
bool power_k_valid;
|
||
|
u8 xtal_cap;
|
||
|
u8 addr[ETH_ALEN];
|
||
|
u8 rfe_type;
|
||
|
char country_code[2];
|
||
|
};
|
||
|
|
||
|
struct rtw89_phy_rate_pattern {
|
||
|
u64 ra_mask;
|
||
|
u16 rate;
|
||
|
u8 ra_mode;
|
||
|
bool enable;
|
||
|
};
|
||
|
|
||
|
#define RTW89_P2P_MAX_NOA_NUM 2
|
||
|
|
||
|
struct rtw89_vif {
|
||
|
struct list_head list;
|
||
|
struct rtw89_dev *rtwdev;
|
||
|
enum rtw89_sub_entity_idx sub_entity_idx;
|
||
|
|
||
|
u8 mac_id;
|
||
|
u8 port;
|
||
|
u8 mac_addr[ETH_ALEN];
|
||
|
u8 bssid[ETH_ALEN];
|
||
|
u8 phy_idx;
|
||
|
u8 mac_idx;
|
||
|
u8 net_type;
|
||
|
u8 wifi_role;
|
||
|
u8 self_role;
|
||
|
u8 wmm;
|
||
|
u8 bcn_hit_cond;
|
||
|
u8 hit_rule;
|
||
|
u8 last_noa_nr;
|
||
|
bool trigger;
|
||
|
bool lsig_txop;
|
||
|
u8 tgt_ind;
|
||
|
u8 frm_tgt_ind;
|
||
|
bool wowlan_pattern;
|
||
|
bool wowlan_uc;
|
||
|
bool wowlan_magic;
|
||
|
bool is_hesta;
|
||
|
bool last_a_ctrl;
|
||
|
bool dyn_tb_bedge_en;
|
||
|
u8 def_tri_idx;
|
||
|
u32 tdls_peer;
|
||
|
struct work_struct update_beacon_work;
|
||
|
struct rtw89_addr_cam_entry addr_cam;
|
||
|
struct rtw89_bssid_cam_entry bssid_cam;
|
||
|
struct ieee80211_tx_queue_params tx_params[IEEE80211_NUM_ACS];
|
||
|
struct rtw89_traffic_stats stats;
|
||
|
struct rtw89_phy_rate_pattern rate_pattern;
|
||
|
struct cfg80211_scan_request *scan_req;
|
||
|
struct ieee80211_scan_ies *scan_ies;
|
||
|
struct list_head general_pkt_list;
|
||
|
};
|
||
|
|
||
|
enum rtw89_lv1_rcvy_step {
|
||
|
RTW89_LV1_RCVY_STEP_1,
|
||
|
RTW89_LV1_RCVY_STEP_2,
|
||
|
};
|
||
|
|
||
|
struct rtw89_hci_ops {
|
||
|
int (*tx_write)(struct rtw89_dev *rtwdev, struct rtw89_core_tx_request *tx_req);
|
||
|
void (*tx_kick_off)(struct rtw89_dev *rtwdev, u8 txch);
|
||
|
void (*flush_queues)(struct rtw89_dev *rtwdev, u32 queues, bool drop);
|
||
|
void (*reset)(struct rtw89_dev *rtwdev);
|
||
|
int (*start)(struct rtw89_dev *rtwdev);
|
||
|
void (*stop)(struct rtw89_dev *rtwdev);
|
||
|
void (*pause)(struct rtw89_dev *rtwdev, bool pause);
|
||
|
void (*switch_mode)(struct rtw89_dev *rtwdev, bool low_power);
|
||
|
void (*recalc_int_mit)(struct rtw89_dev *rtwdev);
|
||
|
|
||
|
u8 (*read8)(struct rtw89_dev *rtwdev, u32 addr);
|
||
|
u16 (*read16)(struct rtw89_dev *rtwdev, u32 addr);
|
||
|
u32 (*read32)(struct rtw89_dev *rtwdev, u32 addr);
|
||
|
void (*write8)(struct rtw89_dev *rtwdev, u32 addr, u8 data);
|
||
|
void (*write16)(struct rtw89_dev *rtwdev, u32 addr, u16 data);
|
||
|
void (*write32)(struct rtw89_dev *rtwdev, u32 addr, u32 data);
|
||
|
|
||
|
int (*mac_pre_init)(struct rtw89_dev *rtwdev);
|
||
|
int (*mac_post_init)(struct rtw89_dev *rtwdev);
|
||
|
int (*deinit)(struct rtw89_dev *rtwdev);
|
||
|
|
||
|
u32 (*check_and_reclaim_tx_resource)(struct rtw89_dev *rtwdev, u8 txch);
|
||
|
int (*mac_lv1_rcvy)(struct rtw89_dev *rtwdev, enum rtw89_lv1_rcvy_step step);
|
||
|
void (*dump_err_status)(struct rtw89_dev *rtwdev);
|
||
|
int (*napi_poll)(struct napi_struct *napi, int budget);
|
||
|
|
||
|
/* Deal with locks inside recovery_start and recovery_complete callbacks
|
||
|
* by hci instance, and handle things which need to consider under SER.
|
||
|
* e.g. turn on/off interrupts except for the one for halt notification.
|
||
|
*/
|
||
|
void (*recovery_start)(struct rtw89_dev *rtwdev);
|
||
|
void (*recovery_complete)(struct rtw89_dev *rtwdev);
|
||
|
|
||
|
void (*ctrl_txdma_ch)(struct rtw89_dev *rtwdev, bool enable);
|
||
|
void (*ctrl_txdma_fw_ch)(struct rtw89_dev *rtwdev, bool enable);
|
||
|
void (*ctrl_trxhci)(struct rtw89_dev *rtwdev, bool enable);
|
||
|
int (*poll_txdma_ch)(struct rtw89_dev *rtwdev);
|
||
|
void (*clr_idx_all)(struct rtw89_dev *rtwdev);
|
||
|
void (*clear)(struct rtw89_dev *rtwdev, struct pci_dev *pdev);
|
||
|
void (*disable_intr)(struct rtw89_dev *rtwdev);
|
||
|
void (*enable_intr)(struct rtw89_dev *rtwdev);
|
||
|
int (*rst_bdram)(struct rtw89_dev *rtwdev);
|
||
|
};
|
||
|
|
||
|
struct rtw89_hci_info {
|
||
|
const struct rtw89_hci_ops *ops;
|
||
|
enum rtw89_hci_type type;
|
||
|
u32 rpwm_addr;
|
||
|
u32 cpwm_addr;
|
||
|
bool paused;
|
||
|
};
|
||
|
|
||
|
struct rtw89_chip_ops {
|
||
|
int (*enable_bb_rf)(struct rtw89_dev *rtwdev);
|
||
|
int (*disable_bb_rf)(struct rtw89_dev *rtwdev);
|
||
|
void (*bb_reset)(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_phy_idx phy_idx);
|
||
|
void (*bb_sethw)(struct rtw89_dev *rtwdev);
|
||
|
u32 (*read_rf)(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path,
|
||
|
u32 addr, u32 mask);
|
||
|
bool (*write_rf)(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path,
|
||
|
u32 addr, u32 mask, u32 data);
|
||
|
void (*set_channel)(struct rtw89_dev *rtwdev,
|
||
|
const struct rtw89_chan *chan,
|
||
|
enum rtw89_mac_idx mac_idx,
|
||
|
enum rtw89_phy_idx phy_idx);
|
||
|
void (*set_channel_help)(struct rtw89_dev *rtwdev, bool enter,
|
||
|
struct rtw89_channel_help_params *p,
|
||
|
const struct rtw89_chan *chan,
|
||
|
enum rtw89_mac_idx mac_idx,
|
||
|
enum rtw89_phy_idx phy_idx);
|
||
|
int (*read_efuse)(struct rtw89_dev *rtwdev, u8 *log_map);
|
||
|
int (*read_phycap)(struct rtw89_dev *rtwdev, u8 *phycap_map);
|
||
|
void (*fem_setup)(struct rtw89_dev *rtwdev);
|
||
|
void (*rfk_init)(struct rtw89_dev *rtwdev);
|
||
|
void (*rfk_channel)(struct rtw89_dev *rtwdev);
|
||
|
void (*rfk_band_changed)(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_phy_idx phy_idx);
|
||
|
void (*rfk_scan)(struct rtw89_dev *rtwdev, bool start);
|
||
|
void (*rfk_track)(struct rtw89_dev *rtwdev);
|
||
|
void (*power_trim)(struct rtw89_dev *rtwdev);
|
||
|
void (*set_txpwr)(struct rtw89_dev *rtwdev,
|
||
|
const struct rtw89_chan *chan,
|
||
|
enum rtw89_phy_idx phy_idx);
|
||
|
void (*set_txpwr_ctrl)(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_phy_idx phy_idx);
|
||
|
int (*init_txpwr_unit)(struct rtw89_dev *rtwdev, enum rtw89_phy_idx phy_idx);
|
||
|
u8 (*get_thermal)(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path);
|
||
|
void (*ctrl_btg)(struct rtw89_dev *rtwdev, bool btg);
|
||
|
void (*query_ppdu)(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_rx_phy_ppdu *phy_ppdu,
|
||
|
struct ieee80211_rx_status *status);
|
||
|
void (*bb_ctrl_btc_preagc)(struct rtw89_dev *rtwdev, bool bt_en);
|
||
|
void (*cfg_txrx_path)(struct rtw89_dev *rtwdev);
|
||
|
void (*set_txpwr_ul_tb_offset)(struct rtw89_dev *rtwdev,
|
||
|
s8 pw_ofst, enum rtw89_mac_idx mac_idx);
|
||
|
int (*pwr_on_func)(struct rtw89_dev *rtwdev);
|
||
|
int (*pwr_off_func)(struct rtw89_dev *rtwdev);
|
||
|
void (*fill_txdesc)(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc);
|
||
|
void (*fill_txdesc_fwcmd)(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc);
|
||
|
int (*cfg_ctrl_path)(struct rtw89_dev *rtwdev, bool wl);
|
||
|
int (*mac_cfg_gnt)(struct rtw89_dev *rtwdev,
|
||
|
const struct rtw89_mac_ax_coex_gnt *gnt_cfg);
|
||
|
int (*stop_sch_tx)(struct rtw89_dev *rtwdev, u8 mac_idx,
|
||
|
u32 *tx_en, enum rtw89_sch_tx_sel sel);
|
||
|
int (*resume_sch_tx)(struct rtw89_dev *rtwdev, u8 mac_idx, u32 tx_en);
|
||
|
int (*h2c_dctl_sec_cam)(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_vif *rtwvif,
|
||
|
struct rtw89_sta *rtwsta);
|
||
|
|
||
|
void (*btc_set_rfe)(struct rtw89_dev *rtwdev);
|
||
|
void (*btc_init_cfg)(struct rtw89_dev *rtwdev);
|
||
|
void (*btc_set_wl_pri)(struct rtw89_dev *rtwdev, u8 map, bool state);
|
||
|
void (*btc_set_wl_txpwr_ctrl)(struct rtw89_dev *rtwdev, u32 txpwr_val);
|
||
|
s8 (*btc_get_bt_rssi)(struct rtw89_dev *rtwdev, s8 val);
|
||
|
void (*btc_update_bt_cnt)(struct rtw89_dev *rtwdev);
|
||
|
void (*btc_wl_s1_standby)(struct rtw89_dev *rtwdev, bool state);
|
||
|
void (*btc_set_policy)(struct rtw89_dev *rtwdev, u16 policy_type);
|
||
|
void (*btc_set_wl_rx_gain)(struct rtw89_dev *rtwdev, u32 level);
|
||
|
};
|
||
|
|
||
|
enum rtw89_dma_ch {
|
||
|
RTW89_DMA_ACH0 = 0,
|
||
|
RTW89_DMA_ACH1 = 1,
|
||
|
RTW89_DMA_ACH2 = 2,
|
||
|
RTW89_DMA_ACH3 = 3,
|
||
|
RTW89_DMA_ACH4 = 4,
|
||
|
RTW89_DMA_ACH5 = 5,
|
||
|
RTW89_DMA_ACH6 = 6,
|
||
|
RTW89_DMA_ACH7 = 7,
|
||
|
RTW89_DMA_B0MG = 8,
|
||
|
RTW89_DMA_B0HI = 9,
|
||
|
RTW89_DMA_B1MG = 10,
|
||
|
RTW89_DMA_B1HI = 11,
|
||
|
RTW89_DMA_H2C = 12,
|
||
|
RTW89_DMA_CH_NUM = 13
|
||
|
};
|
||
|
|
||
|
enum rtw89_qta_mode {
|
||
|
RTW89_QTA_SCC,
|
||
|
RTW89_QTA_DLFW,
|
||
|
RTW89_QTA_WOW,
|
||
|
|
||
|
/* keep last */
|
||
|
RTW89_QTA_INVALID,
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_ch_cfg {
|
||
|
u16 min;
|
||
|
u16 max;
|
||
|
#define grp_0 0
|
||
|
#define grp_1 1
|
||
|
#define grp_num 2
|
||
|
u8 grp;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_ch_info {
|
||
|
u16 aval;
|
||
|
u16 used;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_pub_cfg {
|
||
|
u16 grp0;
|
||
|
u16 grp1;
|
||
|
u16 pub_max;
|
||
|
u16 wp_thrd;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_pub_info {
|
||
|
u16 g0_used;
|
||
|
u16 g1_used;
|
||
|
u16 g0_aval;
|
||
|
u16 g1_aval;
|
||
|
u16 pub_aval;
|
||
|
u16 wp_aval;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_prec_cfg {
|
||
|
u16 ch011_prec;
|
||
|
u16 h2c_prec;
|
||
|
u16 wp_ch07_prec;
|
||
|
u16 wp_ch811_prec;
|
||
|
u8 ch011_full_cond;
|
||
|
u8 h2c_full_cond;
|
||
|
u8 wp_ch07_full_cond;
|
||
|
u8 wp_ch811_full_cond;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_param {
|
||
|
bool en;
|
||
|
bool h2c_en;
|
||
|
u8 mode;
|
||
|
const struct rtw89_hfc_ch_cfg *ch_cfg;
|
||
|
struct rtw89_hfc_ch_info ch_info[RTW89_DMA_CH_NUM];
|
||
|
struct rtw89_hfc_pub_cfg pub_cfg;
|
||
|
struct rtw89_hfc_pub_info pub_info;
|
||
|
struct rtw89_hfc_prec_cfg prec_cfg;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hfc_param_ini {
|
||
|
const struct rtw89_hfc_ch_cfg *ch_cfg;
|
||
|
const struct rtw89_hfc_pub_cfg *pub_cfg;
|
||
|
const struct rtw89_hfc_prec_cfg *prec_cfg;
|
||
|
u8 mode;
|
||
|
};
|
||
|
|
||
|
struct rtw89_dle_size {
|
||
|
u16 pge_size;
|
||
|
u16 lnk_pge_num;
|
||
|
u16 unlnk_pge_num;
|
||
|
};
|
||
|
|
||
|
struct rtw89_wde_quota {
|
||
|
u16 hif;
|
||
|
u16 wcpu;
|
||
|
u16 pkt_in;
|
||
|
u16 cpu_io;
|
||
|
};
|
||
|
|
||
|
struct rtw89_ple_quota {
|
||
|
u16 cma0_tx;
|
||
|
u16 cma1_tx;
|
||
|
u16 c2h;
|
||
|
u16 h2c;
|
||
|
u16 wcpu;
|
||
|
u16 mpdu_proc;
|
||
|
u16 cma0_dma;
|
||
|
u16 cma1_dma;
|
||
|
u16 bb_rpt;
|
||
|
u16 wd_rel;
|
||
|
u16 cpu_io;
|
||
|
u16 tx_rpt;
|
||
|
};
|
||
|
|
||
|
struct rtw89_dle_mem {
|
||
|
enum rtw89_qta_mode mode;
|
||
|
const struct rtw89_dle_size *wde_size;
|
||
|
const struct rtw89_dle_size *ple_size;
|
||
|
const struct rtw89_wde_quota *wde_min_qt;
|
||
|
const struct rtw89_wde_quota *wde_max_qt;
|
||
|
const struct rtw89_ple_quota *ple_min_qt;
|
||
|
const struct rtw89_ple_quota *ple_max_qt;
|
||
|
};
|
||
|
|
||
|
struct rtw89_reg_def {
|
||
|
u32 addr;
|
||
|
u32 mask;
|
||
|
};
|
||
|
|
||
|
struct rtw89_reg2_def {
|
||
|
u32 addr;
|
||
|
u32 data;
|
||
|
};
|
||
|
|
||
|
struct rtw89_reg3_def {
|
||
|
u32 addr;
|
||
|
u32 mask;
|
||
|
u32 data;
|
||
|
};
|
||
|
|
||
|
struct rtw89_reg5_def {
|
||
|
u8 flag; /* recognized by parsers */
|
||
|
u8 path;
|
||
|
u32 addr;
|
||
|
u32 mask;
|
||
|
u32 data;
|
||
|
};
|
||
|
|
||
|
struct rtw89_phy_table {
|
||
|
const struct rtw89_reg2_def *regs;
|
||
|
u32 n_regs;
|
||
|
enum rtw89_rf_path rf_path;
|
||
|
void (*config)(struct rtw89_dev *rtwdev, const struct rtw89_reg2_def *reg,
|
||
|
enum rtw89_rf_path rf_path, void *data);
|
||
|
};
|
||
|
|
||
|
struct rtw89_txpwr_table {
|
||
|
const void *data;
|
||
|
u32 size;
|
||
|
void (*load)(struct rtw89_dev *rtwdev,
|
||
|
const struct rtw89_txpwr_table *tbl);
|
||
|
};
|
||
|
|
||
|
struct rtw89_page_regs {
|
||
|
u32 hci_fc_ctrl;
|
||
|
u32 ch_page_ctrl;
|
||
|
u32 ach_page_ctrl;
|
||
|
u32 ach_page_info;
|
||
|
u32 pub_page_info3;
|
||
|
u32 pub_page_ctrl1;
|
||
|
u32 pub_page_ctrl2;
|
||
|
u32 pub_page_info1;
|
||
|
u32 pub_page_info2;
|
||
|
u32 wp_page_ctrl1;
|
||
|
u32 wp_page_ctrl2;
|
||
|
u32 wp_page_info1;
|
||
|
};
|
||
|
|
||
|
struct rtw89_imr_info {
|
||
|
u32 wdrls_imr_set;
|
||
|
u32 wsec_imr_reg;
|
||
|
u32 wsec_imr_set;
|
||
|
u32 mpdu_tx_imr_set;
|
||
|
u32 mpdu_rx_imr_set;
|
||
|
u32 sta_sch_imr_set;
|
||
|
u32 txpktctl_imr_b0_reg;
|
||
|
u32 txpktctl_imr_b0_clr;
|
||
|
u32 txpktctl_imr_b0_set;
|
||
|
u32 txpktctl_imr_b1_reg;
|
||
|
u32 txpktctl_imr_b1_clr;
|
||
|
u32 txpktctl_imr_b1_set;
|
||
|
u32 wde_imr_clr;
|
||
|
u32 wde_imr_set;
|
||
|
u32 ple_imr_clr;
|
||
|
u32 ple_imr_set;
|
||
|
u32 host_disp_imr_clr;
|
||
|
u32 host_disp_imr_set;
|
||
|
u32 cpu_disp_imr_clr;
|
||
|
u32 cpu_disp_imr_set;
|
||
|
u32 other_disp_imr_clr;
|
||
|
u32 other_disp_imr_set;
|
||
|
u32 bbrpt_com_err_imr_reg;
|
||
|
u32 bbrpt_chinfo_err_imr_reg;
|
||
|
u32 bbrpt_err_imr_set;
|
||
|
u32 bbrpt_dfs_err_imr_reg;
|
||
|
u32 ptcl_imr_clr;
|
||
|
u32 ptcl_imr_set;
|
||
|
u32 cdma_imr_0_reg;
|
||
|
u32 cdma_imr_0_clr;
|
||
|
u32 cdma_imr_0_set;
|
||
|
u32 cdma_imr_1_reg;
|
||
|
u32 cdma_imr_1_clr;
|
||
|
u32 cdma_imr_1_set;
|
||
|
u32 phy_intf_imr_reg;
|
||
|
u32 phy_intf_imr_clr;
|
||
|
u32 phy_intf_imr_set;
|
||
|
u32 rmac_imr_reg;
|
||
|
u32 rmac_imr_clr;
|
||
|
u32 rmac_imr_set;
|
||
|
u32 tmac_imr_reg;
|
||
|
u32 tmac_imr_clr;
|
||
|
u32 tmac_imr_set;
|
||
|
};
|
||
|
|
||
|
struct rtw89_rrsr_cfgs {
|
||
|
struct rtw89_reg3_def ref_rate;
|
||
|
struct rtw89_reg3_def rsc;
|
||
|
};
|
||
|
|
||
|
struct rtw89_dig_regs {
|
||
|
u32 seg0_pd_reg;
|
||
|
u32 pd_lower_bound_mask;
|
||
|
u32 pd_spatial_reuse_en;
|
||
|
struct rtw89_reg_def p0_lna_init;
|
||
|
struct rtw89_reg_def p1_lna_init;
|
||
|
struct rtw89_reg_def p0_tia_init;
|
||
|
struct rtw89_reg_def p1_tia_init;
|
||
|
struct rtw89_reg_def p0_rxb_init;
|
||
|
struct rtw89_reg_def p1_rxb_init;
|
||
|
struct rtw89_reg_def p0_p20_pagcugc_en;
|
||
|
struct rtw89_reg_def p0_s20_pagcugc_en;
|
||
|
struct rtw89_reg_def p1_p20_pagcugc_en;
|
||
|
struct rtw89_reg_def p1_s20_pagcugc_en;
|
||
|
};
|
||
|
|
||
|
struct rtw89_phy_ul_tb_info {
|
||
|
bool dyn_tb_tri_en;
|
||
|
u8 def_if_bandedge;
|
||
|
};
|
||
|
|
||
|
struct rtw89_chip_info {
|
||
|
enum rtw89_core_chip_id chip_id;
|
||
|
const struct rtw89_chip_ops *ops;
|
||
|
const char *fw_name;
|
||
|
bool try_ce_fw;
|
||
|
u32 fifo_size;
|
||
|
u32 dle_scc_rsvd_size;
|
||
|
u16 max_amsdu_limit;
|
||
|
bool dis_2g_40m_ul_ofdma;
|
||
|
u32 rsvd_ple_ofst;
|
||
|
const struct rtw89_hfc_param_ini *hfc_param_ini;
|
||
|
const struct rtw89_dle_mem *dle_mem;
|
||
|
u8 wde_qempty_acq_num;
|
||
|
u8 wde_qempty_mgq_sel;
|
||
|
u32 rf_base_addr[2];
|
||
|
u8 support_chanctx_num;
|
||
|
u8 support_bands;
|
||
|
bool support_bw160;
|
||
|
bool support_ul_tb_ctrl;
|
||
|
bool hw_sec_hdr;
|
||
|
u8 rf_path_num;
|
||
|
u8 tx_nss;
|
||
|
u8 rx_nss;
|
||
|
u8 acam_num;
|
||
|
u8 bcam_num;
|
||
|
u8 scam_num;
|
||
|
u8 bacam_num;
|
||
|
u8 bacam_dynamic_num;
|
||
|
bool bacam_v1;
|
||
|
|
||
|
u8 sec_ctrl_efuse_size;
|
||
|
u32 physical_efuse_size;
|
||
|
u32 logical_efuse_size;
|
||
|
u32 limit_efuse_size;
|
||
|
u32 dav_phy_efuse_size;
|
||
|
u32 dav_log_efuse_size;
|
||
|
u32 phycap_addr;
|
||
|
u32 phycap_size;
|
||
|
|
||
|
const struct rtw89_pwr_cfg * const *pwr_on_seq;
|
||
|
const struct rtw89_pwr_cfg * const *pwr_off_seq;
|
||
|
const struct rtw89_phy_table *bb_table;
|
||
|
const struct rtw89_phy_table *bb_gain_table;
|
||
|
const struct rtw89_phy_table *rf_table[RF_PATH_MAX];
|
||
|
const struct rtw89_phy_table *nctl_table;
|
||
|
const struct rtw89_txpwr_table *byr_table;
|
||
|
const struct rtw89_phy_dig_gain_table *dig_table;
|
||
|
const struct rtw89_dig_regs *dig_regs;
|
||
|
const struct rtw89_phy_tssi_dbw_table *tssi_dbw_table;
|
||
|
const s8 (*txpwr_lmt_2g)[RTW89_2G_BW_NUM][RTW89_NTX_NUM]
|
||
|
[RTW89_RS_LMT_NUM][RTW89_BF_NUM]
|
||
|
[RTW89_REGD_NUM][RTW89_2G_CH_NUM];
|
||
|
const s8 (*txpwr_lmt_5g)[RTW89_5G_BW_NUM][RTW89_NTX_NUM]
|
||
|
[RTW89_RS_LMT_NUM][RTW89_BF_NUM]
|
||
|
[RTW89_REGD_NUM][RTW89_5G_CH_NUM];
|
||
|
const s8 (*txpwr_lmt_6g)[RTW89_6G_BW_NUM][RTW89_NTX_NUM]
|
||
|
[RTW89_RS_LMT_NUM][RTW89_BF_NUM]
|
||
|
[RTW89_REGD_NUM][RTW89_6G_CH_NUM];
|
||
|
const s8 (*txpwr_lmt_ru_2g)[RTW89_RU_NUM][RTW89_NTX_NUM]
|
||
|
[RTW89_REGD_NUM][RTW89_2G_CH_NUM];
|
||
|
const s8 (*txpwr_lmt_ru_5g)[RTW89_RU_NUM][RTW89_NTX_NUM]
|
||
|
[RTW89_REGD_NUM][RTW89_5G_CH_NUM];
|
||
|
const s8 (*txpwr_lmt_ru_6g)[RTW89_RU_NUM][RTW89_NTX_NUM]
|
||
|
[RTW89_REGD_NUM][RTW89_6G_CH_NUM];
|
||
|
|
||
|
u8 txpwr_factor_rf;
|
||
|
u8 txpwr_factor_mac;
|
||
|
|
||
|
u32 para_ver;
|
||
|
u32 wlcx_desired;
|
||
|
u8 btcx_desired;
|
||
|
u8 scbd;
|
||
|
u8 mailbox;
|
||
|
|
||
|
u8 afh_guard_ch;
|
||
|
const u8 *wl_rssi_thres;
|
||
|
const u8 *bt_rssi_thres;
|
||
|
u8 rssi_tol;
|
||
|
|
||
|
u8 mon_reg_num;
|
||
|
const struct rtw89_btc_fbtc_mreg *mon_reg;
|
||
|
u8 rf_para_ulink_num;
|
||
|
const struct rtw89_btc_rf_trx_para *rf_para_ulink;
|
||
|
u8 rf_para_dlink_num;
|
||
|
const struct rtw89_btc_rf_trx_para *rf_para_dlink;
|
||
|
u8 ps_mode_supported;
|
||
|
u8 low_power_hci_modes;
|
||
|
|
||
|
u32 h2c_cctl_func_id;
|
||
|
u32 hci_func_en_addr;
|
||
|
u32 h2c_desc_size;
|
||
|
u32 txwd_body_size;
|
||
|
u32 h2c_ctrl_reg;
|
||
|
const u32 *h2c_regs;
|
||
|
u32 c2h_ctrl_reg;
|
||
|
const u32 *c2h_regs;
|
||
|
const struct rtw89_page_regs *page_regs;
|
||
|
bool cfo_src_fd;
|
||
|
const struct rtw89_reg_def *dcfo_comp;
|
||
|
u8 dcfo_comp_sft;
|
||
|
const struct rtw89_imr_info *imr_info;
|
||
|
const struct rtw89_rrsr_cfgs *rrsr_cfgs;
|
||
|
u32 bss_clr_map_reg;
|
||
|
u32 dma_ch_mask;
|
||
|
const struct wiphy_wowlan_support *wowlan_stub;
|
||
|
};
|
||
|
|
||
|
union rtw89_bus_info {
|
||
|
const struct rtw89_pci_info *pci;
|
||
|
};
|
||
|
|
||
|
struct rtw89_driver_info {
|
||
|
const struct rtw89_chip_info *chip;
|
||
|
union rtw89_bus_info bus;
|
||
|
};
|
||
|
|
||
|
enum rtw89_hcifc_mode {
|
||
|
RTW89_HCIFC_POH = 0,
|
||
|
RTW89_HCIFC_STF = 1,
|
||
|
RTW89_HCIFC_SDIO = 2,
|
||
|
|
||
|
/* keep last */
|
||
|
RTW89_HCIFC_MODE_INVALID,
|
||
|
};
|
||
|
|
||
|
struct rtw89_dle_info {
|
||
|
enum rtw89_qta_mode qta_mode;
|
||
|
u16 wde_pg_size;
|
||
|
u16 ple_pg_size;
|
||
|
u16 c0_rx_qta;
|
||
|
u16 c1_rx_qta;
|
||
|
};
|
||
|
|
||
|
enum rtw89_host_rpr_mode {
|
||
|
RTW89_RPR_MODE_POH = 0,
|
||
|
RTW89_RPR_MODE_STF
|
||
|
};
|
||
|
|
||
|
struct rtw89_mac_info {
|
||
|
struct rtw89_dle_info dle_info;
|
||
|
struct rtw89_hfc_param hfc_param;
|
||
|
enum rtw89_qta_mode qta_mode;
|
||
|
u8 rpwm_seq_num;
|
||
|
u8 cpwm_seq_num;
|
||
|
};
|
||
|
|
||
|
#define RTW89_COMPLETION_BUF_SIZE 24
|
||
|
#define RTW89_WAIT_COND_IDLE UINT_MAX
|
||
|
|
||
|
struct rtw89_completion_data {
|
||
|
bool err;
|
||
|
u8 buf[RTW89_COMPLETION_BUF_SIZE];
|
||
|
};
|
||
|
|
||
|
struct rtw89_wait_info {
|
||
|
atomic_t cond;
|
||
|
struct completion completion;
|
||
|
struct rtw89_completion_data data;
|
||
|
};
|
||
|
|
||
|
#define RTW89_WAIT_FOR_COND_TIMEOUT msecs_to_jiffies(100)
|
||
|
|
||
|
static inline void rtw89_init_wait(struct rtw89_wait_info *wait)
|
||
|
{
|
||
|
init_completion(&wait->completion);
|
||
|
atomic_set(&wait->cond, RTW89_WAIT_COND_IDLE);
|
||
|
}
|
||
|
|
||
|
enum rtw89_fw_type {
|
||
|
RTW89_FW_NORMAL = 1,
|
||
|
RTW89_FW_WOWLAN = 3,
|
||
|
RTW89_FW_NORMAL_CE = 5,
|
||
|
};
|
||
|
|
||
|
enum rtw89_fw_feature {
|
||
|
RTW89_FW_FEATURE_OLD_HT_RA_FORMAT,
|
||
|
RTW89_FW_FEATURE_SCAN_OFFLOAD,
|
||
|
RTW89_FW_FEATURE_TX_WAKE,
|
||
|
RTW89_FW_FEATURE_CRASH_TRIGGER,
|
||
|
RTW89_FW_FEATURE_PACKET_DROP,
|
||
|
RTW89_FW_FEATURE_NO_DEEP_PS,
|
||
|
RTW89_FW_FEATURE_NO_LPS_PG,
|
||
|
};
|
||
|
|
||
|
struct rtw89_fw_suit {
|
||
|
const u8 *data;
|
||
|
u32 size;
|
||
|
u8 major_ver;
|
||
|
u8 minor_ver;
|
||
|
u8 sub_ver;
|
||
|
u8 sub_idex;
|
||
|
u16 build_year;
|
||
|
u16 build_mon;
|
||
|
u16 build_date;
|
||
|
u16 build_hour;
|
||
|
u16 build_min;
|
||
|
u8 cmd_ver;
|
||
|
};
|
||
|
|
||
|
#define RTW89_FW_VER_CODE(major, minor, sub, idx) \
|
||
|
(((major) << 24) | ((minor) << 16) | ((sub) << 8) | (idx))
|
||
|
#define RTW89_FW_SUIT_VER_CODE(s) \
|
||
|
RTW89_FW_VER_CODE((s)->major_ver, (s)->minor_ver, (s)->sub_ver, (s)->sub_idex)
|
||
|
|
||
|
#define RTW89_MFW_HDR_VER_CODE(mfw_hdr) \
|
||
|
RTW89_FW_VER_CODE((mfw_hdr)->ver.major, \
|
||
|
(mfw_hdr)->ver.minor, \
|
||
|
(mfw_hdr)->ver.sub, \
|
||
|
(mfw_hdr)->ver.idx)
|
||
|
|
||
|
#define RTW89_FW_HDR_VER_CODE(fw_hdr) \
|
||
|
RTW89_FW_VER_CODE(GET_FW_HDR_MAJOR_VERSION(fw_hdr), \
|
||
|
GET_FW_HDR_MINOR_VERSION(fw_hdr), \
|
||
|
GET_FW_HDR_SUBVERSION(fw_hdr), \
|
||
|
GET_FW_HDR_SUBINDEX(fw_hdr))
|
||
|
|
||
|
struct rtw89_fw_info {
|
||
|
const struct firmware *firmware;
|
||
|
struct rtw89_dev *rtwdev;
|
||
|
struct completion completion;
|
||
|
u8 h2c_seq;
|
||
|
u8 rec_seq;
|
||
|
struct rtw89_fw_suit normal;
|
||
|
struct rtw89_fw_suit wowlan;
|
||
|
bool fw_log_enable;
|
||
|
u32 feature_map;
|
||
|
};
|
||
|
|
||
|
#define RTW89_CHK_FW_FEATURE(_feat, _fw) \
|
||
|
(!!((_fw)->feature_map & BIT(RTW89_FW_FEATURE_ ## _feat)))
|
||
|
|
||
|
#define RTW89_SET_FW_FEATURE(_fw_feature, _fw) \
|
||
|
((_fw)->feature_map |= BIT(_fw_feature))
|
||
|
|
||
|
struct rtw89_cam_info {
|
||
|
DECLARE_BITMAP(addr_cam_map, RTW89_MAX_ADDR_CAM_NUM);
|
||
|
DECLARE_BITMAP(bssid_cam_map, RTW89_MAX_BSSID_CAM_NUM);
|
||
|
DECLARE_BITMAP(sec_cam_map, RTW89_MAX_SEC_CAM_NUM);
|
||
|
DECLARE_BITMAP(ba_cam_map, RTW89_MAX_BA_CAM_NUM);
|
||
|
struct rtw89_ba_cam_entry ba_cam_entry[RTW89_MAX_BA_CAM_NUM];
|
||
|
};
|
||
|
|
||
|
enum rtw89_sar_sources {
|
||
|
RTW89_SAR_SOURCE_NONE,
|
||
|
RTW89_SAR_SOURCE_COMMON,
|
||
|
|
||
|
RTW89_SAR_SOURCE_NR,
|
||
|
};
|
||
|
|
||
|
enum rtw89_sar_subband {
|
||
|
RTW89_SAR_2GHZ_SUBBAND,
|
||
|
RTW89_SAR_5GHZ_SUBBAND_1_2, /* U-NII-1 and U-NII-2 */
|
||
|
RTW89_SAR_5GHZ_SUBBAND_2_E, /* U-NII-2-Extended */
|
||
|
RTW89_SAR_5GHZ_SUBBAND_3, /* U-NII-3 */
|
||
|
RTW89_SAR_6GHZ_SUBBAND_5_L, /* U-NII-5 lower part */
|
||
|
RTW89_SAR_6GHZ_SUBBAND_5_H, /* U-NII-5 higher part */
|
||
|
RTW89_SAR_6GHZ_SUBBAND_6, /* U-NII-6 */
|
||
|
RTW89_SAR_6GHZ_SUBBAND_7_L, /* U-NII-7 lower part */
|
||
|
RTW89_SAR_6GHZ_SUBBAND_7_H, /* U-NII-7 higher part */
|
||
|
RTW89_SAR_6GHZ_SUBBAND_8, /* U-NII-8 */
|
||
|
|
||
|
RTW89_SAR_SUBBAND_NR,
|
||
|
};
|
||
|
|
||
|
struct rtw89_sar_cfg_common {
|
||
|
bool set[RTW89_SAR_SUBBAND_NR];
|
||
|
s32 cfg[RTW89_SAR_SUBBAND_NR];
|
||
|
};
|
||
|
|
||
|
struct rtw89_sar_info {
|
||
|
/* used to decide how to acces SAR cfg union */
|
||
|
enum rtw89_sar_sources src;
|
||
|
|
||
|
/* reserved for different knids of SAR cfg struct.
|
||
|
* supposed that a single cfg struct cannot handle various SAR sources.
|
||
|
*/
|
||
|
union {
|
||
|
struct rtw89_sar_cfg_common cfg_common;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
struct rtw89_chanctx_cfg {
|
||
|
enum rtw89_sub_entity_idx idx;
|
||
|
};
|
||
|
|
||
|
enum rtw89_entity_mode {
|
||
|
RTW89_ENTITY_MODE_SCC,
|
||
|
};
|
||
|
|
||
|
struct rtw89_sub_entity {
|
||
|
struct cfg80211_chan_def chandef;
|
||
|
struct rtw89_chan chan;
|
||
|
struct rtw89_chan_rcd rcd;
|
||
|
struct rtw89_chanctx_cfg *cfg;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hal {
|
||
|
u32 rx_fltr;
|
||
|
u8 cv;
|
||
|
u32 sw_amsdu_max_size;
|
||
|
u32 antenna_tx;
|
||
|
u32 antenna_rx;
|
||
|
u8 tx_nss;
|
||
|
u8 rx_nss;
|
||
|
bool tx_path_diversity;
|
||
|
bool support_cckpd;
|
||
|
bool support_igi;
|
||
|
|
||
|
DECLARE_BITMAP(entity_map, NUM_OF_RTW89_SUB_ENTITY);
|
||
|
struct rtw89_sub_entity sub[NUM_OF_RTW89_SUB_ENTITY];
|
||
|
|
||
|
bool entity_active;
|
||
|
enum rtw89_entity_mode entity_mode;
|
||
|
};
|
||
|
|
||
|
#define RTW89_MAX_MAC_ID_NUM 128
|
||
|
#define RTW89_MAX_PKT_OFLD_NUM 255
|
||
|
|
||
|
enum rtw89_flags {
|
||
|
RTW89_FLAG_POWERON,
|
||
|
RTW89_FLAG_FW_RDY,
|
||
|
RTW89_FLAG_RUNNING,
|
||
|
RTW89_FLAG_BFEE_MON,
|
||
|
RTW89_FLAG_BFEE_EN,
|
||
|
RTW89_FLAG_NAPI_RUNNING,
|
||
|
RTW89_FLAG_LEISURE_PS,
|
||
|
RTW89_FLAG_LOW_POWER_MODE,
|
||
|
RTW89_FLAG_INACTIVE_PS,
|
||
|
RTW89_FLAG_CRASH_SIMULATING,
|
||
|
RTW89_FLAG_WOWLAN,
|
||
|
RTW89_FLAG_FORBIDDEN_TRACK_WROK,
|
||
|
RTW89_FLAG_CHANGING_INTERFACE,
|
||
|
|
||
|
NUM_OF_RTW89_FLAGS,
|
||
|
};
|
||
|
|
||
|
enum rtw89_pkt_drop_sel {
|
||
|
RTW89_PKT_DROP_SEL_MACID_BE_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_MACID_BK_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_MACID_VI_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_MACID_VO_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_MACID_ALL,
|
||
|
RTW89_PKT_DROP_SEL_MG0_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_HIQ_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_HIQ_PORT,
|
||
|
RTW89_PKT_DROP_SEL_HIQ_MBSSID,
|
||
|
RTW89_PKT_DROP_SEL_BAND,
|
||
|
RTW89_PKT_DROP_SEL_BAND_ONCE,
|
||
|
RTW89_PKT_DROP_SEL_REL_MACID,
|
||
|
RTW89_PKT_DROP_SEL_REL_HIQ_PORT,
|
||
|
RTW89_PKT_DROP_SEL_REL_HIQ_MBSSID,
|
||
|
};
|
||
|
|
||
|
struct rtw89_pkt_drop_params {
|
||
|
enum rtw89_pkt_drop_sel sel;
|
||
|
enum rtw89_mac_idx mac_band;
|
||
|
u8 macid;
|
||
|
u8 port;
|
||
|
u8 mbssid;
|
||
|
bool tf_trs;
|
||
|
u32 macid_band_sel[4];
|
||
|
};
|
||
|
|
||
|
struct rtw89_pkt_stat {
|
||
|
u16 beacon_nr;
|
||
|
u32 rx_rate_cnt[RTW89_HW_RATE_NR];
|
||
|
};
|
||
|
|
||
|
DECLARE_EWMA(thermal, 4, 4);
|
||
|
|
||
|
struct rtw89_phy_stat {
|
||
|
struct ewma_thermal avg_thermal[RF_PATH_MAX];
|
||
|
struct rtw89_pkt_stat cur_pkt_stat;
|
||
|
struct rtw89_pkt_stat last_pkt_stat;
|
||
|
};
|
||
|
|
||
|
#define RTW89_DACK_PATH_NR 2
|
||
|
#define RTW89_DACK_IDX_NR 2
|
||
|
#define RTW89_DACK_MSBK_NR 16
|
||
|
struct rtw89_dack_info {
|
||
|
bool dack_done;
|
||
|
u8 msbk_d[RTW89_DACK_PATH_NR][RTW89_DACK_IDX_NR][RTW89_DACK_MSBK_NR];
|
||
|
u8 dadck_d[RTW89_DACK_PATH_NR][RTW89_DACK_IDX_NR];
|
||
|
u16 addck_d[RTW89_DACK_PATH_NR][RTW89_DACK_IDX_NR];
|
||
|
u16 biask_d[RTW89_DACK_PATH_NR][RTW89_DACK_IDX_NR];
|
||
|
u32 dack_cnt;
|
||
|
bool addck_timeout[RTW89_DACK_PATH_NR];
|
||
|
bool dadck_timeout[RTW89_DACK_PATH_NR];
|
||
|
bool msbk_timeout[RTW89_DACK_PATH_NR];
|
||
|
};
|
||
|
|
||
|
#define RTW89_IQK_CHS_NR 2
|
||
|
#define RTW89_IQK_PATH_NR 4
|
||
|
|
||
|
struct rtw89_rfk_mcc_info {
|
||
|
u8 ch[RTW89_IQK_CHS_NR];
|
||
|
u8 band[RTW89_IQK_CHS_NR];
|
||
|
u8 table_idx;
|
||
|
};
|
||
|
|
||
|
struct rtw89_lck_info {
|
||
|
u8 thermal[RF_PATH_MAX];
|
||
|
};
|
||
|
|
||
|
struct rtw89_rx_dck_info {
|
||
|
u8 thermal[RF_PATH_MAX];
|
||
|
};
|
||
|
|
||
|
struct rtw89_iqk_info {
|
||
|
bool lok_cor_fail[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
bool lok_fin_fail[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
bool lok_fail[RTW89_IQK_PATH_NR];
|
||
|
bool iqk_tx_fail[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
bool iqk_rx_fail[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
u32 iqk_fail_cnt;
|
||
|
bool is_iqk_init;
|
||
|
u32 iqk_channel[RTW89_IQK_CHS_NR];
|
||
|
u8 iqk_band[RTW89_IQK_PATH_NR];
|
||
|
u8 iqk_ch[RTW89_IQK_PATH_NR];
|
||
|
u8 iqk_bw[RTW89_IQK_PATH_NR];
|
||
|
u8 kcount;
|
||
|
u8 iqk_times;
|
||
|
u8 version;
|
||
|
u32 nb_txcfir[RTW89_IQK_PATH_NR];
|
||
|
u32 nb_rxcfir[RTW89_IQK_PATH_NR];
|
||
|
u32 bp_txkresult[RTW89_IQK_PATH_NR];
|
||
|
u32 bp_rxkresult[RTW89_IQK_PATH_NR];
|
||
|
u32 bp_iqkenable[RTW89_IQK_PATH_NR];
|
||
|
bool is_wb_txiqk[RTW89_IQK_PATH_NR];
|
||
|
bool is_wb_rxiqk[RTW89_IQK_PATH_NR];
|
||
|
bool is_nbiqk;
|
||
|
bool iqk_fft_en;
|
||
|
bool iqk_xym_en;
|
||
|
bool iqk_sram_en;
|
||
|
bool iqk_cfir_en;
|
||
|
u8 thermal[RTW89_IQK_PATH_NR];
|
||
|
bool thermal_rek_en;
|
||
|
u32 syn1to2;
|
||
|
u8 iqk_mcc_ch[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
u8 iqk_table_idx[RTW89_IQK_PATH_NR];
|
||
|
u32 lok_idac[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
u32 lok_vbuf[RTW89_IQK_CHS_NR][RTW89_IQK_PATH_NR];
|
||
|
};
|
||
|
|
||
|
#define RTW89_DPK_RF_PATH 2
|
||
|
#define RTW89_DPK_AVG_THERMAL_NUM 8
|
||
|
#define RTW89_DPK_BKUP_NUM 2
|
||
|
struct rtw89_dpk_bkup_para {
|
||
|
enum rtw89_band band;
|
||
|
enum rtw89_bandwidth bw;
|
||
|
u8 ch;
|
||
|
bool path_ok;
|
||
|
u8 mdpd_en;
|
||
|
u8 txagc_dpk;
|
||
|
u8 ther_dpk;
|
||
|
u8 gs;
|
||
|
u16 pwsf;
|
||
|
};
|
||
|
|
||
|
struct rtw89_dpk_info {
|
||
|
bool is_dpk_enable;
|
||
|
bool is_dpk_reload_en;
|
||
|
u8 dpk_gs[RTW89_PHY_MAX];
|
||
|
u16 dc_i[RTW89_DPK_RF_PATH][RTW89_DPK_BKUP_NUM];
|
||
|
u16 dc_q[RTW89_DPK_RF_PATH][RTW89_DPK_BKUP_NUM];
|
||
|
u8 corr_val[RTW89_DPK_RF_PATH][RTW89_DPK_BKUP_NUM];
|
||
|
u8 corr_idx[RTW89_DPK_RF_PATH][RTW89_DPK_BKUP_NUM];
|
||
|
u8 cur_idx[RTW89_DPK_RF_PATH];
|
||
|
u8 cur_k_set;
|
||
|
struct rtw89_dpk_bkup_para bp[RTW89_DPK_RF_PATH][RTW89_DPK_BKUP_NUM];
|
||
|
};
|
||
|
|
||
|
struct rtw89_fem_info {
|
||
|
bool elna_2g;
|
||
|
bool elna_5g;
|
||
|
bool epa_2g;
|
||
|
bool epa_5g;
|
||
|
bool epa_6g;
|
||
|
};
|
||
|
|
||
|
struct rtw89_phy_ch_info {
|
||
|
u8 rssi_min;
|
||
|
u16 rssi_min_macid;
|
||
|
u8 pre_rssi_min;
|
||
|
u8 rssi_max;
|
||
|
u16 rssi_max_macid;
|
||
|
u8 rxsc_160;
|
||
|
u8 rxsc_80;
|
||
|
u8 rxsc_40;
|
||
|
u8 rxsc_20;
|
||
|
u8 rxsc_l;
|
||
|
u8 is_noisy;
|
||
|
};
|
||
|
|
||
|
struct rtw89_agc_gaincode_set {
|
||
|
u8 lna_idx;
|
||
|
u8 tia_idx;
|
||
|
u8 rxb_idx;
|
||
|
};
|
||
|
|
||
|
#define IGI_RSSI_TH_NUM 5
|
||
|
#define FA_TH_NUM 4
|
||
|
#define LNA_GAIN_NUM 7
|
||
|
#define TIA_GAIN_NUM 2
|
||
|
struct rtw89_dig_info {
|
||
|
struct rtw89_agc_gaincode_set cur_gaincode;
|
||
|
bool force_gaincode_idx_en;
|
||
|
struct rtw89_agc_gaincode_set force_gaincode;
|
||
|
u8 igi_rssi_th[IGI_RSSI_TH_NUM];
|
||
|
u16 fa_th[FA_TH_NUM];
|
||
|
u8 igi_rssi;
|
||
|
u8 igi_fa_rssi;
|
||
|
u8 fa_rssi_ofst;
|
||
|
u8 dyn_igi_max;
|
||
|
u8 dyn_igi_min;
|
||
|
bool dyn_pd_th_en;
|
||
|
u8 dyn_pd_th_max;
|
||
|
u8 pd_low_th_ofst;
|
||
|
u8 ib_pbk;
|
||
|
s8 ib_pkpwr;
|
||
|
s8 lna_gain_a[LNA_GAIN_NUM];
|
||
|
s8 lna_gain_g[LNA_GAIN_NUM];
|
||
|
s8 *lna_gain;
|
||
|
s8 tia_gain_a[TIA_GAIN_NUM];
|
||
|
s8 tia_gain_g[TIA_GAIN_NUM];
|
||
|
s8 *tia_gain;
|
||
|
bool is_linked_pre;
|
||
|
bool bypass_dig;
|
||
|
};
|
||
|
|
||
|
enum rtw89_multi_cfo_mode {
|
||
|
RTW89_PKT_BASED_AVG_MODE = 0,
|
||
|
RTW89_ENTRY_BASED_AVG_MODE = 1,
|
||
|
RTW89_TP_BASED_AVG_MODE = 2,
|
||
|
};
|
||
|
|
||
|
enum rtw89_phy_cfo_status {
|
||
|
RTW89_PHY_DCFO_STATE_NORMAL = 0,
|
||
|
RTW89_PHY_DCFO_STATE_ENHANCE = 1,
|
||
|
RTW89_PHY_DCFO_STATE_HOLD = 2,
|
||
|
RTW89_PHY_DCFO_STATE_MAX
|
||
|
};
|
||
|
|
||
|
enum rtw89_phy_cfo_ul_ofdma_acc_mode {
|
||
|
RTW89_CFO_UL_OFDMA_ACC_DISABLE = 0,
|
||
|
RTW89_CFO_UL_OFDMA_ACC_ENABLE = 1
|
||
|
};
|
||
|
|
||
|
struct rtw89_cfo_tracking_info {
|
||
|
u16 cfo_timer_ms;
|
||
|
bool cfo_trig_by_timer_en;
|
||
|
enum rtw89_phy_cfo_status phy_cfo_status;
|
||
|
enum rtw89_phy_cfo_ul_ofdma_acc_mode cfo_ul_ofdma_acc_mode;
|
||
|
u8 phy_cfo_trk_cnt;
|
||
|
bool is_adjust;
|
||
|
enum rtw89_multi_cfo_mode rtw89_multi_cfo_mode;
|
||
|
bool apply_compensation;
|
||
|
u8 crystal_cap;
|
||
|
u8 crystal_cap_default;
|
||
|
u8 def_x_cap;
|
||
|
s8 x_cap_ofst;
|
||
|
u32 sta_cfo_tolerance;
|
||
|
s32 cfo_tail[CFO_TRACK_MAX_USER];
|
||
|
u16 cfo_cnt[CFO_TRACK_MAX_USER];
|
||
|
s32 cfo_avg_pre;
|
||
|
s32 cfo_avg[CFO_TRACK_MAX_USER];
|
||
|
s32 pre_cfo_avg[CFO_TRACK_MAX_USER];
|
||
|
u32 packet_count;
|
||
|
u32 packet_count_pre;
|
||
|
s32 residual_cfo_acc;
|
||
|
u8 phy_cfotrk_state;
|
||
|
u8 phy_cfotrk_cnt;
|
||
|
bool divergence_lock_en;
|
||
|
u8 x_cap_lb;
|
||
|
u8 x_cap_ub;
|
||
|
u8 lock_cnt;
|
||
|
};
|
||
|
|
||
|
enum rtw89_tssi_alimk_band {
|
||
|
TSSI_ALIMK_2G = 0,
|
||
|
TSSI_ALIMK_5GL,
|
||
|
TSSI_ALIMK_5GM,
|
||
|
TSSI_ALIMK_5GH,
|
||
|
TSSI_ALIMK_MAX
|
||
|
};
|
||
|
|
||
|
/* 2GL, 2GH, 5GL1, 5GH1, 5GM1, 5GM2, 5GH1, 5GH2 */
|
||
|
#define TSSI_TRIM_CH_GROUP_NUM 8
|
||
|
#define TSSI_TRIM_CH_GROUP_NUM_6G 16
|
||
|
|
||
|
#define TSSI_CCK_CH_GROUP_NUM 6
|
||
|
#define TSSI_MCS_2G_CH_GROUP_NUM 5
|
||
|
#define TSSI_MCS_5G_CH_GROUP_NUM 14
|
||
|
#define TSSI_MCS_6G_CH_GROUP_NUM 32
|
||
|
#define TSSI_MCS_CH_GROUP_NUM \
|
||
|
(TSSI_MCS_2G_CH_GROUP_NUM + TSSI_MCS_5G_CH_GROUP_NUM)
|
||
|
#define TSSI_MAX_CH_NUM 67
|
||
|
#define TSSI_ALIMK_VALUE_NUM 8
|
||
|
|
||
|
struct rtw89_tssi_info {
|
||
|
u8 thermal[RF_PATH_MAX];
|
||
|
s8 tssi_trim[RF_PATH_MAX][TSSI_TRIM_CH_GROUP_NUM];
|
||
|
s8 tssi_trim_6g[RF_PATH_MAX][TSSI_TRIM_CH_GROUP_NUM_6G];
|
||
|
s8 tssi_cck[RF_PATH_MAX][TSSI_CCK_CH_GROUP_NUM];
|
||
|
s8 tssi_mcs[RF_PATH_MAX][TSSI_MCS_CH_GROUP_NUM];
|
||
|
s8 tssi_6g_mcs[RF_PATH_MAX][TSSI_MCS_6G_CH_GROUP_NUM];
|
||
|
s8 extra_ofst[RF_PATH_MAX];
|
||
|
bool tssi_tracking_check[RF_PATH_MAX];
|
||
|
u8 default_txagc_offset[RF_PATH_MAX];
|
||
|
u32 base_thermal[RF_PATH_MAX];
|
||
|
bool check_backup_aligmk[RF_PATH_MAX][TSSI_MAX_CH_NUM];
|
||
|
u32 alignment_backup_by_ch[RF_PATH_MAX][TSSI_MAX_CH_NUM][TSSI_ALIMK_VALUE_NUM];
|
||
|
u32 alignment_value[RF_PATH_MAX][TSSI_ALIMK_MAX][TSSI_ALIMK_VALUE_NUM];
|
||
|
bool alignment_done[RF_PATH_MAX][TSSI_ALIMK_MAX];
|
||
|
u32 tssi_alimk_time;
|
||
|
};
|
||
|
|
||
|
struct rtw89_power_trim_info {
|
||
|
bool pg_thermal_trim;
|
||
|
bool pg_pa_bias_trim;
|
||
|
u8 thermal_trim[RF_PATH_MAX];
|
||
|
u8 pa_bias_trim[RF_PATH_MAX];
|
||
|
};
|
||
|
|
||
|
struct rtw89_regulatory {
|
||
|
char alpha2[3];
|
||
|
u8 txpwr_regd[RTW89_BAND_MAX];
|
||
|
};
|
||
|
|
||
|
enum rtw89_ifs_clm_application {
|
||
|
RTW89_IFS_CLM_INIT = 0,
|
||
|
RTW89_IFS_CLM_BACKGROUND = 1,
|
||
|
RTW89_IFS_CLM_ACS = 2,
|
||
|
RTW89_IFS_CLM_DIG = 3,
|
||
|
RTW89_IFS_CLM_TDMA_DIG = 4,
|
||
|
RTW89_IFS_CLM_DBG = 5,
|
||
|
RTW89_IFS_CLM_DBG_MANUAL = 6
|
||
|
};
|
||
|
|
||
|
enum rtw89_env_racing_lv {
|
||
|
RTW89_RAC_RELEASE = 0,
|
||
|
RTW89_RAC_LV_1 = 1,
|
||
|
RTW89_RAC_LV_2 = 2,
|
||
|
RTW89_RAC_LV_3 = 3,
|
||
|
RTW89_RAC_LV_4 = 4,
|
||
|
RTW89_RAC_MAX_NUM = 5
|
||
|
};
|
||
|
|
||
|
struct rtw89_ccx_para_info {
|
||
|
enum rtw89_env_racing_lv rac_lv;
|
||
|
u16 mntr_time;
|
||
|
u8 nhm_manual_th_ofst;
|
||
|
u8 nhm_manual_th0;
|
||
|
enum rtw89_ifs_clm_application ifs_clm_app;
|
||
|
u32 ifs_clm_manual_th_times;
|
||
|
u32 ifs_clm_manual_th0;
|
||
|
u8 fahm_manual_th_ofst;
|
||
|
u8 fahm_manual_th0;
|
||
|
u8 fahm_numer_opt;
|
||
|
u8 fahm_denom_opt;
|
||
|
};
|
||
|
|
||
|
enum rtw89_ccx_edcca_opt_sc_idx {
|
||
|
RTW89_CCX_EDCCA_SEG0_P0 = 0,
|
||
|
RTW89_CCX_EDCCA_SEG0_S1 = 1,
|
||
|
RTW89_CCX_EDCCA_SEG0_S2 = 2,
|
||
|
RTW89_CCX_EDCCA_SEG0_S3 = 3,
|
||
|
RTW89_CCX_EDCCA_SEG1_P0 = 4,
|
||
|
RTW89_CCX_EDCCA_SEG1_S1 = 5,
|
||
|
RTW89_CCX_EDCCA_SEG1_S2 = 6,
|
||
|
RTW89_CCX_EDCCA_SEG1_S3 = 7
|
||
|
};
|
||
|
|
||
|
enum rtw89_ccx_edcca_opt_bw_idx {
|
||
|
RTW89_CCX_EDCCA_BW20_0 = 0,
|
||
|
RTW89_CCX_EDCCA_BW20_1 = 1,
|
||
|
RTW89_CCX_EDCCA_BW20_2 = 2,
|
||
|
RTW89_CCX_EDCCA_BW20_3 = 3,
|
||
|
RTW89_CCX_EDCCA_BW20_4 = 4,
|
||
|
RTW89_CCX_EDCCA_BW20_5 = 5,
|
||
|
RTW89_CCX_EDCCA_BW20_6 = 6,
|
||
|
RTW89_CCX_EDCCA_BW20_7 = 7
|
||
|
};
|
||
|
|
||
|
#define RTW89_NHM_TH_NUM 11
|
||
|
#define RTW89_FAHM_TH_NUM 11
|
||
|
#define RTW89_NHM_RPT_NUM 12
|
||
|
#define RTW89_FAHM_RPT_NUM 12
|
||
|
#define RTW89_IFS_CLM_NUM 4
|
||
|
struct rtw89_env_monitor_info {
|
||
|
u32 ccx_trigger_time;
|
||
|
u64 start_time;
|
||
|
u8 ccx_rpt_stamp;
|
||
|
u8 ccx_watchdog_result;
|
||
|
bool ccx_ongoing;
|
||
|
u8 ccx_rac_lv;
|
||
|
bool ccx_manual_ctrl;
|
||
|
u8 ccx_pre_rssi;
|
||
|
u16 clm_mntr_time;
|
||
|
u16 nhm_mntr_time;
|
||
|
u16 ifs_clm_mntr_time;
|
||
|
enum rtw89_ifs_clm_application ifs_clm_app;
|
||
|
u16 fahm_mntr_time;
|
||
|
u16 edcca_clm_mntr_time;
|
||
|
u16 ccx_period;
|
||
|
u8 ccx_unit_idx;
|
||
|
enum rtw89_ccx_edcca_opt_bw_idx ccx_edcca_opt_bw_idx;
|
||
|
u8 nhm_th[RTW89_NHM_TH_NUM];
|
||
|
u16 ifs_clm_th_l[RTW89_IFS_CLM_NUM];
|
||
|
u16 ifs_clm_th_h[RTW89_IFS_CLM_NUM];
|
||
|
u8 fahm_numer_opt;
|
||
|
u8 fahm_denom_opt;
|
||
|
u8 fahm_th[RTW89_FAHM_TH_NUM];
|
||
|
u16 clm_result;
|
||
|
u16 nhm_result[RTW89_NHM_RPT_NUM];
|
||
|
u8 nhm_wgt[RTW89_NHM_RPT_NUM];
|
||
|
u16 nhm_tx_cnt;
|
||
|
u16 nhm_cca_cnt;
|
||
|
u16 nhm_idle_cnt;
|
||
|
u16 ifs_clm_tx;
|
||
|
u16 ifs_clm_edcca_excl_cca;
|
||
|
u16 ifs_clm_ofdmfa;
|
||
|
u16 ifs_clm_ofdmcca_excl_fa;
|
||
|
u16 ifs_clm_cckfa;
|
||
|
u16 ifs_clm_cckcca_excl_fa;
|
||
|
u16 ifs_clm_total_ifs;
|
||
|
u8 ifs_clm_his[RTW89_IFS_CLM_NUM];
|
||
|
u16 ifs_clm_avg[RTW89_IFS_CLM_NUM];
|
||
|
u16 ifs_clm_cca[RTW89_IFS_CLM_NUM];
|
||
|
u16 fahm_result[RTW89_FAHM_RPT_NUM];
|
||
|
u16 fahm_denom_result;
|
||
|
u16 edcca_clm_result;
|
||
|
u8 clm_ratio;
|
||
|
u8 nhm_rpt[RTW89_NHM_RPT_NUM];
|
||
|
u8 nhm_tx_ratio;
|
||
|
u8 nhm_cca_ratio;
|
||
|
u8 nhm_idle_ratio;
|
||
|
u8 nhm_ratio;
|
||
|
u16 nhm_result_sum;
|
||
|
u8 nhm_pwr;
|
||
|
u8 ifs_clm_tx_ratio;
|
||
|
u8 ifs_clm_edcca_excl_cca_ratio;
|
||
|
u8 ifs_clm_cck_fa_ratio;
|
||
|
u8 ifs_clm_ofdm_fa_ratio;
|
||
|
u8 ifs_clm_cck_cca_excl_fa_ratio;
|
||
|
u8 ifs_clm_ofdm_cca_excl_fa_ratio;
|
||
|
u16 ifs_clm_cck_fa_permil;
|
||
|
u16 ifs_clm_ofdm_fa_permil;
|
||
|
u32 ifs_clm_ifs_avg[RTW89_IFS_CLM_NUM];
|
||
|
u32 ifs_clm_cca_avg[RTW89_IFS_CLM_NUM];
|
||
|
u8 fahm_rpt[RTW89_FAHM_RPT_NUM];
|
||
|
u16 fahm_result_sum;
|
||
|
u8 fahm_ratio;
|
||
|
u8 fahm_denom_ratio;
|
||
|
u8 fahm_pwr;
|
||
|
u8 edcca_clm_ratio;
|
||
|
};
|
||
|
|
||
|
enum rtw89_ser_rcvy_step {
|
||
|
RTW89_SER_DRV_STOP_TX,
|
||
|
RTW89_SER_DRV_STOP_RX,
|
||
|
RTW89_SER_DRV_STOP_RUN,
|
||
|
RTW89_SER_HAL_STOP_DMA,
|
||
|
RTW89_NUM_OF_SER_FLAGS
|
||
|
};
|
||
|
|
||
|
struct rtw89_ser {
|
||
|
u8 state;
|
||
|
u8 alarm_event;
|
||
|
|
||
|
struct work_struct ser_hdl_work;
|
||
|
struct delayed_work ser_alarm_work;
|
||
|
const struct state_ent *st_tbl;
|
||
|
const struct event_ent *ev_tbl;
|
||
|
struct list_head msg_q;
|
||
|
spinlock_t msg_q_lock; /* lock when read/write ser msg */
|
||
|
DECLARE_BITMAP(flags, RTW89_NUM_OF_SER_FLAGS);
|
||
|
};
|
||
|
|
||
|
enum rtw89_mac_ax_ps_mode {
|
||
|
RTW89_MAC_AX_PS_MODE_ACTIVE = 0,
|
||
|
RTW89_MAC_AX_PS_MODE_LEGACY = 1,
|
||
|
RTW89_MAC_AX_PS_MODE_WMMPS = 2,
|
||
|
RTW89_MAC_AX_PS_MODE_MAX = 3,
|
||
|
};
|
||
|
|
||
|
enum rtw89_last_rpwm_mode {
|
||
|
RTW89_LAST_RPWM_PS = 0x0,
|
||
|
RTW89_LAST_RPWM_ACTIVE = 0x6,
|
||
|
};
|
||
|
|
||
|
struct rtw89_lps_parm {
|
||
|
u8 macid;
|
||
|
u8 psmode; /* enum rtw89_mac_ax_ps_mode */
|
||
|
u8 lastrpwm; /* enum rtw89_last_rpwm_mode */
|
||
|
};
|
||
|
|
||
|
struct rtw89_ppdu_sts_info {
|
||
|
struct sk_buff_head rx_queue[RTW89_PHY_MAX];
|
||
|
u8 curr_rx_ppdu_cnt[RTW89_PHY_MAX];
|
||
|
};
|
||
|
|
||
|
struct rtw89_early_h2c {
|
||
|
struct list_head list;
|
||
|
u8 *h2c;
|
||
|
u16 h2c_len;
|
||
|
};
|
||
|
|
||
|
struct rtw89_hw_scan_info {
|
||
|
struct ieee80211_vif *scanning_vif;
|
||
|
struct list_head pkt_list[NUM_NL80211_BANDS];
|
||
|
u8 op_pri_ch;
|
||
|
u8 op_chan;
|
||
|
u8 op_bw;
|
||
|
u8 op_band;
|
||
|
u32 last_chan_idx;
|
||
|
};
|
||
|
|
||
|
enum rtw89_phy_bb_gain_band {
|
||
|
RTW89_BB_GAIN_BAND_2G = 0,
|
||
|
RTW89_BB_GAIN_BAND_5G_L = 1,
|
||
|
RTW89_BB_GAIN_BAND_5G_M = 2,
|
||
|
RTW89_BB_GAIN_BAND_5G_H = 3,
|
||
|
RTW89_BB_GAIN_BAND_6G_L = 4,
|
||
|
RTW89_BB_GAIN_BAND_6G_M = 5,
|
||
|
RTW89_BB_GAIN_BAND_6G_H = 6,
|
||
|
RTW89_BB_GAIN_BAND_6G_UH = 7,
|
||
|
|
||
|
RTW89_BB_GAIN_BAND_NR,
|
||
|
};
|
||
|
|
||
|
enum rtw89_phy_bb_rxsc_num {
|
||
|
RTW89_BB_RXSC_NUM_40 = 9, /* SC: 0, 1~8 */
|
||
|
RTW89_BB_RXSC_NUM_80 = 13, /* SC: 0, 1~8, 9~12 */
|
||
|
RTW89_BB_RXSC_NUM_160 = 15, /* SC: 0, 1~8, 9~12, 13~14 */
|
||
|
};
|
||
|
|
||
|
struct rtw89_phy_bb_gain_info {
|
||
|
s8 lna_gain[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX][LNA_GAIN_NUM];
|
||
|
s8 tia_gain[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX][TIA_GAIN_NUM];
|
||
|
s8 lna_gain_bypass[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX][LNA_GAIN_NUM];
|
||
|
s8 lna_op1db[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX][LNA_GAIN_NUM];
|
||
|
s8 tia_lna_op1db[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX]
|
||
|
[LNA_GAIN_NUM + 1]; /* TIA0_LNA0~6 + TIA1_LNA6 */
|
||
|
s8 rpl_ofst_20[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX];
|
||
|
s8 rpl_ofst_40[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX]
|
||
|
[RTW89_BB_RXSC_NUM_40];
|
||
|
s8 rpl_ofst_80[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX]
|
||
|
[RTW89_BB_RXSC_NUM_80];
|
||
|
s8 rpl_ofst_160[RTW89_BB_GAIN_BAND_NR][RF_PATH_MAX]
|
||
|
[RTW89_BB_RXSC_NUM_160];
|
||
|
};
|
||
|
|
||
|
struct rtw89_phy_efuse_gain {
|
||
|
bool offset_valid;
|
||
|
bool comp_valid;
|
||
|
s8 offset[RF_PATH_MAX][RTW89_GAIN_OFFSET_NR]; /* S(8, 0) */
|
||
|
s8 offset_base[RTW89_PHY_MAX]; /* S(8, 4) */
|
||
|
s8 rssi_base[RTW89_PHY_MAX]; /* S(8, 4) */
|
||
|
s8 comp[RF_PATH_MAX][RTW89_SUBBAND_NR]; /* S(8, 0) */
|
||
|
};
|
||
|
|
||
|
#define RTW89_MAX_PATTERN_NUM 18
|
||
|
#define RTW89_MAX_PATTERN_MASK_SIZE 4
|
||
|
#define RTW89_MAX_PATTERN_SIZE 128
|
||
|
|
||
|
struct rtw89_wow_cam_info {
|
||
|
bool r_w;
|
||
|
u8 idx;
|
||
|
u32 mask[RTW89_MAX_PATTERN_MASK_SIZE];
|
||
|
u16 crc;
|
||
|
bool negative_pattern_match;
|
||
|
bool skip_mac_hdr;
|
||
|
bool uc;
|
||
|
bool mc;
|
||
|
bool bc;
|
||
|
bool valid;
|
||
|
};
|
||
|
|
||
|
struct rtw89_wow_param {
|
||
|
struct ieee80211_vif *wow_vif;
|
||
|
DECLARE_BITMAP(flags, RTW89_WOW_FLAG_NUM);
|
||
|
struct rtw89_wow_cam_info patterns[RTW89_MAX_PATTERN_NUM];
|
||
|
u8 pattern_cnt;
|
||
|
};
|
||
|
|
||
|
struct rtw89_mcc_info {
|
||
|
struct rtw89_wait_info wait;
|
||
|
};
|
||
|
|
||
|
struct rtw89_dev {
|
||
|
struct ieee80211_hw *hw;
|
||
|
struct device *dev;
|
||
|
const struct ieee80211_ops *ops;
|
||
|
|
||
|
bool dbcc_en;
|
||
|
struct rtw89_hw_scan_info scan_info;
|
||
|
const struct rtw89_chip_info *chip;
|
||
|
const struct rtw89_pci_info *pci_info;
|
||
|
struct rtw89_hal hal;
|
||
|
struct rtw89_mcc_info mcc;
|
||
|
struct rtw89_mac_info mac;
|
||
|
struct rtw89_fw_info fw;
|
||
|
struct rtw89_hci_info hci;
|
||
|
struct rtw89_efuse efuse;
|
||
|
struct rtw89_traffic_stats stats;
|
||
|
|
||
|
/* ensures exclusive access from mac80211 callbacks */
|
||
|
struct mutex mutex;
|
||
|
struct list_head rtwvifs_list;
|
||
|
/* used to protect rf read write */
|
||
|
struct mutex rf_mutex;
|
||
|
struct workqueue_struct *txq_wq;
|
||
|
struct work_struct txq_work;
|
||
|
struct delayed_work txq_reinvoke_work;
|
||
|
/* used to protect ba_list and forbid_ba_list */
|
||
|
spinlock_t ba_lock;
|
||
|
/* txqs to setup ba session */
|
||
|
struct list_head ba_list;
|
||
|
/* txqs to forbid ba session */
|
||
|
struct list_head forbid_ba_list;
|
||
|
struct work_struct ba_work;
|
||
|
/* used to protect rpwm */
|
||
|
spinlock_t rpwm_lock;
|
||
|
|
||
|
struct rtw89_cam_info cam_info;
|
||
|
|
||
|
struct sk_buff_head c2h_queue;
|
||
|
struct work_struct c2h_work;
|
||
|
struct work_struct ips_work;
|
||
|
|
||
|
struct list_head early_h2c_list;
|
||
|
|
||
|
struct rtw89_ser ser;
|
||
|
|
||
|
DECLARE_BITMAP(hw_port, RTW89_PORT_NUM);
|
||
|
DECLARE_BITMAP(mac_id_map, RTW89_MAX_MAC_ID_NUM);
|
||
|
DECLARE_BITMAP(flags, NUM_OF_RTW89_FLAGS);
|
||
|
DECLARE_BITMAP(pkt_offload, RTW89_MAX_PKT_OFLD_NUM);
|
||
|
|
||
|
struct rtw89_phy_stat phystat;
|
||
|
struct rtw89_dack_info dack;
|
||
|
struct rtw89_iqk_info iqk;
|
||
|
struct rtw89_dpk_info dpk;
|
||
|
struct rtw89_rfk_mcc_info rfk_mcc;
|
||
|
struct rtw89_lck_info lck;
|
||
|
struct rtw89_rx_dck_info rx_dck;
|
||
|
bool is_tssi_mode[RF_PATH_MAX];
|
||
|
bool is_bt_iqk_timeout;
|
||
|
|
||
|
struct rtw89_fem_info fem;
|
||
|
struct rtw89_txpwr_byrate byr[RTW89_BAND_MAX];
|
||
|
struct rtw89_tssi_info tssi;
|
||
|
struct rtw89_power_trim_info pwr_trim;
|
||
|
|
||
|
struct rtw89_cfo_tracking_info cfo_tracking;
|
||
|
struct rtw89_env_monitor_info env_monitor;
|
||
|
struct rtw89_dig_info dig;
|
||
|
struct rtw89_phy_ch_info ch_info;
|
||
|
struct rtw89_phy_bb_gain_info bb_gain;
|
||
|
struct rtw89_phy_efuse_gain efuse_gain;
|
||
|
struct rtw89_phy_ul_tb_info ul_tb_info;
|
||
|
|
||
|
struct delayed_work track_work;
|
||
|
struct delayed_work coex_act1_work;
|
||
|
struct delayed_work coex_bt_devinfo_work;
|
||
|
struct delayed_work coex_rfk_chk_work;
|
||
|
struct delayed_work cfo_track_work;
|
||
|
struct delayed_work forbid_ba_work;
|
||
|
struct rtw89_ppdu_sts_info ppdu_sts;
|
||
|
u8 total_sta_assoc;
|
||
|
bool scanning;
|
||
|
|
||
|
const struct rtw89_regulatory *regd;
|
||
|
struct rtw89_sar_info sar;
|
||
|
|
||
|
struct rtw89_btc btc;
|
||
|
enum rtw89_ps_mode ps_mode;
|
||
|
bool lps_enabled;
|
||
|
|
||
|
struct rtw89_wow_param wow;
|
||
|
|
||
|
/* napi structure */
|
||
|
struct net_device netdev;
|
||
|
struct napi_struct napi;
|
||
|
int napi_budget_countdown;
|
||
|
|
||
|
/* HCI related data, keep last */
|
||
|
u8 priv[] __aligned(sizeof(void *));
|
||
|
};
|
||
|
|
||
|
static inline int rtw89_hci_tx_write(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_core_tx_request *tx_req)
|
||
|
{
|
||
|
return rtwdev->hci.ops->tx_write(rtwdev, tx_req);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_reset(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
rtwdev->hci.ops->reset(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline int rtw89_hci_start(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
return rtwdev->hci.ops->start(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_stop(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
rtwdev->hci.ops->stop(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline int rtw89_hci_deinit(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
return rtwdev->hci.ops->deinit(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_pause(struct rtw89_dev *rtwdev, bool pause)
|
||
|
{
|
||
|
rtwdev->hci.ops->pause(rtwdev, pause);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_switch_mode(struct rtw89_dev *rtwdev, bool low_power)
|
||
|
{
|
||
|
rtwdev->hci.ops->switch_mode(rtwdev, low_power);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_recalc_int_mit(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
rtwdev->hci.ops->recalc_int_mit(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline u32 rtw89_hci_check_and_reclaim_tx_resource(struct rtw89_dev *rtwdev, u8 txch)
|
||
|
{
|
||
|
return rtwdev->hci.ops->check_and_reclaim_tx_resource(rtwdev, txch);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_tx_kick_off(struct rtw89_dev *rtwdev, u8 txch)
|
||
|
{
|
||
|
return rtwdev->hci.ops->tx_kick_off(rtwdev, txch);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_flush_queues(struct rtw89_dev *rtwdev, u32 queues,
|
||
|
bool drop)
|
||
|
{
|
||
|
if (!test_bit(RTW89_FLAG_POWERON, rtwdev->flags))
|
||
|
return;
|
||
|
|
||
|
if (rtwdev->hci.ops->flush_queues)
|
||
|
return rtwdev->hci.ops->flush_queues(rtwdev, queues, drop);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_recovery_start(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->recovery_start)
|
||
|
rtwdev->hci.ops->recovery_start(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_recovery_complete(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->recovery_complete)
|
||
|
rtwdev->hci.ops->recovery_complete(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_enable_intr(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->enable_intr)
|
||
|
rtwdev->hci.ops->enable_intr(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_disable_intr(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->disable_intr)
|
||
|
rtwdev->hci.ops->disable_intr(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_ctrl_txdma_ch(struct rtw89_dev *rtwdev, bool enable)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->ctrl_txdma_ch)
|
||
|
rtwdev->hci.ops->ctrl_txdma_ch(rtwdev, enable);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_ctrl_txdma_fw_ch(struct rtw89_dev *rtwdev, bool enable)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->ctrl_txdma_fw_ch)
|
||
|
rtwdev->hci.ops->ctrl_txdma_fw_ch(rtwdev, enable);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_ctrl_trxhci(struct rtw89_dev *rtwdev, bool enable)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->ctrl_trxhci)
|
||
|
rtwdev->hci.ops->ctrl_trxhci(rtwdev, enable);
|
||
|
}
|
||
|
|
||
|
static inline int rtw89_hci_poll_txdma_ch(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
int ret = 0;
|
||
|
|
||
|
if (rtwdev->hci.ops->poll_txdma_ch)
|
||
|
ret = rtwdev->hci.ops->poll_txdma_ch(rtwdev);
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_clr_idx_all(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->clr_idx_all)
|
||
|
rtwdev->hci.ops->clr_idx_all(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline int rtw89_hci_rst_bdram(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
int ret = 0;
|
||
|
|
||
|
if (rtwdev->hci.ops->rst_bdram)
|
||
|
ret = rtwdev->hci.ops->rst_bdram(rtwdev);
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_hci_clear(struct rtw89_dev *rtwdev, struct pci_dev *pdev)
|
||
|
{
|
||
|
if (rtwdev->hci.ops->clear)
|
||
|
rtwdev->hci.ops->clear(rtwdev, pdev);
|
||
|
}
|
||
|
|
||
|
static inline u8 rtw89_read8(struct rtw89_dev *rtwdev, u32 addr)
|
||
|
{
|
||
|
return rtwdev->hci.ops->read8(rtwdev, addr);
|
||
|
}
|
||
|
|
||
|
static inline u16 rtw89_read16(struct rtw89_dev *rtwdev, u32 addr)
|
||
|
{
|
||
|
return rtwdev->hci.ops->read16(rtwdev, addr);
|
||
|
}
|
||
|
|
||
|
static inline u32 rtw89_read32(struct rtw89_dev *rtwdev, u32 addr)
|
||
|
{
|
||
|
return rtwdev->hci.ops->read32(rtwdev, addr);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_write8(struct rtw89_dev *rtwdev, u32 addr, u8 data)
|
||
|
{
|
||
|
rtwdev->hci.ops->write8(rtwdev, addr, data);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_write16(struct rtw89_dev *rtwdev, u32 addr, u16 data)
|
||
|
{
|
||
|
rtwdev->hci.ops->write16(rtwdev, addr, data);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_write32(struct rtw89_dev *rtwdev, u32 addr, u32 data)
|
||
|
{
|
||
|
rtwdev->hci.ops->write32(rtwdev, addr, data);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write8_set(struct rtw89_dev *rtwdev, u32 addr, u8 bit)
|
||
|
{
|
||
|
u8 val;
|
||
|
|
||
|
val = rtw89_read8(rtwdev, addr);
|
||
|
rtw89_write8(rtwdev, addr, val | bit);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write16_set(struct rtw89_dev *rtwdev, u32 addr, u16 bit)
|
||
|
{
|
||
|
u16 val;
|
||
|
|
||
|
val = rtw89_read16(rtwdev, addr);
|
||
|
rtw89_write16(rtwdev, addr, val | bit);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write32_set(struct rtw89_dev *rtwdev, u32 addr, u32 bit)
|
||
|
{
|
||
|
u32 val;
|
||
|
|
||
|
val = rtw89_read32(rtwdev, addr);
|
||
|
rtw89_write32(rtwdev, addr, val | bit);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write8_clr(struct rtw89_dev *rtwdev, u32 addr, u8 bit)
|
||
|
{
|
||
|
u8 val;
|
||
|
|
||
|
val = rtw89_read8(rtwdev, addr);
|
||
|
rtw89_write8(rtwdev, addr, val & ~bit);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write16_clr(struct rtw89_dev *rtwdev, u32 addr, u16 bit)
|
||
|
{
|
||
|
u16 val;
|
||
|
|
||
|
val = rtw89_read16(rtwdev, addr);
|
||
|
rtw89_write16(rtwdev, addr, val & ~bit);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write32_clr(struct rtw89_dev *rtwdev, u32 addr, u32 bit)
|
||
|
{
|
||
|
u32 val;
|
||
|
|
||
|
val = rtw89_read32(rtwdev, addr);
|
||
|
rtw89_write32(rtwdev, addr, val & ~bit);
|
||
|
}
|
||
|
|
||
|
static inline u32
|
||
|
rtw89_read32_mask(struct rtw89_dev *rtwdev, u32 addr, u32 mask)
|
||
|
{
|
||
|
u32 shift = __ffs(mask);
|
||
|
u32 orig;
|
||
|
u32 ret;
|
||
|
|
||
|
orig = rtw89_read32(rtwdev, addr);
|
||
|
ret = (orig & mask) >> shift;
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static inline u16
|
||
|
rtw89_read16_mask(struct rtw89_dev *rtwdev, u32 addr, u32 mask)
|
||
|
{
|
||
|
u32 shift = __ffs(mask);
|
||
|
u32 orig;
|
||
|
u32 ret;
|
||
|
|
||
|
orig = rtw89_read16(rtwdev, addr);
|
||
|
ret = (orig & mask) >> shift;
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static inline u8
|
||
|
rtw89_read8_mask(struct rtw89_dev *rtwdev, u32 addr, u32 mask)
|
||
|
{
|
||
|
u32 shift = __ffs(mask);
|
||
|
u32 orig;
|
||
|
u32 ret;
|
||
|
|
||
|
orig = rtw89_read8(rtwdev, addr);
|
||
|
ret = (orig & mask) >> shift;
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write32_mask(struct rtw89_dev *rtwdev, u32 addr, u32 mask, u32 data)
|
||
|
{
|
||
|
u32 shift = __ffs(mask);
|
||
|
u32 orig;
|
||
|
u32 set;
|
||
|
|
||
|
WARN(addr & 0x3, "should be 4-byte aligned, addr = 0x%08x\n", addr);
|
||
|
|
||
|
orig = rtw89_read32(rtwdev, addr);
|
||
|
set = (orig & ~mask) | ((data << shift) & mask);
|
||
|
rtw89_write32(rtwdev, addr, set);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write16_mask(struct rtw89_dev *rtwdev, u32 addr, u32 mask, u16 data)
|
||
|
{
|
||
|
u32 shift;
|
||
|
u16 orig, set;
|
||
|
|
||
|
mask &= 0xffff;
|
||
|
shift = __ffs(mask);
|
||
|
|
||
|
orig = rtw89_read16(rtwdev, addr);
|
||
|
set = (orig & ~mask) | ((data << shift) & mask);
|
||
|
rtw89_write16(rtwdev, addr, set);
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write8_mask(struct rtw89_dev *rtwdev, u32 addr, u32 mask, u8 data)
|
||
|
{
|
||
|
u32 shift;
|
||
|
u8 orig, set;
|
||
|
|
||
|
mask &= 0xff;
|
||
|
shift = __ffs(mask);
|
||
|
|
||
|
orig = rtw89_read8(rtwdev, addr);
|
||
|
set = (orig & ~mask) | ((data << shift) & mask);
|
||
|
rtw89_write8(rtwdev, addr, set);
|
||
|
}
|
||
|
|
||
|
static inline u32
|
||
|
rtw89_read_rf(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path,
|
||
|
u32 addr, u32 mask)
|
||
|
{
|
||
|
u32 val;
|
||
|
|
||
|
mutex_lock(&rtwdev->rf_mutex);
|
||
|
val = rtwdev->chip->ops->read_rf(rtwdev, rf_path, addr, mask);
|
||
|
mutex_unlock(&rtwdev->rf_mutex);
|
||
|
|
||
|
return val;
|
||
|
}
|
||
|
|
||
|
static inline void
|
||
|
rtw89_write_rf(struct rtw89_dev *rtwdev, enum rtw89_rf_path rf_path,
|
||
|
u32 addr, u32 mask, u32 data)
|
||
|
{
|
||
|
mutex_lock(&rtwdev->rf_mutex);
|
||
|
rtwdev->chip->ops->write_rf(rtwdev, rf_path, addr, mask, data);
|
||
|
mutex_unlock(&rtwdev->rf_mutex);
|
||
|
}
|
||
|
|
||
|
static inline struct ieee80211_txq *rtw89_txq_to_txq(struct rtw89_txq *rtwtxq)
|
||
|
{
|
||
|
void *p = rtwtxq;
|
||
|
|
||
|
return container_of(p, struct ieee80211_txq, drv_priv);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_core_txq_init(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_txq *txq)
|
||
|
{
|
||
|
struct rtw89_txq *rtwtxq;
|
||
|
|
||
|
if (!txq)
|
||
|
return;
|
||
|
|
||
|
rtwtxq = (struct rtw89_txq *)txq->drv_priv;
|
||
|
INIT_LIST_HEAD(&rtwtxq->list);
|
||
|
}
|
||
|
|
||
|
static inline struct ieee80211_vif *rtwvif_to_vif(struct rtw89_vif *rtwvif)
|
||
|
{
|
||
|
void *p = rtwvif;
|
||
|
|
||
|
return container_of(p, struct ieee80211_vif, drv_priv);
|
||
|
}
|
||
|
|
||
|
static inline struct ieee80211_vif *rtwvif_to_vif_safe(struct rtw89_vif *rtwvif)
|
||
|
{
|
||
|
return rtwvif ? rtwvif_to_vif(rtwvif) : NULL;
|
||
|
}
|
||
|
|
||
|
static inline struct rtw89_vif *vif_to_rtwvif_safe(struct ieee80211_vif *vif)
|
||
|
{
|
||
|
return vif ? (struct rtw89_vif *)vif->drv_priv : NULL;
|
||
|
}
|
||
|
|
||
|
static inline struct ieee80211_sta *rtwsta_to_sta(struct rtw89_sta *rtwsta)
|
||
|
{
|
||
|
void *p = rtwsta;
|
||
|
|
||
|
return container_of(p, struct ieee80211_sta, drv_priv);
|
||
|
}
|
||
|
|
||
|
static inline struct ieee80211_sta *rtwsta_to_sta_safe(struct rtw89_sta *rtwsta)
|
||
|
{
|
||
|
return rtwsta ? rtwsta_to_sta(rtwsta) : NULL;
|
||
|
}
|
||
|
|
||
|
static inline struct rtw89_sta *sta_to_rtwsta_safe(struct ieee80211_sta *sta)
|
||
|
{
|
||
|
return sta ? (struct rtw89_sta *)sta->drv_priv : NULL;
|
||
|
}
|
||
|
|
||
|
static inline u8 rtw89_hw_to_rate_info_bw(enum rtw89_bandwidth hw_bw)
|
||
|
{
|
||
|
if (hw_bw == RTW89_CHANNEL_WIDTH_160)
|
||
|
return RATE_INFO_BW_160;
|
||
|
else if (hw_bw == RTW89_CHANNEL_WIDTH_80)
|
||
|
return RATE_INFO_BW_80;
|
||
|
else if (hw_bw == RTW89_CHANNEL_WIDTH_40)
|
||
|
return RATE_INFO_BW_40;
|
||
|
else
|
||
|
return RATE_INFO_BW_20;
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
enum nl80211_band rtw89_hw_to_nl80211_band(enum rtw89_band hw_band)
|
||
|
{
|
||
|
switch (hw_band) {
|
||
|
default:
|
||
|
case RTW89_BAND_2G:
|
||
|
return NL80211_BAND_2GHZ;
|
||
|
case RTW89_BAND_5G:
|
||
|
return NL80211_BAND_5GHZ;
|
||
|
case RTW89_BAND_6G:
|
||
|
return NL80211_BAND_6GHZ;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
enum rtw89_band rtw89_nl80211_to_hw_band(enum nl80211_band nl_band)
|
||
|
{
|
||
|
switch (nl_band) {
|
||
|
default:
|
||
|
case NL80211_BAND_2GHZ:
|
||
|
return RTW89_BAND_2G;
|
||
|
case NL80211_BAND_5GHZ:
|
||
|
return RTW89_BAND_5G;
|
||
|
case NL80211_BAND_6GHZ:
|
||
|
return RTW89_BAND_6G;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
enum rtw89_bandwidth nl_to_rtw89_bandwidth(enum nl80211_chan_width width)
|
||
|
{
|
||
|
switch (width) {
|
||
|
default:
|
||
|
WARN(1, "Not support bandwidth %d\n", width);
|
||
|
fallthrough;
|
||
|
case NL80211_CHAN_WIDTH_20_NOHT:
|
||
|
case NL80211_CHAN_WIDTH_20:
|
||
|
return RTW89_CHANNEL_WIDTH_20;
|
||
|
case NL80211_CHAN_WIDTH_40:
|
||
|
return RTW89_CHANNEL_WIDTH_40;
|
||
|
case NL80211_CHAN_WIDTH_80:
|
||
|
return RTW89_CHANNEL_WIDTH_80;
|
||
|
case NL80211_CHAN_WIDTH_160:
|
||
|
return RTW89_CHANNEL_WIDTH_160;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
struct rtw89_addr_cam_entry *rtw89_get_addr_cam_of(struct rtw89_vif *rtwvif,
|
||
|
struct rtw89_sta *rtwsta)
|
||
|
{
|
||
|
if (rtwsta) {
|
||
|
struct ieee80211_sta *sta = rtwsta_to_sta(rtwsta);
|
||
|
|
||
|
if (rtwvif->net_type == RTW89_NET_TYPE_AP_MODE || sta->tdls)
|
||
|
return &rtwsta->addr_cam;
|
||
|
}
|
||
|
return &rtwvif->addr_cam;
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
struct rtw89_bssid_cam_entry *rtw89_get_bssid_cam_of(struct rtw89_vif *rtwvif,
|
||
|
struct rtw89_sta *rtwsta)
|
||
|
{
|
||
|
if (rtwsta) {
|
||
|
struct ieee80211_sta *sta = rtwsta_to_sta(rtwsta);
|
||
|
|
||
|
if (sta->tdls)
|
||
|
return &rtwsta->bssid_cam;
|
||
|
}
|
||
|
return &rtwvif->bssid_cam;
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
void rtw89_chip_set_channel_prepare(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_channel_help_params *p,
|
||
|
const struct rtw89_chan *chan,
|
||
|
enum rtw89_mac_idx mac_idx,
|
||
|
enum rtw89_phy_idx phy_idx)
|
||
|
{
|
||
|
rtwdev->chip->ops->set_channel_help(rtwdev, true, p, chan,
|
||
|
mac_idx, phy_idx);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
void rtw89_chip_set_channel_done(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_channel_help_params *p,
|
||
|
const struct rtw89_chan *chan,
|
||
|
enum rtw89_mac_idx mac_idx,
|
||
|
enum rtw89_phy_idx phy_idx)
|
||
|
{
|
||
|
rtwdev->chip->ops->set_channel_help(rtwdev, false, p, chan,
|
||
|
mac_idx, phy_idx);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
const struct cfg80211_chan_def *rtw89_chandef_get(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_sub_entity_idx idx)
|
||
|
{
|
||
|
struct rtw89_hal *hal = &rtwdev->hal;
|
||
|
|
||
|
return &hal->sub[idx].chandef;
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
const struct rtw89_chan *rtw89_chan_get(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_sub_entity_idx idx)
|
||
|
{
|
||
|
struct rtw89_hal *hal = &rtwdev->hal;
|
||
|
|
||
|
return &hal->sub[idx].chan;
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
const struct rtw89_chan_rcd *rtw89_chan_rcd_get(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_sub_entity_idx idx)
|
||
|
{
|
||
|
struct rtw89_hal *hal = &rtwdev->hal;
|
||
|
|
||
|
return &hal->sub[idx].rcd;
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_fem_setup(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->fem_setup)
|
||
|
chip->ops->fem_setup(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_bb_sethw(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->bb_sethw)
|
||
|
chip->ops->bb_sethw(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_rfk_init(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->rfk_init)
|
||
|
chip->ops->rfk_init(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_rfk_channel(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->rfk_channel)
|
||
|
chip->ops->rfk_channel(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_rfk_band_changed(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_phy_idx phy_idx)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->rfk_band_changed)
|
||
|
chip->ops->rfk_band_changed(rtwdev, phy_idx);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_rfk_scan(struct rtw89_dev *rtwdev, bool start)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->rfk_scan)
|
||
|
chip->ops->rfk_scan(rtwdev, start);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_rfk_track(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->rfk_track)
|
||
|
chip->ops->rfk_track(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_set_txpwr_ctrl(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->set_txpwr_ctrl)
|
||
|
chip->ops->set_txpwr_ctrl(rtwdev, RTW89_PHY_0);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_power_trim(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->power_trim)
|
||
|
chip->ops->power_trim(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_init_txpwr_unit(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_phy_idx phy_idx)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->init_txpwr_unit)
|
||
|
chip->ops->init_txpwr_unit(rtwdev, phy_idx);
|
||
|
}
|
||
|
|
||
|
static inline u8 rtw89_chip_get_thermal(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_rf_path rf_path)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (!chip->ops->get_thermal)
|
||
|
return 0x10;
|
||
|
|
||
|
return chip->ops->get_thermal(rtwdev, rf_path);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_query_ppdu(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_rx_phy_ppdu *phy_ppdu,
|
||
|
struct ieee80211_rx_status *status)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->query_ppdu)
|
||
|
chip->ops->query_ppdu(rtwdev, phy_ppdu, status);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_bb_ctrl_btc_preagc(struct rtw89_dev *rtwdev,
|
||
|
bool bt_en)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->bb_ctrl_btc_preagc)
|
||
|
chip->ops->bb_ctrl_btc_preagc(rtwdev, bt_en);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_cfg_txrx_path(struct rtw89_dev *rtwdev)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->cfg_txrx_path)
|
||
|
chip->ops->cfg_txrx_path(rtwdev);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
void rtw89_chip_cfg_txpwr_ul_tb_offset(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif)
|
||
|
{
|
||
|
struct rtw89_vif *rtwvif = (struct rtw89_vif *)vif->drv_priv;
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (!vif->bss_conf.he_support || !vif->cfg.assoc)
|
||
|
return;
|
||
|
|
||
|
if (chip->ops->set_txpwr_ul_tb_offset)
|
||
|
chip->ops->set_txpwr_ul_tb_offset(rtwdev, 0, rtwvif->mac_idx);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_load_txpwr_table(struct rtw89_dev *rtwdev,
|
||
|
const struct rtw89_txpwr_table *tbl)
|
||
|
{
|
||
|
tbl->load(rtwdev, tbl);
|
||
|
}
|
||
|
|
||
|
static inline u8 rtw89_regd_get(struct rtw89_dev *rtwdev, u8 band)
|
||
|
{
|
||
|
return rtwdev->regd->txpwr_regd[band];
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_ctrl_btg(struct rtw89_dev *rtwdev, bool btg)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (chip->ops->ctrl_btg)
|
||
|
chip->ops->ctrl_btg(rtwdev, btg);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
void rtw89_chip_fill_txdesc(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
chip->ops->fill_txdesc(rtwdev, desc_info, txdesc);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
void rtw89_chip_fill_txdesc_fwcmd(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
chip->ops->fill_txdesc_fwcmd(rtwdev, desc_info, txdesc);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
void rtw89_chip_mac_cfg_gnt(struct rtw89_dev *rtwdev,
|
||
|
const struct rtw89_mac_ax_coex_gnt *gnt_cfg)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
chip->ops->mac_cfg_gnt(rtwdev, gnt_cfg);
|
||
|
}
|
||
|
|
||
|
static inline void rtw89_chip_cfg_ctrl_path(struct rtw89_dev *rtwdev, bool wl)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
chip->ops->cfg_ctrl_path(rtwdev, wl);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
int rtw89_chip_stop_sch_tx(struct rtw89_dev *rtwdev, u8 mac_idx,
|
||
|
u32 *tx_en, enum rtw89_sch_tx_sel sel)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
return chip->ops->stop_sch_tx(rtwdev, mac_idx, tx_en, sel);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
int rtw89_chip_resume_sch_tx(struct rtw89_dev *rtwdev, u8 mac_idx, u32 tx_en)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
return chip->ops->resume_sch_tx(rtwdev, mac_idx, tx_en);
|
||
|
}
|
||
|
|
||
|
static inline
|
||
|
int rtw89_chip_h2c_dctl_sec_cam(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_vif *rtwvif,
|
||
|
struct rtw89_sta *rtwsta)
|
||
|
{
|
||
|
const struct rtw89_chip_info *chip = rtwdev->chip;
|
||
|
|
||
|
if (!chip->ops->h2c_dctl_sec_cam)
|
||
|
return 0;
|
||
|
return chip->ops->h2c_dctl_sec_cam(rtwdev, rtwvif, rtwsta);
|
||
|
}
|
||
|
|
||
|
static inline u8 *get_hdr_bssid(struct ieee80211_hdr *hdr)
|
||
|
{
|
||
|
__le16 fc = hdr->frame_control;
|
||
|
|
||
|
if (ieee80211_has_tods(fc))
|
||
|
return hdr->addr1;
|
||
|
else if (ieee80211_has_fromds(fc))
|
||
|
return hdr->addr2;
|
||
|
else
|
||
|
return hdr->addr3;
|
||
|
}
|
||
|
|
||
|
static inline bool rtw89_sta_has_beamformer_cap(struct ieee80211_sta *sta)
|
||
|
{
|
||
|
if ((sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_MU_BEAMFORMER_CAPABLE) ||
|
||
|
(sta->deflink.vht_cap.cap & IEEE80211_VHT_CAP_SU_BEAMFORMER_CAPABLE) ||
|
||
|
(sta->deflink.he_cap.he_cap_elem.phy_cap_info[3] &
|
||
|
IEEE80211_HE_PHY_CAP3_SU_BEAMFORMER) ||
|
||
|
(sta->deflink.he_cap.he_cap_elem.phy_cap_info[4] &
|
||
|
IEEE80211_HE_PHY_CAP4_MU_BEAMFORMER))
|
||
|
return true;
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
static inline struct rtw89_fw_suit *rtw89_fw_suit_get(struct rtw89_dev *rtwdev,
|
||
|
enum rtw89_fw_type type)
|
||
|
{
|
||
|
struct rtw89_fw_info *fw_info = &rtwdev->fw;
|
||
|
|
||
|
if (type == RTW89_FW_WOWLAN)
|
||
|
return &fw_info->wowlan;
|
||
|
return &fw_info->normal;
|
||
|
}
|
||
|
|
||
|
static inline struct sk_buff *rtw89_alloc_skb_for_rx(struct rtw89_dev *rtwdev,
|
||
|
unsigned int length)
|
||
|
{
|
||
|
struct sk_buff *skb;
|
||
|
|
||
|
if (rtwdev->hw->conf.flags & IEEE80211_CONF_MONITOR) {
|
||
|
skb = dev_alloc_skb(length + RTW89_RADIOTAP_ROOM);
|
||
|
if (!skb)
|
||
|
return NULL;
|
||
|
|
||
|
skb_reserve(skb, RTW89_RADIOTAP_ROOM);
|
||
|
return skb;
|
||
|
}
|
||
|
|
||
|
return dev_alloc_skb(length);
|
||
|
}
|
||
|
|
||
|
int rtw89_core_tx_write(struct rtw89_dev *rtwdev, struct ieee80211_vif *vif,
|
||
|
struct ieee80211_sta *sta, struct sk_buff *skb, int *qsel);
|
||
|
int rtw89_h2c_tx(struct rtw89_dev *rtwdev,
|
||
|
struct sk_buff *skb, bool fwdl);
|
||
|
void rtw89_core_tx_kick_off(struct rtw89_dev *rtwdev, u8 qsel);
|
||
|
void rtw89_core_fill_txdesc(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc);
|
||
|
void rtw89_core_fill_txdesc_v1(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc);
|
||
|
void rtw89_core_fill_txdesc_fwcmd_v1(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_tx_desc_info *desc_info,
|
||
|
void *txdesc);
|
||
|
void rtw89_core_rx(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_rx_desc_info *desc_info,
|
||
|
struct sk_buff *skb);
|
||
|
void rtw89_core_query_rxdesc(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_rx_desc_info *desc_info,
|
||
|
u8 *data, u32 data_offset);
|
||
|
void rtw89_core_napi_start(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_napi_stop(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_napi_init(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_napi_deinit(struct rtw89_dev *rtwdev);
|
||
|
int rtw89_core_sta_add(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif,
|
||
|
struct ieee80211_sta *sta);
|
||
|
int rtw89_core_sta_assoc(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif,
|
||
|
struct ieee80211_sta *sta);
|
||
|
int rtw89_core_sta_disassoc(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif,
|
||
|
struct ieee80211_sta *sta);
|
||
|
int rtw89_core_sta_disconnect(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif,
|
||
|
struct ieee80211_sta *sta);
|
||
|
int rtw89_core_sta_remove(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif,
|
||
|
struct ieee80211_sta *sta);
|
||
|
void rtw89_core_set_tid_config(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_sta *sta,
|
||
|
struct cfg80211_tid_config *tid_config);
|
||
|
int rtw89_core_init(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_deinit(struct rtw89_dev *rtwdev);
|
||
|
int rtw89_core_register(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_unregister(struct rtw89_dev *rtwdev);
|
||
|
struct rtw89_dev *rtw89_alloc_ieee80211_hw(struct device *device,
|
||
|
u32 bus_data_size,
|
||
|
const struct rtw89_chip_info *chip);
|
||
|
void rtw89_free_ieee80211_hw(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_set_chip_txpwr(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_get_default_chandef(struct cfg80211_chan_def *chandef);
|
||
|
void rtw89_set_channel(struct rtw89_dev *rtwdev);
|
||
|
u8 rtw89_core_acquire_bit_map(unsigned long *addr, unsigned long size);
|
||
|
void rtw89_core_release_bit_map(unsigned long *addr, u8 bit);
|
||
|
void rtw89_core_release_all_bits_map(unsigned long *addr, unsigned int nbits);
|
||
|
int rtw89_core_acquire_sta_ba_entry(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_sta *rtwsta, u8 tid, u8 *cam_idx);
|
||
|
int rtw89_core_release_sta_ba_entry(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_sta *rtwsta, u8 tid, u8 *cam_idx);
|
||
|
void rtw89_vif_type_mapping(struct ieee80211_vif *vif, bool assoc);
|
||
|
int rtw89_chip_info_setup(struct rtw89_dev *rtwdev);
|
||
|
bool rtw89_ra_report_to_bitrate(struct rtw89_dev *rtwdev, u8 rpt_rate, u16 *bitrate);
|
||
|
int rtw89_regd_init(struct rtw89_dev *rtwdev,
|
||
|
void (*reg_notifier)(struct wiphy *wiphy, struct regulatory_request *request));
|
||
|
void rtw89_regd_notifier(struct wiphy *wiphy, struct regulatory_request *request);
|
||
|
void rtw89_traffic_stats_init(struct rtw89_dev *rtwdev,
|
||
|
struct rtw89_traffic_stats *stats);
|
||
|
int rtw89_wait_for_cond(struct rtw89_wait_info *wait, unsigned int cond);
|
||
|
void rtw89_complete_cond(struct rtw89_wait_info *wait, unsigned int cond,
|
||
|
const struct rtw89_completion_data *data);
|
||
|
int rtw89_core_start(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_stop(struct rtw89_dev *rtwdev);
|
||
|
void rtw89_core_update_beacon_work(struct work_struct *work);
|
||
|
void rtw89_core_scan_start(struct rtw89_dev *rtwdev, struct rtw89_vif *rtwvif,
|
||
|
const u8 *mac_addr, bool hw_scan);
|
||
|
void rtw89_core_scan_complete(struct rtw89_dev *rtwdev,
|
||
|
struct ieee80211_vif *vif, bool hw_scan);
|
||
|
|
||
|
#endif
|