hyp.S 495 字节
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0-only */
2 3 4 5 6 7 8
/*
 * Copyright (C) 2012,2013 - ARM Ltd
 * Author: Marc Zyngier <marc.zyngier@arm.com>
 */

#include <linux/linkage.h>

9
#include <asm/alternative.h>
10
#include <asm/assembler.h>
11
#include <asm/cpufeature.h>
12

13
/*
14 15 16 17
 * u64 __kvm_call_hyp_init(phys_addr_t pgd_ptr,
 * 			   unsigned long hyp_stack_ptr,
 * 			   unsigned long vector_ptr,
 * 			   unsigned long tpidr_el2);
18
 */
19
SYM_FUNC_START(__kvm_call_hyp_init)
20 21
	hvc	#0
	ret
22
SYM_FUNC_END(__kvm_call_hyp_init)