Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934929AbdCWSv4 (ORCPT ); Thu, 23 Mar 2017 14:51:56 -0400 Received: from mail-wm0-f66.google.com ([74.125.82.66]:32834 "EHLO mail-wm0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751170AbdCWSvy (ORCPT ); Thu, 23 Mar 2017 14:51:54 -0400 Date: Thu, 23 Mar 2017 20:51:43 +0200 From: Krzysztof Kozlowski To: Charles Keepax Cc: tomasz.figa@gmail.com, s.nawrocki@samsung.com, linus.walleij@linaro.org, linux-arm-kernel@lists.infradead.org, linux-samsung-soc@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, patches@opensource.wolfsonmicro.com Subject: Re: [PATCH v3 1/2] pinctrl: samsung: Register pinctrl before GPIO Message-ID: <20170323185143.7nfgddujuie6ccws@kozik-lap> References: <1490202935-4708-1-git-send-email-ckeepax@opensource.wolfsonmicro.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1490202935-4708-1-git-send-email-ckeepax@opensource.wolfsonmicro.com> User-Agent: Mutt/1.6.2-neo (2016-08-21) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1464 Lines: 35 On Wed, Mar 22, 2017 at 05:15:34PM +0000, Charles Keepax wrote: > If we request a GPIO hog, then gpiochip_add_data will attempt > to request some of its own GPIOs. The driver also uses > gpiochip_generic_request which means that for any GPIO request to > succeed the pinctrl needs to be registered. Currently however the > driver registers the GPIO and then the pinctrl meaning all GPIO hog > requests will fail, which then in turn causes the whole driver to fail > probe. > > Fix this up by ensuring we register the pinctrl first. This > does require us to manually set the GPIO base for the > pinctrl. Fortunately the driver already assigns a fixed GPIO base, in > samsung_gpiolib_register, and uses the same calculation it does for > the pin_base. Meaning the two will always be the same and allowing us > to reuse the pinbase and avoid the issue. > > Although currently there are no users of GPIO hogs in mainline > there are plenty of Samsung based boards that are widely used for > development purposes of other hardware. Indeed we hit this issue > whilst attaching some additional hardware to an Arndale system. > > Signed-off-by: Charles Keepax > --- > > Changes since v2: > - Squash in fix to set the GPIO base on the pin_bank. > > drivers/pinctrl/samsung/pinctrl-samsung.c | 36 +++++++++++++++---------------- > 1 file changed, 18 insertions(+), 18 deletions(-) > Thanks, applied. Best regards, Krzysztof