summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Lu <Devin.Lu@quantatw.com>2020-10-22 11:32:13 +0800
committerCommit Bot <commit-bot@chromium.org>2020-10-29 01:53:15 +0000
commit8cd87e78c73a43b6a11919e4b9d9f2a7e063d429 (patch)
tree06f93fbf1235c7256d3ff87f07ae1da5c3f5b3ca
parentbe386fb62ef93ecfb0f369867bfe9c193b178f90 (diff)
downloadchrome-ec-8cd87e78c73a43b6a11919e4b9d9f2a7e063d429.tar.gz
elemi: Remove unused board rev 0 configuration
BUG=b:169409487 BRANCH=firmware-volteer-13521.B-master TEST=Make sure TCPC C1 port initial passed. Signed-off-by: Devin Lu <Devin.Lu@quantatw.com> Change-Id: Ib989947f14feccb0ef4eaad8a2fa5556a4061fd6 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2491585 Reviewed-by: Keith Short <keithshort@chromium.org>
-rw-r--r--board/elemi/board.c16
-rw-r--r--board/elemi/gpio.inc10
2 files changed, 3 insertions, 23 deletions
diff --git a/board/elemi/board.c b/board/elemi/board.c
index 96e0ec51a2..82ddcca710 100644
--- a/board/elemi/board.c
+++ b/board/elemi/board.c
@@ -325,16 +325,14 @@ const int usb_port_enable[USB_PORT_COUNT] = {
GPIO_EN_PP5000_USBA,
};
-static enum gpio_signal ps8xxx_rst_odl = GPIO_USB_C1_RT_RST_ODL;
-
static void ps8815_reset(void)
{
int val;
- gpio_set_level(ps8xxx_rst_odl, 0);
+ gpio_set_level(GPIO_USB_C1_RT_RST_ODL, 0);
msleep(GENERIC_MAX(PS8XXX_RESET_DELAY_MS,
PS8815_PWR_H_RST_H_DELAY_MS));
- gpio_set_level(ps8xxx_rst_odl, 1);
+ gpio_set_level(GPIO_USB_C1_RT_RST_ODL, 1);
msleep(PS8815_FW_INIT_DELAY_MS);
/*
@@ -425,16 +423,6 @@ __override void board_cbi_init(void)
{
enum ec_cfg_usb_db_type usb_db = ec_cfg_usb_db_type();
- /* Reconfigure Volteer GPIOs based on the board ID */
- if (get_board_id() == 0) {
- CPRINTS("Configuring GPIOs for board ID 0");
- CPRINTS("VOLUME_UP button disabled");
-
- /* Reassign USB_C1_RT_RST_ODL */
- bb_controls[USBC_PORT_C1].retimer_rst_gpio =
- GPIO_USB_C1_RT_RST_ODL_BOARDID_0;
- ps8xxx_rst_odl = GPIO_USB_C1_RT_RST_ODL_BOARDID_0;
- }
config_port_discrete_tcpc(0);
switch (usb_db) {
case DB_USB_ABSENT:
diff --git a/board/elemi/gpio.inc b/board/elemi/gpio.inc
index 4c7a137e76..aa4dbba6f7 100644
--- a/board/elemi/gpio.inc
+++ b/board/elemi/gpio.inc
@@ -84,15 +84,7 @@ GPIO(EC_PCH_INT_ODL, PIN(B, 0), GPIO_ODR_HIGH)
/* USB and USBC Signals */
GPIO(EN_PP5000_USBA, PIN(C, 6), GPIO_OUT_LOW) /* Enable USB-A charging - all ports */
GPIO(USB_A_LOW_PWR_OD, PIN(6, 6), GPIO_ODR_LOW) /* Don't limit USB-A charging by default - all ports */
-
-/*
- * USB_C1 moved from GPIO32 to GPIO83 on boards with board ID >=1.
- * GPIO83/EN_PP1800_A is DNS on board ID 0 and GPIO32 is N/C on board ID >=1
- * so it's safe to define GPIOs compatible with both designs.
- * TODO (b/149858568): remove board ID=0 support.
- */
-GPIO(USB_C1_RT_RST_ODL_BOARDID_0, PIN(3, 2), GPIO_ODR_LOW) /* USB_C1 Reset on boards without board ID */
-GPIO(USB_C1_RT_RST_ODL, PIN(8, 3), GPIO_ODR_LOW) /* USB_C1 Reset on boards board ID >=1 */
+GPIO(USB_C1_RT_RST_ODL, PIN(8, 3), GPIO_ODR_LOW) /* USB_C1 Reset */
GPIO(USB_C0_OC_ODL, PIN(B, 1), GPIO_ODR_HIGH)
GPIO(USB_C1_OC_ODL, PIN(5, 0), GPIO_ODR_HIGH)
/* There is currently no need to service this interrupt. */