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