2 * Secure Digital Host Controller Interface ACPI driver.
4 * Copyright (c) 2012, Intel Corporation.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <linux/init.h>
22 #include <linux/export.h>
23 #include <linux/module.h>
24 #include <linux/device.h>
25 #include <linux/platform_device.h>
26 #include <linux/ioport.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/compiler.h>
30 #include <linux/stddef.h>
31 #include <linux/bitops.h>
32 #include <linux/types.h>
33 #include <linux/err.h>
34 #include <linux/interrupt.h>
35 #include <linux/acpi.h>
37 #include <linux/pm_runtime.h>
38 #include <linux/delay.h>
40 #include <linux/mmc/host.h>
41 #include <linux/mmc/pm.h>
42 #include <linux/mmc/slot-gpio.h>
45 #include <asm/cpu_device_id.h>
46 #include <asm/intel-family.h>
47 #include <asm/iosf_mbi.h>
48 #include <linux/pci.h>
54 SDHCI_ACPI_SD_CD = BIT(0),
55 SDHCI_ACPI_RUNTIME_PM = BIT(1),
56 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
59 struct sdhci_acpi_chip {
60 const struct sdhci_ops *ops;
65 mmc_pm_flag_t pm_caps;
68 struct sdhci_acpi_slot {
69 const struct sdhci_acpi_chip *chip;
74 mmc_pm_flag_t pm_caps;
77 int (*probe_slot)(struct platform_device *, const char *, const char *);
78 int (*remove_slot)(struct platform_device *);
79 int (*free_slot)(struct platform_device *pdev);
80 int (*setup_host)(struct platform_device *pdev);
83 struct sdhci_acpi_host {
84 struct sdhci_host *host;
85 const struct sdhci_acpi_slot *slot;
86 struct platform_device *pdev;
88 unsigned long private[0] ____cacheline_aligned;
91 static inline void *sdhci_acpi_priv(struct sdhci_acpi_host *c)
93 return (void *)c->private;
96 static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
98 return c->slot && (c->slot->flags & flag);
101 #define INTEL_DSM_HS_CAPS_SDR25 BIT(0)
102 #define INTEL_DSM_HS_CAPS_DDR50 BIT(1)
103 #define INTEL_DSM_HS_CAPS_SDR50 BIT(2)
104 #define INTEL_DSM_HS_CAPS_SDR104 BIT(3)
108 INTEL_DSM_V18_SWITCH = 3,
109 INTEL_DSM_V33_SWITCH = 4,
110 INTEL_DSM_HS_CAPS = 8,
118 static const guid_t intel_dsm_guid =
119 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
120 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
122 static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
123 unsigned int fn, u32 *result)
125 union acpi_object *obj;
128 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
132 if (obj->type == ACPI_TYPE_INTEGER) {
133 *result = obj->integer.value;
134 } else if (obj->type == ACPI_TYPE_BUFFER && obj->buffer.length > 0) {
135 size_t len = min_t(size_t, obj->buffer.length, 4);
138 memcpy(result, obj->buffer.pointer, len);
140 dev_err(dev, "%s DSM fn %u obj->type %d obj->buffer.length %d\n",
141 __func__, fn, obj->type, obj->buffer.length);
150 static int intel_dsm(struct intel_host *intel_host, struct device *dev,
151 unsigned int fn, u32 *result)
153 if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
156 return __intel_dsm(intel_host, dev, fn, result);
159 static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
160 struct mmc_host *mmc)
164 intel_host->hs_caps = ~0;
166 err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
168 pr_debug("%s: DSM not supported, error %d\n",
169 mmc_hostname(mmc), err);
173 pr_debug("%s: DSM function mask %#x\n",
174 mmc_hostname(mmc), intel_host->dsm_fns);
176 intel_dsm(intel_host, dev, INTEL_DSM_HS_CAPS, &intel_host->hs_caps);
179 static int intel_start_signal_voltage_switch(struct mmc_host *mmc,
182 struct device *dev = mmc_dev(mmc);
183 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
184 struct intel_host *intel_host = sdhci_acpi_priv(c);
189 err = sdhci_start_signal_voltage_switch(mmc, ios);
193 switch (ios->signal_voltage) {
194 case MMC_SIGNAL_VOLTAGE_330:
195 fn = INTEL_DSM_V33_SWITCH;
197 case MMC_SIGNAL_VOLTAGE_180:
198 fn = INTEL_DSM_V18_SWITCH;
204 err = intel_dsm(intel_host, dev, fn, &result);
205 pr_debug("%s: %s DSM fn %u error %d result %u\n",
206 mmc_hostname(mmc), __func__, fn, err, result);
211 static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
215 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
217 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
218 /* For eMMC, minimum is 1us but give it 9us for good measure */
221 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
222 /* For eMMC, minimum is 200us but give it 300us for good measure */
223 usleep_range(300, 1000);
226 static const struct sdhci_ops sdhci_acpi_ops_dflt = {
227 .set_clock = sdhci_set_clock,
228 .set_bus_width = sdhci_set_bus_width,
229 .reset = sdhci_reset,
230 .set_uhs_signaling = sdhci_set_uhs_signaling,
233 static const struct sdhci_ops sdhci_acpi_ops_int = {
234 .set_clock = sdhci_set_clock,
235 .set_bus_width = sdhci_set_bus_width,
236 .reset = sdhci_reset,
237 .set_uhs_signaling = sdhci_set_uhs_signaling,
238 .hw_reset = sdhci_acpi_int_hw_reset,
241 static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
242 .ops = &sdhci_acpi_ops_int,
247 static bool sdhci_acpi_byt(void)
249 static const struct x86_cpu_id byt[] = {
250 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_SILVERMONT },
254 return x86_match_cpu(byt);
257 static bool sdhci_acpi_cht(void)
259 static const struct x86_cpu_id cht[] = {
260 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_AIRMONT },
264 return x86_match_cpu(cht);
267 #define BYT_IOSF_SCCEP 0x63
268 #define BYT_IOSF_OCP_NETCTRL0 0x1078
269 #define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
271 static void sdhci_acpi_byt_setting(struct device *dev)
275 if (!sdhci_acpi_byt())
278 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
280 dev_err(dev, "%s read error\n", __func__);
284 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
287 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
289 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
291 dev_err(dev, "%s write error\n", __func__);
295 dev_dbg(dev, "%s completed\n", __func__);
298 static bool sdhci_acpi_byt_defer(struct device *dev)
300 if (!sdhci_acpi_byt())
303 if (!iosf_mbi_available())
306 sdhci_acpi_byt_setting(dev);
311 static bool sdhci_acpi_cht_pci_wifi(unsigned int vendor, unsigned int device,
312 unsigned int slot, unsigned int parent_slot)
314 struct pci_dev *dev, *parent, *from = NULL;
317 dev = pci_get_device(vendor, device, from);
321 parent = pci_upstream_bridge(dev);
322 if (ACPI_COMPANION(&dev->dev) && PCI_SLOT(dev->devfn) == slot &&
323 parent && PCI_SLOT(parent->devfn) == parent_slot &&
324 !pci_upstream_bridge(parent)) {
335 * GPDwin uses PCI wifi which conflicts with SDIO's use of
336 * acpi_device_fix_up_power() on child device nodes. Identifying GPDwin is
337 * problematic, but since SDIO is only used for wifi, the presence of the PCI
338 * wifi card in the expected slot with an ACPI companion node, is used to
339 * indicate that acpi_device_fix_up_power() should be avoided.
341 static inline bool sdhci_acpi_no_fixup_child_power(const char *hid,
344 return sdhci_acpi_cht() &&
345 !strcmp(hid, "80860F14") &&
347 sdhci_acpi_cht_pci_wifi(0x14e4, 0x43ec, 0, 28);
352 static inline void sdhci_acpi_byt_setting(struct device *dev)
356 static inline bool sdhci_acpi_byt_defer(struct device *dev)
361 static inline bool sdhci_acpi_no_fixup_child_power(const char *hid,
369 static int bxt_get_cd(struct mmc_host *mmc)
371 int gpio_cd = mmc_gpio_get_cd(mmc);
372 struct sdhci_host *host = mmc_priv(mmc);
379 spin_lock_irqsave(&host->lock, flags);
381 if (host->flags & SDHCI_DEVICE_DEAD)
384 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
386 spin_unlock_irqrestore(&host->lock, flags);
391 static int intel_probe_slot(struct platform_device *pdev, const char *hid,
394 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
395 struct intel_host *intel_host = sdhci_acpi_priv(c);
396 struct sdhci_host *host = c->host;
398 if (hid && uid && !strcmp(hid, "80860F14") && !strcmp(uid, "1") &&
399 sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
400 sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
401 host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
403 if (hid && !strcmp(hid, "80865ACA"))
404 host->mmc_host_ops.get_cd = bxt_get_cd;
406 intel_dsm_init(intel_host, &pdev->dev, host->mmc);
408 host->mmc_host_ops.start_signal_voltage_switch =
409 intel_start_signal_voltage_switch;
414 static int intel_setup_host(struct platform_device *pdev)
416 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
417 struct intel_host *intel_host = sdhci_acpi_priv(c);
419 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR25))
420 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR25;
422 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR50))
423 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR50;
425 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_DDR50))
426 c->host->mmc->caps &= ~MMC_CAP_UHS_DDR50;
428 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR104))
429 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR104;
434 static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
435 .chip = &sdhci_acpi_chip_int,
436 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
437 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
438 MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
439 .flags = SDHCI_ACPI_RUNTIME_PM,
440 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
442 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
443 SDHCI_QUIRK2_STOP_WITH_TC |
444 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
445 .probe_slot = intel_probe_slot,
446 .setup_host = intel_setup_host,
447 .priv_size = sizeof(struct intel_host),
450 static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
451 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
453 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
454 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
455 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
456 MMC_CAP_WAIT_WHILE_BUSY,
457 .flags = SDHCI_ACPI_RUNTIME_PM,
458 .pm_caps = MMC_PM_KEEP_POWER,
459 .probe_slot = intel_probe_slot,
460 .setup_host = intel_setup_host,
461 .priv_size = sizeof(struct intel_host),
464 static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
465 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
466 SDHCI_ACPI_RUNTIME_PM,
467 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
469 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
470 SDHCI_QUIRK2_STOP_WITH_TC,
471 .caps = MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_AGGRESSIVE_PM,
472 .probe_slot = intel_probe_slot,
473 .setup_host = intel_setup_host,
474 .priv_size = sizeof(struct intel_host),
477 #define VENDOR_SPECIFIC_PWRCTL_CLEAR_REG 0x1a8
478 #define VENDOR_SPECIFIC_PWRCTL_CTL_REG 0x1ac
479 static irqreturn_t sdhci_acpi_qcom_handler(int irq, void *ptr)
481 struct sdhci_host *host = ptr;
483 sdhci_writel(host, 0x3, VENDOR_SPECIFIC_PWRCTL_CLEAR_REG);
484 sdhci_writel(host, 0x1, VENDOR_SPECIFIC_PWRCTL_CTL_REG);
489 static int qcom_probe_slot(struct platform_device *pdev, const char *hid,
492 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
493 struct sdhci_host *host = c->host;
494 int *irq = sdhci_acpi_priv(c);
498 if (strcmp(hid, "QCOM8051"))
501 *irq = platform_get_irq(pdev, 1);
505 return request_threaded_irq(*irq, NULL, sdhci_acpi_qcom_handler,
506 IRQF_ONESHOT | IRQF_TRIGGER_HIGH,
510 static int qcom_free_slot(struct platform_device *pdev)
512 struct device *dev = &pdev->dev;
513 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
514 struct sdhci_host *host = c->host;
515 struct acpi_device *adev;
516 int *irq = sdhci_acpi_priv(c);
519 adev = ACPI_COMPANION(dev);
523 hid = acpi_device_hid(adev);
524 if (strcmp(hid, "QCOM8051"))
530 free_irq(*irq, host);
534 static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
535 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
536 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
537 .caps = MMC_CAP_NONREMOVABLE,
538 .priv_size = sizeof(int),
539 .probe_slot = qcom_probe_slot,
540 .free_slot = qcom_free_slot,
543 static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
544 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
545 .caps = MMC_CAP_NONREMOVABLE,
548 /* AMD sdhci reset dll register. */
549 #define SDHCI_AMD_RESET_DLL_REGISTER 0x908
551 static int amd_select_drive_strength(struct mmc_card *card,
552 unsigned int max_dtr, int host_drv,
553 int card_drv, int *drv_type)
555 return MMC_SET_DRIVER_TYPE_A;
558 static void sdhci_acpi_amd_hs400_dll(struct sdhci_host *host)
560 /* AMD Platform requires dll setting */
561 sdhci_writel(host, 0x40003210, SDHCI_AMD_RESET_DLL_REGISTER);
562 usleep_range(10, 20);
563 sdhci_writel(host, 0x40033210, SDHCI_AMD_RESET_DLL_REGISTER);
567 * For AMD Platform it is required to disable the tuning
568 * bit first controller to bring to HS Mode from HS200
569 * mode, later enable to tune to HS400 mode.
571 static void amd_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
573 struct sdhci_host *host = mmc_priv(mmc);
574 unsigned int old_timing = host->timing;
576 sdhci_set_ios(mmc, ios);
577 if (old_timing == MMC_TIMING_MMC_HS200 &&
578 ios->timing == MMC_TIMING_MMC_HS)
579 sdhci_writew(host, 0x9, SDHCI_HOST_CONTROL2);
580 if (old_timing != MMC_TIMING_MMC_HS400 &&
581 ios->timing == MMC_TIMING_MMC_HS400) {
582 sdhci_writew(host, 0x80, SDHCI_HOST_CONTROL2);
583 sdhci_acpi_amd_hs400_dll(host);
587 static const struct sdhci_ops sdhci_acpi_ops_amd = {
588 .set_clock = sdhci_set_clock,
589 .set_bus_width = sdhci_set_bus_width,
590 .reset = sdhci_reset,
591 .set_uhs_signaling = sdhci_set_uhs_signaling,
594 static const struct sdhci_acpi_chip sdhci_acpi_chip_amd = {
595 .ops = &sdhci_acpi_ops_amd,
598 static int sdhci_acpi_emmc_amd_probe_slot(struct platform_device *pdev,
599 const char *hid, const char *uid)
601 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
602 struct sdhci_host *host = c->host;
604 sdhci_read_caps(host);
605 if (host->caps1 & SDHCI_SUPPORT_DDR50)
606 host->mmc->caps = MMC_CAP_1_8V_DDR;
608 if ((host->caps1 & SDHCI_SUPPORT_SDR104) &&
609 (host->mmc->caps & MMC_CAP_1_8V_DDR))
610 host->mmc->caps2 = MMC_CAP2_HS400_1_8V;
612 host->mmc_host_ops.select_drive_strength = amd_select_drive_strength;
613 host->mmc_host_ops.set_ios = amd_set_ios;
617 static const struct sdhci_acpi_slot sdhci_acpi_slot_amd_emmc = {
618 .chip = &sdhci_acpi_chip_amd,
619 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
620 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | SDHCI_QUIRK_32BIT_DMA_SIZE |
621 SDHCI_QUIRK_32BIT_ADMA_SIZE,
622 .probe_slot = sdhci_acpi_emmc_amd_probe_slot,
625 struct sdhci_acpi_uid_slot {
628 const struct sdhci_acpi_slot *slot;
631 static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
632 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
633 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
634 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
635 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
636 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
637 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
638 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
639 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
640 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd },
641 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
642 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
643 { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio },
644 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd },
646 { "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
647 { "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
648 { "AMDI0040", NULL, &sdhci_acpi_slot_amd_emmc },
652 static const struct acpi_device_id sdhci_acpi_ids[] = {
668 MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
670 static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid,
673 const struct sdhci_acpi_uid_slot *u;
675 for (u = sdhci_acpi_uids; u->hid; u++) {
676 if (strcmp(u->hid, hid))
680 if (uid && !strcmp(u->uid, uid))
686 static int sdhci_acpi_probe(struct platform_device *pdev)
688 struct device *dev = &pdev->dev;
689 const struct sdhci_acpi_slot *slot;
690 struct acpi_device *device, *child;
691 struct sdhci_acpi_host *c;
692 struct sdhci_host *host;
693 struct resource *iomem;
700 device = ACPI_COMPANION(dev);
704 hid = acpi_device_hid(device);
705 uid = acpi_device_uid(device);
707 slot = sdhci_acpi_get_slot(hid, uid);
709 /* Power on the SDHCI controller and its children */
710 acpi_device_fix_up_power(device);
711 if (!sdhci_acpi_no_fixup_child_power(hid, uid)) {
712 list_for_each_entry(child, &device->children, node)
713 if (child->status.present && child->status.enabled)
714 acpi_device_fix_up_power(child);
717 if (sdhci_acpi_byt_defer(dev))
718 return -EPROBE_DEFER;
720 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
724 len = resource_size(iomem);
726 dev_err(dev, "Invalid iomem size!\n");
728 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
731 priv_size = slot ? slot->priv_size : 0;
732 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host) + priv_size);
734 return PTR_ERR(host);
736 c = sdhci_priv(host);
740 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
742 platform_set_drvdata(pdev, c);
744 host->hw_name = "ACPI";
745 host->ops = &sdhci_acpi_ops_dflt;
746 host->irq = platform_get_irq(pdev, 0);
752 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
753 resource_size(iomem));
754 if (host->ioaddr == NULL) {
760 if (c->slot->probe_slot) {
761 err = c->slot->probe_slot(pdev, hid, uid);
766 host->ops = c->slot->chip->ops;
767 host->quirks |= c->slot->chip->quirks;
768 host->quirks2 |= c->slot->chip->quirks2;
769 host->mmc->caps |= c->slot->chip->caps;
770 host->mmc->caps2 |= c->slot->chip->caps2;
771 host->mmc->pm_caps |= c->slot->chip->pm_caps;
773 host->quirks |= c->slot->quirks;
774 host->quirks2 |= c->slot->quirks2;
775 host->mmc->caps |= c->slot->caps;
776 host->mmc->caps2 |= c->slot->caps2;
777 host->mmc->pm_caps |= c->slot->pm_caps;
780 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
782 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
783 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
785 err = mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0, NULL);
787 if (err == -EPROBE_DEFER)
789 dev_warn(dev, "failed to setup card detect gpio\n");
790 c->use_runtime_pm = false;
794 err = sdhci_setup_host(host);
798 if (c->slot && c->slot->setup_host) {
799 err = c->slot->setup_host(pdev);
804 err = __sdhci_add_host(host);
808 if (c->use_runtime_pm) {
809 pm_runtime_set_active(dev);
810 pm_suspend_ignore_children(dev, 1);
811 pm_runtime_set_autosuspend_delay(dev, 50);
812 pm_runtime_use_autosuspend(dev);
813 pm_runtime_enable(dev);
816 device_enable_async_suspend(dev);
821 sdhci_cleanup_host(c->host);
823 if (c->slot && c->slot->free_slot)
824 c->slot->free_slot(pdev);
826 sdhci_free_host(c->host);
830 static int sdhci_acpi_remove(struct platform_device *pdev)
832 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
833 struct device *dev = &pdev->dev;
836 if (c->use_runtime_pm) {
837 pm_runtime_get_sync(dev);
838 pm_runtime_disable(dev);
839 pm_runtime_put_noidle(dev);
842 if (c->slot && c->slot->remove_slot)
843 c->slot->remove_slot(pdev);
845 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
846 sdhci_remove_host(c->host, dead);
848 if (c->slot && c->slot->free_slot)
849 c->slot->free_slot(pdev);
851 sdhci_free_host(c->host);
856 #ifdef CONFIG_PM_SLEEP
858 static int sdhci_acpi_suspend(struct device *dev)
860 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
861 struct sdhci_host *host = c->host;
863 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
864 mmc_retune_needed(host->mmc);
866 return sdhci_suspend_host(host);
869 static int sdhci_acpi_resume(struct device *dev)
871 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
873 sdhci_acpi_byt_setting(&c->pdev->dev);
875 return sdhci_resume_host(c->host);
882 static int sdhci_acpi_runtime_suspend(struct device *dev)
884 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
885 struct sdhci_host *host = c->host;
887 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
888 mmc_retune_needed(host->mmc);
890 return sdhci_runtime_suspend_host(host);
893 static int sdhci_acpi_runtime_resume(struct device *dev)
895 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
897 sdhci_acpi_byt_setting(&c->pdev->dev);
899 return sdhci_runtime_resume_host(c->host);
904 static const struct dev_pm_ops sdhci_acpi_pm_ops = {
905 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
906 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
907 sdhci_acpi_runtime_resume, NULL)
910 static struct platform_driver sdhci_acpi_driver = {
912 .name = "sdhci-acpi",
913 .acpi_match_table = sdhci_acpi_ids,
914 .pm = &sdhci_acpi_pm_ops,
916 .probe = sdhci_acpi_probe,
917 .remove = sdhci_acpi_remove,
920 module_platform_driver(sdhci_acpi_driver);
922 MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
923 MODULE_AUTHOR("Adrian Hunter");
924 MODULE_LICENSE("GPL v2");