PCI: keystone: Cleanup set_dbi_mode() and get_dbi_mode()
authorKishon Vijay Abraham I <kishon@ti.com>
Wed, 17 Oct 2018 07:41:09 +0000 (13:11 +0530)
committerLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Wed, 17 Oct 2018 08:58:46 +0000 (09:58 +0100)
No functional change. Use BIT() macro for DBI_CS2 and cleanup
set_dbi_mode() and get_dbi_mode().

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
drivers/pci/controller/dwc/pci-keystone.c

index 3576a184b9ebc8559da6474e3ede9aa120952001..2decbaec81a37fd9f2ccc2962240d97fd7eaabcb 100644 (file)
@@ -40,7 +40,7 @@
 #define LTSSM_EN_VAL                   BIT(0)
 #define LTSSM_STATE_MASK               0x1f
 #define LTSSM_STATE_L0                 0x11
-#define DBI_CS2_EN_VAL                 0x20
+#define DBI_CS2                                BIT(5)
 #define OB_XLAT_EN_VAL                 BIT(1)
 
 /* Application registers */
@@ -315,11 +315,12 @@ static void ks_pcie_set_dbi_mode(struct keystone_pcie *ks_pcie)
        u32 val;
 
        val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
-       ks_pcie_app_writel(ks_pcie, CMD_STATUS, DBI_CS2_EN_VAL | val);
+       val |= DBI_CS2;
+       ks_pcie_app_writel(ks_pcie, CMD_STATUS, val);
 
        do {
                val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
-       } while (!(val & DBI_CS2_EN_VAL));
+       } while (!(val & DBI_CS2));
 }
 
 /**
@@ -333,11 +334,12 @@ static void ks_pcie_clear_dbi_mode(struct keystone_pcie *ks_pcie)
        u32 val;
 
        val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
-       ks_pcie_app_writel(ks_pcie, CMD_STATUS, ~DBI_CS2_EN_VAL & val);
+       val &= ~DBI_CS2;
+       ks_pcie_app_writel(ks_pcie, CMD_STATUS, val);
 
        do {
                val = ks_pcie_app_readl(ks_pcie, CMD_STATUS);
-       } while (val & DBI_CS2_EN_VAL);
+       } while (val & DBI_CS2);
 }
 
 static void ks_pcie_setup_rc_app_regs(struct keystone_pcie *ks_pcie)