* [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable @ 2022-02-24 7:58 Sean Rhodes 2022-02-24 7:58 ` [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Sean Rhodes 2022-03-02 2:10 ` [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable Wu, Hao A 0 siblings, 2 replies; 6+ messages in thread From: Sean Rhodes @ 2022-02-24 7:58 UTC (permalink / raw) To: devel Cc: guo.dong, Sean Rhodes, Hao A Wu, Ray Ni, Jian J Wang, Liming Gao, Matt DeVillier The default 1s timeout can delay boot splash on some hardware with no benefit. Cc: Hao A Wu <hao.a.wu@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> Signed-off-by: Sean Rhodes <sean@starlabs.systems> --- MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h | 3 ++- MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf | 4 ++++ MdeModulePkg/MdeModulePkg.dec | 4 ++++ MdeModulePkg/MdeModulePkg.uni | 4 ++++ 4 files changed, 14 insertions(+), 1 deletion(-) diff --git a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h index 85e09cf114..b76c7cffa2 100644 --- a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h +++ b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h @@ -24,6 +24,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent #include <Library/MemoryAllocationLib.h> #include <Library/UefiLib.h> #include <Library/DevicePathLib.h> +#include <Library/PcdLib.h> #include <Protocol/DevicePath.h> #include <Protocol/PciIo.h> @@ -49,7 +50,7 @@ extern EDKII_SD_MMC_OVERRIDE *mOverride; // // Generic time out value, 1 microsecond as unit. // -#define SD_MMC_HC_GENERIC_TIMEOUT 1 * 1000 * 1000 +#define SD_MMC_HC_GENERIC_TIMEOUT (PcdGet32 (PcdSdMmcGenericTimeoutValue)) // // SD/MMC async transfer timer interval, set by experience. diff --git a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf index 453ecde7fd..e502443ddd 100644 --- a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf +++ b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf @@ -56,6 +56,7 @@ BaseLib UefiDriverEntryPoint DebugLib + PcdLib [Protocols] gEdkiiSdMmcOverrideProtocolGuid ## SOMETIMES_CONSUMES @@ -68,3 +69,6 @@ [UserExtensions.TianoCore."ExtraFiles"] SdMmcPciHcDxeExtra.uni + +[Pcd] + gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue ## CONSUMES diff --git a/MdeModulePkg/MdeModulePkg.dec b/MdeModulePkg/MdeModulePkg.dec index 463e889e9a..40601c9583 100644 --- a/MdeModulePkg/MdeModulePkg.dec +++ b/MdeModulePkg/MdeModulePkg.dec @@ -1559,6 +1559,10 @@ # @Prompt Maximum permitted FwVol section nesting depth (exclusive). gEfiMdeModulePkgTokenSpaceGuid.PcdFwVolDxeMaxEncapsulationDepth|0x10|UINT32|0x00000030 + ## Indicates the default timeout value for SD/MMC Host Controller operations in microseconds. + # @Prompt SD/MMC Host Controller Operations Timeout (us). + gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue|1000000|UINT32|0x00000031 + [PcdsPatchableInModule, PcdsDynamic, PcdsDynamicEx] ## This PCD defines the Console output row. The default value is 25 according to UEFI spec. # This PCD could be set to 0 then console output would be at max column and max row. diff --git a/MdeModulePkg/MdeModulePkg.uni b/MdeModulePkg/MdeModulePkg.uni index 27889a7280..b070f15ff2 100644 --- a/MdeModulePkg/MdeModulePkg.uni +++ b/MdeModulePkg/MdeModulePkg.uni @@ -1173,6 +1173,10 @@ " TRUE - Capsule In Ram is supported.<BR>" " FALSE - Capsule In Ram is not supported." +#string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSdMmcGenericTimeoutValue_PROMPT #language en-US "SD/MMC Host Controller Operations Timeout (us)." + +#string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSdMmcGenericTimeoutValue_HELP #language en-US "Indicates the default timeout value for SD/MMC Host Controller operations in microseconds." + #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCodRelocationDevPath_PROMPT #language en-US "Capsule On Disk relocation device path." #string STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCodRelocationDevPath_HELP #language en-US "Full device path of platform specific device to store Capsule On Disk temp relocation file.<BR>" -- 2.32.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout 2022-02-24 7:58 [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable Sean Rhodes @ 2022-02-24 7:58 ` Sean Rhodes 2022-03-17 15:30 ` Guo Dong 2022-03-02 2:10 ` [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable Wu, Hao A 1 sibling, 1 reply; 6+ messages in thread From: Sean Rhodes @ 2022-02-24 7:58 UTC (permalink / raw) To: devel; +Cc: guo.dong, Sean Rhodes, Ray Ni, Maurice Ma, Benjamin You Hook SD_MMC_TIMEOUT build option to SdMmcGenericTimeoutValue PCD. Cc: Guo Dong <guo.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Maurice Ma <maurice.ma@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Signed-off-by: Sean Rhodes <sean@starlabs.systems> --- UefiPayloadPkg/UefiPayloadPkg.dsc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc index 1ce96a51c1..23c2787a94 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.dsc +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc @@ -33,6 +33,7 @@ DEFINE UNIVERSAL_PAYLOAD = FALSE DEFINE SECURITY_STUB_ENABLE = TRUE DEFINE SMM_SUPPORT = FALSE + DEFINE SD_MMC_TIMEOUT = 1000000 # # SBL: UEFI payload for Slim Bootloader # COREBOOT: UEFI payload for coreboot @@ -398,6 +399,7 @@ !if $(PERFORMANCE_MEASUREMENT_ENABLE) gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask | 0x1 !endif + gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue|$(SD_MMC_TIMEOUT) [PcdsPatchableInModule.X64] gPcAtChipsetPkgTokenSpaceGuid.PcdRtcIndexRegister|$(RTC_INDEX_REGISTER) -- 2.32.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout 2022-02-24 7:58 ` [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Sean Rhodes @ 2022-03-17 15:30 ` Guo Dong 0 siblings, 0 replies; 6+ messages in thread From: Guo Dong @ 2022-03-17 15:30 UTC (permalink / raw) To: Rhodes, Sean, devel@edk2.groups.io Cc: Rhodes, Sean, Ni, Ray, Ma, Maurice, You, Benjamin Reviewed-by: Guo Dong <guo.dong@intel.com> -----Original Message----- From: Sean Rhodes <sean@starlabs.systems> Sent: Thursday, February 24, 2022 12:59 AM To: devel@edk2.groups.io Cc: Dong, Guo <guo.dong@intel.com>; Rhodes, Sean <sean@starlabs.systems>; Ni, Ray <ray.ni@intel.com>; Ma, Maurice <maurice.ma@intel.com>; You, Benjamin <benjamin.you@intel.com> Subject: [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Hook SD_MMC_TIMEOUT build option to SdMmcGenericTimeoutValue PCD. Cc: Guo Dong <guo.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Maurice Ma <maurice.ma@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Signed-off-by: Sean Rhodes <sean@starlabs.systems> --- UefiPayloadPkg/UefiPayloadPkg.dsc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc index 1ce96a51c1..23c2787a94 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.dsc +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc @@ -33,6 +33,7 @@ DEFINE UNIVERSAL_PAYLOAD = FALSE DEFINE SECURITY_STUB_ENABLE = TRUE DEFINE SMM_SUPPORT = FALSE + DEFINE SD_MMC_TIMEOUT = 1000000 # # SBL: UEFI payload for Slim Bootloader # COREBOOT: UEFI payload for coreboot @@ -398,6 +399,7 @@ !if $(PERFORMANCE_MEASUREMENT_ENABLE) gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask | 0x1 !endif + gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue|$(SD_MMC_TIMEOUT) [PcdsPatchableInModule.X64] gPcAtChipsetPkgTokenSpaceGuid.PcdRtcIndexRegister|$(RTC_INDEX_REGISTER) -- 2.32.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable 2022-02-24 7:58 [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable Sean Rhodes 2022-02-24 7:58 ` [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Sean Rhodes @ 2022-03-02 2:10 ` Wu, Hao A 1 sibling, 0 replies; 6+ messages in thread From: Wu, Hao A @ 2022-03-02 2:10 UTC (permalink / raw) To: Rhodes, Sean, devel@edk2.groups.io Cc: Dong, Guo, Rhodes, Sean, Ni, Ray, Wang, Jian J, Gao, Liming, Matt DeVillier Thanks, Reviewed-by: Hao A Wu <hao.a.wu@intel.com> Best Regards, Hao Wu > -----Original Message----- > From: Sean Rhodes <sean@starlabs.systems> > Sent: Thursday, February 24, 2022 3:59 PM > To: devel@edk2.groups.io > Cc: Dong, Guo <guo.dong@intel.com>; Rhodes, Sean > <sean@starlabs.systems>; Wu, Hao A <hao.a.wu@intel.com>; Ni, Ray > <ray.ni@intel.com>; Wang, Jian J <jian.j.wang@intel.com>; Gao, Liming > <gaoliming@byosoft.com.cn>; Matt DeVillier <matt.devillier@gmail.com> > Subject: [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for > SD card configurable > > The default 1s timeout can delay boot splash on some hardware with no > benefit. > > Cc: Hao A Wu <hao.a.wu@intel.com> > Cc: Ray Ni <ray.ni@intel.com> > Cc: Jian J Wang <jian.j.wang@intel.com> > Cc: Liming Gao <gaoliming@byosoft.com.cn> > Signed-off-by: Matt DeVillier <matt.devillier@gmail.com> > Signed-off-by: Sean Rhodes <sean@starlabs.systems> > --- > MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h | 3 ++- > MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf | 4 ++++ > MdeModulePkg/MdeModulePkg.dec | 4 ++++ > MdeModulePkg/MdeModulePkg.uni | 4 ++++ > 4 files changed, 14 insertions(+), 1 deletion(-) > > diff --git a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h > b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h > index 85e09cf114..b76c7cffa2 100644 > --- a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h > +++ b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.h > @@ -24,6 +24,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent > #include <Library/MemoryAllocationLib.h> > > #include <Library/UefiLib.h> > > #include <Library/DevicePathLib.h> > > +#include <Library/PcdLib.h> > > > > #include <Protocol/DevicePath.h> > > #include <Protocol/PciIo.h> > > @@ -49,7 +50,7 @@ extern EDKII_SD_MMC_OVERRIDE *mOverride; > // > > // Generic time out value, 1 microsecond as unit. > > // > > -#define SD_MMC_HC_GENERIC_TIMEOUT 1 * 1000 * 1000 > > +#define SD_MMC_HC_GENERIC_TIMEOUT (PcdGet32 > (PcdSdMmcGenericTimeoutValue)) > > > > // > > // SD/MMC async transfer timer interval, set by experience. > > diff --git a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf > b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf > index 453ecde7fd..e502443ddd 100644 > --- a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf > +++ b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.inf > @@ -56,6 +56,7 @@ > BaseLib > > UefiDriverEntryPoint > > DebugLib > > + PcdLib > > > > [Protocols] > > gEdkiiSdMmcOverrideProtocolGuid ## SOMETIMES_CONSUMES > > @@ -68,3 +69,6 @@ > > > [UserExtensions.TianoCore."ExtraFiles"] > > SdMmcPciHcDxeExtra.uni > > + > > +[Pcd] > > + gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue ## > CONSUMES > > diff --git a/MdeModulePkg/MdeModulePkg.dec > b/MdeModulePkg/MdeModulePkg.dec > index 463e889e9a..40601c9583 100644 > --- a/MdeModulePkg/MdeModulePkg.dec > +++ b/MdeModulePkg/MdeModulePkg.dec > @@ -1559,6 +1559,10 @@ > # @Prompt Maximum permitted FwVol section nesting depth (exclusive). > > > gEfiMdeModulePkgTokenSpaceGuid.PcdFwVolDxeMaxEncapsulationDepth| > 0x10|UINT32|0x00000030 > > > > + ## Indicates the default timeout value for SD/MMC Host Controller > operations in microseconds. > > + # @Prompt SD/MMC Host Controller Operations Timeout (us). > > + > gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue|1000 > 000|UINT32|0x00000031 > > + > > [PcdsPatchableInModule, PcdsDynamic, PcdsDynamicEx] > > ## This PCD defines the Console output row. The default value is 25 > according to UEFI spec. > > # This PCD could be set to 0 then console output would be at max column > and max row. > > diff --git a/MdeModulePkg/MdeModulePkg.uni > b/MdeModulePkg/MdeModulePkg.uni > index 27889a7280..b070f15ff2 100644 > --- a/MdeModulePkg/MdeModulePkg.uni > +++ b/MdeModulePkg/MdeModulePkg.uni > @@ -1173,6 +1173,10 @@ > " TRUE - Capsule In Ram is > supported.<BR>" > > " FALSE - Capsule In Ram is not > supported." > > > > +#string > STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSdMmcGenericTimeoutValue > _PROMPT #language en-US "SD/MMC Host Controller Operations Timeout > (us)." > > + > > +#string > STR_gEfiMdeModulePkgTokenSpaceGuid_PcdSdMmcGenericTimeoutValue > _HELP #language en-US "Indicates the default timeout value for SD/MMC > Host Controller operations in microseconds." > > + > > #string > STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCodRelocationDevPath_PRO > MPT #language en-US "Capsule On Disk relocation device path." > > > > #string > STR_gEfiMdeModulePkgTokenSpaceGuid_PcdCodRelocationDevPath_HELP > #language en-US "Full device path of platform specific device to store > Capsule On Disk temp relocation file.<BR>" > > -- > 2.32.0 ^ permalink raw reply [flat|nested] 6+ messages in thread
[parent not found: <bced944f45650f3a4ddd4d6e99531f2b51450190.1645195925.git.sean@starlabs.systems>]
* [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout [not found] <bced944f45650f3a4ddd4d6e99531f2b51450190.1645195925.git.sean@starlabs.systems> @ 2022-02-18 14:52 ` Sean Rhodes 2022-02-18 14:56 ` Ma, Maurice 0 siblings, 1 reply; 6+ messages in thread From: Sean Rhodes @ 2022-02-18 14:52 UTC (permalink / raw) To: devel; +Cc: guo.dong, Sean Rhodes, Ray Ni, Maurice Ma, Benjamin You Hook SD_MMC_TIMEOUT build option to SdMmcGenericTimeoutValue PCD. Cc: Guo Dong <guo.dong@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Maurice Ma <maurice.ma@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Signed-off-by: Sean Rhodes <sean@starlabs.systems> --- UefiPayloadPkg/UefiPayloadPkg.dsc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc b/UefiPayloadPkg/UefiPayloadPkg.dsc index 1ce96a51c1..23c2787a94 100644 --- a/UefiPayloadPkg/UefiPayloadPkg.dsc +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc @@ -33,6 +33,7 @@ DEFINE UNIVERSAL_PAYLOAD = FALSE DEFINE SECURITY_STUB_ENABLE = TRUE DEFINE SMM_SUPPORT = FALSE + DEFINE SD_MMC_TIMEOUT = 1000000 # # SBL: UEFI payload for Slim Bootloader # COREBOOT: UEFI payload for coreboot @@ -398,6 +399,7 @@ !if $(PERFORMANCE_MEASUREMENT_ENABLE) gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask | 0x1 !endif + gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue|$(SD_MMC_TIMEOUT) [PcdsPatchableInModule.X64] gPcAtChipsetPkgTokenSpaceGuid.PcdRtcIndexRegister|$(RTC_INDEX_REGISTER) -- 2.32.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout 2022-02-18 14:52 ` [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Sean Rhodes @ 2022-02-18 14:56 ` Ma, Maurice 0 siblings, 0 replies; 6+ messages in thread From: Ma, Maurice @ 2022-02-18 14:56 UTC (permalink / raw) To: Rhodes, Sean, devel@edk2.groups.io Cc: Dong, Guo, Rhodes, Sean, Ni, Ray, You, Benjamin Reviewed-by: Maurice Ma <maurice.ma@intel.com> > -----Original Message----- > From: Sean Rhodes <sean@starlabs.systems> > Sent: Friday, February 18, 2022 6:52 > To: devel@edk2.groups.io > Cc: Dong, Guo <guo.dong@intel.com>; Rhodes, Sean <sean@starlabs.systems>; > Ni, Ray <ray.ni@intel.com>; Ma, Maurice <maurice.ma@intel.com>; You, > Benjamin <benjamin.you@intel.com> > Subject: [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout > > Hook SD_MMC_TIMEOUT build option to SdMmcGenericTimeoutValue PCD. > > Cc: Guo Dong <guo.dong@intel.com> > Cc: Ray Ni <ray.ni@intel.com> > Cc: Maurice Ma <maurice.ma@intel.com> > Cc: Benjamin You <benjamin.you@intel.com> > Signed-off-by: Sean Rhodes <sean@starlabs.systems> > --- > UefiPayloadPkg/UefiPayloadPkg.dsc | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/UefiPayloadPkg/UefiPayloadPkg.dsc > b/UefiPayloadPkg/UefiPayloadPkg.dsc > index 1ce96a51c1..23c2787a94 100644 > --- a/UefiPayloadPkg/UefiPayloadPkg.dsc > +++ b/UefiPayloadPkg/UefiPayloadPkg.dsc > @@ -33,6 +33,7 @@ > DEFINE UNIVERSAL_PAYLOAD = FALSE > > DEFINE SECURITY_STUB_ENABLE = TRUE > > DEFINE SMM_SUPPORT = FALSE > > + DEFINE SD_MMC_TIMEOUT = 1000000 > > # > > # SBL: UEFI payload for Slim Bootloader > > # COREBOOT: UEFI payload for coreboot > > @@ -398,6 +399,7 @@ > !if $(PERFORMANCE_MEASUREMENT_ENABLE) > > gEfiMdePkgTokenSpaceGuid.PcdPerformanceLibraryPropertyMask | 0x1 > > !endif > > + > gEfiMdeModulePkgTokenSpaceGuid.PcdSdMmcGenericTimeoutValue|$(SD_MM > C_TIMEOUT) > > > > [PcdsPatchableInModule.X64] > > > gPcAtChipsetPkgTokenSpaceGuid.PcdRtcIndexRegister|$(RTC_INDEX_REGISTER) > > -- > 2.32.0 ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-03-17 15:30 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-02-24 7:58 [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable Sean Rhodes 2022-02-24 7:58 ` [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Sean Rhodes 2022-03-17 15:30 ` Guo Dong 2022-03-02 2:10 ` [PATCH 1/2] MdeModulePkg/SdMmcPciHcDxe: Make timeout for SD card configurable Wu, Hao A [not found] <bced944f45650f3a4ddd4d6e99531f2b51450190.1645195925.git.sean@starlabs.systems> 2022-02-18 14:52 ` [PATCH 2/2] UefiPayloadPkg: Hookup SD/MMC timeout Sean Rhodes 2022-02-18 14:56 ` Ma, Maurice
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox