summaryrefslogtreecommitdiff
path: root/board/spherion/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/spherion/board.c')
-rw-r--r--board/spherion/board.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/board/spherion/board.c b/board/spherion/board.c
index 1119b1f077..95fa0a06de 100644
--- a/board/spherion/board.c
+++ b/board/spherion/board.c
@@ -105,10 +105,15 @@ DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, kb_backlight_disable, HOOK_PRIO_DEFAULT);
void board_usb_mux_init(void)
{
- if (board_get_sub_board() == SUB_BOARD_TYPEC)
+ if (board_get_sub_board() == SUB_BOARD_TYPEC) {
ps8743_tune_usb_eq(&usb_muxes[1],
PS8743_USB_EQ_TX_12_8_DB,
PS8743_USB_EQ_RX_12_8_DB);
+ ps8743_field_update(&usb_muxes[1],
+ PS8743_REG_DCI_CONFIG_2,
+ PS8743_AUTO_DCI_MODE_MASK,
+ PS8743_AUTO_DCI_MODE_FORCE_USB);
+ }
}
DECLARE_HOOK(HOOK_INIT, board_usb_mux_init, HOOK_PRIO_INIT_I2C + 1);