1 /* 2 * Specialty padding for the ASPEED image 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 #ifndef __BOOT0_H 8 #define __BOOT0_H 9 10 _start: 11 ARM_VECTORS 12 13 #ifdef CONFIG_SPL_BUILD 14 .word 0x0; /* Key location */ 15 .word 0x0; /* start address of image */ 16 .word 0x0; /* image size */ 17 .word 0x0; /* signature address */ 18 .word 0x0; /* head revision ID low */ 19 .word 0x0; /* head revision ID high */ 20 .word 0x0; /* reserved */ 21 .word 0x0; /* checksum */ 22 #endif 23 24 #endif /* __BOOT0_H */