mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-13 17:34:12 +00:00
- Introduce arch/riscv/notify.c to implement RISC-V specific SMP call handlers. Tracked-On: #8786 Signed-off-by: Haicheng Li <haicheng.li@intel.com> Co-developed-by: Shiqing Gao <shiqing.gao@intel.com> Signed-off-by: Shiqing Gao <shiqing.gao@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
19 lines
329 B
C
19 lines
329 B
C
/*
|
|
* Copyright (C) 2023-2025 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*
|
|
* Authors:
|
|
* Haicheng Li <haicheng.li@intel.com>
|
|
*/
|
|
|
|
#ifndef RISCV_NOTIFY_H
|
|
#define RISCV_NOTIFY_H
|
|
|
|
#include <types.h>
|
|
|
|
void arch_init_smp_call(void);
|
|
void arch_smp_call_kick_pcpu(uint16_t pcpu_id);
|
|
|
|
#endif /* RISCV_NOTIFY_H */
|