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