Add support to read TSF2 and TQM scratch regitser in the HAL layer for WKK v1 and v2 board. Change-Id: I0ef5e8cf4e06c0b5c98169252a81f70989285d2d CRs-Fixed: 3321782
941 rader
29 KiB
C
941 rader
29 KiB
C
/*
|
|
* Copyright (c) 2016-2021 The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2021-2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
* above copyright notice and this permission notice appear in all
|
|
* copies.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
|
|
* WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
|
|
* AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
|
|
#if !defined(HAL_TX_H)
|
|
#define HAL_TX_H
|
|
|
|
/*---------------------------------------------------------------------------
|
|
Include files
|
|
---------------------------------------------------------------------------*/
|
|
#include "hal_api.h"
|
|
#include "wcss_version.h"
|
|
#include "hal_hw_headers.h"
|
|
#include "hal_tx_hw_defines.h"
|
|
|
|
#define HAL_WBM_RELEASE_RING_2_BUFFER_TYPE 0
|
|
#define HAL_WBM_RELEASE_RING_2_DESC_TYPE 1
|
|
|
|
#define HAL_TX_DESC_TLV_TAG_OFFSET 1
|
|
#define HAL_TX_DESC_TLV_LEN_OFFSET 10
|
|
|
|
/*---------------------------------------------------------------------------
|
|
Preprocessor definitions and constants
|
|
---------------------------------------------------------------------------*/
|
|
#define HAL_OFFSET(block, field) block ## _ ## field ## _OFFSET
|
|
|
|
#define HAL_TX_LSB(block, field) block ## _ ## field ## _LSB
|
|
|
|
#define HAL_TX_MASK(block, field) block ## _ ## field ## _MASK
|
|
|
|
#define HAL_TX_DESC_OFFSET(desc, block, field) \
|
|
(((uint8_t *)desc) + HAL_OFFSET(block, field))
|
|
|
|
#define HAL_SET_FLD(desc, block , field) \
|
|
(*(uint32_t *) ((uint8_t *) desc + HAL_OFFSET(block, field)))
|
|
|
|
#define HAL_SET_FLD_OFFSET(desc, block , field, offset) \
|
|
(*(uint32_t *) ((uint8_t *) desc + HAL_OFFSET(block, field) + (offset)))
|
|
|
|
#define HAL_SET_FLD_64(desc, block, field) \
|
|
(*(uint64_t *)((uint8_t *)desc + HAL_OFFSET(block, field)))
|
|
|
|
#define HAL_SET_FLD_OFFSET_64(desc, block, field, offset) \
|
|
(*(uint64_t *)((uint8_t *)desc + HAL_OFFSET(block, field) + (offset)))
|
|
|
|
#define HAL_TX_DESC_SET_TLV_HDR(desc, tag, len) \
|
|
do { \
|
|
uint32_t temp = 0; \
|
|
temp |= (tag << HAL_TX_DESC_TLV_TAG_OFFSET); \
|
|
temp |= (len << HAL_TX_DESC_TLV_LEN_OFFSET); \
|
|
(*(uint32_t *)desc) = temp; \
|
|
} while (0)
|
|
|
|
#define HAL_TX_TCL_DATA_TAG WIFITCL_DATA_CMD_E
|
|
#define HAL_TX_TCL_CMD_TAG WIFITCL_GSE_CMD_E
|
|
|
|
#define HAL_TX_SM(block, field, value) \
|
|
((value << (block ## _ ## field ## _LSB)) & \
|
|
(block ## _ ## field ## _MASK))
|
|
|
|
#define HAL_TX_MS(block, field, value) \
|
|
(((value) & (block ## _ ## field ## _MASK)) >> \
|
|
(block ## _ ## field ## _LSB))
|
|
|
|
#define HAL_TX_DESC_GET(desc, block, field) \
|
|
HAL_TX_MS(block, field, HAL_SET_FLD(desc, block, field))
|
|
|
|
#define HAL_TX_DESC_OFFSET_GET(desc, block, field, offset) \
|
|
HAL_TX_MS(block, field, HAL_SET_FLD_OFFSET(desc, block, field, offset))
|
|
|
|
#define HAL_TX_DESC_SUBBLOCK_GET(desc, block, sub, field) \
|
|
HAL_TX_MS(sub, field, HAL_SET_FLD(desc, block, sub))
|
|
|
|
#define HAL_TX_DESC_GET_64(desc, block, field) \
|
|
HAL_TX_MS(block, field, HAL_SET_FLD_64(desc, block, field))
|
|
|
|
#define HAL_TX_DESC_OFFSET_GET_64(desc, block, field, offset) \
|
|
HAL_TX_MS(block, field, HAL_SET_FLD_OFFSET_64(desc, block, field,\
|
|
offset))
|
|
|
|
#define HAL_TX_DESC_SUBBLOCK_GET_64(desc, block, sub, field) \
|
|
HAL_TX_MS(sub, field, HAL_SET_FLD_64(desc, block, sub))
|
|
|
|
#define HAL_TX_BUF_TYPE_BUFFER 0
|
|
#define HAL_TX_BUF_TYPE_EXT_DESC 1
|
|
|
|
#define NUM_OF_DWORDS_TX_MSDU_EXTENSION 18
|
|
|
|
#define HAL_TX_DESC_LEN_DWORDS (NUM_OF_DWORDS_TCL_DATA_CMD)
|
|
#define HAL_TX_DESC_LEN_BYTES (NUM_OF_DWORDS_TCL_DATA_CMD * 4)
|
|
#define HAL_TX_EXTENSION_DESC_LEN_DWORDS (NUM_OF_DWORDS_TX_MSDU_EXTENSION)
|
|
#define HAL_TX_EXTENSION_DESC_LEN_BYTES (NUM_OF_DWORDS_TX_MSDU_EXTENSION * 4)
|
|
|
|
#define NUM_OF_DWORDS_WBM_RELEASE_RING 8
|
|
|
|
#define HAL_TX_COMPLETION_DESC_LEN_DWORDS (NUM_OF_DWORDS_WBM_RELEASE_RING)
|
|
#define HAL_TX_COMPLETION_DESC_LEN_BYTES (NUM_OF_DWORDS_WBM_RELEASE_RING*4)
|
|
#define HAL_TX_BITS_PER_TID 3
|
|
#define HAL_TX_TID_BITS_MASK ((1 << HAL_TX_BITS_PER_TID) - 1)
|
|
#define HAL_TX_NUM_DSCP_PER_REGISTER 10
|
|
#define HAL_MAX_HW_DSCP_TID_MAPS 2
|
|
#define HAL_MAX_HW_DSCP_TID_MAPS_11AX 32
|
|
|
|
#define HAL_MAX_HW_DSCP_TID_V2_MAPS 48
|
|
#define HAL_MAX_HW_DSCP_TID_V2_MAPS_5332 24
|
|
#define HTT_META_HEADER_LEN_BYTES 64
|
|
#define HAL_TX_EXT_DESC_WITH_META_DATA \
|
|
(HTT_META_HEADER_LEN_BYTES + HAL_TX_EXTENSION_DESC_LEN_BYTES)
|
|
|
|
#define HAL_TX_NUM_PCP_PER_REGISTER 8
|
|
|
|
/* Length of WBM release ring without the status words */
|
|
#define HAL_TX_COMPLETION_DESC_BASE_LEN 12
|
|
|
|
#define HAL_TX_COMP_RELEASE_SOURCE_TQM 0
|
|
#define HAL_TX_COMP_RELEASE_SOURCE_REO 2
|
|
#define HAL_TX_COMP_RELEASE_SOURCE_FW 3
|
|
|
|
/* Define a place-holder release reason for FW */
|
|
#define HAL_TX_COMP_RELEASE_REASON_FW 99
|
|
|
|
/*
|
|
* Offset of HTT Tx Descriptor in WBM Completion
|
|
* HTT Tx Desc structure is passed from firmware to host overlaid
|
|
* on wbm_release_ring DWORDs 2,3 ,4 and 5for software based completions
|
|
* (Exception frames and TQM bypass frames)
|
|
*/
|
|
#define HAL_TX_COMP_HTT_STATUS_OFFSET 8
|
|
#ifdef CONFIG_BERYLLIUM
|
|
#define HAL_TX_COMP_HTT_STATUS_LEN 20
|
|
#else
|
|
#define HAL_TX_COMP_HTT_STATUS_LEN 16
|
|
#endif
|
|
|
|
#define HAL_TX_BUF_TYPE_BUFFER 0
|
|
#define HAL_TX_BUF_TYPE_EXT_DESC 1
|
|
|
|
#define HAL_TX_EXT_DESC_BUF_OFFSET TX_MSDU_EXTENSION_6_BUF0_PTR_31_0_OFFSET
|
|
#define HAL_TX_EXT_BUF_LOW_MASK TX_MSDU_EXTENSION_6_BUF0_PTR_31_0_MASK
|
|
#define HAL_TX_EXT_BUF_HI_MASK TX_MSDU_EXTENSION_7_BUF0_PTR_39_32_MASK
|
|
#define HAL_TX_EXT_BUF_LEN_MASK TX_MSDU_EXTENSION_7_BUF0_LEN_MASK
|
|
#define HAL_TX_EXT_BUF_LEN_LSB TX_MSDU_EXTENSION_7_BUF0_LEN_LSB
|
|
#define HAL_TX_EXT_BUF_WD_SIZE 2
|
|
|
|
#define HAL_TX_DESC_ADDRX_EN 0x1
|
|
#define HAL_TX_DESC_ADDRY_EN 0x2
|
|
#define HAL_TX_DESC_DEFAULT_LMAC_ID 0x3
|
|
|
|
#define HAL_TX_ADDR_SEARCH_DEFAULT 0x0
|
|
#define HAL_TX_ADDR_INDEX_SEARCH 0x1
|
|
#define HAL_TX_FLOW_INDEX_SEARCH 0x2
|
|
|
|
#define HAL_WBM2SW_RELEASE_SRC_GET(wbm_desc)(((*(((uint32_t *)wbm_desc) + \
|
|
(HAL_WBM2SW_RING_RELEASE_SOURCE_MODULE_OFFSET >> 2))) & \
|
|
HAL_WBM2SW_RING_RELEASE_SOURCE_MODULE_MASK) >> \
|
|
HAL_WBM2SW_RING_RELEASE_SOURCE_MODULE_LSB)
|
|
|
|
#define HAL_WBM_SW0_BM_ID(sw0_bm_id) (sw0_bm_id)
|
|
#define HAL_WBM_SW1_BM_ID(sw0_bm_id) ((sw0_bm_id) + 1)
|
|
#define HAL_WBM_SW2_BM_ID(sw0_bm_id) ((sw0_bm_id) + 2)
|
|
#define HAL_WBM_SW3_BM_ID(sw0_bm_id) ((sw0_bm_id) + 3)
|
|
#define HAL_WBM_SW4_BM_ID(sw0_bm_id) ((sw0_bm_id) + 4)
|
|
#define HAL_WBM_SW5_BM_ID(sw0_bm_id) ((sw0_bm_id) + 5)
|
|
#define HAL_WBM_SW6_BM_ID(sw0_bm_id) ((sw0_bm_id) + 6)
|
|
|
|
/*---------------------------------------------------------------------------
|
|
Structures
|
|
---------------------------------------------------------------------------*/
|
|
/**
|
|
* struct hal_tx_completion_status - HAL Tx completion descriptor contents
|
|
* @status: frame acked/failed
|
|
* @release_src: release source = TQM/FW
|
|
* @ack_frame_rssi: RSSI of the received ACK or BA frame
|
|
* @first_msdu: Indicates this MSDU is the first MSDU in AMSDU
|
|
* @last_msdu: Indicates this MSDU is the last MSDU in AMSDU
|
|
* @msdu_part_of_amsdu : Indicates this MSDU was part of an A-MSDU in MPDU
|
|
* @bw: Indicates the BW of the upcoming transmission -
|
|
* <enum 0 transmit_bw_20_MHz>
|
|
* <enum 1 transmit_bw_40_MHz>
|
|
* <enum 2 transmit_bw_80_MHz>
|
|
* <enum 3 transmit_bw_160_MHz>
|
|
* @pkt_type: Transmit Packet Type
|
|
* @stbc: When set, STBC transmission rate was used
|
|
* @ldpc: When set, use LDPC transmission rates
|
|
* @sgi: <enum 0 0_8_us_sgi > Legacy normal GI
|
|
* <enum 1 0_4_us_sgi > Legacy short GI
|
|
* <enum 2 1_6_us_sgi > HE related GI
|
|
* <enum 3 3_2_us_sgi > HE
|
|
* @mcs: Transmit MCS Rate
|
|
* @ofdma: Set when the transmission was an OFDMA transmission
|
|
* @tones_in_ru: The number of tones in the RU used.
|
|
* @tsf: Lower 32 bits of the TSF
|
|
* @ppdu_id: TSF, snapshot of this value when transmission of the
|
|
* PPDU containing the frame finished.
|
|
* @transmit_cnt: Number of times this frame has been transmitted
|
|
* @tid: TID of the flow or MPDU queue
|
|
* @peer_id: Peer ID of the flow or MPDU queue
|
|
* @buffer_timestamp: Frame system entrance timestamp in units of 1024
|
|
* microseconds
|
|
*/
|
|
struct hal_tx_completion_status {
|
|
uint8_t status;
|
|
uint8_t release_src;
|
|
uint8_t ack_frame_rssi;
|
|
uint8_t first_msdu:1,
|
|
last_msdu:1,
|
|
msdu_part_of_amsdu:1;
|
|
uint32_t bw:2,
|
|
pkt_type:4,
|
|
stbc:1,
|
|
ldpc:1,
|
|
sgi:2,
|
|
mcs:4,
|
|
ofdma:1,
|
|
tones_in_ru:12,
|
|
valid:1;
|
|
uint32_t tsf;
|
|
uint32_t ppdu_id;
|
|
uint8_t transmit_cnt;
|
|
uint8_t tid;
|
|
uint16_t peer_id;
|
|
#if defined(WLAN_FEATURE_TSF_UPLINK_DELAY) || defined(WLAN_CONFIG_TX_DELAY)
|
|
uint32_t buffer_timestamp:19;
|
|
#endif
|
|
};
|
|
|
|
/**
|
|
* struct hal_tx_desc_comp_s - hal tx completion descriptor contents
|
|
* @desc: Transmit status information from descriptor
|
|
*/
|
|
struct hal_tx_desc_comp_s {
|
|
uint32_t desc[HAL_TX_COMPLETION_DESC_LEN_DWORDS];
|
|
};
|
|
|
|
/*
|
|
* enum hal_tx_encrypt_type - Type of decrypt cipher used (valid only for RAW)
|
|
* @HAL_TX_ENCRYPT_TYPE_WEP_40: WEP 40-bit
|
|
* @HAL_TX_ENCRYPT_TYPE_WEP_10: WEP 10-bit
|
|
* @HAL_TX_ENCRYPT_TYPE_TKIP_NO_MIC: TKIP without MIC
|
|
* @HAL_TX_ENCRYPT_TYPE_WEP_128: WEP_128
|
|
* @HAL_TX_ENCRYPT_TYPE_TKIP_WITH_MIC: TKIP_WITH_MIC
|
|
* @HAL_TX_ENCRYPT_TYPE_WAPI: WAPI
|
|
* @HAL_TX_ENCRYPT_TYPE_AES_CCMP_128: AES_CCMP_128
|
|
* @HAL_TX_ENCRYPT_TYPE_NO_CIPHER: NO CIPHER
|
|
* @HAL_TX_ENCRYPT_TYPE_AES_CCMP_256: AES_CCMP_256
|
|
* @HAL_TX_ENCRYPT_TYPE_AES_GCMP_128: AES_GCMP_128
|
|
* @HAL_TX_ENCRYPT_TYPE_AES_GCMP_256: AES_GCMP_256
|
|
* @HAL_TX_ENCRYPT_TYPE_WAPI_GCM_SM4: WAPI GCM SM4
|
|
*/
|
|
enum hal_tx_encrypt_type {
|
|
HAL_TX_ENCRYPT_TYPE_WEP_40 = 0,
|
|
HAL_TX_ENCRYPT_TYPE_WEP_104 = 1 ,
|
|
HAL_TX_ENCRYPT_TYPE_TKIP_NO_MIC = 2,
|
|
HAL_TX_ENCRYPT_TYPE_WEP_128 = 3,
|
|
HAL_TX_ENCRYPT_TYPE_TKIP_WITH_MIC = 4,
|
|
HAL_TX_ENCRYPT_TYPE_WAPI = 5,
|
|
HAL_TX_ENCRYPT_TYPE_AES_CCMP_128 = 6,
|
|
HAL_TX_ENCRYPT_TYPE_NO_CIPHER = 7,
|
|
HAL_TX_ENCRYPT_TYPE_AES_CCMP_256 = 8,
|
|
HAL_TX_ENCRYPT_TYPE_AES_GCMP_128 = 9,
|
|
HAL_TX_ENCRYPT_TYPE_AES_GCMP_256 = 10,
|
|
HAL_TX_ENCRYPT_TYPE_WAPI_GCM_SM4 = 11,
|
|
};
|
|
|
|
/*
|
|
* enum hal_tx_encap_type - Encapsulation type that HW will perform
|
|
* @HAL_TX_ENCAP_TYPE_RAW: Raw Packet Type
|
|
* @HAL_TX_ENCAP_TYPE_NWIFI: Native WiFi Type
|
|
* @HAL_TX_ENCAP_TYPE_ETHERNET: Ethernet
|
|
* @HAL_TX_ENCAP_TYPE_802_3: 802.3 Frame
|
|
*/
|
|
enum hal_tx_encap_type {
|
|
HAL_TX_ENCAP_TYPE_RAW = 0,
|
|
HAL_TX_ENCAP_TYPE_NWIFI = 1,
|
|
HAL_TX_ENCAP_TYPE_ETHERNET = 2,
|
|
HAL_TX_ENCAP_TYPE_802_3 = 3,
|
|
};
|
|
|
|
/**
|
|
* enum hal_tx_tqm_release_reason - TQM Release reason codes
|
|
*
|
|
* @HAL_TX_TQM_RR_FRAME_ACKED : ACK of BA for it was received
|
|
* @HAL_TX_TQM_RR_REM_CMD_REM : Remove cmd of type “Remove_mpdus” initiated
|
|
* by SW
|
|
* @HAL_TX_TQM_RR_REM_CMD_TX : Remove command of type Remove_transmitted_mpdus
|
|
* initiated by SW
|
|
* @HAL_TX_TQM_RR_REM_CMD_NOTX : Remove cmd of type Remove_untransmitted_mpdus
|
|
* initiated by SW
|
|
* @HAL_TX_TQM_RR_REM_CMD_AGED : Remove command of type “Remove_aged_mpdus” or
|
|
* “Remove_aged_msdus” initiated by SW
|
|
* @HAL_TX_TQM_RR_FW_REASON1 : Remove command where fw indicated that
|
|
* remove reason is fw_reason1
|
|
* @HAL_TX_TQM_RR_FW_REASON2 : Remove command where fw indicated that
|
|
* remove reason is fw_reason2
|
|
* @HAL_TX_TQM_RR_FW_REASON3 : Remove command where fw indicated that
|
|
* remove reason is fw_reason3
|
|
* @HAL_TX_TQM_RR_REM_CMD_DISABLE_QUEUE : Remove command where fw indicated that
|
|
* remove reason is remove disable queue
|
|
* @HAL_TX_TQM_RR_REM_CMD_TILL_NONMATCHING: Remove command from fw to remove
|
|
* all mpdu until 1st non-match
|
|
* @HAL_TX_TQM_RR_DROP_THRESHOLD: Dropped due to drop threshold criteria
|
|
* @HAL_TX_TQM_RR_LINK_DESC_UNAVAILABLE: Dropped due to link desc not available
|
|
* @HAL_TX_TQM_RR_DROP_OR_INVALID_MSDU: Dropped due drop bit set or null flow
|
|
* @HAL_TX_TQM_RR_MULTICAST_DROP: Dropped due mcast drop set for VDEV
|
|
* @HAL_TX_TQM_RR_VDEV_MISMATCH_DROP: Dropped due to being set with
|
|
* 'TCL_drop_reason'
|
|
*
|
|
*/
|
|
enum hal_tx_tqm_release_reason {
|
|
HAL_TX_TQM_RR_FRAME_ACKED,
|
|
HAL_TX_TQM_RR_REM_CMD_REM,
|
|
HAL_TX_TQM_RR_REM_CMD_TX,
|
|
HAL_TX_TQM_RR_REM_CMD_NOTX,
|
|
HAL_TX_TQM_RR_REM_CMD_AGED,
|
|
HAL_TX_TQM_RR_FW_REASON1,
|
|
HAL_TX_TQM_RR_FW_REASON2,
|
|
HAL_TX_TQM_RR_FW_REASON3,
|
|
HAL_TX_TQM_RR_REM_CMD_DISABLE_QUEUE,
|
|
HAL_TX_TQM_RR_REM_CMD_TILL_NONMATCHING,
|
|
HAL_TX_TQM_RR_DROP_THRESHOLD,
|
|
HAL_TX_TQM_RR_LINK_DESC_UNAVAILABLE,
|
|
HAL_TX_TQM_RR_DROP_OR_INVALID_MSDU,
|
|
HAL_TX_TQM_RR_MULTICAST_DROP,
|
|
HAL_TX_TQM_RR_VDEV_MISMATCH_DROP,
|
|
};
|
|
|
|
/* enum - Table IDs for 2 DSCP-TID mapping Tables that TCL H/W supports
|
|
* @HAL_TX_DSCP_TID_MAP_TABLE_DEFAULT: Default DSCP-TID mapping table
|
|
* @HAL_TX_DSCP_TID_MAP_TABLE_OVERRIDE: DSCP-TID map override table
|
|
*/
|
|
enum hal_tx_dscp_tid_table_id {
|
|
HAL_TX_DSCP_TID_MAP_TABLE_DEFAULT,
|
|
HAL_TX_DSCP_TID_MAP_TABLE_OVERRIDE,
|
|
};
|
|
|
|
/*---------------------------------------------------------------------------
|
|
Function declarations and documentation
|
|
---------------------------------------------------------------------------*/
|
|
|
|
/*---------------------------------------------------------------------------
|
|
Tx MSDU Extension Descriptor accessor APIs
|
|
---------------------------------------------------------------------------*/
|
|
/**
|
|
* hal_tx_ext_desc_set_tso_enable() - Set TSO Enable Flag
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @tso_en: bool value set to true if TSO is enabled
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_tso_enable(void *desc,
|
|
uint8_t tso_en)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, TSO_ENABLE) |=
|
|
HAL_TX_SM(HAL_TX_MSDU_EXTENSION, TSO_ENABLE, tso_en);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_tso_flags() - Set TSO Flags
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @flags: 32-bit word with all TSO flags consolidated
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_tso_flags(void *desc,
|
|
uint32_t tso_flags)
|
|
{
|
|
HAL_SET_FLD_OFFSET(desc, HAL_TX_MSDU_EXTENSION, TSO_ENABLE, 0) =
|
|
tso_flags;
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_tcp_flags() - Enable HW Checksum offload
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @tcp_flags: TCP flags {NS,CWR,ECE,URG,ACK,PSH, RST ,SYN,FIN}
|
|
* @mask: TCP flag mask. Tcp_flag is inserted into the header
|
|
* based on the mask, if tso is enabled
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_tcp_flags(void *desc,
|
|
uint16_t tcp_flags,
|
|
uint16_t mask)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, TCP_FLAG) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, TCP_FLAG, tcp_flags)) |
|
|
(HAL_TX_SM(HAL_TX_MSDU_EXTENSION, TCP_FLAG_MASK, mask)));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_msdu_length() - Set L2 and IP Lengths
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @l2_len: L2 length for the msdu, if tso is enabled
|
|
* @ip_len: IP length for the msdu, if tso is enabled
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_msdu_length(void *desc,
|
|
uint16_t l2_len,
|
|
uint16_t ip_len)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, L2_LENGTH) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, L2_LENGTH, l2_len)) |
|
|
(HAL_TX_SM(HAL_TX_MSDU_EXTENSION, IP_LENGTH, ip_len)));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_tcp_seq() - Set TCP Sequence number
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @seq_num: Tcp_seq_number for the msdu, if tso is enabled
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_tcp_seq(void *desc,
|
|
uint32_t seq_num)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, TCP_SEQ_NUMBER) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, TCP_SEQ_NUMBER, seq_num)));
|
|
}
|
|
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_ip_id() - Set IP Identification field
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @id: IP Id field for the msdu, if tso is enabled
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_ip_id(void *desc,
|
|
uint16_t id)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, IP_IDENTIFICATION) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, IP_IDENTIFICATION, id)));
|
|
}
|
|
/**
|
|
* hal_tx_ext_desc_set_buffer() - Set Buffer Pointer and Length for a fragment
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @frag_num: Fragment number (value can be 0 to 5)
|
|
* @paddr_lo: Lower 32-bit of Buffer Physical address
|
|
* @paddr_hi: Upper 32-bit of Buffer Physical address
|
|
* @length: Buffer Length
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_buffer(void *desc,
|
|
uint8_t frag_num,
|
|
uint32_t paddr_lo,
|
|
uint16_t paddr_hi,
|
|
uint16_t length)
|
|
{
|
|
HAL_SET_FLD_OFFSET(desc, HAL_TX_MSDU_EXTENSION, BUF0_PTR_31_0,
|
|
(frag_num << 3)) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF0_PTR_31_0, paddr_lo)));
|
|
|
|
HAL_SET_FLD_OFFSET(desc, HAL_TX_MSDU_EXTENSION, BUF0_PTR_39_32,
|
|
(frag_num << 3)) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF0_PTR_39_32,
|
|
(paddr_hi))));
|
|
|
|
HAL_SET_FLD_OFFSET(desc, HAL_TX_MSDU_EXTENSION, BUF0_LEN,
|
|
(frag_num << 3)) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF0_LEN, length)));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_get_frag_info() - Get the frag_num'th frag iova and len
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @frag_num: fragment number (value can be 0 to 5)
|
|
* @iova: fragment dma address
|
|
* @len: fragment Length
|
|
*
|
|
* Return: None
|
|
*/
|
|
static inline void hal_tx_ext_desc_get_frag_info(void *desc, uint8_t frag_num,
|
|
qdf_dma_addr_t *iova,
|
|
uint32_t *len)
|
|
{
|
|
uint64_t iova_hi;
|
|
|
|
*iova = HAL_TX_DESC_OFFSET_GET(desc, HAL_TX_MSDU_EXTENSION,
|
|
BUF0_PTR_31_0, (frag_num << 3));
|
|
|
|
iova_hi = HAL_TX_DESC_OFFSET_GET(desc, HAL_TX_MSDU_EXTENSION,
|
|
BUF0_PTR_39_32, (frag_num << 3));
|
|
*iova |= (iova_hi << 32);
|
|
|
|
*len = HAL_TX_DESC_OFFSET_GET(desc, HAL_TX_MSDU_EXTENSION, BUF0_LEN,
|
|
(frag_num << 3));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_buffer0_param() - Set Buffer 0 Pointer and Length
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @paddr_lo: Lower 32-bit of Buffer Physical address
|
|
* @paddr_hi: Upper 32-bit of Buffer Physical address
|
|
* @length: Buffer 0 Length
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_buffer0_param(void *desc,
|
|
uint32_t paddr_lo,
|
|
uint16_t paddr_hi,
|
|
uint16_t length)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF0_PTR_31_0) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF0_PTR_31_0, paddr_lo)));
|
|
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF0_PTR_39_32) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION,
|
|
BUF0_PTR_39_32, paddr_hi)));
|
|
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF0_LEN) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF0_LEN, length)));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_buffer1_param() - Set Buffer 1 Pointer and Length
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @paddr_lo: Lower 32-bit of Buffer Physical address
|
|
* @paddr_hi: Upper 32-bit of Buffer Physical address
|
|
* @length: Buffer 1 Length
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_buffer1_param(void *desc,
|
|
uint32_t paddr_lo,
|
|
uint16_t paddr_hi,
|
|
uint16_t length)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF1_PTR_31_0) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF1_PTR_31_0, paddr_lo)));
|
|
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF1_PTR_39_32) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION,
|
|
BUF1_PTR_39_32, paddr_hi)));
|
|
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF1_LEN) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF1_LEN, length)));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_set_buffer2_param() - Set Buffer 2 Pointer and Length
|
|
* @desc: Handle to Tx MSDU Extension Descriptor
|
|
* @paddr_lo: Lower 32-bit of Buffer Physical address
|
|
* @paddr_hi: Upper 32-bit of Buffer Physical address
|
|
* @length: Buffer 2 Length
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_set_buffer2_param(void *desc,
|
|
uint32_t paddr_lo,
|
|
uint16_t paddr_hi,
|
|
uint16_t length)
|
|
{
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF2_PTR_31_0) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF2_PTR_31_0,
|
|
paddr_lo)));
|
|
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF2_PTR_39_32) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF2_PTR_39_32,
|
|
paddr_hi)));
|
|
|
|
HAL_SET_FLD(desc, HAL_TX_MSDU_EXTENSION, BUF2_LEN) |=
|
|
((HAL_TX_SM(HAL_TX_MSDU_EXTENSION, BUF2_LEN, length)));
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_sync - Commit the descriptor to Hardware
|
|
* @desc_cached: Cached descriptor that software maintains
|
|
* @hw_desc: Hardware descriptor to be updated
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_ext_desc_sync(uint8_t *desc_cached,
|
|
uint8_t *hw_desc)
|
|
{
|
|
qdf_mem_copy(&hw_desc[0], &desc_cached[0],
|
|
HAL_TX_EXT_DESC_WITH_META_DATA);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_ext_desc_get_tso_enable() - Set TSO Enable Flag
|
|
* @hal_tx_ext_desc: Handle to Tx MSDU Extension Descriptor
|
|
*
|
|
* Return: tso_enable value in the descriptor
|
|
*/
|
|
static inline uint32_t hal_tx_ext_desc_get_tso_enable(void *hal_tx_ext_desc)
|
|
{
|
|
uint32_t *desc = (uint32_t *) hal_tx_ext_desc;
|
|
return (*desc & HAL_TX_MSDU_EXTENSION_TSO_ENABLE_MASK) >>
|
|
HAL_TX_MSDU_EXTENSION_TSO_ENABLE_LSB;
|
|
}
|
|
|
|
/*---------------------------------------------------------------------------
|
|
WBM Descriptor accessor APIs for Tx completions
|
|
---------------------------------------------------------------------------*/
|
|
/**
|
|
* hal_tx_comp_get_buffer_type() - Buffer or Descriptor type
|
|
* @hal_desc: completion ring descriptor pointer
|
|
*
|
|
* This function will return the type of pointer - buffer or descriptor
|
|
*
|
|
* Return: buffer type
|
|
*/
|
|
static inline uint32_t hal_tx_comp_get_buffer_type(void *hal_desc)
|
|
{
|
|
uint32_t comp_desc =
|
|
*(uint32_t *) (((uint8_t *) hal_desc) +
|
|
HAL_TX_COMP_BUFFER_OR_DESC_TYPE_OFFSET);
|
|
|
|
return (comp_desc & HAL_TX_COMP_BUFFER_OR_DESC_TYPE_MASK) >>
|
|
HAL_TX_COMP_BUFFER_OR_DESC_TYPE_LSB;
|
|
}
|
|
|
|
#ifdef QCA_WIFI_KIWI
|
|
/**
|
|
* hal_tx_comp_get_buffer_source() - Get buffer release source value
|
|
* @hal_desc: completion ring descriptor pointer
|
|
*
|
|
* This function will get buffer release source from Tx completion descriptor
|
|
*
|
|
* Return: buffer release source
|
|
*/
|
|
static inline uint32_t
|
|
hal_tx_comp_get_buffer_source(hal_soc_handle_t hal_soc_hdl,
|
|
void *hal_desc)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
return hal_soc->ops->hal_tx_comp_get_buffer_source(hal_desc);
|
|
}
|
|
#else
|
|
static inline uint32_t
|
|
hal_tx_comp_get_buffer_source(hal_soc_handle_t hal_soc_hdl,
|
|
void *hal_desc)
|
|
{
|
|
return HAL_WBM2SW_RELEASE_SRC_GET(hal_desc);
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* hal_tx_comp_get_release_reason() - TQM Release reason
|
|
* @hal_desc: completion ring descriptor pointer
|
|
*
|
|
* This function will return the type of pointer - buffer or descriptor
|
|
*
|
|
* Return: buffer type
|
|
*/
|
|
static inline
|
|
uint8_t hal_tx_comp_get_release_reason(void *hal_desc,
|
|
hal_soc_handle_t hal_soc_hdl)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
return hal_soc->ops->hal_tx_comp_get_release_reason(hal_desc);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_comp_get_peer_id() - Get peer_id value()
|
|
* @hal_desc: completion ring descriptor pointer
|
|
*
|
|
* This function will get peer_id value from Tx completion descriptor
|
|
*
|
|
* Return: buffer release source
|
|
*/
|
|
static inline uint16_t hal_tx_comp_get_peer_id(void *hal_desc)
|
|
{
|
|
uint32_t comp_desc =
|
|
*(uint32_t *)(((uint8_t *)hal_desc) +
|
|
HAL_TX_COMP_SW_PEER_ID_OFFSET);
|
|
|
|
return (comp_desc & HAL_TX_COMP_SW_PEER_ID_MASK) >>
|
|
HAL_TX_COMP_SW_PEER_ID_LSB;
|
|
}
|
|
|
|
/**
|
|
* hal_tx_comp_get_tx_status() - Get tx transmission status()
|
|
* @hal_desc: completion ring descriptor pointer
|
|
*
|
|
* This function will get transmit status value from Tx completion descriptor
|
|
*
|
|
* Return: buffer release source
|
|
*/
|
|
static inline uint8_t hal_tx_comp_get_tx_status(void *hal_desc)
|
|
{
|
|
uint32_t comp_desc =
|
|
*(uint32_t *)(((uint8_t *)hal_desc) +
|
|
HAL_TX_COMP_TQM_RELEASE_REASON_OFFSET);
|
|
|
|
return (comp_desc & HAL_TX_COMP_TQM_RELEASE_REASON_MASK) >>
|
|
HAL_TX_COMP_TQM_RELEASE_REASON_LSB;
|
|
}
|
|
|
|
/**
|
|
* hal_tx_comp_desc_sync() - collect hardware descriptor contents
|
|
* @hal_desc: hardware descriptor pointer
|
|
* @comp: software descriptor pointer
|
|
* @read_status: 0 - Do not read status words from descriptors
|
|
* 1 - Enable reading of status words from descriptor
|
|
*
|
|
* This function will collect hardware release ring element contents and
|
|
* translate to software descriptor content
|
|
*
|
|
* Return: none
|
|
*/
|
|
|
|
static inline void hal_tx_comp_desc_sync(void *hw_desc,
|
|
struct hal_tx_desc_comp_s *comp,
|
|
bool read_status)
|
|
{
|
|
if (!read_status)
|
|
qdf_mem_copy(comp, hw_desc, HAL_TX_COMPLETION_DESC_BASE_LEN);
|
|
else
|
|
qdf_mem_copy(comp, hw_desc, HAL_TX_COMPLETION_DESC_LEN_BYTES);
|
|
}
|
|
|
|
/**
|
|
* hal_dump_comp_desc() - dump tx completion descriptor
|
|
* @hal_desc: hardware descriptor pointer
|
|
*
|
|
* This function will print tx completion descriptor
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_dump_comp_desc(void *hw_desc)
|
|
{
|
|
struct hal_tx_desc_comp_s *comp =
|
|
(struct hal_tx_desc_comp_s *)hw_desc;
|
|
uint32_t i;
|
|
|
|
QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_FATAL,
|
|
"Current tx completion descriptor is");
|
|
|
|
for (i = 0; i < HAL_TX_COMPLETION_DESC_LEN_DWORDS; i++) {
|
|
QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_FATAL,
|
|
"DWORD[i] = 0x%x", comp->desc[i]);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* hal_tx_comp_get_htt_desc() - Read the HTT portion of WBM Descriptor
|
|
* @hal_desc: Hardware (WBM) descriptor pointer
|
|
* @htt_desc: Software HTT descriptor pointer
|
|
*
|
|
* This function will read the HTT structure overlaid on WBM descriptor
|
|
* into a cached software descriptor
|
|
*
|
|
*/
|
|
static inline void hal_tx_comp_get_htt_desc(void *hw_desc, uint8_t *htt_desc)
|
|
{
|
|
uint8_t *desc = hw_desc + HAL_TX_COMP_HTT_STATUS_OFFSET;
|
|
|
|
qdf_mem_copy(htt_desc, desc, HAL_TX_COMP_HTT_STATUS_LEN);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_init_data_ring() - Initialize all the TCL Descriptors in SRNG
|
|
* @hal_soc_hdl: Handle to HAL SoC structure
|
|
* @hal_srng: Handle to HAL SRNG structure
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_init_data_ring(hal_soc_handle_t hal_soc_hdl,
|
|
hal_ring_handle_t hal_ring_hdl)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_init_data_ring(hal_soc_hdl, hal_ring_hdl);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_set_dscp_tid_map_default() - Configure default DSCP to TID map table
|
|
*
|
|
* @soc: HAL SoC context
|
|
* @map: DSCP-TID mapping table
|
|
* @id: mapping table ID - 0,1
|
|
*
|
|
* Return: void
|
|
*/
|
|
static inline void hal_tx_set_dscp_tid_map(hal_soc_handle_t hal_soc_hdl,
|
|
uint8_t *map, uint8_t id)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_set_dscp_tid_map(hal_soc, map, id);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_update_dscp_tid() - Update the dscp tid map table as updated by user
|
|
*
|
|
* @soc: HAL SoC context
|
|
* @map: DSCP-TID mapping table
|
|
* @id : MAP ID
|
|
* @dscp: DSCP_TID map index
|
|
*
|
|
* Return: void
|
|
*/
|
|
static inline
|
|
void hal_tx_update_dscp_tid(hal_soc_handle_t hal_soc_hdl, uint8_t tid,
|
|
uint8_t id, uint8_t dscp)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_update_dscp_tid(hal_soc, tid, id, dscp);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_comp_get_status() - TQM Release reason
|
|
* @hal_desc: completion ring Tx status
|
|
*
|
|
* This function will parse the WBM completion descriptor and populate in
|
|
* HAL structure
|
|
*
|
|
* Return: none
|
|
*/
|
|
static inline void hal_tx_comp_get_status(void *desc, void *ts,
|
|
hal_soc_handle_t hal_soc_hdl)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_comp_get_status(desc, ts, hal_soc);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_set_pcp_tid_map_default() - Configure default PCP to TID map table
|
|
*
|
|
* @soc: HAL SoC context
|
|
* @map: PCP-TID mapping table
|
|
*
|
|
* Return: void
|
|
*/
|
|
static inline void hal_tx_set_pcp_tid_map_default(hal_soc_handle_t hal_soc_hdl,
|
|
uint8_t *map)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_set_pcp_tid_map(hal_soc, map);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_update_pcp_tid_map() - Update PCP to TID map table
|
|
*
|
|
* @soc: HAL SoC context
|
|
* @pcp: pcp value
|
|
* @tid: tid no
|
|
*
|
|
* Return: void
|
|
*/
|
|
static inline void hal_tx_update_pcp_tid_map(hal_soc_handle_t hal_soc_hdl,
|
|
uint8_t pcp, uint8_t tid)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_update_pcp_tid_map(hal_soc, pcp, tid);
|
|
}
|
|
|
|
/**
|
|
* hal_tx_set_tidmap_prty() - Configure TIDmap priority
|
|
*
|
|
* @soc: HAL SoC context
|
|
* @val: priority value
|
|
*
|
|
* Return: void
|
|
*/
|
|
static inline
|
|
void hal_tx_set_tidmap_prty(hal_soc_handle_t hal_soc_hdl, uint8_t val)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
hal_soc->ops->hal_tx_set_tidmap_prty(hal_soc, val);
|
|
}
|
|
|
|
/**
|
|
* hal_get_wbm_internal_error() - wbm internal error
|
|
* @hal_desc: completion ring descriptor pointer
|
|
*
|
|
* This function will return the type of pointer - buffer or descriptor
|
|
*
|
|
* Return: buffer type
|
|
*/
|
|
static inline
|
|
uint8_t hal_get_wbm_internal_error(hal_soc_handle_t hal_soc_hdl, void *hal_desc)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
return hal_soc->ops->hal_get_wbm_internal_error(hal_desc);
|
|
}
|
|
|
|
/**
|
|
* hal_get_tsf2_offset() - get tsf2 offset
|
|
*
|
|
* @hal_soc_hdl: HAL SoC context
|
|
* @mac_id: mac id
|
|
* @value: pointer to update tsf2 offset value
|
|
*
|
|
* Return: void
|
|
*/
|
|
static inline void
|
|
hal_get_tsf2_offset(hal_soc_handle_t hal_soc_hdl, uint8_t mac_id,
|
|
uint64_t *value)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
if (hal_soc->ops->hal_get_tsf2_scratch_reg)
|
|
hal_soc->ops->hal_get_tsf2_scratch_reg(hal_soc_hdl, mac_id,
|
|
value);
|
|
}
|
|
|
|
/**
|
|
* hal_get_tqm_offset() - get tqm offset
|
|
*
|
|
* @hal_soc_hdl: HAL SoC context
|
|
* @value: pointer to update tqm offset value
|
|
*
|
|
* Return: void
|
|
*/
|
|
|
|
static inline void
|
|
hal_get_tqm_offset(hal_soc_handle_t hal_soc_hdl, uint64_t *value)
|
|
{
|
|
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
|
|
|
|
if (hal_soc->ops->hal_get_tqm_scratch_reg)
|
|
hal_soc->ops->hal_get_tqm_scratch_reg(hal_soc_hdl, value);
|
|
}
|
|
#endif /* HAL_TX_H */
|