Revert old "Enable BlockSid related PP actions" patch series.
New solution for this issue will be provided. This reverts commits fromd1947ce509
tobda034c34d
. Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
@@ -90,63 +90,23 @@ HiiSetCurrentConfiguration(
|
||||
VOID
|
||||
)
|
||||
{
|
||||
UINT32 PpStorageFlag;
|
||||
EFI_STRING NewString;
|
||||
EFI_STATUS Status;
|
||||
OPAL_EXTRA_INFO_VAR OpalExtraInfo;
|
||||
UINTN DataSize;
|
||||
|
||||
gHiiConfiguration.NumDisks = GetDeviceCount();
|
||||
|
||||
//
|
||||
// Update the BlockSID status string.
|
||||
//
|
||||
PpStorageFlag = TcgPhysicalPresenceStorageLibReturnStorageFlags();
|
||||
|
||||
if ((PpStorageFlag & TCG_BIOS_STORAGE_MANAGEMENT_FLAG_ENABLE_BLOCK_SID) != 0) {
|
||||
NewString = HiiGetString (gHiiPackageListHandle, STRING_TOKEN(STR_ENABLED), NULL);
|
||||
if (NewString == NULL) {
|
||||
DEBUG ((DEBUG_INFO, "HiiSetCurrentConfiguration: HiiGetString( ) failed\n"));
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
NewString = HiiGetString (gHiiPackageListHandle, STRING_TOKEN(STR_DISABLED), NULL);
|
||||
if (NewString == NULL) {
|
||||
DEBUG ((DEBUG_INFO, "HiiSetCurrentConfiguration: HiiGetString( ) failed\n"));
|
||||
return;
|
||||
}
|
||||
DataSize = sizeof (OPAL_EXTRA_INFO_VAR);
|
||||
Status = gRT->GetVariable (
|
||||
OPAL_EXTRA_INFO_VAR_NAME,
|
||||
&gOpalExtraInfoVariableGuid,
|
||||
NULL,
|
||||
&DataSize,
|
||||
&OpalExtraInfo
|
||||
);
|
||||
if (!EFI_ERROR (Status)) {
|
||||
gHiiConfiguration.EnableBlockSid = OpalExtraInfo.EnableBlockSid;
|
||||
}
|
||||
HiiSetString(gHiiPackageListHandle, STRING_TOKEN(STR_BLOCKSID_STATUS1), NewString, NULL);
|
||||
FreePool (NewString);
|
||||
|
||||
if ((PpStorageFlag & TCG_BIOS_STORAGE_MANAGEMENT_FLAG_PP_REQUIRED_FOR_ENABLE_BLOCK_SID) != 0) {
|
||||
NewString = HiiGetString (gHiiPackageListHandle, STRING_TOKEN(STR_DISK_INFO_ENABLE_BLOCKSID_TRUE), NULL);
|
||||
if (NewString == NULL) {
|
||||
DEBUG ((DEBUG_INFO, "HiiSetCurrentConfiguration: HiiGetString( ) failed\n"));
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
NewString = HiiGetString (gHiiPackageListHandle, STRING_TOKEN(STR_DISK_INFO_ENABLE_BLOCKSID_FALSE), NULL);
|
||||
if (NewString == NULL) {
|
||||
DEBUG ((DEBUG_INFO, "HiiSetCurrentConfiguration: HiiGetString( ) failed\n"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
HiiSetString(gHiiPackageListHandle, STRING_TOKEN(STR_BLOCKSID_STATUS2), NewString, NULL);
|
||||
FreePool (NewString);
|
||||
|
||||
if ((PpStorageFlag & TCG_BIOS_STORAGE_MANAGEMENT_FLAG_PP_REQUIRED_FOR_DISABLE_BLOCK_SID) != 0) {
|
||||
NewString = HiiGetString (gHiiPackageListHandle, STRING_TOKEN(STR_DISK_INFO_DISABLE_BLOCKSID_TRUE), NULL);
|
||||
if (NewString == NULL) {
|
||||
DEBUG ((DEBUG_INFO, "HiiSetCurrentConfiguration: HiiGetString( ) failed\n"));
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
NewString = HiiGetString (gHiiPackageListHandle, STRING_TOKEN(STR_DISK_INFO_DISABLE_BLOCKSID_FALSE), NULL);
|
||||
if (NewString == NULL) {
|
||||
DEBUG ((DEBUG_INFO, "HiiSetCurrentConfiguration: HiiGetString( ) failed\n"));
|
||||
return;
|
||||
}
|
||||
}
|
||||
HiiSetString(gHiiPackageListHandle, STRING_TOKEN(STR_BLOCKSID_STATUS3), NewString, NULL);
|
||||
FreePool (NewString);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -440,7 +400,6 @@ DriverCallback(
|
||||
{
|
||||
HII_KEY HiiKey;
|
||||
UINT8 HiiKeyId;
|
||||
UINT32 PpRequest;
|
||||
|
||||
if (ActionRequest != NULL) {
|
||||
*ActionRequest = EFI_BROWSER_ACTION_REQUEST_NONE;
|
||||
@@ -509,47 +468,9 @@ DriverCallback(
|
||||
} else if (Action == EFI_BROWSER_ACTION_CHANGED) {
|
||||
switch (HiiKeyId) {
|
||||
case HII_KEY_ID_BLOCKSID:
|
||||
switch (Value->u8) {
|
||||
case 0:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_NO_ACTION;
|
||||
break;
|
||||
|
||||
case 1:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_ENABLE_BLOCK_SID;
|
||||
break;
|
||||
|
||||
case 2:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_DISABLE_BLOCK_SID;
|
||||
break;
|
||||
|
||||
case 3:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_SET_PP_REQUIRED_FOR_ENABLE_BLOCK_SID_FUNC_TRUE;
|
||||
break;
|
||||
|
||||
case 4:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_SET_PP_REQUIRED_FOR_ENABLE_BLOCK_SID_FUNC_FALSE;
|
||||
break;
|
||||
|
||||
case 5:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_SET_PP_REQUIRED_FOR_DISABLE_BLOCK_SID_FUNC_TRUE;
|
||||
break;
|
||||
|
||||
case 6:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_SET_PP_REQUIRED_FOR_DISABLE_BLOCK_SID_FUNC_FALSE;
|
||||
break;
|
||||
|
||||
default:
|
||||
PpRequest = TCG2_PHYSICAL_PRESENCE_NO_ACTION;
|
||||
DEBUG ((DEBUG_ERROR, "Invalid value input!\n"));
|
||||
break;
|
||||
}
|
||||
HiiSetBlockSidAction(PpRequest);
|
||||
|
||||
HiiSetBlockSid(Value->b);
|
||||
*ActionRequest = EFI_BROWSER_ACTION_REQUEST_FORM_APPLY;
|
||||
return EFI_SUCCESS;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1183,27 +1104,25 @@ HiiPasswordEntered(
|
||||
|
||||
**/
|
||||
EFI_STATUS
|
||||
HiiSetBlockSidAction (
|
||||
IN UINT32 PpRequest
|
||||
HiiSetBlockSid (
|
||||
BOOLEAN Enable
|
||||
)
|
||||
{
|
||||
UINT32 ReturnCode;
|
||||
EFI_STATUS Status;
|
||||
EFI_STATUS Status;
|
||||
OPAL_EXTRA_INFO_VAR OpalExtraInfo;
|
||||
UINTN DataSize;
|
||||
|
||||
//
|
||||
// Process TCG Physical Presence request just after trusted console is ready
|
||||
// Platform can connect trusted consoles and then call the below function.
|
||||
//
|
||||
ReturnCode = TcgPhysicalPresenceStorageLibSubmitRequestToPreOSFunction (PpRequest, 0);
|
||||
if (ReturnCode == TCG_PP_SUBMIT_REQUEST_TO_PREOS_SUCCESS) {
|
||||
Status = EFI_SUCCESS;
|
||||
} else if (ReturnCode == TCG_PP_SUBMIT_REQUEST_TO_PREOS_GENERAL_FAILURE) {
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
} else if (ReturnCode == TCG_PP_SUBMIT_REQUEST_TO_PREOS_NOT_IMPLEMENTED) {
|
||||
Status = EFI_UNSUPPORTED;
|
||||
} else {
|
||||
Status = EFI_DEVICE_ERROR;
|
||||
}
|
||||
Status = EFI_SUCCESS;
|
||||
|
||||
OpalExtraInfo.EnableBlockSid = Enable;
|
||||
DataSize = sizeof (OPAL_EXTRA_INFO_VAR);
|
||||
Status = gRT->SetVariable (
|
||||
OPAL_EXTRA_INFO_VAR_NAME,
|
||||
&gOpalExtraInfoVariableGuid,
|
||||
EFI_VARIABLE_BOOTSERVICE_ACCESS | EFI_VARIABLE_NON_VOLATILE,
|
||||
DataSize,
|
||||
&OpalExtraInfo
|
||||
);
|
||||
|
||||
return Status;
|
||||
}
|
||||
|
Reference in New Issue
Block a user