1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2014 Synopsys, Inc. All rights reserved. 4 */ 5 6 #ifndef __ASM_ARC_U_BOOT_ARC_H__ 7 #define __ASM_ARC_U_BOOT_ARC_H__ 8 9 int arch_early_init_r(void); 10 11 void board_init_f_r_trampoline(ulong) __attribute__ ((noreturn)); 12 void board_init_f_r(void) __attribute__ ((noreturn)); 13 14 #endif /* __ASM_ARC_U_BOOT_ARC_H__ */ 15