summaryrefslogtreecommitdiff
path: root/board/atlas/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/atlas/board.c')
-rw-r--r--board/atlas/board.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/board/atlas/board.c b/board/atlas/board.c
index ebd24cc503..9afbe8183f 100644
--- a/board/atlas/board.c
+++ b/board/atlas/board.c
@@ -455,6 +455,14 @@ void board_hibernate(void)
/* Initialize board. */
static void board_init(void)
{
+ if (system_get_board_version() < ATLAS_REV_FIXED_EC_WP) {
+ int dflags;
+
+ CPRINTS("Applying EC_WP_L workaround");
+ dflags = gpio_get_default_flags(GPIO_EC_WP_L);
+ gpio_set_flags(GPIO_EC_WP_L, dflags | GPIO_PULL_UP);
+ }
+
/* Provide AC status to the PCH */
gpio_set_level(GPIO_PCH_ACOK, extpower_is_present());