blob: c6a9a1bfaa22d9f2558e2806cf027ca730822d28 [file] [log] [blame]
Adrian Hunterc4e05032012-11-23 21:17:34 +01001/*
2 * Secure Digital Host Controller Interface ACPI driver.
3 *
4 * Copyright (c) 2012, Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms and conditions of the GNU General Public License,
8 * version 2, as published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#include <linux/init.h>
22#include <linux/export.h>
23#include <linux/module.h>
24#include <linux/device.h>
25#include <linux/platform_device.h>
26#include <linux/ioport.h>
27#include <linux/io.h>
28#include <linux/dma-mapping.h>
29#include <linux/compiler.h>
30#include <linux/stddef.h>
31#include <linux/bitops.h>
32#include <linux/types.h>
33#include <linux/err.h>
34#include <linux/interrupt.h>
35#include <linux/acpi.h>
36#include <linux/pm.h>
37#include <linux/pm_runtime.h>
Adrian Hunterb04fa062013-06-13 11:50:27 +030038#include <linux/delay.h>
Adrian Hunterc4e05032012-11-23 21:17:34 +010039
40#include <linux/mmc/host.h>
41#include <linux/mmc/pm.h>
Adrian Hunter4fd44092014-03-10 15:02:42 +020042#include <linux/mmc/slot-gpio.h>
Adrian Hunterc4e05032012-11-23 21:17:34 +010043
Adrian Hunter6e1c7d62016-04-15 14:06:57 +030044#ifdef CONFIG_X86
45#include <asm/cpu_device_id.h>
Dave Hansen8ba4cb52016-06-02 17:19:51 -070046#include <asm/intel-family.h>
Adrian Hunter6e1c7d62016-04-15 14:06:57 +030047#include <asm/iosf_mbi.h>
48#endif
49
Adrian Hunterc4e05032012-11-23 21:17:34 +010050#include "sdhci.h"
51
52enum {
Adrian Hunter4fd44092014-03-10 15:02:42 +020053 SDHCI_ACPI_SD_CD = BIT(0),
54 SDHCI_ACPI_RUNTIME_PM = BIT(1),
55 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
Adrian Hunterc4e05032012-11-23 21:17:34 +010056};
57
58struct sdhci_acpi_chip {
59 const struct sdhci_ops *ops;
60 unsigned int quirks;
61 unsigned int quirks2;
62 unsigned long caps;
63 unsigned int caps2;
64 mmc_pm_flag_t pm_caps;
65};
66
67struct sdhci_acpi_slot {
68 const struct sdhci_acpi_chip *chip;
69 unsigned int quirks;
70 unsigned int quirks2;
71 unsigned long caps;
72 unsigned int caps2;
73 mmc_pm_flag_t pm_caps;
74 unsigned int flags;
Adrian Hunter7dafca82014-10-06 15:23:06 +030075 int (*probe_slot)(struct platform_device *, const char *, const char *);
Gao, Yunpeng578b36b2014-09-01 11:35:40 +080076 int (*remove_slot)(struct platform_device *);
Adrian Hunterc4e05032012-11-23 21:17:34 +010077};
78
79struct sdhci_acpi_host {
80 struct sdhci_host *host;
81 const struct sdhci_acpi_slot *slot;
82 struct platform_device *pdev;
83 bool use_runtime_pm;
84};
85
86static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
87{
88 return c->slot && (c->slot->flags & flag);
89}
90
Adrian Hunterb04fa062013-06-13 11:50:27 +030091static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
92{
93 u8 reg;
94
95 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
96 reg |= 0x10;
97 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
98 /* For eMMC, minimum is 1us but give it 9us for good measure */
99 udelay(9);
100 reg &= ~0x10;
101 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
102 /* For eMMC, minimum is 200us but give it 300us for good measure */
103 usleep_range(300, 1000);
104}
105
Adrian Hunterc4e05032012-11-23 21:17:34 +0100106static const struct sdhci_ops sdhci_acpi_ops_dflt = {
Russell King17710592014-04-25 12:58:55 +0100107 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100108 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100109 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +0100110 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100111};
112
Adrian Hunterb04fa062013-06-13 11:50:27 +0300113static const struct sdhci_ops sdhci_acpi_ops_int = {
Russell King17710592014-04-25 12:58:55 +0100114 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100115 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100116 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +0100117 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunterb04fa062013-06-13 11:50:27 +0300118 .hw_reset = sdhci_acpi_int_hw_reset,
119};
120
121static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
122 .ops = &sdhci_acpi_ops_int,
123};
124
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300125#ifdef CONFIG_X86
126
127static bool sdhci_acpi_byt(void)
128{
129 static const struct x86_cpu_id byt[] = {
Dave Hansen8ba4cb52016-06-02 17:19:51 -0700130 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_SILVERMONT1 },
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300131 {}
132 };
133
134 return x86_match_cpu(byt);
135}
136
137#define BYT_IOSF_SCCEP 0x63
138#define BYT_IOSF_OCP_NETCTRL0 0x1078
139#define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
140
141static void sdhci_acpi_byt_setting(struct device *dev)
142{
143 u32 val = 0;
144
145 if (!sdhci_acpi_byt())
146 return;
147
148 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
149 &val)) {
150 dev_err(dev, "%s read error\n", __func__);
151 return;
152 }
153
154 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
155 return;
156
157 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
158
159 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
160 val)) {
161 dev_err(dev, "%s write error\n", __func__);
162 return;
163 }
164
165 dev_dbg(dev, "%s completed\n", __func__);
166}
167
168static bool sdhci_acpi_byt_defer(struct device *dev)
169{
170 if (!sdhci_acpi_byt())
171 return false;
172
173 if (!iosf_mbi_available())
174 return true;
175
176 sdhci_acpi_byt_setting(dev);
177
178 return false;
179}
180
181#else
182
183static inline void sdhci_acpi_byt_setting(struct device *dev)
184{
185}
186
187static inline bool sdhci_acpi_byt_defer(struct device *dev)
188{
189 return false;
190}
191
192#endif
193
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200194static int bxt_get_cd(struct mmc_host *mmc)
195{
196 int gpio_cd = mmc_gpio_get_cd(mmc);
197 struct sdhci_host *host = mmc_priv(mmc);
198 unsigned long flags;
199 int ret = 0;
200
201 if (!gpio_cd)
202 return 0;
203
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200204 spin_lock_irqsave(&host->lock, flags);
205
206 if (host->flags & SDHCI_DEVICE_DEAD)
207 goto out;
208
209 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
210out:
211 spin_unlock_irqrestore(&host->lock, flags);
212
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200213 return ret;
214}
215
Adrian Hunter7dafca82014-10-06 15:23:06 +0300216static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev,
217 const char *hid, const char *uid)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800218{
219 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
220 struct sdhci_host *host;
221
222 if (!c || !c->host)
223 return 0;
224
225 host = c->host;
226
Andy Shevchenko94203042015-01-12 19:37:25 +0200227 /* Platform specific code during emmc probe slot goes here */
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800228
Adrian Hunter80243792014-10-06 15:23:07 +0300229 if (hid && uid && !strcmp(hid, "80860F14") && !strcmp(uid, "1") &&
230 sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
231 sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
232 host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
233
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800234 return 0;
235}
236
Adrian Hunter7dafca82014-10-06 15:23:06 +0300237static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev,
238 const char *hid, const char *uid)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800239{
240 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
241 struct sdhci_host *host;
242
243 if (!c || !c->host)
244 return 0;
245
246 host = c->host;
247
Andy Shevchenko94203042015-01-12 19:37:25 +0200248 /* Platform specific code during sdio probe slot goes here */
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800249
250 return 0;
251}
252
Adrian Hunter7dafca82014-10-06 15:23:06 +0300253static int sdhci_acpi_sd_probe_slot(struct platform_device *pdev,
254 const char *hid, const char *uid)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800255{
256 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
257 struct sdhci_host *host;
258
259 if (!c || !c->host || !c->slot)
260 return 0;
261
262 host = c->host;
263
Andy Shevchenko94203042015-01-12 19:37:25 +0200264 /* Platform specific code during sd probe slot goes here */
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800265
Azhar Shaikhd3e97402017-03-29 11:16:32 -0700266 if (hid && !strcmp(hid, "80865ACA"))
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200267 host->mmc_host_ops.get_cd = bxt_get_cd;
268
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800269 return 0;
270}
271
Adrian Hunter07a58882013-04-26 11:27:22 +0300272static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
Adrian Hunterb04fa062013-06-13 11:50:27 +0300273 .chip = &sdhci_acpi_chip_int,
Maurice Petallof25c3372014-07-08 19:11:01 +0800274 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Adrian Hunter9d65cb82014-12-01 15:51:19 +0200275 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
Adrian Hunterc80f2752016-08-16 13:44:15 +0300276 MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
Adrian Hunter07a58882013-04-26 11:27:22 +0300277 .caps2 = MMC_CAP2_HC_ERASE_SZ,
278 .flags = SDHCI_ACPI_RUNTIME_PM,
Adrian Huntere1f56332014-12-01 15:51:17 +0200279 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere839b132015-10-21 11:15:46 +0300280 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
281 SDHCI_QUIRK2_STOP_WITH_TC |
282 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800283 .probe_slot = sdhci_acpi_emmc_probe_slot,
Adrian Hunter07a58882013-04-26 11:27:22 +0300284};
285
Adrian Huntere5571392012-12-10 21:18:48 +0100286static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
Adrian Huntere1f56332014-12-01 15:51:17 +0200287 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
288 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere5571392012-12-10 21:18:48 +0100289 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunter9d65cb82014-12-01 15:51:19 +0200290 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
Adrian Hunter265984b2016-05-20 10:33:48 +0300291 MMC_CAP_WAIT_WHILE_BUSY,
Adrian Huntere5571392012-12-10 21:18:48 +0100292 .flags = SDHCI_ACPI_RUNTIME_PM,
293 .pm_caps = MMC_PM_KEEP_POWER,
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800294 .probe_slot = sdhci_acpi_sdio_probe_slot,
Adrian Huntere5571392012-12-10 21:18:48 +0100295};
296
Adrian Hunter07a58882013-04-26 11:27:22 +0300297static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
Adrian Hunter4fd44092014-03-10 15:02:42 +0200298 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
299 SDHCI_ACPI_RUNTIME_PM,
Adrian Huntere1f56332014-12-01 15:51:17 +0200300 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunter934e31b2014-09-24 10:27:28 +0300301 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
302 SDHCI_QUIRK2_STOP_WITH_TC,
Azhar Shaikhd3e97402017-03-29 11:16:32 -0700303 .caps = MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_AGGRESSIVE_PM,
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800304 .probe_slot = sdhci_acpi_sd_probe_slot,
Adrian Hunter07a58882013-04-26 11:27:22 +0300305};
306
Philip Elcan70cce2a2016-03-03 11:38:46 -0500307static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
308 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
309 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
310 .caps = MMC_CAP_NONREMOVABLE,
311};
312
313static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
314 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
315 .caps = MMC_CAP_NONREMOVABLE,
316};
317
Adrian Hunter07a58882013-04-26 11:27:22 +0300318struct sdhci_acpi_uid_slot {
319 const char *hid;
320 const char *uid;
321 const struct sdhci_acpi_slot *slot;
322};
323
324static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
Adrian Huntere839b132015-10-21 11:15:46 +0300325 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
326 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
327 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
Adrian Hunter07a58882013-04-26 11:27:22 +0300328 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
Daniel Drakedb52d4f2016-12-01 14:33:03 -0600329 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
Adrian Hunter07a58882013-04-26 11:27:22 +0300330 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunteraad95dc2014-03-10 15:02:43 +0200331 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300332 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
Adrian Hunter7147eaf2014-09-24 10:27:29 +0300333 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300334 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
Mika Westerberg07c001c2013-11-12 12:01:33 +0200335 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
Adrian Hunterd0ed8e62015-01-05 14:47:57 +0200336 { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio },
Michele Curti0cd2f042015-09-05 08:49:52 +0200337 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300338 { "PNP0D40" },
Philip Elcan70cce2a2016-03-03 11:38:46 -0500339 { "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
340 { "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
Adrian Hunter07a58882013-04-26 11:27:22 +0300341 { },
342};
343
Adrian Hunterc4e05032012-11-23 21:17:34 +0100344static const struct acpi_device_id sdhci_acpi_ids[] = {
Adrian Huntere839b132015-10-21 11:15:46 +0300345 { "80865ACA" },
346 { "80865ACC" },
347 { "80865AD0" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300348 { "80860F14" },
Adrian Hunteraad95dc2014-03-10 15:02:43 +0200349 { "80860F16" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300350 { "INT33BB" },
351 { "INT33C6" },
Mika Westerberg07c001c2013-11-12 12:01:33 +0200352 { "INT3436" },
Adrian Hunterd0ed8e62015-01-05 14:47:57 +0200353 { "INT344D" },
Adrian Hunter07a58882013-04-26 11:27:22 +0300354 { "PNP0D40" },
Philip Elcan70cce2a2016-03-03 11:38:46 -0500355 { "QCOM8051" },
356 { "QCOM8052" },
Adrian Hunterc4e05032012-11-23 21:17:34 +0100357 { },
358};
359MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
360
Adrian Hunter3db35252014-10-06 15:23:05 +0300361static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid,
362 const char *uid)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100363{
Adrian Hunter07a58882013-04-26 11:27:22 +0300364 const struct sdhci_acpi_uid_slot *u;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100365
Adrian Hunter07a58882013-04-26 11:27:22 +0300366 for (u = sdhci_acpi_uids; u->hid; u++) {
367 if (strcmp(u->hid, hid))
368 continue;
369 if (!u->uid)
370 return u->slot;
371 if (uid && !strcmp(u->uid, uid))
372 return u->slot;
373 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100374 return NULL;
375}
376
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800377static int sdhci_acpi_probe(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100378{
379 struct device *dev = &pdev->dev;
380 acpi_handle handle = ACPI_HANDLE(dev);
Adrian Huntere5bbf302016-05-19 15:25:42 +0200381 struct acpi_device *device, *child;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100382 struct sdhci_acpi_host *c;
383 struct sdhci_host *host;
384 struct resource *iomem;
385 resource_size_t len;
386 const char *hid;
Adrian Hunter3db35252014-10-06 15:23:05 +0300387 const char *uid;
Mika Westerberg87875652014-01-08 12:40:55 +0200388 int err;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100389
390 if (acpi_bus_get_device(handle, &device))
391 return -ENODEV;
392
Adrian Huntere5bbf302016-05-19 15:25:42 +0200393 /* Power on the SDHCI controller and its children */
394 acpi_device_fix_up_power(device);
395 list_for_each_entry(child, &device->children, node)
Hans de Goedee1d070c2016-12-21 00:19:19 +0100396 if (child->status.present && child->status.enabled)
397 acpi_device_fix_up_power(child);
Adrian Huntere5bbf302016-05-19 15:25:42 +0200398
Adrian Hunterc4e05032012-11-23 21:17:34 +0100399 if (acpi_bus_get_status(device) || !device->status.present)
400 return -ENODEV;
401
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300402 if (sdhci_acpi_byt_defer(dev))
403 return -EPROBE_DEFER;
404
Adrian Hunterc4e05032012-11-23 21:17:34 +0100405 hid = acpi_device_hid(device);
Adrian Hunter3db35252014-10-06 15:23:05 +0300406 uid = device->pnp.unique_id;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100407
408 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
409 if (!iomem)
410 return -ENOMEM;
411
412 len = resource_size(iomem);
413 if (len < 0x100)
414 dev_err(dev, "Invalid iomem size!\n");
415
416 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
417 return -ENOMEM;
418
419 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host));
420 if (IS_ERR(host))
421 return PTR_ERR(host);
422
423 c = sdhci_priv(host);
424 c->host = host;
Adrian Hunter3db35252014-10-06 15:23:05 +0300425 c->slot = sdhci_acpi_get_slot(hid, uid);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100426 c->pdev = pdev;
427 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
428
429 platform_set_drvdata(pdev, c);
430
431 host->hw_name = "ACPI";
432 host->ops = &sdhci_acpi_ops_dflt;
433 host->irq = platform_get_irq(pdev, 0);
434
435 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
436 resource_size(iomem));
437 if (host->ioaddr == NULL) {
438 err = -ENOMEM;
439 goto err_free;
440 }
441
Adrian Hunterc4e05032012-11-23 21:17:34 +0100442 if (c->slot) {
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800443 if (c->slot->probe_slot) {
Adrian Hunter7dafca82014-10-06 15:23:06 +0300444 err = c->slot->probe_slot(pdev, hid, uid);
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800445 if (err)
446 goto err_free;
447 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100448 if (c->slot->chip) {
449 host->ops = c->slot->chip->ops;
450 host->quirks |= c->slot->chip->quirks;
451 host->quirks2 |= c->slot->chip->quirks2;
452 host->mmc->caps |= c->slot->chip->caps;
453 host->mmc->caps2 |= c->slot->chip->caps2;
454 host->mmc->pm_caps |= c->slot->chip->pm_caps;
455 }
456 host->quirks |= c->slot->quirks;
457 host->quirks2 |= c->slot->quirks2;
458 host->mmc->caps |= c->slot->caps;
459 host->mmc->caps2 |= c->slot->caps2;
460 host->mmc->pm_caps |= c->slot->pm_caps;
461 }
462
Adrian Hunter0d3e3352013-04-04 16:41:06 +0300463 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
464
Adrian Hunter4fd44092014-03-10 15:02:42 +0200465 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
466 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
467
Zhang Ruie28d6f02017-01-18 17:46:18 +0800468 err = mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0, NULL);
469 if (err) {
470 if (err == -EPROBE_DEFER)
471 goto err_free;
Adrian Hunter4fd44092014-03-10 15:02:42 +0200472 dev_warn(dev, "failed to setup card detect gpio\n");
473 c->use_runtime_pm = false;
474 }
475 }
476
Adrian Hunterc4e05032012-11-23 21:17:34 +0100477 err = sdhci_add_host(host);
478 if (err)
479 goto err_free;
480
481 if (c->use_runtime_pm) {
Adrian Hunter1d1ff452013-04-26 11:27:21 +0300482 pm_runtime_set_active(dev);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100483 pm_suspend_ignore_children(dev, 1);
484 pm_runtime_set_autosuspend_delay(dev, 50);
485 pm_runtime_use_autosuspend(dev);
486 pm_runtime_enable(dev);
487 }
488
Fu, Zhonghui4e6a2ef2016-01-22 12:35:26 +0800489 device_enable_async_suspend(dev);
490
Adrian Hunterc4e05032012-11-23 21:17:34 +0100491 return 0;
492
493err_free:
Adrian Hunterc4e05032012-11-23 21:17:34 +0100494 sdhci_free_host(c->host);
495 return err;
496}
497
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800498static int sdhci_acpi_remove(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100499{
500 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
501 struct device *dev = &pdev->dev;
502 int dead;
503
504 if (c->use_runtime_pm) {
505 pm_runtime_get_sync(dev);
506 pm_runtime_disable(dev);
507 pm_runtime_put_noidle(dev);
508 }
509
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800510 if (c->slot && c->slot->remove_slot)
511 c->slot->remove_slot(pdev);
512
Adrian Hunterc4e05032012-11-23 21:17:34 +0100513 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
514 sdhci_remove_host(c->host, dead);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100515 sdhci_free_host(c->host);
516
517 return 0;
518}
519
520#ifdef CONFIG_PM_SLEEP
521
522static int sdhci_acpi_suspend(struct device *dev)
523{
524 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200525 struct sdhci_host *host = c->host;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100526
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200527 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
528 mmc_retune_needed(host->mmc);
529
530 return sdhci_suspend_host(host);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100531}
532
533static int sdhci_acpi_resume(struct device *dev)
534{
535 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
536
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300537 sdhci_acpi_byt_setting(&c->pdev->dev);
538
Adrian Hunterc4e05032012-11-23 21:17:34 +0100539 return sdhci_resume_host(c->host);
540}
541
Adrian Hunterc4e05032012-11-23 21:17:34 +0100542#endif
543
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +0100544#ifdef CONFIG_PM
Adrian Hunterc4e05032012-11-23 21:17:34 +0100545
546static int sdhci_acpi_runtime_suspend(struct device *dev)
547{
548 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200549 struct sdhci_host *host = c->host;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100550
Adrian Hunterd38dcad2017-03-20 19:50:32 +0200551 if (host->tuning_mode != SDHCI_TUNING_MODE_3)
552 mmc_retune_needed(host->mmc);
553
554 return sdhci_runtime_suspend_host(host);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100555}
556
557static int sdhci_acpi_runtime_resume(struct device *dev)
558{
559 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
560
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300561 sdhci_acpi_byt_setting(&c->pdev->dev);
562
Adrian Hunterc4e05032012-11-23 21:17:34 +0100563 return sdhci_runtime_resume_host(c->host);
564}
565
Adrian Hunterc4e05032012-11-23 21:17:34 +0100566#endif
567
568static const struct dev_pm_ops sdhci_acpi_pm_ops = {
Ulf Hanssondafed442016-07-27 10:39:52 +0200569 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
Peter Griffin1d75f742014-08-12 17:14:29 +0100570 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
Ulf Hansson9b449e92015-01-02 14:47:00 +0100571 sdhci_acpi_runtime_resume, NULL)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100572};
573
574static struct platform_driver sdhci_acpi_driver = {
575 .driver = {
576 .name = "sdhci-acpi",
Adrian Hunterc4e05032012-11-23 21:17:34 +0100577 .acpi_match_table = sdhci_acpi_ids,
578 .pm = &sdhci_acpi_pm_ops,
579 },
580 .probe = sdhci_acpi_probe,
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800581 .remove = sdhci_acpi_remove,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100582};
583
584module_platform_driver(sdhci_acpi_driver);
585
586MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
587MODULE_AUTHOR("Adrian Hunter");
588MODULE_LICENSE("GPL v2");