1 // SPDX-License-Identifier: GPL-2.0-only
3 * Secure Digital Host Controller Interface ACPI driver.
5 * Copyright (c) 2012, Intel Corporation.
8 #include <linux/bitfield.h>
9 #include <linux/init.h>
10 #include <linux/export.h>
11 #include <linux/module.h>
12 #include <linux/device.h>
13 #include <linux/platform_device.h>
14 #include <linux/ioport.h>
16 #include <linux/dma-mapping.h>
17 #include <linux/compiler.h>
18 #include <linux/stddef.h>
19 #include <linux/bitops.h>
20 #include <linux/types.h>
21 #include <linux/err.h>
22 #include <linux/interrupt.h>
23 #include <linux/acpi.h>
25 #include <linux/pm_runtime.h>
26 #include <linux/delay.h>
27 #include <linux/dmi.h>
29 #include <linux/mmc/host.h>
30 #include <linux/mmc/pm.h>
31 #include <linux/mmc/slot-gpio.h>
34 #include <asm/cpu_device_id.h>
35 #include <asm/intel-family.h>
36 #include <asm/iosf_mbi.h>
37 #include <linux/pci.h>
43 SDHCI_ACPI_SD_CD
= BIT(0),
44 SDHCI_ACPI_RUNTIME_PM
= BIT(1),
45 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL
= BIT(2),
48 struct sdhci_acpi_chip
{
49 const struct sdhci_ops
*ops
;
54 mmc_pm_flag_t pm_caps
;
57 struct sdhci_acpi_slot
{
58 const struct sdhci_acpi_chip
*chip
;
63 mmc_pm_flag_t pm_caps
;
66 int (*probe_slot
)(struct platform_device
*, struct acpi_device
*);
67 int (*remove_slot
)(struct platform_device
*);
68 int (*free_slot
)(struct platform_device
*pdev
);
69 int (*setup_host
)(struct platform_device
*pdev
);
72 struct sdhci_acpi_host
{
73 struct sdhci_host
*host
;
74 const struct sdhci_acpi_slot
*slot
;
75 struct platform_device
*pdev
;
78 bool reset_signal_volt_on_suspend
;
79 unsigned long private[] ____cacheline_aligned
;
83 DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP
= BIT(0),
84 DMI_QUIRK_SD_NO_WRITE_PROTECT
= BIT(1),
87 static inline void *sdhci_acpi_priv(struct sdhci_acpi_host
*c
)
89 return (void *)c
->private;
92 static inline bool sdhci_acpi_flag(struct sdhci_acpi_host
*c
, unsigned int flag
)
94 return c
->slot
&& (c
->slot
->flags
& flag
);
97 #define INTEL_DSM_HS_CAPS_SDR25 BIT(0)
98 #define INTEL_DSM_HS_CAPS_DDR50 BIT(1)
99 #define INTEL_DSM_HS_CAPS_SDR50 BIT(2)
100 #define INTEL_DSM_HS_CAPS_SDR104 BIT(3)
104 INTEL_DSM_V18_SWITCH
= 3,
105 INTEL_DSM_V33_SWITCH
= 4,
106 INTEL_DSM_HS_CAPS
= 8,
114 static const guid_t intel_dsm_guid
=
115 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
116 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
118 static int __intel_dsm(struct intel_host
*intel_host
, struct device
*dev
,
119 unsigned int fn
, u32
*result
)
121 union acpi_object
*obj
;
124 obj
= acpi_evaluate_dsm(ACPI_HANDLE(dev
), &intel_dsm_guid
, 0, fn
, NULL
);
128 if (obj
->type
== ACPI_TYPE_INTEGER
) {
129 *result
= obj
->integer
.value
;
130 } else if (obj
->type
== ACPI_TYPE_BUFFER
&& obj
->buffer
.length
> 0) {
131 size_t len
= min_t(size_t, obj
->buffer
.length
, 4);
134 memcpy(result
, obj
->buffer
.pointer
, len
);
136 dev_err(dev
, "%s DSM fn %u obj->type %d obj->buffer.length %d\n",
137 __func__
, fn
, obj
->type
, obj
->buffer
.length
);
146 static int intel_dsm(struct intel_host
*intel_host
, struct device
*dev
,
147 unsigned int fn
, u32
*result
)
149 if (fn
> 31 || !(intel_host
->dsm_fns
& (1 << fn
)))
152 return __intel_dsm(intel_host
, dev
, fn
, result
);
155 static void intel_dsm_init(struct intel_host
*intel_host
, struct device
*dev
,
156 struct mmc_host
*mmc
)
160 intel_host
->hs_caps
= ~0;
162 err
= __intel_dsm(intel_host
, dev
, INTEL_DSM_FNS
, &intel_host
->dsm_fns
);
164 pr_debug("%s: DSM not supported, error %d\n",
165 mmc_hostname(mmc
), err
);
169 pr_debug("%s: DSM function mask %#x\n",
170 mmc_hostname(mmc
), intel_host
->dsm_fns
);
172 intel_dsm(intel_host
, dev
, INTEL_DSM_HS_CAPS
, &intel_host
->hs_caps
);
175 static int intel_start_signal_voltage_switch(struct mmc_host
*mmc
,
178 struct device
*dev
= mmc_dev(mmc
);
179 struct sdhci_acpi_host
*c
= dev_get_drvdata(dev
);
180 struct intel_host
*intel_host
= sdhci_acpi_priv(c
);
185 err
= sdhci_start_signal_voltage_switch(mmc
, ios
);
189 switch (ios
->signal_voltage
) {
190 case MMC_SIGNAL_VOLTAGE_330
:
191 fn
= INTEL_DSM_V33_SWITCH
;
193 case MMC_SIGNAL_VOLTAGE_180
:
194 fn
= INTEL_DSM_V18_SWITCH
;
200 err
= intel_dsm(intel_host
, dev
, fn
, &result
);
201 pr_debug("%s: %s DSM fn %u error %d result %u\n",
202 mmc_hostname(mmc
), __func__
, fn
, err
, result
);
207 static void sdhci_acpi_int_hw_reset(struct sdhci_host
*host
)
211 reg
= sdhci_readb(host
, SDHCI_POWER_CONTROL
);
213 sdhci_writeb(host
, reg
, SDHCI_POWER_CONTROL
);
214 /* For eMMC, minimum is 1us but give it 9us for good measure */
217 sdhci_writeb(host
, reg
, SDHCI_POWER_CONTROL
);
218 /* For eMMC, minimum is 200us but give it 300us for good measure */
219 usleep_range(300, 1000);
222 static const struct sdhci_ops sdhci_acpi_ops_dflt
= {
223 .set_clock
= sdhci_set_clock
,
224 .set_bus_width
= sdhci_set_bus_width
,
225 .reset
= sdhci_reset
,
226 .set_uhs_signaling
= sdhci_set_uhs_signaling
,
229 static const struct sdhci_ops sdhci_acpi_ops_int
= {
230 .set_clock
= sdhci_set_clock
,
231 .set_bus_width
= sdhci_set_bus_width
,
232 .reset
= sdhci_reset
,
233 .set_uhs_signaling
= sdhci_set_uhs_signaling
,
234 .hw_reset
= sdhci_acpi_int_hw_reset
,
237 static const struct sdhci_acpi_chip sdhci_acpi_chip_int
= {
238 .ops
= &sdhci_acpi_ops_int
,
243 static bool sdhci_acpi_byt(void)
245 static const struct x86_cpu_id byt
[] = {
246 X86_MATCH_INTEL_FAM6_MODEL(ATOM_SILVERMONT
, NULL
),
250 return x86_match_cpu(byt
);
253 static bool sdhci_acpi_cht(void)
255 static const struct x86_cpu_id cht
[] = {
256 X86_MATCH_INTEL_FAM6_MODEL(ATOM_AIRMONT
, NULL
),
260 return x86_match_cpu(cht
);
263 #define BYT_IOSF_SCCEP 0x63
264 #define BYT_IOSF_OCP_NETCTRL0 0x1078
265 #define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
267 static void sdhci_acpi_byt_setting(struct device
*dev
)
271 if (!sdhci_acpi_byt())
274 if (iosf_mbi_read(BYT_IOSF_SCCEP
, MBI_CR_READ
, BYT_IOSF_OCP_NETCTRL0
,
276 dev_err(dev
, "%s read error\n", __func__
);
280 if (!(val
& BYT_IOSF_OCP_TIMEOUT_BASE
))
283 val
&= ~BYT_IOSF_OCP_TIMEOUT_BASE
;
285 if (iosf_mbi_write(BYT_IOSF_SCCEP
, MBI_CR_WRITE
, BYT_IOSF_OCP_NETCTRL0
,
287 dev_err(dev
, "%s write error\n", __func__
);
291 dev_dbg(dev
, "%s completed\n", __func__
);
294 static bool sdhci_acpi_byt_defer(struct device
*dev
)
296 if (!sdhci_acpi_byt())
299 if (!iosf_mbi_available())
302 sdhci_acpi_byt_setting(dev
);
307 static bool sdhci_acpi_cht_pci_wifi(unsigned int vendor
, unsigned int device
,
308 unsigned int slot
, unsigned int parent_slot
)
310 struct pci_dev
*dev
, *parent
, *from
= NULL
;
313 dev
= pci_get_device(vendor
, device
, from
);
317 parent
= pci_upstream_bridge(dev
);
318 if (ACPI_COMPANION(&dev
->dev
) && PCI_SLOT(dev
->devfn
) == slot
&&
319 parent
&& PCI_SLOT(parent
->devfn
) == parent_slot
&&
320 !pci_upstream_bridge(parent
)) {
331 * GPDwin uses PCI wifi which conflicts with SDIO's use of
332 * acpi_device_fix_up_power() on child device nodes. Identifying GPDwin is
333 * problematic, but since SDIO is only used for wifi, the presence of the PCI
334 * wifi card in the expected slot with an ACPI companion node, is used to
335 * indicate that acpi_device_fix_up_power() should be avoided.
337 static inline bool sdhci_acpi_no_fixup_child_power(struct acpi_device
*adev
)
339 return sdhci_acpi_cht() &&
340 acpi_dev_hid_uid_match(adev
, "80860F14", "2") &&
341 sdhci_acpi_cht_pci_wifi(0x14e4, 0x43ec, 0, 28);
346 static inline void sdhci_acpi_byt_setting(struct device
*dev
)
350 static inline bool sdhci_acpi_byt_defer(struct device
*dev
)
355 static inline bool sdhci_acpi_no_fixup_child_power(struct acpi_device
*adev
)
362 static int bxt_get_cd(struct mmc_host
*mmc
)
364 int gpio_cd
= mmc_gpio_get_cd(mmc
);
365 struct sdhci_host
*host
= mmc_priv(mmc
);
372 spin_lock_irqsave(&host
->lock
, flags
);
374 if (host
->flags
& SDHCI_DEVICE_DEAD
)
377 ret
= !!(sdhci_readl(host
, SDHCI_PRESENT_STATE
) & SDHCI_CARD_PRESENT
);
379 spin_unlock_irqrestore(&host
->lock
, flags
);
384 static int intel_probe_slot(struct platform_device
*pdev
, struct acpi_device
*adev
)
386 struct sdhci_acpi_host
*c
= platform_get_drvdata(pdev
);
387 struct intel_host
*intel_host
= sdhci_acpi_priv(c
);
388 struct sdhci_host
*host
= c
->host
;
390 if (acpi_dev_hid_uid_match(adev
, "80860F14", "1") &&
391 sdhci_readl(host
, SDHCI_CAPABILITIES
) == 0x446cc8b2 &&
392 sdhci_readl(host
, SDHCI_CAPABILITIES_1
) == 0x00000807)
393 host
->timeout_clk
= 1000; /* 1000 kHz i.e. 1 MHz */
395 if (acpi_dev_hid_uid_match(adev
, "80865ACA", NULL
))
396 host
->mmc_host_ops
.get_cd
= bxt_get_cd
;
398 intel_dsm_init(intel_host
, &pdev
->dev
, host
->mmc
);
400 host
->mmc_host_ops
.start_signal_voltage_switch
=
401 intel_start_signal_voltage_switch
;
408 static int intel_setup_host(struct platform_device
*pdev
)
410 struct sdhci_acpi_host
*c
= platform_get_drvdata(pdev
);
411 struct intel_host
*intel_host
= sdhci_acpi_priv(c
);
413 if (!(intel_host
->hs_caps
& INTEL_DSM_HS_CAPS_SDR25
))
414 c
->host
->mmc
->caps
&= ~MMC_CAP_UHS_SDR25
;
416 if (!(intel_host
->hs_caps
& INTEL_DSM_HS_CAPS_SDR50
))
417 c
->host
->mmc
->caps
&= ~MMC_CAP_UHS_SDR50
;
419 if (!(intel_host
->hs_caps
& INTEL_DSM_HS_CAPS_DDR50
))
420 c
->host
->mmc
->caps
&= ~MMC_CAP_UHS_DDR50
;
422 if (!(intel_host
->hs_caps
& INTEL_DSM_HS_CAPS_SDR104
))
423 c
->host
->mmc
->caps
&= ~MMC_CAP_UHS_SDR104
;
428 static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc
= {
429 .chip
= &sdhci_acpi_chip_int
,
430 .caps
= MMC_CAP_8_BIT_DATA
| MMC_CAP_NONREMOVABLE
|
431 MMC_CAP_HW_RESET
| MMC_CAP_1_8V_DDR
|
432 MMC_CAP_CMD_DURING_TFR
| MMC_CAP_WAIT_WHILE_BUSY
,
433 .flags
= SDHCI_ACPI_RUNTIME_PM
,
434 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
|
436 .quirks2
= SDHCI_QUIRK2_PRESET_VALUE_BROKEN
|
437 SDHCI_QUIRK2_STOP_WITH_TC
|
438 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400
,
439 .probe_slot
= intel_probe_slot
,
440 .setup_host
= intel_setup_host
,
441 .priv_size
= sizeof(struct intel_host
),
444 static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio
= {
445 .quirks
= SDHCI_QUIRK_BROKEN_CARD_DETECTION
|
447 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
,
448 .quirks2
= SDHCI_QUIRK2_HOST_OFF_CARD_ON
,
449 .caps
= MMC_CAP_NONREMOVABLE
| MMC_CAP_POWER_OFF_CARD
|
450 MMC_CAP_WAIT_WHILE_BUSY
,
451 .flags
= SDHCI_ACPI_RUNTIME_PM
,
452 .pm_caps
= MMC_PM_KEEP_POWER
,
453 .probe_slot
= intel_probe_slot
,
454 .setup_host
= intel_setup_host
,
455 .priv_size
= sizeof(struct intel_host
),
458 static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd
= {
459 .flags
= SDHCI_ACPI_SD_CD
| SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL
|
460 SDHCI_ACPI_RUNTIME_PM
,
461 .quirks
= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC
|
463 .quirks2
= SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON
|
464 SDHCI_QUIRK2_STOP_WITH_TC
,
465 .caps
= MMC_CAP_WAIT_WHILE_BUSY
| MMC_CAP_AGGRESSIVE_PM
,
466 .probe_slot
= intel_probe_slot
,
467 .setup_host
= intel_setup_host
,
468 .priv_size
= sizeof(struct intel_host
),
471 #define VENDOR_SPECIFIC_PWRCTL_CLEAR_REG 0x1a8
472 #define VENDOR_SPECIFIC_PWRCTL_CTL_REG 0x1ac
473 static irqreturn_t
sdhci_acpi_qcom_handler(int irq
, void *ptr
)
475 struct sdhci_host
*host
= ptr
;
477 sdhci_writel(host
, 0x3, VENDOR_SPECIFIC_PWRCTL_CLEAR_REG
);
478 sdhci_writel(host
, 0x1, VENDOR_SPECIFIC_PWRCTL_CTL_REG
);
483 static int qcom_probe_slot(struct platform_device
*pdev
, struct acpi_device
*adev
)
485 struct sdhci_acpi_host
*c
= platform_get_drvdata(pdev
);
486 struct sdhci_host
*host
= c
->host
;
487 int *irq
= sdhci_acpi_priv(c
);
491 if (!acpi_dev_hid_uid_match(adev
, "QCOM8051", NULL
))
494 *irq
= platform_get_irq(pdev
, 1);
498 return request_threaded_irq(*irq
, NULL
, sdhci_acpi_qcom_handler
,
499 IRQF_ONESHOT
| IRQF_TRIGGER_HIGH
,
503 static int qcom_free_slot(struct platform_device
*pdev
)
505 struct device
*dev
= &pdev
->dev
;
506 struct sdhci_acpi_host
*c
= platform_get_drvdata(pdev
);
507 struct sdhci_host
*host
= c
->host
;
508 struct acpi_device
*adev
;
509 int *irq
= sdhci_acpi_priv(c
);
511 adev
= ACPI_COMPANION(dev
);
515 if (!acpi_dev_hid_uid_match(adev
, "QCOM8051", NULL
))
521 free_irq(*irq
, host
);
525 static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v
= {
526 .quirks
= SDHCI_QUIRK_BROKEN_CARD_DETECTION
,
527 .quirks2
= SDHCI_QUIRK2_NO_1_8_V
,
528 .caps
= MMC_CAP_NONREMOVABLE
,
529 .priv_size
= sizeof(int),
530 .probe_slot
= qcom_probe_slot
,
531 .free_slot
= qcom_free_slot
,
534 static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd
= {
535 .quirks
= SDHCI_QUIRK_BROKEN_CARD_DETECTION
,
536 .caps
= MMC_CAP_NONREMOVABLE
,
539 struct amd_sdhci_host
{
544 /* AMD sdhci reset dll register. */
545 #define SDHCI_AMD_RESET_DLL_REGISTER 0x908
547 static int amd_select_drive_strength(struct mmc_card
*card
,
548 unsigned int max_dtr
, int host_drv
,
549 int card_drv
, int *host_driver_strength
)
551 struct sdhci_host
*host
= mmc_priv(card
->host
);
552 u16 preset
, preset_driver_strength
;
555 * This method is only called by mmc_select_hs200 so we only need to
556 * read from the HS200 (SDR104) preset register.
558 * Firmware that has "invalid/default" presets return a driver strength
559 * of A. This matches the previously hard coded value.
561 preset
= sdhci_readw(host
, SDHCI_PRESET_FOR_SDR104
);
562 preset_driver_strength
= FIELD_GET(SDHCI_PRESET_DRV_MASK
, preset
);
565 * We want the controller driver strength to match the card's driver
566 * strength so they have similar rise/fall times.
568 * The controller driver strength set by this method is sticky for all
569 * timings after this method is called. This unfortunately means that
570 * while HS400 tuning is in progress we end up with mismatched driver
571 * strengths between the controller and the card. HS400 tuning requires
572 * switching from HS400->DDR52->HS->HS200->HS400. So the driver mismatch
573 * happens while in DDR52 and HS modes. This has not been observed to
574 * cause problems. Enabling presets would fix this issue.
576 *host_driver_strength
= preset_driver_strength
;
579 * The resulting card driver strength is only set when switching the
580 * card's timing to HS200 or HS400. The card will use the default driver
581 * strength (B) for any other mode.
583 return preset_driver_strength
;
586 static void sdhci_acpi_amd_hs400_dll(struct sdhci_host
*host
, bool enable
)
588 struct sdhci_acpi_host
*acpi_host
= sdhci_priv(host
);
589 struct amd_sdhci_host
*amd_host
= sdhci_acpi_priv(acpi_host
);
591 /* AMD Platform requires dll setting */
592 sdhci_writel(host
, 0x40003210, SDHCI_AMD_RESET_DLL_REGISTER
);
593 usleep_range(10, 20);
595 sdhci_writel(host
, 0x40033210, SDHCI_AMD_RESET_DLL_REGISTER
);
597 amd_host
->dll_enabled
= enable
;
601 * The initialization sequence for HS400 is:
602 * HS->HS200->Perform Tuning->HS->HS400
604 * The re-tuning sequence is:
605 * HS400->DDR52->HS->HS200->Perform Tuning->HS->HS400
607 * The AMD eMMC Controller can only use the tuned clock while in HS200 and HS400
608 * mode. If we switch to a different mode, we need to disable the tuned clock.
609 * If we have previously performed tuning and switch back to HS200 or
610 * HS400, we can re-enable the tuned clock.
613 static void amd_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
615 struct sdhci_host
*host
= mmc_priv(mmc
);
616 struct sdhci_acpi_host
*acpi_host
= sdhci_priv(host
);
617 struct amd_sdhci_host
*amd_host
= sdhci_acpi_priv(acpi_host
);
618 unsigned int old_timing
= host
->timing
;
621 sdhci_set_ios(mmc
, ios
);
623 if (old_timing
!= host
->timing
&& amd_host
->tuned_clock
) {
624 if (host
->timing
== MMC_TIMING_MMC_HS400
||
625 host
->timing
== MMC_TIMING_MMC_HS200
) {
626 val
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
627 val
|= SDHCI_CTRL_TUNED_CLK
;
628 sdhci_writew(host
, val
, SDHCI_HOST_CONTROL2
);
630 val
= sdhci_readw(host
, SDHCI_HOST_CONTROL2
);
631 val
&= ~SDHCI_CTRL_TUNED_CLK
;
632 sdhci_writew(host
, val
, SDHCI_HOST_CONTROL2
);
635 /* DLL is only required for HS400 */
636 if (host
->timing
== MMC_TIMING_MMC_HS400
&&
637 !amd_host
->dll_enabled
)
638 sdhci_acpi_amd_hs400_dll(host
, true);
642 static int amd_sdhci_execute_tuning(struct mmc_host
*mmc
, u32 opcode
)
645 struct sdhci_host
*host
= mmc_priv(mmc
);
646 struct sdhci_acpi_host
*acpi_host
= sdhci_priv(host
);
647 struct amd_sdhci_host
*amd_host
= sdhci_acpi_priv(acpi_host
);
649 amd_host
->tuned_clock
= false;
651 err
= sdhci_execute_tuning(mmc
, opcode
);
653 if (!err
&& !host
->tuning_err
)
654 amd_host
->tuned_clock
= true;
659 static void amd_sdhci_reset(struct sdhci_host
*host
, u8 mask
)
661 struct sdhci_acpi_host
*acpi_host
= sdhci_priv(host
);
662 struct amd_sdhci_host
*amd_host
= sdhci_acpi_priv(acpi_host
);
664 if (mask
& SDHCI_RESET_ALL
) {
665 amd_host
->tuned_clock
= false;
666 sdhci_acpi_amd_hs400_dll(host
, false);
669 sdhci_reset(host
, mask
);
672 static const struct sdhci_ops sdhci_acpi_ops_amd
= {
673 .set_clock
= sdhci_set_clock
,
674 .set_bus_width
= sdhci_set_bus_width
,
675 .reset
= amd_sdhci_reset
,
676 .set_uhs_signaling
= sdhci_set_uhs_signaling
,
679 static const struct sdhci_acpi_chip sdhci_acpi_chip_amd
= {
680 .ops
= &sdhci_acpi_ops_amd
,
683 static int sdhci_acpi_emmc_amd_probe_slot(struct platform_device
*pdev
,
684 struct acpi_device
*adev
)
686 struct sdhci_acpi_host
*c
= platform_get_drvdata(pdev
);
687 struct sdhci_host
*host
= c
->host
;
689 sdhci_read_caps(host
);
690 if (host
->caps1
& SDHCI_SUPPORT_DDR50
)
691 host
->mmc
->caps
= MMC_CAP_1_8V_DDR
;
693 if ((host
->caps1
& SDHCI_SUPPORT_SDR104
) &&
694 (host
->mmc
->caps
& MMC_CAP_1_8V_DDR
))
695 host
->mmc
->caps2
= MMC_CAP2_HS400_1_8V
;
698 * There are two types of presets out in the wild:
699 * 1) Default/broken presets.
700 * These presets have two sets of problems:
701 * a) The clock divisor for SDR12, SDR25, and SDR50 is too small.
702 * This results in clock frequencies that are 2x higher than
703 * acceptable. i.e., SDR12 = 25 MHz, SDR25 = 50 MHz, SDR50 =
705 * b) The HS200 and HS400 driver strengths don't match.
706 * By default, the SDR104 preset register has a driver strength of
707 * A, but the (internal) HS400 preset register has a driver
708 * strength of B. As part of initializing HS400, HS200 tuning
709 * needs to be performed. Having different driver strengths
710 * between tuning and operation is wrong. It results in different
711 * rise/fall times that lead to incorrect sampling.
712 * 2) Firmware with properly initialized presets.
713 * These presets have proper clock divisors. i.e., SDR12 => 12MHz,
714 * SDR25 => 25 MHz, SDR50 => 50 MHz. Additionally the HS200 and
715 * HS400 preset driver strengths match.
717 * Enabling presets for HS400 doesn't work for the following reasons:
718 * 1) sdhci_set_ios has a hard coded list of timings that are used
719 * to determine if presets should be enabled.
720 * 2) sdhci_get_preset_value is using a non-standard register to
721 * read out HS400 presets. The AMD controller doesn't support this
722 * non-standard register. In fact, it doesn't expose the HS400
723 * preset register anywhere in the SDHCI memory map. This results
724 * in reading a garbage value and using the wrong presets.
726 * Since HS400 and HS200 presets must be identical, we could
727 * instead use the the SDR104 preset register.
729 * If the above issues are resolved we could remove this quirk for
730 * firmware that that has valid presets (i.e., SDR12 <= 12 MHz).
732 host
->quirks2
|= SDHCI_QUIRK2_PRESET_VALUE_BROKEN
;
734 host
->mmc_host_ops
.select_drive_strength
= amd_select_drive_strength
;
735 host
->mmc_host_ops
.set_ios
= amd_set_ios
;
736 host
->mmc_host_ops
.execute_tuning
= amd_sdhci_execute_tuning
;
740 static const struct sdhci_acpi_slot sdhci_acpi_slot_amd_emmc
= {
741 .chip
= &sdhci_acpi_chip_amd
,
742 .caps
= MMC_CAP_8_BIT_DATA
| MMC_CAP_NONREMOVABLE
,
743 .quirks
= SDHCI_QUIRK_32BIT_DMA_ADDR
|
744 SDHCI_QUIRK_32BIT_DMA_SIZE
|
745 SDHCI_QUIRK_32BIT_ADMA_SIZE
,
746 .quirks2
= SDHCI_QUIRK2_BROKEN_64_BIT_DMA
,
747 .probe_slot
= sdhci_acpi_emmc_amd_probe_slot
,
748 .priv_size
= sizeof(struct amd_sdhci_host
),
751 struct sdhci_acpi_uid_slot
{
754 const struct sdhci_acpi_slot
*slot
;
757 static const struct sdhci_acpi_uid_slot sdhci_acpi_uids
[] = {
758 { "80865ACA", NULL
, &sdhci_acpi_slot_int_sd
},
759 { "80865ACC", NULL
, &sdhci_acpi_slot_int_emmc
},
760 { "80865AD0", NULL
, &sdhci_acpi_slot_int_sdio
},
761 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc
},
762 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio
},
763 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd
},
764 { "80860F16" , NULL
, &sdhci_acpi_slot_int_sd
},
765 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio
},
766 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd
},
767 { "INT33C6" , NULL
, &sdhci_acpi_slot_int_sdio
},
768 { "INT3436" , NULL
, &sdhci_acpi_slot_int_sdio
},
769 { "INT344D" , NULL
, &sdhci_acpi_slot_int_sdio
},
770 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd
},
772 { "QCOM8051", NULL
, &sdhci_acpi_slot_qcom_sd_3v
},
773 { "QCOM8052", NULL
, &sdhci_acpi_slot_qcom_sd
},
774 { "AMDI0040", NULL
, &sdhci_acpi_slot_amd_emmc
},
778 static const struct acpi_device_id sdhci_acpi_ids
[] = {
794 MODULE_DEVICE_TABLE(acpi
, sdhci_acpi_ids
);
796 static const struct dmi_system_id sdhci_acpi_quirks
[] = {
799 * The Lenovo Miix 320-10ICR has a bug in the _PS0 method of
800 * the SHC1 ACPI device, this bug causes it to reprogram the
801 * wrong LDO (DLDO3) to 1.8V if 1.8V modes are used and the
802 * card is (runtime) suspended + resumed. DLDO3 is used for
803 * the LCD and setting it to 1.8V causes the LCD to go black.
806 DMI_MATCH(DMI_SYS_VENDOR
, "LENOVO"),
807 DMI_MATCH(DMI_PRODUCT_VERSION
, "Lenovo MIIX 320-10ICR"),
809 .driver_data
= (void *)DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP
,
813 * The Acer Aspire Switch 10 (SW5-012) microSD slot always
814 * reports the card being write-protected even though microSD
815 * cards do not have a write-protect switch at all.
818 DMI_MATCH(DMI_SYS_VENDOR
, "Acer"),
819 DMI_MATCH(DMI_PRODUCT_NAME
, "Aspire SW5-012"),
821 .driver_data
= (void *)DMI_QUIRK_SD_NO_WRITE_PROTECT
,
823 {} /* Terminating entry */
826 static const struct sdhci_acpi_slot
*sdhci_acpi_get_slot(struct acpi_device
*adev
)
828 const struct sdhci_acpi_uid_slot
*u
;
830 for (u
= sdhci_acpi_uids
; u
->hid
; u
++) {
831 if (acpi_dev_hid_uid_match(adev
, u
->hid
, u
->uid
))
837 static int sdhci_acpi_probe(struct platform_device
*pdev
)
839 struct device
*dev
= &pdev
->dev
;
840 const struct sdhci_acpi_slot
*slot
;
841 struct acpi_device
*device
, *child
;
842 const struct dmi_system_id
*id
;
843 struct sdhci_acpi_host
*c
;
844 struct sdhci_host
*host
;
845 struct resource
*iomem
;
851 device
= ACPI_COMPANION(dev
);
855 id
= dmi_first_match(sdhci_acpi_quirks
);
857 quirks
= (long)id
->driver_data
;
859 slot
= sdhci_acpi_get_slot(device
);
861 /* Power on the SDHCI controller and its children */
862 acpi_device_fix_up_power(device
);
863 if (!sdhci_acpi_no_fixup_child_power(device
)) {
864 list_for_each_entry(child
, &device
->children
, node
)
865 if (child
->status
.present
&& child
->status
.enabled
)
866 acpi_device_fix_up_power(child
);
869 if (sdhci_acpi_byt_defer(dev
))
870 return -EPROBE_DEFER
;
872 iomem
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
876 len
= resource_size(iomem
);
878 dev_err(dev
, "Invalid iomem size!\n");
880 if (!devm_request_mem_region(dev
, iomem
->start
, len
, dev_name(dev
)))
883 priv_size
= slot
? slot
->priv_size
: 0;
884 host
= sdhci_alloc_host(dev
, sizeof(struct sdhci_acpi_host
) + priv_size
);
886 return PTR_ERR(host
);
888 c
= sdhci_priv(host
);
892 c
->use_runtime_pm
= sdhci_acpi_flag(c
, SDHCI_ACPI_RUNTIME_PM
);
894 platform_set_drvdata(pdev
, c
);
896 host
->hw_name
= "ACPI";
897 host
->ops
= &sdhci_acpi_ops_dflt
;
898 host
->irq
= platform_get_irq(pdev
, 0);
904 host
->ioaddr
= devm_ioremap(dev
, iomem
->start
,
905 resource_size(iomem
));
906 if (host
->ioaddr
== NULL
) {
912 if (c
->slot
->probe_slot
) {
913 err
= c
->slot
->probe_slot(pdev
, device
);
918 host
->ops
= c
->slot
->chip
->ops
;
919 host
->quirks
|= c
->slot
->chip
->quirks
;
920 host
->quirks2
|= c
->slot
->chip
->quirks2
;
921 host
->mmc
->caps
|= c
->slot
->chip
->caps
;
922 host
->mmc
->caps2
|= c
->slot
->chip
->caps2
;
923 host
->mmc
->pm_caps
|= c
->slot
->chip
->pm_caps
;
925 host
->quirks
|= c
->slot
->quirks
;
926 host
->quirks2
|= c
->slot
->quirks2
;
927 host
->mmc
->caps
|= c
->slot
->caps
;
928 host
->mmc
->caps2
|= c
->slot
->caps2
;
929 host
->mmc
->pm_caps
|= c
->slot
->pm_caps
;
932 host
->mmc
->caps2
|= MMC_CAP2_NO_PRESCAN_POWERUP
;
934 if (sdhci_acpi_flag(c
, SDHCI_ACPI_SD_CD
)) {
935 bool v
= sdhci_acpi_flag(c
, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL
);
937 err
= mmc_gpiod_request_cd(host
->mmc
, NULL
, 0, v
, 0);
939 if (err
== -EPROBE_DEFER
)
941 dev_warn(dev
, "failed to setup card detect gpio\n");
942 c
->use_runtime_pm
= false;
945 if (quirks
& DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP
)
946 c
->reset_signal_volt_on_suspend
= true;
948 if (quirks
& DMI_QUIRK_SD_NO_WRITE_PROTECT
)
949 host
->mmc
->caps2
|= MMC_CAP2_NO_WRITE_PROTECT
;
952 err
= sdhci_setup_host(host
);
956 if (c
->slot
&& c
->slot
->setup_host
) {
957 err
= c
->slot
->setup_host(pdev
);
962 err
= __sdhci_add_host(host
);
966 if (c
->use_runtime_pm
) {
967 pm_runtime_set_active(dev
);
968 pm_suspend_ignore_children(dev
, 1);
969 pm_runtime_set_autosuspend_delay(dev
, 50);
970 pm_runtime_use_autosuspend(dev
);
971 pm_runtime_enable(dev
);
974 device_enable_async_suspend(dev
);
979 sdhci_cleanup_host(c
->host
);
981 if (c
->slot
&& c
->slot
->free_slot
)
982 c
->slot
->free_slot(pdev
);
984 sdhci_free_host(c
->host
);
988 static int sdhci_acpi_remove(struct platform_device
*pdev
)
990 struct sdhci_acpi_host
*c
= platform_get_drvdata(pdev
);
991 struct device
*dev
= &pdev
->dev
;
994 if (c
->use_runtime_pm
) {
995 pm_runtime_get_sync(dev
);
996 pm_runtime_disable(dev
);
997 pm_runtime_put_noidle(dev
);
1000 if (c
->slot
&& c
->slot
->remove_slot
)
1001 c
->slot
->remove_slot(pdev
);
1003 dead
= (sdhci_readl(c
->host
, SDHCI_INT_STATUS
) == ~0);
1004 sdhci_remove_host(c
->host
, dead
);
1006 if (c
->slot
&& c
->slot
->free_slot
)
1007 c
->slot
->free_slot(pdev
);
1009 sdhci_free_host(c
->host
);
1014 static void __maybe_unused
sdhci_acpi_reset_signal_voltage_if_needed(
1017 struct sdhci_acpi_host
*c
= dev_get_drvdata(dev
);
1018 struct sdhci_host
*host
= c
->host
;
1020 if (c
->is_intel
&& c
->reset_signal_volt_on_suspend
&&
1021 host
->mmc
->ios
.signal_voltage
!= MMC_SIGNAL_VOLTAGE_330
) {
1022 struct intel_host
*intel_host
= sdhci_acpi_priv(c
);
1023 unsigned int fn
= INTEL_DSM_V33_SWITCH
;
1026 intel_dsm(intel_host
, dev
, fn
, &result
);
1030 #ifdef CONFIG_PM_SLEEP
1032 static int sdhci_acpi_suspend(struct device
*dev
)
1034 struct sdhci_acpi_host
*c
= dev_get_drvdata(dev
);
1035 struct sdhci_host
*host
= c
->host
;
1038 if (host
->tuning_mode
!= SDHCI_TUNING_MODE_3
)
1039 mmc_retune_needed(host
->mmc
);
1041 ret
= sdhci_suspend_host(host
);
1045 sdhci_acpi_reset_signal_voltage_if_needed(dev
);
1049 static int sdhci_acpi_resume(struct device
*dev
)
1051 struct sdhci_acpi_host
*c
= dev_get_drvdata(dev
);
1053 sdhci_acpi_byt_setting(&c
->pdev
->dev
);
1055 return sdhci_resume_host(c
->host
);
1062 static int sdhci_acpi_runtime_suspend(struct device
*dev
)
1064 struct sdhci_acpi_host
*c
= dev_get_drvdata(dev
);
1065 struct sdhci_host
*host
= c
->host
;
1068 if (host
->tuning_mode
!= SDHCI_TUNING_MODE_3
)
1069 mmc_retune_needed(host
->mmc
);
1071 ret
= sdhci_runtime_suspend_host(host
);
1075 sdhci_acpi_reset_signal_voltage_if_needed(dev
);
1079 static int sdhci_acpi_runtime_resume(struct device
*dev
)
1081 struct sdhci_acpi_host
*c
= dev_get_drvdata(dev
);
1083 sdhci_acpi_byt_setting(&c
->pdev
->dev
);
1085 return sdhci_runtime_resume_host(c
->host
, 0);
1090 static const struct dev_pm_ops sdhci_acpi_pm_ops
= {
1091 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend
, sdhci_acpi_resume
)
1092 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend
,
1093 sdhci_acpi_runtime_resume
, NULL
)
1096 static struct platform_driver sdhci_acpi_driver
= {
1098 .name
= "sdhci-acpi",
1099 .probe_type
= PROBE_PREFER_ASYNCHRONOUS
,
1100 .acpi_match_table
= sdhci_acpi_ids
,
1101 .pm
= &sdhci_acpi_pm_ops
,
1103 .probe
= sdhci_acpi_probe
,
1104 .remove
= sdhci_acpi_remove
,
1107 module_platform_driver(sdhci_acpi_driver
);
1109 MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
1110 MODULE_AUTHOR("Adrian Hunter");
1111 MODULE_LICENSE("GPL v2");