Server IP : 104.21.38.3 / Your IP : 172.69.176.126 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/src/linux-headers-5.15.0-142/arch/arm64/include/asm/ |
Upload File : |
/* SPDX-License-Identifier: GPL-2.0 */ /* * Linux-specific definitions for managing interactions with Microsoft's * Hyper-V hypervisor. The definitions in this file are specific to * the ARM64 architecture. See include/asm-generic/mshyperv.h for * definitions are that architecture independent. * * Definitions that are specified in the Hyper-V Top Level Functional * Spec (TLFS) should not go in this file, but should instead go in * hyperv-tlfs.h. * * Copyright (C) 2021, Microsoft, Inc. * * Author : Michael Kelley <[email protected]> */ #ifndef _ASM_MSHYPERV_H #define _ASM_MSHYPERV_H #include <linux/types.h> #include <linux/arm-smccc.h> #include <asm/hyperv-tlfs.h> /* * Declare calls to get and set Hyper-V VP register values on ARM64, which * requires a hypercall. */ void hv_set_vpreg(u32 reg, u64 value); u64 hv_get_vpreg(u32 reg); void hv_get_vpreg_128(u32 reg, struct hv_get_vp_registers_output *result); static inline void hv_set_register(unsigned int reg, u64 value) { hv_set_vpreg(reg, value); } static inline u64 hv_get_register(unsigned int reg) { return hv_get_vpreg(reg); } /* SMCCC hypercall parameters */ #define HV_SMCCC_FUNC_NUMBER 1 #define HV_FUNC_ID ARM_SMCCC_CALL_VAL( \ ARM_SMCCC_STD_CALL, \ ARM_SMCCC_SMC_64, \ ARM_SMCCC_OWNER_VENDOR_HYP, \ HV_SMCCC_FUNC_NUMBER) #include <asm-generic/mshyperv.h> #endif