183d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */ 2a47a12beSStefan Roese /* 3a47a12beSStefan Roese * (C) Copyright 2000 - 2002 4a47a12beSStefan Roese * Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5a47a12beSStefan Roese ******************************************************************** 6a47a12beSStefan Roese * NOTE: This header file defines an interface to U-Boot. Including 7a47a12beSStefan Roese * this (unmodified) header file in another file is considered normal 8a47a12beSStefan Roese * use of U-Boot, and does *not* fall under the heading of "derived 9a47a12beSStefan Roese * work". 10a47a12beSStefan Roese ******************************************************************** 11a47a12beSStefan Roese */ 12a47a12beSStefan Roese 13a47a12beSStefan Roese #ifndef __U_BOOT_H__ 14a47a12beSStefan Roese #define __U_BOOT_H__ 15a47a12beSStefan Roese 16*70eb8253SHeinrich Schuchardt /* For image.h:image_check_target_arch() */ 17*70eb8253SHeinrich Schuchardt #define IH_ARCH_DEFAULT IH_ARCH_PPC 18*70eb8253SHeinrich Schuchardt 19660c60c4SSimon Glass /* Use the generic board which requires a unified bd_info */ 20660c60c4SSimon Glass #include <asm-generic/u-boot.h> 2185043159SSimon Glass #include <asm/ppc.h> 22660c60c4SSimon Glass 23a47a12beSStefan Roese #endif /* __U_BOOT_H__ */ 24