Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: e21a712a9685488f5ce80495b37b9fdbe96c230d authored by Linus Torvalds on 05 August 2019, 01:40:12 UTC
Linux 5.3-rc3
Tip revision: e21a712
vgic-v3-coproc.c
// SPDX-License-Identifier: GPL-2.0-only
/*
 * VGIC system registers handling functions for AArch32 mode
 */

#include <linux/kvm.h>
#include <linux/kvm_host.h>
#include <asm/kvm_emulate.h>
#include "vgic.h"

int vgic_v3_has_cpu_sysregs_attr(struct kvm_vcpu *vcpu, bool is_write, u64 id,
				 u64 *reg)
{
	/*
	 * TODO: Implement for AArch32
	 */
	return -ENXIO;
}

int vgic_v3_cpu_sysregs_uaccess(struct kvm_vcpu *vcpu, bool is_write, u64 id,
				u64 *reg)
{
	/*
	 * TODO: Implement for AArch32
	 */
	return -ENXIO;
}
back to top