From: Xu Yang <xu.yang_2@nxp.com>
To: Frank Li <Frank.li@nxp.com>
Cc: krzk@kernel.org, myungjoo.ham@samsung.com, cw00.choi@samsung.com,
robh@kernel.org, conor+dt@kernel.org, devicetree@vger.kernel.org,
imx@lists.linux.dev, jun.li@nxp.com
Subject: Re: [PATCH 2/3] extcon: ptn5150: Add Type-C orientation switch support
Date: Thu, 17 Apr 2025 10:16:49 +0800 [thread overview]
Message-ID: <20250417021649.rltm25nmj4etwn4d@hippo> (raw)
In-Reply-To: <Z/+/pgmR4n71iTkE@lizhi-Precision-Tower-5810>
On Wed, Apr 16, 2025 at 10:33:10AM -0400, Frank Li wrote:
> On Wed, Apr 16, 2025 at 06:59:39PM +0800, Xu Yang wrote:
> > PTN5150 is able to detect CC polarity. The field[1:0] of CC status
> > register (04H) will keep the result.
> >
> > 00: Cable Not Attached
> > 01: CC1 is connected (normal orientation)
> > 10: CC2 is connected (reversed orientation)
> > 11: Reserved
> >
> > Sometimes this information is necessary, so add orientation switch
> > support to correctly set orientation of multiplexer.
>
> Add orientation switch support to correctly set orientation of
> multiplexer according to CC status.
OKay.
>
> >
> > Signed-off-by: Xu Yang <xu.yang_2@nxp.com>
> > ---
> > drivers/extcon/Kconfig | 1 +
> > drivers/extcon/extcon-ptn5150.c | 40 +++++++++++++++++++++++++++++++++
> > 2 files changed, 41 insertions(+)
> >
> > diff --git a/drivers/extcon/Kconfig b/drivers/extcon/Kconfig
> > index a6f6d467aacf..fd4ec5dda0b7 100644
> > --- a/drivers/extcon/Kconfig
> > +++ b/drivers/extcon/Kconfig
> > @@ -145,6 +145,7 @@ config EXTCON_PTN5150
> > tristate "NXP PTN5150 CC LOGIC USB EXTCON support"
> > depends on I2C && (GPIOLIB || COMPILE_TEST)
> > depends on USB_ROLE_SWITCH || !USB_ROLE_SWITCH
> > + depends on TYPEC || !TYPEC
> > select REGMAP_I2C
> > help
> > Say Y here to enable support for USB peripheral and USB host
> > diff --git a/drivers/extcon/extcon-ptn5150.c b/drivers/extcon/extcon-ptn5150.c
> > index 78ad86c4a3be..b7e05d921c79 100644
> > --- a/drivers/extcon/extcon-ptn5150.c
> > +++ b/drivers/extcon/extcon-ptn5150.c
> > @@ -18,6 +18,7 @@
> > #include <linux/extcon-provider.h>
> > #include <linux/gpio/consumer.h>
> > #include <linux/usb/role.h>
> > +#include <linux/usb/typec_mux.h>
> >
> > /* PTN5150 registers */
> > #define PTN5150_REG_DEVICE_ID 0x01
> > @@ -38,7 +39,11 @@
> > #define PTN5150_REG_DEVICE_ID_VERSION GENMASK(7, 3)
> > #define PTN5150_REG_DEVICE_ID_VENDOR GENMASK(2, 0)
> >
> > +#define PTN5150_POLARITY_CC1 0x1
> > +#define PTN5150_POLARITY_CC2 0x2
> > +
> > #define PTN5150_REG_CC_PORT_ATTACHMENT GENMASK(4, 2)
> > +#define PTN5150_REG_CC_POLARITY GENMASK(1, 0)
> > #define PTN5150_REG_CC_VBUS_DETECTION BIT(7)
> > #define PTN5150_REG_INT_CABLE_ATTACH_MASK BIT(0)
> > #define PTN5150_REG_INT_CABLE_DETACH_MASK BIT(1)
> > @@ -53,6 +58,7 @@ struct ptn5150_info {
> > int irq;
> > struct work_struct irq_work;
> > struct mutex mutex;
> > + struct typec_switch *orient_sw;
> > struct usb_role_switch *role_sw;
> > };
> >
> > @@ -72,6 +78,7 @@ static const struct regmap_config ptn5150_regmap_config = {
> > static void ptn5150_check_state(struct ptn5150_info *info)
> > {
> > unsigned int port_status, reg_data, vbus;
> > + enum typec_orientation orient = TYPEC_ORIENTATION_NONE;
>
> Move to first variable to keep reverse christmas order
Okay.
>
> > enum usb_role usb_role = USB_ROLE_NONE;
> > int ret;
> >
> > @@ -81,6 +88,23 @@ static void ptn5150_check_state(struct ptn5150_info *info)
> > return;
> > }
> >
> > + orient = FIELD_GET(PTN5150_REG_CC_POLARITY, reg_data);
> > + switch (orient) {
> > + case PTN5150_POLARITY_CC1:
> > + orient = TYPEC_ORIENTATION_NORMAL;
> > + break;
> > + case PTN5150_POLARITY_CC2:
> > + orient = TYPEC_ORIENTATION_REVERSE;
> > + break;
> > + default:
> > + orient = TYPEC_ORIENTATION_NONE;
> > + break;
> > + }
> > +
> > + ret = typec_switch_set(info->orient_sw, orient);
> > + if (ret)
> > + dev_err(info->dev, "failed to set orientation: %d\n", ret);
> > +
>
> Does it need return error here?
The context is a void function. So it'll not return error here.
Thanks,
Xu Yang
>
> Frank
>
> > port_status = FIELD_GET(PTN5150_REG_CC_PORT_ATTACHMENT, reg_data);
> >
> > switch (port_status) {
> > @@ -152,6 +176,12 @@ static void ptn5150_irq_work(struct work_struct *work)
> > dev_err(info->dev,
> > "failed to set none role: %d\n",
> > ret);
> > +
> > + ret = typec_switch_set(info->orient_sw,
> > + TYPEC_ORIENTATION_NONE);
> > + if (ret)
> > + dev_err(info->dev,
> > + "failed to set orientation: %d\n", ret);
> > }
> > }
> >
> > @@ -219,12 +249,14 @@ static void ptn5150_work_sync_and_put(void *data)
> >
> > cancel_work_sync(&info->irq_work);
> > usb_role_switch_put(info->role_sw);
> > + typec_switch_put(info->orient_sw);
> > }
> >
> > static int ptn5150_i2c_probe(struct i2c_client *i2c)
> > {
> > struct device *dev = &i2c->dev;
> > struct device_node *np = i2c->dev.of_node;
> > + struct fwnode_handle *connector;
> > struct ptn5150_info *info;
> > int ret;
> >
> > @@ -311,6 +343,14 @@ static int ptn5150_i2c_probe(struct i2c_client *i2c)
> > if (ret)
> > return -EINVAL;
> >
> > + connector = device_get_named_child_node(dev, "connector");
> > + if (connector) {
> > + info->orient_sw = fwnode_typec_switch_get(connector);
> > + if (IS_ERR(info->orient_sw))
> > + return dev_err_probe(info->dev, PTR_ERR(info->orient_sw),
> > + "failed to get orientation switch\n");
> > + }
> > +
> > info->role_sw = usb_role_switch_get(info->dev);
> > if (IS_ERR(info->role_sw))
> > return dev_err_probe(info->dev, PTR_ERR(info->role_sw),
> > --
> > 2.34.1
> >
next prev parent reply other threads:[~2025-04-17 2:20 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-16 10:59 [PATCH 1/3] dt-bindings: extcon: ptn5150: Allow "connector" node to present Xu Yang
2025-04-16 10:59 ` [PATCH 2/3] extcon: ptn5150: Add Type-C orientation switch support Xu Yang
2025-04-16 14:33 ` Frank Li
2025-04-17 2:16 ` Xu Yang [this message]
2025-04-17 12:38 ` kernel test robot
2025-04-17 13:20 ` kernel test robot
2025-04-16 10:59 ` [PATCH 3/3] extcon: ptn5150: Try to get usb role switch from connector fwnode Xu Yang
2025-04-16 14:37 ` Frank Li
2025-04-17 2:24 ` Xu Yang
2025-04-17 14:34 ` Frank Li
2025-04-16 14:23 ` [PATCH 1/3] dt-bindings: extcon: ptn5150: Allow "connector" node to present Frank Li
2025-04-17 1:53 ` Xu Yang
2025-04-22 12:19 ` Rob Herring (Arm)
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=20250417021649.rltm25nmj4etwn4d@hippo \
--to=xu.yang_2@nxp.com \
--cc=Frank.li@nxp.com \
--cc=conor+dt@kernel.org \
--cc=cw00.choi@samsung.com \
--cc=devicetree@vger.kernel.org \
--cc=imx@lists.linux.dev \
--cc=jun.li@nxp.com \
--cc=krzk@kernel.org \
--cc=myungjoo.ham@samsung.com \
--cc=robh@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