summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2020-06-29 21:58:43 -0700
committerFurquan Shaikh <furquan@google.com>2020-07-01 17:55:48 +0000
commitffc2e753628922e8f01c2c8c140b5d1b15525cb3 (patch)
tree9b59890d473a6696528e9718bdab533a85e1e1b4
parent587338295dbe742f7f54d90e6faedd5ca8568dda (diff)
downloadcoreboot-ffc2e753628922e8f01c2c8c140b5d1b15525cb3.tar.gz
coreboot-ffc2e753628922e8f01c2c8c140b5d1b15525cb3.tar.bz2
coreboot-ffc2e753628922e8f01c2c8c140b5d1b15525cb3.zip
mb/google/zork: Drop unused/unnecessary GPIO macros
This change drops macros for GPIOs which are unused or don't really require extra indirection (same across all variants). BUG=b:159283649 Signed-off-by: Furquan Shaikh <furquan@google.com> Change-Id: I1a94327103a419f26b1d7feda4c995363ada7281 Reviewed-on: https://review.coreboot.org/c/coreboot/+/42941 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
-rw-r--r--src/mainboard/google/zork/variants/baseboard/include/baseboard/gpio.h29
-rw-r--r--src/mainboard/google/zork/variants/baseboard/tpm_tis.c2
2 files changed, 2 insertions, 29 deletions
diff --git a/src/mainboard/google/zork/variants/baseboard/include/baseboard/gpio.h b/src/mainboard/google/zork/variants/baseboard/include/baseboard/gpio.h
index 4801a5ec7ba8..84433e062255 100644
--- a/src/mainboard/google/zork/variants/baseboard/include/baseboard/gpio.h
+++ b/src/mainboard/google/zork/variants/baseboard/include/baseboard/gpio.h
@@ -7,22 +7,6 @@
#include <soc/gpio.h>
#include <platform_descriptors.h>
-#define H1_PCH_INT GPIO_3
-#define PEN_DETECT_ODL GPIO_4
-#define PEN_POWER_EN GPIO_5
-#define TOUCHPAD_INT_ODL GPIO_9
-#define EC_FCH_WAKE_L GPIO_24
-#define WIFI_PCIE_RESET_L GPIO_26
-#define PCIE_RST1_L GPIO_27
-#define EN_PWR_WIFI GPIO_29
-#define NVME_AUX_RESET_L GPIO_40
-#define WIFI_AUX_RESET_L GPIO_42
-#define EN_PWR_CAMERA GPIO_76
-#define EN_PWR_TOUCHPAD_PS2 GPIO_67
-#define PCIE_0_WIFI_CLKREQ_ODL GPIO_92
-#define PCIE_1_SD_CLKREQ_ODL GPIO_115
-#define BIOS_FLASH_WP_ODL GPIO_137
-#define SD_AUX_RESET_L GPIO_142
#define WLAN_CLKREQ CLK_REQ0
#define SD_CLKREQ CLK_REQ1
@@ -43,28 +27,17 @@
#endif
#if CONFIG(BOARD_GOOGLE_BASEBOARD_TREMBYLE)
-#define FPMCU_INT_L GPIO_6
-#define FPMCU_RST_ODL GPIO_11
#define EC_IN_RW_OD GPIO_130
-#define PCIE_4_NVME_CLKREQ_ODL GPIO_132
#define NVME_CLKREQ CLK_REQ4
#else
#define EC_IN_RW_OD GPIO_11
-#define PCIE_2_NVME_CLKREQ_ODL GPIO_116
#define NVME_CLKREQ CLK_REQ2
#endif
/* SPI Write protect */
-#define CROS_WP_GPIO BIOS_FLASH_WP_ODL
+#define CROS_WP_GPIO GPIO_137
#define GPIO_EC_IN_RW EC_IN_RW_OD
-/* PCIe reset pins */
-#define PCIE_0_RST WIFI_AUX_RESET_L
-#define PCIE_1_RST SD_AUX_RESET_L
-#define PCIE_2_RST 0
-#define PCIE_3_RST 0
-#define PCIE_4_RST NVME_AUX_RESET_L
-
#endif /* _ACPI__ */
/* These define the GPE, not the GPIO. */
diff --git a/src/mainboard/google/zork/variants/baseboard/tpm_tis.c b/src/mainboard/google/zork/variants/baseboard/tpm_tis.c
index 52e83cf44ccd..46952c331813 100644
--- a/src/mainboard/google/zork/variants/baseboard/tpm_tis.c
+++ b/src/mainboard/google/zork/variants/baseboard/tpm_tis.c
@@ -6,5 +6,5 @@
int tis_plat_irq_status(void)
{
- return gpio_interrupt_status(H1_PCH_INT);
+ return gpio_interrupt_status(GPIO_3);
}