1*83d290c5STom Rini /* SPDX-License-Identifier: GPL-2.0+ */ 2c978b524SChris Zankel /* 3c978b524SChris Zankel * (C) Copyright 2007, Tensilica Inc. 4c978b524SChris Zankel * 5c978b524SChris Zankel ******************************************************************** 6c978b524SChris Zankel * NOTE: This header file defines an interface to U-Boot. Including 7c978b524SChris Zankel * this (unmodified) header file in another file is considered normal 8c978b524SChris Zankel * use of U-Boot, and does *not* fall under the heading of "derived 9c978b524SChris Zankel * work". 10c978b524SChris Zankel ******************************************************************** 11c978b524SChris Zankel */ 12c978b524SChris Zankel 13c978b524SChris Zankel #ifndef _XTENSA_U_BOOT_H 14c978b524SChris Zankel #define _XTENSA_U_BOOT_H 15c978b524SChris Zankel 16c978b524SChris Zankel /* Use the generic board which requires a unified bd_info */ 17c978b524SChris Zankel #include <asm-generic/u-boot.h> 18c978b524SChris Zankel 19c978b524SChris Zankel /* For image.h:image_check_target_arch() */ 20c978b524SChris Zankel #define IH_ARCH_DEFAULT IH_ARCH_XTENSA 21c978b524SChris Zankel 22c978b524SChris Zankel #endif /* _XTENSA_U_BOOT_H */ 23