Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions app/Kconfig
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
config SCHED_CPU_MASK_PIN_ONLY
default y if SMP

config SMP_BOOT_DELAY
default y if SMP

# Allow compiler to determine whether to generate FLIX instructions.
choice COMPILER_CODEGEN_VLIW
default COMPILER_CODEGEN_VLIW_AUTO if "$(ZEPHYR_TOOLCHAIN_VARIANT)" = "xt-clang"
Expand Down
2 changes: 1 addition & 1 deletion src/schedule/zephyr_domain.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <stdint.h>

#include <zephyr/kernel.h>
#include <zephyr/sys_clock.h>
#include <zephyr/sys/clock.h>

LOG_MODULE_DECLARE(ll_schedule, CONFIG_SOF_LOG_LEVEL);

Expand Down
2 changes: 1 addition & 1 deletion src/schedule/zephyr_dp_schedule.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include <rtos/wait.h>
#include <rtos/interrupt.h>
#include <zephyr/kernel.h>
#include <zephyr/sys_clock.h>
#include <zephyr/sys/clock.h>
#include <zephyr/sys/sem.h>
#include <zephyr/sys/mutex.h>
#include <sof/lib/memory.h>
Expand Down
2 changes: 1 addition & 1 deletion src/schedule/zephyr_twb_schedule.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <zephyr/init.h>
#include <zephyr/kernel.h>
#include <zephyr/kernel/thread.h>
#include <zephyr/sys_clock.h>
#include <zephyr/sys/clock.h>

LOG_MODULE_REGISTER(twb_schedule, CONFIG_SOF_LOG_LEVEL);
SOF_DEFINE_REG_UUID(twb_sched);
Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ manifest:

- name: zephyr
repo-path: zephyr
revision: fbd71c30f7b9083de9826577edb57d360efc01ed
revision: c0926335d490f171bbd8bc08af9eaddd01e23468
remote: zephyrproject

# Import some projects listed in zephyr/west.yml@revision
Expand Down
2 changes: 1 addition & 1 deletion zephyr/edf_schedule.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <rtos/wait.h>

#include <zephyr/kernel.h>
#include <zephyr/sys_clock.h>
#include <zephyr/sys/clock.h>

static struct k_work_q edf_workq;
static K_THREAD_STACK_DEFINE(edf_workq_stack, CONFIG_STACK_SIZE_EDF);
Expand Down
Loading