mirror of https://github.com/acidanthera/audk.git
UefiCpuPkg: Remove unused API in SmmCpuFeaturesLib.h
Remove SmmCpuFeaturesAllocatePageTableMemory in this headfile. This API is not used by PiSmmCpuDxeSmm driver any more. Also no other files use this API. Signed-off-by: Dun Tan <dun.tan@intel.com> Cc: Eric Dong <eric.dong@intel.com> Reviewed-by: Ray Ni <ray.ni@intel.com> Cc: Rahul Kumar <rahul1.kumar@intel.com>
This commit is contained in:
parent
b822be1a20
commit
0426115b67
|
@ -386,29 +386,4 @@ SmmCpuFeaturesCompleteSmmReadyToLock (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
This API provides a method for a CPU to allocate a specific region for storing page tables.
|
|
||||||
|
|
||||||
This API can be called more once to allocate memory for page tables.
|
|
||||||
|
|
||||||
Allocates the number of 4KB pages of type EfiRuntimeServicesData and returns a pointer to the
|
|
||||||
allocated buffer. The buffer returned is aligned on a 4KB boundary. If Pages is 0, then NULL
|
|
||||||
is returned. If there is not enough memory remaining to satisfy the request, then NULL is
|
|
||||||
returned.
|
|
||||||
|
|
||||||
This function can also return NULL if there is no preference on where the page tables are allocated in SMRAM.
|
|
||||||
|
|
||||||
@param Pages The number of 4 KB pages to allocate.
|
|
||||||
|
|
||||||
@return A pointer to the allocated buffer for page tables.
|
|
||||||
@retval NULL Fail to allocate a specific region for storing page tables,
|
|
||||||
Or there is no preference on where the page tables are allocated in SMRAM.
|
|
||||||
|
|
||||||
**/
|
|
||||||
VOID *
|
|
||||||
EFIAPI
|
|
||||||
SmmCpuFeaturesAllocatePageTableMemory (
|
|
||||||
IN UINTN Pages
|
|
||||||
);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue