All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc
@ 2016-11-22  9:03 Adrian Hunter
  2016-11-22  9:03 ` [PATCH 1/2] mmc: sdhci-pci: Add support for Intel GLK Adrian Hunter
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Adrian Hunter @ 2016-11-22  9:03 UTC (permalink / raw)
  To: Ulf Hansson; +Cc: linux-mmc, David E. Box

Hi

Here are a couple of small patches.


Adrian Hunter (1):
  mmc: sdhci-pci: Add support for Intel GLK

David E. Box (1):
  mmc: sdhci-pci: Allow deferred probe for sd card detect gpio

 drivers/mmc/host/sdhci-pci-core.c | 42 +++++++++++++++++++++++++++++++++------
 drivers/mmc/host/sdhci-pci.h      |  3 +++
 2 files changed, 39 insertions(+), 6 deletions(-)


Regards
Adrian

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/2] mmc: sdhci-pci: Add support for Intel GLK
  2016-11-22  9:03 [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Adrian Hunter
@ 2016-11-22  9:03 ` Adrian Hunter
  2016-11-22  9:03 ` [PATCH 2/2] mmc: sdhci-pci: Allow deferred probe for sd card detect gpio Adrian Hunter
  2016-11-23 12:49 ` [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Ulf Hansson
  2 siblings, 0 replies; 4+ messages in thread
From: Adrian Hunter @ 2016-11-22  9:03 UTC (permalink / raw)
  To: Ulf Hansson; +Cc: linux-mmc, David E. Box

Add support for eMMC/SD/SDIO Intel GLK host controllers.

Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
---
 drivers/mmc/host/sdhci-pci-core.c | 27 ++++++++++++++++++++++++++-
 drivers/mmc/host/sdhci-pci.h      |  3 +++
 2 files changed, 29 insertions(+), 1 deletion(-)

diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
index 1d9e00a00e9f..501098e65b0e 100644
--- a/drivers/mmc/host/sdhci-pci-core.c
+++ b/drivers/mmc/host/sdhci-pci-core.c
@@ -390,7 +390,8 @@ static int byt_sd_probe_slot(struct sdhci_pci_slot *slot)
 	slot->cd_override_level = true;
 	if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXT_SD ||
 	    slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXTM_SD ||
-	    slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_APL_SD) {
+	    slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_APL_SD ||
+	    slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_SD) {
 		slot->host->mmc_host_ops.get_cd = bxt_get_cd;
 		slot->host->mmc->caps |= MMC_CAP_AGGRESSIVE_PM;
 	}
@@ -1277,6 +1278,30 @@ static int amd_probe(struct sdhci_pci_chip *chip)
 	},
 
 	{
+		.vendor		= PCI_VENDOR_ID_INTEL,
+		.device		= PCI_DEVICE_ID_INTEL_GLK_EMMC,
+		.subvendor	= PCI_ANY_ID,
+		.subdevice	= PCI_ANY_ID,
+		.driver_data	= (kernel_ulong_t)&sdhci_intel_byt_emmc,
+	},
+
+	{
+		.vendor		= PCI_VENDOR_ID_INTEL,
+		.device		= PCI_DEVICE_ID_INTEL_GLK_SDIO,
+		.subvendor	= PCI_ANY_ID,
+		.subdevice	= PCI_ANY_ID,
+		.driver_data	= (kernel_ulong_t)&sdhci_intel_byt_sdio,
+	},
+
+	{
+		.vendor		= PCI_VENDOR_ID_INTEL,
+		.device		= PCI_DEVICE_ID_INTEL_GLK_SD,
+		.subvendor	= PCI_ANY_ID,
+		.subdevice	= PCI_ANY_ID,
+		.driver_data	= (kernel_ulong_t)&sdhci_intel_byt_sd,
+	},
+
+	{
 		.vendor		= PCI_VENDOR_ID_O2,
 		.device		= PCI_DEVICE_ID_O2_8120,
 		.subvendor	= PCI_ANY_ID,
diff --git a/drivers/mmc/host/sdhci-pci.h b/drivers/mmc/host/sdhci-pci.h
index 6bccf56bc5ff..4abdaed72bd4 100644
--- a/drivers/mmc/host/sdhci-pci.h
+++ b/drivers/mmc/host/sdhci-pci.h
@@ -34,6 +34,9 @@
 #define PCI_DEVICE_ID_INTEL_APL_SD	0x5aca
 #define PCI_DEVICE_ID_INTEL_APL_EMMC	0x5acc
 #define PCI_DEVICE_ID_INTEL_APL_SDIO	0x5ad0
+#define PCI_DEVICE_ID_INTEL_GLK_SD	0x31ca
+#define PCI_DEVICE_ID_INTEL_GLK_EMMC	0x31cc
+#define PCI_DEVICE_ID_INTEL_GLK_SDIO	0x31d0
 
 /*
  * PCI registers
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] mmc: sdhci-pci: Allow deferred probe for sd card detect gpio
  2016-11-22  9:03 [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Adrian Hunter
  2016-11-22  9:03 ` [PATCH 1/2] mmc: sdhci-pci: Add support for Intel GLK Adrian Hunter
@ 2016-11-22  9:03 ` Adrian Hunter
  2016-11-23 12:49 ` [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Ulf Hansson
  2 siblings, 0 replies; 4+ messages in thread
From: Adrian Hunter @ 2016-11-22  9:03 UTC (permalink / raw)
  To: Ulf Hansson; +Cc: linux-mmc, David E. Box

From: "David E. Box" <david.e.box@linux.intel.com>

With commit f35bbf61ab77 ("gpio / ACPI: Return -EPROBE_DEFER if the
gpiochip was not found"), a gpio descriptor request can now be deferred if
the providing gpio host controller driver hasn't been loaded yet. Allow use
in mmc slot probe in order to prevent card detect gpio setup from failing
in this case.

Signed-off-by: David E. Box <david.e.box@linux.intel.com>
---
 drivers/mmc/host/sdhci-pci-core.c | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c
index 501098e65b0e..2d20fb60ce83 100644
--- a/drivers/mmc/host/sdhci-pci-core.c
+++ b/drivers/mmc/host/sdhci-pci-core.c
@@ -1760,11 +1760,16 @@ static struct sdhci_pci_slot *sdhci_pci_probe_slot(
 	host->mmc->slotno = slotno;
 	host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
 
-	if (slot->cd_idx >= 0 &&
-	    mmc_gpiod_request_cd(host->mmc, slot->cd_con_id, slot->cd_idx,
-				 slot->cd_override_level, 0, NULL)) {
-		dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
-		slot->cd_idx = -1;
+	if (slot->cd_idx >= 0) {
+		ret = mmc_gpiod_request_cd(host->mmc, slot->cd_con_id, slot->cd_idx,
+					   slot->cd_override_level, 0, NULL);
+		if (ret == -EPROBE_DEFER)
+			goto remove;
+
+		if (ret) {
+			dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
+			slot->cd_idx = -1;
+		}
 	}
 
 	ret = sdhci_add_host(host);
-- 
1.9.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc
  2016-11-22  9:03 [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Adrian Hunter
  2016-11-22  9:03 ` [PATCH 1/2] mmc: sdhci-pci: Add support for Intel GLK Adrian Hunter
  2016-11-22  9:03 ` [PATCH 2/2] mmc: sdhci-pci: Allow deferred probe for sd card detect gpio Adrian Hunter
@ 2016-11-23 12:49 ` Ulf Hansson
  2 siblings, 0 replies; 4+ messages in thread
From: Ulf Hansson @ 2016-11-23 12:49 UTC (permalink / raw)
  To: Adrian Hunter; +Cc: linux-mmc, David E. Box

On 22 November 2016 at 10:03, Adrian Hunter <adrian.hunter@intel.com> wrote:
> Hi
>
> Here are a couple of small patches.
>
>
> Adrian Hunter (1):
>   mmc: sdhci-pci: Add support for Intel GLK
>
> David E. Box (1):
>   mmc: sdhci-pci: Allow deferred probe for sd card detect gpio
>
>  drivers/mmc/host/sdhci-pci-core.c | 42 +++++++++++++++++++++++++++++++++------
>  drivers/mmc/host/sdhci-pci.h      |  3 +++
>  2 files changed, 39 insertions(+), 6 deletions(-)
>

Thanks, applied for next!

Kind regards
Uffe

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-11-23 12:49 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-22  9:03 [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Adrian Hunter
2016-11-22  9:03 ` [PATCH 1/2] mmc: sdhci-pci: Add support for Intel GLK Adrian Hunter
2016-11-22  9:03 ` [PATCH 2/2] mmc: sdhci-pci: Allow deferred probe for sd card detect gpio Adrian Hunter
2016-11-23 12:49 ` [PATCH 0/2] mmc: sdhci-pci: Add GLK support and misc Ulf Hansson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.