aboutsummaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorNeil Armstrong <narmstrong@baylibre.com>2018-04-03 11:40:51 +0200
committerTom Rini <trini@konsulko.com>2018-04-10 11:52:16 -0400
commit91f5f8b73ccba5bf591912fe6e8c500a7d51eb93 (patch)
tree6f9ddd0833c030123d7a39c4ee113dd1d11a91b6 /arch
parent0c28233903b5af9a7f41b3200993cfa197b35719 (diff)
downloadu-boot-91f5f8b73ccba5bf591912fe6e8c500a7d51eb93.zip
u-boot-91f5f8b73ccba5bf591912fe6e8c500a7d51eb93.tar.gz
u-boot-91f5f8b73ccba5bf591912fe6e8c500a7d51eb93.tar.bz2
reset: add sandbox test for bulk API
This patch adds the bulk reset API tests for the sandbox test suite. Unlike the main test, it also check the "other" reset signal using the bulk API and checks if the resets are correctly asserted/deasserted. To allow the bulk API to work, and avoid changing the DT, the number of resets of the sandbox reset controller has been bumped to 101 for the "other" reset line to be valid. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/sandbox/include/asm/reset.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sandbox/include/asm/reset.h b/arch/sandbox/include/asm/reset.h
index 7146aa5..0cd7702 100644
--- a/arch/sandbox/include/asm/reset.h
+++ b/arch/sandbox/include/asm/reset.h
@@ -14,8 +14,12 @@ struct udevice;
int sandbox_reset_query(struct udevice *dev, unsigned long id);
int sandbox_reset_test_get(struct udevice *dev);
+int sandbox_reset_test_get_bulk(struct udevice *dev);
int sandbox_reset_test_assert(struct udevice *dev);
+int sandbox_reset_test_assert_bulk(struct udevice *dev);
int sandbox_reset_test_deassert(struct udevice *dev);
+int sandbox_reset_test_deassert_bulk(struct udevice *dev);
int sandbox_reset_test_free(struct udevice *dev);
+int sandbox_reset_test_release_bulk(struct udevice *dev);
#endif