1 /* 2 * Specialty padding for the Altera SoCFPGA preloader image 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __BOOT0_H 8 #define __BOOT0_H 9 10 #ifdef CONFIG_SPL_BUILD 11 .balignl 64,0xf33db33f; 12 13 .word 0x1337c0d3; /* SoCFPGA preloader validation word */ 14 .word 0xc01df00d; /* Version, flags, length */ 15 .word 0xcafec0d3; /* Checksum, zero-pad */ 16 nop; 17 18 b reset; /* SoCFPGA jumps here */ 19 nop; 20 nop; 21 nop; 22 #endif 23 24 #endif /* __BOOT0_H */ 25