OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-213
/
arch
/
tile
/
include
/
hv
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:13 AM
rwxr-xr-x
📄
drv_mpipe_intf.h
23.04 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_mshim_intf.h
1.52 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_pcie_rc_intf.h
1.22 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_srom_intf.h
1.39 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_trio_intf.h
6.91 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_uart_intf.h
1007 bytes
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_usb_host_intf.h
1.24 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_xgbe_impl.h
11.4 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
drv_xgbe_intf.h
22.22 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
hypervisor.h
100.2 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
iorpc.h
25.07 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
netio_errors.h
4.14 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
netio_intf.h
102.3 KB
01/28/2018 09:20:33 PM
rw-r--r--
📄
syscall_public.h
1.52 KB
01/28/2018 09:20:33 PM
rw-r--r--
Editing: syscall_public.h
Close
/* * Copyright 2010 Tilera Corporation. All Rights Reserved. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation, version 2. * * 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, GOOD TITLE or * NON INFRINGEMENT. See the GNU General Public License for * more details. */ /** * @file syscall.h * Indices for the hypervisor system calls that are intended to be called * directly, rather than only through hypervisor-generated "glue" code. */ #ifndef _SYS_HV_INCLUDE_SYSCALL_PUBLIC_H #define _SYS_HV_INCLUDE_SYSCALL_PUBLIC_H /** Fast syscall flag bit location. When this bit is set, the hypervisor * handles the syscall specially. */ #define HV_SYS_FAST_SHIFT 14 /** Fast syscall flag bit mask. */ #define HV_SYS_FAST_MASK (1 << HV_SYS_FAST_SHIFT) /** Bit location for flagging fast syscalls that can be called from PL0. */ #define HV_SYS_FAST_PLO_SHIFT 13 /** Fast syscall allowing PL0 bit mask. */ #define HV_SYS_FAST_PL0_MASK (1 << HV_SYS_FAST_PLO_SHIFT) /** Perform an MF that waits for all victims to reach DRAM. */ #define HV_SYS_fence_incoherent (51 | HV_SYS_FAST_MASK \ | HV_SYS_FAST_PL0_MASK) #endif /* !_SYS_HV_INCLUDE_SYSCALL_PUBLIC_H */