summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zephyr/shim/src/cbi/cbi_eeprom.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/zephyr/shim/src/cbi/cbi_eeprom.c b/zephyr/shim/src/cbi/cbi_eeprom.c
index 9cd0d0a955..f2343ffac8 100644
--- a/zephyr/shim/src/cbi/cbi_eeprom.c
+++ b/zephyr/shim/src/cbi/cbi_eeprom.c
@@ -45,7 +45,12 @@ static int eeprom_is_write_protected(void)
return 0;
}
+#ifdef CONFIG_PLATFORM_EC_EEPROM_CBI_WP
+ return gpio_pin_get_dt(GPIO_DT_FROM_ALIAS(gpio_cbi_wp));
+#else
+ /* GSC controlled write protect */
return write_protect_is_asserted();
+#endif
}
static int eeprom_store(uint8_t *cbi)