Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Secure Digital Host Controller Interface ACPI driver.
4 *
5 * Copyright (c) 2012, Intel Corporation.
6 */
7
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>
15#include <linux/io.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>
24#include <linux/pm.h>
25#include <linux/pm_runtime.h>
26#include <linux/delay.h>
27#include <linux/dmi.h>
28
29#include <linux/mmc/host.h>
30#include <linux/mmc/pm.h>
31#include <linux/mmc/slot-gpio.h>
32
33#ifdef CONFIG_X86
34#include <linux/platform_data/x86/soc.h>
35#include <asm/iosf_mbi.h>
36#endif
37
38#include "sdhci.h"
39
40enum {
41 SDHCI_ACPI_SD_CD = BIT(0),
42 SDHCI_ACPI_RUNTIME_PM = BIT(1),
43 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
44};
45
46struct sdhci_acpi_chip {
47 const struct sdhci_ops *ops;
48 unsigned int quirks;
49 unsigned int quirks2;
50 unsigned long caps;
51 unsigned int caps2;
52 mmc_pm_flag_t pm_caps;
53};
54
55struct sdhci_acpi_slot {
56 const struct sdhci_acpi_chip *chip;
57 unsigned int quirks;
58 unsigned int quirks2;
59 unsigned long caps;
60 unsigned int caps2;
61 mmc_pm_flag_t pm_caps;
62 unsigned int flags;
63 size_t priv_size;
64 int (*probe_slot)(struct platform_device *, struct acpi_device *);
65 int (*remove_slot)(struct platform_device *);
66 int (*free_slot)(struct platform_device *pdev);
67 int (*setup_host)(struct platform_device *pdev);
68};
69
70struct sdhci_acpi_host {
71 struct sdhci_host *host;
72 const struct sdhci_acpi_slot *slot;
73 struct platform_device *pdev;
74 bool use_runtime_pm;
75 bool is_intel;
76 bool reset_signal_volt_on_suspend;
77 unsigned long private[] ____cacheline_aligned;
78};
79
80enum {
81 DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP = BIT(0),
82 DMI_QUIRK_SD_NO_WRITE_PROTECT = BIT(1),
83};
84
85static inline void *sdhci_acpi_priv(struct sdhci_acpi_host *c)
86{
87 return (void *)c->private;
88}
89
90static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
91{
92 return c->slot && (c->slot->flags & flag);
93}
94
95#define INTEL_DSM_HS_CAPS_SDR25 BIT(0)
96#define INTEL_DSM_HS_CAPS_DDR50 BIT(1)
97#define INTEL_DSM_HS_CAPS_SDR50 BIT(2)
98#define INTEL_DSM_HS_CAPS_SDR104 BIT(3)
99
100enum {
101 INTEL_DSM_FNS = 0,
102 INTEL_DSM_V18_SWITCH = 3,
103 INTEL_DSM_V33_SWITCH = 4,
104 INTEL_DSM_HS_CAPS = 8,
105};
106
107struct intel_host {
108 u32 dsm_fns;
109 u32 hs_caps;
110};
111
112static const guid_t intel_dsm_guid =
113 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
114 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
115
116static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
117 unsigned int fn, u32 *result)
118{
119 union acpi_object *obj;
120 int err = 0;
121
122 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
123 if (!obj)
124 return -EOPNOTSUPP;
125
126 if (obj->type == ACPI_TYPE_INTEGER) {
127 *result = obj->integer.value;
128 } else if (obj->type == ACPI_TYPE_BUFFER && obj->buffer.length > 0) {
129 size_t len = min_t(size_t, obj->buffer.length, 4);
130
131 *result = 0;
132 memcpy(result, obj->buffer.pointer, len);
133 } else {
134 dev_err(dev, "%s DSM fn %u obj->type %d obj->buffer.length %d\n",
135 __func__, fn, obj->type, obj->buffer.length);
136 err = -EINVAL;
137 }
138
139 ACPI_FREE(obj);
140
141 return err;
142}
143
144static int intel_dsm(struct intel_host *intel_host, struct device *dev,
145 unsigned int fn, u32 *result)
146{
147 if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
148 return -EOPNOTSUPP;
149
150 return __intel_dsm(intel_host, dev, fn, result);
151}
152
153static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
154 struct mmc_host *mmc)
155{
156 int err;
157
158 intel_host->hs_caps = ~0;
159
160 err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
161 if (err) {
162 pr_debug("%s: DSM not supported, error %d\n",
163 mmc_hostname(mmc), err);
164 return;
165 }
166
167 pr_debug("%s: DSM function mask %#x\n",
168 mmc_hostname(mmc), intel_host->dsm_fns);
169
170 intel_dsm(intel_host, dev, INTEL_DSM_HS_CAPS, &intel_host->hs_caps);
171}
172
173static int intel_start_signal_voltage_switch(struct mmc_host *mmc,
174 struct mmc_ios *ios)
175{
176 struct device *dev = mmc_dev(mmc);
177 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
178 struct intel_host *intel_host = sdhci_acpi_priv(c);
179 unsigned int fn;
180 u32 result = 0;
181 int err;
182
183 err = sdhci_start_signal_voltage_switch(mmc, ios);
184 if (err)
185 return err;
186
187 switch (ios->signal_voltage) {
188 case MMC_SIGNAL_VOLTAGE_330:
189 fn = INTEL_DSM_V33_SWITCH;
190 break;
191 case MMC_SIGNAL_VOLTAGE_180:
192 fn = INTEL_DSM_V18_SWITCH;
193 break;
194 default:
195 return 0;
196 }
197
198 err = intel_dsm(intel_host, dev, fn, &result);
199 pr_debug("%s: %s DSM fn %u error %d result %u\n",
200 mmc_hostname(mmc), __func__, fn, err, result);
201
202 return 0;
203}
204
205static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
206{
207 u8 reg;
208
209 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
210 reg |= 0x10;
211 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
212 /* For eMMC, minimum is 1us but give it 9us for good measure */
213 udelay(9);
214 reg &= ~0x10;
215 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
216 /* For eMMC, minimum is 200us but give it 300us for good measure */
217 usleep_range(300, 1000);
218}
219
220static const struct sdhci_ops sdhci_acpi_ops_dflt = {
221 .set_clock = sdhci_set_clock,
222 .set_bus_width = sdhci_set_bus_width,
223 .reset = sdhci_reset,
224 .set_uhs_signaling = sdhci_set_uhs_signaling,
225};
226
227static const struct sdhci_ops sdhci_acpi_ops_int = {
228 .set_clock = sdhci_set_clock,
229 .set_bus_width = sdhci_set_bus_width,
230 .reset = sdhci_reset,
231 .set_uhs_signaling = sdhci_set_uhs_signaling,
232 .hw_reset = sdhci_acpi_int_hw_reset,
233};
234
235static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
236 .ops = &sdhci_acpi_ops_int,
237};
238
239#ifdef CONFIG_X86
240
241#define BYT_IOSF_SCCEP 0x63
242#define BYT_IOSF_OCP_NETCTRL0 0x1078
243#define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
244
245static void sdhci_acpi_byt_setting(struct device *dev)
246{
247 u32 val = 0;
248
249 if (!soc_intel_is_byt())
250 return;
251
252 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
253 &val)) {
254 dev_err(dev, "%s read error\n", __func__);
255 return;
256 }
257
258 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
259 return;
260
261 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
262
263 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
264 val)) {
265 dev_err(dev, "%s write error\n", __func__);
266 return;
267 }
268
269 dev_dbg(dev, "%s completed\n", __func__);
270}
271
272static bool sdhci_acpi_byt_defer(struct device *dev)
273{
274 if (!soc_intel_is_byt())
275 return false;
276
277 if (!iosf_mbi_available())
278 return true;
279
280 sdhci_acpi_byt_setting(dev);
281
282 return false;
283}
284
285#else
286
287static inline void sdhci_acpi_byt_setting(struct device *dev)
288{
289}
290
291static inline bool sdhci_acpi_byt_defer(struct device *dev)
292{
293 return false;
294}
295
296#endif
297
298static int bxt_get_cd(struct mmc_host *mmc)
299{
300 int gpio_cd = mmc_gpio_get_cd(mmc);
301
302 if (!gpio_cd)
303 return 0;
304
305 return sdhci_get_cd_nogpio(mmc);
306}
307
308static int intel_probe_slot(struct platform_device *pdev, struct acpi_device *adev)
309{
310 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
311 struct intel_host *intel_host = sdhci_acpi_priv(c);
312 struct sdhci_host *host = c->host;
313
314 if (acpi_dev_hid_uid_match(adev, "80860F14", "1") &&
315 sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
316 sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
317 host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
318
319 if (acpi_dev_hid_uid_match(adev, "80865ACA", NULL))
320 host->mmc_host_ops.get_cd = bxt_get_cd;
321
322 intel_dsm_init(intel_host, &pdev->dev, host->mmc);
323
324 host->mmc_host_ops.start_signal_voltage_switch =
325 intel_start_signal_voltage_switch;
326
327 c->is_intel = true;
328
329 return 0;
330}
331
332static int intel_setup_host(struct platform_device *pdev)
333{
334 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
335 struct intel_host *intel_host = sdhci_acpi_priv(c);
336
337 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR25))
338 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR25;
339
340 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR50))
341 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR50;
342
343 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_DDR50))
344 c->host->mmc->caps &= ~MMC_CAP_UHS_DDR50;
345
346 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR104))
347 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR104;
348
349 return 0;
350}
351
352static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
353 .chip = &sdhci_acpi_chip_int,
354 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
355 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
356 MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
357 .flags = SDHCI_ACPI_RUNTIME_PM,
358 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
359 SDHCI_QUIRK_NO_LED,
360 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
361 SDHCI_QUIRK2_STOP_WITH_TC |
362 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
363 .probe_slot = intel_probe_slot,
364 .setup_host = intel_setup_host,
365 .priv_size = sizeof(struct intel_host),
366};
367
368static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
369 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
370 SDHCI_QUIRK_NO_LED |
371 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
372 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
373 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
374 MMC_CAP_WAIT_WHILE_BUSY,
375 .flags = SDHCI_ACPI_RUNTIME_PM,
376 .pm_caps = MMC_PM_KEEP_POWER,
377 .probe_slot = intel_probe_slot,
378 .setup_host = intel_setup_host,
379 .priv_size = sizeof(struct intel_host),
380};
381
382static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
383 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
384 SDHCI_ACPI_RUNTIME_PM,
385 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
386 SDHCI_QUIRK_NO_LED,
387 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
388 SDHCI_QUIRK2_STOP_WITH_TC,
389 .caps = MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_AGGRESSIVE_PM,
390 .probe_slot = intel_probe_slot,
391 .setup_host = intel_setup_host,
392 .priv_size = sizeof(struct intel_host),
393};
394
395#define VENDOR_SPECIFIC_PWRCTL_CLEAR_REG 0x1a8
396#define VENDOR_SPECIFIC_PWRCTL_CTL_REG 0x1ac
397static irqreturn_t sdhci_acpi_qcom_handler(int irq, void *ptr)
398{
399 struct sdhci_host *host = ptr;
400
401 sdhci_writel(host, 0x3, VENDOR_SPECIFIC_PWRCTL_CLEAR_REG);
402 sdhci_writel(host, 0x1, VENDOR_SPECIFIC_PWRCTL_CTL_REG);
403
404 return IRQ_HANDLED;
405}
406
407static int qcom_probe_slot(struct platform_device *pdev, struct acpi_device *adev)
408{
409 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
410 struct sdhci_host *host = c->host;
411 int *irq = sdhci_acpi_priv(c);
412
413 *irq = -EINVAL;
414
415 if (!acpi_dev_hid_uid_match(adev, "QCOM8051", NULL))
416 return 0;
417
418 *irq = platform_get_irq(pdev, 1);
419 if (*irq < 0)
420 return 0;
421
422 return request_threaded_irq(*irq, NULL, sdhci_acpi_qcom_handler,
423 IRQF_ONESHOT | IRQF_TRIGGER_HIGH,
424 "sdhci_qcom", host);
425}
426
427static int qcom_free_slot(struct platform_device *pdev)
428{
429 struct device *dev = &pdev->dev;
430 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
431 struct sdhci_host *host = c->host;
432 struct acpi_device *adev;
433 int *irq = sdhci_acpi_priv(c);
434
435 adev = ACPI_COMPANION(dev);
436 if (!adev)
437 return -ENODEV;
438
439 if (!acpi_dev_hid_uid_match(adev, "QCOM8051", NULL))
440 return 0;
441
442 if (*irq < 0)
443 return 0;
444
445 free_irq(*irq, host);
446 return 0;
447}
448
449static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
450 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
451 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
452 .caps = MMC_CAP_NONREMOVABLE,
453 .priv_size = sizeof(int),
454 .probe_slot = qcom_probe_slot,
455 .free_slot = qcom_free_slot,
456};
457
458static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
459 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
460 .caps = MMC_CAP_NONREMOVABLE,
461};
462
463struct amd_sdhci_host {
464 bool tuned_clock;
465 bool dll_enabled;
466};
467
468/* AMD sdhci reset dll register. */
469#define SDHCI_AMD_RESET_DLL_REGISTER 0x908
470
471static int amd_select_drive_strength(struct mmc_card *card,
472 unsigned int max_dtr, int host_drv,
473 int card_drv, int *host_driver_strength)
474{
475 struct sdhci_host *host = mmc_priv(card->host);
476 u16 preset, preset_driver_strength;
477
478 /*
479 * This method is only called by mmc_select_hs200 so we only need to
480 * read from the HS200 (SDR104) preset register.
481 *
482 * Firmware that has "invalid/default" presets return a driver strength
483 * of A. This matches the previously hard coded value.
484 */
485 preset = sdhci_readw(host, SDHCI_PRESET_FOR_SDR104);
486 preset_driver_strength = FIELD_GET(SDHCI_PRESET_DRV_MASK, preset);
487
488 /*
489 * We want the controller driver strength to match the card's driver
490 * strength so they have similar rise/fall times.
491 *
492 * The controller driver strength set by this method is sticky for all
493 * timings after this method is called. This unfortunately means that
494 * while HS400 tuning is in progress we end up with mismatched driver
495 * strengths between the controller and the card. HS400 tuning requires
496 * switching from HS400->DDR52->HS->HS200->HS400. So the driver mismatch
497 * happens while in DDR52 and HS modes. This has not been observed to
498 * cause problems. Enabling presets would fix this issue.
499 */
500 *host_driver_strength = preset_driver_strength;
501
502 /*
503 * The resulting card driver strength is only set when switching the
504 * card's timing to HS200 or HS400. The card will use the default driver
505 * strength (B) for any other mode.
506 */
507 return preset_driver_strength;
508}
509
510static void sdhci_acpi_amd_hs400_dll(struct sdhci_host *host, bool enable)
511{
512 struct sdhci_acpi_host *acpi_host = sdhci_priv(host);
513 struct amd_sdhci_host *amd_host = sdhci_acpi_priv(acpi_host);
514
515 /* AMD Platform requires dll setting */
516 sdhci_writel(host, 0x40003210, SDHCI_AMD_RESET_DLL_REGISTER);
517 usleep_range(10, 20);
518 if (enable)
519 sdhci_writel(host, 0x40033210, SDHCI_AMD_RESET_DLL_REGISTER);
520
521 amd_host->dll_enabled = enable;
522}
523
524/*
525 * The initialization sequence for HS400 is:
526 * HS->HS200->Perform Tuning->HS->HS400
527 *
528 * The re-tuning sequence is:
529 * HS400->DDR52->HS->HS200->Perform Tuning->HS->HS400
530 *
531 * The AMD eMMC Controller can only use the tuned clock while in HS200 and HS400
532 * mode. If we switch to a different mode, we need to disable the tuned clock.
533 * If we have previously performed tuning and switch back to HS200 or
534 * HS400, we can re-enable the tuned clock.
535 *
536 */
537static void amd_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
538{
539 struct sdhci_host *host = mmc_priv(mmc);
540 struct sdhci_acpi_host *acpi_host = sdhci_priv(host);
541 struct amd_sdhci_host *amd_host = sdhci_acpi_priv(acpi_host);
542 unsigned int old_timing = host->timing;
543 u16 val;
544
545 sdhci_set_ios(mmc, ios);
546
547 if (old_timing != host->timing && amd_host->tuned_clock) {
548 if (host->timing == MMC_TIMING_MMC_HS400 ||
549 host->timing == MMC_TIMING_MMC_HS200) {
550 val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
551 val |= SDHCI_CTRL_TUNED_CLK;
552 sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
553 } else {
554 val = sdhci_readw(host, SDHCI_HOST_CONTROL2);
555 val &= ~SDHCI_CTRL_TUNED_CLK;
556 sdhci_writew(host, val, SDHCI_HOST_CONTROL2);
557 }
558
559 /* DLL is only required for HS400 */
560 if (host->timing == MMC_TIMING_MMC_HS400 &&
561 !amd_host->dll_enabled)
562 sdhci_acpi_amd_hs400_dll(host, true);
563 }
564}
565
566static int amd_sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
567{
568 int err;
569 struct sdhci_host *host = mmc_priv(mmc);
570 struct sdhci_acpi_host *acpi_host = sdhci_priv(host);
571 struct amd_sdhci_host *amd_host = sdhci_acpi_priv(acpi_host);
572
573 amd_host->tuned_clock = false;
574
575 err = sdhci_execute_tuning(mmc, opcode);
576
577 if (!err && !host->tuning_err)
578 amd_host->tuned_clock = true;
579
580 return err;
581}
582
583static void amd_sdhci_reset(struct sdhci_host *host, u8 mask)
584{
585 struct sdhci_acpi_host *acpi_host = sdhci_priv(host);
586 struct amd_sdhci_host *amd_host = sdhci_acpi_priv(acpi_host);
587
588 if (mask & SDHCI_RESET_ALL) {
589 amd_host->tuned_clock = false;
590 sdhci_acpi_amd_hs400_dll(host, false);
591 }
592
593 sdhci_reset(host, mask);
594}
595
596static const struct sdhci_ops sdhci_acpi_ops_amd = {
597 .set_clock = sdhci_set_clock,
598 .set_bus_width = sdhci_set_bus_width,
599 .reset = amd_sdhci_reset,
600 .set_uhs_signaling = sdhci_set_uhs_signaling,
601};
602
603static const struct sdhci_acpi_chip sdhci_acpi_chip_amd = {
604 .ops = &sdhci_acpi_ops_amd,
605};
606
607static int sdhci_acpi_emmc_amd_probe_slot(struct platform_device *pdev,
608 struct acpi_device *adev)
609{
610 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
611 struct sdhci_host *host = c->host;
612
613 sdhci_read_caps(host);
614 if (host->caps1 & SDHCI_SUPPORT_DDR50)
615 host->mmc->caps = MMC_CAP_1_8V_DDR;
616
617 if ((host->caps1 & SDHCI_SUPPORT_SDR104) &&
618 (host->mmc->caps & MMC_CAP_1_8V_DDR))
619 host->mmc->caps2 = MMC_CAP2_HS400_1_8V;
620
621 /*
622 * There are two types of presets out in the wild:
623 * 1) Default/broken presets.
624 * These presets have two sets of problems:
625 * a) The clock divisor for SDR12, SDR25, and SDR50 is too small.
626 * This results in clock frequencies that are 2x higher than
627 * acceptable. i.e., SDR12 = 25 MHz, SDR25 = 50 MHz, SDR50 =
628 * 100 MHz.x
629 * b) The HS200 and HS400 driver strengths don't match.
630 * By default, the SDR104 preset register has a driver strength of
631 * A, but the (internal) HS400 preset register has a driver
632 * strength of B. As part of initializing HS400, HS200 tuning
633 * needs to be performed. Having different driver strengths
634 * between tuning and operation is wrong. It results in different
635 * rise/fall times that lead to incorrect sampling.
636 * 2) Firmware with properly initialized presets.
637 * These presets have proper clock divisors. i.e., SDR12 => 12MHz,
638 * SDR25 => 25 MHz, SDR50 => 50 MHz. Additionally the HS200 and
639 * HS400 preset driver strengths match.
640 *
641 * Enabling presets for HS400 doesn't work for the following reasons:
642 * 1) sdhci_set_ios has a hard coded list of timings that are used
643 * to determine if presets should be enabled.
644 * 2) sdhci_get_preset_value is using a non-standard register to
645 * read out HS400 presets. The AMD controller doesn't support this
646 * non-standard register. In fact, it doesn't expose the HS400
647 * preset register anywhere in the SDHCI memory map. This results
648 * in reading a garbage value and using the wrong presets.
649 *
650 * Since HS400 and HS200 presets must be identical, we could
651 * instead use the SDR104 preset register.
652 *
653 * If the above issues are resolved we could remove this quirk for
654 * firmware that has valid presets (i.e., SDR12 <= 12 MHz).
655 */
656 host->quirks2 |= SDHCI_QUIRK2_PRESET_VALUE_BROKEN;
657
658 host->mmc_host_ops.select_drive_strength = amd_select_drive_strength;
659 host->mmc_host_ops.set_ios = amd_set_ios;
660 host->mmc_host_ops.execute_tuning = amd_sdhci_execute_tuning;
661 return 0;
662}
663
664static const struct sdhci_acpi_slot sdhci_acpi_slot_amd_emmc = {
665 .chip = &sdhci_acpi_chip_amd,
666 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
667 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR |
668 SDHCI_QUIRK_32BIT_DMA_SIZE |
669 SDHCI_QUIRK_32BIT_ADMA_SIZE,
670 .quirks2 = SDHCI_QUIRK2_BROKEN_64_BIT_DMA,
671 .probe_slot = sdhci_acpi_emmc_amd_probe_slot,
672 .priv_size = sizeof(struct amd_sdhci_host),
673};
674
675struct sdhci_acpi_uid_slot {
676 const char *hid;
677 const char *uid;
678 const struct sdhci_acpi_slot *slot;
679};
680
681static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
682 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
683 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
684 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
685 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
686 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
687 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
688 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
689 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
690 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd },
691 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
692 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
693 { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio },
694 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd },
695 { "PNP0D40" },
696 { "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
697 { "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
698 { "AMDI0040", NULL, &sdhci_acpi_slot_amd_emmc },
699 { "AMDI0041", NULL, &sdhci_acpi_slot_amd_emmc },
700 { },
701};
702
703static const struct acpi_device_id sdhci_acpi_ids[] = {
704 { "80865ACA" },
705 { "80865ACC" },
706 { "80865AD0" },
707 { "80860F14" },
708 { "80860F16" },
709 { "INT33BB" },
710 { "INT33C6" },
711 { "INT3436" },
712 { "INT344D" },
713 { "PNP0D40" },
714 { "QCOM8051" },
715 { "QCOM8052" },
716 { "AMDI0040" },
717 { "AMDI0041" },
718 { },
719};
720MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
721
722static const struct dmi_system_id sdhci_acpi_quirks[] = {
723 {
724 /*
725 * The Lenovo Miix 320-10ICR has a bug in the _PS0 method of
726 * the SHC1 ACPI device, this bug causes it to reprogram the
727 * wrong LDO (DLDO3) to 1.8V if 1.8V modes are used and the
728 * card is (runtime) suspended + resumed. DLDO3 is used for
729 * the LCD and setting it to 1.8V causes the LCD to go black.
730 */
731 .matches = {
732 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
733 DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
734 },
735 .driver_data = (void *)DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP,
736 },
737 {
738 /*
739 * The Acer Aspire Switch 10 (SW5-012) microSD slot always
740 * reports the card being write-protected even though microSD
741 * cards do not have a write-protect switch at all.
742 */
743 .matches = {
744 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
745 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire SW5-012"),
746 },
747 .driver_data = (void *)DMI_QUIRK_SD_NO_WRITE_PROTECT,
748 },
749 {
750 /*
751 * The Toshiba WT8-B's microSD slot always reports the card being
752 * write-protected.
753 */
754 .matches = {
755 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
756 DMI_MATCH(DMI_PRODUCT_NAME, "TOSHIBA ENCORE 2 WT8-B"),
757 },
758 .driver_data = (void *)DMI_QUIRK_SD_NO_WRITE_PROTECT,
759 },
760 {} /* Terminating entry */
761};
762
763static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(struct acpi_device *adev)
764{
765 const struct sdhci_acpi_uid_slot *u;
766
767 for (u = sdhci_acpi_uids; u->hid; u++) {
768 if (acpi_dev_hid_uid_match(adev, u->hid, u->uid))
769 return u->slot;
770 }
771 return NULL;
772}
773
774static int sdhci_acpi_probe(struct platform_device *pdev)
775{
776 struct device *dev = &pdev->dev;
777 const struct sdhci_acpi_slot *slot;
778 const struct dmi_system_id *id;
779 struct acpi_device *device;
780 struct sdhci_acpi_host *c;
781 struct sdhci_host *host;
782 struct resource *iomem;
783 resource_size_t len;
784 size_t priv_size;
785 int quirks = 0;
786 int err;
787
788 device = ACPI_COMPANION(dev);
789 if (!device)
790 return -ENODEV;
791
792 id = dmi_first_match(sdhci_acpi_quirks);
793 if (id)
794 quirks = (long)id->driver_data;
795
796 slot = sdhci_acpi_get_slot(device);
797
798 /* Power on the SDHCI controller and its children */
799 acpi_device_fix_up_power_extended(device);
800
801 if (sdhci_acpi_byt_defer(dev))
802 return -EPROBE_DEFER;
803
804 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
805 if (!iomem)
806 return -ENOMEM;
807
808 len = resource_size(iomem);
809 if (len < 0x100)
810 dev_err(dev, "Invalid iomem size!\n");
811
812 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
813 return -ENOMEM;
814
815 priv_size = slot ? slot->priv_size : 0;
816 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host) + priv_size);
817 if (IS_ERR(host))
818 return PTR_ERR(host);
819
820 c = sdhci_priv(host);
821 c->host = host;
822 c->slot = slot;
823 c->pdev = pdev;
824 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
825
826 platform_set_drvdata(pdev, c);
827
828 host->hw_name = "ACPI";
829 host->ops = &sdhci_acpi_ops_dflt;
830 host->irq = platform_get_irq(pdev, 0);
831 if (host->irq < 0) {
832 err = -EINVAL;
833 goto err_free;
834 }
835
836 host->ioaddr = devm_ioremap(dev, iomem->start,
837 resource_size(iomem));
838 if (host->ioaddr == NULL) {
839 err = -ENOMEM;
840 goto err_free;
841 }
842
843 if (c->slot) {
844 if (c->slot->probe_slot) {
845 err = c->slot->probe_slot(pdev, device);
846 if (err)
847 goto err_free;
848 }
849 if (c->slot->chip) {
850 host->ops = c->slot->chip->ops;
851 host->quirks |= c->slot->chip->quirks;
852 host->quirks2 |= c->slot->chip->quirks2;
853 host->mmc->caps |= c->slot->chip->caps;
854 host->mmc->caps2 |= c->slot->chip->caps2;
855 host->mmc->pm_caps |= c->slot->chip->pm_caps;
856 }
857 host->quirks |= c->slot->quirks;
858 host->quirks2 |= c->slot->quirks2;
859 host->mmc->caps |= c->slot->caps;
860 host->mmc->caps2 |= c->slot->caps2;
861 host->mmc->pm_caps |= c->slot->pm_caps;
862 }
863
864 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
865
866 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
867 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
868
869 err = mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0);
870 if (err) {
871 if (err == -EPROBE_DEFER)
872 goto err_free;
873 dev_warn(dev, "failed to setup card detect gpio\n");
874 c->use_runtime_pm = false;
875 }
876
877 if (quirks & DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP)
878 c->reset_signal_volt_on_suspend = true;
879
880 if (quirks & DMI_QUIRK_SD_NO_WRITE_PROTECT)
881 host->mmc->caps2 |= MMC_CAP2_NO_WRITE_PROTECT;
882 }
883
884 err = sdhci_setup_host(host);
885 if (err)
886 goto err_free;
887
888 if (c->slot && c->slot->setup_host) {
889 err = c->slot->setup_host(pdev);
890 if (err)
891 goto err_cleanup;
892 }
893
894 err = __sdhci_add_host(host);
895 if (err)
896 goto err_cleanup;
897
898 if (c->use_runtime_pm) {
899 pm_runtime_set_active(dev);
900 pm_suspend_ignore_children(dev, 1);
901 pm_runtime_set_autosuspend_delay(dev, 50);
902 pm_runtime_use_autosuspend(dev);
903 pm_runtime_enable(dev);
904 }
905
906 device_enable_async_suspend(dev);
907
908 return 0;
909
910err_cleanup:
911 sdhci_cleanup_host(c->host);
912err_free:
913 if (c->slot && c->slot->free_slot)
914 c->slot->free_slot(pdev);
915
916 sdhci_free_host(c->host);
917 return err;
918}
919
920static int sdhci_acpi_remove(struct platform_device *pdev)
921{
922 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
923 struct device *dev = &pdev->dev;
924 int dead;
925
926 if (c->use_runtime_pm) {
927 pm_runtime_get_sync(dev);
928 pm_runtime_disable(dev);
929 pm_runtime_put_noidle(dev);
930 }
931
932 if (c->slot && c->slot->remove_slot)
933 c->slot->remove_slot(pdev);
934
935 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
936 sdhci_remove_host(c->host, dead);
937
938 if (c->slot && c->slot->free_slot)
939 c->slot->free_slot(pdev);
940
941 sdhci_free_host(c->host);
942
943 return 0;
944}
945
946static void __maybe_unused sdhci_acpi_reset_signal_voltage_if_needed(
947 struct device *dev)
948{
949 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
950 struct sdhci_host *host = c->host;
951
952 if (c->is_intel && c->reset_signal_volt_on_suspend &&
953 host->mmc->ios.signal_voltage != MMC_SIGNAL_VOLTAGE_330) {
954 struct intel_host *intel_host = sdhci_acpi_priv(c);
955 unsigned int fn = INTEL_DSM_V33_SWITCH;
956 u32 result = 0;
957
958 intel_dsm(intel_host, dev, fn, &result);
959 }
960}
961
962#ifdef CONFIG_PM_SLEEP
963
964static int sdhci_acpi_suspend(struct device *dev)
965{
966 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
967 struct sdhci_host *host = c->host;
968 int ret;
969
970 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
971 mmc_retune_needed(host->mmc);
972
973 ret = sdhci_suspend_host(host);
974 if (ret)
975 return ret;
976
977 sdhci_acpi_reset_signal_voltage_if_needed(dev);
978 return 0;
979}
980
981static int sdhci_acpi_resume(struct device *dev)
982{
983 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
984
985 sdhci_acpi_byt_setting(&c->pdev->dev);
986
987 return sdhci_resume_host(c->host);
988}
989
990#endif
991
992#ifdef CONFIG_PM
993
994static int sdhci_acpi_runtime_suspend(struct device *dev)
995{
996 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
997 struct sdhci_host *host = c->host;
998 int ret;
999
1000 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
1001 mmc_retune_needed(host->mmc);
1002
1003 ret = sdhci_runtime_suspend_host(host);
1004 if (ret)
1005 return ret;
1006
1007 sdhci_acpi_reset_signal_voltage_if_needed(dev);
1008 return 0;
1009}
1010
1011static int sdhci_acpi_runtime_resume(struct device *dev)
1012{
1013 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
1014
1015 sdhci_acpi_byt_setting(&c->pdev->dev);
1016
1017 return sdhci_runtime_resume_host(c->host, 0);
1018}
1019
1020#endif
1021
1022static const struct dev_pm_ops sdhci_acpi_pm_ops = {
1023 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
1024 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
1025 sdhci_acpi_runtime_resume, NULL)
1026};
1027
1028static struct platform_driver sdhci_acpi_driver = {
1029 .driver = {
1030 .name = "sdhci-acpi",
1031 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
1032 .acpi_match_table = sdhci_acpi_ids,
1033 .pm = &sdhci_acpi_pm_ops,
1034 },
1035 .probe = sdhci_acpi_probe,
1036 .remove = sdhci_acpi_remove,
1037};
1038
1039module_platform_driver(sdhci_acpi_driver);
1040
1041MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
1042MODULE_AUTHOR("Adrian Hunter");
1043MODULE_LICENSE("GPL v2");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Secure Digital Host Controller Interface ACPI driver.
4 *
5 * Copyright (c) 2012, Intel Corporation.
6 */
7
8#include <linux/init.h>
9#include <linux/export.h>
10#include <linux/module.h>
11#include <linux/device.h>
12#include <linux/platform_device.h>
13#include <linux/ioport.h>
14#include <linux/io.h>
15#include <linux/dma-mapping.h>
16#include <linux/compiler.h>
17#include <linux/stddef.h>
18#include <linux/bitops.h>
19#include <linux/types.h>
20#include <linux/err.h>
21#include <linux/interrupt.h>
22#include <linux/acpi.h>
23#include <linux/pm.h>
24#include <linux/pm_runtime.h>
25#include <linux/delay.h>
26
27#include <linux/mmc/host.h>
28#include <linux/mmc/pm.h>
29#include <linux/mmc/slot-gpio.h>
30
31#ifdef CONFIG_X86
32#include <asm/cpu_device_id.h>
33#include <asm/intel-family.h>
34#include <asm/iosf_mbi.h>
35#include <linux/pci.h>
36#endif
37
38#include "sdhci.h"
39
40enum {
41 SDHCI_ACPI_SD_CD = BIT(0),
42 SDHCI_ACPI_RUNTIME_PM = BIT(1),
43 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
44};
45
46struct sdhci_acpi_chip {
47 const struct sdhci_ops *ops;
48 unsigned int quirks;
49 unsigned int quirks2;
50 unsigned long caps;
51 unsigned int caps2;
52 mmc_pm_flag_t pm_caps;
53};
54
55struct sdhci_acpi_slot {
56 const struct sdhci_acpi_chip *chip;
57 unsigned int quirks;
58 unsigned int quirks2;
59 unsigned long caps;
60 unsigned int caps2;
61 mmc_pm_flag_t pm_caps;
62 unsigned int flags;
63 size_t priv_size;
64 int (*probe_slot)(struct platform_device *, const char *, const char *);
65 int (*remove_slot)(struct platform_device *);
66 int (*free_slot)(struct platform_device *pdev);
67 int (*setup_host)(struct platform_device *pdev);
68};
69
70struct sdhci_acpi_host {
71 struct sdhci_host *host;
72 const struct sdhci_acpi_slot *slot;
73 struct platform_device *pdev;
74 bool use_runtime_pm;
75 unsigned long private[0] ____cacheline_aligned;
76};
77
78static inline void *sdhci_acpi_priv(struct sdhci_acpi_host *c)
79{
80 return (void *)c->private;
81}
82
83static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
84{
85 return c->slot && (c->slot->flags & flag);
86}
87
88#define INTEL_DSM_HS_CAPS_SDR25 BIT(0)
89#define INTEL_DSM_HS_CAPS_DDR50 BIT(1)
90#define INTEL_DSM_HS_CAPS_SDR50 BIT(2)
91#define INTEL_DSM_HS_CAPS_SDR104 BIT(3)
92
93enum {
94 INTEL_DSM_FNS = 0,
95 INTEL_DSM_V18_SWITCH = 3,
96 INTEL_DSM_V33_SWITCH = 4,
97 INTEL_DSM_HS_CAPS = 8,
98};
99
100struct intel_host {
101 u32 dsm_fns;
102 u32 hs_caps;
103};
104
105static const guid_t intel_dsm_guid =
106 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
107 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
108
109static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
110 unsigned int fn, u32 *result)
111{
112 union acpi_object *obj;
113 int err = 0;
114
115 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
116 if (!obj)
117 return -EOPNOTSUPP;
118
119 if (obj->type == ACPI_TYPE_INTEGER) {
120 *result = obj->integer.value;
121 } else if (obj->type == ACPI_TYPE_BUFFER && obj->buffer.length > 0) {
122 size_t len = min_t(size_t, obj->buffer.length, 4);
123
124 *result = 0;
125 memcpy(result, obj->buffer.pointer, len);
126 } else {
127 dev_err(dev, "%s DSM fn %u obj->type %d obj->buffer.length %d\n",
128 __func__, fn, obj->type, obj->buffer.length);
129 err = -EINVAL;
130 }
131
132 ACPI_FREE(obj);
133
134 return err;
135}
136
137static int intel_dsm(struct intel_host *intel_host, struct device *dev,
138 unsigned int fn, u32 *result)
139{
140 if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
141 return -EOPNOTSUPP;
142
143 return __intel_dsm(intel_host, dev, fn, result);
144}
145
146static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
147 struct mmc_host *mmc)
148{
149 int err;
150
151 intel_host->hs_caps = ~0;
152
153 err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
154 if (err) {
155 pr_debug("%s: DSM not supported, error %d\n",
156 mmc_hostname(mmc), err);
157 return;
158 }
159
160 pr_debug("%s: DSM function mask %#x\n",
161 mmc_hostname(mmc), intel_host->dsm_fns);
162
163 intel_dsm(intel_host, dev, INTEL_DSM_HS_CAPS, &intel_host->hs_caps);
164}
165
166static int intel_start_signal_voltage_switch(struct mmc_host *mmc,
167 struct mmc_ios *ios)
168{
169 struct device *dev = mmc_dev(mmc);
170 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
171 struct intel_host *intel_host = sdhci_acpi_priv(c);
172 unsigned int fn;
173 u32 result = 0;
174 int err;
175
176 err = sdhci_start_signal_voltage_switch(mmc, ios);
177 if (err)
178 return err;
179
180 switch (ios->signal_voltage) {
181 case MMC_SIGNAL_VOLTAGE_330:
182 fn = INTEL_DSM_V33_SWITCH;
183 break;
184 case MMC_SIGNAL_VOLTAGE_180:
185 fn = INTEL_DSM_V18_SWITCH;
186 break;
187 default:
188 return 0;
189 }
190
191 err = intel_dsm(intel_host, dev, fn, &result);
192 pr_debug("%s: %s DSM fn %u error %d result %u\n",
193 mmc_hostname(mmc), __func__, fn, err, result);
194
195 return 0;
196}
197
198static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
199{
200 u8 reg;
201
202 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
203 reg |= 0x10;
204 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
205 /* For eMMC, minimum is 1us but give it 9us for good measure */
206 udelay(9);
207 reg &= ~0x10;
208 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
209 /* For eMMC, minimum is 200us but give it 300us for good measure */
210 usleep_range(300, 1000);
211}
212
213static const struct sdhci_ops sdhci_acpi_ops_dflt = {
214 .set_clock = sdhci_set_clock,
215 .set_bus_width = sdhci_set_bus_width,
216 .reset = sdhci_reset,
217 .set_uhs_signaling = sdhci_set_uhs_signaling,
218};
219
220static const struct sdhci_ops sdhci_acpi_ops_int = {
221 .set_clock = sdhci_set_clock,
222 .set_bus_width = sdhci_set_bus_width,
223 .reset = sdhci_reset,
224 .set_uhs_signaling = sdhci_set_uhs_signaling,
225 .hw_reset = sdhci_acpi_int_hw_reset,
226};
227
228static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
229 .ops = &sdhci_acpi_ops_int,
230};
231
232#ifdef CONFIG_X86
233
234static bool sdhci_acpi_byt(void)
235{
236 static const struct x86_cpu_id byt[] = {
237 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_SILVERMONT },
238 {}
239 };
240
241 return x86_match_cpu(byt);
242}
243
244static bool sdhci_acpi_cht(void)
245{
246 static const struct x86_cpu_id cht[] = {
247 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_AIRMONT },
248 {}
249 };
250
251 return x86_match_cpu(cht);
252}
253
254#define BYT_IOSF_SCCEP 0x63
255#define BYT_IOSF_OCP_NETCTRL0 0x1078
256#define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
257
258static void sdhci_acpi_byt_setting(struct device *dev)
259{
260 u32 val = 0;
261
262 if (!sdhci_acpi_byt())
263 return;
264
265 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
266 &val)) {
267 dev_err(dev, "%s read error\n", __func__);
268 return;
269 }
270
271 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
272 return;
273
274 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
275
276 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
277 val)) {
278 dev_err(dev, "%s write error\n", __func__);
279 return;
280 }
281
282 dev_dbg(dev, "%s completed\n", __func__);
283}
284
285static bool sdhci_acpi_byt_defer(struct device *dev)
286{
287 if (!sdhci_acpi_byt())
288 return false;
289
290 if (!iosf_mbi_available())
291 return true;
292
293 sdhci_acpi_byt_setting(dev);
294
295 return false;
296}
297
298static bool sdhci_acpi_cht_pci_wifi(unsigned int vendor, unsigned int device,
299 unsigned int slot, unsigned int parent_slot)
300{
301 struct pci_dev *dev, *parent, *from = NULL;
302
303 while (1) {
304 dev = pci_get_device(vendor, device, from);
305 pci_dev_put(from);
306 if (!dev)
307 break;
308 parent = pci_upstream_bridge(dev);
309 if (ACPI_COMPANION(&dev->dev) && PCI_SLOT(dev->devfn) == slot &&
310 parent && PCI_SLOT(parent->devfn) == parent_slot &&
311 !pci_upstream_bridge(parent)) {
312 pci_dev_put(dev);
313 return true;
314 }
315 from = dev;
316 }
317
318 return false;
319}
320
321/*
322 * GPDwin uses PCI wifi which conflicts with SDIO's use of
323 * acpi_device_fix_up_power() on child device nodes. Identifying GPDwin is
324 * problematic, but since SDIO is only used for wifi, the presence of the PCI
325 * wifi card in the expected slot with an ACPI companion node, is used to
326 * indicate that acpi_device_fix_up_power() should be avoided.
327 */
328static inline bool sdhci_acpi_no_fixup_child_power(const char *hid,
329 const char *uid)
330{
331 return sdhci_acpi_cht() &&
332 !strcmp(hid, "80860F14") &&
333 !strcmp(uid, "2") &&
334 sdhci_acpi_cht_pci_wifi(0x14e4, 0x43ec, 0, 28);
335}
336
337#else
338
339static inline void sdhci_acpi_byt_setting(struct device *dev)
340{
341}
342
343static inline bool sdhci_acpi_byt_defer(struct device *dev)
344{
345 return false;
346}
347
348static inline bool sdhci_acpi_no_fixup_child_power(const char *hid,
349 const char *uid)
350{
351 return false;
352}
353
354#endif
355
356static int bxt_get_cd(struct mmc_host *mmc)
357{
358 int gpio_cd = mmc_gpio_get_cd(mmc);
359 struct sdhci_host *host = mmc_priv(mmc);
360 unsigned long flags;
361 int ret = 0;
362
363 if (!gpio_cd)
364 return 0;
365
366 spin_lock_irqsave(&host->lock, flags);
367
368 if (host->flags & SDHCI_DEVICE_DEAD)
369 goto out;
370
371 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
372out:
373 spin_unlock_irqrestore(&host->lock, flags);
374
375 return ret;
376}
377
378static int intel_probe_slot(struct platform_device *pdev, const char *hid,
379 const char *uid)
380{
381 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
382 struct intel_host *intel_host = sdhci_acpi_priv(c);
383 struct sdhci_host *host = c->host;
384
385 if (hid && uid && !strcmp(hid, "80860F14") && !strcmp(uid, "1") &&
386 sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
387 sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
388 host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
389
390 if (hid && !strcmp(hid, "80865ACA"))
391 host->mmc_host_ops.get_cd = bxt_get_cd;
392
393 intel_dsm_init(intel_host, &pdev->dev, host->mmc);
394
395 host->mmc_host_ops.start_signal_voltage_switch =
396 intel_start_signal_voltage_switch;
397
398 return 0;
399}
400
401static int intel_setup_host(struct platform_device *pdev)
402{
403 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
404 struct intel_host *intel_host = sdhci_acpi_priv(c);
405
406 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR25))
407 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR25;
408
409 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR50))
410 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR50;
411
412 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_DDR50))
413 c->host->mmc->caps &= ~MMC_CAP_UHS_DDR50;
414
415 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR104))
416 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR104;
417
418 return 0;
419}
420
421static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
422 .chip = &sdhci_acpi_chip_int,
423 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
424 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
425 MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
426 .flags = SDHCI_ACPI_RUNTIME_PM,
427 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
428 SDHCI_QUIRK_NO_LED,
429 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
430 SDHCI_QUIRK2_STOP_WITH_TC |
431 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
432 .probe_slot = intel_probe_slot,
433 .setup_host = intel_setup_host,
434 .priv_size = sizeof(struct intel_host),
435};
436
437static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
438 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
439 SDHCI_QUIRK_NO_LED |
440 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
441 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
442 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
443 MMC_CAP_WAIT_WHILE_BUSY,
444 .flags = SDHCI_ACPI_RUNTIME_PM,
445 .pm_caps = MMC_PM_KEEP_POWER,
446 .probe_slot = intel_probe_slot,
447 .setup_host = intel_setup_host,
448 .priv_size = sizeof(struct intel_host),
449};
450
451static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
452 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
453 SDHCI_ACPI_RUNTIME_PM,
454 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
455 SDHCI_QUIRK_NO_LED,
456 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
457 SDHCI_QUIRK2_STOP_WITH_TC,
458 .caps = MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_AGGRESSIVE_PM,
459 .probe_slot = intel_probe_slot,
460 .setup_host = intel_setup_host,
461 .priv_size = sizeof(struct intel_host),
462};
463
464#define VENDOR_SPECIFIC_PWRCTL_CLEAR_REG 0x1a8
465#define VENDOR_SPECIFIC_PWRCTL_CTL_REG 0x1ac
466static irqreturn_t sdhci_acpi_qcom_handler(int irq, void *ptr)
467{
468 struct sdhci_host *host = ptr;
469
470 sdhci_writel(host, 0x3, VENDOR_SPECIFIC_PWRCTL_CLEAR_REG);
471 sdhci_writel(host, 0x1, VENDOR_SPECIFIC_PWRCTL_CTL_REG);
472
473 return IRQ_HANDLED;
474}
475
476static int qcom_probe_slot(struct platform_device *pdev, const char *hid,
477 const char *uid)
478{
479 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
480 struct sdhci_host *host = c->host;
481 int *irq = sdhci_acpi_priv(c);
482
483 *irq = -EINVAL;
484
485 if (strcmp(hid, "QCOM8051"))
486 return 0;
487
488 *irq = platform_get_irq(pdev, 1);
489 if (*irq < 0)
490 return 0;
491
492 return request_threaded_irq(*irq, NULL, sdhci_acpi_qcom_handler,
493 IRQF_ONESHOT | IRQF_TRIGGER_HIGH,
494 "sdhci_qcom", host);
495}
496
497static int qcom_free_slot(struct platform_device *pdev)
498{
499 struct device *dev = &pdev->dev;
500 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
501 struct sdhci_host *host = c->host;
502 struct acpi_device *adev;
503 int *irq = sdhci_acpi_priv(c);
504 const char *hid;
505
506 adev = ACPI_COMPANION(dev);
507 if (!adev)
508 return -ENODEV;
509
510 hid = acpi_device_hid(adev);
511 if (strcmp(hid, "QCOM8051"))
512 return 0;
513
514 if (*irq < 0)
515 return 0;
516
517 free_irq(*irq, host);
518 return 0;
519}
520
521static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
522 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
523 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
524 .caps = MMC_CAP_NONREMOVABLE,
525 .priv_size = sizeof(int),
526 .probe_slot = qcom_probe_slot,
527 .free_slot = qcom_free_slot,
528};
529
530static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
531 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
532 .caps = MMC_CAP_NONREMOVABLE,
533};
534
535/* AMD sdhci reset dll register. */
536#define SDHCI_AMD_RESET_DLL_REGISTER 0x908
537
538static int amd_select_drive_strength(struct mmc_card *card,
539 unsigned int max_dtr, int host_drv,
540 int card_drv, int *drv_type)
541{
542 return MMC_SET_DRIVER_TYPE_A;
543}
544
545static void sdhci_acpi_amd_hs400_dll(struct sdhci_host *host)
546{
547 /* AMD Platform requires dll setting */
548 sdhci_writel(host, 0x40003210, SDHCI_AMD_RESET_DLL_REGISTER);
549 usleep_range(10, 20);
550 sdhci_writel(host, 0x40033210, SDHCI_AMD_RESET_DLL_REGISTER);
551}
552
553/*
554 * For AMD Platform it is required to disable the tuning
555 * bit first controller to bring to HS Mode from HS200
556 * mode, later enable to tune to HS400 mode.
557 */
558static void amd_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
559{
560 struct sdhci_host *host = mmc_priv(mmc);
561 unsigned int old_timing = host->timing;
562
563 sdhci_set_ios(mmc, ios);
564 if (old_timing == MMC_TIMING_MMC_HS200 &&
565 ios->timing == MMC_TIMING_MMC_HS)
566 sdhci_writew(host, 0x9, SDHCI_HOST_CONTROL2);
567 if (old_timing != MMC_TIMING_MMC_HS400 &&
568 ios->timing == MMC_TIMING_MMC_HS400) {
569 sdhci_writew(host, 0x80, SDHCI_HOST_CONTROL2);
570 sdhci_acpi_amd_hs400_dll(host);
571 }
572}
573
574static const struct sdhci_ops sdhci_acpi_ops_amd = {
575 .set_clock = sdhci_set_clock,
576 .set_bus_width = sdhci_set_bus_width,
577 .reset = sdhci_reset,
578 .set_uhs_signaling = sdhci_set_uhs_signaling,
579};
580
581static const struct sdhci_acpi_chip sdhci_acpi_chip_amd = {
582 .ops = &sdhci_acpi_ops_amd,
583};
584
585static int sdhci_acpi_emmc_amd_probe_slot(struct platform_device *pdev,
586 const char *hid, const char *uid)
587{
588 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
589 struct sdhci_host *host = c->host;
590
591 sdhci_read_caps(host);
592 if (host->caps1 & SDHCI_SUPPORT_DDR50)
593 host->mmc->caps = MMC_CAP_1_8V_DDR;
594
595 if ((host->caps1 & SDHCI_SUPPORT_SDR104) &&
596 (host->mmc->caps & MMC_CAP_1_8V_DDR))
597 host->mmc->caps2 = MMC_CAP2_HS400_1_8V;
598
599 host->mmc_host_ops.select_drive_strength = amd_select_drive_strength;
600 host->mmc_host_ops.set_ios = amd_set_ios;
601 return 0;
602}
603
604static const struct sdhci_acpi_slot sdhci_acpi_slot_amd_emmc = {
605 .chip = &sdhci_acpi_chip_amd,
606 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
607 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | SDHCI_QUIRK_32BIT_DMA_SIZE |
608 SDHCI_QUIRK_32BIT_ADMA_SIZE,
609 .probe_slot = sdhci_acpi_emmc_amd_probe_slot,
610};
611
612struct sdhci_acpi_uid_slot {
613 const char *hid;
614 const char *uid;
615 const struct sdhci_acpi_slot *slot;
616};
617
618static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
619 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
620 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
621 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
622 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
623 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
624 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
625 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
626 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
627 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd },
628 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
629 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
630 { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio },
631 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd },
632 { "PNP0D40" },
633 { "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
634 { "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
635 { "AMDI0040", NULL, &sdhci_acpi_slot_amd_emmc },
636 { },
637};
638
639static const struct acpi_device_id sdhci_acpi_ids[] = {
640 { "80865ACA" },
641 { "80865ACC" },
642 { "80865AD0" },
643 { "80860F14" },
644 { "80860F16" },
645 { "INT33BB" },
646 { "INT33C6" },
647 { "INT3436" },
648 { "INT344D" },
649 { "PNP0D40" },
650 { "QCOM8051" },
651 { "QCOM8052" },
652 { "AMDI0040" },
653 { },
654};
655MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
656
657static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid,
658 const char *uid)
659{
660 const struct sdhci_acpi_uid_slot *u;
661
662 for (u = sdhci_acpi_uids; u->hid; u++) {
663 if (strcmp(u->hid, hid))
664 continue;
665 if (!u->uid)
666 return u->slot;
667 if (uid && !strcmp(u->uid, uid))
668 return u->slot;
669 }
670 return NULL;
671}
672
673static int sdhci_acpi_probe(struct platform_device *pdev)
674{
675 struct device *dev = &pdev->dev;
676 const struct sdhci_acpi_slot *slot;
677 struct acpi_device *device, *child;
678 struct sdhci_acpi_host *c;
679 struct sdhci_host *host;
680 struct resource *iomem;
681 resource_size_t len;
682 size_t priv_size;
683 const char *hid;
684 const char *uid;
685 int err;
686
687 device = ACPI_COMPANION(dev);
688 if (!device)
689 return -ENODEV;
690
691 hid = acpi_device_hid(device);
692 uid = acpi_device_uid(device);
693
694 slot = sdhci_acpi_get_slot(hid, uid);
695
696 /* Power on the SDHCI controller and its children */
697 acpi_device_fix_up_power(device);
698 if (!sdhci_acpi_no_fixup_child_power(hid, uid)) {
699 list_for_each_entry(child, &device->children, node)
700 if (child->status.present && child->status.enabled)
701 acpi_device_fix_up_power(child);
702 }
703
704 if (sdhci_acpi_byt_defer(dev))
705 return -EPROBE_DEFER;
706
707 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
708 if (!iomem)
709 return -ENOMEM;
710
711 len = resource_size(iomem);
712 if (len < 0x100)
713 dev_err(dev, "Invalid iomem size!\n");
714
715 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
716 return -ENOMEM;
717
718 priv_size = slot ? slot->priv_size : 0;
719 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host) + priv_size);
720 if (IS_ERR(host))
721 return PTR_ERR(host);
722
723 c = sdhci_priv(host);
724 c->host = host;
725 c->slot = slot;
726 c->pdev = pdev;
727 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
728
729 platform_set_drvdata(pdev, c);
730
731 host->hw_name = "ACPI";
732 host->ops = &sdhci_acpi_ops_dflt;
733 host->irq = platform_get_irq(pdev, 0);
734 if (host->irq < 0) {
735 err = -EINVAL;
736 goto err_free;
737 }
738
739 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
740 resource_size(iomem));
741 if (host->ioaddr == NULL) {
742 err = -ENOMEM;
743 goto err_free;
744 }
745
746 if (c->slot) {
747 if (c->slot->probe_slot) {
748 err = c->slot->probe_slot(pdev, hid, uid);
749 if (err)
750 goto err_free;
751 }
752 if (c->slot->chip) {
753 host->ops = c->slot->chip->ops;
754 host->quirks |= c->slot->chip->quirks;
755 host->quirks2 |= c->slot->chip->quirks2;
756 host->mmc->caps |= c->slot->chip->caps;
757 host->mmc->caps2 |= c->slot->chip->caps2;
758 host->mmc->pm_caps |= c->slot->chip->pm_caps;
759 }
760 host->quirks |= c->slot->quirks;
761 host->quirks2 |= c->slot->quirks2;
762 host->mmc->caps |= c->slot->caps;
763 host->mmc->caps2 |= c->slot->caps2;
764 host->mmc->pm_caps |= c->slot->pm_caps;
765 }
766
767 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
768
769 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
770 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
771
772 err = mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0, NULL);
773 if (err) {
774 if (err == -EPROBE_DEFER)
775 goto err_free;
776 dev_warn(dev, "failed to setup card detect gpio\n");
777 c->use_runtime_pm = false;
778 }
779 }
780
781 err = sdhci_setup_host(host);
782 if (err)
783 goto err_free;
784
785 if (c->slot && c->slot->setup_host) {
786 err = c->slot->setup_host(pdev);
787 if (err)
788 goto err_cleanup;
789 }
790
791 err = __sdhci_add_host(host);
792 if (err)
793 goto err_cleanup;
794
795 if (c->use_runtime_pm) {
796 pm_runtime_set_active(dev);
797 pm_suspend_ignore_children(dev, 1);
798 pm_runtime_set_autosuspend_delay(dev, 50);
799 pm_runtime_use_autosuspend(dev);
800 pm_runtime_enable(dev);
801 }
802
803 device_enable_async_suspend(dev);
804
805 return 0;
806
807err_cleanup:
808 sdhci_cleanup_host(c->host);
809err_free:
810 if (c->slot && c->slot->free_slot)
811 c->slot->free_slot(pdev);
812
813 sdhci_free_host(c->host);
814 return err;
815}
816
817static int sdhci_acpi_remove(struct platform_device *pdev)
818{
819 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
820 struct device *dev = &pdev->dev;
821 int dead;
822
823 if (c->use_runtime_pm) {
824 pm_runtime_get_sync(dev);
825 pm_runtime_disable(dev);
826 pm_runtime_put_noidle(dev);
827 }
828
829 if (c->slot && c->slot->remove_slot)
830 c->slot->remove_slot(pdev);
831
832 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
833 sdhci_remove_host(c->host, dead);
834
835 if (c->slot && c->slot->free_slot)
836 c->slot->free_slot(pdev);
837
838 sdhci_free_host(c->host);
839
840 return 0;
841}
842
843#ifdef CONFIG_PM_SLEEP
844
845static int sdhci_acpi_suspend(struct device *dev)
846{
847 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
848 struct sdhci_host *host = c->host;
849
850 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
851 mmc_retune_needed(host->mmc);
852
853 return sdhci_suspend_host(host);
854}
855
856static int sdhci_acpi_resume(struct device *dev)
857{
858 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
859
860 sdhci_acpi_byt_setting(&c->pdev->dev);
861
862 return sdhci_resume_host(c->host);
863}
864
865#endif
866
867#ifdef CONFIG_PM
868
869static int sdhci_acpi_runtime_suspend(struct device *dev)
870{
871 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
872 struct sdhci_host *host = c->host;
873
874 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
875 mmc_retune_needed(host->mmc);
876
877 return sdhci_runtime_suspend_host(host);
878}
879
880static int sdhci_acpi_runtime_resume(struct device *dev)
881{
882 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
883
884 sdhci_acpi_byt_setting(&c->pdev->dev);
885
886 return sdhci_runtime_resume_host(c->host, 0);
887}
888
889#endif
890
891static const struct dev_pm_ops sdhci_acpi_pm_ops = {
892 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
893 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
894 sdhci_acpi_runtime_resume, NULL)
895};
896
897static struct platform_driver sdhci_acpi_driver = {
898 .driver = {
899 .name = "sdhci-acpi",
900 .acpi_match_table = sdhci_acpi_ids,
901 .pm = &sdhci_acpi_pm_ops,
902 },
903 .probe = sdhci_acpi_probe,
904 .remove = sdhci_acpi_remove,
905};
906
907module_platform_driver(sdhci_acpi_driver);
908
909MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
910MODULE_AUTHOR("Adrian Hunter");
911MODULE_LICENSE("GPL v2");