diff options
Diffstat (limited to 'src/vendorcode/amd/pi/00660F01')
-rw-r--r-- | src/vendorcode/amd/pi/00660F01/binaryPI/AGESA.c | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/src/vendorcode/amd/pi/00660F01/binaryPI/AGESA.c b/src/vendorcode/amd/pi/00660F01/binaryPI/AGESA.c index 405a45075d..cb2f7f69f5 100644 --- a/src/vendorcode/amd/pi/00660F01/binaryPI/AGESA.c +++ b/src/vendorcode/amd/pi/00660F01/binaryPI/AGESA.c @@ -52,19 +52,6 @@ #include <console/console.h> #include <commonlib/loglevel.h> -// TODO These need to be replaced with calls to CreateStruct() -AGESA_STATUS -HeapAllocateBuffer ( - IN OUT VOID *AllocateHeapParams, - IN OUT VOID *StdHeader - ); - -AGESA_STATUS -HeapDeallocateBuffer ( - IN UINT32 BufferHandle, - IN VOID *StdHeader - ); - CONST UINT32 ImageSignature = IMAGE_SIGNATURE; CONST UINT32 ModuleSignature = MODULE_SIGNATURE; CONST CHAR8 ModuleIdentifier[] = AGESA_ID; @@ -415,53 +402,6 @@ FchInitS3LateRestore ( Dispatcher(FchDataPtr); } -// TODO This has to be removed -AGESA_STATUS -HeapAllocateBuffer ( - IN OUT VOID *AllocateHeapParams, - IN OUT VOID *StdHeader - ) -{ - MODULE_ENTRY Dispatcher = NULL; - const AMD_MODULE_HEADER* module = agesawrapper_locate_module(ModuleIdentifier); - - AMD_INTERFACE_PARAMS InterfaceParams = {}; - - if (!module) return AGESA_UNSUPPORTED; - Dispatcher = module->ModuleDispatcher; - - InterfaceParams.StdHeader = *(AMD_CONFIG_PARAMS*)StdHeader; - InterfaceParams.StdHeader.Func = AMD_HEAP_ALLOCATE_BUFFER; - - InterfaceParams.AllocationMethod = PreMemHeap; - InterfaceParams.NewStructPtr = AllocateHeapParams; - - return Dispatcher(&InterfaceParams); -} - -// TODO This has to be removed -AGESA_STATUS -HeapDeallocateBuffer ( - IN UINT32 BufferHandle, - IN VOID *StdHeader - ) -{ - MODULE_ENTRY Dispatcher = NULL; - const AMD_MODULE_HEADER* module = agesawrapper_locate_module(ModuleIdentifier); - - AMD_INTERFACE_PARAMS InterfaceParams = {}; - - if (!module) return AGESA_UNSUPPORTED; - Dispatcher = module->ModuleDispatcher; - - InterfaceParams.StdHeader = *(AMD_CONFIG_PARAMS*)StdHeader; - InterfaceParams.StdHeader.Func = AMD_HEAP_DEALLOCATE_BUFFER; - - InterfaceParams.NewStructPtr = &BufferHandle; - - return Dispatcher(&InterfaceParams); -} - /********************************************************************** * Interface call: AmdSetValue **********************************************************************/ |