1*cdaa633fSAndre Przywara /* 2*cdaa633fSAndre Przywara * Copyright 2016 Broadcom Corporation. 3*cdaa633fSAndre Przywara * 4*cdaa633fSAndre Przywara * SPDX-License-Identifier: GPL-2.0+ 5*cdaa633fSAndre Przywara */ 6*cdaa633fSAndre Przywara 7*cdaa633fSAndre Przywara #ifndef __BOOT0_H 8*cdaa633fSAndre Przywara #define __BOOT0_H 9*cdaa633fSAndre Przywara 10*cdaa633fSAndre Przywara /* BOOT0 header information */ 11*cdaa633fSAndre Przywara #define ARM_SOC_BOOT0_HOOK \ 12*cdaa633fSAndre Przywara .word 0xbabeface; \ 13*cdaa633fSAndre Przywara .word _end - _start 14*cdaa633fSAndre Przywara 15*cdaa633fSAndre Przywara #endif /* __BOOT0_H */ 16