summaryrefslogtreecommitdiffstats
path: root/arch/riscv/boot/dtb.c
blob: b9b68fc7f254f4668349354ed113163cd71291de (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
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2016, 2018 Antony Pavlov <antonynpavlov@gmail.com>
 *
 * This file is part of barebox.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */
#include <common.h>
#include <init.h>
#include <of.h>

extern char __dtb_start[];

static int of_riscv_init(void)
{
	barebox_register_fdt(__dtb_start);

	return 0;
}
core_initcall(of_riscv_init);