1c3e20b4eSJohnny Huang /*
2c3e20b4eSJohnny Huang  * Specialty padding for the ASPEED image
3c3e20b4eSJohnny Huang  *
4c3e20b4eSJohnny Huang  * SPDX-License-Identifier:	GPL-2.0+
5c3e20b4eSJohnny Huang  */
6c3e20b4eSJohnny Huang 
7c3e20b4eSJohnny Huang #ifndef __BOOT0_H
8c3e20b4eSJohnny Huang #define __BOOT0_H
9c3e20b4eSJohnny Huang 
10c3e20b4eSJohnny Huang _start:
11c3e20b4eSJohnny Huang 	ARM_VECTORS
12c3e20b4eSJohnny Huang 
13c3e20b4eSJohnny Huang #ifdef CONFIG_SPL_BUILD
14*7202b9dbSJohnny Huang 	.word	0x0	/* Key location */
15*7202b9dbSJohnny Huang 	.word	0x0	/* start address of image */
16*7202b9dbSJohnny Huang 	.word	0X0	/* image size */
17*7202b9dbSJohnny Huang 	.word	0x0	/* signature address */
18*7202b9dbSJohnny Huang 	.word	0x0	/* header revision ID low */
19*7202b9dbSJohnny Huang 	.word	0x0	/* header revision ID high */
20*7202b9dbSJohnny Huang 	.word	0x0	/* reserved */
21*7202b9dbSJohnny Huang 	.word	0x0	/* checksum */
22*7202b9dbSJohnny Huang 	.word	0x0	/* BL2 secure header */
23*7202b9dbSJohnny Huang 	.word	0x0	/* public key or digest offset for BL2 */
24*7202b9dbSJohnny Huang #else /* BL2 */
25*7202b9dbSJohnny Huang 	.word	0x0	/* image size */
26*7202b9dbSJohnny Huang 	.word	0x0	/* signature location */
27c3e20b4eSJohnny Huang #endif
28c3e20b4eSJohnny Huang 
29c3e20b4eSJohnny Huang #endif /* __BOOT0_H */