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 .word 0x0 /* Key location */ 14 .word 0x0 /* start address of image */ 15 .word 0Xfc00 /* image size 63KB*/ 16 .word 0x0 /* signature address */ 17 .word 0x0 /* header revision ID low */ 18 .word 0x0 /* header revision ID high */ 19 .word 0x0 /* reserved */ 20 .word 0x0 /* checksum */ 21 .word 0x0 /* BL2 secure header */ 22 .word 0x0 /* public key or digest offset for BL2 */ 23 24 #endif /* __BOOT0_H */