Incorrectly the clock divisor was calculated relatively to 255MHz instead of actual 400MHz. Fix this.
Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Marcin Wojtas <[email protected]> --- Platform/Marvell/Drivers/SdMmc/XenonDxe/SdMmcPciHci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Platform/Marvell/Drivers/SdMmc/XenonDxe/SdMmcPciHci.c b/Platform/Marvell/Drivers/SdMmc/XenonDxe/SdMmcPciHci.c index ccbf355..0b9328b 100644 --- a/Platform/Marvell/Drivers/SdMmc/XenonDxe/SdMmcPciHci.c +++ b/Platform/Marvell/Drivers/SdMmc/XenonDxe/SdMmcPciHci.c @@ -16,6 +16,7 @@ **/ #include "SdMmcPciHcDxe.h" +#include "XenonSdhci.h" /** Dump the content of SD/MMC host controller's Capability Register. @@ -703,9 +704,8 @@ SdMmcHcClockSupply ( // // Calculate a divisor for SD clock frequency // - ASSERT (Capability.BaseClkFreq != 0); - BaseClkFreq = Capability.BaseClkFreq; + BaseClkFreq = XENON_MMC_MAX_CLK / 1000 / 1000; if (ClockFreq == 0) { return EFI_INVALID_PARAMETER; } -- 2.7.4 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

