Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757688AbbGGOeN (ORCPT ); Tue, 7 Jul 2015 10:34:13 -0400 Received: from metis.ext.pengutronix.de ([92.198.50.35]:36522 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756962AbbGGOeG (ORCPT ); Tue, 7 Jul 2015 10:34:06 -0400 Subject: Re: [PATCH 1/2] net: can: c_can: Fix default pinmux glitch at init To: Roger Quadros , wg@grandegger.com, tony@atomide.com References: <1436279277-3386-1-git-send-email-rogerq@ti.com> <1436279277-3386-2-git-send-email-rogerq@ti.com> Cc: jay.schroeder@garmin.com, linux-can@vger.kernel.org, linux-omap@vger.kernel.org, linux-kernel@vger.kernel.org From: Marc Kleine-Budde X-Enigmail-Draft-Status: N1110 Message-ID: <559BE34F.8080508@pengutronix.de> Date: Tue, 7 Jul 2015 16:33:51 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Icedove/38.0 MIME-Version: 1.0 In-Reply-To: <1436279277-3386-2-git-send-email-rogerq@ti.com> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="uO06oFfE0uhTcICIJDRgqc2Jlq7aX6QdX" X-SA-Exim-Connect-IP: 2001:67c:670:201:5054:ff:fe8d:eefb X-SA-Exim-Mail-From: mkl@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3375 Lines: 92 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --uO06oFfE0uhTcICIJDRgqc2Jlq7aX6QdX Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On 07/07/2015 04:27 PM, Roger Quadros wrote: > From: "J.D. Schroeder" >=20 > The previous change 3973c526ae9c (net: can: c_can: Disable pins when CA= N interface > is down) causes a slight glitch on the pinctrl settings when used. Sinc= e > commit ab78029 (drivers/pinctrl: grab default handles from device core)= , > the device core will automatically set the default pins. This causes > the pins to be momentarily set to the default and then to the sleep > state in register_c_can_dev(). By adding an optional "enable" state, > boards can set the default pin state to be disabled and avoid the > glitch when the switch from default to sleep first occurs. If the > "enable" state is not available c_can_pinctrl_select_state() falls > back to using the "default" pinctrl state. >=20 > [Roger Q] - Forward port to v4.2 >=20 > Signed-off-by: J.D. Schroeder > Signed-off-by: Roger Quadros > --- > drivers/net/can/c_can/c_can.c | 13 ++++++++++++- > 1 file changed, 12 insertions(+), 1 deletion(-) >=20 > diff --git a/drivers/net/can/c_can/c_can.c b/drivers/net/can/c_can/c_ca= n.c > index 041525d..66e98e7 100644 > --- a/drivers/net/can/c_can/c_can.c > +++ b/drivers/net/can/c_can/c_can.c > @@ -605,7 +605,18 @@ static int c_can_start(struct net_device *dev) > priv->can.state =3D CAN_STATE_ERROR_ACTIVE; > =20 > /* activate pins */ > - pinctrl_pm_select_default_state(dev->dev.parent); > +#ifdef CONFIG_PINCTRL Please remove the ifdef, AFAICS there are static inline noop functions if CONFIG_PINCTRL switched off. > + if (priv->device->pins) { > + struct pinctrl_state *s; > + > + /* Attempt to use "active" if available else use "default" */ > + s =3D pinctrl_lookup_state(priv->device->pins->p, "active"); > + if (!IS_ERR(s)) > + pinctrl_select_state(priv->device->pins->p, s); > + else > + pinctrl_pm_select_default_state(dev->dev.parent); > + } > +#endif > return 0; > } > =20 >=20 Marc --=20 Pengutronix e.K. | Marc Kleine-Budde | Industrial Linux Solutions | Phone: +49-231-2826-924 | Vertretung West/Dortmund | Fax: +49-5121-206917-5555 | Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de | --uO06oFfE0uhTcICIJDRgqc2Jlq7aX6QdX Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBCgAGBQJVm+NPAAoJEP5prqPJtc/HXDIIAKL8VqKTBITTogJYoeL7fEy0 ggJKjxKi5FoEaHgzpPALzz3jIcmhP4BaJir0oTvnqZa2+4D7+cMX0EeuciJB05w/ 1XRHItVIPYnk7qMRI2QAmIMpzAptdi3sLLwIMU84XZN5nbNWov0QEuBrQTSLfR/H A2+cRc6aXPE8dRDDsTI6aR9zU/+mmewCn6OhXPVw98zNmjRWR8JvIufwwS6xdzE/ a/8tCenJl/34HbmrmqBB4VcxKLmUZhqZPdMXFzGgEYnPXP4MUBDeAK/nSWtHgAoE ttfhNnF5gyUcPIy+3rqFyj67J7cyAyKBfGbaxfh/ARUNe2ELR73HNtjyNNKCczM= =P2QU -----END PGP SIGNATURE----- --uO06oFfE0uhTcICIJDRgqc2Jlq7aX6QdX-- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/