* [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established
@ 2017-08-15 23:23 Badhri Jagan Sridharan
2017-08-16 3:30 ` Guenter Roeck
2017-08-17 17:54 ` Greg Kroah-Hartman
0 siblings, 2 replies; 4+ messages in thread
From: Badhri Jagan Sridharan @ 2017-08-15 23:23 UTC (permalink / raw)
To: Greg Kroah-Hartman, Guenter Roeck
Cc: devel, linux-kernel, Badhri Jagan Sridharan
While in SNK_READY state, the explicit_contract seems to be
set to true irrespective of whether an explicit contract
was established for the current connection. TCPM also seems
to report the pwr_opmode as TYPEC_PWR_MODE_PD always once
the port gets into SNK_READY state. This isn't completely
true as port gets into the SNK_READY state for non-pd
type-c ports as well.
This patch sets the explicit_contract flag only when
the PS_READY message is received and the vbus has been
detected by the port controller.
Signed-off-by: Badhri Jagan Sridharan <Badhri@google.com>
---
drivers/staging/typec/tcpm.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/staging/typec/tcpm.c b/drivers/staging/typec/tcpm.c
index a24e6bbb909c..3e12cf101311 100644
--- a/drivers/staging/typec/tcpm.c
+++ b/drivers/staging/typec/tcpm.c
@@ -1367,6 +1367,7 @@ static void tcpm_pd_ctrl_request(struct tcpm_port *port,
tcpm_set_current_limit(port,
port->current_limit,
port->supply_voltage);
+ port->explicit_contract = true;
tcpm_set_state(port, SNK_READY, 0);
} else {
/*
@@ -2458,10 +2459,11 @@ static void run_state_machine(struct tcpm_port *port)
break;
case SNK_READY:
port->try_snk_count = 0;
- port->explicit_contract = true;
- typec_set_pwr_opmode(port->typec_port, TYPEC_PWR_MODE_PD);
- port->pwr_opmode = TYPEC_PWR_MODE_PD;
-
+ if (port->explicit_contract) {
+ typec_set_pwr_opmode(port->typec_port,
+ TYPEC_PWR_MODE_PD);
+ port->pwr_opmode = TYPEC_PWR_MODE_PD;
+ }
tcpm_typec_connect(port);
tcpm_check_send_discover(port);
@@ -2951,6 +2953,7 @@ static void _tcpm_pd_vbus_on(struct tcpm_port *port)
port->vbus_present = true;
switch (port->state) {
case SNK_TRANSITION_SINK_VBUS:
+ port->explicit_contract = true;
tcpm_set_state(port, SNK_READY, 0);
break;
case SNK_DISCOVERY:
--
2.14.1.480.gb18f417b89-goog
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established
2017-08-15 23:23 [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established Badhri Jagan Sridharan
@ 2017-08-16 3:30 ` Guenter Roeck
2017-08-17 17:54 ` Greg Kroah-Hartman
1 sibling, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2017-08-16 3:30 UTC (permalink / raw)
To: Badhri Jagan Sridharan, Greg Kroah-Hartman; +Cc: devel, linux-kernel
On 08/15/2017 04:23 PM, Badhri Jagan Sridharan wrote:
> While in SNK_READY state, the explicit_contract seems to be
> set to true irrespective of whether an explicit contract
> was established for the current connection. TCPM also seems
> to report the pwr_opmode as TYPEC_PWR_MODE_PD always once
> the port gets into SNK_READY state. This isn't completely
> true as port gets into the SNK_READY state for non-pd
> type-c ports as well.
>
> This patch sets the explicit_contract flag only when
> the PS_READY message is received and the vbus has been
> detected by the port controller.
>
> Signed-off-by: Badhri Jagan Sridharan <Badhri@google.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/staging/typec/tcpm.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/staging/typec/tcpm.c b/drivers/staging/typec/tcpm.c
> index a24e6bbb909c..3e12cf101311 100644
> --- a/drivers/staging/typec/tcpm.c
> +++ b/drivers/staging/typec/tcpm.c
> @@ -1367,6 +1367,7 @@ static void tcpm_pd_ctrl_request(struct tcpm_port *port,
> tcpm_set_current_limit(port,
> port->current_limit,
> port->supply_voltage);
> + port->explicit_contract = true;
> tcpm_set_state(port, SNK_READY, 0);
> } else {
> /*
> @@ -2458,10 +2459,11 @@ static void run_state_machine(struct tcpm_port *port)
> break;
> case SNK_READY:
> port->try_snk_count = 0;
> - port->explicit_contract = true;
> - typec_set_pwr_opmode(port->typec_port, TYPEC_PWR_MODE_PD);
> - port->pwr_opmode = TYPEC_PWR_MODE_PD;
> -
> + if (port->explicit_contract) {
> + typec_set_pwr_opmode(port->typec_port,
> + TYPEC_PWR_MODE_PD);
> + port->pwr_opmode = TYPEC_PWR_MODE_PD;
> + }
> tcpm_typec_connect(port);
>
> tcpm_check_send_discover(port);
> @@ -2951,6 +2953,7 @@ static void _tcpm_pd_vbus_on(struct tcpm_port *port)
> port->vbus_present = true;
> switch (port->state) {
> case SNK_TRANSITION_SINK_VBUS:
> + port->explicit_contract = true;
> tcpm_set_state(port, SNK_READY, 0);
> break;
> case SNK_DISCOVERY:
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established
2017-08-15 23:23 [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established Badhri Jagan Sridharan
2017-08-16 3:30 ` Guenter Roeck
@ 2017-08-17 17:54 ` Greg Kroah-Hartman
2017-08-17 19:06 ` Badhri Jagan Sridharan
1 sibling, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2017-08-17 17:54 UTC (permalink / raw)
To: Badhri Jagan Sridharan; +Cc: Guenter Roeck, devel, linux-kernel
On Tue, Aug 15, 2017 at 04:23:39PM -0700, Badhri Jagan Sridharan wrote:
> While in SNK_READY state, the explicit_contract seems to be
> set to true irrespective of whether an explicit contract
> was established for the current connection. TCPM also seems
> to report the pwr_opmode as TYPEC_PWR_MODE_PD always once
> the port gets into SNK_READY state. This isn't completely
> true as port gets into the SNK_READY state for non-pd
> type-c ports as well.
>
> This patch sets the explicit_contract flag only when
> the PS_READY message is received and the vbus has been
> detected by the port controller.
>
> Signed-off-by: Badhri Jagan Sridharan <Badhri@google.com>
> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
> ---
> drivers/staging/typec/tcpm.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
This patch doesn't apply to the tree now that Guenter's other patches
are applied :(
Please rebase and resend.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established
2017-08-17 17:54 ` Greg Kroah-Hartman
@ 2017-08-17 19:06 ` Badhri Jagan Sridharan
0 siblings, 0 replies; 4+ messages in thread
From: Badhri Jagan Sridharan @ 2017-08-17 19:06 UTC (permalink / raw)
To: Greg Kroah-Hartman; +Cc: Guenter Roeck, devel, LKML
Greg,
Sure. Resending the patch based on
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
staging-testing branch.
Thanks,
Badhri
On Thu, Aug 17, 2017 at 10:54 AM, Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
> On Tue, Aug 15, 2017 at 04:23:39PM -0700, Badhri Jagan Sridharan wrote:
>> While in SNK_READY state, the explicit_contract seems to be
>> set to true irrespective of whether an explicit contract
>> was established for the current connection. TCPM also seems
>> to report the pwr_opmode as TYPEC_PWR_MODE_PD always once
>> the port gets into SNK_READY state. This isn't completely
>> true as port gets into the SNK_READY state for non-pd
>> type-c ports as well.
>>
>> This patch sets the explicit_contract flag only when
>> the PS_READY message is received and the vbus has been
>> detected by the port controller.
>>
>> Signed-off-by: Badhri Jagan Sridharan <Badhri@google.com>
>> Reviewed-by: Guenter Roeck <linux@roeck-us.net>
>> ---
>> drivers/staging/typec/tcpm.c | 11 +++++++----
>> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> This patch doesn't apply to the tree now that Guenter's other patches
> are applied :(
>
> Please rebase and resend.
>
> thanks,
>
> greg k-h
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-08-17 19:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-15 23:23 [PATCH 2/2] staging: typec: tcpm: explicit_contract is always established Badhri Jagan Sridharan
2017-08-16 3:30 ` Guenter Roeck
2017-08-17 17:54 ` Greg Kroah-Hartman
2017-08-17 19:06 ` Badhri Jagan Sridharan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox