2010-01-14 05:24:00 +01:00
|
|
|
/** @file
|
|
|
|
Produces the SMM CPU I/O Protocol.
|
|
|
|
|
2018-06-27 15:14:20 +02:00
|
|
|
Copyright (c) 2009 - 2018, Intel Corporation. All rights reserved.<BR>
|
2021-01-12 04:00:05 +01:00
|
|
|
Copyright (c) Microsoft Corporation.
|
2019-04-04 01:07:22 +02:00
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
2010-01-14 05:24:00 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
|
2021-01-12 04:00:05 +01:00
|
|
|
#include <PiSmm.h>
|
2010-01-14 05:24:00 +01:00
|
|
|
|
2021-01-12 04:00:05 +01:00
|
|
|
#include "CpuIo2Mm.h"
|
2010-01-14 05:24:00 +01:00
|
|
|
|
|
|
|
/**
|
2021-01-12 04:00:05 +01:00
|
|
|
The module Entry Point for Traditional MM CpuIoProtocol driver
|
2010-01-14 05:24:00 +01:00
|
|
|
|
2010-01-14 21:15:14 +01:00
|
|
|
@param[in] ImageHandle The firmware allocated handle for the EFI image.
|
|
|
|
@param[in] SystemTable A pointer to the EFI System Table.
|
2010-01-14 05:24:00 +01:00
|
|
|
|
2010-01-14 21:15:14 +01:00
|
|
|
@retval EFI_SUCCESS The entry point is executed successfully.
|
|
|
|
@retval Other Some error occurs when executing this entry point.
|
2010-01-14 05:24:00 +01:00
|
|
|
|
|
|
|
**/
|
|
|
|
EFI_STATUS
|
|
|
|
EFIAPI
|
|
|
|
SmmCpuIo2Initialize (
|
|
|
|
IN EFI_HANDLE ImageHandle,
|
|
|
|
IN EFI_SYSTEM_TABLE *SystemTable
|
|
|
|
)
|
2010-07-13 05:08:54 +02:00
|
|
|
{
|
2021-01-12 04:00:05 +01:00
|
|
|
return CommonCpuIo2Initialize ();
|
2010-01-14 05:24:00 +01:00
|
|
|
}
|