1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (c) Aspeed Technology Inc. 4 */ 5 6 #ifndef _ASM_ARCH_BOOT0_H 7 #define _ASM_ARCH_BOOT0_H 8 9 _start: 10 ARM_VECTORS 11 12 .word 0x0 /* key location */ 13 .word 0x0 /* start address of image */ 14 .word 0xfc00 /* maximum image size: 63KB */ 15 .word 0x0 /* signature address */ 16 .word 0x0 /* header revision ID low */ 17 .word 0x0 /* header revision ID high */ 18 .word 0x0 /* reserved */ 19 .word 0x0 /* checksum */ 20 .word 0x0 /* BL2 secure header */ 21 .word 0x0 /* public key or digest offset for BL2 */ 22 23 #endif 24