mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
32 lines
1018 B
Diff
32 lines
1018 B
Diff
From b71cab89b4be24528db1f4641825d2a0fd5f8efe Mon Sep 17 00:00:00 2001
|
|
From: P Praneesh <ppranees@codeaurora.org>
|
|
Date: Mon, 14 Dec 2020 19:05:02 +0530
|
|
Subject: [PATCH] ath11k: Disable unused CE8 interrupts
|
|
|
|
Host driver doesn't need to process CE8 interrupts (used
|
|
by target independently)
|
|
|
|
The volume of interrupts is huge within short interval,
|
|
CPU0 CPU1 CPU2 CPU3
|
|
14022188 0 0 0 GIC 71 Edge ce8
|
|
|
|
Hence disable these interrupts.
|
|
|
|
Signed-off-by: Sriram R <srirrama@codeaurora.org>
|
|
Signed-off-by: P Praneesh <ppranees@codeaurora.org>
|
|
---
|
|
drivers/net/wireless/ath/ath11k/ce.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/wireless/ath/ath11k/ce.c
|
|
+++ b/drivers/net/wireless/ath/ath11k/ce.c
|
|
@@ -80,7 +80,7 @@ const struct ce_attr ath11k_host_ce_conf
|
|
|
|
/* CE8: target autonomous hif_memcpy */
|
|
{
|
|
- .flags = CE_ATTR_FLAGS,
|
|
+ .flags = CE_ATTR_FLAGS | CE_ATTR_DIS_INTR,
|
|
.src_nentries = 0,
|
|
.src_sz_max = 0,
|
|
.dest_nentries = 0,
|