RE: [PATCH 06/12] staging: typec: tcpci: enable vbus detection

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 




> -----Original Message-----
> From: Guenter Roeck [mailto:groeck7@xxxxxxxxx] On Behalf Of Guenter Roeck
> Sent: Tuesday, September 26, 2017 9:37 PM
> To: Jun Li <jun.li@xxxxxxx>; gregkh@xxxxxxxxxxxxxxxxxxx; robh+dt@xxxxxxxxxx;
> mark.rutland@xxxxxxx; heikki.krogerus@xxxxxxxxxxxxxxx
> Cc: yueyao@xxxxxxxxxx; o_leveque@xxxxxxxxx; Peter Chen
> <peter.chen@xxxxxxx>; A.s. Dong <aisheng.dong@xxxxxxx>; linux-
> usb@xxxxxxxxxxxxxxx; devicetree@xxxxxxxxxxxxxxx
> Subject: Re: [PATCH 06/12] staging: typec: tcpci: enable vbus detection
> 
> On 09/25/2017 05:45 PM, Li Jun wrote:
> > TCPCI implementation may need SW to enable VBUS detection to generate
> > power status events.
> >
> > Signed-off-by: Li Jun <jun.li@xxxxxxx>
> > ---
> >   drivers/staging/typec/tcpci.c | 23 +++++++++++++++++++++++
> >   1 file changed, 23 insertions(+)
> >
> > diff --git a/drivers/staging/typec/tcpci.c
> > b/drivers/staging/typec/tcpci.c index 6d608b4..851d026 100644
> > --- a/drivers/staging/typec/tcpci.c
> > +++ b/drivers/staging/typec/tcpci.c
> > @@ -313,6 +313,26 @@ static int tcpci_pd_transmit(struct tcpc_dev *tcpc,
> >   	return 0;
> >   }
> >
> > +static int tcpci_vbus_detect(struct tcpc_dev *tcpc, bool enable) {
> > +	struct tcpci *tcpci = tcpc_to_tcpci(tcpc);
> > +	int ret;
> > +
> > +	if (enable) {
> > +		ret = regmap_write(tcpci->regmap, TCPC_COMMAND,
> > +				   TCPC_CMD_ENABLE_VBUS_DETECT);
> > +		if (ret < 0)
> > +			return ret;
> > +	} else {
> > +		ret = regmap_write(tcpci->regmap, TCPC_COMMAND,
> > +				   TCPC_CMD_DISABLE_VBUS_DETECT);
> > +		if (ret < 0)
> > +			return ret;
> > +	}
> 
> This could be simplified to something like
> 
>          u8 cmd = enabled ? TCPC_CMD_ENABLE_VBUS_DETECT :
> TCPC_CMD_DISABLE_VBUS_DETECT;
> 
> 	return regmap_write(tcpci->regmap, TCPC_COMMAND, cmd);
> 
> though the question is why not just add a function named
> tcpci_vbus_detect_enable() since it is never disabled, at least not in this patch.

Will change to be tcpci_vbus_detect_enable().

> 
> > +
> > +	return 0;
> > +}
> > +
> >   static int tcpci_init(struct tcpc_dev *tcpc)
> >   {
> >   	struct tcpci *tcpci = tcpc_to_tcpci(tcpc); @@ -344,6 +364,9 @@
> > static int tcpci_init(struct tcpc_dev *tcpc)
> >   	if (ret < 0)
> >   		return ret;
> >
> > +	/* Enable Vbus detection */
> > +	tcpci_vbus_detect(tcpc, true);
> > +
> >   	reg = TCPC_ALERT_TX_SUCCESS | TCPC_ALERT_TX_FAILED |
> >   		TCPC_ALERT_TX_DISCARDED | TCPC_ALERT_RX_STATUS |
> >   		TCPC_ALERT_RX_HARD_RST | TCPC_ALERT_CC_STATUS;
> >

��.n��������+%������w��{.n�����{���)��jg��������ݢj����G�������j:+v���w�m������w�������h�����٥




[Index of Archives]     [Linux Media]     [Linux Input]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Old Linux USB Devel Archive]

  Powered by Linux