The dynamic table factory dxe implements the dynamic table factory protocol. It also implements the ACPI, SMBIOS and DT table factories. The table generators register themselves with the respective table factories and the factories are responsible for instantiating instances of the generators to build the firmware tables. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Reviewed-by: Alexei Fedorov <alexei.fedorov@arm.com>
91 lines
2.7 KiB
C
91 lines
2.7 KiB
C
/** @file
|
|
Dynamic Table Factory Dxe
|
|
|
|
Copyright (c) 2017 - 2018, ARM Limited. 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
|
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|
|
|
**/
|
|
|
|
#include <Library/DebugLib.h>
|
|
#include <Library/PcdLib.h>
|
|
#include <Library/UefiBootServicesTableLib.h>
|
|
#include <Protocol/AcpiTable.h>
|
|
|
|
// Module specific include files.
|
|
#include <AcpiTableGenerator.h>
|
|
#include <ConfigurationManagerObject.h>
|
|
#include <ConfigurationManagerHelper.h>
|
|
#include <DeviceTreeTableGenerator.h>
|
|
#include <Library/TableHelperLib.h>
|
|
#include <Protocol/ConfigurationManagerProtocol.h>
|
|
#include <Protocol/DynamicTableFactoryProtocol.h>
|
|
#include <SmbiosTableGenerator.h>
|
|
|
|
#include "DynamicTableFactory.h"
|
|
|
|
/** The Dynamic Table Factory protocol structure that holds the
|
|
list of registered ACPI and SMBIOS table generators.
|
|
*/
|
|
EDKII_DYNAMIC_TABLE_FACTORY_INFO TableFactoryInfo;
|
|
|
|
/** A structure describing the Dynamic Table Factory protocol.
|
|
*/
|
|
STATIC
|
|
CONST
|
|
EDKII_DYNAMIC_TABLE_FACTORY_PROTOCOL DynamicTableFactoryProtocol = {
|
|
CREATE_REVISION (1, 0),
|
|
GetAcpiTableGenerator,
|
|
RegisterAcpiTableGenerator,
|
|
DeregisterAcpiTableGenerator,
|
|
GetSmbiosTableGenerator,
|
|
RegisterSmbiosTableGenerator,
|
|
DeregisterSmbiosTableGenerator,
|
|
GetDtTableGenerator,
|
|
RegisterDtTableGenerator,
|
|
DeregisterDtTableGenerator,
|
|
&TableFactoryInfo
|
|
};
|
|
|
|
/** Entrypoint for Dynamic Table Factory Dxe.
|
|
|
|
@param ImageHandle
|
|
@param SystemTable
|
|
|
|
@retval EFI_SUCCESS Success.
|
|
@retval EFI_OUT_OF_RESOURCES Memory allocation failed.
|
|
@retval EFI_NOT_FOUND Required interface/object was not found.
|
|
@retval EFI_INVALID_PARAMETER Some parameter is incorrect/invalid.
|
|
**/
|
|
EFI_STATUS
|
|
EFIAPI
|
|
DynamicTableFactoryDxeInitialize (
|
|
IN EFI_HANDLE ImageHandle,
|
|
IN EFI_SYSTEM_TABLE * CONST SystemTable
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
|
|
Status = gBS->InstallProtocolInterface (
|
|
&ImageHandle,
|
|
&gEdkiiDynamicTableFactoryProtocolGuid,
|
|
EFI_NATIVE_INTERFACE,
|
|
(VOID*)&DynamicTableFactoryProtocol
|
|
);
|
|
if (EFI_ERROR (Status)) {
|
|
DEBUG ((
|
|
DEBUG_ERROR,
|
|
"ERROR: Failed to install the Dynamic Table Factory Protocol." \
|
|
" Status = %r\n",
|
|
Status
|
|
));
|
|
}
|
|
return Status;
|
|
}
|