diff options
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/google/eve/devicetree.cb | 2 | ||||
-rw-r--r-- | src/mainboard/google/eve/gpio.h | 7 | ||||
-rw-r--r-- | src/mainboard/google/eve/mainboard.c | 4 |
3 files changed, 1 insertions, 12 deletions
diff --git a/src/mainboard/google/eve/devicetree.cb b/src/mainboard/google/eve/devicetree.cb index 7db97b7354..99ddb2edea 100644 --- a/src/mainboard/google/eve/devicetree.cb +++ b/src/mainboard/google/eve/devicetree.cb @@ -204,7 +204,7 @@ chip soc/intel/skylake [PchSerialIoIndexI2C5] = PchSerialIoDisabled, [PchSerialIoIndexSpi0] = PchSerialIoPci, [PchSerialIoIndexSpi1] = PchSerialIoPci, - [PchSerialIoIndexUart0] = PchSerialIoPci, + [PchSerialIoIndexUart0] = PchSerialIoSkipInit, [PchSerialIoIndexUart1] = PchSerialIoDisabled, [PchSerialIoIndexUart2] = PchSerialIoSkipInit, }" diff --git a/src/mainboard/google/eve/gpio.h b/src/mainboard/google/eve/gpio.h index c4c73aecfa..6da82441bd 100644 --- a/src/mainboard/google/eve/gpio.h +++ b/src/mainboard/google/eve/gpio.h @@ -231,13 +231,6 @@ static const struct pad_config early_gpio_table[] = { /* UART2_TXD */ PAD_CFG_NF(GPP_C21, NONE, DEEP, NF1), /* SERVO */ }; -static const struct pad_config late_gpio_table[] = { -/* UART0_RXD */ PAD_CFG_GPI(GPP_C8, NONE, PLTRST), /* FP_INT */ -/* UART0_TXD */ PAD_CFG_GPI(GPP_C9, NONE, DEEP), /* FP_RST_ODL */ -/* UART0_RTS# */ PAD_CFG_GPI(GPP_C10, NONE, DEEP), /* PCH_FPS_MCU_NRST_ODL */ -/* UART0_CTS# */ PAD_CFG_GPI(GPP_C11, NONE, DEEP), /* PCH_FPS_MCU_BOOT0 */ -}; - #endif #endif diff --git a/src/mainboard/google/eve/mainboard.c b/src/mainboard/google/eve/mainboard.c index dda0cfacfd..d30eff26e6 100644 --- a/src/mainboard/google/eve/mainboard.c +++ b/src/mainboard/google/eve/mainboard.c @@ -19,10 +19,7 @@ #include <device/device.h> #include <ec/ec.h> #include <vendorcode/google/chromeos/chromeos.h> -#include <gpio.h> -#include <soc/gpio.h> #include <soc/nhlt.h> -#include "gpio.h" static const char *oem_id_maxim = "GOOGLE"; static const char *oem_table_id_maxim = "EVEMAX"; @@ -30,7 +27,6 @@ static const char *oem_table_id_maxim = "EVEMAX"; static void mainboard_init(device_t dev) { mainboard_ec_init(); - gpio_configure_pads(late_gpio_table, ARRAY_SIZE(late_gpio_table)); } static unsigned long mainboard_write_acpi_tables( |