From: Bin Gao <bin.gao@linux.intel.com>
To: Felipe Balbi <felipe.balbi@linux.intel.com>
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
Bin Gao <bin.gao@intel.com>,
Chandra Sekhar Anagani <chandra.sekhar.anagani@intel.com>,
Pranav Tipnis <pranav.tipnis@intel.com>
Subject: Re: [PATCH v2 1/2] usb: typec: Add USB Power Delivery sink port support
Date: Wed, 27 Jul 2016 10:32:27 -0700 [thread overview]
Message-ID: <20160727173227.GB169011@worksta> (raw)
In-Reply-To: <87wpk7fqh4.fsf@linux.intel.com>
On Wed, Jul 27, 2016 at 11:13:43AM +0300, Felipe Balbi wrote:
>
> Hi,
>
> Bin Gao <bin.gao@linux.intel.com> writes:
> > This patch implements a simple USB Power Delivery sink port state machine.
> > It assumes the hardware only handles PD packet transmitting and receiving
> > over the CC line of the USB Type-C connector. The state transition is
> > completely controlled by software. This patch only implement the sink port
> > function and it doesn't support source port and port swap yet.
> >
> > This patch depends on these two patches:
> > https://lkml.org/lkml/2016/6/29/349
> > https://lkml.org/lkml/2016/6/29/350
> >
> > Signed-off-by: Bin Gao <bin.gao@intel.com>
> > Changes in v2:
> > - Removed work queue so messages are directly handled in phy driver's interrupt context
> > - used pr_debug instead of pr_info for message dump
> > - Converted PD driver to tristate and typec driver is independent of it
>
> this should be after the tearline (---) below. We don't want this in
> changelog ;-)
>
> > +static void handle_source_cap(struct pd_sink_port *port, u8 msg_revision,
> > + u8 nr_objs, u8 *buf)
> > +{
> > + int i;
> > + u32 *obj;
> > + u8 type;
> > + struct pd_source_cap *cap = port->source_caps;
> > +
> > + /*
> > + * The PD spec revision included in SOURCE_CAPABILITY message is the
> > + * highest revision that the Source supports.
> > + */
> > + port->pd_rev = msg_revision;
> > +
> > + /*
> > + * First we need to save all PDOs - they may be used in the future.
> > + * USB PD spec says we must use PDOs in the most recent
> > + * SOURCE_CAPABILITY message. Here we replace old PDOs with new ones.
> > + */
> > + port->nr_source_caps = 0;
> > + for (i = 0; i < nr_objs; i++) {
> > + obj = (u32 *)(buf + i * PD_OBJ_SIZE);
> > + type = (*obj >> SOURCE_CAP_TYPE_BIT) & SOURCE_CAP_TYPE_MASK;
> > + switch (type) {
> > + case PS_TYPE_FIXED:
> > + cap->ps_type = PS_TYPE_FIXED;
> > + cap->fixed = *(struct pd_pdo_src_fixed *)obj;
> > + break;
> > + case PS_TYPE_VARIABLE:
> > + cap->ps_type = PS_TYPE_VARIABLE;
> > + cap->variable = *(struct pd_pdo_variable *)obj;
> > + break;
> > + case PS_TYPE_BATTERY:
> > + cap->ps_type = PS_TYPE_BATTERY;
> > + cap->battery = *(struct pd_pdo_battery *)obj;
> > + break;
> > + default: /* shouldn't come here */
> > + pr_err("Invalid Source Capability type: %u.\n", type);
> > + continue;
> > + }
> > + port->nr_source_caps++;
> > + cap++;
> > + }
> > +
> > + if (port->nr_source_caps == 0) {
> > + pr_err("There is no valid PDOs in SOURCE_CAPABILITY message\n");
> > + return;
> > + }
> > +
> > + /* If a contract is not established, we need send a REQUEST message */
> > + if (port->state == PD_SINK_STATE_WAIT_FOR_SRC_CAP) {
>
> this is wrong. Read the fluxchart in figure 8-42. Source can decide to
> send another Source Capability before receiving our Good CRC and we need
> to work with that. This state check is, at a minimum, wrong. I'd
> actually just go ahead and remove it.
>
> > + if (!send_request(port))
> > + port->state = PD_SINK_STATE_REQUEST_SENT;
> > + }
> > +}
>
> --
> balbi
I'll fix these in next revision. Thanks for your review.
-Bin
next prev parent reply other threads:[~2016-07-27 17:28 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-26 18:37 [PATCH v2 1/2] usb: typec: Add USB Power Delivery sink port support Bin Gao
2016-07-27 8:13 ` Felipe Balbi
2016-07-27 17:32 ` Bin Gao [this message]
2016-07-27 9:21 ` Oliver Neukum
2016-07-27 17:31 ` Bin Gao
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=20160727173227.GB169011@worksta \
--to=bin.gao@linux.intel.com \
--cc=bin.gao@intel.com \
--cc=chandra.sekhar.anagani@intel.com \
--cc=felipe.balbi@linux.intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=heikki.krogerus@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=pranav.tipnis@intel.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.