8ac98aedda
... in order to advertise the XEN_HVM_CPUID_UPCALL_VECTOR feature, which will come in a subsequent commit. Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Acked-by: Paul Durrant <paul@xen.org>
26 lines
690 B
C
26 lines
690 B
C
/* SPDX-License-Identifier: MIT */
|
|
/******************************************************************************
|
|
* protocols.h
|
|
*
|
|
* Copyright (c) 2008, Keir Fraser
|
|
*/
|
|
|
|
#ifndef __XEN_PROTOCOLS_H__
|
|
#define __XEN_PROTOCOLS_H__
|
|
|
|
#define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi"
|
|
#define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi"
|
|
#define XEN_IO_PROTO_ABI_ARM "arm-abi"
|
|
|
|
#if defined(__i386__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
|
|
#elif defined(__x86_64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
|
|
#elif defined(__arm__) || defined(__aarch64__)
|
|
# define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_ARM
|
|
#else
|
|
# error arch fixup needed here
|
|
#endif
|
|
|
|
#endif
|