soc/intel/common/gpio: Skip GPIO PAD locking in recovery mode
The recovery mode is meant to provide fixes for the platform deformity hence, skip locking the GPIO PAD configuration to provide the same flexibility to the platform owner while booting in recovery mode. BUG=b:211950520 TEST=Able to build and boot the brya. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: I0f0a3cfb2be7f2a5485679f6a3d8cb4fb407fcf4 Reviewed-on: https://review.coreboot.org/c/coreboot/+/61424 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
This commit is contained in:
parent
e15aa7fc7a
commit
5e84a42055
|
@ -13,6 +13,7 @@
|
|||
#include <intelblocks/itss.h>
|
||||
#include <intelblocks/p2sb.h>
|
||||
#include <intelblocks/pcr.h>
|
||||
#include <security/vboot/vboot_common.h>
|
||||
#include <soc/pci_devs.h>
|
||||
#include <soc/pm.h>
|
||||
#include <stdlib.h>
|
||||
|
@ -616,8 +617,8 @@ static int gpio_non_smm_lock_pad(const struct gpio_lock_config *pad_info)
|
|||
|
||||
int gpio_lock_pad(const gpio_t pad, enum gpio_lock_action lock_action)
|
||||
{
|
||||
/* Skip locking GPIO PAD in early stages */
|
||||
if (ENV_ROMSTAGE_OR_BEFORE)
|
||||
/* Skip locking GPIO PAD in early stages or in recovery mode */
|
||||
if (ENV_ROMSTAGE_OR_BEFORE || vboot_recovery_mode_enabled())
|
||||
return -1;
|
||||
|
||||
const struct gpio_lock_config pads = {
|
||||
|
|
Loading…
Reference in New Issue