1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* linux/drivers/mmc/host/sdhci-pci.c - SDHCI on PCI bus interface
4 * Copyright (C) 2005-2008 Pierre Ossman, All Rights Reserved.
6 * Thanks to the following companies for their support:
8 * - JMicron (hardware and technical support)
11 #include <linux/bitfield.h>
12 #include <linux/string.h>
13 #include <linux/delay.h>
14 #include <linux/highmem.h>
15 #include <linux/module.h>
16 #include <linux/pci.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/slab.h>
19 #include <linux/device.h>
20 #include <linux/scatterlist.h>
22 #include <linux/iopoll.h>
23 #include <linux/gpio.h>
24 #include <linux/pm_runtime.h>
25 #include <linux/pm_qos.h>
26 #include <linux/debugfs.h>
27 #include <linux/acpi.h>
28 #include <linux/dmi.h>
30 #include <linux/mmc/host.h>
31 #include <linux/mmc/mmc.h>
32 #include <linux/mmc/slot-gpio.h>
35 #include <asm/iosf_mbi.h>
41 #include "sdhci-cqhci.h"
42 #include "sdhci-pci.h"
44 static void sdhci_pci_hw_reset(struct sdhci_host *host);
46 #ifdef CONFIG_PM_SLEEP
47 static int sdhci_pci_init_wakeup(struct sdhci_pci_chip *chip)
49 mmc_pm_flag_t pm_flags = 0;
50 bool cap_cd_wake = false;
53 for (i = 0; i < chip->num_slots; i++) {
54 struct sdhci_pci_slot *slot = chip->slots[i];
57 pm_flags |= slot->host->mmc->pm_flags;
58 if (slot->host->mmc->caps & MMC_CAP_CD_WAKE)
63 if ((pm_flags & MMC_PM_KEEP_POWER) && (pm_flags & MMC_PM_WAKE_SDIO_IRQ))
64 return device_wakeup_enable(&chip->pdev->dev);
65 else if (!cap_cd_wake)
66 return device_wakeup_disable(&chip->pdev->dev);
71 static int sdhci_pci_suspend_host(struct sdhci_pci_chip *chip)
75 sdhci_pci_init_wakeup(chip);
77 for (i = 0; i < chip->num_slots; i++) {
78 struct sdhci_pci_slot *slot = chip->slots[i];
79 struct sdhci_host *host;
86 if (chip->pm_retune && host->tuning_mode != SDHCI_TUNING_MODE_3)
87 mmc_retune_needed(host->mmc);
89 ret = sdhci_suspend_host(host);
93 if (device_may_wakeup(&chip->pdev->dev))
94 mmc_gpio_set_cd_wake(host->mmc, true);
101 sdhci_resume_host(chip->slots[i]->host);
105 int sdhci_pci_resume_host(struct sdhci_pci_chip *chip)
107 struct sdhci_pci_slot *slot;
110 for (i = 0; i < chip->num_slots; i++) {
111 slot = chip->slots[i];
115 ret = sdhci_resume_host(slot->host);
119 mmc_gpio_set_cd_wake(slot->host->mmc, false);
125 static int sdhci_cqhci_suspend(struct sdhci_pci_chip *chip)
129 ret = cqhci_suspend(chip->slots[0]->host->mmc);
133 return sdhci_pci_suspend_host(chip);
136 static int sdhci_cqhci_resume(struct sdhci_pci_chip *chip)
140 ret = sdhci_pci_resume_host(chip);
144 return cqhci_resume(chip->slots[0]->host->mmc);
149 static int sdhci_pci_runtime_suspend_host(struct sdhci_pci_chip *chip)
151 struct sdhci_pci_slot *slot;
152 struct sdhci_host *host;
155 for (i = 0; i < chip->num_slots; i++) {
156 slot = chip->slots[i];
162 ret = sdhci_runtime_suspend_host(host);
164 goto err_pci_runtime_suspend;
166 if (chip->rpm_retune &&
167 host->tuning_mode != SDHCI_TUNING_MODE_3)
168 mmc_retune_needed(host->mmc);
173 err_pci_runtime_suspend:
175 sdhci_runtime_resume_host(chip->slots[i]->host, 0);
179 static int sdhci_pci_runtime_resume_host(struct sdhci_pci_chip *chip)
181 struct sdhci_pci_slot *slot;
184 for (i = 0; i < chip->num_slots; i++) {
185 slot = chip->slots[i];
189 ret = sdhci_runtime_resume_host(slot->host, 0);
197 static int sdhci_cqhci_runtime_suspend(struct sdhci_pci_chip *chip)
201 ret = cqhci_suspend(chip->slots[0]->host->mmc);
205 return sdhci_pci_runtime_suspend_host(chip);
208 static int sdhci_cqhci_runtime_resume(struct sdhci_pci_chip *chip)
212 ret = sdhci_pci_runtime_resume_host(chip);
216 return cqhci_resume(chip->slots[0]->host->mmc);
220 static u32 sdhci_cqhci_irq(struct sdhci_host *host, u32 intmask)
225 if (!sdhci_cqe_irq(host, intmask, &cmd_error, &data_error))
228 cqhci_irq(host->mmc, intmask, cmd_error, data_error);
233 static void sdhci_pci_dumpregs(struct mmc_host *mmc)
235 sdhci_dumpregs(mmc_priv(mmc));
238 /*****************************************************************************\
240 * Hardware specific quirk handling *
242 \*****************************************************************************/
244 static int ricoh_probe(struct sdhci_pci_chip *chip)
246 if (chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SAMSUNG ||
247 chip->pdev->subsystem_vendor == PCI_VENDOR_ID_SONY)
248 chip->quirks |= SDHCI_QUIRK_NO_CARD_NO_RESET;
252 static int ricoh_mmc_probe_slot(struct sdhci_pci_slot *slot)
255 FIELD_PREP(SDHCI_TIMEOUT_CLK_MASK, 0x21) |
256 FIELD_PREP(SDHCI_CLOCK_BASE_MASK, 0x21) |
257 SDHCI_TIMEOUT_CLK_UNIT |
263 __sdhci_read_caps(slot->host, NULL, &caps, &caps1);
267 #ifdef CONFIG_PM_SLEEP
268 static int ricoh_mmc_resume(struct sdhci_pci_chip *chip)
270 /* Apply a delay to allow controller to settle */
271 /* Otherwise it becomes confused if card state changed
274 return sdhci_pci_resume_host(chip);
278 static const struct sdhci_pci_fixes sdhci_ricoh = {
279 .probe = ricoh_probe,
280 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
281 SDHCI_QUIRK_FORCE_DMA |
282 SDHCI_QUIRK_CLOCK_BEFORE_RESET,
285 static const struct sdhci_pci_fixes sdhci_ricoh_mmc = {
286 .probe_slot = ricoh_mmc_probe_slot,
287 #ifdef CONFIG_PM_SLEEP
288 .resume = ricoh_mmc_resume,
290 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
291 SDHCI_QUIRK_CLOCK_BEFORE_RESET |
292 SDHCI_QUIRK_NO_CARD_NO_RESET,
295 static void ene_714_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
297 struct sdhci_host *host = mmc_priv(mmc);
299 sdhci_set_ios(mmc, ios);
302 * Some (ENE) controllers misbehave on some ios operations,
303 * signalling timeout and CRC errors even on CMD0. Resetting
304 * it on each ios seems to solve the problem.
306 if (!(host->flags & SDHCI_DEVICE_DEAD))
307 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
310 static int ene_714_probe_slot(struct sdhci_pci_slot *slot)
312 slot->host->mmc_host_ops.set_ios = ene_714_set_ios;
316 static const struct sdhci_pci_fixes sdhci_ene_712 = {
317 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
318 SDHCI_QUIRK_BROKEN_DMA,
321 static const struct sdhci_pci_fixes sdhci_ene_714 = {
322 .quirks = SDHCI_QUIRK_SINGLE_POWER_WRITE |
323 SDHCI_QUIRK_BROKEN_DMA,
324 .probe_slot = ene_714_probe_slot,
327 static const struct sdhci_pci_fixes sdhci_cafe = {
328 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER |
329 SDHCI_QUIRK_NO_BUSY_IRQ |
330 SDHCI_QUIRK_BROKEN_CARD_DETECTION |
331 SDHCI_QUIRK_BROKEN_TIMEOUT_VAL,
334 static const struct sdhci_pci_fixes sdhci_intel_qrk = {
335 .quirks = SDHCI_QUIRK_NO_HISPD_BIT,
338 static int mrst_hc_probe_slot(struct sdhci_pci_slot *slot)
340 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
345 * ADMA operation is disabled for Moorestown platform due to
348 static int mrst_hc_probe(struct sdhci_pci_chip *chip)
351 * slots number is fixed here for MRST as SDIO3/5 are never used and
352 * have hardware bugs.
358 static int pch_hc_probe_slot(struct sdhci_pci_slot *slot)
360 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA;
364 static int mfd_emmc_probe_slot(struct sdhci_pci_slot *slot)
366 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE;
367 slot->host->mmc->caps2 |= MMC_CAP2_BOOTPART_NOACC;
371 static int mfd_sdio_probe_slot(struct sdhci_pci_slot *slot)
373 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE;
377 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc0 = {
378 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
379 .probe_slot = mrst_hc_probe_slot,
382 static const struct sdhci_pci_fixes sdhci_intel_mrst_hc1_hc2 = {
383 .quirks = SDHCI_QUIRK_BROKEN_ADMA | SDHCI_QUIRK_NO_HISPD_BIT,
384 .probe = mrst_hc_probe,
387 static const struct sdhci_pci_fixes sdhci_intel_mfd_sd = {
388 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
389 .allow_runtime_pm = true,
390 .own_cd_for_runtime_pm = true,
393 static const struct sdhci_pci_fixes sdhci_intel_mfd_sdio = {
394 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
395 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
396 .allow_runtime_pm = true,
397 .probe_slot = mfd_sdio_probe_slot,
400 static const struct sdhci_pci_fixes sdhci_intel_mfd_emmc = {
401 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
402 .allow_runtime_pm = true,
403 .probe_slot = mfd_emmc_probe_slot,
406 static const struct sdhci_pci_fixes sdhci_intel_pch_sdio = {
407 .quirks = SDHCI_QUIRK_BROKEN_ADMA,
408 .probe_slot = pch_hc_probe_slot,
413 #define BYT_IOSF_SCCEP 0x63
414 #define BYT_IOSF_OCP_NETCTRL0 0x1078
415 #define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
417 static void byt_ocp_setting(struct pci_dev *pdev)
421 if (pdev->device != PCI_DEVICE_ID_INTEL_BYT_EMMC &&
422 pdev->device != PCI_DEVICE_ID_INTEL_BYT_SDIO &&
423 pdev->device != PCI_DEVICE_ID_INTEL_BYT_SD &&
424 pdev->device != PCI_DEVICE_ID_INTEL_BYT_EMMC2)
427 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
429 dev_err(&pdev->dev, "%s read error\n", __func__);
433 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
436 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
438 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
440 dev_err(&pdev->dev, "%s write error\n", __func__);
444 dev_dbg(&pdev->dev, "%s completed\n", __func__);
449 static inline void byt_ocp_setting(struct pci_dev *pdev)
457 INTEL_DSM_V18_SWITCH = 3,
458 INTEL_DSM_V33_SWITCH = 4,
459 INTEL_DSM_DRV_STRENGTH = 9,
460 INTEL_DSM_D3_RETUNE = 10,
475 static const guid_t intel_dsm_guid =
476 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
477 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
479 static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
480 unsigned int fn, u32 *result)
482 union acpi_object *obj;
486 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
490 if (obj->type != ACPI_TYPE_BUFFER || obj->buffer.length < 1) {
495 len = min_t(size_t, obj->buffer.length, 4);
498 memcpy(result, obj->buffer.pointer, len);
505 static int intel_dsm(struct intel_host *intel_host, struct device *dev,
506 unsigned int fn, u32 *result)
508 if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
511 return __intel_dsm(intel_host, dev, fn, result);
514 static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
515 struct mmc_host *mmc)
520 intel_host->d3_retune = true;
522 err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
524 pr_debug("%s: DSM not supported, error %d\n",
525 mmc_hostname(mmc), err);
529 pr_debug("%s: DSM function mask %#x\n",
530 mmc_hostname(mmc), intel_host->dsm_fns);
532 err = intel_dsm(intel_host, dev, INTEL_DSM_DRV_STRENGTH, &val);
533 intel_host->drv_strength = err ? 0 : val;
535 err = intel_dsm(intel_host, dev, INTEL_DSM_D3_RETUNE, &val);
536 intel_host->d3_retune = err ? true : !!val;
539 static void sdhci_pci_int_hw_reset(struct sdhci_host *host)
543 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
545 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
546 /* For eMMC, minimum is 1us but give it 9us for good measure */
549 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
550 /* For eMMC, minimum is 200us but give it 300us for good measure */
551 usleep_range(300, 1000);
554 static int intel_select_drive_strength(struct mmc_card *card,
555 unsigned int max_dtr, int host_drv,
556 int card_drv, int *drv_type)
558 struct sdhci_host *host = mmc_priv(card->host);
559 struct sdhci_pci_slot *slot = sdhci_priv(host);
560 struct intel_host *intel_host = sdhci_pci_priv(slot);
562 if (!(mmc_driver_type_mask(intel_host->drv_strength) & card_drv))
565 return intel_host->drv_strength;
568 static int bxt_get_cd(struct mmc_host *mmc)
570 int gpio_cd = mmc_gpio_get_cd(mmc);
575 return sdhci_get_cd_nogpio(mmc);
578 static int mrfld_get_cd(struct mmc_host *mmc)
580 return sdhci_get_cd_nogpio(mmc);
583 #define SDHCI_INTEL_PWR_TIMEOUT_CNT 20
584 #define SDHCI_INTEL_PWR_TIMEOUT_UDELAY 100
586 static void sdhci_intel_set_power(struct sdhci_host *host, unsigned char mode,
589 struct sdhci_pci_slot *slot = sdhci_priv(host);
590 struct intel_host *intel_host = sdhci_pci_priv(slot);
595 * Bus power may control card power, but a full reset still may not
596 * reset the power, whereas a direct write to SDHCI_POWER_CONTROL can.
597 * That might be needed to initialize correctly, if the card was left
598 * powered on previously.
600 if (intel_host->needs_pwr_off) {
601 intel_host->needs_pwr_off = false;
602 if (mode != MMC_POWER_OFF) {
603 sdhci_writeb(host, 0, SDHCI_POWER_CONTROL);
604 usleep_range(10000, 12500);
608 sdhci_set_power(host, mode, vdd);
610 if (mode == MMC_POWER_OFF)
614 * Bus power might not enable after D3 -> D0 transition due to the
615 * present state not yet having propagated. Retry for up to 2ms.
617 for (cntr = 0; cntr < SDHCI_INTEL_PWR_TIMEOUT_CNT; cntr++) {
618 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
619 if (reg & SDHCI_POWER_ON)
621 udelay(SDHCI_INTEL_PWR_TIMEOUT_UDELAY);
622 reg |= SDHCI_POWER_ON;
623 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
627 static void sdhci_intel_set_uhs_signaling(struct sdhci_host *host,
630 /* Set UHS timing to SDR25 for High Speed mode */
631 if (timing == MMC_TIMING_MMC_HS || timing == MMC_TIMING_SD_HS)
632 timing = MMC_TIMING_UHS_SDR25;
633 sdhci_set_uhs_signaling(host, timing);
636 #define INTEL_HS400_ES_REG 0x78
637 #define INTEL_HS400_ES_BIT BIT(0)
639 static void intel_hs400_enhanced_strobe(struct mmc_host *mmc,
642 struct sdhci_host *host = mmc_priv(mmc);
645 val = sdhci_readl(host, INTEL_HS400_ES_REG);
646 if (ios->enhanced_strobe)
647 val |= INTEL_HS400_ES_BIT;
649 val &= ~INTEL_HS400_ES_BIT;
650 sdhci_writel(host, val, INTEL_HS400_ES_REG);
653 static int intel_start_signal_voltage_switch(struct mmc_host *mmc,
656 struct device *dev = mmc_dev(mmc);
657 struct sdhci_host *host = mmc_priv(mmc);
658 struct sdhci_pci_slot *slot = sdhci_priv(host);
659 struct intel_host *intel_host = sdhci_pci_priv(slot);
664 err = sdhci_start_signal_voltage_switch(mmc, ios);
668 switch (ios->signal_voltage) {
669 case MMC_SIGNAL_VOLTAGE_330:
670 fn = INTEL_DSM_V33_SWITCH;
672 case MMC_SIGNAL_VOLTAGE_180:
673 fn = INTEL_DSM_V18_SWITCH;
679 err = intel_dsm(intel_host, dev, fn, &result);
680 pr_debug("%s: %s DSM fn %u error %d result %u\n",
681 mmc_hostname(mmc), __func__, fn, err, result);
686 static const struct sdhci_ops sdhci_intel_byt_ops = {
687 .set_clock = sdhci_set_clock,
688 .set_power = sdhci_intel_set_power,
689 .enable_dma = sdhci_pci_enable_dma,
690 .set_bus_width = sdhci_set_bus_width,
691 .reset = sdhci_reset,
692 .set_uhs_signaling = sdhci_intel_set_uhs_signaling,
693 .hw_reset = sdhci_pci_hw_reset,
696 static const struct sdhci_ops sdhci_intel_glk_ops = {
697 .set_clock = sdhci_set_clock,
698 .set_power = sdhci_intel_set_power,
699 .enable_dma = sdhci_pci_enable_dma,
700 .set_bus_width = sdhci_set_bus_width,
701 .reset = sdhci_and_cqhci_reset,
702 .set_uhs_signaling = sdhci_intel_set_uhs_signaling,
703 .hw_reset = sdhci_pci_hw_reset,
704 .irq = sdhci_cqhci_irq,
707 static void byt_read_dsm(struct sdhci_pci_slot *slot)
709 struct intel_host *intel_host = sdhci_pci_priv(slot);
710 struct device *dev = &slot->chip->pdev->dev;
711 struct mmc_host *mmc = slot->host->mmc;
713 intel_dsm_init(intel_host, dev, mmc);
714 slot->chip->rpm_retune = intel_host->d3_retune;
717 static int intel_execute_tuning(struct mmc_host *mmc, u32 opcode)
719 int err = sdhci_execute_tuning(mmc, opcode);
720 struct sdhci_host *host = mmc_priv(mmc);
726 * Tuning can leave the IP in an active state (Buffer Read Enable bit
727 * set) which prevents the entry to low power states (i.e. S0i3). Data
728 * reset will clear it.
730 sdhci_reset(host, SDHCI_RESET_DATA);
735 #define INTEL_ACTIVELTR 0x804
736 #define INTEL_IDLELTR 0x808
738 #define INTEL_LTR_REQ BIT(15)
739 #define INTEL_LTR_SCALE_MASK GENMASK(11, 10)
740 #define INTEL_LTR_SCALE_1US (2 << 10)
741 #define INTEL_LTR_SCALE_32US (3 << 10)
742 #define INTEL_LTR_VALUE_MASK GENMASK(9, 0)
744 static void intel_cache_ltr(struct sdhci_pci_slot *slot)
746 struct intel_host *intel_host = sdhci_pci_priv(slot);
747 struct sdhci_host *host = slot->host;
749 intel_host->active_ltr = readl(host->ioaddr + INTEL_ACTIVELTR);
750 intel_host->idle_ltr = readl(host->ioaddr + INTEL_IDLELTR);
753 static void intel_ltr_set(struct device *dev, s32 val)
755 struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
756 struct sdhci_pci_slot *slot = chip->slots[0];
757 struct intel_host *intel_host = sdhci_pci_priv(slot);
758 struct sdhci_host *host = slot->host;
761 pm_runtime_get_sync(dev);
764 * Program latency tolerance (LTR) accordingly what has been asked
765 * by the PM QoS layer or disable it in case we were passed
766 * negative value or PM_QOS_LATENCY_ANY.
768 ltr = readl(host->ioaddr + INTEL_ACTIVELTR);
770 if (val == PM_QOS_LATENCY_ANY || val < 0) {
771 ltr &= ~INTEL_LTR_REQ;
773 ltr |= INTEL_LTR_REQ;
774 ltr &= ~INTEL_LTR_SCALE_MASK;
775 ltr &= ~INTEL_LTR_VALUE_MASK;
777 if (val > INTEL_LTR_VALUE_MASK) {
779 if (val > INTEL_LTR_VALUE_MASK)
780 val = INTEL_LTR_VALUE_MASK;
781 ltr |= INTEL_LTR_SCALE_32US | val;
783 ltr |= INTEL_LTR_SCALE_1US | val;
787 if (ltr == intel_host->active_ltr)
790 writel(ltr, host->ioaddr + INTEL_ACTIVELTR);
791 writel(ltr, host->ioaddr + INTEL_IDLELTR);
793 /* Cache the values into lpss structure */
794 intel_cache_ltr(slot);
796 pm_runtime_put_autosuspend(dev);
799 static bool intel_use_ltr(struct sdhci_pci_chip *chip)
801 switch (chip->pdev->device) {
802 case PCI_DEVICE_ID_INTEL_BYT_EMMC:
803 case PCI_DEVICE_ID_INTEL_BYT_EMMC2:
804 case PCI_DEVICE_ID_INTEL_BYT_SDIO:
805 case PCI_DEVICE_ID_INTEL_BYT_SD:
806 case PCI_DEVICE_ID_INTEL_BSW_EMMC:
807 case PCI_DEVICE_ID_INTEL_BSW_SDIO:
808 case PCI_DEVICE_ID_INTEL_BSW_SD:
815 static void intel_ltr_expose(struct sdhci_pci_chip *chip)
817 struct device *dev = &chip->pdev->dev;
819 if (!intel_use_ltr(chip))
822 dev->power.set_latency_tolerance = intel_ltr_set;
823 dev_pm_qos_expose_latency_tolerance(dev);
826 static void intel_ltr_hide(struct sdhci_pci_chip *chip)
828 struct device *dev = &chip->pdev->dev;
830 if (!intel_use_ltr(chip))
833 dev_pm_qos_hide_latency_tolerance(dev);
834 dev->power.set_latency_tolerance = NULL;
837 static void byt_probe_slot(struct sdhci_pci_slot *slot)
839 struct mmc_host_ops *ops = &slot->host->mmc_host_ops;
840 struct device *dev = &slot->chip->pdev->dev;
841 struct mmc_host *mmc = slot->host->mmc;
845 byt_ocp_setting(slot->chip->pdev);
847 ops->execute_tuning = intel_execute_tuning;
848 ops->start_signal_voltage_switch = intel_start_signal_voltage_switch;
850 device_property_read_u32(dev, "max-frequency", &mmc->f_max);
853 slot->chip->slots[mmc->slotno] = slot;
854 intel_ltr_expose(slot->chip);
858 static void byt_add_debugfs(struct sdhci_pci_slot *slot)
860 struct intel_host *intel_host = sdhci_pci_priv(slot);
861 struct mmc_host *mmc = slot->host->mmc;
862 struct dentry *dir = mmc->debugfs_root;
864 if (!intel_use_ltr(slot->chip))
867 debugfs_create_x32("active_ltr", 0444, dir, &intel_host->active_ltr);
868 debugfs_create_x32("idle_ltr", 0444, dir, &intel_host->idle_ltr);
870 intel_cache_ltr(slot);
873 static int byt_add_host(struct sdhci_pci_slot *slot)
875 int ret = sdhci_add_host(slot->host);
878 byt_add_debugfs(slot);
882 static void byt_remove_slot(struct sdhci_pci_slot *slot, int dead)
884 struct mmc_host *mmc = slot->host->mmc;
887 intel_ltr_hide(slot->chip);
890 static int byt_emmc_probe_slot(struct sdhci_pci_slot *slot)
892 byt_probe_slot(slot);
893 slot->host->mmc->caps |= MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
894 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
895 MMC_CAP_CMD_DURING_TFR |
896 MMC_CAP_WAIT_WHILE_BUSY;
897 slot->hw_reset = sdhci_pci_int_hw_reset;
898 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BSW_EMMC)
899 slot->host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
900 slot->host->mmc_host_ops.select_drive_strength =
901 intel_select_drive_strength;
905 static bool glk_broken_cqhci(struct sdhci_pci_slot *slot)
907 return slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_EMMC &&
908 (dmi_match(DMI_BIOS_VENDOR, "LENOVO") ||
909 dmi_match(DMI_SYS_VENDOR, "IRBIS"));
912 static bool jsl_broken_hs400es(struct sdhci_pci_slot *slot)
914 return slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_JSL_EMMC &&
915 dmi_match(DMI_BIOS_VENDOR, "ASUSTeK COMPUTER INC.");
918 static int glk_emmc_probe_slot(struct sdhci_pci_slot *slot)
920 int ret = byt_emmc_probe_slot(slot);
922 if (!glk_broken_cqhci(slot))
923 slot->host->mmc->caps2 |= MMC_CAP2_CQE;
925 if (slot->chip->pdev->device != PCI_DEVICE_ID_INTEL_GLK_EMMC) {
926 if (!jsl_broken_hs400es(slot)) {
927 slot->host->mmc->caps2 |= MMC_CAP2_HS400_ES;
928 slot->host->mmc_host_ops.hs400_enhanced_strobe =
929 intel_hs400_enhanced_strobe;
931 slot->host->mmc->caps2 |= MMC_CAP2_CQE_DCMD;
937 static const struct cqhci_host_ops glk_cqhci_ops = {
938 .enable = sdhci_cqe_enable,
939 .disable = sdhci_cqe_disable,
940 .dumpregs = sdhci_pci_dumpregs,
943 static int glk_emmc_add_host(struct sdhci_pci_slot *slot)
945 struct device *dev = &slot->chip->pdev->dev;
946 struct sdhci_host *host = slot->host;
947 struct cqhci_host *cq_host;
951 ret = sdhci_setup_host(host);
955 cq_host = devm_kzalloc(dev, sizeof(*cq_host), GFP_KERNEL);
961 cq_host->mmio = host->ioaddr + 0x200;
962 cq_host->quirks |= CQHCI_QUIRK_SHORT_TXFR_DESC_SZ;
963 cq_host->ops = &glk_cqhci_ops;
965 dma64 = host->flags & SDHCI_USE_64_BIT_DMA;
967 cq_host->caps |= CQHCI_TASK_DESC_SZ_128;
969 ret = cqhci_init(cq_host, host->mmc, dma64);
973 ret = __sdhci_add_host(host);
977 byt_add_debugfs(slot);
982 sdhci_cleanup_host(host);
987 #define GLK_RX_CTRL1 0x834
988 #define GLK_TUN_VAL 0x840
989 #define GLK_PATH_PLL GENMASK(13, 8)
990 #define GLK_DLY GENMASK(6, 0)
991 /* Workaround firmware failing to restore the tuning value */
992 static void glk_rpm_retune_wa(struct sdhci_pci_chip *chip, bool susp)
994 struct sdhci_pci_slot *slot = chip->slots[0];
995 struct intel_host *intel_host = sdhci_pci_priv(slot);
996 struct sdhci_host *host = slot->host;
1001 if (intel_host->rpm_retune_ok || !mmc_can_retune(host->mmc))
1004 glk_rx_ctrl1 = sdhci_readl(host, GLK_RX_CTRL1);
1005 glk_tun_val = sdhci_readl(host, GLK_TUN_VAL);
1008 intel_host->glk_rx_ctrl1 = glk_rx_ctrl1;
1009 intel_host->glk_tun_val = glk_tun_val;
1013 if (!intel_host->glk_tun_val)
1016 if (glk_rx_ctrl1 != intel_host->glk_rx_ctrl1) {
1017 intel_host->rpm_retune_ok = true;
1021 dly = FIELD_PREP(GLK_DLY, FIELD_GET(GLK_PATH_PLL, glk_rx_ctrl1) +
1022 (intel_host->glk_tun_val << 1));
1023 if (dly == FIELD_GET(GLK_DLY, glk_rx_ctrl1))
1026 glk_rx_ctrl1 = (glk_rx_ctrl1 & ~GLK_DLY) | dly;
1027 sdhci_writel(host, glk_rx_ctrl1, GLK_RX_CTRL1);
1029 intel_host->rpm_retune_ok = true;
1030 chip->rpm_retune = true;
1031 mmc_retune_needed(host->mmc);
1032 pr_info("%s: Requiring re-tune after rpm resume", mmc_hostname(host->mmc));
1035 static void glk_rpm_retune_chk(struct sdhci_pci_chip *chip, bool susp)
1037 if (chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_EMMC &&
1039 glk_rpm_retune_wa(chip, susp);
1042 static int glk_runtime_suspend(struct sdhci_pci_chip *chip)
1044 glk_rpm_retune_chk(chip, true);
1046 return sdhci_cqhci_runtime_suspend(chip);
1049 static int glk_runtime_resume(struct sdhci_pci_chip *chip)
1051 glk_rpm_retune_chk(chip, false);
1053 return sdhci_cqhci_runtime_resume(chip);
1058 static int ni_set_max_freq(struct sdhci_pci_slot *slot)
1061 unsigned long long max_freq;
1063 status = acpi_evaluate_integer(ACPI_HANDLE(&slot->chip->pdev->dev),
1064 "MXFQ", NULL, &max_freq);
1065 if (ACPI_FAILURE(status)) {
1066 dev_err(&slot->chip->pdev->dev,
1067 "MXFQ not found in acpi table\n");
1071 slot->host->mmc->f_max = max_freq * 1000000;
1076 static inline int ni_set_max_freq(struct sdhci_pci_slot *slot)
1082 static int ni_byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
1086 byt_probe_slot(slot);
1088 err = ni_set_max_freq(slot);
1092 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
1093 MMC_CAP_WAIT_WHILE_BUSY;
1097 static int byt_sdio_probe_slot(struct sdhci_pci_slot *slot)
1099 byt_probe_slot(slot);
1100 slot->host->mmc->caps |= MMC_CAP_POWER_OFF_CARD | MMC_CAP_NONREMOVABLE |
1101 MMC_CAP_WAIT_WHILE_BUSY;
1105 static void byt_needs_pwr_off(struct sdhci_pci_slot *slot)
1107 struct intel_host *intel_host = sdhci_pci_priv(slot);
1108 u8 reg = sdhci_readb(slot->host, SDHCI_POWER_CONTROL);
1110 intel_host->needs_pwr_off = reg & SDHCI_POWER_ON;
1113 static int byt_sd_probe_slot(struct sdhci_pci_slot *slot)
1115 byt_probe_slot(slot);
1116 slot->host->mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY |
1117 MMC_CAP_AGGRESSIVE_PM | MMC_CAP_CD_WAKE;
1119 slot->cd_override_level = true;
1120 if (slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXT_SD ||
1121 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_BXTM_SD ||
1122 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_APL_SD ||
1123 slot->chip->pdev->device == PCI_DEVICE_ID_INTEL_GLK_SD)
1124 slot->host->mmc_host_ops.get_cd = bxt_get_cd;
1126 if (slot->chip->pdev->subsystem_vendor == PCI_VENDOR_ID_NI &&
1127 slot->chip->pdev->subsystem_device == PCI_SUBDEVICE_ID_NI_78E3)
1128 slot->host->mmc->caps2 |= MMC_CAP2_AVOID_3_3V;
1130 byt_needs_pwr_off(slot);
1135 #ifdef CONFIG_PM_SLEEP
1137 static int byt_resume(struct sdhci_pci_chip *chip)
1139 byt_ocp_setting(chip->pdev);
1141 return sdhci_pci_resume_host(chip);
1148 static int byt_runtime_resume(struct sdhci_pci_chip *chip)
1150 byt_ocp_setting(chip->pdev);
1152 return sdhci_pci_runtime_resume_host(chip);
1157 static const struct sdhci_pci_fixes sdhci_intel_byt_emmc = {
1158 #ifdef CONFIG_PM_SLEEP
1159 .resume = byt_resume,
1162 .runtime_resume = byt_runtime_resume,
1164 .allow_runtime_pm = true,
1165 .probe_slot = byt_emmc_probe_slot,
1166 .add_host = byt_add_host,
1167 .remove_slot = byt_remove_slot,
1168 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
1170 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
1171 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
1172 SDHCI_QUIRK2_STOP_WITH_TC,
1173 .ops = &sdhci_intel_byt_ops,
1174 .priv_size = sizeof(struct intel_host),
1177 static const struct sdhci_pci_fixes sdhci_intel_glk_emmc = {
1178 .allow_runtime_pm = true,
1179 .probe_slot = glk_emmc_probe_slot,
1180 .add_host = glk_emmc_add_host,
1181 .remove_slot = byt_remove_slot,
1182 #ifdef CONFIG_PM_SLEEP
1183 .suspend = sdhci_cqhci_suspend,
1184 .resume = sdhci_cqhci_resume,
1187 .runtime_suspend = glk_runtime_suspend,
1188 .runtime_resume = glk_runtime_resume,
1190 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
1192 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
1193 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400 |
1194 SDHCI_QUIRK2_STOP_WITH_TC,
1195 .ops = &sdhci_intel_glk_ops,
1196 .priv_size = sizeof(struct intel_host),
1199 static const struct sdhci_pci_fixes sdhci_ni_byt_sdio = {
1200 #ifdef CONFIG_PM_SLEEP
1201 .resume = byt_resume,
1204 .runtime_resume = byt_runtime_resume,
1206 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
1208 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
1209 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
1210 .allow_runtime_pm = true,
1211 .probe_slot = ni_byt_sdio_probe_slot,
1212 .add_host = byt_add_host,
1213 .remove_slot = byt_remove_slot,
1214 .ops = &sdhci_intel_byt_ops,
1215 .priv_size = sizeof(struct intel_host),
1218 static const struct sdhci_pci_fixes sdhci_intel_byt_sdio = {
1219 #ifdef CONFIG_PM_SLEEP
1220 .resume = byt_resume,
1223 .runtime_resume = byt_runtime_resume,
1225 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
1227 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON |
1228 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
1229 .allow_runtime_pm = true,
1230 .probe_slot = byt_sdio_probe_slot,
1231 .add_host = byt_add_host,
1232 .remove_slot = byt_remove_slot,
1233 .ops = &sdhci_intel_byt_ops,
1234 .priv_size = sizeof(struct intel_host),
1237 static const struct sdhci_pci_fixes sdhci_intel_byt_sd = {
1238 #ifdef CONFIG_PM_SLEEP
1239 .resume = byt_resume,
1242 .runtime_resume = byt_runtime_resume,
1244 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
1246 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
1247 SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
1248 SDHCI_QUIRK2_STOP_WITH_TC,
1249 .allow_runtime_pm = true,
1250 .own_cd_for_runtime_pm = true,
1251 .probe_slot = byt_sd_probe_slot,
1252 .add_host = byt_add_host,
1253 .remove_slot = byt_remove_slot,
1254 .ops = &sdhci_intel_byt_ops,
1255 .priv_size = sizeof(struct intel_host),
1258 /* Define Host controllers for Intel Merrifield platform */
1259 #define INTEL_MRFLD_EMMC_0 0
1260 #define INTEL_MRFLD_EMMC_1 1
1261 #define INTEL_MRFLD_SD 2
1262 #define INTEL_MRFLD_SDIO 3
1265 static void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot)
1267 struct acpi_device *device;
1269 device = ACPI_COMPANION(&slot->chip->pdev->dev);
1271 acpi_device_fix_up_power_extended(device);
1274 static inline void intel_mrfld_mmc_fix_up_power_slot(struct sdhci_pci_slot *slot) {}
1277 static int intel_mrfld_mmc_probe_slot(struct sdhci_pci_slot *slot)
1279 unsigned int func = PCI_FUNC(slot->chip->pdev->devfn);
1282 case INTEL_MRFLD_EMMC_0:
1283 case INTEL_MRFLD_EMMC_1:
1284 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE |
1285 MMC_CAP_8_BIT_DATA |
1288 case INTEL_MRFLD_SD:
1290 slot->cd_override_level = true;
1292 * There are two PCB designs of SD card slot with the opposite
1293 * card detection sense. Quirk this out by ignoring GPIO state
1294 * completely in the custom ->get_cd() callback.
1296 slot->host->mmc_host_ops.get_cd = mrfld_get_cd;
1297 slot->host->quirks2 |= SDHCI_QUIRK2_NO_1_8_V;
1299 case INTEL_MRFLD_SDIO:
1300 /* Advertise 2.0v for compatibility with the SDIO card's OCR */
1301 slot->host->ocr_mask = MMC_VDD_20_21 | MMC_VDD_165_195;
1302 slot->host->mmc->caps |= MMC_CAP_NONREMOVABLE |
1303 MMC_CAP_POWER_OFF_CARD;
1309 intel_mrfld_mmc_fix_up_power_slot(slot);
1313 static const struct sdhci_pci_fixes sdhci_intel_mrfld_mmc = {
1314 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
1315 .quirks2 = SDHCI_QUIRK2_BROKEN_HS200 |
1316 SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
1317 .allow_runtime_pm = true,
1318 .probe_slot = intel_mrfld_mmc_probe_slot,
1321 static int jmicron_pmos(struct sdhci_pci_chip *chip, int on)
1326 ret = pci_read_config_byte(chip->pdev, 0xAE, &scratch);
1331 * Turn PMOS on [bit 0], set over current detection to 2.4 V
1332 * [bit 1:2] and enable over current debouncing [bit 6].
1339 return pci_write_config_byte(chip->pdev, 0xAE, scratch);
1342 static int jmicron_probe(struct sdhci_pci_chip *chip)
1347 if (chip->pdev->revision == 0) {
1348 chip->quirks |= SDHCI_QUIRK_32BIT_DMA_ADDR |
1349 SDHCI_QUIRK_32BIT_DMA_SIZE |
1350 SDHCI_QUIRK_32BIT_ADMA_SIZE |
1351 SDHCI_QUIRK_RESET_AFTER_REQUEST |
1352 SDHCI_QUIRK_BROKEN_SMALL_PIO;
1356 * JMicron chips can have two interfaces to the same hardware
1357 * in order to work around limitations in Microsoft's driver.
1358 * We need to make sure we only bind to one of them.
1360 * This code assumes two things:
1362 * 1. The PCI code adds subfunctions in order.
1364 * 2. The MMC interface has a lower subfunction number
1365 * than the SD interface.
1367 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_SD)
1368 mmcdev = PCI_DEVICE_ID_JMICRON_JMB38X_MMC;
1369 else if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD)
1370 mmcdev = PCI_DEVICE_ID_JMICRON_JMB388_ESD;
1373 struct pci_dev *sd_dev;
1376 while ((sd_dev = pci_get_device(PCI_VENDOR_ID_JMICRON,
1377 mmcdev, sd_dev)) != NULL) {
1378 if ((PCI_SLOT(chip->pdev->devfn) ==
1379 PCI_SLOT(sd_dev->devfn)) &&
1380 (chip->pdev->bus == sd_dev->bus))
1385 pci_dev_put(sd_dev);
1386 dev_info(&chip->pdev->dev, "Refusing to bind to "
1387 "secondary interface.\n");
1393 * JMicron chips need a bit of a nudge to enable the power
1396 ret = jmicron_pmos(chip, 1);
1398 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
1402 /* quirk for unsable RO-detection on JM388 chips */
1403 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_SD ||
1404 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
1405 chip->quirks |= SDHCI_QUIRK_UNSTABLE_RO_DETECT;
1410 static void jmicron_enable_mmc(struct sdhci_host *host, int on)
1414 scratch = readb(host->ioaddr + 0xC0);
1421 writeb(scratch, host->ioaddr + 0xC0);
1424 static int jmicron_probe_slot(struct sdhci_pci_slot *slot)
1426 if (slot->chip->pdev->revision == 0) {
1429 version = readl(slot->host->ioaddr + SDHCI_HOST_VERSION);
1430 version = (version & SDHCI_VENDOR_VER_MASK) >>
1431 SDHCI_VENDOR_VER_SHIFT;
1434 * Older versions of the chip have lots of nasty glitches
1435 * in the ADMA engine. It's best just to avoid it
1439 slot->host->quirks |= SDHCI_QUIRK_BROKEN_ADMA;
1442 /* JM388 MMC doesn't support 1.8V while SD supports it */
1443 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
1444 slot->host->ocr_avail_sd = MMC_VDD_32_33 | MMC_VDD_33_34 |
1445 MMC_VDD_29_30 | MMC_VDD_30_31 |
1446 MMC_VDD_165_195; /* allow 1.8V */
1447 slot->host->ocr_avail_mmc = MMC_VDD_32_33 | MMC_VDD_33_34 |
1448 MMC_VDD_29_30 | MMC_VDD_30_31; /* no 1.8V for MMC */
1452 * The secondary interface requires a bit set to get the
1455 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
1456 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
1457 jmicron_enable_mmc(slot->host, 1);
1459 slot->host->mmc->caps |= MMC_CAP_BUS_WIDTH_TEST;
1464 static void jmicron_remove_slot(struct sdhci_pci_slot *slot, int dead)
1469 if (slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
1470 slot->chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD)
1471 jmicron_enable_mmc(slot->host, 0);
1474 #ifdef CONFIG_PM_SLEEP
1475 static int jmicron_suspend(struct sdhci_pci_chip *chip)
1479 ret = sdhci_pci_suspend_host(chip);
1483 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
1484 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
1485 for (i = 0; i < chip->num_slots; i++)
1486 jmicron_enable_mmc(chip->slots[i]->host, 0);
1492 static int jmicron_resume(struct sdhci_pci_chip *chip)
1496 if (chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB38X_MMC ||
1497 chip->pdev->device == PCI_DEVICE_ID_JMICRON_JMB388_ESD) {
1498 for (i = 0; i < chip->num_slots; i++)
1499 jmicron_enable_mmc(chip->slots[i]->host, 1);
1502 ret = jmicron_pmos(chip, 1);
1504 dev_err(&chip->pdev->dev, "Failure enabling card power\n");
1508 return sdhci_pci_resume_host(chip);
1512 static const struct sdhci_pci_fixes sdhci_jmicron = {
1513 .probe = jmicron_probe,
1515 .probe_slot = jmicron_probe_slot,
1516 .remove_slot = jmicron_remove_slot,
1518 #ifdef CONFIG_PM_SLEEP
1519 .suspend = jmicron_suspend,
1520 .resume = jmicron_resume,
1524 /* SysKonnect CardBus2SDIO extra registers */
1525 #define SYSKT_CTRL 0x200
1526 #define SYSKT_RDFIFO_STAT 0x204
1527 #define SYSKT_WRFIFO_STAT 0x208
1528 #define SYSKT_POWER_DATA 0x20c
1529 #define SYSKT_POWER_330 0xef
1530 #define SYSKT_POWER_300 0xf8
1531 #define SYSKT_POWER_184 0xcc
1532 #define SYSKT_POWER_CMD 0x20d
1533 #define SYSKT_POWER_START (1 << 7)
1534 #define SYSKT_POWER_STATUS 0x20e
1535 #define SYSKT_POWER_STATUS_OK (1 << 0)
1536 #define SYSKT_BOARD_REV 0x210
1537 #define SYSKT_CHIP_REV 0x211
1538 #define SYSKT_CONF_DATA 0x212
1539 #define SYSKT_CONF_DATA_1V8 (1 << 2)
1540 #define SYSKT_CONF_DATA_2V5 (1 << 1)
1541 #define SYSKT_CONF_DATA_3V3 (1 << 0)
1543 static int syskt_probe(struct sdhci_pci_chip *chip)
1545 if ((chip->pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
1546 chip->pdev->class &= ~0x0000FF;
1547 chip->pdev->class |= PCI_SDHCI_IFDMA;
1552 static int syskt_probe_slot(struct sdhci_pci_slot *slot)
1556 u8 board_rev = readb(slot->host->ioaddr + SYSKT_BOARD_REV);
1557 u8 chip_rev = readb(slot->host->ioaddr + SYSKT_CHIP_REV);
1558 dev_info(&slot->chip->pdev->dev, "SysKonnect CardBus2SDIO, "
1559 "board rev %d.%d, chip rev %d.%d\n",
1560 board_rev >> 4, board_rev & 0xf,
1561 chip_rev >> 4, chip_rev & 0xf);
1562 if (chip_rev >= 0x20)
1563 slot->host->quirks |= SDHCI_QUIRK_FORCE_DMA;
1565 writeb(SYSKT_POWER_330, slot->host->ioaddr + SYSKT_POWER_DATA);
1566 writeb(SYSKT_POWER_START, slot->host->ioaddr + SYSKT_POWER_CMD);
1568 tm = 10; /* Wait max 1 ms */
1570 ps = readw(slot->host->ioaddr + SYSKT_POWER_STATUS);
1571 if (ps & SYSKT_POWER_STATUS_OK)
1576 dev_err(&slot->chip->pdev->dev,
1577 "power regulator never stabilized");
1578 writeb(0, slot->host->ioaddr + SYSKT_POWER_CMD);
1585 static const struct sdhci_pci_fixes sdhci_syskt = {
1586 .quirks = SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER,
1587 .probe = syskt_probe,
1588 .probe_slot = syskt_probe_slot,
1591 static int via_probe(struct sdhci_pci_chip *chip)
1593 if (chip->pdev->revision == 0x10)
1594 chip->quirks |= SDHCI_QUIRK_DELAY_AFTER_POWER;
1599 static const struct sdhci_pci_fixes sdhci_via = {
1603 static int rtsx_probe_slot(struct sdhci_pci_slot *slot)
1605 slot->host->mmc->caps2 |= MMC_CAP2_HS200;
1609 static const struct sdhci_pci_fixes sdhci_rtsx = {
1610 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
1611 SDHCI_QUIRK2_BROKEN_64_BIT_DMA |
1612 SDHCI_QUIRK2_BROKEN_DDR50,
1613 .probe_slot = rtsx_probe_slot,
1616 /*AMD chipset generation*/
1617 enum amd_chipset_gen {
1618 AMD_CHIPSET_BEFORE_ML,
1621 AMD_CHIPSET_UNKNOWN,
1625 #define AMD_SD_AUTO_PATTERN 0xB8
1626 #define AMD_MSLEEP_DURATION 4
1627 #define AMD_SD_MISC_CONTROL 0xD0
1628 #define AMD_MAX_TUNE_VALUE 0x0B
1629 #define AMD_AUTO_TUNE_SEL 0x10800
1630 #define AMD_FIFO_PTR 0x30
1631 #define AMD_BIT_MASK 0x1F
1633 static void amd_tuning_reset(struct sdhci_host *host)
1637 val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1638 val |= SDHCI_CTRL_PRESET_VAL_ENABLE | SDHCI_CTRL_EXEC_TUNING;
1639 sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
1641 val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
1642 val &= ~SDHCI_CTRL_EXEC_TUNING;
1643 sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
1646 static void amd_config_tuning_phase(struct pci_dev *pdev, u8 phase)
1650 pci_read_config_dword(pdev, AMD_SD_AUTO_PATTERN, &val);
1651 val &= ~AMD_BIT_MASK;
1652 val |= (AMD_AUTO_TUNE_SEL | (phase << 1));
1653 pci_write_config_dword(pdev, AMD_SD_AUTO_PATTERN, val);
1656 static void amd_enable_manual_tuning(struct pci_dev *pdev)
1660 pci_read_config_dword(pdev, AMD_SD_MISC_CONTROL, &val);
1661 val |= AMD_FIFO_PTR;
1662 pci_write_config_dword(pdev, AMD_SD_MISC_CONTROL, val);
1665 static int amd_execute_tuning_hs200(struct sdhci_host *host, u32 opcode)
1667 struct sdhci_pci_slot *slot = sdhci_priv(host);
1668 struct pci_dev *pdev = slot->chip->pdev;
1670 u8 valid_win_max = 0;
1671 u8 valid_win_end = 0;
1672 u8 ctrl, tune_around;
1674 amd_tuning_reset(host);
1676 for (tune_around = 0; tune_around < 12; tune_around++) {
1677 amd_config_tuning_phase(pdev, tune_around);
1679 if (mmc_send_tuning(host->mmc, opcode, NULL)) {
1681 msleep(AMD_MSLEEP_DURATION);
1682 ctrl = SDHCI_RESET_CMD | SDHCI_RESET_DATA;
1683 sdhci_writeb(host, ctrl, SDHCI_SOFTWARE_RESET);
1684 } else if (++valid_win > valid_win_max) {
1685 valid_win_max = valid_win;
1686 valid_win_end = tune_around;
1690 if (!valid_win_max) {
1691 dev_err(&pdev->dev, "no tuning point found\n");
1695 amd_config_tuning_phase(pdev, valid_win_end - valid_win_max / 2);
1697 amd_enable_manual_tuning(pdev);
1699 host->mmc->retune_period = 0;
1704 static int amd_execute_tuning(struct mmc_host *mmc, u32 opcode)
1706 struct sdhci_host *host = mmc_priv(mmc);
1708 /* AMD requires custom HS200 tuning */
1709 if (host->timing == MMC_TIMING_MMC_HS200)
1710 return amd_execute_tuning_hs200(host, opcode);
1712 /* Otherwise perform standard SDHCI tuning */
1713 return sdhci_execute_tuning(mmc, opcode);
1716 static int amd_probe_slot(struct sdhci_pci_slot *slot)
1718 struct mmc_host_ops *ops = &slot->host->mmc_host_ops;
1720 ops->execute_tuning = amd_execute_tuning;
1725 static int amd_probe(struct sdhci_pci_chip *chip)
1727 struct pci_dev *smbus_dev;
1728 enum amd_chipset_gen gen;
1730 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
1731 PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL);
1733 gen = AMD_CHIPSET_BEFORE_ML;
1735 smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD,
1736 PCI_DEVICE_ID_AMD_KERNCZ_SMBUS, NULL);
1738 if (smbus_dev->revision < 0x51)
1739 gen = AMD_CHIPSET_CZ;
1741 gen = AMD_CHIPSET_NL;
1743 gen = AMD_CHIPSET_UNKNOWN;
1747 pci_dev_put(smbus_dev);
1749 if (gen == AMD_CHIPSET_BEFORE_ML || gen == AMD_CHIPSET_CZ)
1750 chip->quirks2 |= SDHCI_QUIRK2_CLEAR_TRANSFERMODE_REG_BEFORE_CMD;
1755 static u32 sdhci_read_present_state(struct sdhci_host *host)
1757 return sdhci_readl(host, SDHCI_PRESENT_STATE);
1760 static void amd_sdhci_reset(struct sdhci_host *host, u8 mask)
1762 struct sdhci_pci_slot *slot = sdhci_priv(host);
1763 struct pci_dev *pdev = slot->chip->pdev;
1767 * SDHC 0x7906 requires a hard reset to clear all internal state.
1768 * Otherwise it can get into a bad state where the DATA lines are always
1771 if (pdev->device == 0x7906 && (mask & SDHCI_RESET_ALL)) {
1772 pci_clear_master(pdev);
1774 pci_save_state(pdev);
1776 pci_set_power_state(pdev, PCI_D3cold);
1777 pr_debug("%s: power_state=%u\n", mmc_hostname(host->mmc),
1778 pdev->current_state);
1779 pci_set_power_state(pdev, PCI_D0);
1781 pci_restore_state(pdev);
1784 * SDHCI_RESET_ALL says the card detect logic should not be
1785 * reset, but since we need to reset the entire controller
1786 * we should wait until the card detect logic has stabilized.
1788 * This normally takes about 40ms.
1791 sdhci_read_present_state,
1794 present_state & SDHCI_CD_STABLE,
1800 return sdhci_reset(host, mask);
1803 static const struct sdhci_ops amd_sdhci_pci_ops = {
1804 .set_clock = sdhci_set_clock,
1805 .enable_dma = sdhci_pci_enable_dma,
1806 .set_bus_width = sdhci_set_bus_width,
1807 .reset = amd_sdhci_reset,
1808 .set_uhs_signaling = sdhci_set_uhs_signaling,
1811 static const struct sdhci_pci_fixes sdhci_amd = {
1813 .ops = &amd_sdhci_pci_ops,
1814 .probe_slot = amd_probe_slot,
1817 static const struct pci_device_id pci_ids[] = {
1818 SDHCI_PCI_DEVICE(RICOH, R5C822, ricoh),
1819 SDHCI_PCI_DEVICE(RICOH, R5C843, ricoh_mmc),
1820 SDHCI_PCI_DEVICE(RICOH, R5CE822, ricoh_mmc),
1821 SDHCI_PCI_DEVICE(RICOH, R5CE823, ricoh_mmc),
1822 SDHCI_PCI_DEVICE(ENE, CB712_SD, ene_712),
1823 SDHCI_PCI_DEVICE(ENE, CB712_SD_2, ene_712),
1824 SDHCI_PCI_DEVICE(ENE, CB714_SD, ene_714),
1825 SDHCI_PCI_DEVICE(ENE, CB714_SD_2, ene_714),
1826 SDHCI_PCI_DEVICE(MARVELL, 88ALP01_SD, cafe),
1827 SDHCI_PCI_DEVICE(JMICRON, JMB38X_SD, jmicron),
1828 SDHCI_PCI_DEVICE(JMICRON, JMB38X_MMC, jmicron),
1829 SDHCI_PCI_DEVICE(JMICRON, JMB388_SD, jmicron),
1830 SDHCI_PCI_DEVICE(JMICRON, JMB388_ESD, jmicron),
1831 SDHCI_PCI_DEVICE(SYSKONNECT, 8000, syskt),
1832 SDHCI_PCI_DEVICE(VIA, 95D0, via),
1833 SDHCI_PCI_DEVICE(REALTEK, 5250, rtsx),
1834 SDHCI_PCI_DEVICE(INTEL, QRK_SD, intel_qrk),
1835 SDHCI_PCI_DEVICE(INTEL, MRST_SD0, intel_mrst_hc0),
1836 SDHCI_PCI_DEVICE(INTEL, MRST_SD1, intel_mrst_hc1_hc2),
1837 SDHCI_PCI_DEVICE(INTEL, MRST_SD2, intel_mrst_hc1_hc2),
1838 SDHCI_PCI_DEVICE(INTEL, MFD_SD, intel_mfd_sd),
1839 SDHCI_PCI_DEVICE(INTEL, MFD_SDIO1, intel_mfd_sdio),
1840 SDHCI_PCI_DEVICE(INTEL, MFD_SDIO2, intel_mfd_sdio),
1841 SDHCI_PCI_DEVICE(INTEL, MFD_EMMC0, intel_mfd_emmc),
1842 SDHCI_PCI_DEVICE(INTEL, MFD_EMMC1, intel_mfd_emmc),
1843 SDHCI_PCI_DEVICE(INTEL, PCH_SDIO0, intel_pch_sdio),
1844 SDHCI_PCI_DEVICE(INTEL, PCH_SDIO1, intel_pch_sdio),
1845 SDHCI_PCI_DEVICE(INTEL, BYT_EMMC, intel_byt_emmc),
1846 SDHCI_PCI_SUBDEVICE(INTEL, BYT_SDIO, NI, 7884, ni_byt_sdio),
1847 SDHCI_PCI_DEVICE(INTEL, BYT_SDIO, intel_byt_sdio),
1848 SDHCI_PCI_DEVICE(INTEL, BYT_SD, intel_byt_sd),
1849 SDHCI_PCI_DEVICE(INTEL, BYT_EMMC2, intel_byt_emmc),
1850 SDHCI_PCI_DEVICE(INTEL, BSW_EMMC, intel_byt_emmc),
1851 SDHCI_PCI_DEVICE(INTEL, BSW_SDIO, intel_byt_sdio),
1852 SDHCI_PCI_DEVICE(INTEL, BSW_SD, intel_byt_sd),
1853 SDHCI_PCI_DEVICE(INTEL, CLV_SDIO0, intel_mfd_sd),
1854 SDHCI_PCI_DEVICE(INTEL, CLV_SDIO1, intel_mfd_sdio),
1855 SDHCI_PCI_DEVICE(INTEL, CLV_SDIO2, intel_mfd_sdio),
1856 SDHCI_PCI_DEVICE(INTEL, CLV_EMMC0, intel_mfd_emmc),
1857 SDHCI_PCI_DEVICE(INTEL, CLV_EMMC1, intel_mfd_emmc),
1858 SDHCI_PCI_DEVICE(INTEL, MRFLD_MMC, intel_mrfld_mmc),
1859 SDHCI_PCI_DEVICE(INTEL, SPT_EMMC, intel_byt_emmc),
1860 SDHCI_PCI_DEVICE(INTEL, SPT_SDIO, intel_byt_sdio),
1861 SDHCI_PCI_DEVICE(INTEL, SPT_SD, intel_byt_sd),
1862 SDHCI_PCI_DEVICE(INTEL, DNV_EMMC, intel_byt_emmc),
1863 SDHCI_PCI_DEVICE(INTEL, CDF_EMMC, intel_glk_emmc),
1864 SDHCI_PCI_DEVICE(INTEL, BXT_EMMC, intel_byt_emmc),
1865 SDHCI_PCI_DEVICE(INTEL, BXT_SDIO, intel_byt_sdio),
1866 SDHCI_PCI_DEVICE(INTEL, BXT_SD, intel_byt_sd),
1867 SDHCI_PCI_DEVICE(INTEL, BXTM_EMMC, intel_byt_emmc),
1868 SDHCI_PCI_DEVICE(INTEL, BXTM_SDIO, intel_byt_sdio),
1869 SDHCI_PCI_DEVICE(INTEL, BXTM_SD, intel_byt_sd),
1870 SDHCI_PCI_DEVICE(INTEL, APL_EMMC, intel_byt_emmc),
1871 SDHCI_PCI_DEVICE(INTEL, APL_SDIO, intel_byt_sdio),
1872 SDHCI_PCI_DEVICE(INTEL, APL_SD, intel_byt_sd),
1873 SDHCI_PCI_DEVICE(INTEL, GLK_EMMC, intel_glk_emmc),
1874 SDHCI_PCI_DEVICE(INTEL, GLK_SDIO, intel_byt_sdio),
1875 SDHCI_PCI_DEVICE(INTEL, GLK_SD, intel_byt_sd),
1876 SDHCI_PCI_DEVICE(INTEL, CNP_EMMC, intel_glk_emmc),
1877 SDHCI_PCI_DEVICE(INTEL, CNP_SD, intel_byt_sd),
1878 SDHCI_PCI_DEVICE(INTEL, CNPH_SD, intel_byt_sd),
1879 SDHCI_PCI_DEVICE(INTEL, ICP_EMMC, intel_glk_emmc),
1880 SDHCI_PCI_DEVICE(INTEL, ICP_SD, intel_byt_sd),
1881 SDHCI_PCI_DEVICE(INTEL, EHL_EMMC, intel_glk_emmc),
1882 SDHCI_PCI_DEVICE(INTEL, EHL_SD, intel_byt_sd),
1883 SDHCI_PCI_DEVICE(INTEL, CML_EMMC, intel_glk_emmc),
1884 SDHCI_PCI_DEVICE(INTEL, CML_SD, intel_byt_sd),
1885 SDHCI_PCI_DEVICE(INTEL, CMLH_SD, intel_byt_sd),
1886 SDHCI_PCI_DEVICE(INTEL, JSL_EMMC, intel_glk_emmc),
1887 SDHCI_PCI_DEVICE(INTEL, JSL_SD, intel_byt_sd),
1888 SDHCI_PCI_DEVICE(INTEL, LKF_EMMC, intel_glk_emmc),
1889 SDHCI_PCI_DEVICE(INTEL, LKF_SD, intel_byt_sd),
1890 SDHCI_PCI_DEVICE(INTEL, ADL_EMMC, intel_glk_emmc),
1891 SDHCI_PCI_DEVICE(O2, 8120, o2),
1892 SDHCI_PCI_DEVICE(O2, 8220, o2),
1893 SDHCI_PCI_DEVICE(O2, 8221, o2),
1894 SDHCI_PCI_DEVICE(O2, 8320, o2),
1895 SDHCI_PCI_DEVICE(O2, 8321, o2),
1896 SDHCI_PCI_DEVICE(O2, FUJIN2, o2),
1897 SDHCI_PCI_DEVICE(O2, SDS0, o2),
1898 SDHCI_PCI_DEVICE(O2, SDS1, o2),
1899 SDHCI_PCI_DEVICE(O2, SEABIRD0, o2),
1900 SDHCI_PCI_DEVICE(O2, SEABIRD1, o2),
1901 SDHCI_PCI_DEVICE(ARASAN, PHY_EMMC, arasan),
1902 SDHCI_PCI_DEVICE(SYNOPSYS, DWC_MSHC, snps),
1903 SDHCI_PCI_DEVICE(GLI, 9750, gl9750),
1904 SDHCI_PCI_DEVICE(GLI, 9755, gl9755),
1905 SDHCI_PCI_DEVICE(GLI, 9763E, gl9763e),
1906 SDHCI_PCI_DEVICE_CLASS(AMD, SYSTEM_SDHCI, PCI_CLASS_MASK, amd),
1907 /* Generic SD host controller */
1908 {PCI_DEVICE_CLASS(SYSTEM_SDHCI, PCI_CLASS_MASK)},
1909 { /* end: all zeroes */ },
1912 MODULE_DEVICE_TABLE(pci, pci_ids);
1914 /*****************************************************************************\
1916 * SDHCI core callbacks *
1918 \*****************************************************************************/
1920 int sdhci_pci_enable_dma(struct sdhci_host *host)
1922 struct sdhci_pci_slot *slot;
1923 struct pci_dev *pdev;
1925 slot = sdhci_priv(host);
1926 pdev = slot->chip->pdev;
1928 if (((pdev->class & 0xFFFF00) == (PCI_CLASS_SYSTEM_SDHCI << 8)) &&
1929 ((pdev->class & 0x0000FF) != PCI_SDHCI_IFDMA) &&
1930 (host->flags & SDHCI_USE_SDMA)) {
1931 dev_warn(&pdev->dev, "Will use DMA mode even though HW "
1932 "doesn't fully claim to support it.\n");
1935 pci_set_master(pdev);
1940 static void sdhci_pci_hw_reset(struct sdhci_host *host)
1942 struct sdhci_pci_slot *slot = sdhci_priv(host);
1945 slot->hw_reset(host);
1948 static const struct sdhci_ops sdhci_pci_ops = {
1949 .set_clock = sdhci_set_clock,
1950 .enable_dma = sdhci_pci_enable_dma,
1951 .set_bus_width = sdhci_set_bus_width,
1952 .reset = sdhci_reset,
1953 .set_uhs_signaling = sdhci_set_uhs_signaling,
1954 .hw_reset = sdhci_pci_hw_reset,
1957 /*****************************************************************************\
1961 \*****************************************************************************/
1963 #ifdef CONFIG_PM_SLEEP
1964 static int sdhci_pci_suspend(struct device *dev)
1966 struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
1971 if (chip->fixes && chip->fixes->suspend)
1972 return chip->fixes->suspend(chip);
1974 return sdhci_pci_suspend_host(chip);
1977 static int sdhci_pci_resume(struct device *dev)
1979 struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
1984 if (chip->fixes && chip->fixes->resume)
1985 return chip->fixes->resume(chip);
1987 return sdhci_pci_resume_host(chip);
1992 static int sdhci_pci_runtime_suspend(struct device *dev)
1994 struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
1999 if (chip->fixes && chip->fixes->runtime_suspend)
2000 return chip->fixes->runtime_suspend(chip);
2002 return sdhci_pci_runtime_suspend_host(chip);
2005 static int sdhci_pci_runtime_resume(struct device *dev)
2007 struct sdhci_pci_chip *chip = dev_get_drvdata(dev);
2012 if (chip->fixes && chip->fixes->runtime_resume)
2013 return chip->fixes->runtime_resume(chip);
2015 return sdhci_pci_runtime_resume_host(chip);
2019 static const struct dev_pm_ops sdhci_pci_pm_ops = {
2020 SET_SYSTEM_SLEEP_PM_OPS(sdhci_pci_suspend, sdhci_pci_resume)
2021 SET_RUNTIME_PM_OPS(sdhci_pci_runtime_suspend,
2022 sdhci_pci_runtime_resume, NULL)
2025 /*****************************************************************************\
2027 * Device probing/removal *
2029 \*****************************************************************************/
2031 static struct sdhci_pci_slot *sdhci_pci_probe_slot(
2032 struct pci_dev *pdev, struct sdhci_pci_chip *chip, int first_bar,
2035 struct sdhci_pci_slot *slot;
2036 struct sdhci_host *host;
2037 int ret, bar = first_bar + slotno;
2038 size_t priv_size = chip->fixes ? chip->fixes->priv_size : 0;
2040 if (!(pci_resource_flags(pdev, bar) & IORESOURCE_MEM)) {
2041 dev_err(&pdev->dev, "BAR %d is not iomem. Aborting.\n", bar);
2042 return ERR_PTR(-ENODEV);
2045 if (pci_resource_len(pdev, bar) < 0x100) {
2046 dev_err(&pdev->dev, "Invalid iomem size. You may "
2047 "experience problems.\n");
2050 if ((pdev->class & 0x0000FF) == PCI_SDHCI_IFVENDOR) {
2051 dev_err(&pdev->dev, "Vendor specific interface. Aborting.\n");
2052 return ERR_PTR(-ENODEV);
2055 if ((pdev->class & 0x0000FF) > PCI_SDHCI_IFVENDOR) {
2056 dev_err(&pdev->dev, "Unknown interface. Aborting.\n");
2057 return ERR_PTR(-ENODEV);
2060 host = sdhci_alloc_host(&pdev->dev, sizeof(*slot) + priv_size);
2062 dev_err(&pdev->dev, "cannot allocate host\n");
2063 return ERR_CAST(host);
2066 slot = sdhci_priv(host);
2072 host->hw_name = "PCI";
2073 host->ops = chip->fixes && chip->fixes->ops ?
2076 host->quirks = chip->quirks;
2077 host->quirks2 = chip->quirks2;
2079 host->irq = pdev->irq;
2081 ret = pcim_iomap_regions(pdev, BIT(bar), mmc_hostname(host->mmc));
2083 dev_err(&pdev->dev, "cannot request region\n");
2087 host->ioaddr = pcim_iomap_table(pdev)[bar];
2089 if (chip->fixes && chip->fixes->probe_slot) {
2090 ret = chip->fixes->probe_slot(slot);
2095 host->mmc->pm_caps = MMC_PM_KEEP_POWER;
2096 host->mmc->slotno = slotno;
2097 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
2099 if (device_can_wakeup(&pdev->dev))
2100 host->mmc->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
2102 if (host->mmc->caps & MMC_CAP_CD_WAKE)
2103 device_init_wakeup(&pdev->dev, true);
2105 if (slot->cd_idx >= 0) {
2106 ret = mmc_gpiod_request_cd(host->mmc, "cd", slot->cd_idx,
2107 slot->cd_override_level, 0);
2108 if (ret && ret != -EPROBE_DEFER)
2109 ret = mmc_gpiod_request_cd(host->mmc, NULL,
2111 slot->cd_override_level,
2113 if (ret == -EPROBE_DEFER)
2117 dev_warn(&pdev->dev, "failed to setup card detect gpio\n");
2122 if (chip->fixes && chip->fixes->add_host)
2123 ret = chip->fixes->add_host(slot);
2125 ret = sdhci_add_host(host);
2130 * Check if the chip needs a separate GPIO for card detect to wake up
2131 * from runtime suspend. If it is not there, don't allow runtime PM.
2133 if (chip->fixes && chip->fixes->own_cd_for_runtime_pm && slot->cd_idx < 0)
2134 chip->allow_runtime_pm = false;
2139 if (chip->fixes && chip->fixes->remove_slot)
2140 chip->fixes->remove_slot(slot, 0);
2143 sdhci_free_host(host);
2145 return ERR_PTR(ret);
2148 static void sdhci_pci_remove_slot(struct sdhci_pci_slot *slot)
2154 scratch = readl(slot->host->ioaddr + SDHCI_INT_STATUS);
2155 if (scratch == (u32)-1)
2158 sdhci_remove_host(slot->host, dead);
2160 if (slot->chip->fixes && slot->chip->fixes->remove_slot)
2161 slot->chip->fixes->remove_slot(slot, dead);
2163 sdhci_free_host(slot->host);
2166 static void sdhci_pci_runtime_pm_allow(struct device *dev)
2168 pm_suspend_ignore_children(dev, 1);
2169 pm_runtime_set_autosuspend_delay(dev, 50);
2170 pm_runtime_use_autosuspend(dev);
2171 pm_runtime_allow(dev);
2172 /* Stay active until mmc core scans for a card */
2173 pm_runtime_put_noidle(dev);
2176 static void sdhci_pci_runtime_pm_forbid(struct device *dev)
2178 pm_runtime_forbid(dev);
2179 pm_runtime_get_noresume(dev);
2182 static int sdhci_pci_probe(struct pci_dev *pdev,
2183 const struct pci_device_id *ent)
2185 struct sdhci_pci_chip *chip;
2186 struct sdhci_pci_slot *slot;
2188 u8 slots, first_bar;
2191 BUG_ON(pdev == NULL);
2192 BUG_ON(ent == NULL);
2194 dev_info(&pdev->dev, "SDHCI controller found [%04x:%04x] (rev %x)\n",
2195 (int)pdev->vendor, (int)pdev->device, (int)pdev->revision);
2197 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &slots);
2201 slots = PCI_SLOT_INFO_SLOTS(slots) + 1;
2202 dev_dbg(&pdev->dev, "found %d slot(s)\n", slots);
2204 BUG_ON(slots > MAX_SLOTS);
2206 ret = pci_read_config_byte(pdev, PCI_SLOT_INFO, &first_bar);
2210 first_bar &= PCI_SLOT_INFO_FIRST_BAR_MASK;
2212 if (first_bar > 5) {
2213 dev_err(&pdev->dev, "Invalid first BAR. Aborting.\n");
2217 ret = pcim_enable_device(pdev);
2221 chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
2226 chip->fixes = (const struct sdhci_pci_fixes *)ent->driver_data;
2228 chip->quirks = chip->fixes->quirks;
2229 chip->quirks2 = chip->fixes->quirks2;
2230 chip->allow_runtime_pm = chip->fixes->allow_runtime_pm;
2232 chip->num_slots = slots;
2233 chip->pm_retune = true;
2234 chip->rpm_retune = true;
2236 pci_set_drvdata(pdev, chip);
2238 if (chip->fixes && chip->fixes->probe) {
2239 ret = chip->fixes->probe(chip);
2244 slots = chip->num_slots; /* Quirk may have changed this */
2246 for (i = 0; i < slots; i++) {
2247 slot = sdhci_pci_probe_slot(pdev, chip, first_bar, i);
2249 for (i--; i >= 0; i--)
2250 sdhci_pci_remove_slot(chip->slots[i]);
2251 return PTR_ERR(slot);
2254 chip->slots[i] = slot;
2257 if (chip->allow_runtime_pm)
2258 sdhci_pci_runtime_pm_allow(&pdev->dev);
2263 static void sdhci_pci_remove(struct pci_dev *pdev)
2266 struct sdhci_pci_chip *chip = pci_get_drvdata(pdev);
2268 if (chip->allow_runtime_pm)
2269 sdhci_pci_runtime_pm_forbid(&pdev->dev);
2271 for (i = 0; i < chip->num_slots; i++)
2272 sdhci_pci_remove_slot(chip->slots[i]);
2275 static struct pci_driver sdhci_driver = {
2276 .name = "sdhci-pci",
2277 .id_table = pci_ids,
2278 .probe = sdhci_pci_probe,
2279 .remove = sdhci_pci_remove,
2281 .pm = &sdhci_pci_pm_ops,
2282 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
2286 module_pci_driver(sdhci_driver);
2289 MODULE_DESCRIPTION("Secure Digital Host Controller Interface PCI driver");
2290 MODULE_LICENSE("GPL");