summaryrefslogtreecommitdiffstats
path: root/arch/kvx/lib/dtb.c
blob: 17dcab197f8e96f1e6568a962364f911c04de0af (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
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2019 Kalray Inc.
 */

#include <common.h>
#include <init.h>
#include <of.h>

static int of_kvx_init(void)
{
	int ret;
	struct device_node *root;

	root = of_unflatten_dtb(boot_dtb);
	if (IS_ERR(root)) {
		ret = PTR_ERR(root);
		panic("Failed to parse DTB: %d\n", ret);
	}

	ret = of_set_root_node(root);
	if (ret)
		panic("Failed to set of root node\n");

	of_probe();

	return 0;
}
core_initcall(of_kvx_init);