summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/netgear-rn104/lowlevel.c
blob: c6c8e8402346e7f26baf58f5fa15ea55b07ef618 (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
// SPDX-License-Identifier: GPL-2.0-only

/*
 * Copyright (C) 2014  Uwe Kleine-Koenig <uwe@kleine-koenig.org>
 */

#include <common.h>
#include <asm/barebox-arm.h>
#include <asm/barebox-arm-head.h>
#include <mach/lowlevel.h>

extern char __dtb_armada_370_rn104_bb_start[];

ENTRY_FUNCTION(start_netgear_rn104, r0, r1, r2)
{
	void *fdt;

	arm_cpu_lowlevel_init();

	fdt = __dtb_armada_370_rn104_bb_start +
		get_runtime_offset();

	armada_370_xp_barebox_entry(fdt);
}