qcacmn: Featurize WMI APIs and TLVs that are specific to WIN
In the existing converged component, WMI TLV APIs are implemented in a generic manner without proper featurization. All the APIs exposed outside of WMI are implemented in wmi_unified_api.c and all the APIs forming the CMD or extracting the EVT is implemented in wmi_unified_tlv.c. Since WIN and MCL have a unified WMI layer in the converged component and there are features within WIN and MCL that are not common, there exists a good number of WMI APIs which are specific to WIN but compiled by MCL and vice-versa. Due to this inadvertent problem, there is a chunk of code and memory used up by WIN and MCL for features that are not used in their products. Featurize WMI APIs and TLVs that are specific to WIN - Air Time Fareness (ATF) - Direct Buffer Rx (DBR) - Smart Antenna (SMART_ANT) - Generic WIN specific WMI (AP) Change-Id: I7b27c8993da04c9e9651a9682de370daaa40d187 CRs-Fixed: 2320273
This commit is contained in:
@@ -3914,68 +3914,6 @@ struct thermal_mitigation_params {
|
||||
tt_level_config levelconf[THERMAL_LEVELS];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct smart_ant_enable_params - Smart antenna params
|
||||
* @enable: Enable/Disable
|
||||
* @mode: SA mode
|
||||
* @rx_antenna: RX antenna config
|
||||
* @gpio_pin : GPIO pin config
|
||||
* @gpio_func : GPIO function config
|
||||
*/
|
||||
struct smart_ant_enable_params {
|
||||
uint32_t enable;
|
||||
uint32_t mode;
|
||||
uint32_t rx_antenna;
|
||||
uint32_t gpio_pin[WMI_HAL_MAX_SANTENNA];
|
||||
uint32_t gpio_func[WMI_HAL_MAX_SANTENNA];
|
||||
uint32_t pdev_id;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct smart_ant_rx_ant_params - RX antenna params
|
||||
* @antenna: RX antenna
|
||||
*/
|
||||
struct smart_ant_rx_ant_params {
|
||||
uint32_t antenna;
|
||||
uint32_t pdev_id;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct smart_ant_tx_ant_params - TX antenna param
|
||||
* @antenna_array: Antenna arry
|
||||
* @vdev_id: VDEV id
|
||||
*/
|
||||
struct smart_ant_tx_ant_params {
|
||||
uint32_t *antenna_array;
|
||||
uint8_t vdev_id;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct smart_ant_training_info_params - SA training params
|
||||
* @vdev_id: VDEV id
|
||||
* @rate_array: Rates array
|
||||
* @antenna_array: Antenna array
|
||||
* @numpkts: num packets for training
|
||||
*/
|
||||
struct smart_ant_training_info_params {
|
||||
uint8_t vdev_id;
|
||||
uint32_t *rate_array;
|
||||
uint32_t *antenna_array;
|
||||
uint32_t numpkts;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct smart_ant_node_config_params - SA node config params
|
||||
* @vdev_id: VDEV id
|
||||
* @cmd_id: Command id
|
||||
* @args_count: Arguments count
|
||||
*/
|
||||
struct smart_ant_node_config_params {
|
||||
uint8_t vdev_id;
|
||||
uint32_t cmd_id;
|
||||
uint16_t args_count;
|
||||
uint32_t *args_arr;
|
||||
};
|
||||
/**
|
||||
* struct smart_ant_enable_tx_feedback_params - SA tx feeback params
|
||||
* @enable: Enable TX feedback for SA
|
||||
@@ -4226,134 +4164,6 @@ struct wmi_macaddr_t {
|
||||
uint32_t mac_addr47to32;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct atf_peer_info - ATF peer info params
|
||||
* @peer_macaddr: peer mac addr
|
||||
* @percentage_peer: percentage of air time for this peer
|
||||
* @vdev_id: Associated vdev id
|
||||
* @pdev_id: Associated pdev id
|
||||
*/
|
||||
typedef struct {
|
||||
struct wmi_macaddr_t peer_macaddr;
|
||||
uint32_t percentage_peer;
|
||||
uint32_t vdev_id;
|
||||
uint32_t pdev_id;
|
||||
} atf_peer_info;
|
||||
|
||||
/**
|
||||
* struct bwf_peer_info_t - BWF peer info params
|
||||
* @peer_macaddr: peer mac addr
|
||||
* @throughput: Throughput
|
||||
* @max_airtime: Max airtime
|
||||
* @priority: Priority level
|
||||
* @reserved: Reserved array
|
||||
* @vdev_id: Associated vdev id
|
||||
* @pdev_id: Associated pdev id
|
||||
*/
|
||||
typedef struct {
|
||||
struct wmi_macaddr_t peer_macaddr;
|
||||
uint32_t throughput;
|
||||
uint32_t max_airtime;
|
||||
uint32_t priority;
|
||||
uint32_t reserved[4];
|
||||
uint32_t vdev_id;
|
||||
uint32_t pdev_id;
|
||||
} bwf_peer_info;
|
||||
|
||||
/**
|
||||
* struct set_bwf_params - BWF params
|
||||
* @num_peers: number of peers
|
||||
* @atf_peer_info: BWF peer info
|
||||
*/
|
||||
struct set_bwf_params {
|
||||
uint32_t num_peers;
|
||||
bwf_peer_info peer_info[1];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct atf_peer_ext_info - ATF peer ext info params
|
||||
* @peer_macaddr: peer mac address
|
||||
* @group_index: group index
|
||||
* @atf_index_reserved: ATF index rsvd
|
||||
* @vdev_id: Associated vdev id
|
||||
* @pdev_id: Associated pdev id
|
||||
*/
|
||||
typedef struct {
|
||||
struct wmi_macaddr_t peer_macaddr;
|
||||
uint32_t group_index;
|
||||
uint32_t atf_index_reserved;
|
||||
uint16_t vdev_id;
|
||||
uint16_t pdev_id;
|
||||
} atf_peer_ext_info;
|
||||
|
||||
/**
|
||||
* struct set_atf_params - ATF params
|
||||
* @num_peers: number of peers
|
||||
* @atf_peer_info: ATF peer info
|
||||
*/
|
||||
struct set_atf_params {
|
||||
uint32_t num_peers;
|
||||
atf_peer_info peer_info[ATF_ACTIVED_MAX_CLIENTS];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct atf_peer_request_params - ATF peer req params
|
||||
* @num_peers: number of peers
|
||||
* @atf_peer_ext_info: ATF peer ext info
|
||||
*/
|
||||
struct atf_peer_request_params {
|
||||
uint32_t num_peers;
|
||||
atf_peer_ext_info peer_ext_info[ATF_ACTIVED_MAX_CLIENTS];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct atf_group_info - ATF group info params
|
||||
* @percentage_group: Percentage AT for group
|
||||
* @atf_group_units_reserved: ATF group information
|
||||
* @pdev_id: Associated pdev id
|
||||
*/
|
||||
typedef struct {
|
||||
uint32_t percentage_group;
|
||||
uint32_t atf_group_units_reserved;
|
||||
uint32_t pdev_id;
|
||||
} atf_group_info;
|
||||
|
||||
/**
|
||||
* struct atf_grouping_params - ATF grouping params
|
||||
* @num_groups: number of groups
|
||||
* @group_inf: Group informaition
|
||||
*/
|
||||
struct atf_grouping_params {
|
||||
uint32_t num_groups;
|
||||
atf_group_info group_info[ATF_ACTIVED_MAX_ATFGROUPS];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct atf_group_wmm_ac_info - ATF group AC info params
|
||||
* @atf_config_ac_be: Relative ATF% for BE traffic
|
||||
* @atf_config_ac_bk: Relative ATF% for BK traffic
|
||||
* @atf_config_ac_vi: Relative ATF% for VI traffic
|
||||
* @atf_config_ac_vo: Relative ATF% for VO traffic
|
||||
* @reserved: Reserved for future use
|
||||
*/
|
||||
struct atf_group_wmm_ac_info {
|
||||
uint32_t atf_config_ac_be;
|
||||
uint32_t atf_config_ac_bk;
|
||||
uint32_t atf_config_ac_vi;
|
||||
uint32_t atf_config_ac_vo;
|
||||
uint32_t reserved[2];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct atf_grp_ac_params - ATF group AC config params
|
||||
* @num_groups: number of groups
|
||||
* @group_inf: Group informaition
|
||||
*/
|
||||
struct atf_group_ac_params {
|
||||
uint32_t num_groups;
|
||||
struct atf_group_wmm_ac_info group_info[ATF_ACTIVED_MAX_ATFGROUPS];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct wlan_profile_params - WLAN profile params
|
||||
* @param_id: param id
|
||||
@@ -4439,18 +4249,6 @@ struct wmi_host_wme_vparams {
|
||||
u_int32_t noackpolicy;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct ant_switch_tbl_params - Antenna switch table params
|
||||
* @ant_ctrl_common1: ANtenna control common param 1
|
||||
* @ant_ctrl_common2: Antenna control commn param 2
|
||||
*/
|
||||
struct ant_switch_tbl_params {
|
||||
uint32_t ant_ctrl_common1;
|
||||
uint32_t ant_ctrl_common2;
|
||||
uint32_t pdev_id;
|
||||
uint32_t antCtrlChain;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct ratepwr_table_params - Rate power table params
|
||||
* @ratepwr_tbl: pointer to rate power table
|
||||
@@ -7558,68 +7356,6 @@ typedef struct {
|
||||
uint32_t wmm_ac;
|
||||
} wmi_host_tx_data_traffic_ctrl_event;
|
||||
|
||||
enum {
|
||||
WMI_HOST_ATF_PEER_STATS_DISABLED = 0,
|
||||
WMI_HOST_ATF_PEER_STATS_ENABLED = 1,
|
||||
};
|
||||
|
||||
#define WMI_HOST_ATF_PEER_STATS_GET_PEER_AST_IDX(token_info) \
|
||||
(token_info.field1 & 0xffff)
|
||||
|
||||
#define WMI_HOST_ATF_PEER_STATS_GET_USED_TOKENS(token_info) \
|
||||
((token_info.field2 & 0xffff0000) >> 16)
|
||||
|
||||
#define WMI_HOST_ATF_PEER_STATS_GET_UNUSED_TOKENS(token_info) \
|
||||
(token_info.field2 & 0xffff)
|
||||
|
||||
#define WMI_HOST_ATF_PEER_STATS_SET_PEER_AST_IDX(token_info, peer_ast_idx) \
|
||||
do { \
|
||||
token_info.field1 &= 0xffff0000; \
|
||||
token_info.field1 |= ((peer_ast_idx) & 0xffff); \
|
||||
} while (0)
|
||||
|
||||
#define WMI_HOST_ATF_PEER_STATS_SET_USED_TOKENS(token_info, used_token) \
|
||||
do { \
|
||||
token_info.field2 &= 0x0000ffff; \
|
||||
token_info.field2 |= (((used_token) & 0xffff) << 16); \
|
||||
} while (0)
|
||||
|
||||
#define WMI_HOST_ATF_PEER_STATS_SET_UNUSED_TOKENS(token_info, unused_token) \
|
||||
do { \
|
||||
token_info.field2 &= 0xffff0000; \
|
||||
token_info.field2 |= ((unused_token) & 0xffff); \
|
||||
} while (0)
|
||||
|
||||
/**
|
||||
* struct wmi_host_atf_peer_stats_info
|
||||
* @field1: bits 15:0 peer_ast_index WMI_ATF_PEER_STATS_GET_PEER_AST_IDX
|
||||
* bits 31:16 reserved
|
||||
* @field2: bits 15:0 used tokens WMI_ATF_PEER_STATS_GET_USED_TOKENS
|
||||
* bits 31:16 unused tokens WMI_ATF_PEER_STATS_GET_UNUSED_TOKENS
|
||||
* @field3: for future use
|
||||
*/
|
||||
typedef struct {
|
||||
uint32_t field1;
|
||||
uint32_t field2;
|
||||
uint32_t field3;
|
||||
} wmi_host_atf_peer_stats_info;
|
||||
|
||||
/**
|
||||
* struct wmi_host_atf_peer_stats_event
|
||||
* @pdev_id: pdev_id
|
||||
* @num_atf_peers: number of peers in token_info_list
|
||||
* @comp_usable_airtime: computed usable airtime in tokens
|
||||
* @reserved[4]: reserved for future use
|
||||
* @wmi_host_atf_peer_stats_info token_info_list: list of num_atf_peers
|
||||
*/
|
||||
typedef struct {
|
||||
uint32_t pdev_id;
|
||||
uint32_t num_atf_peers;
|
||||
uint32_t comp_usable_airtime;
|
||||
uint32_t reserved[4];
|
||||
wmi_host_atf_peer_stats_info token_info_list[1];
|
||||
} wmi_host_atf_peer_stats_event;
|
||||
|
||||
/**
|
||||
* struct wmi_host_ath_dcs_cw_int
|
||||
* @channel: either number or freq in mhz
|
||||
@@ -8449,113 +8185,6 @@ struct wdsentry {
|
||||
uint32_t flags;
|
||||
};
|
||||
|
||||
#define WMI_HOST_DBR_RING_ADDR_LO_S 0
|
||||
#define WMI_HOST_DBR_RING_ADDR_LO 0xffffffff
|
||||
|
||||
#define WMI_HOST_DBR_RING_ADDR_LO_GET(dword) \
|
||||
WMI_HOST_F_MS(dword, WMI_HOST_DBR_RING_ADDR_LO)
|
||||
#define WMI_HOST_DBR_RING_ADDR_LO_SET(dword, val) \
|
||||
WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_RING_ADDR_LO)
|
||||
|
||||
#define WMI_HOST_DBR_RING_ADDR_HI_S 0
|
||||
#define WMI_HOST_DBR_RING_ADDR_HI 0xf
|
||||
|
||||
#define WMI_HOST_DBR_RING_ADDR_HI_GET(dword) \
|
||||
WMI_HOST_F_MS(dword, WMI_HOST_DBR_RING_ADDR_HI)
|
||||
#define WMI_HOST_DBR_RING_ADDR_HI_SET(dword, val) \
|
||||
WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_RING_ADDR_HI)
|
||||
|
||||
#define WMI_HOST_DBR_DATA_ADDR_LO_S 0
|
||||
#define WMI_HOST_DBR_DATA_ADDR_LO 0xffffffff
|
||||
|
||||
#define WMI_HOST_DBR_DATA_ADDR_LO_GET(dword) \
|
||||
WMI_HOST_F_MS(dword, WMI_HOST_DBR_DATA_ADDR_LO)
|
||||
#define WMI_HOST_DBR_DATA_ADDR_LO_SET(dword, val) \
|
||||
WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_DATA_ADDR_LO)
|
||||
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_S 0
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI 0xf
|
||||
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_GET(dword) \
|
||||
WMI_HOST_F_MS(dword, WMI_HOST_DBR_DATA_ADDR_HI)
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_SET(dword, val) \
|
||||
WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_DATA_ADDR_HI)
|
||||
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA_S 12
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA 0x7fffff
|
||||
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA_GET(dword) \
|
||||
WMI_HOST_F_MS(dword, WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA)
|
||||
#define WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA_SET(dword, val) \
|
||||
WMI_HOST_F_RMW(dword, val, WMI_HOST_DBR_DATA_ADDR_HI_HOST_DATA)
|
||||
|
||||
/**
|
||||
* struct direct_buf_rx_metadata: direct buffer metadata
|
||||
*
|
||||
* @noisefloor: noisefloor
|
||||
*/
|
||||
struct direct_buf_rx_metadata {
|
||||
int32_t noisefloor[WMI_HOST_MAX_NUM_CHAINS];
|
||||
};
|
||||
|
||||
/**
|
||||
* struct direct_buf_rx_entry: direct buffer rx release entry structure
|
||||
*
|
||||
* @addr_lo: LSB 32-bits of the buffer
|
||||
* @addr_hi: MSB 32-bits of the buffer
|
||||
* @len: Length of the buffer
|
||||
*/
|
||||
struct direct_buf_rx_entry {
|
||||
uint32_t paddr_lo;
|
||||
uint32_t paddr_hi;
|
||||
uint32_t len;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct direct_buf_rx_rsp: direct buffer rx response structure
|
||||
*
|
||||
* @pdev_id: Index of the pdev for which response is received
|
||||
* @mod_mod: Index of the module for which respone is received
|
||||
* @num_buf_release_entry: Number of buffers released through event
|
||||
* @dbr_entries: Pointer to direct buffer rx entry struct
|
||||
*/
|
||||
struct direct_buf_rx_rsp {
|
||||
uint32_t pdev_id;
|
||||
uint32_t mod_id;
|
||||
uint32_t num_buf_release_entry;
|
||||
uint32_t num_meta_data_entry;
|
||||
struct direct_buf_rx_entry *dbr_entries;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct direct_buf_rx_cfg_req: direct buffer rx config request structure
|
||||
*
|
||||
* @pdev_id: Index of the pdev for which response is received
|
||||
* @mod_id: Index of the module for which respone is received
|
||||
* @base_paddr_lo: Lower 32bits of ring base address
|
||||
* @base_paddr_hi: Higher 32bits of ring base address
|
||||
* @head_idx_paddr_lo: Lower 32bits of head idx register address
|
||||
* @head_idx_paddr_hi: Higher 32bits of head idx register address
|
||||
* @tail_idx_paddr_lo: Lower 32bits of tail idx register address
|
||||
* @tail_idx_paddr_hi: Higher 32bits of tail idx register address
|
||||
* @buf_size: Size of the buffer for each pointer in the ring
|
||||
* @num_elems: Number of pointers allocated and part of the source ring
|
||||
*/
|
||||
struct direct_buf_rx_cfg_req {
|
||||
uint32_t pdev_id;
|
||||
uint32_t mod_id;
|
||||
uint32_t base_paddr_lo;
|
||||
uint32_t base_paddr_hi;
|
||||
uint32_t head_idx_paddr_lo;
|
||||
uint32_t head_idx_paddr_hi;
|
||||
uint32_t tail_idx_paddr_hi;
|
||||
uint32_t tail_idx_paddr_lo;
|
||||
uint32_t buf_size;
|
||||
uint32_t num_elems;
|
||||
uint32_t event_timeout_ms;
|
||||
uint32_t num_resp_per_event;
|
||||
};
|
||||
|
||||
/**
|
||||
* struct wmi_obss_detection_cfg_param - obss detection cfg
|
||||
* @vdev_id: vdev id
|
||||
|
Reference in New Issue
Block a user