forked from thesofproject/sof
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
63 lines (53 loc) · 1.26 KB
/
main.c
File metadata and controls
63 lines (53 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
* Copyright (c) 2020 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/kernel.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(main, LOG_LEVEL_DBG);
/**
* Should be included from sof/schedule/task.h
* but triggers include chain issue
* FIXME
*/
int sof_main(int argc, char *argv[]);
/**
* TODO: Here comes SOF initialization
*/
static int sof_app_main(void)
{
int ret;
LOG_INF("SOF on %s", CONFIG_BOARD);
/* sof_main is actually SOF initialization */
ret = sof_main(0, NULL);
if (ret) {
LOG_ERR("SOF initialization failed");
}
LOG_INF("SOF initialized");
#ifdef CONFIG_ARCH_POSIX_LIBFUZZER
/* Workaround for an apparent timing bug in libfuzzer+asan.
* If the initial/main thread is allowed to return, ASAN will
* fairly reliably report a "stack overflow" where the ESP and
* EPC (instruction pointer!) registers are both set to the
* same value, which is non-sensical. See some discussion in
* https://github.com/zephyrproject-rtos/zephyr/pull/52769
*
* But suspending the main thread instead of aborting is cheap
* and easy.
*/
k_thread_suspend(k_current_get());
#endif
return 0;
}
#if CONFIG_ZTEST
void test_main(void)
{
sof_app_main();
}
#else
int main(void)
{
return sof_app_main();
}
#endif