From 15e2647ec77dbff7d95f66409df83d463efb2aa6 Mon Sep 17 00:00:00 2001 From: Ruben Columbus Date: Thu, 22 Sep 2022 17:42:52 -0700 Subject: [PATCH] Revert "qcacmn: add reo bit to enable reo qref in fw" This reverts commit Ib8d4a2f6e7f598d45ba2b2c628ed6f3929fc3337 Change-Id: I00c1fe824d3776961180cc82ec398c0f9da9b403 CRs-Fixed: 3292473 --- hal/wifi3.0/hal_internal.h | 1 - hal/wifi3.0/qcn9224/hal_9224.h | 5 ----- hal/wifi3.0/qcn9224/hal_9224_rx.h | 1 - 3 files changed, 7 deletions(-) diff --git a/hal/wifi3.0/hal_internal.h b/hal/wifi3.0/hal_internal.h index 399fef68cd..6a68be4b39 100644 --- a/hal/wifi3.0/hal_internal.h +++ b/hal/wifi3.0/hal_internal.h @@ -769,7 +769,6 @@ struct hal_reo_params { uint8_t alt_dst_ind_0; /** padding */ uint8_t padding[2]; - uint8_t reo_ref_peer_id_fix_enable; }; /** diff --git a/hal/wifi3.0/qcn9224/hal_9224.h b/hal/wifi3.0/qcn9224/hal_9224.h index 05fb9355da..3b5b57e79c 100644 --- a/hal/wifi3.0/qcn9224/hal_9224.h +++ b/hal/wifi3.0/qcn9224/hal_9224.h @@ -1677,11 +1677,6 @@ static void hal_reo_setup_9224(struct hal_soc *soc, void *reoparams, reg_val = HAL_REG_READ(soc, HWIO_REO_R0_GENERAL_ENABLE_ADDR( REO_REG_REG_BASE)); - if (soc->version >= 2) { - struct hal_reo_params *reo_params = reoparams; - - reo_params->reo_ref_peer_id_fix_enable = 1; - } hal_reo_config_9224(soc, reg_val, reo_params); /* Other ring enable bits and REO_ENABLE will be set by FW */ diff --git a/hal/wifi3.0/qcn9224/hal_9224_rx.h b/hal/wifi3.0/qcn9224/hal_9224_rx.h index 30d59396a7..7c35b79005 100644 --- a/hal/wifi3.0/qcn9224/hal_9224_rx.h +++ b/hal/wifi3.0/qcn9224/hal_9224_rx.h @@ -93,7 +93,6 @@ reg_val |= HAL_SM(HWIO_REO_R0_MISC_CTL, \ FRAGMENT_DEST_RING, \ (reo_params)->frag_dst_ring); \ - reg_val |= ((reo_params)->reo_ref_peer_id_fix_enable) << 6; \ reg_val |= ((HAL_REO_MSDU_END_COPY) << \ HAL_REO_R0_MISC_CTL_SPARE_CONTROL_SHFT); \ HAL_REG_WRITE(soc, \