summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/toshiba-ac100/entry.c
blob: 918ca4b9d808a07ceecfc07c85ddb97590c53ba2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: GPL-2.0-only
// SPDX-FileCopyrightText: 2013 Lucas Stach <l.stach@pengutronix.de>

#include <common.h>
#include <mach/lowlevel.h>

extern char __dtb_tegra20_paz00_start[];

ENTRY_FUNCTION(start_toshiba_ac100, r0, r1, r2)
{
	tegra_cpu_lowlevel_setup(__dtb_tegra20_paz00_start);

	tegra_avp_reset_vector();
}