* [PATCH v1] sdhci: pci: Fix up power if device has ACPI companion
@ 2017-07-24 15:07 Andy Shevchenko
2017-07-25 7:12 ` Adrian Hunter
2017-07-27 14:49 ` Ulf Hansson
0 siblings, 2 replies; 3+ messages in thread
From: Andy Shevchenko @ 2017-07-24 15:07 UTC (permalink / raw)
To: Adrian Hunter, Ulf Hansson, linux-mmc; +Cc: Andy Shevchenko
Fix up a power state in case PCI device has an ACPI companion.
Do it only for Intel Merrifield for now.
This is almost copy'n'paste of part of sdhci_acpi_probe() and might be
split out to a helper function in the future.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
drivers/mmc/host/sdhci-pci-core.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
index e1721ac37919..2c853cfa8389 100644
--- a/drivers/mmc/host/sdhci-pci-core.c
+++ b/drivers/mmc/host/sdhci-pci-core.c
@@ -730,6 +730,24 @@ static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
#define INTEL_MRFLD_SD 2
#define INTEL_MRFLD_SDIO 3
+#ifdef CONFIG_ACPI
+static void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot)
+{
+ struct acpi_device *device, *child;
+
+ device = ACPI_COMPANION(&slot->chip->pdev->dev);
+ if (!device)
+ return;
+
+ acpi_device_fix_up_power(device);
+ list_for_each_entry(child, &device->children, node)
+ if (child->status.present && child->status.enabled)
+ acpi_device_fix_up_power(child);
+}
+#else
+static inline void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot) {}
+#endif
+
static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
{
unsigned int func = PCI_FUNC(slot->chip->pdev->devfn);
@@ -751,6 +769,8 @@ static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
default:
return -ENODEV;
}
+
+ intel_mrfld_mmc_fix_up_power_slot(slot);
return 0;
}
--
2.13.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v1] sdhci: pci: Fix up power if device has ACPI companion
2017-07-24 15:07 [PATCH v1] sdhci: pci: Fix up power if device has ACPI companion Andy Shevchenko
@ 2017-07-25 7:12 ` Adrian Hunter
2017-07-27 14:49 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Adrian Hunter @ 2017-07-25 7:12 UTC (permalink / raw)
To: Andy Shevchenko, Ulf Hansson, linux-mmc
On 24/07/17 18:07, Andy Shevchenko wrote:
> Fix up a power state in case PCI device has an ACPI companion.
>
> Do it only for Intel Merrifield for now.
>
> This is almost copy'n'paste of part of sdhci_acpi_probe() and might be
> split out to a helper function in the future.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
Acked-by: Adrian Hunter <adrian.hunter@intel.com>
> drivers/mmc/host/sdhci-pci-core.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
> index e1721ac37919..2c853cfa8389 100644
> --- a/drivers/mmc/host/sdhci-pci-core.c
> +++ b/drivers/mmc/host/sdhci-pci-core.c
> @@ -730,6 +730,24 @@ static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
> #define INTEL_MRFLD_SD 2
> #define INTEL_MRFLD_SDIO 3
>
> +#ifdef CONFIG_ACPI
> +static void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot)
> +{
> + struct acpi_device *device, *child;
> +
> + device = ACPI_COMPANION(&slot->chip->pdev->dev);
> + if (!device)
> + return;
> +
> + acpi_device_fix_up_power(device);
> + list_for_each_entry(child, &device->children, node)
> + if (child->status.present && child->status.enabled)
> + acpi_device_fix_up_power(child);
> +}
> +#else
> +static inline void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot) {}
> +#endif
> +
> static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
> {
> unsigned int func = PCI_FUNC(slot->chip->pdev->devfn);
> @@ -751,6 +769,8 @@ static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
> default:
> return -ENODEV;
> }
> +
> + intel_mrfld_mmc_fix_up_power_slot(slot);
> return 0;
> }
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v1] sdhci: pci: Fix up power if device has ACPI companion
2017-07-24 15:07 [PATCH v1] sdhci: pci: Fix up power if device has ACPI companion Andy Shevchenko
2017-07-25 7:12 ` Adrian Hunter
@ 2017-07-27 14:49 ` Ulf Hansson
1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2017-07-27 14:49 UTC (permalink / raw)
To: Andy Shevchenko; +Cc: Adrian Hunter, linux-mmc@vger.kernel.org
On 24 July 2017 at 17:07, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
> Fix up a power state in case PCI device has an ACPI companion.
>
> Do it only for Intel Merrifield for now.
>
> This is almost copy'n'paste of part of sdhci_acpi_probe() and might be
> split out to a helper function in the future.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Thanks, applied for next!
Kind regards
Uffe
> ---
> drivers/mmc/host/sdhci-pci-core.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
> index e1721ac37919..2c853cfa8389 100644
> --- a/drivers/mmc/host/sdhci-pci-core.c
> +++ b/drivers/mmc/host/sdhci-pci-core.c
> @@ -730,6 +730,24 @@ static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
> #define INTEL_MRFLD_SD 2
> #define INTEL_MRFLD_SDIO 3
>
> +#ifdef CONFIG_ACPI
> +static void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot)
> +{
> + struct acpi_device *device, *child;
> +
> + device = ACPI_COMPANION(&slot->chip->pdev->dev);
> + if (!device)
> + return;
> +
> + acpi_device_fix_up_power(device);
> + list_for_each_entry(child, &device->children, node)
> + if (child->status.present && child->status.enabled)
> + acpi_device_fix_up_power(child);
> +}
> +#else
> +static inline void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot) {}
> +#endif
> +
> static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
> {
> unsigned int func = PCI_FUNC(slot->chip->pdev->devfn);
> @@ -751,6 +769,8 @@ static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
> default:
> return -ENODEV;
> }
> +
> + intel_mrfld_mmc_fix_up_power_slot(slot);
> return 0;
> }
>
> --
> 2.13.2
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-07-27 14:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-24 15:07 [PATCH v1] sdhci: pci: Fix up power if device has ACPI companion Andy Shevchenko
2017-07-25 7:12 ` Adrian Hunter
2017-07-27 14:49 ` Ulf Hansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox