summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2025-07-23 19:58:55 +0300
committerMartin K. Petersen <martin.petersen@oracle.com>2025-07-24 22:37:30 -0400
commitd402b20f9c31e477f3cf3512be22c7943dbb0ee4 (patch)
tree8660d335a5abfb22260f576fd414ff03455edfc4
parentb4c0cab4eb8d79cf426ac7bca20864881c8b9b8b (diff)
scsi: ufs: core: Do not write interrupt enable register unnecessarily
Write a new value to the interrupt enable register only if it is different from the old value, thereby saving a register write operation. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Link: https://lore.kernel.org/r/20250723165856.145750-8-adrian.hunter@intel.com Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/ufs/core/ufshcd.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index 54082af7f65e..fa1fdba37267 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -371,10 +371,11 @@ EXPORT_SYMBOL_GPL(ufshcd_disable_irq);
*/
static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
{
- u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
+ u32 old_val = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
+ u32 new_val = old_val | intrs;
- set |= intrs;
- ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
+ if (new_val != old_val)
+ ufshcd_writel(hba, new_val, REG_INTERRUPT_ENABLE);
}
/**
@@ -384,10 +385,11 @@ static void ufshcd_enable_intr(struct ufs_hba *hba, u32 intrs)
*/
static void ufshcd_disable_intr(struct ufs_hba *hba, u32 intrs)
{
- u32 set = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
+ u32 old_val = ufshcd_readl(hba, REG_INTERRUPT_ENABLE);
+ u32 new_val = old_val & ~intrs;
- set &= ~intrs;
- ufshcd_writel(hba, set, REG_INTERRUPT_ENABLE);
+ if (new_val != old_val)
+ ufshcd_writel(hba, new_val, REG_INTERRUPT_ENABLE);
}
static void ufshcd_configure_wb(struct ufs_hba *hba)