1 /*
2  * Copyright (c) 2019 Carlo Caione <ccaione@baylibre.com>
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 /**
8  * @file
9  * @brief Definitions for boot code
10  */
11 
12 #ifndef _BOOT_H_
13 #define _BOOT_H_
14 
15 #ifndef _ASMLANGUAGE
16 
17 extern void *_vector_table[];
18 extern void __start(void);
19 
20 #endif /* _ASMLANGUAGE */
21 
22 /* Offsets into the boot_params structure */
23 #define BOOT_PARAM_MPID_OFFSET		0
24 #define BOOT_PARAM_SP_OFFSET		8
25 #define BOOT_PARAM_VOTING_OFFSET	16
26 
27 #endif /* _BOOT_H_ */
28