Revert "qcacmn: add reo bit to enable reo qref in fw"

This reverts commit Ib8d4a2f6e7f598d45ba2b2c628ed6f3929fc3337

Change-Id: I00c1fe824d3776961180cc82ec398c0f9da9b403
CRs-Fixed: 3292473
This commit is contained in:
Ruben Columbus
2022-09-22 17:42:52 -07:00
committed by Madan Koyyalamudi
parent 60c0c089cd
commit 15e2647ec7
3 changed files with 0 additions and 7 deletions

View File

@@ -769,7 +769,6 @@ struct hal_reo_params {
uint8_t alt_dst_ind_0; uint8_t alt_dst_ind_0;
/** padding */ /** padding */
uint8_t padding[2]; uint8_t padding[2];
uint8_t reo_ref_peer_id_fix_enable;
}; };
/** /**

View File

@@ -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( reg_val = HAL_REG_READ(soc, HWIO_REO_R0_GENERAL_ENABLE_ADDR(
REO_REG_REG_BASE)); 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); hal_reo_config_9224(soc, reg_val, reo_params);
/* Other ring enable bits and REO_ENABLE will be set by FW */ /* Other ring enable bits and REO_ENABLE will be set by FW */

View File

@@ -93,7 +93,6 @@
reg_val |= HAL_SM(HWIO_REO_R0_MISC_CTL, \ reg_val |= HAL_SM(HWIO_REO_R0_MISC_CTL, \
FRAGMENT_DEST_RING, \ FRAGMENT_DEST_RING, \
(reo_params)->frag_dst_ring); \ (reo_params)->frag_dst_ring); \
reg_val |= ((reo_params)->reo_ref_peer_id_fix_enable) << 6; \
reg_val |= ((HAL_REO_MSDU_END_COPY) << \ reg_val |= ((HAL_REO_MSDU_END_COPY) << \
HAL_REO_R0_MISC_CTL_SPARE_CONTROL_SHFT); \ HAL_REO_R0_MISC_CTL_SPARE_CONTROL_SHFT); \
HAL_REG_WRITE(soc, \ HAL_REG_WRITE(soc, \