diff --git a/src/ec/google/chromeec/mux/conn/chip.h b/src/ec/google/chromeec/mux/conn/chip.h index 953b625ddd..fd0ccf871e 100644 --- a/src/ec/google/chromeec/mux/conn/chip.h +++ b/src/ec/google/chromeec/mux/conn/chip.h @@ -5,9 +5,11 @@ struct ec_google_chromeec_mux_conn_config { /* When set to true, this signifies that the mux device - * is used as a Type-C mode switch in addition to - * a retimer switch. */ + * is used as a Type-C mode switch. */ bool mode_switch; + /* When set to true, this signifies that the mux device + * is used as a Type-C retimer switch. */ + bool retimer_switch; }; #endif /* EC_GOOGLE_CHROMEEC_MUX_CONN_CHIP_H */ diff --git a/src/ec/google/chromeec/mux/conn/conn.c b/src/ec/google/chromeec/mux/conn/conn.c index cb7478ab12..e179c33307 100644 --- a/src/ec/google/chromeec/mux/conn/conn.c +++ b/src/ec/google/chromeec/mux/conn/conn.c @@ -24,9 +24,14 @@ static void conn_fill_ssdt(const struct device *dev) acpigen_write_name_integer("_ADR", dev->path.generic.id); - if (config && config->mode_switch) { + if (config) { struct acpi_dp *dsd = acpi_dp_new_table("_DSD"); - acpi_dp_add_integer(dsd, "mode-switch", 1); + + if (config->mode_switch) + acpi_dp_add_integer(dsd, "mode-switch", 1); + if (config->retimer_switch) + acpi_dp_add_integer(dsd, "retimer-switch", 1); + acpi_dp_write(dsd); }