mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-11-13 17:34:12 +00:00
Tracked-On: #8788 Signed-off-by: Haicheng Li <haicheng.li@intel.com> Signed-off-by: Jian Jun Chen <jian.jun.chen@intel.com> Acked-by: Wang, Yu1 <yu1.wang@intel.com>
14 lines
250 B
C
14 lines
250 B
C
/*
|
|
* Copyright (C) 2025 Intel Corporation.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef INIT_H
|
|
#define INIT_H
|
|
|
|
void init_primary_pcpu(uint64_t hart_id, uint64_t fdt_paddr);
|
|
void init_secondary_pcpu(uint64_t hart_id);
|
|
|
|
#endif /* INIT_H*/
|