xref: /openbmc/u-boot/arch/x86/include/asm/u-boot.h (revision 6862b50f)
1fea25720SGraeme Russ /*
2fea25720SGraeme Russ  * (C) Copyright 2002
3fea25720SGraeme Russ  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4fea25720SGraeme Russ  * Marius Groeger <mgroeger@sysgo.de>
5fea25720SGraeme Russ  *
6fea25720SGraeme Russ  * (C) Copyright 2002
7fea25720SGraeme Russ  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8fea25720SGraeme Russ  * Alex Zuepke <azu@sysgo.de>
9fea25720SGraeme Russ  *
101a459660SWolfgang Denk  * SPDX-License-Identifier:	GPL-2.0+
11fea25720SGraeme Russ  *
12fea25720SGraeme Russ  ********************************************************************
13fea25720SGraeme Russ  * NOTE: This header file defines an interface to U-Boot. Including
14fea25720SGraeme Russ  * this (unmodified) header file in another file is considered normal
15fea25720SGraeme Russ  * use of U-Boot, and does *not* fall under the heading of "derived
16fea25720SGraeme Russ  * work".
17fea25720SGraeme Russ  ********************************************************************
18fea25720SGraeme Russ  */
19fea25720SGraeme Russ 
20fea25720SGraeme Russ #ifndef _U_BOOT_H_
21fea25720SGraeme Russ #define _U_BOOT_H_	1
22fea25720SGraeme Russ 
23e424c15cSSimon Glass /* Use the generic board which requires a unified bd_info */
24e424c15cSSimon Glass #include <asm-generic/u-boot.h>
25*6862b50fSSimon Glass #include <asm/u-boot-x86.h>
26e424c15cSSimon Glass 
27476af299SMike Frysinger /* For image.h:image_check_target_arch() */
28476af299SMike Frysinger #define IH_ARCH_DEFAULT IH_ARCH_I386
29476af299SMike Frysinger 
30fea25720SGraeme Russ #endif	/* _U_BOOT_H_ */
31