|
@@ -109,6 +109,28 @@
|
|
|
#include <hal_generic_api.h>
|
|
|
#include <hal_wbm.h>
|
|
|
|
|
|
+#define HAL_RX_MPDU_GET_SEQUENCE_NUMBER(_rx_mpdu_info) \
|
|
|
+ (_HAL_MS((*_OFFSET_TO_WORD_PTR(_rx_mpdu_info, \
|
|
|
+ RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_OFFSET)), \
|
|
|
+ RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_MASK, \
|
|
|
+ RX_MPDU_INFO_2_MPDU_SEQUENCE_NUMBER_LSB))
|
|
|
+
|
|
|
+/**
|
|
|
+ * hal_rx_get_rx_fragment_number_9000(): Function to retrieve rx fragment number
|
|
|
+ *
|
|
|
+ * @nbuf: Network buffer
|
|
|
+ * Returns: rx fragment number
|
|
|
+ */
|
|
|
+static
|
|
|
+uint8_t hal_rx_get_rx_fragment_number_9000(uint8_t *buf)
|
|
|
+{
|
|
|
+ struct rx_pkt_tlvs *pkt_tlvs = hal_rx_get_pkt_tlvs(buf);
|
|
|
+ struct rx_mpdu_info *rx_mpdu_info = hal_rx_get_mpdu_info(pkt_tlvs);
|
|
|
+
|
|
|
+ /* Return first 4 bits as fragment number */
|
|
|
+ return (HAL_RX_MPDU_GET_SEQUENCE_NUMBER(rx_mpdu_info) &
|
|
|
+ DOT11_SEQ_FRAG_MASK);
|
|
|
+}
|
|
|
struct hal_hw_txrx_ops qcn9000_hal_hw_txrx_ops = {
|
|
|
|
|
|
/* init and setup */
|
|
@@ -151,6 +173,7 @@ struct hal_hw_txrx_ops qcn9000_hal_hw_txrx_ops = {
|
|
|
hal_tx_set_pcp_tid_map_generic,
|
|
|
hal_tx_update_pcp_tid_generic,
|
|
|
hal_tx_update_tidmap_prty_generic,
|
|
|
+ hal_rx_get_rx_fragment_number_9000,
|
|
|
};
|
|
|
|
|
|
struct hal_hw_srng_config hw_srng_table_9000[] = {
|
|
@@ -608,3 +631,4 @@ void hal_qcn9000_attach(struct hal_soc *hal_soc)
|
|
|
hal_soc->hal_hw_reg_offset = hal_hw_reg_offset_qcn9000;
|
|
|
hal_soc->ops = &qcn9000_hal_hw_txrx_ops;
|
|
|
}
|
|
|
+
|