gpio: dwapb: clarify usage of the register file version
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Tue, 30 Nov 2021 16:49:56 +0000 (18:49 +0200)
committerAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 1 Dec 2021 13:13:05 +0000 (15:13 +0200)
First of all, it's obvious that different versions can't be provided
simultaneously. Hence, versions can't be bit masks.

Second, due to above we have to mask out the version field in the flags
and only that can be evaluated against the certain version.

Clarify all above by:
 - introducing GPIO_REG_OFFSET_V1 and GPIO_REG_OFFSET_MASK
 - replacing conditional to mask out bits and compare to a version

Luckily there is no functional change, so no need to backport this.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Serge Semin <fancer.lancer@gmail.com>
Reviewed-by: Bartosz Golaszewski <brgl@bgdev.pl>
drivers/gpio/gpio-dwapb.c

index f98fa33e16790619de326815ec040b88091514ed..ec0767d7800dc50adf3df2906826ac05f97bbca0 100644 (file)
@@ -53,7 +53,9 @@
 #define GPIO_SWPORT_DR_STRIDE  0x0c /* register stride 3*32 bits */
 #define GPIO_SWPORT_DDR_STRIDE 0x0c /* register stride 3*32 bits */
 
+#define GPIO_REG_OFFSET_V1     0
 #define GPIO_REG_OFFSET_V2     1
+#define GPIO_REG_OFFSET_MASK   BIT(0)
 
 #define GPIO_INTMASK_V2                0x44
 #define GPIO_INTTYPE_LEVEL_V2  0x34
@@ -141,7 +143,7 @@ static inline u32 gpio_reg_v2_convert(unsigned int offset)
 
 static inline u32 gpio_reg_convert(struct dwapb_gpio *gpio, unsigned int offset)
 {
-       if (gpio->flags & GPIO_REG_OFFSET_V2)
+       if ((gpio->flags & GPIO_REG_OFFSET_MASK) == GPIO_REG_OFFSET_V2)
                return gpio_reg_v2_convert(offset);
 
        return offset;
@@ -668,15 +670,15 @@ static int dwapb_get_clks(struct dwapb_gpio *gpio)
 }
 
 static const struct of_device_id dwapb_of_match[] = {
-       { .compatible = "snps,dw-apb-gpio", .data = (void *)0},
+       { .compatible = "snps,dw-apb-gpio", .data = (void *)GPIO_REG_OFFSET_V1},
        { .compatible = "apm,xgene-gpio-v2", .data = (void *)GPIO_REG_OFFSET_V2},
        { /* Sentinel */ }
 };
 MODULE_DEVICE_TABLE(of, dwapb_of_match);
 
 static const struct acpi_device_id dwapb_acpi_match[] = {
-       {"HISI0181", 0},
-       {"APMC0D07", 0},
+       {"HISI0181", GPIO_REG_OFFSET_V1},
+       {"APMC0D07", GPIO_REG_OFFSET_V1},
        {"APMC0D81", GPIO_REG_OFFSET_V2},
        { }
 };