Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39967 )
Change subject: soc/intel/common/pch/lockdown: Lock at end of BS_POST_DEVICE ......................................................................
soc/intel/common/pch/lockdown: Lock at end of BS_POST_DEVICE
There's no need to lock it early. Lock it after device initialization was finished.
Change-Id: I76cca20bc8dc2a7bdc5f16525919f7ef081df798 Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com --- M src/soc/intel/common/pch/lockdown/lockdown.c 1 file changed, 1 insertion(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/67/39967/1
diff --git a/src/soc/intel/common/pch/lockdown/lockdown.c b/src/soc/intel/common/pch/lockdown/lockdown.c index de45643..684dcee 100644 --- a/src/soc/intel/common/pch/lockdown/lockdown.c +++ b/src/soc/intel/common/pch/lockdown/lockdown.c @@ -100,5 +100,4 @@ soc_lockdown_config(chipset_lockdown); }
-BOOT_STATE_INIT_ENTRY(BS_DEV_RESOURCES, BS_ON_EXIT, platform_lockdown_config, - NULL); +BOOT_STATE_INIT_ENTRY(BS_POST_DEVICE, BS_ON_EXIT, platform_lockdown_config, NULL);