blob: d5e1d5f32319c9c92faf2dccf81034e595112a37 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Rick Chen6020faf2017-12-26 13:55:51 +08002/*
3 * (C) Copyright 2002
4 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
5 * Marius Groeger <mgroeger@sysgo.de>
6 *
7 * Copyright (C) 2017 Andes Technology Corporation
8 * Rick Chen, Andes Technology Corporation <rick@andestech.com>
9 *
Rick Chen6020faf2017-12-26 13:55:51 +080010 ********************************************************************
11 * NOTE: This header file defines an interface to U-Boot. Including
12 * this (unmodified) header file in another file is considered normal
13 * use of U-Boot, and does *not* fall under the heading of "derived
14 * work".
15 ********************************************************************
16 */
17
18#ifndef _U_BOOT_H_
19#define _U_BOOT_H_ 1
20
Simon Glassb46f9892020-05-10 14:16:26 -060021/* Use the generic board which requires a unified bd_info */
22#include <asm-generic/u-boot.h>
Rick Chen6020faf2017-12-26 13:55:51 +080023#include <asm/u-boot-riscv.h>
24
Rick Chen6020faf2017-12-26 13:55:51 +080025/* For image.h:image_check_target_arch() */
26#define IH_ARCH_DEFAULT IH_ARCH_RISCV
27
28#endif /* _U_BOOT_H_ */