public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Tzung-Bi Shih <tzungbi@kernel.org>
To: Diogo Ivo <diogo.ivo@tecnico.ulisboa.pt>
Cc: Benson Leung <bleung@chromium.org>,
	Abhishek Pandit-Subedi <abhishekpandit@chromium.org>,
	Jameson Thies <jthies@google.com>,
	Andrei Kuchynski <akuchynski@chromium.org>,
	Guenter Roeck <groeck@chromium.org>,
	chrome-platform@lists.linux.dev, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] platform/chrome: cros_ec_typec: Skip Type-C mux handling in EC-driven devices
Date: Tue, 3 Mar 2026 02:49:49 +0000	[thread overview]
Message-ID: <aaZMTeDLJapkPSli@google.com> (raw)
In-Reply-To: <a274ceda-1763-4022-bb7f-132967ad66c8@tecnico.ulisboa.pt>

On Mon, Mar 02, 2026 at 09:09:22AM +0000, Diogo Ivo wrote:
> Hello,
> 
> Gentle ping on this patch.

CHROMEOS EC USB TYPE-C DRIVER maintainers: Could you take a look on the patch?

> 
> On 2/5/26 10:04, Diogo Ivo wrote:
> > Currently the code assumes that the EC firmware will leave Type-C mux
> > handling logic to the AP, exposing an interface to query and change the
> > mux state via a request from the AP. However, in devices such as Smaug
> > the EC automatically takes care of mux configuration and only USB role
> > switching needs to be handled by the AP. In fact, in such devices this
> > interface is not exposed by the EC making the whole process fail,
> > including role switching.
> > 
> > Fix this by first separating Type-C mux handling and USB role switching,
> > explicitly querying the behaviour of the EC and execute each part
> > conditionally according to what the EC reported.
> > 
> > Signed-off-by: Diogo Ivo <diogo.ivo@tecnico.ulisboa.pt>
> > ---
> >   drivers/platform/chrome/cros_ec_typec.c | 49 +++++++++++++++++++++++----------
> >   drivers/platform/chrome/cros_ec_typec.h |  2 +-
> >   2 files changed, 35 insertions(+), 16 deletions(-)
> > 
> > diff --git a/drivers/platform/chrome/cros_ec_typec.c b/drivers/platform/chrome/cros_ec_typec.c
> > index b712bcff6fb2..bd7e6c365cab 100644
> > --- a/drivers/platform/chrome/cros_ec_typec.c
> > +++ b/drivers/platform/chrome/cros_ec_typec.c
> > @@ -751,11 +751,10 @@ static int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num,
> >   	}
> >   	/* No change needs to be made, let's exit early. */
> > -	if (port->mux_flags == resp.flags && port->role == pd_ctrl->role)
> > +	if (port->mux_flags == resp.flags)
> >   		return 0;
> >   	port->mux_flags = resp.flags;
> > -	port->role = pd_ctrl->role;
> >   	if (port->mux_flags == USB_PD_MUX_NONE) {
> >   		ret = cros_typec_usb_disconnect_state(port);
> > @@ -771,12 +770,6 @@ static int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num,
> >   	if (ret)
> >   		return ret;
> > -	ret = usb_role_switch_set_role(typec->ports[port_num]->role_sw,
> > -					pd_ctrl->role & PD_CTRL_RESP_ROLE_DATA
> > -					? USB_ROLE_HOST : USB_ROLE_DEVICE);
> > -	if (ret)
> > -		return ret;
> > -
> >   	if (port->mux_flags & USB_PD_MUX_USB4_ENABLED) {
> >   		ret = cros_typec_enable_usb4(typec, port_num, pd_ctrl);
> >   	} else if (port->mux_flags & USB_PD_MUX_TBT_COMPAT_ENABLED) {
> > @@ -822,6 +815,25 @@ static int cros_typec_configure_mux(struct cros_typec_data *typec, int port_num,
> >   	return ret;
> >   }
> > +static int cros_typec_set_role(struct cros_typec_data *typec, int port_num,
> > +			       struct ec_response_usb_pd_control_v1 *resp)
> > +{
> > +	enum usb_role cur_role = usb_role_switch_get_role(typec->ports[port_num]->role_sw);
> > +	enum usb_role role = resp->role & PD_CTRL_RESP_ROLE_DATA ? USB_ROLE_HOST :
> > +								   USB_ROLE_DEVICE;
> > +	bool connected = resp->enabled & PD_CTRL_RESP_ENABLED_CONNECTED;
> > +	int ret;
> > +
> > +	if (!connected || cur_role == role)
> > +		return 0;
> > +
> > +	ret = usb_role_switch_set_role(typec->ports[port_num]->role_sw, role);
> > +	if (ret)
> > +		dev_err(typec->dev, "Failed USB role switch, err = %d\n", ret);
> > +
> > +	return ret;
> > +}
> > +
> >   static void cros_typec_set_port_params_v0(struct cros_typec_data *typec,
> >   		int port_num, struct ec_response_usb_pd_control *resp)
> >   {
> > @@ -1251,27 +1263,32 @@ static int cros_typec_port_update(struct cros_typec_data *typec, int port_num)
> >   	if (ret < 0)
> >   		return ret;
> > -	/* Update the switches if they exist, according to requested state */
> > -	ret = cros_typec_configure_mux(typec, port_num, &resp);
> > -	if (ret)
> > -		dev_warn(typec->dev, "Configure muxes failed, err = %d\n", ret);
> > +	if (typec->ap_driven_mux) {
> > +		/* Update the switches if they exist, according to requested state */
> > +		ret = cros_typec_configure_mux(typec, port_num, &resp);
> > +		if (ret)
> > +			dev_warn(typec->dev, "Configure muxes failed, err = %d\n", ret);
> > +	}
> >   	dev_dbg(typec->dev, "Enabled %d: 0x%hhx\n", port_num, resp.enabled);
> >   	dev_dbg(typec->dev, "Role %d: 0x%hhx\n", port_num, resp.role);
> >   	dev_dbg(typec->dev, "Polarity %d: 0x%hhx\n", port_num, resp.polarity);
> >   	dev_dbg(typec->dev, "State %d: %s\n", port_num, resp.state);
> > -	if (typec->pd_ctrl_ver != 0)
> > +	if (typec->pd_ctrl_ver != 0) {
> > +		ret = cros_typec_set_role(typec, port_num,
> > +			(struct ec_response_usb_pd_control_v1 *)&resp);
> >   		cros_typec_set_port_params_v1(typec, port_num,
> >   			(struct ec_response_usb_pd_control_v1 *)&resp);
> > -	else
> > +	} else {
> >   		cros_typec_set_port_params_v0(typec, port_num,
> >   			(struct ec_response_usb_pd_control *) &resp);
> > +	}
> >   	if (typec->typec_cmd_supported)
> >   		cros_typec_handle_status(typec, port_num);
> > -	return 0;
> > +	return ret;
> >   }
> >   static int cros_typec_get_cmd_version(struct cros_typec_data *typec)
> > @@ -1375,6 +1392,8 @@ static int cros_typec_probe(struct platform_device *pdev)
> >   	typec->needs_mux_ack = cros_ec_check_features(ec_dev, EC_FEATURE_TYPEC_MUX_REQUIRE_AP_ACK);
> >   	typec->ap_driven_altmode = cros_ec_check_features(
> >   		ec_dev, EC_FEATURE_TYPEC_REQUIRE_AP_MODE_ENTRY);
> > +	typec->ap_driven_mux = cros_ec_check_features(
> > +		ec_dev, EC_FEATURE_USBC_SS_MUX_VIRTUAL);
> >   	ret = cros_ec_cmd(typec->ec, 0, EC_CMD_USB_PD_PORTS, NULL, 0,
> >   			  &resp, sizeof(resp));
> > diff --git a/drivers/platform/chrome/cros_ec_typec.h b/drivers/platform/chrome/cros_ec_typec.h
> > index f9c31f04c102..9698f27169c6 100644
> > --- a/drivers/platform/chrome/cros_ec_typec.h
> > +++ b/drivers/platform/chrome/cros_ec_typec.h
> > @@ -41,6 +41,7 @@ struct cros_typec_data {
> >   	bool typec_cmd_supported;
> >   	bool needs_mux_ack;
> >   	bool ap_driven_altmode;
> > +	bool ap_driven_mux;
> >   };
> >   /* Per port data. */
> > @@ -65,7 +66,6 @@ struct cros_typec_port {
> >   	/* Variables keeping track of switch state. */
> >   	struct typec_mux_state state;
> >   	uint8_t mux_flags;
> > -	uint8_t role;
> >   	struct typec_altmode *port_altmode[CROS_EC_ALTMODE_MAX];
> > 
> > ---
> > base-commit: 1cf43b664b8b2f9cd04b9906193713e4b693dac7
> > change-id: 20260128-smaug-type_c-d34b9510fb5e
> > 
> > Best regards,
> 

  reply	other threads:[~2026-03-03  2:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-05 10:04 [PATCH] platform/chrome: cros_ec_typec: Skip Type-C mux handling in EC-driven devices Diogo Ivo
2026-03-02  9:09 ` Diogo Ivo
2026-03-03  2:49   ` Tzung-Bi Shih [this message]
2026-03-03  7:17 ` Andrei Kuchynski
2026-03-03  9:54   ` Diogo Ivo
2026-03-04 10:30     ` Andrei Kuchynski
2026-03-09 15:25       ` Diogo Ivo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=aaZMTeDLJapkPSli@google.com \
    --to=tzungbi@kernel.org \
    --cc=abhishekpandit@chromium.org \
    --cc=akuchynski@chromium.org \
    --cc=bleung@chromium.org \
    --cc=chrome-platform@lists.linux.dev \
    --cc=diogo.ivo@tecnico.ulisboa.pt \
    --cc=groeck@chromium.org \
    --cc=jthies@google.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox