blob: 458ffb7637e5f902984d4727a3ada9a1251b5d56 [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>
46#include <asm/iosf_mbi.h>
47#endif
48
Adrian Hunterc4e05032012-11-23 21:17:34 +010049#include "sdhci.h"
50
51enum {
Adrian Hunter4fd44092014-03-10 15:02:42 +020052 SDHCI_ACPI_SD_CD = BIT(0),
53 SDHCI_ACPI_RUNTIME_PM = BIT(1),
54 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
Adrian Hunterc4e05032012-11-23 21:17:34 +010055};
56
57struct sdhci_acpi_chip {
58 const struct sdhci_ops *ops;
59 unsigned int quirks;
60 unsigned int quirks2;
61 unsigned long caps;
62 unsigned int caps2;
63 mmc_pm_flag_t pm_caps;
64};
65
66struct sdhci_acpi_slot {
67 const struct sdhci_acpi_chip *chip;
68 unsigned int quirks;
69 unsigned int quirks2;
70 unsigned long caps;
71 unsigned int caps2;
72 mmc_pm_flag_t pm_caps;
73 unsigned int flags;
Adrian Hunter7dafca82014-10-06 15:23:06 +030074 int (*probe_slot)(struct platform_device *, const char *, const char *);
Gao, Yunpeng578b36b2014-09-01 11:35:40 +080075 int (*remove_slot)(struct platform_device *);
Adrian Hunterc4e05032012-11-23 21:17:34 +010076};
77
78struct sdhci_acpi_host {
79 struct sdhci_host *host;
80 const struct sdhci_acpi_slot *slot;
81 struct platform_device *pdev;
82 bool use_runtime_pm;
83};
84
85static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
86{
87 return c->slot && (c->slot->flags & flag);
88}
89
Adrian Hunterb04fa062013-06-13 11:50:27 +030090static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
91{
92 u8 reg;
93
94 reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
95 reg |= 0x10;
96 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
97 /* For eMMC, minimum is 1us but give it 9us for good measure */
98 udelay(9);
99 reg &= ~0x10;
100 sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
101 /* For eMMC, minimum is 200us but give it 300us for good measure */
102 usleep_range(300, 1000);
103}
104
Adrian Hunterc4e05032012-11-23 21:17:34 +0100105static const struct sdhci_ops sdhci_acpi_ops_dflt = {
Russell King17710592014-04-25 12:58:55 +0100106 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100107 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100108 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +0100109 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100110};
111
Adrian Hunterb04fa062013-06-13 11:50:27 +0300112static const struct sdhci_ops sdhci_acpi_ops_int = {
Russell King17710592014-04-25 12:58:55 +0100113 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100114 .set_bus_width = sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100115 .reset = sdhci_reset,
Russell King96d7b782014-04-25 12:59:26 +0100116 .set_uhs_signaling = sdhci_set_uhs_signaling,
Adrian Hunterb04fa062013-06-13 11:50:27 +0300117 .hw_reset = sdhci_acpi_int_hw_reset,
118};
119
120static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
121 .ops = &sdhci_acpi_ops_int,
122};
123
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300124#ifdef CONFIG_X86
125
126static bool sdhci_acpi_byt(void)
127{
128 static const struct x86_cpu_id byt[] = {
129 { X86_VENDOR_INTEL, 6, 0x37 },
130 {}
131 };
132
133 return x86_match_cpu(byt);
134}
135
136#define BYT_IOSF_SCCEP 0x63
137#define BYT_IOSF_OCP_NETCTRL0 0x1078
138#define BYT_IOSF_OCP_TIMEOUT_BASE GENMASK(10, 8)
139
140static void sdhci_acpi_byt_setting(struct device *dev)
141{
142 u32 val = 0;
143
144 if (!sdhci_acpi_byt())
145 return;
146
147 if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
148 &val)) {
149 dev_err(dev, "%s read error\n", __func__);
150 return;
151 }
152
153 if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
154 return;
155
156 val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;
157
158 if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
159 val)) {
160 dev_err(dev, "%s write error\n", __func__);
161 return;
162 }
163
164 dev_dbg(dev, "%s completed\n", __func__);
165}
166
167static bool sdhci_acpi_byt_defer(struct device *dev)
168{
169 if (!sdhci_acpi_byt())
170 return false;
171
172 if (!iosf_mbi_available())
173 return true;
174
175 sdhci_acpi_byt_setting(dev);
176
177 return false;
178}
179
180#else
181
182static inline void sdhci_acpi_byt_setting(struct device *dev)
183{
184}
185
186static inline bool sdhci_acpi_byt_defer(struct device *dev)
187{
188 return false;
189}
190
191#endif
192
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200193static int bxt_get_cd(struct mmc_host *mmc)
194{
195 int gpio_cd = mmc_gpio_get_cd(mmc);
196 struct sdhci_host *host = mmc_priv(mmc);
197 unsigned long flags;
198 int ret = 0;
199
200 if (!gpio_cd)
201 return 0;
202
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200203 spin_lock_irqsave(&host->lock, flags);
204
205 if (host->flags & SDHCI_DEVICE_DEAD)
206 goto out;
207
208 ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
209out:
210 spin_unlock_irqrestore(&host->lock, flags);
211
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200212 return ret;
213}
214
Adrian Hunter7dafca82014-10-06 15:23:06 +0300215static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev,
216 const char *hid, const char *uid)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800217{
218 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
219 struct sdhci_host *host;
220
221 if (!c || !c->host)
222 return 0;
223
224 host = c->host;
225
Andy Shevchenko94203042015-01-12 19:37:25 +0200226 /* Platform specific code during emmc probe slot goes here */
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800227
Adrian Hunter80243792014-10-06 15:23:07 +0300228 if (hid && uid && !strcmp(hid, "80860F14") && !strcmp(uid, "1") &&
229 sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
230 sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
231 host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */
232
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800233 return 0;
234}
235
Adrian Hunter7dafca82014-10-06 15:23:06 +0300236static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev,
237 const char *hid, const char *uid)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800238{
239 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
240 struct sdhci_host *host;
241
242 if (!c || !c->host)
243 return 0;
244
245 host = c->host;
246
Andy Shevchenko94203042015-01-12 19:37:25 +0200247 /* Platform specific code during sdio probe slot goes here */
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800248
249 return 0;
250}
251
Adrian Hunter7dafca82014-10-06 15:23:06 +0300252static int sdhci_acpi_sd_probe_slot(struct platform_device *pdev,
253 const char *hid, const char *uid)
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800254{
255 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
256 struct sdhci_host *host;
257
258 if (!c || !c->host || !c->slot)
259 return 0;
260
261 host = c->host;
262
Andy Shevchenko94203042015-01-12 19:37:25 +0200263 /* Platform specific code during sd probe slot goes here */
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800264
Adrian Hunter706e86e2016-04-12 14:25:06 +0300265 if (hid && !strcmp(hid, "80865ACA")) {
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200266 host->mmc_host_ops.get_cd = bxt_get_cd;
Adrian Hunter706e86e2016-04-12 14:25:06 +0300267 host->mmc->caps |= MMC_CAP_AGGRESSIVE_PM;
268 }
Adrian Hunter6a645dd2016-02-09 16:12:38 +0200269
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800270 return 0;
271}
272
Adrian Hunter07a58882013-04-26 11:27:22 +0300273static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
Adrian Hunterb04fa062013-06-13 11:50:27 +0300274 .chip = &sdhci_acpi_chip_int,
Maurice Petallof25c3372014-07-08 19:11:01 +0800275 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
Adrian Hunter9d65cb82014-12-01 15:51:19 +0200276 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
Adrian Hunter265984b2016-05-20 10:33:48 +0300277 MMC_CAP_WAIT_WHILE_BUSY,
Adrian Hunter07a58882013-04-26 11:27:22 +0300278 .caps2 = MMC_CAP2_HC_ERASE_SZ,
279 .flags = SDHCI_ACPI_RUNTIME_PM,
Adrian Huntere1f56332014-12-01 15:51:17 +0200280 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere839b132015-10-21 11:15:46 +0300281 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
282 SDHCI_QUIRK2_STOP_WITH_TC |
283 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800284 .probe_slot = sdhci_acpi_emmc_probe_slot,
Adrian Hunter07a58882013-04-26 11:27:22 +0300285};
286
Adrian Huntere5571392012-12-10 21:18:48 +0100287static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
Adrian Huntere1f56332014-12-01 15:51:17 +0200288 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
289 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Huntere5571392012-12-10 21:18:48 +0100290 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
Adrian Hunter9d65cb82014-12-01 15:51:19 +0200291 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
Adrian Hunter265984b2016-05-20 10:33:48 +0300292 MMC_CAP_WAIT_WHILE_BUSY,
Adrian Huntere5571392012-12-10 21:18:48 +0100293 .flags = SDHCI_ACPI_RUNTIME_PM,
294 .pm_caps = MMC_PM_KEEP_POWER,
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800295 .probe_slot = sdhci_acpi_sdio_probe_slot,
Adrian Huntere5571392012-12-10 21:18:48 +0100296};
297
Adrian Hunter07a58882013-04-26 11:27:22 +0300298static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
Adrian Hunter4fd44092014-03-10 15:02:42 +0200299 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
300 SDHCI_ACPI_RUNTIME_PM,
Adrian Huntere1f56332014-12-01 15:51:17 +0200301 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
Adrian Hunter934e31b2014-09-24 10:27:28 +0300302 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
303 SDHCI_QUIRK2_STOP_WITH_TC,
Adrian Hunter265984b2016-05-20 10:33:48 +0300304 .caps = MMC_CAP_WAIT_WHILE_BUSY,
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800305 .probe_slot = sdhci_acpi_sd_probe_slot,
Adrian Hunter07a58882013-04-26 11:27:22 +0300306};
307
Philip Elcan70cce2a2016-03-03 11:38:46 -0500308static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
309 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
310 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
311 .caps = MMC_CAP_NONREMOVABLE,
312};
313
314static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
315 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
316 .caps = MMC_CAP_NONREMOVABLE,
317};
318
Adrian Hunter07a58882013-04-26 11:27:22 +0300319struct sdhci_acpi_uid_slot {
320 const char *hid;
321 const char *uid;
322 const struct sdhci_acpi_slot *slot;
323};
324
325static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
Adrian Huntere839b132015-10-21 11:15:46 +0300326 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
327 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
328 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
Adrian Hunter07a58882013-04-26 11:27:22 +0300329 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
330 { "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)
396 acpi_device_fix_up_power(child);
397
Adrian Hunterc4e05032012-11-23 21:17:34 +0100398 if (acpi_bus_get_status(device) || !device->status.present)
399 return -ENODEV;
400
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300401 if (sdhci_acpi_byt_defer(dev))
402 return -EPROBE_DEFER;
403
Adrian Hunterc4e05032012-11-23 21:17:34 +0100404 hid = acpi_device_hid(device);
Adrian Hunter3db35252014-10-06 15:23:05 +0300405 uid = device->pnp.unique_id;
Adrian Hunterc4e05032012-11-23 21:17:34 +0100406
407 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
408 if (!iomem)
409 return -ENOMEM;
410
411 len = resource_size(iomem);
412 if (len < 0x100)
413 dev_err(dev, "Invalid iomem size!\n");
414
415 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
416 return -ENOMEM;
417
418 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host));
419 if (IS_ERR(host))
420 return PTR_ERR(host);
421
422 c = sdhci_priv(host);
423 c->host = host;
Adrian Hunter3db35252014-10-06 15:23:05 +0300424 c->slot = sdhci_acpi_get_slot(hid, uid);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100425 c->pdev = pdev;
426 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
427
428 platform_set_drvdata(pdev, c);
429
430 host->hw_name = "ACPI";
431 host->ops = &sdhci_acpi_ops_dflt;
432 host->irq = platform_get_irq(pdev, 0);
433
434 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
435 resource_size(iomem));
436 if (host->ioaddr == NULL) {
437 err = -ENOMEM;
438 goto err_free;
439 }
440
Adrian Hunterc4e05032012-11-23 21:17:34 +0100441 if (c->slot) {
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800442 if (c->slot->probe_slot) {
Adrian Hunter7dafca82014-10-06 15:23:06 +0300443 err = c->slot->probe_slot(pdev, hid, uid);
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800444 if (err)
445 goto err_free;
446 }
Adrian Hunterc4e05032012-11-23 21:17:34 +0100447 if (c->slot->chip) {
448 host->ops = c->slot->chip->ops;
449 host->quirks |= c->slot->chip->quirks;
450 host->quirks2 |= c->slot->chip->quirks2;
451 host->mmc->caps |= c->slot->chip->caps;
452 host->mmc->caps2 |= c->slot->chip->caps2;
453 host->mmc->pm_caps |= c->slot->chip->pm_caps;
454 }
455 host->quirks |= c->slot->quirks;
456 host->quirks2 |= c->slot->quirks2;
457 host->mmc->caps |= c->slot->caps;
458 host->mmc->caps2 |= c->slot->caps2;
459 host->mmc->pm_caps |= c->slot->pm_caps;
460 }
461
Adrian Hunter0d3e3352013-04-04 16:41:06 +0300462 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
463
Adrian Hunter4fd44092014-03-10 15:02:42 +0200464 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
465 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
466
Linus Walleij89168b42014-10-02 09:08:46 +0200467 if (mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0, NULL)) {
Adrian Hunter4fd44092014-03-10 15:02:42 +0200468 dev_warn(dev, "failed to setup card detect gpio\n");
469 c->use_runtime_pm = false;
470 }
471 }
472
Adrian Hunterc4e05032012-11-23 21:17:34 +0100473 err = sdhci_add_host(host);
474 if (err)
475 goto err_free;
476
477 if (c->use_runtime_pm) {
Adrian Hunter1d1ff452013-04-26 11:27:21 +0300478 pm_runtime_set_active(dev);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100479 pm_suspend_ignore_children(dev, 1);
480 pm_runtime_set_autosuspend_delay(dev, 50);
481 pm_runtime_use_autosuspend(dev);
482 pm_runtime_enable(dev);
483 }
484
Fu, Zhonghui4e6a2ef2016-01-22 12:35:26 +0800485 device_enable_async_suspend(dev);
486
Adrian Hunterc4e05032012-11-23 21:17:34 +0100487 return 0;
488
489err_free:
Adrian Hunterc4e05032012-11-23 21:17:34 +0100490 sdhci_free_host(c->host);
491 return err;
492}
493
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800494static int sdhci_acpi_remove(struct platform_device *pdev)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100495{
496 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
497 struct device *dev = &pdev->dev;
498 int dead;
499
500 if (c->use_runtime_pm) {
501 pm_runtime_get_sync(dev);
502 pm_runtime_disable(dev);
503 pm_runtime_put_noidle(dev);
504 }
505
Gao, Yunpeng578b36b2014-09-01 11:35:40 +0800506 if (c->slot && c->slot->remove_slot)
507 c->slot->remove_slot(pdev);
508
Adrian Hunterc4e05032012-11-23 21:17:34 +0100509 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
510 sdhci_remove_host(c->host, dead);
Adrian Hunterc4e05032012-11-23 21:17:34 +0100511 sdhci_free_host(c->host);
512
513 return 0;
514}
515
516#ifdef CONFIG_PM_SLEEP
517
518static int sdhci_acpi_suspend(struct device *dev)
519{
520 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
521
522 return sdhci_suspend_host(c->host);
523}
524
525static int sdhci_acpi_resume(struct device *dev)
526{
527 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
528
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300529 sdhci_acpi_byt_setting(&c->pdev->dev);
530
Adrian Hunterc4e05032012-11-23 21:17:34 +0100531 return sdhci_resume_host(c->host);
532}
533
534#else
535
536#define sdhci_acpi_suspend NULL
537#define sdhci_acpi_resume NULL
538
539#endif
540
Rafael J. Wysocki162d6f92014-12-05 03:05:33 +0100541#ifdef CONFIG_PM
Adrian Hunterc4e05032012-11-23 21:17:34 +0100542
543static int sdhci_acpi_runtime_suspend(struct device *dev)
544{
545 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
546
547 return sdhci_runtime_suspend_host(c->host);
548}
549
550static int sdhci_acpi_runtime_resume(struct device *dev)
551{
552 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
553
Adrian Hunter6e1c7d62016-04-15 14:06:57 +0300554 sdhci_acpi_byt_setting(&c->pdev->dev);
555
Adrian Hunterc4e05032012-11-23 21:17:34 +0100556 return sdhci_runtime_resume_host(c->host);
557}
558
Adrian Hunterc4e05032012-11-23 21:17:34 +0100559#endif
560
561static const struct dev_pm_ops sdhci_acpi_pm_ops = {
562 .suspend = sdhci_acpi_suspend,
563 .resume = sdhci_acpi_resume,
Peter Griffin1d75f742014-08-12 17:14:29 +0100564 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
Ulf Hansson9b449e92015-01-02 14:47:00 +0100565 sdhci_acpi_runtime_resume, NULL)
Adrian Hunterc4e05032012-11-23 21:17:34 +0100566};
567
568static struct platform_driver sdhci_acpi_driver = {
569 .driver = {
570 .name = "sdhci-acpi",
Adrian Hunterc4e05032012-11-23 21:17:34 +0100571 .acpi_match_table = sdhci_acpi_ids,
572 .pm = &sdhci_acpi_pm_ops,
573 },
574 .probe = sdhci_acpi_probe,
Greg Kroah-Hartman4e608e42012-12-21 15:05:47 -0800575 .remove = sdhci_acpi_remove,
Adrian Hunterc4e05032012-11-23 21:17:34 +0100576};
577
578module_platform_driver(sdhci_acpi_driver);
579
580MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
581MODULE_AUTHOR("Adrian Hunter");
582MODULE_LICENSE("GPL v2");