summaryrefslogtreecommitdiff
path: root/lib/utils/reset/fdt_reset_sifive_test.c
blob: 7e0eba37ac2c2bea68cee90eff442888855faa4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
	uint64_t addr;

	rc = fdt_get_node_addr_size(fdt, nodeoff, 0, &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,
};