From: Heikki Krogerus <heikki.krogerus@linux.intel.com>
To: Amit Sunil Dhamne <amitsd@google.com>
Cc: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
gregkh@linuxfoundation.org, dmitry.baryshkov@linaro.org,
kyletso@google.com, rdbabiera@google.com, badhri@google.com,
linux@roeck-us.net, xu.yang_2@nxp.com,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-usb@vger.kernel.org
Subject: Re: [PATCH v2 3/3] usb: typec: tcpm: Add support for sink-bc12-completion-time-ms DT property
Date: Fri, 15 Nov 2024 09:19:39 +0200 [thread overview]
Message-ID: <Zzb2CxPPZc09WfqV@kuha.fi.intel.com> (raw)
In-Reply-To: <f244542a-7160-4f05-acaa-0e2574ee289d@google.com>
On Thu, Nov 14, 2024 at 11:59:41AM -0800, Amit Sunil Dhamne wrote:
> Hi Heikki,
>
> On 11/2/24 8:43 PM, Amit Sunil Dhamne wrote:
> > Add support for parsing DT time property "sink-bc12-completion-time-ms".
> > This timer is used to relax the PD state machine during Sink attach to
> > allow completion of Battery Charging (BC1.2) charger type detection in
> > TCPC before PD negotiations. BC1.2 detection is a hardware mechanism to
> > detect charger port type that is run by some controllers (such as
> > "maxim,max33359") in parallel to Type-C connection state machines.
> > This is to ensure that BC1.2 completes before PD is enabled as running
> > BC1.2 in parallel with PD negotiation results in delays violating timer
> > constraints in PD spec.
> >
> > This is an optional timer and will not add any delay unless explicitly
> > set.
> >
> > Signed-off-by: Amit Sunil Dhamne <amitsd@google.com>
> > Reviewed-by: Badhri Jagan Sridharan <badhri@google.com>
> > ---
> > drivers/usb/typec/tcpm/tcpm.c | 16 +++++++++++++++-
> > 1 file changed, 15 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/usb/typec/tcpm/tcpm.c b/drivers/usb/typec/tcpm/tcpm.c
> > index b3d5d1d48937..8b325b93b5a9 100644
> > --- a/drivers/usb/typec/tcpm/tcpm.c
> > +++ b/drivers/usb/typec/tcpm/tcpm.c
> > @@ -319,6 +319,7 @@ struct pd_timings {
> > u32 sink_wait_cap_time;
> > u32 ps_src_off_time;
> > u32 cc_debounce_time;
> > + u32 snk_bc12_cmpletion_time;
> > };
> > struct tcpm_port {
> > @@ -4978,7 +4979,16 @@ static void run_state_machine(struct tcpm_port *port)
> > if (ret < 0)
> > tcpm_set_state(port, SNK_UNATTACHED, 0);
> > else
> > - tcpm_set_state(port, SNK_STARTUP, 0);
> > + /*
> > + * For Type C port controllers that use Battery Charging
> > + * Detection (based on BCv1.2 spec) to detect USB
> > + * charger type, add a delay of "snk_bc12_cmpletion_time"
> > + * before transitioning to SNK_STARTUP to allow BC1.2
> > + * detection to complete before PD is eventually enabled
> > + * in later states.
> > + */
> > + tcpm_set_state(port, SNK_STARTUP,
> > + port->timings.snk_bc12_cmpletion_time);
> > break;
> > case SNK_STARTUP:
> > opmode = tcpm_get_pwr_opmode(port->polarity ?
> > @@ -7090,6 +7100,10 @@ static void tcpm_fw_get_timings(struct tcpm_port *port, struct fwnode_handle *fw
> > port->timings.cc_debounce_time = val;
> > else
> > port->timings.cc_debounce_time = PD_T_CC_DEBOUNCE;
> > +
> > + ret = fwnode_property_read_u32(fwnode, "sink-bc12-completion-time-ms", &val);
> > + if (!ret)
> > + port->timings.snk_bc12_cmpletion_time = val;
> > }
> > static int tcpm_fw_get_caps(struct tcpm_port *port, struct fwnode_handle *fwnode)
>
>
> I wanted to gently follow up with you on this patchset if this looks okay to
> you?
Sorry, this is okay by me. I thought that there's still some problem
with the device property itself, but I must have misunderstood.
Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
--
heikki
prev parent reply other threads:[~2024-11-15 7:20 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-03 3:43 [PATCH v2 0/3] Add new time property for battery charger type detection Amit Sunil Dhamne
2024-11-03 3:43 ` [PATCH v2 1/3] dt-bindings: connector: Add time property for Sink BC12 detection completion Amit Sunil Dhamne
2024-11-03 3:43 ` [PATCH v2 2/3] dt-bindings: usb: maxim,max33359: add usage of sink bc12 time property Amit Sunil Dhamne
2024-11-03 5:22 ` Rob Herring (Arm)
2024-11-04 14:41 ` Rob Herring
2024-11-03 3:43 ` [PATCH v2 3/3] usb: typec: tcpm: Add support for sink-bc12-completion-time-ms DT property Amit Sunil Dhamne
2024-11-14 19:59 ` Amit Sunil Dhamne
2024-11-15 7:19 ` Heikki Krogerus [this message]
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=Zzb2CxPPZc09WfqV@kuha.fi.intel.com \
--to=heikki.krogerus@linux.intel.com \
--cc=amitsd@google.com \
--cc=badhri@google.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=krzk+dt@kernel.org \
--cc=kyletso@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=rdbabiera@google.com \
--cc=robh@kernel.org \
--cc=xu.yang_2@nxp.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.