Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757246Ab3J1R34 (ORCPT ); Mon, 28 Oct 2013 13:29:56 -0400 Received: from mail-oa0-f48.google.com ([209.85.219.48]:52632 "EHLO mail-oa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756643Ab3J1R3x convert rfc822-to-8bit (ORCPT ); Mon, 28 Oct 2013 13:29:53 -0400 MIME-Version: 1.0 In-Reply-To: <20131027201218.GA4414@earth.universe> References: <1382890469-25286-1-git-send-email-sre@debian.org> <1382890469-25286-3-git-send-email-sre@debian.org> <1382891056.102746625@f315.i.mail.ru> <20131027201218.GA4414@earth.universe> Date: Mon, 28 Oct 2013 19:29:52 +0200 Message-ID: Subject: Re: [PATCH 2/4] wl1251: move power GPIO handling into the driver From: Grazvydas Ignotas To: Alexander Shiyan , Luciano Coelho , Mark Rutland , devicetree@vger.kernel.org, Russell King , Pawel Moll , Ian Campbell , Tony Lindgren , Greg Kroah-Hartman , Stephen Warren , linux-doc@vger.kernel.org, "John W. Linville" , Rob Herring , "linux-kernel@vger.kernel.org" , Sachin Kamat , Bill Pemberton , Felipe Balbi , Rob Landley , netdev@vger.kernel.org, "linux-wireless@vger.kernel.org" , "linux-omap@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , Mark Brown Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2553 Lines: 59 On Sun, Oct 27, 2013 at 10:12 PM, Sebastian Reichel wrote: > On Sun, Oct 27, 2013 at 08:24:16PM +0400, Alexander Shiyan wrote: >> > Move the power GPIO handling from the board code into >> > the driver. This is a dependency for device tree support. >> > >> > Signed-off-by: Sebastian Reichel >> > --- >> > arch/arm/mach-omap2/board-omap3pandora.c | 2 ++ >> > arch/arm/mach-omap2/board-rx51-peripherals.c | 11 ++-------- >> > drivers/net/wireless/ti/wl1251/sdio.c | 21 +++++++++++++----- >> > drivers/net/wireless/ti/wl1251/spi.c | 33 ++++++++++++++++++---------- >> > drivers/net/wireless/ti/wl1251/wl1251.h | 2 +- >> > include/linux/wl12xx.h | 2 +- >> > 6 files changed, 43 insertions(+), 28 deletions(-) >> ... >> > diff --git a/include/linux/wl12xx.h b/include/linux/wl12xx.h >> > index b516b4f..a9c723b 100644 >> > --- a/include/linux/wl12xx.h >> > +++ b/include/linux/wl12xx.h >> > @@ -49,7 +49,7 @@ enum { >> > }; >> > >> > struct wl1251_platform_data { >> > - void (*set_power)(bool enable); >> > + int power_gpio; >> > /* SDIO only: IRQ number if WLAN_IRQ line is used, 0 for SDIO IRQs */ >> > int irq; >> > bool use_eeprom; >> > -- >> >> What a reason for not using regulator API here with GPIO-based >> regulator? > > I think this pin is not used as power supply, but like an enable pin > for low power states. Of course the regulator API could still be > (mis?)used for this, but I think it would be the first linux device > driver doing this. > > Note: I don't have wl1251 documentation. When wl12xx family of chips is connected through SDIO, we already have that pin set up as a regulator controlled with the help of mmc subsystem. When time comes to communicate with the chip, mmc subsystem sees this as yet another SD card and looks for associated regulator for it, and the board file has that set up as a fixed regulator controlling that pin (see pandora_vmmc3 in arch/arm/mach-omap2/board-omap3pandora.c). To prevent poweroff after first SDIO communications are over, pm_runtime calls are used in drivers/net/wireless/ti/wl1251/sdio.c . I don't know if something similar can be done done in SPI case, but I'm sure this is not the first your-so-called regulator misuse. GraÅžvydas -- 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/