From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: linux-usb@vger.kernel.org
Subject: Re: [PATCH] usb: typec: Add typec_enter_usb() helper function
Date: Mon, 9 Nov 2020 13:21:20 +0100 [thread overview]
Message-ID: <20201109122120.GA1834779@kroah.com> (raw)
In-Reply-To: <20201109120524.50255-1-heikki.krogerus@linux.intel.com>
On Mon, Nov 09, 2020 at 03:05:24PM +0300, Heikki Krogerus wrote:
> This function configures the muxes according to the
> requested USB mode in the Enter_USB Message that was
> communicated with the partner.
>
> In practice the function just fills struct typec_mux_state
> for the caller by extracting the connector mode (so USB
> mode) from the EUDO (Enter_USB Data Object), and then passes
> that structure to typec_mux_set().
>
> Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
> ---
> drivers/usb/typec/class.c | 32 ++++++++++++++++++++++++++++++++
> include/linux/usb/typec.h | 1 +
> 2 files changed, 33 insertions(+)
>
> diff --git a/drivers/usb/typec/class.c b/drivers/usb/typec/class.c
> index 35eec707cb512..22f82e924d585 100644
> --- a/drivers/usb/typec/class.c
> +++ b/drivers/usb/typec/class.c
> @@ -11,6 +11,7 @@
> #include <linux/mutex.h>
> #include <linux/property.h>
> #include <linux/slab.h>
> +#include <linux/usb/pd.h>
>
> #include "bus.h"
>
> @@ -1579,6 +1580,37 @@ int typec_set_mode(struct typec_port *port, int mode)
> }
> EXPORT_SYMBOL_GPL(typec_set_mode);
>
> +/**
> + * typec_enter_usb - Set USB Mode for USB Type-C connector
> + * @port: USB Type-C connector
> + * @data: Enter_USB Message details.
> + *
> + * This function is called when Enter_USB Message is used. It configures @port
> + * muxes for the USB mode (USB 2.0, USB 3.2 or USB4).
> + */
> +int typec_enter_usb(struct typec_port *port, struct enter_usb_data *data)
> +{
> + struct typec_mux_state mux_state;
> +
> + switch ((data->eudo & EUDO_USB_MODE_MASK) >> EUDO_USB_MODE_SHIFT) {
> + case EUDO_USB_MODE_USB4:
> + mux_state.mode = TYPEC_MODE_USB4;
> + break;
> + case EUDO_USB_MODE_USB3:
> + mux_state.mode = TYPEC_MODE_USB3;
> + break;
> + default:
> + mux_state.mode = TYPEC_MODE_USB2;
> + break;
> + }
> +
> + mux_state.alt = NULL; /* Not an alt mode */
> + mux_state.data = data;
> +
> + return typec_mux_set(port->mux, &mux_state);
> +}
> +EXPORT_SYMBOL_GPL(typec_enter_usb);
We can't add symbols/functions for no in-kernel users, so perhaps submit
this as part of a series that actually uses it?
thanks,
greg k-h
next prev parent reply other threads:[~2020-11-09 12:20 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-09 12:05 [PATCH] usb: typec: Add typec_enter_usb() helper function Heikki Krogerus
2020-11-09 12:21 ` Greg Kroah-Hartman [this message]
2020-11-09 12:34 ` Heikki Krogerus
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=20201109122120.GA1834779@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=heikki.krogerus@linux.intel.com \
--cc=linux-usb@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