Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/19036 )
Change subject: soc/intel/apollolake: Fix debug build booting issue ......................................................................
soc/intel/apollolake: Fix debug build booting issue
This patch fix apollolake devices unable to boot with coreboot debug image issue.
Change-Id: I28943100ba19dec1e540fdbba1c1e110c6af1488 Signed-off-by: Subrata Banik subrata.banik@intel.com Reviewed-on: https://review.coreboot.org/19036 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin adurbin@chromium.org Reviewed-by: Martin Roth martinroth@google.com Reviewed-by: Furquan Shaikh furquan@google.com --- M src/soc/intel/apollolake/pmutil.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Aaron Durbin: Looks good to me, approved build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Furquan Shaikh: Looks good to me, approved
diff --git a/src/soc/intel/apollolake/pmutil.c b/src/soc/intel/apollolake/pmutil.c index 7d3cb07..9e57b28 100644 --- a/src/soc/intel/apollolake/pmutil.c +++ b/src/soc/intel/apollolake/pmutil.c @@ -505,7 +505,7 @@ ROMSTAGE_CONST struct soc_intel_apollolake_config *config;
/* Look up the device in devicetree */ - ROMSTAGE_CONST struct device *dev = SA_DEV_ROOT; + ROMSTAGE_CONST struct device *dev = dev_find_slot(0, SA_DEVFN_ROOT); if (!dev || !dev->chip_info) { printk(BIOS_ERR, "BUG! Could not find SOC devicetree config\n"); return;