watchdog: aspeed_wdt: Reorder output signal register configuration
authorChin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
Fri, 19 Aug 2022 09:49:05 +0000 (17:49 +0800)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Sun, 2 Oct 2022 10:55:33 +0000 (12:55 +0200)
If the output driving type is push-pull mode, the output
polarity should be selected in advance. Otherwise, an unexpected
value will be output at the moment of changing to push-pull mode.
Thus, output polarity, WDT18[31], must be configured before
changing driving type, WDT18[30].

Signed-off-by: Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Tested-by: Bonnie Lo <Bonnie_Lo@wiwynn.com>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Link: https://lore.kernel.org/r/20220819094905.1962513-1-chin-ting_kuo@aspeedtech.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/aspeed_wdt.c

index bd06622..0cff2ad 100644 (file)
@@ -332,18 +332,18 @@ static int aspeed_wdt_probe(struct platform_device *pdev)
                u32 reg = readl(wdt->base + WDT_RESET_WIDTH);
 
                reg &= config->ext_pulse_width_mask;
-               if (of_property_read_bool(np, "aspeed,ext-push-pull"))
-                       reg |= WDT_PUSH_PULL_MAGIC;
+               if (of_property_read_bool(np, "aspeed,ext-active-high"))
+                       reg |= WDT_ACTIVE_HIGH_MAGIC;
                else
-                       reg |= WDT_OPEN_DRAIN_MAGIC;
+                       reg |= WDT_ACTIVE_LOW_MAGIC;
 
                writel(reg, wdt->base + WDT_RESET_WIDTH);
 
                reg &= config->ext_pulse_width_mask;
-               if (of_property_read_bool(np, "aspeed,ext-active-high"))
-                       reg |= WDT_ACTIVE_HIGH_MAGIC;
+               if (of_property_read_bool(np, "aspeed,ext-push-pull"))
+                       reg |= WDT_PUSH_PULL_MAGIC;
                else
-                       reg |= WDT_ACTIVE_LOW_MAGIC;
+                       reg |= WDT_OPEN_DRAIN_MAGIC;
 
                writel(reg, wdt->base + WDT_RESET_WIDTH);
        }