From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adrian Hunter Subject: Re: [PATCH 2/2] mmc: sdhci-acpi: Ensure connected devices are powered when probing Date: Fri, 20 May 2016 10:04:50 +0300 Message-ID: <573EB712.4030504@intel.com> References: <1463664342-19209-1-git-send-email-ulf.hansson@linaro.org> <1463664342-19209-2-git-send-email-ulf.hansson@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Return-path: Received: from mga11.intel.com ([192.55.52.93]:30840 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751903AbcETHIu (ORCPT ); Fri, 20 May 2016 03:08:50 -0400 In-Reply-To: <1463664342-19209-2-git-send-email-ulf.hansson@linaro.org> Sender: linux-acpi-owner@vger.kernel.org List-Id: linux-acpi@vger.kernel.org To: Ulf Hansson Cc: linux-mmc@vger.kernel.org, "Rafael J. Wysocki" , Len Brown , linux-acpi@vger.kernel.org, Laszlo Fiat , Nicholas Krause , stable@vger.kernel.org On 19/05/16 16:25, Ulf Hansson wrote: > From: Adrian Hunter > > Some devices connected to the SDHCI controller may have separate enabling > lines that are controlled through GPIO. These devices need to be powered > on and enabled before probing. This is to ensure all devices connected can > be seen by the controller. > I have noticed that stable can get dependent patches the wrong way around (breaking bisectability) when they are not explicitly defined as dependent. For that reason, I was going to put the EXPORT of acpi_device_fix_up_power() into this patch. I think we need at least to mention in this patch that it is dependent on the other patch. Also I have more information here: Reported-by: Laszlo Fiat Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=112571 Link: http://lkml.kernel.org/r/CA+7w51inLtQSr656bJvOjGG9oQWKYPXH+xxDPJKbeJ=CcrkS9Q@mail.gmail.com > Signed-off-by: Adrian Hunter > Tested-by: Laszlo Fiat > Cc: # 4.5+ > Signed-off-by: Ulf Hansson > --- > drivers/mmc/host/sdhci-acpi.c | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/drivers/mmc/host/sdhci-acpi.c b/drivers/mmc/host/sdhci-acpi.c > index b2d70ba..2d1c4870 100644 > --- a/drivers/mmc/host/sdhci-acpi.c > +++ b/drivers/mmc/host/sdhci-acpi.c > @@ -378,7 +378,7 @@ static int sdhci_acpi_probe(struct platform_device *pdev) > { > struct device *dev = &pdev->dev; > acpi_handle handle = ACPI_HANDLE(dev); > - struct acpi_device *device; > + struct acpi_device *device, *child; > struct sdhci_acpi_host *c; > struct sdhci_host *host; > struct resource *iomem; > @@ -390,6 +390,11 @@ static int sdhci_acpi_probe(struct platform_device *pdev) > if (acpi_bus_get_device(handle, &device)) > return -ENODEV; > > + /* Power on the SDHCI controller and its children */ > + acpi_device_fix_up_power(device); > + list_for_each_entry(child, &device->children, node) > + acpi_device_fix_up_power(child); > + > if (acpi_bus_get_status(device) || !device->status.present) > return -ENODEV; > >