2024-09-09 08:52:07 +00:00
|
|
|
/*
|
2024-09-09 08:57:42 +00:00
|
|
|
* Copyright (C) 2012 - ARM Ltd
|
|
|
|
* Author: Marc Zyngier <marc.zyngier@arm.com>
|
2024-09-09 08:52:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2024-09-09 08:57:42 +00:00
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
2024-09-09 08:52:07 +00:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2024-09-09 08:57:42 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2024-09-09 08:52:07 +00:00
|
|
|
*/
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#ifndef __ARM_KVM_PSCI_H__
|
|
|
|
#define __ARM_KVM_PSCI_H__
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#define KVM_ARM_PSCI_0_1 1
|
|
|
|
#define KVM_ARM_PSCI_0_2 2
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
int kvm_psci_version(struct kvm_vcpu *vcpu);
|
|
|
|
int kvm_psci_call(struct kvm_vcpu *vcpu);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#endif /* __ARM_KVM_PSCI_H__ */
|