linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Angus Ainslie <angus@akkea.ca>
To: linux@roeck-us.net
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3] usb: typec: get the vbus source and charge values from  the devicetree
Date: Wed, 12 Sep 2018 10:08:58 -0600	[thread overview]
Message-ID: <9d7431e51aa069f288dd4bf39e9db9f1@www.akkea.ca> (raw)
In-Reply-To: <8A418EC6-62A4-4354-8928-7693696409D1@gmail.com>

On 2018-09-11 09:33, Guenter Roeck wrote:
> I cant put my finger on it but this seems wrong. As i said both src
> and sink should never be true at the same time. I also din’t
> understand why turning off src should power off your board. Ultimately
> my concern is that we may be just painting over the real problem, and
> that would be really bad to do with dt properties.
> 

I agree that this doesn't seem like the correct way of solving the 
problem. On this HW (Emcraft iMX8M BSB) I think the PTN5110 chip has 
been connected correctly so I'm assuming that it is some quirk of the 
PTN5110.

I didn't design the HW or the chip. This is a workaround for "quirky" 
hardware and there may be others that don't behave exactly as expected.

> Note that sending to groeck7@ makes it hard for me to see your emails
> and to reply. Using linux@roeck-us.net would be much better.
> 

Ok, I think that email was grabbed from the driver source.

> Guenter
> 
> Sent from my iPhone
> 
>> On Sep 11, 2018, at 7:59 AM, Angus Ainslie (Purism) <angus@akkea.ca> 
>> wrote:
>> 
>> If the board is being powered by USB disabling the source and sink
>> can remove power from the board. Allow the source and sink to be
>> initallized based on devicetree values.
>> 
>> Changed since V2:
>> 
>> Change the devicetree documentation.
>> Change the devicetree property names.
>> 
>> Changed since V1:
>> 
>> use devicetree values instead of hardcoded initialization.
>> 
>> Signed-off-by: Angus Ainslie (Purism) <angus@akkea.ca>
>> ---
>> .../devicetree/bindings/usb/typec-tcpci.txt        |  6 ++++++
>> drivers/usb/typec/tcpm.c                           | 14 +++++++++++---
>> 2 files changed, 17 insertions(+), 3 deletions(-)
>> 
>> diff --git a/Documentation/devicetree/bindings/usb/typec-tcpci.txt 
>> b/Documentation/devicetree/bindings/usb/typec-tcpci.txt
>> index 0dd1469e7318..b07418ae6482 100644
>> --- a/Documentation/devicetree/bindings/usb/typec-tcpci.txt
>> +++ b/Documentation/devicetree/bindings/usb/typec-tcpci.txt
>> @@ -15,6 +15,12 @@ Required sub-node:
>>   of connector node are specified in
>>   Documentation/devicetree/bindings/connector/usb-connector.txt
>> 
>> +Optional properties for usb-c-connector sub-node:
>> +- init-vbus-source: set the initalization value for vbus-source to 
>> true.
>> +  If this property is not present the initial value will be false.
>> +- init-vbus-sink: set the initalization value for vbus-sink to true.
>> +  If this property is not present the initial value will be false.
>> +
>> Example:
>> 
>> ptn5110@50 {
>> diff --git a/drivers/usb/typec/tcpm.c b/drivers/usb/typec/tcpm.c
>> index ca7bedb46f7f..10c14ece3858 100644
>> --- a/drivers/usb/typec/tcpm.c
>> +++ b/drivers/usb/typec/tcpm.c
>> @@ -2462,9 +2462,7 @@ static int tcpm_init_vbus(struct tcpm_port 
>> *port)
>> {
>>    int ret;
>> 
>> -    ret = port->tcpc->set_vbus(port->tcpc, false, false);
>> -    port->vbus_source = false;
>> -    port->vbus_charge = false;
>> +    ret = port->tcpc->set_vbus(port->tcpc, port->vbus_source, 
>> port->vbus_charge);
>>    return ret;
>> }
>> 
>> @@ -4266,6 +4264,16 @@ static int tcpm_fw_get_caps(struct tcpm_port 
>> *port,
>>        return -EINVAL;
>>    port->port_type = port->typec_caps.type;
>> 
>> +    if (fwnode_property_present(fwnode, "init-vbus-source"))
>> +        port->vbus_source = true;
>> +    else
>> +        port->vbus_source = false;
>> +
>> +    if (fwnode_property_present(fwnode, "init-vbus-sink"))
>> +            port->vbus_charge = true;
>> +    else
>> +            port->vbus_charge = false;
>> +
>>    if (port->port_type == TYPEC_PORT_SNK)
>>        goto sink;
>> 
>> --
>> 2.17.1
>> 


  reply	other threads:[~2018-09-12 16:09 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-06 19:26 [PATCH] usb: typec: don't disable sink or source on initialization Angus Ainslie (Purism)
2018-09-07  9:39 ` Sergei Shtylyov
2018-09-07 10:34 ` Heikki Krogerus
2018-09-07 12:55   ` Guenter Roeck
2018-09-09 14:08     ` Angus Ainslie
2018-09-09 14:20       ` Guenter Roeck
2018-09-09 14:36         ` Angus Ainslie
2018-09-09 14:43           ` Guenter Roeck
2018-09-09 18:05 ` [PATCH v2] usb: typec: get the vbus source and charge values from the devicetree Angus Ainslie (Purism)
2018-09-09 19:52   ` Guenter Roeck
2018-09-09 20:09   ` Angus Ainslie
2018-09-10  7:35   ` Heikki Krogerus
2018-09-10 13:11     ` Angus Ainslie
2018-09-10 13:43       ` Guenter Roeck
2018-09-10 14:32         ` Angus Ainslie
2018-09-10 13:49       ` Heikki Krogerus
2018-09-11 14:59 ` [PATCH v3] " Angus Ainslie (Purism)
2018-09-11 15:33   ` Guenter Roeck
2018-09-12 16:08     ` Angus Ainslie [this message]
2018-09-12 16:32       ` Guenter Roeck
2018-09-13  7:27         ` Peter Chen
2018-09-13 11:10           ` Angus Ainslie
2018-09-13 17:34             ` Guenter Roeck
2018-09-14  0:38               ` Jun Li
2018-09-14  0:25             ` Jun Li

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=9d7431e51aa069f288dd4bf39e9db9f1@www.akkea.ca \
    --to=angus@akkea.ca \
    --cc=gregkh@linuxfoundation.org \
    --cc=heikki.krogerus@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=linux@roeck-us.net \
    /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;
as well as URLs for NNTP newsgroup(s).