From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.31, mailfrom: michael.d.kinney@intel.com) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by groups.io with SMTP; Fri, 19 Jul 2019 09:08:59 -0700 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jul 2019 09:08:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,283,1559545200"; d="scan'208";a="343729350" Received: from orsmsx107.amr.corp.intel.com ([10.22.240.5]) by orsmga005.jf.intel.com with ESMTP; 19 Jul 2019 09:08:59 -0700 Received: from orsmsx116.amr.corp.intel.com (10.22.240.14) by ORSMSX107.amr.corp.intel.com (10.22.240.5) with Microsoft SMTP Server (TLS) id 14.3.439.0; Fri, 19 Jul 2019 09:08:58 -0700 Received: from orsmsx113.amr.corp.intel.com ([169.254.9.128]) by ORSMSX116.amr.corp.intel.com ([169.254.7.102]) with mapi id 14.03.0439.000; Fri, 19 Jul 2019 09:08:58 -0700 From: "Michael D Kinney" To: "devel@edk2.groups.io" , "Gao, Zhichao" , "Kinney, Michael D" CC: "Wang, Jian J" , "Wu, Hao A" , "Ni, Ray" , "Zeng, Star" , "Gao, Liming" , Sean Brogan , Michael Turner , Bret Barkelew , Laszlo Ersek Subject: Re: [edk2-devel] [PATCH V2 4/4] MdeModulePkg/CapsuleRuntimeDxe: Implement RuntimeServicesSupported Thread-Topic: [edk2-devel] [PATCH V2 4/4] MdeModulePkg/CapsuleRuntimeDxe: Implement RuntimeServicesSupported Thread-Index: AQHVPgnG1M+xf+YNkE6Zy0aCI8di36bSGqgg Date: Fri, 19 Jul 2019 16:08:58 +0000 Message-ID: References: <20190719080921.17516-1-zhichao.gao@intel.com> <20190719080921.17516-5-zhichao.gao@intel.com> In-Reply-To: <20190719080921.17516-5-zhichao.gao@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.600.7 dlp-reaction: no-action x-originating-ip: [10.22.254.140] MIME-Version: 1.0 Return-Path: michael.d.kinney@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Zhichao, The GetVariable and ExitBootServices events should be removed from this patch. I recommend RT drivers that produce RT services consume the new PCD to determine if the services return EFI_UNSUPPORTED or not after ExitBootServices(). This keeps RT Driver as simple as possible and removes the need for the UEFI Variable to be in a known state earlier in the boot and removes the need for RT Drivers to setup extra notification events. The new UEFI Variable is intended to be used by OS Loaders and OS Kernels that call ExitBootServices() and need to=20 know if specific RT services are available or not after=20 ExitBootServices(). Thanks, Mike > -----Original Message----- > From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] > On Behalf Of Gao, Zhichao > Sent: Friday, July 19, 2019 1:09 AM > To: devel@edk2.groups.io > Cc: Wang, Jian J ; Wu, Hao A > ; Ni, Ray ; Zeng, > Star ; Gao, Liming > ; Sean Brogan > ; Michael Turner > ; Bret Barkelew > ; Laszlo Ersek > > Subject: [edk2-devel] [PATCH V2 4/4] > MdeModulePkg/CapsuleRuntimeDxe: Implement > RuntimeServicesSupported >=20 > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3D1907 >=20 > Control the capsule services supported at runtime base > on the variable L"RuntimeServicesSupported". > It would update a global variable > mRuntimeServicesSupported at ExitBootServices event. >=20 > Cc: Jian J Wang > Cc: Hao A Wu > Cc: Ray Ni > Cc: Star Zeng > Cc: Liming gao > Cc: Sean Brogan > Cc: Michael Turner > Cc: Bret Barkelew > Cc: Laszlo Ersek > Signed-off-by: Zhichao Gao > --- > .../CapsuleRuntimeDxe/CapsuleRuntimeDxe.inf | 2 + > .../CapsuleRuntimeDxe/CapsuleService.c | 68 > +++++++++++++++++++ > 2 files changed, 70 insertions(+) >=20 > diff --git > a/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntim > eDxe.inf > b/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntim > eDxe.inf > index 9da450722b..15d498863a 100644 > --- > a/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntim > eDxe.inf > +++ > b/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleRuntim > eDxe.inf > @@ -72,6 +72,8 @@ > ## SOMETIMES_PRODUCES ## > Variable:L"CapsuleLongModeBuffer" # The long mode buffer > used by IA32 Capsule PEIM to call X64 CapsuleCoalesce > code to handle >4GB capsule blocks > gEfiCapsuleVendorGuid > gEfiFmpCapsuleGuid ## > SOMETIMES_CONSUMES ## GUID # FMP capsule GUID > + gEfiGlobalVariableGuid ## > CONSUMES ## Variable > L"RuntimeServicesSupported" > + gEfiEventExitBootServicesGuid ## > CONSUMES >=20 > [Protocols] > gEfiCapsuleArchProtocolGuid ## > PRODUCES > diff --git > a/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleServic > e.c > b/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleServic > e.c > index 77b8f00062..e4e700764b 100644 > --- > a/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleServic > e.c > +++ > b/MdeModulePkg/Universal/CapsuleRuntimeDxe/CapsuleServic > e.c > @@ -24,6 +24,13 @@ UINTN mTimes =3D 0; > UINT32 mMaxSizePopulateCapsule =3D 0; > UINT32 mMaxSizeNonPopulateCapsule =3D 0; >=20 > +// > +// Runtime Services Supported Flag > +// Initialize it to 0x3FFF to indicate it is all > supported before > +runtime // > +static UINT16 mRuntimeServicesSupported =3D 0x3FFF; > + > + > /** > Passes capsules to the firmware with both virtual and > physical mapping. Depending on the intended > consumption, the firmware may process the capsule > immediately. If the payload should persist @@ -71,6 > +78,10 @@ UpdateCapsule ( > CHAR16 CapsuleVarName[30]; > CHAR16 *TempVarName; >=20 > + if (!(mRuntimeServicesSupported | > EFI_RT_SUPPORTED_UPDATE_CAPSULE)) { > + return EFI_UNSUPPORTED; > + } > + > // > // Check if platform support Capsule In RAM or not. > // Platform could choose to drop > CapsulePei/CapsuleX64 and do not support Capsule In RAM. > @@ -259,6 +270,10 @@ QueryCapsuleCapabilities ( > EFI_CAPSULE_HEADER *CapsuleHeader; > BOOLEAN NeedReset; >=20 > + if (!(mRuntimeServicesSupported | > EFI_RT_SUPPORTED_QUERY_CAPSULE_CAPABILITIES)) { > + return EFI_UNSUPPORTED; > + } > + > // > // Capsule Count can't be less than one. > // > @@ -343,6 +358,48 @@ QueryCapsuleCapabilities ( > return EFI_SUCCESS; > } >=20 > +/** > + ExitBootServices Event to update the > mRuntimeServicesSupported to > + affect the runtime services. > + > + @param[in] Event Event whose notification > function is being invoked > + @param[in] Context Pointer to the notification > function's context > +**/ > +static > +VOID > +EFIAPI > +UpdateRuntimeServicesSupported ( > + IN EFI_EVENT Event, > + IN VOID *Context > + ) > +{ > + EFI_STATUS Status; > + UINT16 RuntimeServicesSupported; > + UINT32 Attributes; > + UINTN DataSize; > + > + Attributes =3D EFI_VARIABLE_BOOTSERVICE_ACCESS | > + EFI_VARIABLE_RUNTIME_ACCESS; DataSize =3D sizeof > (UINT16); Status =3D > + gRT->GetVariable ( > + L"RuntimeServicesSupported", > + &gEfiGlobalVariableGuid, > + &Attributes, > + &DataSize, > + &RuntimeServicesSupported > + ); > + > + if (!EFI_ERROR (Status)) { > + mRuntimeServicesSupported =3D > RuntimeServicesSupported; > + } else if (Status =3D=3D EFI_NOT_FOUND) { > + mRuntimeServicesSupported =3D 0x3FFF; > + } else { > + // > + // Should never arrive here. > + // > + ASSERT_EFI_ERROR (Status); > + } > +} > + >=20 > /** >=20 > @@ -362,6 +419,7 @@ CapsuleServiceInitialize ( > ) > { > EFI_STATUS Status; > + EFI_EVENT Event; >=20 > mMaxSizePopulateCapsule =3D > PcdGet32(PcdMaxSizePopulateCapsule); > mMaxSizeNonPopulateCapsule =3D > PcdGet32(PcdMaxSizeNonPopulateCapsule); > @@ -381,6 +439,16 @@ CapsuleServiceInitialize ( > gRT->UpdateCapsule =3D > UpdateCapsule; > gRT->QueryCapsuleCapabilities =3D > QueryCapsuleCapabilities; >=20 > + Status =3D gBS->CreateEventEx( > + EVT_NOTIFY_SIGNAL, > + TPL_NOTIFY, > + UpdateRuntimeServicesSupported, > + NULL, > + &gEfiEventExitBootServicesGuid, > + &Event > + ); > + ASSERT_EFI_ERROR (Status); > + > // > // Install the Capsule Architectural Protocol on a > new handle > // to signify the capsule runtime services are ready. > -- > 2.21.0.windows.1 >=20 >=20 >=20