qcacmn: Add hal_rx_msdu_end_sa_idx_get API

Implement hal_rx_msdu_end_sa_idx API
based on the chipset as the macro to
retrieve sa_idx value is chipset
dependent.

Change-Id: Ib874520be9e7ad778c2a9a3c415e5c3047450b31
CRs-Fixed: 2522133
This commit is contained in:
Venkata Sharath Chandra Manchala
2019-09-20 16:18:42 -07:00
committed by nshrivas
parent 59ebd5ee0c
commit 5bf1e5a1da
15 changed files with 155 additions and 16 deletions

View File

@@ -1057,13 +1057,7 @@ hal_rx_msdu_end_l3_hdr_padding_get(uint8_t *buf)
return l3_header_padding;
}
#define HAL_RX_MSDU_END_SA_IDX_GET(_rx_msdu_end) \
(_HAL_MS((*_OFFSET_TO_WORD_PTR(_rx_msdu_end, \
RX_MSDU_END_13_SA_IDX_OFFSET)), \
RX_MSDU_END_13_SA_IDX_MASK, \
RX_MSDU_END_13_SA_IDX_LSB))
/**
/**
* hal_rx_msdu_end_sa_idx_get(): API to get the
* sa_idx from rx_msdu_end TLV
*
@@ -1071,15 +1065,12 @@ hal_rx_msdu_end_l3_hdr_padding_get(uint8_t *buf)
* Return: sa_idx (SA AST index)
*/
static inline uint16_t
hal_rx_msdu_end_sa_idx_get(uint8_t *buf)
hal_rx_msdu_end_sa_idx_get(hal_soc_handle_t hal_soc_hdl,
uint8_t *buf)
{
struct rx_pkt_tlvs *pkt_tlvs = (struct rx_pkt_tlvs *)buf;
struct rx_msdu_end *msdu_end = &pkt_tlvs->msdu_end_tlv.rx_msdu_end;
uint16_t sa_idx;
struct hal_soc *hal_soc = (struct hal_soc *)hal_soc_hdl;
sa_idx = HAL_RX_MSDU_END_SA_IDX_GET(msdu_end);
return sa_idx;
return hal_soc->ops->hal_rx_msdu_end_sa_idx_get(buf);
}
/**