|
@@ -1214,6 +1214,24 @@ static inline uint32_t hal_rx_msdu_flow_idx_get_6490(uint8_t *buf)
|
|
|
return HAL_RX_MSDU_END_FLOW_IDX_GET(msdu_end);
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * hal_rx_msdu_get_reo_destination_indication_6490: API to get
|
|
|
+ * reo_destination_indication from rx_msdu_end TLV
|
|
|
+ * @buf: pointer to the start of RX PKT TLV headers
|
|
|
+ * @reo_destination_indication: pointer to return value of reo_destination_indication
|
|
|
+ *
|
|
|
+ * Return: none
|
|
|
+ */
|
|
|
+static inline void
|
|
|
+hal_rx_msdu_get_reo_destination_indication_6490(uint8_t *buf,
|
|
|
+ uint32_t *reo_destination_indication)
|
|
|
+{
|
|
|
+ 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;
|
|
|
+
|
|
|
+ *reo_destination_indication = HAL_RX_MSDU_END_REO_DEST_IND_GET(msdu_end);
|
|
|
+}
|
|
|
+
|
|
|
/**
|
|
|
* hal_rx_msdu_flow_idx_invalid_6490: API to get flow index invalid
|
|
|
* from rx_msdu_end TLV
|
|
@@ -1745,7 +1763,11 @@ struct hal_hw_txrx_ops qca6490_hal_hw_txrx_ops = {
|
|
|
hal_rx_mpdu_start_offset_get_generic,
|
|
|
hal_rx_mpdu_end_offset_get_generic,
|
|
|
hal_rx_flow_setup_fse_6490,
|
|
|
- hal_compute_reo_remap_ix2_ix3_6490
|
|
|
+ hal_compute_reo_remap_ix2_ix3_6490,
|
|
|
+ NULL,
|
|
|
+ NULL,
|
|
|
+ NULL,
|
|
|
+ hal_rx_msdu_get_reo_destination_indication_6490
|
|
|
};
|
|
|
|
|
|
struct hal_hw_srng_config hw_srng_table_6490[] = {
|