From: Nitin Rawat <nitin.rawat@oss.qualcomm.com>
To: mani@kernel.org, James.Bottomley@HansenPartnership.com,
martin.petersen@oracle.com
Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-scsi@vger.kernel.org,
Nitin Rawat <nitin.rawat@oss.qualcomm.com>
Subject: [PATCH V1 1/3] ufs: ufs-qcom: Add UFS ESI CPU affinity support
Date: Thu, 22 Jan 2026 19:43:29 +0530 [thread overview]
Message-ID: <20260122141331.239354-2-nitin.rawat@oss.qualcomm.com> (raw)
In-Reply-To: <20260122141331.239354-1-nitin.rawat@oss.qualcomm.com>
Add Enhanced Shared Interrupt (ESI) CPU affinity support to improve
UFS performance on Qualcomm platforms.
By Default, the IRQ core route interrupts to a limited number of
cores while other cores remain idle. This patch enables dynamic
interrupt affinity adjustment for better performance tuning by
distributing ESI interrupts across all online CPUs in round-robin
fashion.
This reduces CPU contention and enables better performance optimization
on Qualcomm UFS controllers by utilizing all available online CPUs.
Signed-off-by: Nitin Rawat <nitin.rawat@oss.qualcomm.com>
---
drivers/ufs/host/ufs-qcom.c | 50 +++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/drivers/ufs/host/ufs-qcom.c b/drivers/ufs/host/ufs-qcom.c
index 8ebee0cc5313..c43bb75d208c 100644
--- a/drivers/ufs/host/ufs-qcom.c
+++ b/drivers/ufs/host/ufs-qcom.c
@@ -2070,6 +2070,55 @@ static irqreturn_t ufs_qcom_mcq_esi_handler(int irq, void *data)
return IRQ_HANDLED;
}
+/**
+ * ufs_qcom_set_esi_affinity - Set CPU affinity hints for ESI interrupts
+ * @hba: UFS host controller instance
+ *
+ * Sets CPU affinity hints for ESI interrupts to distribute them across
+ * online CPUs for better performance in round-robin fashion.
+ */
+static void ufs_qcom_set_esi_affinity(struct ufs_hba *hba)
+{
+ struct msi_desc *desc;
+ int ret, i = 0, nr_irqs = 0;
+ const cpumask_t *mask;
+ int cpu;
+
+ __msi_lock_descs(hba->dev);
+ /* Count the number of MSI descriptors */
+ msi_for_each_desc(desc, hba->dev, MSI_DESC_ALL) {
+ nr_irqs++;
+ }
+ __msi_unlock_descs(hba->dev);
+
+ if (nr_irqs == 0)
+ return;
+
+ __msi_lock_descs(hba->dev);
+ /* Set affinity hints for each interrupt in round-robin fashion */
+ msi_for_each_desc(desc, hba->dev, MSI_DESC_ALL) {
+ if (i >= nr_irqs)
+ break;
+
+ /* Distribute interrupts across online CPUs in round-robin */
+ cpu = cpumask_nth(i % num_online_cpus(), cpu_online_mask);
+ mask = get_cpu_mask(cpu);
+ if (!cpumask_subset(mask, cpu_online_mask)) {
+ dev_err(hba->dev, "Invalid CPU %d in map, using online CPUs\n",
+ cpu);
+ mask = cpu_online_mask;
+ }
+
+ ret = irq_set_affinity_hint(desc->irq, mask);
+ if (ret < 0)
+ dev_err(hba->dev, "Failed to set affinity hint to CPU %d for ESI IRQ %d, err = %d\n",
+ cpu, desc->irq, ret);
+
+ i++;
+ }
+ __msi_unlock_descs(hba->dev);
+}
+
static int ufs_qcom_config_esi(struct ufs_hba *hba)
{
struct ufs_qcom_host *host = ufshcd_get_variant(hba);
@@ -2122,6 +2171,7 @@ static int ufs_qcom_config_esi(struct ufs_hba *hba)
REG_UFS_CFG3);
}
ufshcd_mcq_enable_esi(hba);
+ ufs_qcom_set_esi_affinity(hba);
host->esi_enabled = true;
return 0;
}
--
2.34.1
next prev parent reply other threads:[~2026-01-22 14:13 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-22 14:13 [PATCH V1 0/3] ufs: ufs-qcom: Fixes and optimizations for Qualcomm UFS platform Nitin Rawat
2026-01-22 14:13 ` Nitin Rawat [this message]
2026-01-23 0:57 ` [PATCH V1 1/3] ufs: ufs-qcom: Add UFS ESI CPU affinity support Bart Van Assche
2026-01-22 14:13 ` [PATCH V1 2/3] ufs: ufs-qcom: Align programming sequence for UFS controller v6.2 Nitin Rawat
2026-01-22 15:09 ` Konrad Dybcio
2026-01-22 14:13 ` [PATCH V1 3/3] ufs: ufs-qcom: Fix sequential read variance Nitin Rawat
2026-01-22 15:11 ` Konrad Dybcio
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260122141331.239354-2-nitin.rawat@oss.qualcomm.com \
--to=nitin.rawat@oss.qualcomm.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=mani@kernel.org \
--cc=martin.petersen@oracle.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox