Began implementation of local RSDP

date	2001.12.20.22.31.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:40:24 +00:00
parent caec6a5ae9
commit 69d3fa5886

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Module Name: aeexec - Top level parse and execute routines
* $Revision: 1.48 $
* Module Name: aeexec - Support routines for AcpiExec utility
* $Revision: 1.49 $
*
*****************************************************************************/
@ -137,6 +137,33 @@ UINT8 *DsdtPtr;
UINT32 AcpiDsdtLength;
DEBUG_REGIONS Regions;
RSDP_DESCRIPTOR LocalRsdp;
/******************************************************************************
*
* FUNCTION: AeLocalGetRootPointer
*
* PARAMETERS:
*
* RETURN: Status
*
* DESCRIPTION: Return a local RSDP, used to dynamically load tables via the
* standard ACPI mechanism.
*
*****************************************************************************/
ACPI_STATUS
AeLocalGetRootPointer (
UINT32 Flags,
ACPI_PHYSICAL_ADDRESS *RsdpPhysicalAddress)
{
STRCPY (LocalRsdp.Signature, RSDP_SIG);
LocalRsdp.Revision = 1;
return (AE_NOT_FOUND);
}
/******************************************************************************