usb: typec: tcpm: Ignore CC and vbus changes in PORT_RESET change
After PORT_RESET, the port is set to the appropriate default_state. Ignore processing CC changes here as this could cause the port to be switched into sink states by default. echo source > /sys/class/typec/port0/port_type Before: [ 154.528547] pending state change PORT_RESET -> PORT_RESET_WAIT_OFF @ 100 ms [ 154.528560] CC1: 0 -> 0, CC2: 3 -> 0 [state PORT_RESET, polarity 0, disconnected] [ 154.528564] state change PORT_RESET -> SNK_UNATTACHED After: [ 151.068814] pending state change PORT_RESET -> PORT_RESET_WAIT_OFF @ 100 ms [rev3 NONE_AMS] [ 151.072440] CC1: 3 -> 0, CC2: 0 -> 0 [state PORT_RESET, polarity 0, disconnected] [ 151.172117] state change PORT_RESET -> PORT_RESET_WAIT_OFF [delayed 100 ms] [ 151.172136] pending state change PORT_RESET_WAIT_OFF -> SRC_UNATTACHED @ 870 ms [rev3 NONE_AMS] [ 152.060106] state change PORT_RESET_WAIT_OFF -> SRC_UNATTACHED [delayed 870 ms] [ 152.060118] Start toggling Signed-off-by: Badhri Jagan Sridharan <badhri@google.com> Cc: stable <stable@vger.kernel.org> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20200402215947.176577-1-badhri@google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
1c2e54fbf1
Коммит
901789745a
|
@ -3794,6 +3794,14 @@ static void _tcpm_cc_change(struct tcpm_port *port, enum typec_cc_status cc1,
|
||||||
*/
|
*/
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PORT_RESET:
|
||||||
|
case PORT_RESET_WAIT_OFF:
|
||||||
|
/*
|
||||||
|
* State set back to default mode once the timer completes.
|
||||||
|
* Ignore CC changes here.
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (tcpm_port_is_disconnected(port))
|
if (tcpm_port_is_disconnected(port))
|
||||||
tcpm_set_state(port, unattached_state(port), 0);
|
tcpm_set_state(port, unattached_state(port), 0);
|
||||||
|
@ -3855,6 +3863,15 @@ static void _tcpm_pd_vbus_on(struct tcpm_port *port)
|
||||||
case SRC_TRY_DEBOUNCE:
|
case SRC_TRY_DEBOUNCE:
|
||||||
/* Do nothing, waiting for sink detection */
|
/* Do nothing, waiting for sink detection */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PORT_RESET:
|
||||||
|
case PORT_RESET_WAIT_OFF:
|
||||||
|
/*
|
||||||
|
* State set back to default mode once the timer completes.
|
||||||
|
* Ignore vbus changes here.
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -3908,10 +3925,19 @@ static void _tcpm_pd_vbus_off(struct tcpm_port *port)
|
||||||
case PORT_RESET_WAIT_OFF:
|
case PORT_RESET_WAIT_OFF:
|
||||||
tcpm_set_state(port, tcpm_default_state(port), 0);
|
tcpm_set_state(port, tcpm_default_state(port), 0);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case SRC_TRY_WAIT:
|
case SRC_TRY_WAIT:
|
||||||
case SRC_TRY_DEBOUNCE:
|
case SRC_TRY_DEBOUNCE:
|
||||||
/* Do nothing, waiting for sink detection */
|
/* Do nothing, waiting for sink detection */
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PORT_RESET:
|
||||||
|
/*
|
||||||
|
* State set back to default mode once the timer completes.
|
||||||
|
* Ignore vbus changes here.
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (port->pwr_role == TYPEC_SINK &&
|
if (port->pwr_role == TYPEC_SINK &&
|
||||||
port->attached)
|
port->attached)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче