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 
137202b9dbSJohnny Huang 	.word	0x0	/* Key location */
147202b9dbSJohnny Huang 	.word	0x0	/* start address of image */
15*a7988229SJohnny Huang 	.word	0Xfc00	/* image size 63KB*/
167202b9dbSJohnny Huang 	.word	0x0	/* signature address */
177202b9dbSJohnny Huang 	.word	0x0	/* header revision ID low */
187202b9dbSJohnny Huang 	.word	0x0	/* header revision ID high */
197202b9dbSJohnny Huang 	.word	0x0	/* reserved */
207202b9dbSJohnny Huang 	.word	0x0	/* checksum */
217202b9dbSJohnny Huang 	.word	0x0	/* BL2 secure header */
227202b9dbSJohnny Huang 	.word	0x0	/* public key or digest offset for BL2 */
23c3e20b4eSJohnny Huang 
24c3e20b4eSJohnny Huang #endif /* __BOOT0_H */