mirror of https://github.com/acidanthera/audk.git
MdePkg: Follow PI1.4a update SmmStartupThisAP() description
Cc: Liming Gao <liming.gao@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
This commit is contained in:
parent
1f611c55de
commit
6535266574
|
@ -1,8 +1,8 @@
|
||||||
/** @file
|
/** @file
|
||||||
Common definitions in the Platform Initialization Specification version 1.4
|
Common definitions in the Platform Initialization Specification version 1.4a
|
||||||
VOLUME 4 System Management Mode Core Interface version.
|
VOLUME 4 System Management Mode Core Interface version.
|
||||||
|
|
||||||
Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2009 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -60,15 +60,15 @@ EFI_STATUS
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
The SmmStartupThisAp() lets the caller to get one distinct application processor
|
This service lets the caller to get one distinct application processor (AP) to execute
|
||||||
(AP) in the enabled processor pool to execute a caller-provided code stream
|
a caller-provided code stream while in SMM.
|
||||||
while in SMM. It runs the given code on this processor and reports the status.
|
|
||||||
It must be noted that the supplied code stream will be run only on an enabled
|
|
||||||
processor which has also entered SMM.
|
|
||||||
|
|
||||||
@param[in] Procedure A pointer to the code stream to be run on the designated AP of the system.
|
@param[in] Procedure A pointer to the code stream to be run on the designated
|
||||||
@param[in] CpuNumber The zero-based index of the processor number of the AP on which the code stream is supposed to run.
|
AP of the system.
|
||||||
@param[in,out] ProcArguments Allow the caller to pass a list of parameters to the code that is run by the AP.
|
@param[in] CpuNumber The zero-based index of the processor number of the AP
|
||||||
|
on which the code stream is supposed to run.
|
||||||
|
@param[in,out] ProcArguments Allows the caller to pass a list of parameters to the code
|
||||||
|
that is run by the AP.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The call was successful and the return parameters are valid.
|
@retval EFI_SUCCESS The call was successful and the return parameters are valid.
|
||||||
@retval EFI_INVALID_PARAMETER The input arguments are out of range.
|
@retval EFI_INVALID_PARAMETER The input arguments are out of range.
|
||||||
|
|
Loading…
Reference in New Issue