aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/google')
-rw-r--r--src/mainboard/google/guybrush/Kconfig7
-rw-r--r--src/mainboard/google/guybrush/bootblock.c12
2 files changed, 0 insertions, 19 deletions
diff --git a/src/mainboard/google/guybrush/Kconfig b/src/mainboard/google/guybrush/Kconfig
index 8f160fa10e..51ac55dca1 100644
--- a/src/mainboard/google/guybrush/Kconfig
+++ b/src/mainboard/google/guybrush/Kconfig
@@ -96,11 +96,4 @@ config MAINBOARD_FAMILY
string
default "Google_Guybrush"
-config GPIO_SIGN_OF_LIFE
- def_bool n
- help
- Enable toggling GPIO 31 as a sign of life on Guybrush
-
- TODO: Remove this option when board is booting
-
endif # BOARD_GOOGLE_BASEBOARD_GUYBRUSH
diff --git a/src/mainboard/google/guybrush/bootblock.c b/src/mainboard/google/guybrush/bootblock.c
index ece1201c9c..5b18d37cc6 100644
--- a/src/mainboard/google/guybrush/bootblock.c
+++ b/src/mainboard/google/guybrush/bootblock.c
@@ -5,9 +5,6 @@
#include <baseboard/variants.h>
#include <console/console.h>
#include <device/pci_ops.h>
-#include <delay.h>
-#include <gpio.h>
-#include <soc/gpio.h>
#include <soc/pci_devs.h>
void bootblock_mainboard_early_init(void)
@@ -38,15 +35,6 @@ void bootblock_mainboard_early_init(void)
dword |= 3 << 10;
pm_write32(0x74, dword);
- if (CONFIG(GPIO_SIGN_OF_LIFE)) {
- for (int x = 0; x < 20; x++) {
- gpio_set(GPIO_31, 1);
- mdelay(10);
- gpio_set(GPIO_31, 0);
- mdelay(10);
- }
- }
-
if (variant_has_fpmcu())
variant_fpmcu_reset();
}