|
@@ -59,7 +59,7 @@
|
|
|
* @buf: pointer to the start of RX PKT TLV header
|
|
|
* Return: uint32_t(nss)
|
|
|
*/
|
|
|
-uint32_t
|
|
|
+static uint32_t
|
|
|
hal_rx_msdu_start_nss_get_6290(uint8_t *buf)
|
|
|
{
|
|
|
struct rx_pkt_tlvs *pkt_tlvs = (struct rx_pkt_tlvs *)buf;
|
|
@@ -72,8 +72,6 @@ hal_rx_msdu_start_nss_get_6290(uint8_t *buf)
|
|
|
return qdf_get_hweight8(mimo_ss_bitmap);
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_msdu_start_nss_get_6290);
|
|
|
-
|
|
|
/**
|
|
|
* hal_rx_mon_hw_desc_get_mpdu_status_6290(): Retrieve MPDU status
|
|
|
*
|
|
@@ -128,8 +126,6 @@ void hal_rx_mon_hw_desc_get_mpdu_status_6290(void *hw_desc_addr,
|
|
|
/* TODO: rs->beamformed should be set for SU beamforming also */
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_mon_hw_desc_get_mpdu_status_6290);
|
|
|
-
|
|
|
#define LINK_DESC_SIZE (NUM_OF_DWORDS_RX_MSDU_LINK << 2)
|
|
|
|
|
|
uint32_t hal_get_link_desc_size_6290(void)
|
|
@@ -137,7 +133,6 @@ uint32_t hal_get_link_desc_size_6290(void)
|
|
|
return LINK_DESC_SIZE;
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_get_link_desc_size_6290);
|
|
|
|
|
|
/*
|
|
|
* hal_rx_get_tlv_6290(): API to get the tlv
|
|
@@ -145,13 +140,11 @@ qdf_export_symbol(hal_get_link_desc_size_6290);
|
|
|
* @rx_tlv: TLV data extracted from the rx packet
|
|
|
* Return: uint8_t
|
|
|
*/
|
|
|
-uint8_t hal_rx_get_tlv_6290(void *rx_tlv)
|
|
|
+static uint8_t hal_rx_get_tlv_6290(void *rx_tlv)
|
|
|
{
|
|
|
return HAL_RX_GET(rx_tlv, PHYRX_RSSI_LEGACY_0, RECEIVE_BANDWIDTH);
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_get_tlv_6290);
|
|
|
-
|
|
|
/**
|
|
|
* hal_rx_proc_phyrx_other_receive_info_tlv_6290()
|
|
|
* - process other receive info TLV
|
|
@@ -218,8 +211,6 @@ void hal_rx_proc_phyrx_other_receive_info_tlv_6290(void *rx_tlv_hdr,
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_proc_phyrx_other_receive_info_tlv_6290);
|
|
|
-
|
|
|
/**
|
|
|
* hal_rx_dump_msdu_start_tlv_6290() : dump RX msdu_start TLV in structured
|
|
|
* human readable format.
|
|
@@ -228,7 +219,8 @@ qdf_export_symbol(hal_rx_proc_phyrx_other_receive_info_tlv_6290);
|
|
|
*
|
|
|
* Return: void
|
|
|
*/
|
|
|
-void hal_rx_dump_msdu_start_tlv_6290(void *msdustart, uint8_t dbg_level)
|
|
|
+static void hal_rx_dump_msdu_start_tlv_6290(void *msdustart,
|
|
|
+ uint8_t dbg_level)
|
|
|
{
|
|
|
struct rx_msdu_start *msdu_start = (struct rx_msdu_start *)msdustart;
|
|
|
|
|
@@ -294,8 +286,6 @@ void hal_rx_dump_msdu_start_tlv_6290(void *msdustart, uint8_t dbg_level)
|
|
|
msdu_start->sw_phy_meta_data);
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_dump_msdu_start_tlv_6290);
|
|
|
-
|
|
|
/**
|
|
|
* hal_rx_dump_msdu_end_tlv_6290: dump RX msdu_end TLV in structured
|
|
|
* human readable format.
|
|
@@ -304,8 +294,8 @@ qdf_export_symbol(hal_rx_dump_msdu_start_tlv_6290);
|
|
|
*
|
|
|
* Return: void
|
|
|
*/
|
|
|
-void hal_rx_dump_msdu_end_tlv_6290(void *msduend,
|
|
|
- uint8_t dbg_level)
|
|
|
+static void hal_rx_dump_msdu_end_tlv_6290(void *msduend,
|
|
|
+ uint8_t dbg_level)
|
|
|
{
|
|
|
struct rx_msdu_end *msdu_end = (struct rx_msdu_end *)msduend;
|
|
|
|
|
@@ -405,7 +395,6 @@ void hal_rx_dump_msdu_end_tlv_6290(void *msduend,
|
|
|
msdu_end->sa_sw_peer_id);
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_dump_msdu_end_tlv_6290);
|
|
|
|
|
|
/*
|
|
|
* Get tid from RX_MPDU_START
|
|
@@ -416,7 +405,7 @@ qdf_export_symbol(hal_rx_dump_msdu_end_tlv_6290);
|
|
|
RX_MPDU_INFO_3_TID_MASK, \
|
|
|
RX_MPDU_INFO_3_TID_LSB))
|
|
|
|
|
|
-uint32_t hal_rx_mpdu_start_tid_get_6290(uint8_t *buf)
|
|
|
+static uint32_t hal_rx_mpdu_start_tid_get_6290(uint8_t *buf)
|
|
|
{
|
|
|
struct rx_pkt_tlvs *pkt_tlvs = (struct rx_pkt_tlvs *)buf;
|
|
|
struct rx_mpdu_start *mpdu_start =
|
|
@@ -428,8 +417,6 @@ uint32_t hal_rx_mpdu_start_tid_get_6290(uint8_t *buf)
|
|
|
return tid;
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_mpdu_start_tid_get_6290);
|
|
|
-
|
|
|
#define HAL_RX_MSDU_START_RECEPTION_TYPE_GET(_rx_msdu_start) \
|
|
|
(_HAL_MS((*_OFFSET_TO_WORD_PTR((_rx_msdu_start), \
|
|
|
RX_MSDU_START_5_RECEPTION_TYPE_OFFSET)), \
|
|
@@ -443,7 +430,7 @@ qdf_export_symbol(hal_rx_mpdu_start_tid_get_6290);
|
|
|
* @buf: pointer to the start of RX PKT TLV header
|
|
|
* Return: uint32_t(reception_type)
|
|
|
*/
|
|
|
-uint32_t hal_rx_msdu_start_reception_type_get_6290(uint8_t *buf)
|
|
|
+static uint32_t hal_rx_msdu_start_reception_type_get_6290(uint8_t *buf)
|
|
|
{
|
|
|
struct rx_pkt_tlvs *pkt_tlvs = (struct rx_pkt_tlvs *)buf;
|
|
|
struct rx_msdu_start *msdu_start =
|
|
@@ -455,8 +442,6 @@ uint32_t hal_rx_msdu_start_reception_type_get_6290(uint8_t *buf)
|
|
|
return reception_type;
|
|
|
}
|
|
|
|
|
|
-qdf_export_symbol(hal_rx_msdu_start_reception_type_get_6290);
|
|
|
-
|
|
|
#define HAL_RX_MSDU_END_DA_IDX_GET(_rx_msdu_end) \
|
|
|
(_HAL_MS((*_OFFSET_TO_WORD_PTR(_rx_msdu_end, \
|
|
|
RX_MSDU_END_13_DA_IDX_OFFSET)), \
|
|
@@ -470,7 +455,7 @@ qdf_export_symbol(hal_rx_msdu_start_reception_type_get_6290);
|
|
|
* @ buf: pointer to the start of RX PKT TLV headers
|
|
|
* Return: da index
|
|
|
*/
|
|
|
-uint16_t hal_rx_msdu_end_da_idx_get_6290(uint8_t *buf)
|
|
|
+static uint16_t hal_rx_msdu_end_da_idx_get_6290(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;
|