blob: 4a9bbaf7cc484cf561db2d37ce3ad66c006e714e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk6069ff22003-02-28 00:49:47 +00002/*
3 * (C) Copyright 2003
4 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
5 *
Wolfgang Denkf08abe32005-11-25 16:38:03 +01006 ********************************************************************
7 * NOTE: This header file defines an interface to U-Boot. Including
8 * this (unmodified) header file in another file is considered normal
9 * use of U-Boot, and does *not* fall under the heading of "derived
10 * work".
11 ********************************************************************
wdenk6069ff22003-02-28 00:49:47 +000012 */
13
14#ifndef _U_BOOT_H_
15#define _U_BOOT_H_ 1
16
Paul Burton9f0868f2014-04-07 10:11:22 +010017/* Use the generic board which requires a unified bd_info */
18#include <asm-generic/u-boot.h>
Simon Glassa320acc2017-05-17 08:22:51 -060019#include <asm/u-boot-mips.h>
Paul Burton9f0868f2014-04-07 10:11:22 +010020
Mike Frysinger476af292011-10-03 14:50:33 +000021/* For image.h:image_check_target_arch() */
22#define IH_ARCH_DEFAULT IH_ARCH_MIPS
23
wdenk6069ff22003-02-28 00:49:47 +000024#endif /* _U_BOOT_H_ */