summaryrefslogtreecommitdiff
path: root/board/nami/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/nami/board.c')
-rw-r--r--board/nami/board.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/board/nami/board.c b/board/nami/board.c
index a0fdc9152d..c1ddf682c3 100644
--- a/board/nami/board.c
+++ b/board/nami/board.c
@@ -218,15 +218,21 @@ const unsigned int i2c_ports_used = ARRAY_SIZE(i2c_ports);
/* TCPC mux configuration */
const struct tcpc_config_t tcpc_config[CONFIG_USB_PD_PORT_MAX_COUNT] = {
[USB_PD_PORT_PS8751] = {
- .i2c_host_port = NPCX_I2C_PORT0_0,
- .i2c_slave_addr = PS8751_I2C_ADDR1,
+ .bus_type = EC_BUS_TYPE_I2C,
+ .i2c_info = {
+ .port = NPCX_I2C_PORT0_0,
+ .addr = PS8751_I2C_ADDR1,
+ },
.drv = &ps8xxx_tcpm_drv,
/* Alert is active-low, push-pull */
.flags = 0,
},
[USB_PD_PORT_ANX7447] = {
- .i2c_host_port = NPCX_I2C_PORT0_1,
- .i2c_slave_addr = AN7447_TCPC3_I2C_ADDR, /* Verified on v1.1 */
+ .bus_type = EC_BUS_TYPE_I2C,
+ .i2c_info = {
+ .port = NPCX_I2C_PORT0_1,
+ .addr = AN7447_TCPC3_I2C_ADDR,
+ },
.drv = &anx7447_tcpm_drv,
/* Alert is active-low, push-pull */
.flags = 0,