diff options
author | Adrian Hunter <adrian.hunter@intel.com> | 2014-09-24 11:27:31 +0400 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-10-03 16:24:52 +0400 |
commit | ff59c520b5fec9733d5402fdfa76fa4435a40bba (patch) | |
tree | 3a95e3a50726ec2b54d3099b2e986fab41cb5640 /drivers/mmc/host/sdhci-pci.h | |
parent | e58e4a0d14a5b8b6ab2aa2942cb2440e45c1f8c9 (diff) | |
download | linux-ff59c520b5fec9733d5402fdfa76fa4435a40bba.tar.xz |
mmc: sdhci-pci: Add Bay Trail and Braswell SD card detect
Add support for card detect for Bay Trail
and Braswell SD Card host controllers in PCI
mode.
This uses the gpio descriptor API which can find
gpio descriptors, for example, on an ACPI comapnion
device.
Signed-off-by: Adrian Hunter <adrian.hunter@intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'drivers/mmc/host/sdhci-pci.h')
-rw-r--r-- | drivers/mmc/host/sdhci-pci.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/mmc/host/sdhci-pci.h b/drivers/mmc/host/sdhci-pci.h index 9c1909b2a3ad..d57c3d169914 100644 --- a/drivers/mmc/host/sdhci-pci.h +++ b/drivers/mmc/host/sdhci-pci.h @@ -64,6 +64,10 @@ struct sdhci_pci_slot { int cd_gpio; int cd_irq; + char *cd_con_id; + int cd_idx; + bool cd_override_level; + void (*hw_reset)(struct sdhci_host *host); }; |