aboutsummaryrefslogtreecommitdiff
path: root/lib/utils/reset/fdt_reset_sifive_test.c
diff options
context:
space:
mode:
authorGreen Wan <green.wan@sifive.com>2021-07-01 15:39:55 +0800
committerAnup Patel <anup@brainfault.org>2021-07-05 21:36:40 +0530
commitb7f2cd268b639c19f3aae09e57e60d3eb2ac2ed0 (patch)
treeac81415f274f262e36c99c5c00a67daac2e67b96 /lib/utils/reset/fdt_reset_sifive_test.c
parenta731c7e36988c3308e1978ecde491f2f6182d490 (diff)
lib: utils: reset: unify naming of 'sifive_test' device
Unify all the file and function names of 'sifive_test' device, to use the same prefix. This is also a preparatory patch for upcoming sifive reset device. Signed-off-by: Green Wan <green.wan@sifive.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'lib/utils/reset/fdt_reset_sifive_test.c')
-rw-r--r--lib/utils/reset/fdt_reset_sifive_test.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/utils/reset/fdt_reset_sifive_test.c b/lib/utils/reset/fdt_reset_sifive_test.c
new file mode 100644
index 0000000..f98f03d
--- /dev/null
+++ b/lib/utils/reset/fdt_reset_sifive_test.c
@@ -0,0 +1,36 @@
+/*
+ * SPDX-License-Identifier: BSD-2-Clause
+ *
+ * Copyright (c) 2020 Western Digital Corporation or its affiliates.
+ *
+ * Authors:
+ * Anup Patel <anup.patel@wdc.com>
+ */
+
+#include <sbi/sbi_scratch.h>
+#include <sbi_utils/fdt/fdt_helper.h>
+#include <sbi_utils/reset/fdt_reset.h>
+#include <sbi_utils/sys/sifive_test.h>
+
+static int sifive_test_reset_init(void *fdt, int nodeoff,
+ const struct fdt_match *match)
+{
+ int rc;
+ unsigned long addr;
+
+ rc = fdt_get_node_addr_size(fdt, nodeoff, &addr, NULL);
+ if (rc)
+ return rc;
+
+ return sifive_test_init(addr);
+}
+
+static const struct fdt_match sifive_test_reset_match[] = {
+ { .compatible = "sifive,test1" },
+ { },
+};
+
+struct fdt_reset fdt_reset_sifive_test = {
+ .match_table = sifive_test_reset_match,
+ .init = sifive_test_reset_init,
+};