]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: watchdog: Avoid an error on startup
authorSimon Glass <sjg@chromium.org>
Thu, 10 Aug 2023 15:53:13 +0000 (09:53 -0600)
committerStefan Roese <sr@denx.de>
Thu, 19 Oct 2023 05:50:18 +0000 (07:50 +0200)
For some time now running sandbox with -T produces an error:

   Core:  270 devices, 95 uclasses, devicetree: board
   WDT:   Not starting wdt-gpio-toggle
   wdt_gpio wdt-gpio-level: Request for wdt gpio failed: -16
   WDT:   Not starting wdt@0
   MMC:   mmc2: 2 (SD), mmc1: 1 (SD), mmc0: 0 (SD)

Use an unallocated GPIO to avoid this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 1fc45d6483d ("watchdog: add pulse support to gpio watchdog driver")
Reviewed-by: Stefan Roese <sr@denx.de>
arch/sandbox/dts/test.dts
test/dm/wdt.c

index e88c267620a0b5bbb3539c99bd57acadcec7fd11..e43034735631ae1160f5040404469c866f15f584 100644 (file)
        };
 
        wdt-gpio-toggle {
-               gpios = <&gpio_a 7 0>;
+               gpios = <&gpio_a 8 0>;
                compatible = "linux,wdt-gpio";
                hw_margin_ms = <100>;
                hw_algo = "toggle";
index 653d7b1c8b36a8f07377491ad93c4ddd27157326..2bbebcdbf286f070eb0bae8d9a6dc4ce26f7ef52 100644 (file)
@@ -54,7 +54,7 @@ static int dm_test_wdt_gpio_toggle(struct unit_test_state *uts)
         */
        struct udevice *wdt, *gpio;
        const u64 timeout = 42;
-       const int offset = 7;
+       const int offset = 8;
        int val;
 
        ut_assertok(uclass_get_device_by_name(UCLASS_WDT,
@@ -115,7 +115,7 @@ static int dm_test_wdt_watchdog_reset(struct unit_test_state *uts)
        struct udevice *gpio_wdt, *sandbox_wdt;
        struct udevice *gpio;
        const u64 timeout = 42;
-       const int offset = 7;
+       const int offset = 8;
        uint reset_count;
        int val;