1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright(c) 2016 Intel Corporation. All rights reserved.
4  *
5  * Author: Liam Girdwood <liam.r.girdwood@linux.intel.com>
6  *         Janusz Jankowski <janusz.jankowski@linux.intel.com>
7  */
8 
9 #ifdef __SOF_SOF_H__
10 
11 #ifndef __ARCH_SOF_H__
12 #define __ARCH_SOF_H__
13 
14 /* entry point to main firmware */
15 void _ResetVector(void);
16 
17 void boot_primary_core(void);
18 
19 #endif /* __ARCH_SOF_H__ */
20 
21 #else
22 
23 #error "This file shouldn't be included from outside of sof/sof.h"
24 
25 #endif /* __SOF_SOF_H__ */
26