qcacmn: Enable interrupts for DP Rx Error release and REO status rings
Initialize correct mask values to enables Rx error and status ring interrupts Change-Id: I717fbea492f12d983fb57d964996f4b79c73cb38 CRs-Fixed: 2004658
This commit is contained in:

committed by
snandini

parent
c2cb427e7f
commit
3d8e1e8655
@@ -422,9 +422,21 @@ static QDF_STATUS dp_soc_interrupt_attach(void *txrx_soc)
|
|||||||
int rx_mon_mask =
|
int rx_mon_mask =
|
||||||
wlan_cfg_get_rx_mon_ring_mask(soc->wlan_cfg_ctx, i);
|
wlan_cfg_get_rx_mon_ring_mask(soc->wlan_cfg_ctx, i);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Mapping the exception/status rings to IRQ Group 0 (CPU 0).
|
||||||
|
* Later add wlan_cfg interface for these masks
|
||||||
|
*/
|
||||||
|
int rx_err_ring_mask = 0x1;
|
||||||
|
int rx_wbm_rel_ring_mask = 0x1;
|
||||||
|
int reo_status_ring_mask = 0x1;
|
||||||
|
|
||||||
soc->intr_ctx[i].tx_ring_mask = tx_mask;
|
soc->intr_ctx[i].tx_ring_mask = tx_mask;
|
||||||
soc->intr_ctx[i].rx_ring_mask = rx_mask;
|
soc->intr_ctx[i].rx_ring_mask = rx_mask;
|
||||||
soc->intr_ctx[i].rx_mon_ring_mask = rx_mon_mask;
|
soc->intr_ctx[i].rx_mon_ring_mask = rx_mon_mask;
|
||||||
|
soc->intr_ctx[i].rx_err_ring_mask = rx_err_ring_mask;
|
||||||
|
soc->intr_ctx[i].rx_wbm_rel_ring_mask = rx_wbm_rel_ring_mask;
|
||||||
|
soc->intr_ctx[i].reo_status_ring_mask = reo_status_ring_mask;
|
||||||
|
|
||||||
soc->intr_ctx[i].soc = soc;
|
soc->intr_ctx[i].soc = soc;
|
||||||
|
|
||||||
num_irq = 0;
|
num_irq = 0;
|
||||||
@@ -446,6 +458,16 @@ static QDF_STATUS dp_soc_interrupt_attach(void *txrx_soc)
|
|||||||
(rxdma2host_monitor_destination_mac1
|
(rxdma2host_monitor_destination_mac1
|
||||||
- j);
|
- j);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (rx_wbm_rel_ring_mask & (1 << j))
|
||||||
|
irq_id_map[num_irq++] = wbm2host_rx_release;
|
||||||
|
|
||||||
|
if (rx_err_ring_mask & (1 << j))
|
||||||
|
irq_id_map[num_irq++] = reo2host_exception;
|
||||||
|
|
||||||
|
if (reo_status_ring_mask & (1 << j))
|
||||||
|
irq_id_map[num_irq++] = reo2host_status;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -122,7 +122,7 @@ enum hif_ic_irq {
|
|||||||
host2rxdma_monitor_ring3,
|
host2rxdma_monitor_ring3,
|
||||||
host2rxdma_monitor_ring2,
|
host2rxdma_monitor_ring2,
|
||||||
host2rxdma_monitor_ring1,
|
host2rxdma_monitor_ring1,
|
||||||
reo2ost_exception,
|
reo2host_exception,
|
||||||
wbm2host_rx_release,
|
wbm2host_rx_release,
|
||||||
reo2host_status,
|
reo2host_status,
|
||||||
reo2host_destination_ring4,
|
reo2host_destination_ring4,
|
||||||
|
Reference in New Issue
Block a user