protocols.h 697 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __XEN_PROTOCOLS_H__
  3. #define __XEN_PROTOCOLS_H__
  4. #define XEN_IO_PROTO_ABI_X86_32 "x86_32-abi"
  5. #define XEN_IO_PROTO_ABI_X86_64 "x86_64-abi"
  6. #define XEN_IO_PROTO_ABI_POWERPC64 "powerpc64-abi"
  7. #define XEN_IO_PROTO_ABI_ARM "arm-abi"
  8. #if defined(__i386__)
  9. # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_32
  10. #elif defined(__x86_64__)
  11. # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_X86_64
  12. #elif defined(__powerpc64__)
  13. # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_POWERPC64
  14. #elif defined(__arm__) || defined(__aarch64__)
  15. # define XEN_IO_PROTO_ABI_NATIVE XEN_IO_PROTO_ABI_ARM
  16. #else
  17. # error arch fixup needed here
  18. #endif
  19. #endif