summaryrefslogtreecommitdiff
path: root/board/delbin
diff options
context:
space:
mode:
Diffstat (limited to 'board/delbin')
-rw-r--r--board/delbin/board.c4
-rw-r--r--board/delbin/board.h11
2 files changed, 0 insertions, 15 deletions
diff --git a/board/delbin/board.c b/board/delbin/board.c
index 7013ee2b78..6ec89b910a 100644
--- a/board/delbin/board.c
+++ b/board/delbin/board.c
@@ -287,7 +287,6 @@ static const struct tcpc_config_t tcpc_config_p0_usb3 = {
},
.flags = TCPC_FLAGS_TCPCI_REV2_0 | TCPC_FLAGS_TCPCI_REV2_0_NO_VSAFE0V,
.drv = &ps8xxx_tcpm_drv,
- .usb23 = USBC_PORT_0_USB2_NUM | (USBC_PORT_0_USB3_NUM << 4),
};
static const struct tcpc_config_t tcpc_config_p1_usb3 = {
@@ -298,7 +297,6 @@ static const struct tcpc_config_t tcpc_config_p1_usb3 = {
},
.flags = TCPC_FLAGS_TCPCI_REV2_0 | TCPC_FLAGS_TCPCI_REV2_0_NO_VSAFE0V,
.drv = &ps8xxx_tcpm_drv,
- .usb23 = USBC_PORT_1_USB2_NUM | (USBC_PORT_1_USB3_NUM << 4),
};
static const struct usb_mux usbc0_usb3_mb_retimer = {
@@ -491,7 +489,6 @@ struct tcpc_config_t tcpc_config[] = {
.addr_flags = TUSB422_I2C_ADDR_FLAGS,
},
.drv = &tusb422_tcpm_drv,
- .usb23 = USBC_PORT_0_USB2_NUM | (USBC_PORT_0_USB3_NUM << 4),
},
[USBC_PORT_C1] = {
.bus_type = EC_BUS_TYPE_I2C,
@@ -500,7 +497,6 @@ struct tcpc_config_t tcpc_config[] = {
.addr_flags = TUSB422_I2C_ADDR_FLAGS,
},
.drv = &tusb422_tcpm_drv,
- .usb23 = USBC_PORT_1_USB2_NUM | (USBC_PORT_1_USB3_NUM << 4),
},
};
BUILD_ASSERT(ARRAY_SIZE(tcpc_config) == USBC_PORT_COUNT);
diff --git a/board/delbin/board.h b/board/delbin/board.h
index 39736ca384..57b7341d34 100644
--- a/board/delbin/board.h
+++ b/board/delbin/board.h
@@ -55,17 +55,6 @@
/* USB Type C and USB PD defines */
#define CONFIG_USB_PD_PORT_MAX_COUNT 2
-/*
- * USB-C port's USB2 & USB3 mapping from schematics
- * USB2 numbering on PCH - 1 to n
- * USB3 numbering on AP - 0 to n (PMC's USB3 numbering for MUX
- * configuration is - 1 to n hence add +1)
- */
-#define USBC_PORT_0_USB2_NUM 9
-#define USBC_PORT_0_USB3_NUM 1
-#define USBC_PORT_1_USB2_NUM 4
-#define USBC_PORT_1_USB3_NUM 2
-
#define PD_POWER_SUPPLY_TURN_ON_DELAY 30000 /* us */
#define PD_POWER_SUPPLY_TURN_OFF_DELAY 30000 /* us */
#define PD_VCONN_SWAP_DELAY 5000 /* us */