blob: faba53cf139b5d2dbd18048cc5a956cfed86fd3f [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001// SPDX-License-Identifier: GPL-2.0-only
Adrian Hunterc4e05032012-11-23 21:17:34 +01002/*
3 * Secure Digital Host Controller Interface ACPI driver.
4 *
5 * Copyright (c) 2012, Intel Corporation.
Adrian Hunterc4e05032012-11-23 21:17:34 +01006 */
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>
Adrian Hunterb04fa062013-06-13 11:50:27 +030025#include <linux/delay.h>
Hans de Goede84d49b32020-03-16 19:47:52 +010026#include <linux/dmi.h>
Adrian Hunterc4e05032012-11-23 21:17:34 +010027
28#include <linux/mmc/host.h>
29#include <linux/mmc/pm.h>
Adrian Hunter4fd44092014-03-10 15:02:42 +020030#include <linux/mmc/slot-gpio.h>
Adrian Hunterc4e05032012-11-23 21:17:34 +010031
Adrian Hunter6e1c7d62016-04-15 14:06:57 +030032#ifdef CONFIG_X86
33#include <asm/cpu_device_id.h>
Dave Hansen8ba4cb52016-06-02 17:19:51 -070034#include <asm/intel-family.h>
Adrian Hunter6e1c7d62016-04-15 14:06:57 +030035#include <asm/iosf_mbi.h>
Adrian Hunter17753d12017-06-21 15:08:39 +030036#include <linux/pci.h>
Adrian Hunter6e1c7d62016-04-15 14:06:57 +030037#endif
38
Adrian Hunterc4e05032012-11-23 21:17:34 +010039#include "sdhci.h"
40
41enum {
Adrian Hunter4fd44092014-03-10 15:02:42 +020042 SDHCI_ACPI_SD_CD = BIT(0),
43 SDHCI_ACPI_RUNTIME_PM = BIT(1),
44 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
Adrian Hunterc4e05032012-11-23 21:17:34 +010045};
46
47struct sdhci_acpi_chip {
48 const struct sdhci_ops *ops;
49 unsigned int quirks;
50 unsigned int quirks2;
51 unsigned long caps;
52 unsigned int caps2;
53 mmc_pm_flag_t pm_caps;
54};
55
56struct sdhci_acpi_slot {
57 const struct sdhci_acpi_chip *chip;
58 unsigned int quirks;
59 unsigned int quirks2;
60 unsigned long caps;
61 unsigned int caps2;
62 mmc_pm_flag_t pm_caps;
63 unsigned int flags;
Adrian Hunterf07b7952017-10-19 13:41:45 +030064 size_t priv_size;
Andy Shevchenko4f3cde32019-10-01 17:27:24 +030065 int (*probe_slot)(struct platform_device *, struct acpi_device *);
Gao, Yunpeng578b36b2014-09-01 11:35:40 +080066 int (*remove_slot)(struct platform_device *);
Wang Dongshengc7eabbe2018-08-16 12:48:42 +080067 int (*free_slot)(struct platform_device *pdev);
Adrian Hunter0cc1a0f2017-12-08 15:04:58 +020068 int (*setup_host)(struct platform_device *pdev);
Adrian Hunterc4e05032012-11-23 21:17:34 +010069};
70
71struct sdhci_acpi_host {
72 struct sdhci_host *host;
73 const struct sdhci_acpi_slot *slot;
74 struct platform_device *pdev;
75 bool use_runtime_pm;
Hans de Goede84d49b32020-03-16 19:47:52 +010076 bool is_intel;
77 bool reset_signal_volt_on_suspend;
Gustavo A. R. Silva1a91a36a2020-02-26 16:31:25 -060078 unsigned long private[] ____cacheline_aligned;
Adrian Hunterc4e05032012-11-23 21:17:34 +010079};
80
Hans de Goede84d49b32020-03-16 19:47:52 +010081enum {
82 DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP = BIT(0),
Hans de Goede3397b252020-03-16 19:47:53 +010083 DMI_QUIRK_SD_NO_WRITE_PROTECT = BIT(1),
Hans de Goede84d49b32020-03-16 19:47:52 +010084};
85
Adrian Hunterf07b7952017-10-19 13:41:45 +030086static inline void *sdhci_acpi_priv(struct sdhci_acpi_host *c)
87{
88 return (void *)c->private;
89}
90
Adrian Hunterc4e05032012-11-23 21:17:34 +010091static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
92{
93 return c->slot && (c->slot->flags & flag);
94}
95
Adrian Hunter0acccf42017-12-08 15:08:18 +020096#define INTEL_DSM_HS_CAPS_SDR25 BIT(0)
97#define INTEL_DSM_HS_CAPS_DDR50 BIT(1)
98#define INTEL_DSM_HS_CAPS_SDR50 BIT(2)
99#define INTEL_DSM_HS_CAPS_SDR104 BIT(3)
100
Adrian Hunter1c451c12017-10-19 13:41:46 +0300101enum {
102 INTEL_DSM_FNS = 0,
103 INTEL_DSM_V18_SWITCH = 3,
104 INTEL_DSM_V33_SWITCH = 4,
Adrian Hunter0acccf42017-12-08 15:08:18 +0200105 INTEL_DSM_HS_CAPS = 8,
Adrian Hunter1c451c12017-10-19 13:41:46 +0300106};
107
108struct intel_host {
109 u32 dsm_fns;
Adrian Hunter0acccf42017-12-08 15:08:18 +0200110 u32 hs_caps;
Adrian Hunter1c451c12017-10-19 13:41:46 +0300111};
112
113static const guid_t intel_dsm_guid =
114 GUID_INIT(0xF6C13EA5, 0x65CD, 0x461F,
115 0xAB, 0x7A, 0x29, 0xF7, 0xE8, 0xD5, 0xBD, 0x61);
116
117static int __intel_dsm(struct intel_host *intel_host, struct device *dev,
118 unsigned int fn, u32 *result)
119{
120 union acpi_object *obj;
121 int err = 0;
122
123 obj = acpi_evaluate_dsm(ACPI_HANDLE(dev), &intel_dsm_guid, 0, fn, NULL);
124 if (!obj)
125 return -EOPNOTSUPP;
126
127 if (obj->type == ACPI_TYPE_INTEGER) {
128 *result = obj->integer.value;
129 } else if (obj->type == ACPI_TYPE_BUFFER && obj->buffer.length > 0) {
130 size_t len = min_t(size_t, obj->buffer.length, 4);
131
132 *result = 0;
133 memcpy(result, obj->buffer.pointer, len);
134 } else {
135 dev_err(dev, "%s DSM fn %u obj->type %d obj->buffer.length %d\n",
136 __func__, fn, obj->type, obj->buffer.length);
137 err = -EINVAL;
138 }
139
140 ACPI_FREE(obj);
141
142 return err;
143}
144
145static int intel_dsm(struct intel_host *intel_host, struct device *dev,
146 unsigned int fn, u32 *result)
147{
148 if (fn > 31 || !(intel_host->dsm_fns & (1 << fn)))
149 return -EOPNOTSUPP;
150
151 return __intel_dsm(intel_host, dev, fn, result);
152}
153
154static void intel_dsm_init(struct intel_host *intel_host, struct device *dev,
155 struct mmc_host *mmc)
156{
157 int err;
158
Adrian Hunter0acccf42017-12-08 15:08:18 +0200159 intel_host->hs_caps = ~0;
160
Adrian Hunter1c451c12017-10-19 13:41:46 +0300161 err = __intel_dsm(intel_host, dev, INTEL_DSM_FNS, &intel_host->dsm_fns);
162 if (err) {
163 pr_debug("%s: DSM not supported, error %d\n",
164 mmc_hostname(mmc), err);
165 return;
166 }
167
168 pr_debug("%s: DSM function mask %#x\n",
169 mmc_hostname(mmc), intel_host->dsm_fns);
Adrian Hunter0acccf42017-12-08 15:08:18 +0200170
171 intel_dsm(intel_host, dev, INTEL_DSM_HS_CAPS, &intel_host->hs_caps);
Adrian Hunter1c451c12017-10-19 13:41:46 +0300172}
173
174static int intel_start_signal_voltage_switch(struct mmc_host *mmc,
175 struct mmc_ios *ios)
176{
177 struct device *dev = mmc_dev(mmc);
178 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
179 struct intel_host *intel_host = sdhci_acpi_priv(c);
180 unsigned int fn;
181 u32 result = 0;
182 int err;
183
184 err = sdhci_start_signal_voltage_switch(mmc, ios);
185 if (err)
186 return err;
187
188 switch (ios->signal_voltage) {
189 case MMC_SIGNAL_VOLTAGE_330:
190 fn = INTEL_DSM_V33_SWITCH;
191 break;
192 case MMC_SIGNAL_VOLTAGE_180:
193 fn = INTEL_DSM_V18_SWITCH;
194 break;
195 default:
196 return 0;
197 }
198
199 err = intel_dsm(intel_host, dev, fn, &result);
200 pr_debug("%s: %s DSM fn %u error %d result %u\n",
201 mmc_hostname(mmc), __func__, fn, err, result);
202
203 return 0;
204}
205
Adrian Hunterb04fa062013-06-13 11:50:27 +0300206static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
207{
208 u8 reg;
209
210 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
211 reg |= 0x10;
212 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
213 /* For eMMC, minimum is 1us but give it 9us for good measure */
214 udelay(9);
215 reg &= ~0x10;
216 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
217 /* For eMMC, minimum is 200us but give it 300us for good measure */
218 usleep_range(300, 1000);
219}
220
Adrian Hunterc4e05032012-11-23 21:17:34 +0100221static const struct sdhci_ops sdhci_acpi_ops_dflt = {
Russell King17710592014-04-25 12:58:55 +0100222 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100223 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100224 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +0100225 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100226};
227
Adrian Hunterb04fa062013-06-13 11:50:27 +0300228static const struct sdhci_ops sdhci_acpi_ops_int = {
Russell King17710592014-04-25 12:58:55 +0100229 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100230 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100231 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +0100232 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunterb04fa062013-06-13 11:50:27 +0300233 .hw_reset = sdhci_acpi_int_hw_reset,
234};
235
236static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
237 .ops = &sdhci_acpi_ops_int,
238};
239
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300240#ifdef CONFIG_X86
241
242static bool sdhci_acpi_byt(void)
243{
244 static const struct x86_cpu_id byt[] = {
Thomas Gleixner1e41eb12020-03-20 14:14:01 +0100245 X86_MATCH_INTEL_FAM6_MODEL(ATOM_SILVERMONT, NULL),
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300246 {}
247 };
248
249 return x86_match_cpu(byt);
250}
251
Adrian Hunter17753d12017-06-21 15:08:39 +0300252static bool sdhci_acpi_cht(void)
253{
254 static const struct x86_cpu_id cht[] = {
Thomas Gleixner1e41eb12020-03-20 14:14:01 +0100255 X86_MATCH_INTEL_FAM6_MODEL(ATOM_AIRMONT, NULL),
Adrian Hunter17753d12017-06-21 15:08:39 +0300256 {}
257 };
258
259 return x86_match_cpu(cht);
260}
261
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300262#define BYT_IOSF_SCCEP 0x63
263#define BYT_IOSF_OCP_NETCTRL0 0x1078
264#define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
265
266static void sdhci_acpi_byt_setting(struct device *dev)
267{
268 u32 val = 0;
269
270 if (!sdhci_acpi_byt())
271 return;
272
273 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
274 &val)) {
275 dev_err(dev, "%s read error\n", __func__);
276 return;
277 }
278
279 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
280 return;
281
282 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
283
284 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
285 val)) {
286 dev_err(dev, "%s write error\n", __func__);
287 return;
288 }
289
290 dev_dbg(dev, "%s completed\n", __func__);
291}
292
293static bool sdhci_acpi_byt_defer(struct device *dev)
294{
295 if (!sdhci_acpi_byt())
296 return false;
297
298 if (!iosf_mbi_available())
299 return true;
300
301 sdhci_acpi_byt_setting(dev);
302
303 return false;
304}
305
Adrian Hunter17753d12017-06-21 15:08:39 +0300306static bool sdhci_acpi_cht_pci_wifi(unsigned int vendor, unsigned int device,
307 unsigned int slot, unsigned int parent_slot)
308{
309 struct pci_dev *dev, *parent, *from = NULL;
310
311 while (1) {
312 dev = pci_get_device(vendor, device, from);
313 pci_dev_put(from);
314 if (!dev)
315 break;
316 parent = pci_upstream_bridge(dev);
317 if (ACPI_COMPANION(&dev->dev) && PCI_SLOT(dev->devfn) == slot &&
318 parent && PCI_SLOT(parent->devfn) == parent_slot &&
319 !pci_upstream_bridge(parent)) {
320 pci_dev_put(dev);
321 return true;
322 }
323 from = dev;
324 }
325
326 return false;
327}
328
329/*
330 * GPDwin uses PCI wifi which conflicts with SDIO's use of
331 * acpi_device_fix_up_power() on child device nodes. Identifying GPDwin is
332 * problematic, but since SDIO is only used for wifi, the presence of the PCI
333 * wifi card in the expected slot with an ACPI companion node, is used to
334 * indicate that acpi_device_fix_up_power() should be avoided.
335 */
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300336static inline bool sdhci_acpi_no_fixup_child_power(struct acpi_device *adev)
Adrian Hunter17753d12017-06-21 15:08:39 +0300337{
338 return sdhci_acpi_cht() &&
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300339 acpi_dev_hid_uid_match(adev, "80860F14", "2") &&
Adrian Hunter17753d12017-06-21 15:08:39 +0300340 sdhci_acpi_cht_pci_wifi(0x14e4, 0x43ec, 0, 28);
341}
342
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300343#else
344
345static inline void sdhci_acpi_byt_setting(struct device *dev)
346{
347}
348
349static inline bool sdhci_acpi_byt_defer(struct device *dev)
350{
351 return false;
352}
353
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300354static inline bool sdhci_acpi_no_fixup_child_power(struct acpi_device *adev)
Adrian Hunter17753d12017-06-21 15:08:39 +0300355{
356 return false;
357}
358
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300359#endif
360
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200361static int bxt_get_cd(struct mmc_host *mmc)
362{
363 int gpio_cd = mmc_gpio_get_cd(mmc);
364 struct sdhci_host *host = mmc_priv(mmc);
365 unsigned long flags;
366 int ret = 0;
367
368 if (!gpio_cd)
369 return 0;
370
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200371 spin_lock_irqsave(&host->lock, flags);
372
373 if (host->flags & SDHCI_DEVICE_DEAD)
374 goto out;
375
376 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
377out:
378 spin_unlock_irqrestore(&host->lock, flags);
379
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200380 return ret;
381}
382
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300383static int intel_probe_slot(struct platform_device *pdev, struct acpi_device *adev)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800384{
385 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
Adrian Hunter1c451c12017-10-19 13:41:46 +0300386 struct intel_host *intel_host = sdhci_acpi_priv(c);
Adrian Hunter159cd322017-10-19 13:41:44 +0300387 struct sdhci_host *host = c->host;
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800388
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300389 if (acpi_dev_hid_uid_match(adev, "80860F14", "1") &&
Adrian Hunter80243792014-10-06 15:23:07 +0300390 sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
391 sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
392 host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
393
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300394 if (acpi_dev_hid_uid_match(adev, "80865ACA", NULL))
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200395 host->mmc_host_ops.get_cd = bxt_get_cd;
396
Adrian Hunter1c451c12017-10-19 13:41:46 +0300397 intel_dsm_init(intel_host, &pdev->dev, host->mmc);
398
399 host->mmc_host_ops.start_signal_voltage_switch =
400 intel_start_signal_voltage_switch;
401
Hans de Goede84d49b32020-03-16 19:47:52 +0100402 c->is_intel = true;
403
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800404 return 0;
405}
406
Adrian Hunter0acccf42017-12-08 15:08:18 +0200407static int intel_setup_host(struct platform_device *pdev)
408{
409 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
410 struct intel_host *intel_host = sdhci_acpi_priv(c);
411
412 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR25))
413 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR25;
414
415 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR50))
416 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR50;
417
418 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_DDR50))
419 c->host->mmc->caps &= ~MMC_CAP_UHS_DDR50;
420
421 if (!(intel_host->hs_caps & INTEL_DSM_HS_CAPS_SDR104))
422 c->host->mmc->caps &= ~MMC_CAP_UHS_SDR104;
423
424 return 0;
425}
426
Adrian Hunter07a58882013-04-26 11:27:22 +0300427static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
Adrian Hunterb04fa062013-06-13 11:50:27 +0300428 .chip = &sdhci_acpi_chip_int,
Maurice Petallof25c3372014-07-08 19:11:01 +0800429 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Adrian Hunter9d65cb82014-12-01 15:51:19 +0200430 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
Adrian Hunterc80f2752016-08-16 13:44:15 +0300431 MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
Adrian Hunter07a58882013-04-26 11:27:22 +0300432 .flags = SDHCI_ACPI_RUNTIME_PM,
Adrian Hunter197ce1a2018-12-11 15:10:44 +0200433 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
434 SDHCI_QUIRK_NO_LED,
Adrian Huntere839b132015-10-21 11:15:46 +0300435 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
436 SDHCI_QUIRK2_STOP_WITH_TC |
437 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
Adrian Hunter159cd322017-10-19 13:41:44 +0300438 .probe_slot = intel_probe_slot,
Adrian Hunter0acccf42017-12-08 15:08:18 +0200439 .setup_host = intel_setup_host,
Adrian Hunter1c451c12017-10-19 13:41:46 +0300440 .priv_size = sizeof(struct intel_host),
Adrian Hunter07a58882013-04-26 11:27:22 +0300441};
442
Adrian Huntere5571392012-12-10 21:18:48 +0100443static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
Adrian Huntere1f56332014-12-01 15:51:17 +0200444 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
Adrian Hunter197ce1a2018-12-11 15:10:44 +0200445 SDHCI_QUIRK_NO_LED |
Adrian Huntere1f56332014-12-01 15:51:17 +0200446 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere5571392012-12-10 21:18:48 +0100447 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunter9d65cb82014-12-01 15:51:19 +0200448 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
Adrian Hunter265984b2016-05-20 10:33:48 +0300449 MMC_CAP_WAIT_WHILE_BUSY,
Adrian Huntere5571392012-12-10 21:18:48 +0100450 .flags = SDHCI_ACPI_RUNTIME_PM,
451 .pm_caps = MMC_PM_KEEP_POWER,
Adrian Hunter159cd322017-10-19 13:41:44 +0300452 .probe_slot = intel_probe_slot,
Adrian Hunter0acccf42017-12-08 15:08:18 +0200453 .setup_host = intel_setup_host,
Adrian Hunter1c451c12017-10-19 13:41:46 +0300454 .priv_size = sizeof(struct intel_host),
Adrian Huntere5571392012-12-10 21:18:48 +0100455};
456
Adrian Hunter07a58882013-04-26 11:27:22 +0300457static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
Adrian Hunter4fd44092014-03-10 15:02:42 +0200458 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
459 SDHCI_ACPI_RUNTIME_PM,
Adrian Hunter197ce1a2018-12-11 15:10:44 +0200460 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC |
461 SDHCI_QUIRK_NO_LED,
Adrian Hunter934e31b2014-09-24 10:27:28 +0300462 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
463 SDHCI_QUIRK2_STOP_WITH_TC,
Azhar Shaikhd3e97402017-03-29 11:16:32 -0700464 .caps = MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_AGGRESSIVE_PM,
Adrian Hunter159cd322017-10-19 13:41:44 +0300465 .probe_slot = intel_probe_slot,
Adrian Hunter0acccf42017-12-08 15:08:18 +0200466 .setup_host = intel_setup_host,
Adrian Hunter1c451c12017-10-19 13:41:46 +0300467 .priv_size = sizeof(struct intel_host),
Adrian Hunter07a58882013-04-26 11:27:22 +0300468};
469
Wang Dongsheng96ccb852018-08-16 12:48:43 +0800470#define VENDOR_SPECIFIC_PWRCTL_CLEAR_REG 0x1a8
471#define VENDOR_SPECIFIC_PWRCTL_CTL_REG 0x1ac
472static irqreturn_t sdhci_acpi_qcom_handler(int irq, void *ptr)
473{
474 struct sdhci_host *host = ptr;
475
476 sdhci_writel(host, 0x3, VENDOR_SPECIFIC_PWRCTL_CLEAR_REG);
477 sdhci_writel(host, 0x1, VENDOR_SPECIFIC_PWRCTL_CTL_REG);
478
479 return IRQ_HANDLED;
480}
481
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300482static int qcom_probe_slot(struct platform_device *pdev, struct acpi_device *adev)
Wang Dongsheng96ccb852018-08-16 12:48:43 +0800483{
484 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
485 struct sdhci_host *host = c->host;
486 int *irq = sdhci_acpi_priv(c);
487
488 *irq = -EINVAL;
489
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300490 if (!acpi_dev_hid_uid_match(adev, "QCOM8051", NULL))
Wang Dongsheng96ccb852018-08-16 12:48:43 +0800491 return 0;
492
493 *irq = platform_get_irq(pdev, 1);
494 if (*irq < 0)
495 return 0;
496
497 return request_threaded_irq(*irq, NULL, sdhci_acpi_qcom_handler,
498 IRQF_ONESHOT | IRQF_TRIGGER_HIGH,
499 "sdhci_qcom", host);
500}
501
502static int qcom_free_slot(struct platform_device *pdev)
503{
504 struct device *dev = &pdev->dev;
505 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
506 struct sdhci_host *host = c->host;
507 struct acpi_device *adev;
508 int *irq = sdhci_acpi_priv(c);
Wang Dongsheng96ccb852018-08-16 12:48:43 +0800509
510 adev = ACPI_COMPANION(dev);
511 if (!adev)
512 return -ENODEV;
513
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300514 if (!acpi_dev_hid_uid_match(adev, "QCOM8051", NULL))
Wang Dongsheng96ccb852018-08-16 12:48:43 +0800515 return 0;
516
517 if (*irq < 0)
518 return 0;
519
520 free_irq(*irq, host);
521 return 0;
522}
523
Philip Elcan70cce2a2016-03-03 11:38:46 -0500524static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
525 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
526 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
527 .caps = MMC_CAP_NONREMOVABLE,
Wang Dongsheng96ccb852018-08-16 12:48:43 +0800528 .priv_size = sizeof(int),
529 .probe_slot = qcom_probe_slot,
530 .free_slot = qcom_free_slot,
Philip Elcan70cce2a2016-03-03 11:38:46 -0500531};
532
533static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
534 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
535 .caps = MMC_CAP_NONREMOVABLE,
536};
537
Shah Nehal-Bakulchandra34597a32017-12-01 15:38:52 +0530538/* AMD sdhci reset dll register. */
539#define SDHCI_AMD_RESET_DLL_REGISTER 0x908
540
541static int amd_select_drive_strength(struct mmc_card *card,
542 unsigned int max_dtr, int host_drv,
543 int card_drv, int *drv_type)
544{
545 return MMC_SET_DRIVER_TYPE_A;
546}
547
548static void sdhci_acpi_amd_hs400_dll(struct sdhci_host *host)
549{
550 /* AMD Platform requires dll setting */
551 sdhci_writel(host, 0x40003210, SDHCI_AMD_RESET_DLL_REGISTER);
552 usleep_range(10, 20);
553 sdhci_writel(host, 0x40033210, SDHCI_AMD_RESET_DLL_REGISTER);
554}
555
556/*
557 * For AMD Platform it is required to disable the tuning
558 * bit first controller to bring to HS Mode from HS200
559 * mode, later enable to tune to HS400 mode.
560 */
561static void amd_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
562{
563 struct sdhci_host *host = mmc_priv(mmc);
564 unsigned int old_timing = host->timing;
565
566 sdhci_set_ios(mmc, ios);
567 if (old_timing == MMC_TIMING_MMC_HS200 &&
568 ios->timing == MMC_TIMING_MMC_HS)
569 sdhci_writew(host, 0x9, SDHCI_HOST_CONTROL2);
570 if (old_timing != MMC_TIMING_MMC_HS400 &&
571 ios->timing == MMC_TIMING_MMC_HS400) {
572 sdhci_writew(host, 0x80, SDHCI_HOST_CONTROL2);
573 sdhci_acpi_amd_hs400_dll(host);
574 }
575}
576
577static const struct sdhci_ops sdhci_acpi_ops_amd = {
578 .set_clock = sdhci_set_clock,
579 .set_bus_width = sdhci_set_bus_width,
580 .reset = sdhci_reset,
581 .set_uhs_signaling = sdhci_set_uhs_signaling,
582};
583
584static const struct sdhci_acpi_chip sdhci_acpi_chip_amd = {
585 .ops = &sdhci_acpi_ops_amd,
586};
587
588static int sdhci_acpi_emmc_amd_probe_slot(struct platform_device *pdev,
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300589 struct acpi_device *adev)
Shah Nehal-Bakulchandra34597a32017-12-01 15:38:52 +0530590{
591 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
592 struct sdhci_host *host = c->host;
593
594 sdhci_read_caps(host);
595 if (host->caps1 & SDHCI_SUPPORT_DDR50)
596 host->mmc->caps = MMC_CAP_1_8V_DDR;
597
598 if ((host->caps1 & SDHCI_SUPPORT_SDR104) &&
599 (host->mmc->caps & MMC_CAP_1_8V_DDR))
600 host->mmc->caps2 = MMC_CAP2_HS400_1_8V;
601
602 host->mmc_host_ops.select_drive_strength = amd_select_drive_strength;
603 host->mmc_host_ops.set_ios = amd_set_ios;
604 return 0;
605}
606
607static const struct sdhci_acpi_slot sdhci_acpi_slot_amd_emmc = {
608 .chip = &sdhci_acpi_chip_amd,
609 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE,
610 .quirks = SDHCI_QUIRK_32BIT_DMA_ADDR | SDHCI_QUIRK_32BIT_DMA_SIZE |
611 SDHCI_QUIRK_32BIT_ADMA_SIZE,
612 .probe_slot = sdhci_acpi_emmc_amd_probe_slot,
613};
614
Adrian Hunter07a58882013-04-26 11:27:22 +0300615struct sdhci_acpi_uid_slot {
616 const char *hid;
617 const char *uid;
618 const struct sdhci_acpi_slot *slot;
619};
620
621static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
Adrian Huntere839b132015-10-21 11:15:46 +0300622 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
623 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
624 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
Adrian Hunter07a58882013-04-26 11:27:22 +0300625 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
Daniel Drakedb52d4f2016-12-01 14:33:03 -0600626 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
Adrian Hunter07a58882013-04-26 11:27:22 +0300627 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunteraad95dc2014-03-10 15:02:43 +0200628 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300629 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
Adrian Hunter7147eaf2014-09-24 10:27:29 +0300630 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300631 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
Mika Westerberg07c001c2013-11-12 12:01:33 +0200632 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
Adrian Hunterd0ed8e62015-01-05 14:47:57 +0200633 { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio },
Michele Curti0cd2f042015-09-05 08:49:52 +0200634 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300635 { "PNP0D40" },
Philip Elcan70cce2a2016-03-03 11:38:46 -0500636 { "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
637 { "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
Shah Nehal-Bakulchandra34597a32017-12-01 15:38:52 +0530638 { "AMDI0040", NULL, &sdhci_acpi_slot_amd_emmc },
Adrian Hunter07a58882013-04-26 11:27:22 +0300639 { },
640};
641
Adrian Hunterc4e05032012-11-23 21:17:34 +0100642static const struct acpi_device_id sdhci_acpi_ids[] = {
Adrian Huntere839b132015-10-21 11:15:46 +0300643 { "80865ACA" },
644 { "80865ACC" },
645 { "80865AD0" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300646 { "80860F14" },
Adrian Hunteraad95dc2014-03-10 15:02:43 +0200647 { "80860F16" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300648 { "INT33BB" },
649 { "INT33C6" },
Mika Westerberg07c001c2013-11-12 12:01:33 +0200650 { "INT3436" },
Adrian Hunterd0ed8e62015-01-05 14:47:57 +0200651 { "INT344D" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300652 { "PNP0D40" },
Philip Elcan70cce2a2016-03-03 11:38:46 -0500653 { "QCOM8051" },
654 { "QCOM8052" },
Shah Nehal-Bakulchandra34597a32017-12-01 15:38:52 +0530655 { "AMDI0040" },
Adrian Hunterc4e05032012-11-23 21:17:34 +0100656 { },
657};
658MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
659
Hans de Goede84d49b32020-03-16 19:47:52 +0100660static const struct dmi_system_id sdhci_acpi_quirks[] = {
661 {
662 /*
663 * The Lenovo Miix 320-10ICR has a bug in the _PS0 method of
664 * the SHC1 ACPI device, this bug causes it to reprogram the
665 * wrong LDO (DLDO3) to 1.8V if 1.8V modes are used and the
666 * card is (runtime) suspended + resumed. DLDO3 is used for
667 * the LCD and setting it to 1.8V causes the LCD to go black.
668 */
669 .matches = {
670 DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
671 DMI_MATCH(DMI_PRODUCT_VERSION, "Lenovo MIIX 320-10ICR"),
672 },
673 .driver_data = (void *)DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP,
674 },
Hans de Goede3397b252020-03-16 19:47:53 +0100675 {
676 /*
677 * The Acer Aspire Switch 10 (SW5-012) microSD slot always
678 * reports the card being write-protected even though microSD
679 * cards do not have a write-protect switch at all.
680 */
681 .matches = {
682 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
683 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire SW5-012"),
684 },
685 .driver_data = (void *)DMI_QUIRK_SD_NO_WRITE_PROTECT,
686 },
Hans de Goede84d49b32020-03-16 19:47:52 +0100687 {} /* Terminating entry */
688};
689
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300690static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(struct acpi_device *adev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100691{
Adrian Hunter07a58882013-04-26 11:27:22 +0300692 const struct sdhci_acpi_uid_slot *u;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100693
Adrian Hunter07a58882013-04-26 11:27:22 +0300694 for (u = sdhci_acpi_uids; u->hid; u++) {
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300695 if (acpi_dev_hid_uid_match(adev, u->hid, u->uid))
Adrian Hunter07a58882013-04-26 11:27:22 +0300696 return u->slot;
697 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100698 return NULL;
699}
700
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800701static int sdhci_acpi_probe(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100702{
703 struct device *dev = &pdev->dev;
Adrian Hunterf07b7952017-10-19 13:41:45 +0300704 const struct sdhci_acpi_slot *slot;
Adrian Huntere5bbf302016-05-19 15:25:42 +0200705 struct acpi_device *device, *child;
Hans de Goede84d49b32020-03-16 19:47:52 +0100706 const struct dmi_system_id *id;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100707 struct sdhci_acpi_host *c;
708 struct sdhci_host *host;
709 struct resource *iomem;
710 resource_size_t len;
Adrian Hunterf07b7952017-10-19 13:41:45 +0300711 size_t priv_size;
Hans de Goede84d49b32020-03-16 19:47:52 +0100712 int quirks = 0;
Mika Westerberg87875652014-01-08 12:40:55 +0200713 int err;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100714
Andy Shevchenkocd25c7b2017-07-24 17:59:58 +0300715 device = ACPI_COMPANION(dev);
716 if (!device)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100717 return -ENODEV;
718
Hans de Goede84d49b32020-03-16 19:47:52 +0100719 id = dmi_first_match(sdhci_acpi_quirks);
720 if (id)
721 quirks = (long)id->driver_data;
722
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300723 slot = sdhci_acpi_get_slot(device);
Adrian Hunterf07b7952017-10-19 13:41:45 +0300724
Adrian Huntere5bbf302016-05-19 15:25:42 +0200725 /* Power on the SDHCI controller and its children */
726 acpi_device_fix_up_power(device);
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300727 if (!sdhci_acpi_no_fixup_child_power(device)) {
Adrian Hunter17753d12017-06-21 15:08:39 +0300728 list_for_each_entry(child, &device->children, node)
729 if (child->status.present && child->status.enabled)
730 acpi_device_fix_up_power(child);
731 }
Adrian Huntere5bbf302016-05-19 15:25:42 +0200732
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300733 if (sdhci_acpi_byt_defer(dev))
734 return -EPROBE_DEFER;
735
Adrian Hunterc4e05032012-11-23 21:17:34 +0100736 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
737 if (!iomem)
738 return -ENOMEM;
739
740 len = resource_size(iomem);
741 if (len < 0x100)
742 dev_err(dev, "Invalid iomem size!\n");
743
744 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
745 return -ENOMEM;
746
Adrian Hunterf07b7952017-10-19 13:41:45 +0300747 priv_size = slot ? slot->priv_size : 0;
748 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host) + priv_size);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100749 if (IS_ERR(host))
750 return PTR_ERR(host);
751
752 c = sdhci_priv(host);
753 c->host = host;
Adrian Hunterf07b7952017-10-19 13:41:45 +0300754 c->slot = slot;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100755 c->pdev = pdev;
756 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
757
758 platform_set_drvdata(pdev, c);
759
760 host->hw_name = "ACPI";
761 host->ops = &sdhci_acpi_ops_dflt;
762 host->irq = platform_get_irq(pdev, 0);
Adrian Hunterd58ac802018-03-21 11:49:40 +0200763 if (host->irq < 0) {
Arvind Yadav1b7ba572017-11-19 10:22:45 +0530764 err = -EINVAL;
765 goto err_free;
766 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100767
Christoph Hellwig4bdc0d62020-01-06 09:43:50 +0100768 host->ioaddr = devm_ioremap(dev, iomem->start,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100769 resource_size(iomem));
770 if (host->ioaddr == NULL) {
771 err = -ENOMEM;
772 goto err_free;
773 }
774
Adrian Hunterc4e05032012-11-23 21:17:34 +0100775 if (c->slot) {
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800776 if (c->slot->probe_slot) {
Andy Shevchenko4f3cde32019-10-01 17:27:24 +0300777 err = c->slot->probe_slot(pdev, device);
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800778 if (err)
779 goto err_free;
780 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100781 if (c->slot->chip) {
782 host->ops = c->slot->chip->ops;
783 host->quirks |= c->slot->chip->quirks;
784 host->quirks2 |= c->slot->chip->quirks2;
785 host->mmc->caps |= c->slot->chip->caps;
786 host->mmc->caps2 |= c->slot->chip->caps2;
787 host->mmc->pm_caps |= c->slot->chip->pm_caps;
788 }
789 host->quirks |= c->slot->quirks;
790 host->quirks2 |= c->slot->quirks2;
791 host->mmc->caps |= c->slot->caps;
792 host->mmc->caps2 |= c->slot->caps2;
793 host->mmc->pm_caps |= c->slot->pm_caps;
794 }
795
Adrian Hunter0d3e3352013-04-04 16:41:06 +0300796 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
797
Adrian Hunter4fd44092014-03-10 15:02:42 +0200798 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
799 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
800
Michał Mirosławd0052ad2019-12-11 03:40:56 +0100801 err = mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0);
Zhang Ruie28d6f02017-01-18 17:46:18 +0800802 if (err) {
803 if (err == -EPROBE_DEFER)
804 goto err_free;
Adrian Hunter4fd44092014-03-10 15:02:42 +0200805 dev_warn(dev, "failed to setup card detect gpio\n");
806 c->use_runtime_pm = false;
807 }
Hans de Goede84d49b32020-03-16 19:47:52 +0100808
809 if (quirks & DMI_QUIRK_RESET_SD_SIGNAL_VOLT_ON_SUSP)
810 c->reset_signal_volt_on_suspend = true;
Hans de Goede3397b252020-03-16 19:47:53 +0100811
812 if (quirks & DMI_QUIRK_SD_NO_WRITE_PROTECT)
813 host->mmc->caps2 |= MMC_CAP2_NO_WRITE_PROTECT;
Adrian Hunter4fd44092014-03-10 15:02:42 +0200814 }
815
Adrian Hunter0cc1a0f2017-12-08 15:04:58 +0200816 err = sdhci_setup_host(host);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100817 if (err)
818 goto err_free;
819
Adrian Hunter0cc1a0f2017-12-08 15:04:58 +0200820 if (c->slot && c->slot->setup_host) {
821 err = c->slot->setup_host(pdev);
822 if (err)
823 goto err_cleanup;
824 }
825
826 err = __sdhci_add_host(host);
827 if (err)
828 goto err_cleanup;
829
Adrian Hunterc4e05032012-11-23 21:17:34 +0100830 if (c->use_runtime_pm) {
Adrian Hunter1d1ff452013-04-26 11:27:21 +0300831 pm_runtime_set_active(dev);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100832 pm_suspend_ignore_children(dev, 1);
833 pm_runtime_set_autosuspend_delay(dev, 50);
834 pm_runtime_use_autosuspend(dev);
835 pm_runtime_enable(dev);
836 }
837
Fu, Zhonghui4e6a2ef2016-01-22 12:35:26 +0800838 device_enable_async_suspend(dev);
839
Adrian Hunterc4e05032012-11-23 21:17:34 +0100840 return 0;
841
Adrian Hunter0cc1a0f2017-12-08 15:04:58 +0200842err_cleanup:
843 sdhci_cleanup_host(c->host);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100844err_free:
Wang Dongshengc7eabbe2018-08-16 12:48:42 +0800845 if (c->slot && c->slot->free_slot)
846 c->slot->free_slot(pdev);
847
Adrian Hunterc4e05032012-11-23 21:17:34 +0100848 sdhci_free_host(c->host);
849 return err;
850}
851
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800852static int sdhci_acpi_remove(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100853{
854 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
855 struct device *dev = &pdev->dev;
856 int dead;
857
858 if (c->use_runtime_pm) {
859 pm_runtime_get_sync(dev);
860 pm_runtime_disable(dev);
861 pm_runtime_put_noidle(dev);
862 }
863
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800864 if (c->slot && c->slot->remove_slot)
865 c->slot->remove_slot(pdev);
866
Adrian Hunterc4e05032012-11-23 21:17:34 +0100867 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
868 sdhci_remove_host(c->host, dead);
Wang Dongshengc7eabbe2018-08-16 12:48:42 +0800869
870 if (c->slot && c->slot->free_slot)
871 c->slot->free_slot(pdev);
872
Adrian Hunterc4e05032012-11-23 21:17:34 +0100873 sdhci_free_host(c->host);
874
875 return 0;
876}
877
Hans de Goede84d49b32020-03-16 19:47:52 +0100878static void __maybe_unused sdhci_acpi_reset_signal_voltage_if_needed(
879 struct device *dev)
880{
881 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
882 struct sdhci_host *host = c->host;
883
884 if (c->is_intel && c->reset_signal_volt_on_suspend &&
885 host->mmc->ios.signal_voltage != MMC_SIGNAL_VOLTAGE_330) {
886 struct intel_host *intel_host = sdhci_acpi_priv(c);
887 unsigned int fn = INTEL_DSM_V33_SWITCH;
888 u32 result = 0;
889
890 intel_dsm(intel_host, dev, fn, &result);
891 }
892}
893
Adrian Hunterc4e05032012-11-23 21:17:34 +0100894#ifdef CONFIG_PM_SLEEP
895
896static int sdhci_acpi_suspend(struct device *dev)
897{
898 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200899 struct sdhci_host *host = c->host;
Hans de Goede84d49b32020-03-16 19:47:52 +0100900 int ret;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100901
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200902 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
903 mmc_retune_needed(host->mmc);
904
Hans de Goede84d49b32020-03-16 19:47:52 +0100905 ret = sdhci_suspend_host(host);
906 if (ret)
907 return ret;
908
909 sdhci_acpi_reset_signal_voltage_if_needed(dev);
910 return 0;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100911}
912
913static int sdhci_acpi_resume(struct device *dev)
914{
915 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
916
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300917 sdhci_acpi_byt_setting(&c->pdev->dev);
918
Adrian Hunterc4e05032012-11-23 21:17:34 +0100919 return sdhci_resume_host(c->host);
920}
921
Adrian Hunterc4e05032012-11-23 21:17:34 +0100922#endif
923
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +0100924#ifdef CONFIG_PM
Adrian Hunterc4e05032012-11-23 21:17:34 +0100925
926static int sdhci_acpi_runtime_suspend(struct device *dev)
927{
928 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200929 struct sdhci_host *host = c->host;
Hans de Goede84d49b32020-03-16 19:47:52 +0100930 int ret;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100931
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200932 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
933 mmc_retune_needed(host->mmc);
934
Hans de Goede84d49b32020-03-16 19:47:52 +0100935 ret = sdhci_runtime_suspend_host(host);
936 if (ret)
937 return ret;
938
939 sdhci_acpi_reset_signal_voltage_if_needed(dev);
940 return 0;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100941}
942
943static int sdhci_acpi_runtime_resume(struct device *dev)
944{
945 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
946
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300947 sdhci_acpi_byt_setting(&c->pdev->dev);
948
Baolin Wangc6303c52019-07-25 11:14:22 +0800949 return sdhci_runtime_resume_host(c->host, 0);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100950}
951
Adrian Hunterc4e05032012-11-23 21:17:34 +0100952#endif
953
954static const struct dev_pm_ops sdhci_acpi_pm_ops = {
Ulf Hanssondafed442016-07-27 10:39:52 +0200955 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
Peter Griffin1d75f742014-08-12 17:14:29 +0100956 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
Ulf Hansson9b449e92015-01-02 14:47:00 +0100957 sdhci_acpi_runtime_resume, NULL)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100958};
959
960static struct platform_driver sdhci_acpi_driver = {
961 .driver = {
962 .name = "sdhci-acpi",
Adrian Hunterc4e05032012-11-23 21:17:34 +0100963 .acpi_match_table = sdhci_acpi_ids,
964 .pm = &sdhci_acpi_pm_ops,
965 },
966 .probe = sdhci_acpi_probe,
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800967 .remove = sdhci_acpi_remove,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100968};
969
970module_platform_driver(sdhci_acpi_driver);
971
972MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
973MODULE_AUTHOR("Adrian Hunter");
974MODULE_LICENSE("GPL v2");