From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mx.groups.io with SMTP id smtpd.web08.9308.1653056161941887235 for ; Fri, 20 May 2022 07:16:02 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=k3EDlCUP; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: ray.ni@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1653056162; x=1684592162; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+fyuyb5fqr0p69ZCgQQpCbLZEIRLHMfQOJptGik9skk=; b=k3EDlCUPwC3G1PVnkkDCj/7H3edAv6BMZdle2tv9LnM03/qf1QesJuiH GVvc1wCUXTp0zDPtD0S7jx5e7CUxd5+rxBlgGgT13pofRAy6sEv7Cdv6D pDbOILmKo17o5+d1QolNyPz8M0AhZl3VTabRsrwuY8aliRcz5/poR0e+d +tS0cdpMyN30cfAcUNdE2bGdv1gBNFBjRgUVNeocUQ7nOCkhjHAS5pbMq itWtaJY9doWzuc8juGZZnsp+ZuDSvFMml1Ov5rW9QobInETZPbvz/dS3e kSEJxdSY68+go9xOdl77BGusLu7mK/4Sk60G1iRPoM4i6rcYI2UrmbXYj A==; X-IronPort-AV: E=McAfee;i="6400,9594,10353"; a="333243144" X-IronPort-AV: E=Sophos;i="5.91,239,1647327600"; d="scan'208";a="333243144" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 May 2022 07:16:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.91,239,1647327600"; d="scan'208";a="743512522" Received: from shwdeopenlab706.ccr.corp.intel.com ([10.239.183.102]) by orsmga005.jf.intel.com with ESMTP; 20 May 2022 07:16:00 -0700 From: "Ni, Ray" To: devel@edk2.groups.io Cc: Eric Dong Subject: [PATCH 4/5] CpuException: Remove InitializeCpuInterruptHandlers Date: Fri, 20 May 2022 22:15:48 +0800 Message-Id: <20220520141549.108-5-ray.ni@intel.com> X-Mailer: git-send-email 2.35.1.windows.2 In-Reply-To: <20220520141549.108-1-ray.ni@intel.com> References: <20220520141549.108-1-ray.ni@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable InitializeCpuExceptionHandlers() expects caller allocates IDT while InitializeCpuInterruptHandlers() allocates 256 IDT entries itself. InitializeCpuExceptionHandlers() fills max 32 IDT entries allocated by caller. If caller allocates 10 entries, the API just fills 10 IDT entries. The inconsistency between the two APIs makes code hard to unerstand and hard to share. Because there is only one caller (CpuDxe) for InitializeCpuInterruptHandler(), this patch updates CpuDxe driver to allocates 256 IDT entries then call InitializeCpuExceptionHandlers(). With this change, InitializeCpuInterruptHandlers() is removed completely. And InitializeCpuExceptionHandlers() fills max 32 entries for PEI and SMM instance, max 256 entries for DXE instance. Such behavior matches to the original one. Signed-off-by: Ray Ni Cc: Eric Dong --- .../Include/Library/CpuExceptionHandlerLib.h | 28 +------ .../CpuExceptionHandlerLibNull.c | 31 +------ UefiCpuPkg/CpuDxe/CpuDxe.c | 33 ++++++-- .../CpuExceptionHandlerLib/DxeException.c | 80 ++----------------- .../CpuExceptionHandlerLib/PeiCpuException.c | 61 +------------- .../PeiDxeSmmCpuException.c | 19 ++--- .../SecPeiCpuException.c | 31 +------ .../CpuExceptionHandlerLib/SmmException.c | 35 ++------ 8 files changed, 56 insertions(+), 262 deletions(-) diff --git a/MdeModulePkg/Include/Library/CpuExceptionHandlerLib.h b/MdeMod= ulePkg/Include/Library/CpuExceptionHandlerLib.h index 22a4408f9f..d4649bebe1 100644 --- a/MdeModulePkg/Include/Library/CpuExceptionHandlerLib.h +++ b/MdeModulePkg/Include/Library/CpuExceptionHandlerLib.h @@ -2,7 +2,7 @@ CPU Exception library provides the default CPU interrupt/exception handl= er.=0D It also provides capability to register user interrupt/exception handler= .=0D =0D - Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2012 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -132,28 +132,6 @@ InitializeCpuExceptionHandlersEx ( IN CPU_EXCEPTION_INIT_DATA *InitData OPTIONAL=0D );=0D =0D -/**=0D - Initializes all CPU interrupt/exceptions entries and provides the defaul= t interrupt/exception handlers.=0D -=0D - Caller should try to get an array of interrupt and/or exception vectors = that are in use and need to=0D - persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.=0D - If caller cannot get reserved vector list or it does not exists, set Vec= torInfo to NULL.=0D - If VectorInfo is not NULL, the exception vectors will be initialized per= vector attribute accordingly.=0D -=0D - @param[in] VectorInfo Pointer to reserved vector list.=0D -=0D - @retval EFI_SUCCESS All CPU interrupt/exception entries have b= een successfully initialized=0D - with default interrupt/exception handlers.= =0D - @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if= VectorInfo is not NULL.=0D - @retval EFI_UNSUPPORTED This function is not supported.=0D -=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -InitializeCpuInterruptHandlers (=0D - IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL=0D - );=0D -=0D /**=0D Registers a function to be called from the processor interrupt handler.= =0D =0D @@ -161,8 +139,8 @@ InitializeCpuInterruptHandlers ( interrupt or exception type specified by InterruptType. If InterruptHand= ler is NULL, then the=0D handler for the processor interrupt or exception type specified by Inter= ruptType is uninstalled.=0D The installed handler is called once for each processor interrupt or exc= eption.=0D - NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() or=0D - InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED retu= rned.=0D + NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() is invoked,=0D + otherwise EFI_UNSUPPORTED returned.=0D =0D @param[in] InterruptType Defines which interrupt or exception to ho= ok.=0D @param[in] InterruptHandler A pointer to a function of type EFI_CPU_IN= TERRUPT_HANDLER that is called=0D diff --git a/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHa= ndlerLibNull.c b/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExcepti= onHandlerLibNull.c index 35ab5a8db5..54f38788fe 100644 --- a/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLi= bNull.c +++ b/MdeModulePkg/Library/CpuExceptionHandlerLibNull/CpuExceptionHandlerLi= bNull.c @@ -1,7 +1,7 @@ /** @file=0D CPU Exception Handler library implementition with empty functions.=0D =0D - Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2012 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -33,31 +33,6 @@ InitializeCpuExceptionHandlers ( return EFI_SUCCESS;=0D }=0D =0D -/**=0D - Initializes all CPU interrupt/exceptions entries and provides the defaul= t interrupt/exception handlers.=0D -=0D - Caller should try to get an array of interrupt and/or exception vectors = that are in use and need to=0D - persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.=0D - If caller cannot get reserved vector list or it does not exists, set Vec= torInfo to NULL.=0D - If VectorInfo is not NULL, the exception vectors will be initialized per= vector attribute accordingly.=0D -=0D - @param[in] VectorInfo Pointer to reserved vector list.=0D -=0D - @retval EFI_SUCCESS All CPU interrupt/exception entries have b= een successfully initialized=0D - with default interrupt/exception handlers.= =0D - @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if= VectorInfo is not NULL.=0D - @retval EFI_UNSUPPORTED This function is not supported.=0D -=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -InitializeCpuInterruptHandlers (=0D - IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL=0D - )=0D -{=0D - return EFI_SUCCESS;=0D -}=0D -=0D /**=0D Registers a function to be called from the processor interrupt handler.= =0D =0D @@ -65,8 +40,8 @@ InitializeCpuInterruptHandlers ( interrupt or exception type specified by InterruptType. If InterruptHand= ler is NULL, then the=0D handler for the processor interrupt or exception type specified by Inter= ruptType is uninstalled.=0D The installed handler is called once for each processor interrupt or exc= eption.=0D - NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() or=0D - InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED retu= rned.=0D + NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() is invoked,=0D + otherwise EFI_UNSUPPORTED returned.=0D =0D @param[in] InterruptType Defines which interrupt or exception to ho= ok.=0D @param[in] InterruptHandler A pointer to a function of type EFI_CPU_IN= TERRUPT_HANDLER that is called=0D diff --git a/UefiCpuPkg/CpuDxe/CpuDxe.c b/UefiCpuPkg/CpuDxe/CpuDxe.c index 00f3cb0957..a6a91507f6 100644 --- a/UefiCpuPkg/CpuDxe/CpuDxe.c +++ b/UefiCpuPkg/CpuDxe/CpuDxe.c @@ -1,7 +1,7 @@ /** @file=0D CPU DXE Module to produce CPU ARCH Protocol.=0D =0D - Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2008 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -10,6 +10,8 @@ #include "CpuMp.h"=0D #include "CpuPageTable.h"=0D =0D +#define CPU_INTERRUPT_NUM 256=0D +=0D //=0D // Global Variables=0D //=0D @@ -924,9 +926,12 @@ InitInterruptDescriptorTable ( VOID=0D )=0D {=0D - EFI_STATUS Status;=0D - EFI_VECTOR_HANDOFF_INFO *VectorInfoList;=0D - EFI_VECTOR_HANDOFF_INFO *VectorInfo;=0D + EFI_STATUS Status;=0D + EFI_VECTOR_HANDOFF_INFO *VectorInfoList;=0D + EFI_VECTOR_HANDOFF_INFO *VectorInfo;=0D + IA32_IDT_GATE_DESCRIPTOR *IdtTable;=0D + IA32_DESCRIPTOR IdtDescriptor;=0D + UINTN IdtEntryCount;=0D =0D VectorInfo =3D NULL;=0D Status =3D EfiGetSystemConfigurationTable (&gEfiVectorHandoffTableGu= id, (VOID **)&VectorInfoList);=0D @@ -934,7 +939,25 @@ InitInterruptDescriptorTable ( VectorInfo =3D VectorInfoList;=0D }=0D =0D - Status =3D InitializeCpuInterruptHandlers (VectorInfo);=0D + AsmReadIdtr (&IdtDescriptor);=0D + IdtEntryCount =3D (IdtDescriptor.Limit + 1) / sizeof (IA32_IDT_GATE_DESC= RIPTOR);=0D + if (IdtEntryCount < CPU_INTERRUPT_NUM) {=0D + //=0D + // Increase Interrupt Descriptor Table and Copy the old IDT table in=0D + //=0D + IdtTable =3D AllocateZeroPool (sizeof (IA32_IDT_GATE_DESCRIPTOR) * CPU= _INTERRUPT_NUM);=0D + ASSERT (IdtTable !=3D NULL);=0D + CopyMem (IdtTable, (VOID *)IdtDescriptor.Base, sizeof (IA32_IDT_GATE_D= ESCRIPTOR) * IdtEntryCount);=0D +=0D + //=0D + // Load Interrupt Descriptor Table=0D + //=0D + IdtDescriptor.Base =3D (UINTN)IdtTable;=0D + IdtDescriptor.Limit =3D (UINT16)(sizeof (IA32_IDT_GATE_DESCRIPTOR) * C= PU_INTERRUPT_NUM - 1);=0D + AsmWriteIdtr (&IdtDescriptor);=0D + }=0D +=0D + Status =3D InitializeCpuExceptionHandlers (VectorInfo);=0D ASSERT_EFI_ERROR (Status);=0D }=0D =0D diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeException.c b/Uef= iCpuPkg/Library/CpuExceptionHandlerLib/DxeException.c index f139131a7c..c7c1fe31d2 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeException.c +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeException.c @@ -1,7 +1,7 @@ /** @file=0D CPU exception handler library implemenation for DXE modules.=0D =0D - Copyright (c) 2013 - 2017, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2013 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -17,8 +17,8 @@ CONST UINTN mDoFarReturnFlag =3D 0; RESERVED_VECTORS_DATA mReservedVectorsData[CPU_INTERRUPT_NUM];=0D EFI_CPU_INTERRUPT_HANDLER mExternalInterruptHandlerTable[CPU_INTERRUPT_NU= M];=0D EXCEPTION_HANDLER_DATA mExceptionHandlerData =3D {=0D - 0, // To be fixed=0D - 0, // To be fixed=0D + CPU_INTERRUPT_NUM,=0D + 0, // To be fixed=0D mReservedVectorsData,=0D mExternalInterruptHandlerTable=0D };=0D @@ -69,76 +69,6 @@ InitializeCpuExceptionHandlers ( return InitializeCpuExceptionHandlersWorker (VectorInfo, &mExceptionHand= lerData);=0D }=0D =0D -/**=0D - Initializes all CPU interrupt/exceptions entries and provides the defaul= t interrupt/exception handlers.=0D -=0D - Caller should try to get an array of interrupt and/or exception vectors = that are in use and need to=0D - persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.=0D - If caller cannot get reserved vector list or it does not exists, set Vec= torInfo to NULL.=0D - If VectorInfo is not NULL, the exception vectors will be initialized per= vector attribute accordingly.=0D -=0D - @param[in] VectorInfo Pointer to reserved vector list.=0D -=0D - @retval EFI_SUCCESS All CPU interrupt/exception entries have b= een successfully initialized=0D - with default interrupt/exception handlers.= =0D - @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if= VectorInfo is not NULL.=0D - @retval EFI_UNSUPPORTED This function is not supported.=0D -=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -InitializeCpuInterruptHandlers (=0D - IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL=0D - )=0D -{=0D - EFI_STATUS Status;=0D - IA32_IDT_GATE_DESCRIPTOR *IdtTable;=0D - IA32_DESCRIPTOR IdtDescriptor;=0D - UINTN IdtEntryCount;=0D - EXCEPTION_HANDLER_TEMPLATE_MAP TemplateMap;=0D -=0D - SetMem ((VOID *)mReservedVectorsData, sizeof (RESERVED_VECTORS_DATA) * C= PU_INTERRUPT_NUM, 0xff);=0D - if (VectorInfo !=3D NULL) {=0D - Status =3D ReadAndVerifyVectorInfo (VectorInfo, mReservedVectorsData, = CPU_INTERRUPT_NUM);=0D - if (EFI_ERROR (Status)) {=0D - return EFI_INVALID_PARAMETER;=0D - }=0D - }=0D -=0D - //=0D - // Read IDT descriptor and calculate IDT size=0D - //=0D - AsmReadIdtr (&IdtDescriptor);=0D - IdtEntryCount =3D (IdtDescriptor.Limit + 1) / sizeof (IA32_IDT_GATE_DESC= RIPTOR);=0D - if (IdtEntryCount > CPU_INTERRUPT_NUM) {=0D - IdtEntryCount =3D CPU_INTERRUPT_NUM;=0D - }=0D -=0D - //=0D - // Create Interrupt Descriptor Table and Copy the old IDT table in=0D - //=0D - IdtTable =3D AllocateZeroPool (sizeof (IA32_IDT_GATE_DESCRIPTOR) * CPU_I= NTERRUPT_NUM);=0D - ASSERT (IdtTable !=3D NULL);=0D - CopyMem (IdtTable, (VOID *)IdtDescriptor.Base, sizeof (IA32_IDT_GATE_DES= CRIPTOR) * IdtEntryCount);=0D -=0D - AsmGetTemplateAddressMap (&TemplateMap);=0D - ASSERT (TemplateMap.ExceptionStubHeaderSize <=3D HOOKAFTER_STUB_SIZE);=0D -=0D - mExceptionHandlerData.IdtEntryCount =3D CPU_INTERRUPT_NUM;=0D - InitializeSpinLock (&mExceptionHandlerData.DisplayMessageSpinLock);=0D -=0D - UpdateIdtTable (IdtTable, &TemplateMap, &mExceptionHandlerData);=0D -=0D - //=0D - // Load Interrupt Descriptor Table=0D - //=0D - IdtDescriptor.Base =3D (UINTN)IdtTable;=0D - IdtDescriptor.Limit =3D (UINT16)(sizeof (IA32_IDT_GATE_DESCRIPTOR) * CPU= _INTERRUPT_NUM - 1);=0D - AsmWriteIdtr ((IA32_DESCRIPTOR *)&IdtDescriptor);=0D -=0D - return EFI_SUCCESS;=0D -}=0D -=0D /**=0D Registers a function to be called from the processor interrupt handler.= =0D =0D @@ -146,8 +76,8 @@ InitializeCpuInterruptHandlers ( interrupt or exception type specified by InterruptType. If InterruptHand= ler is NULL, then the=0D handler for the processor interrupt or exception type specified by Inter= ruptType is uninstalled.=0D The installed handler is called once for each processor interrupt or exc= eption.=0D - NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() or=0D - InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED retu= rned.=0D + NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() is invoked,=0D + otherwise EFI_UNSUPPORTED returned.=0D =0D @param[in] InterruptType Defines which interrupt or exception to ho= ok.=0D @param[in] InterruptHandler A pointer to a function of type EFI_CPU_IN= TERRUPT_HANDLER that is called=0D diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuException.c b/= UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuException.c index 687fc4177f..1ae611c75e 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuException.c +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiCpuException.c @@ -1,7 +1,7 @@ /** @file=0D CPU exception handler library implementation for PEIM module.=0D =0D -Copyright (c) 2016 - 2018, Intel Corporation. All rights reserved.
=0D +Copyright (c) 2016 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -133,6 +133,7 @@ InitializeCpuExceptionHandlers ( =0D ExceptionHandlerData =3D AllocatePool (sizeof (EXCEPTION_HANDLER_DATA));= =0D ASSERT (ExceptionHandlerData !=3D NULL);=0D + ExceptionHandlerData->IdtEntryCount =3D CPU_EXCEPTION_NUM;=0D ExceptionHandlerData->ReservedVectors =3D ReservedVectors;=0D ExceptionHandlerData->ExternalInterruptHandler =3D NULL;=0D InitializeSpinLock (&ExceptionHandlerData->DisplayMessageSpinLock);=0D @@ -148,64 +149,6 @@ InitializeCpuExceptionHandlers ( return EFI_SUCCESS;=0D }=0D =0D -/**=0D - Initializes all CPU interrupt/exceptions entries and provides the defaul= t interrupt/exception handlers.=0D -=0D - Caller should try to get an array of interrupt and/or exception vectors = that are in use and need to=0D - persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.=0D - If caller cannot get reserved vector list or it does not exists, set Vec= torInfo to NULL.=0D - If VectorInfo is not NULL, the exception vectors will be initialized per= vector attribute accordingly.=0D -=0D - @param[in] VectorInfo Pointer to reserved vector list.=0D -=0D - @retval EFI_SUCCESS All CPU interrupt/exception entries have b= een successfully initialized=0D - with default interrupt/exception handlers.= =0D - @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if= VectorInfo is not NULL.=0D - @retval EFI_UNSUPPORTED This function is not supported.=0D -=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -InitializeCpuInterruptHandlers (=0D - IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL=0D - )=0D -{=0D - return EFI_UNSUPPORTED;=0D -}=0D -=0D -/**=0D - Registers a function to be called from the processor interrupt handler.= =0D -=0D - This function registers and enables the handler specified by InterruptHa= ndler for a processor=0D - interrupt or exception type specified by InterruptType. If InterruptHand= ler is NULL, then the=0D - handler for the processor interrupt or exception type specified by Inter= ruptType is uninstalled.=0D - The installed handler is called once for each processor interrupt or exc= eption.=0D - NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() or=0D - InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED retu= rned.=0D -=0D - @param[in] InterruptType Defines which interrupt or exception to ho= ok.=0D - @param[in] InterruptHandler A pointer to a function of type EFI_CPU_IN= TERRUPT_HANDLER that is called=0D - when a processor interrupt occurs. If this= parameter is NULL, then the handler=0D - will be uninstalled.=0D -=0D - @retval EFI_SUCCESS The handler for the processor interrupt wa= s successfully installed or uninstalled.=0D - @retval EFI_ALREADY_STARTED InterruptHandler is not NULL, and a handle= r for InterruptType was=0D - previously installed.=0D - @retval EFI_INVALID_PARAMETER InterruptHandler is NULL, and a handler fo= r InterruptType was not=0D - previously installed.=0D - @retval EFI_UNSUPPORTED The interrupt specified by InterruptType i= s not supported,=0D - or this function is not supported.=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -RegisterCpuInterruptHandler (=0D - IN EFI_EXCEPTION_TYPE InterruptType,=0D - IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler=0D - )=0D -{=0D - return EFI_UNSUPPORTED;=0D -}=0D -=0D /**=0D Initializes all CPU exceptions entries with optional extra initializatio= ns.=0D =0D diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiDxeSmmCpuExceptio= n.c b/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiDxeSmmCpuException.c index f47a80dcab..a7d0897ef1 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiDxeSmmCpuException.c +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/PeiDxeSmmCpuException.c @@ -1,7 +1,7 @@ /** @file=0D CPU Exception Library provides PEI/DXE/SMM CPU common exception handler.= =0D =0D -Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.
=0D +Copyright (c) 2012 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -261,31 +261,26 @@ InitializeCpuExceptionHandlersWorker ( RESERVED_VECTORS_DATA *ReservedVectors;=0D =0D ReservedVectors =3D ExceptionHandlerData->ReservedVectors;=0D - SetMem ((VOID *)ReservedVectors, sizeof (RESERVED_VECTORS_DATA) * CPU_EX= CEPTION_NUM, 0xff);=0D + SetMem ((VOID *)ReservedVectors, sizeof (RESERVED_VECTORS_DATA) * Except= ionHandlerData->IdtEntryCount, 0xff);=0D if (VectorInfo !=3D NULL) {=0D - Status =3D ReadAndVerifyVectorInfo (VectorInfo, ReservedVectors, CPU_E= XCEPTION_NUM);=0D + Status =3D ReadAndVerifyVectorInfo (VectorInfo, ReservedVectors, Excep= tionHandlerData->IdtEntryCount);=0D if (EFI_ERROR (Status)) {=0D return EFI_INVALID_PARAMETER;=0D }=0D }=0D =0D //=0D - // Read IDT descriptor and calculate IDT size=0D + // Setup the exception handlers according to IDT size, but no more than= =0D + // ExceptionHandlerData->IdtEntryCount (32 in PEI and SMM, 256 in DXE)= handlers.=0D //=0D AsmReadIdtr (&IdtDescriptor);=0D - IdtEntryCount =3D (IdtDescriptor.Limit + 1) / sizeof (IA32_IDT_GATE_DESC= RIPTOR);=0D - if (IdtEntryCount > CPU_EXCEPTION_NUM) {=0D - //=0D - // CPU exception library only setup CPU_EXCEPTION_NUM exception handle= r at most=0D - //=0D - IdtEntryCount =3D CPU_EXCEPTION_NUM;=0D - }=0D + IdtEntryCount =3D (IdtDescriptor.Limit + 1) / size= of (IA32_IDT_GATE_DESCRIPTOR);=0D + ExceptionHandlerData->IdtEntryCount =3D MIN (IdtEntryCount, ExceptionHan= dlerData->IdtEntryCount);=0D =0D IdtTable =3D (IA32_IDT_GATE_DESCRIPTOR *)IdtDescriptor.Base;=0D AsmGetTemplateAddressMap (&TemplateMap);=0D ASSERT (TemplateMap.ExceptionStubHeaderSize <=3D HOOKAFTER_STUB_SIZE);=0D =0D - ExceptionHandlerData->IdtEntryCount =3D IdtEntryCount;=0D UpdateIdtTable (IdtTable, &TemplateMap, ExceptionHandlerData);=0D =0D return EFI_SUCCESS;=0D diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuException.c= b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuException.c index 6e5216380d..e894ead612 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuException.c +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuException.c @@ -1,7 +1,7 @@ /** @file=0D CPU exception handler library implemenation for SEC/PEIM modules.=0D =0D -Copyright (c) 2012 - 2018, Intel Corporation. All rights reserved.
=0D +Copyright (c) 2012 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -166,31 +166,6 @@ InitializeCpuExceptionHandlers ( return EFI_SUCCESS;=0D }=0D =0D -/**=0D - Initializes all CPU interrupt/exceptions entries and provides the defaul= t interrupt/exception handlers.=0D -=0D - Caller should try to get an array of interrupt and/or exception vectors = that are in use and need to=0D - persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.=0D - If caller cannot get reserved vector list or it does not exists, set Vec= torInfo to NULL.=0D - If VectorInfo is not NULL, the exception vectors will be initialized per= vector attribute accordingly.=0D -=0D - @param[in] VectorInfo Pointer to reserved vector list.=0D -=0D - @retval EFI_SUCCESS All CPU interrupt/exception entries have b= een successfully initialized=0D - with default interrupt/exception handlers.= =0D - @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if= VectorInfo is not NULL.=0D - @retval EFI_UNSUPPORTED This function is not supported.=0D -=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -InitializeCpuInterruptHandlers (=0D - IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL=0D - )=0D -{=0D - return EFI_UNSUPPORTED;=0D -}=0D -=0D /**=0D Registers a function to be called from the processor interrupt handler.= =0D =0D @@ -198,8 +173,8 @@ InitializeCpuInterruptHandlers ( interrupt or exception type specified by InterruptType. If InterruptHand= ler is NULL, then the=0D handler for the processor interrupt or exception type specified by Inter= ruptType is uninstalled.=0D The installed handler is called once for each processor interrupt or exc= eption.=0D - NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() or=0D - InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED retu= rned.=0D + NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() is invoked,=0D + otherwise EFI_UNSUPPORTED returned.=0D =0D @param[in] InterruptType Defines which interrupt or exception to ho= ok.=0D @param[in] InterruptHandler A pointer to a function of type EFI_CPU_IN= TERRUPT_HANDLER that is called=0D diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmException.c b/Uef= iCpuPkg/Library/CpuExceptionHandlerLib/SmmException.c index 9f0af4120a..ec643556c7 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmException.c +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmException.c @@ -1,7 +1,7 @@ /** @file=0D CPU exception handler library implementation for SMM modules.=0D =0D - Copyright (c) 2013 - 2017, Intel Corporation. All rights reserved.
=0D + Copyright (c) 2013 - 2022, Intel Corporation. All rights reserved.
=0D SPDX-License-Identifier: BSD-2-Clause-Patent=0D =0D **/=0D @@ -14,8 +14,8 @@ CONST UINTN mDoFarReturnFlag =3D 1; RESERVED_VECTORS_DATA mReservedVectorsData[CPU_EXCEPTION_NUM];=0D EFI_CPU_INTERRUPT_HANDLER mExternalInterruptHandlerTable[CPU_EXCEPTION_NU= M];=0D EXCEPTION_HANDLER_DATA mExceptionHandlerData =3D {=0D - 0, // To be fixed=0D - 0, // To be fixed=0D + CPU_EXCEPTION_NUM,=0D + 0, // To be fixed=0D mReservedVectorsData,=0D mExternalInterruptHandlerTable=0D };=0D @@ -62,31 +62,6 @@ InitializeCpuExceptionHandlers ( return InitializeCpuExceptionHandlersWorker (VectorInfo, &mExceptionHand= lerData);=0D }=0D =0D -/**=0D - Initializes all CPU interrupt/exceptions entries and provides the defaul= t interrupt/exception handlers.=0D -=0D - Caller should try to get an array of interrupt and/or exception vectors = that are in use and need to=0D - persist by EFI_VECTOR_HANDOFF_INFO defined in PI 1.3 specification.=0D - If caller cannot get reserved vector list or it does not exists, set Vec= torInfo to NULL.=0D - If VectorInfo is not NULL, the exception vectors will be initialized per= vector attribute accordingly.=0D -=0D - @param[in] VectorInfo Pointer to reserved vector list.=0D -=0D - @retval EFI_SUCCESS All CPU interrupt/exception entries have b= een successfully initialized=0D - with default interrupt/exception handlers.= =0D - @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if= VectorInfo is not NULL.=0D - @retval EFI_UNSUPPORTED This function is not supported.=0D -=0D -**/=0D -EFI_STATUS=0D -EFIAPI=0D -InitializeCpuInterruptHandlers (=0D - IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL=0D - )=0D -{=0D - return EFI_UNSUPPORTED;=0D -}=0D -=0D /**=0D Registers a function to be called from the processor interrupt handler.= =0D =0D @@ -94,8 +69,8 @@ InitializeCpuInterruptHandlers ( interrupt or exception type specified by InterruptType. If InterruptHand= ler is NULL, then the=0D handler for the processor interrupt or exception type specified by Inter= ruptType is uninstalled.=0D The installed handler is called once for each processor interrupt or exc= eption.=0D - NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() or=0D - InitializeCpuInterruptHandlers() invoked, otherwise EFI_UNSUPPORTED retu= rned.=0D + NOTE: This function should be invoked after InitializeCpuExceptionHandle= rs() is invoked,=0D + otherwise EFI_UNSUPPORTED returned.=0D =0D @param[in] InterruptType Defines which interrupt or exception to ho= ok.=0D @param[in] InterruptHandler A pointer to a function of type EFI_CPU_IN= TERRUPT_HANDLER that is called=0D --=20 2.35.1.windows.2