esi.h 887 B

123456789101112131415161718192021222324252627282930
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * ESI service calls.
  4. *
  5. * Copyright (c) Copyright 2005-2006 Hewlett-Packard Development Company, L.P.
  6. * Alex Williamson <[email protected]>
  7. */
  8. #ifndef esi_h
  9. #define esi_h
  10. #include <linux/efi.h>
  11. #define ESI_QUERY 0x00000001
  12. #define ESI_OPEN_HANDLE 0x02000000
  13. #define ESI_CLOSE_HANDLE 0x02000001
  14. enum esi_proc_type {
  15. ESI_PROC_SERIALIZED, /* calls need to be serialized */
  16. ESI_PROC_MP_SAFE, /* MP-safe, but not reentrant */
  17. ESI_PROC_REENTRANT /* MP-safe and reentrant */
  18. };
  19. extern struct ia64_sal_retval esi_call_phys (void *, u64 *);
  20. extern int ia64_esi_call(efi_guid_t, struct ia64_sal_retval *,
  21. enum esi_proc_type,
  22. u64, u64, u64, u64, u64, u64, u64, u64);
  23. extern int ia64_esi_call_phys(efi_guid_t, struct ia64_sal_retval *, u64, u64,
  24. u64, u64, u64, u64, u64, u64);
  25. #endif /* esi_h */