blob: d4f70d3c07b6dca4cf2040519ea0522d68ff45b9 [file] [log] [blame]
/*
* Copyright (c) 2023 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_KERNEL_INTERNAL_SMP_H_
#define ZEPHYR_INCLUDE_KERNEL_INTERNAL_SMP_H_
struct k_thread;
/**
* @internal
*/
#ifdef CONFIG_SOF
void z_smp_thread_init(void *arg, struct k_thread *thread);
void z_smp_thread_swap(void);
#endif
void z_init_cpu(int id);
void z_sched_ipi(void);
void z_smp_start_cpu(int id);
#endif