1 /* 2 * Copyright (c) 2021 Arm Limited (or its affiliates). All rights reserved. 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 #include <zephyr/kernel.h> 6 7 #ifdef CONFIG_SOC_FVP_AEMV8R_SIMULATE_CPU_PM 8 9 /* 10 * fvp can work on the mode that all core run together when it start. 11 * So an implementation for FVP is needed. 12 */ pm_cpu_on(unsigned long cpuid,uintptr_t entry_point)13int pm_cpu_on(unsigned long cpuid, uintptr_t entry_point) 14 { 15 return 0; 16 } 17 18 #endif 19