#ifndef _ASMARM_PSCI_H_ #define _ASMARM_PSCI_H_ #include #include #define PSCI_INVOKE_ARG_TYPE u32 #define PSCI_FN_CPU_ON PSCI_0_2_FN_CPU_ON extern int psci_invoke(u32 function_id, u32 arg0, u32 arg1, u32 arg2); extern int psci_cpu_on(unsigned long cpuid, unsigned long entry_point); extern void psci_sys_reset(void); extern int cpu_psci_cpu_boot(unsigned int cpu); extern void cpu_psci_cpu_die(unsigned int cpu); #endif /* _ASMARM_PSCI_H_ */