Marc Jones has uploaded this change for review. ( https://review.coreboot.org/20911
Change subject: google/kahlee: Set eMMC slot ......................................................................
google/kahlee: Set eMMC slot
Set AGESA SD/eMMc variable to non-removable eMMc.
BUG=b:63891719 BRANCH=none TEST=Boot eMMC on Kahlee.
Change-Id: I76ed9cec36a9688ebe75db2077f1ece4ab750c16 Signed-off-by: Marc Jones marcj303@gmail.com --- M src/mainboard/google/kahlee/BiosCallOuts.c 1 file changed, 5 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/11/20911/1
diff --git a/src/mainboard/google/kahlee/BiosCallOuts.c b/src/mainboard/google/kahlee/BiosCallOuts.c index c65c930..7bef2f3 100644 --- a/src/mainboard/google/kahlee/BiosCallOuts.c +++ b/src/mainboard/google/kahlee/BiosCallOuts.c @@ -54,7 +54,11 @@ FchParams_env->Sata.SataIdeMode = TRUE; break; } - printk(BIOS_DEBUG, "Done\n"); + + /* SDHCI/MMC configuration */ + FchParams_env->Sd.SdSlotType = 1; /* eMMC */ + + printk(BIOS_DEBUG, "Done\n"); }
return AGESA_SUCCESS;