2007-06-19 12:55:24 +02:00
|
|
|
/** @file
|
2008-11-14 04:45:34 +01:00
|
|
|
Provides library services to make PAL Calls.
|
2008-11-21 07:34:54 +01:00
|
|
|
|
|
|
|
The PAL Library provides a service to make a PAL CALL. This service is identical
|
2009-06-04 18:16:15 +02:00
|
|
|
in functionality to AsmPalCall() in the functions of the Base Library specific to Intel Itanium architecture.
|
|
|
|
The only difference is that the PAL Entry Point is not passed in. Implementations
|
2008-11-21 07:34:54 +01:00
|
|
|
of this library class must manage PAL Entry Point on their own. For example, a PEI
|
|
|
|
implementation can use a PPI to lookup the PAL Entry Point, and a DXE implementation
|
|
|
|
can contain a constructor to look up the PAL Entry Point from a HOB. This library class
|
2009-06-04 18:16:15 +02:00
|
|
|
is only available on Intel Itanium-based platforms.
|
2008-11-21 07:34:54 +01:00
|
|
|
|
2008-11-26 07:57:44 +01:00
|
|
|
Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
are licensed and made available under the terms and conditions of the BSD License
|
|
|
|
which accompanies this distribution. The full text of the license may be found at
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-11-26 07:57:44 +01:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
|
|
|
#ifndef __PAL_CALL_LIB_H__
|
|
|
|
#define __PAL_CALL_LIB_H__
|
|
|
|
|
2008-10-23 05:38:25 +02:00
|
|
|
#include <IndustryStandard/Pal.h>
|
2007-10-20 05:26:46 +02:00
|
|
|
|
2007-06-19 12:55:24 +02:00
|
|
|
/**
|
|
|
|
Makes a PAL procedure call.
|
|
|
|
|
|
|
|
This is a wrapper function to make a PAL procedure call. Based on the Index value,
|
|
|
|
this API will make static or stacked PAL call. Architected procedures may be designated
|
|
|
|
as required or optional. If a PAL procedure is specified as optional, a unique return
|
|
|
|
code of 0xFFFFFFFFFFFFFFFF is returned in the Status field of the PAL_CALL_RETURN structure.
|
|
|
|
This indicates that the procedure is not present in this PAL implementation. It is the
|
2008-05-27 05:24:01 +02:00
|
|
|
caller's responsibility to check for this return code after calling any optional PAL
|
2007-06-19 12:55:24 +02:00
|
|
|
procedure. No parameter checking is performed on the 4 input parameters, but there are
|
|
|
|
some common rules that the caller should follow when making a PAL call. Any address
|
|
|
|
passed to PAL as buffers for return parameters must be 8-byte aligned. Unaligned addresses
|
|
|
|
may cause undefined results. For those parameters defined as reserved or some fields
|
|
|
|
defined as reserved must be zero filled or the invalid argument return value may be
|
|
|
|
returned or undefined result may occur during the execution of the procedure.
|
2009-06-04 18:16:15 +02:00
|
|
|
This function is only available on Intel Itanium-based platforms.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-07-27 13:46:08 +02:00
|
|
|
@param Index The PAL procedure Index number.
|
|
|
|
@param Arg2 The 2nd parameter for PAL procedure calls.
|
|
|
|
@param Arg3 The 3rd parameter for PAL procedure calls.
|
|
|
|
@param Arg4 The 4th parameter for PAL procedure calls.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
2008-11-24 08:10:51 +01:00
|
|
|
@return Structure returned from the PAL Call procedure, including the status and return value.
|
2007-06-19 12:55:24 +02:00
|
|
|
|
|
|
|
**/
|
|
|
|
PAL_CALL_RETURN
|
|
|
|
EFIAPI
|
|
|
|
PalCall (
|
|
|
|
IN UINT64 Index,
|
|
|
|
IN UINT64 Arg2,
|
|
|
|
IN UINT64 Arg3,
|
|
|
|
IN UINT64 Arg4
|
|
|
|
);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|