Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2017 Google, Inc |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 7 | #include <cyclic.h> |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 8 | #include <dm.h> |
| 9 | #include <wdt.h> |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 10 | #include <asm/gpio.h> |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 11 | #include <asm/state.h> |
| 12 | #include <asm/test.h> |
| 13 | #include <dm/test.h> |
Simon Glass | 0e1fad4 | 2020-07-19 10:15:37 -0600 | [diff] [blame] | 14 | #include <test/test.h> |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 15 | #include <test/ut.h> |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 16 | #include <linux/delay.h> |
| 17 | #include <watchdog.h> |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 18 | |
| 19 | /* Test that watchdog driver functions are called */ |
| 20 | static int dm_test_wdt_base(struct unit_test_state *uts) |
| 21 | { |
| 22 | struct sandbox_state *state = state_get_current(); |
| 23 | struct udevice *dev; |
| 24 | const u64 timeout = 42; |
| 25 | |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 26 | ut_assertok(uclass_get_device_by_driver(UCLASS_WDT, |
| 27 | DM_DRIVER_GET(wdt_sandbox), &dev)); |
Simon Glass | 9eace7f | 2017-06-07 10:28:43 -0600 | [diff] [blame] | 28 | ut_assertnonnull(dev); |
maxims@google.com | 0753bc2 | 2017-04-17 12:00:21 -0700 | [diff] [blame] | 29 | ut_asserteq(0, state->wdt.counter); |
| 30 | ut_asserteq(false, state->wdt.running); |
| 31 | |
| 32 | ut_assertok(wdt_start(dev, timeout, 0)); |
| 33 | ut_asserteq(timeout, state->wdt.counter); |
| 34 | ut_asserteq(true, state->wdt.running); |
| 35 | |
| 36 | uint reset_count = state->wdt.reset_count; |
| 37 | ut_assertok(wdt_reset(dev)); |
| 38 | ut_asserteq(reset_count + 1, state->wdt.reset_count); |
| 39 | ut_asserteq(true, state->wdt.running); |
| 40 | |
| 41 | ut_assertok(wdt_stop(dev)); |
| 42 | ut_asserteq(false, state->wdt.running); |
| 43 | |
| 44 | return 0; |
| 45 | } |
Simon Glass | e180c2b | 2020-07-28 19:41:12 -0600 | [diff] [blame] | 46 | DM_TEST(dm_test_wdt_base, UT_TESTF_SCAN_PDATA | UT_TESTF_SCAN_FDT); |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 47 | |
Paul Doelle | 1fc45d6 | 2022-07-04 09:00:25 +0000 | [diff] [blame] | 48 | static int dm_test_wdt_gpio_toggle(struct unit_test_state *uts) |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 49 | { |
| 50 | /* |
| 51 | * The sandbox wdt gpio is "connected" to gpio bank a, offset |
| 52 | * 7. Use the sandbox back door to verify that the gpio-wdt |
Paul Doelle | 1fc45d6 | 2022-07-04 09:00:25 +0000 | [diff] [blame] | 53 | * driver behaves as expected when using the 'toggle' algorithm. |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 54 | */ |
| 55 | struct udevice *wdt, *gpio; |
| 56 | const u64 timeout = 42; |
Simon Glass | bc003ca | 2023-08-10 09:53:13 -0600 | [diff] [blame] | 57 | const int offset = 8; |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 58 | int val; |
| 59 | |
Paul Doelle | 1fc45d6 | 2022-07-04 09:00:25 +0000 | [diff] [blame] | 60 | ut_assertok(uclass_get_device_by_name(UCLASS_WDT, |
| 61 | "wdt-gpio-toggle", &wdt)); |
Rasmus Villemoes | a9346b9 | 2021-08-19 11:57:05 +0200 | [diff] [blame] | 62 | ut_assertnonnull(wdt); |
| 63 | |
| 64 | ut_assertok(uclass_get_device_by_name(UCLASS_GPIO, "base-gpios", &gpio)); |
| 65 | ut_assertnonnull(gpio); |
| 66 | ut_assertok(wdt_start(wdt, timeout, 0)); |
| 67 | |
| 68 | val = sandbox_gpio_get_value(gpio, offset); |
| 69 | ut_assertok(wdt_reset(wdt)); |
| 70 | ut_asserteq(!val, sandbox_gpio_get_value(gpio, offset)); |
| 71 | ut_assertok(wdt_reset(wdt)); |
| 72 | ut_asserteq(val, sandbox_gpio_get_value(gpio, offset)); |
| 73 | |
| 74 | ut_asserteq(-ENOSYS, wdt_stop(wdt)); |
| 75 | |
| 76 | return 0; |
| 77 | } |
Paul Doelle | 1fc45d6 | 2022-07-04 09:00:25 +0000 | [diff] [blame] | 78 | DM_TEST(dm_test_wdt_gpio_toggle, UT_TESTF_SCAN_FDT); |
| 79 | |
| 80 | static int dm_test_wdt_gpio_level(struct unit_test_state *uts) |
| 81 | { |
| 82 | /* |
| 83 | * The sandbox wdt gpio is "connected" to gpio bank a, offset |
| 84 | * 7. Use the sandbox back door to verify that the gpio-wdt |
| 85 | * driver behaves as expected when using the 'level' algorithm. |
| 86 | */ |
| 87 | struct udevice *wdt, *gpio; |
| 88 | const u64 timeout = 42; |
| 89 | const int offset = 7; |
| 90 | int val; |
| 91 | |
| 92 | ut_assertok(uclass_get_device_by_name(UCLASS_WDT, |
| 93 | "wdt-gpio-level", &wdt)); |
| 94 | ut_assertnonnull(wdt); |
| 95 | |
| 96 | ut_assertok(uclass_get_device_by_name(UCLASS_GPIO, "base-gpios", &gpio)); |
| 97 | ut_assertnonnull(gpio); |
| 98 | ut_assertok(wdt_start(wdt, timeout, 0)); |
| 99 | |
| 100 | val = sandbox_gpio_get_value(gpio, offset); |
| 101 | ut_assertok(wdt_reset(wdt)); |
| 102 | ut_asserteq(val, sandbox_gpio_get_value(gpio, offset)); |
| 103 | ut_assertok(wdt_reset(wdt)); |
| 104 | ut_asserteq(val, sandbox_gpio_get_value(gpio, offset)); |
| 105 | |
| 106 | ut_asserteq(-ENOSYS, wdt_stop(wdt)); |
| 107 | |
| 108 | return 0; |
| 109 | } |
| 110 | DM_TEST(dm_test_wdt_gpio_level, UT_TESTF_SCAN_FDT); |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 111 | |
| 112 | static int dm_test_wdt_watchdog_reset(struct unit_test_state *uts) |
| 113 | { |
| 114 | struct sandbox_state *state = state_get_current(); |
| 115 | struct udevice *gpio_wdt, *sandbox_wdt; |
| 116 | struct udevice *gpio; |
| 117 | const u64 timeout = 42; |
Simon Glass | bc003ca | 2023-08-10 09:53:13 -0600 | [diff] [blame] | 118 | const int offset = 8; |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 119 | uint reset_count; |
| 120 | int val; |
| 121 | |
Paul Doelle | 1fc45d6 | 2022-07-04 09:00:25 +0000 | [diff] [blame] | 122 | ut_assertok(uclass_get_device_by_name(UCLASS_WDT, |
| 123 | "wdt-gpio-toggle", &gpio_wdt)); |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 124 | ut_assertnonnull(gpio_wdt); |
| 125 | ut_assertok(uclass_get_device_by_driver(UCLASS_WDT, |
| 126 | DM_DRIVER_GET(wdt_sandbox), &sandbox_wdt)); |
| 127 | ut_assertnonnull(sandbox_wdt); |
| 128 | ut_assertok(uclass_get_device_by_name(UCLASS_GPIO, "base-gpios", &gpio)); |
| 129 | ut_assertnonnull(gpio); |
| 130 | |
| 131 | /* Neither device should be "started", so watchdog_reset() should be a no-op. */ |
| 132 | reset_count = state->wdt.reset_count; |
| 133 | val = sandbox_gpio_get_value(gpio, offset); |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 134 | cyclic_run(); |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 135 | ut_asserteq(reset_count, state->wdt.reset_count); |
| 136 | ut_asserteq(val, sandbox_gpio_get_value(gpio, offset)); |
| 137 | |
| 138 | /* Start both devices. */ |
| 139 | ut_assertok(wdt_start(gpio_wdt, timeout, 0)); |
| 140 | ut_assertok(wdt_start(sandbox_wdt, timeout, 0)); |
| 141 | |
| 142 | /* Make sure both devices have just been pinged. */ |
| 143 | timer_test_add_offset(100); |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 144 | cyclic_run(); |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 145 | reset_count = state->wdt.reset_count; |
| 146 | val = sandbox_gpio_get_value(gpio, offset); |
| 147 | |
| 148 | /* The gpio watchdog should be pinged, the sandbox one not. */ |
| 149 | timer_test_add_offset(30); |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 150 | cyclic_run(); |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 151 | ut_asserteq(reset_count, state->wdt.reset_count); |
| 152 | ut_asserteq(!val, sandbox_gpio_get_value(gpio, offset)); |
| 153 | |
| 154 | /* After another ~30ms, both devices should get pinged. */ |
| 155 | timer_test_add_offset(30); |
Stefan Roese | 29caf93 | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 156 | cyclic_run(); |
Rasmus Villemoes | 4171c57 | 2021-08-19 11:57:06 +0200 | [diff] [blame] | 157 | ut_asserteq(reset_count + 1, state->wdt.reset_count); |
| 158 | ut_asserteq(val, sandbox_gpio_get_value(gpio, offset)); |
| 159 | |
| 160 | return 0; |
| 161 | } |
| 162 | DM_TEST(dm_test_wdt_watchdog_reset, UT_TESTF_SCAN_FDT); |