1 /* 2 * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 #ifndef __SPM_MCDI_H__ 7 #define __SPM_MCDI_H__ 8 9 void spm_mcdi_wakeup_all_cores(void); 10 void spm_mcdi_prepare_for_mtcmos(void); 11 void spm_mcdi_prepare_for_off_state(unsigned long mpidr, unsigned int afflvl); 12 void spm_mcdi_finish_for_on_state(unsigned long mpidr, unsigned int afflvl); 13 14 #endif /* __SPM_MCDI_H__ */ 15