Merge tag 'ceph-for-4.10-rc1' of git://github.com/ceph/ceph-client
[linux-2.6-block.git] / drivers / mmc / host / sdhci-acpi.c
CommitLineData
c4e05037
AH
1/*
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>
b04fa064 38#include <linux/delay.h>
c4e05037
AH
39
40#include <linux/mmc/host.h>
41#include <linux/mmc/pm.h>
4fd4409c 42#include <linux/mmc/slot-gpio.h>
c4e05037 43
6e1c7d61
AH
44#ifdef CONFIG_X86
45#include <asm/cpu_device_id.h>
8ba4cb53 46#include <asm/intel-family.h>
6e1c7d61
AH
47#include <asm/iosf_mbi.h>
48#endif
49
c4e05037
AH
50#include "sdhci.h"
51
52enum {
4fd4409c
AH
53 SDHCI_ACPI_SD_CD = BIT(0),
54 SDHCI_ACPI_RUNTIME_PM = BIT(1),
55 SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL = BIT(2),
c4e05037
AH
56};
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;
7dafca83 75 int (*probe_slot)(struct platform_device *, const char *, const char *);
578b36b6 76 int (*remove_slot)(struct platform_device *);
c4e05037
AH
77};
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
b04fa064
AH
91static 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
c4e05037 106static const struct sdhci_ops sdhci_acpi_ops_dflt = {
1771059c 107 .set_clock = sdhci_set_clock,
2317f56c 108 .set_bus_width = sdhci_set_bus_width,
03231f9b 109 .reset = sdhci_reset,
96d7b78c 110 .set_uhs_signaling = sdhci_set_uhs_signaling,
c4e05037
AH
111};
112
b04fa064 113static const struct sdhci_ops sdhci_acpi_ops_int = {
1771059c 114 .set_clock = sdhci_set_clock,
2317f56c 115 .set_bus_width = sdhci_set_bus_width,
03231f9b 116 .reset = sdhci_reset,
96d7b78c 117 .set_uhs_signaling = sdhci_set_uhs_signaling,
b04fa064
AH
118 .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
6e1c7d61
AH
125#ifdef CONFIG_X86
126
127static bool sdhci_acpi_byt(void)
128{
129 static const struct x86_cpu_id byt[] = {
8ba4cb53 130 { X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_SILVERMONT1 },
6e1c7d61
AH
131 {}
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
6a645dd8
AH
194static 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
6a645dd8
AH
204 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
6a645dd8
AH
213 return ret;
214}
215
7dafca83
AH
216static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev,
217 const char *hid, const char *uid)
578b36b6
GY
218{
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
94203042 227 /* Platform specific code during emmc probe slot goes here */
578b36b6 228
8024379e
AH
229 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
578b36b6
GY
234 return 0;
235}
236
7dafca83
AH
237static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev,
238 const char *hid, const char *uid)
578b36b6
GY
239{
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
94203042 248 /* Platform specific code during sdio probe slot goes here */
578b36b6
GY
249
250 return 0;
251}
252
7dafca83
AH
253static int sdhci_acpi_sd_probe_slot(struct platform_device *pdev,
254 const char *hid, const char *uid)
578b36b6
GY
255{
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
94203042 264 /* Platform specific code during sd probe slot goes here */
578b36b6 265
706e86e9 266 if (hid && !strcmp(hid, "80865ACA")) {
6a645dd8 267 host->mmc_host_ops.get_cd = bxt_get_cd;
706e86e9
AH
268 host->mmc->caps |= MMC_CAP_AGGRESSIVE_PM;
269 }
6a645dd8 270
578b36b6
GY
271 return 0;
272}
273
07a58883 274static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
b04fa064 275 .chip = &sdhci_acpi_chip_int,
f25c3372 276 .caps = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
9d65cb88 277 MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
c80f275f 278 MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
07a58883
AH
279 .caps2 = MMC_CAP2_HC_ERASE_SZ,
280 .flags = SDHCI_ACPI_RUNTIME_PM,
e1f5633a 281 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
e839b134
AH
282 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
283 SDHCI_QUIRK2_STOP_WITH_TC |
284 SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
578b36b6 285 .probe_slot = sdhci_acpi_emmc_probe_slot,
07a58883
AH
286};
287
e5571397 288static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
e1f5633a
AH
289 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
290 SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
e5571397 291 .quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
9d65cb88 292 .caps = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
265984b3 293 MMC_CAP_WAIT_WHILE_BUSY,
e5571397
AH
294 .flags = SDHCI_ACPI_RUNTIME_PM,
295 .pm_caps = MMC_PM_KEEP_POWER,
578b36b6 296 .probe_slot = sdhci_acpi_sdio_probe_slot,
e5571397
AH
297};
298
07a58883 299static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
4fd4409c
AH
300 .flags = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
301 SDHCI_ACPI_RUNTIME_PM,
e1f5633a 302 .quirks = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
934e31b9
AH
303 .quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
304 SDHCI_QUIRK2_STOP_WITH_TC,
265984b3 305 .caps = MMC_CAP_WAIT_WHILE_BUSY,
578b36b6 306 .probe_slot = sdhci_acpi_sd_probe_slot,
07a58883
AH
307};
308
70cce2af
PE
309static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
310 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
311 .quirks2 = SDHCI_QUIRK2_NO_1_8_V,
312 .caps = MMC_CAP_NONREMOVABLE,
313};
314
315static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
316 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
317 .caps = MMC_CAP_NONREMOVABLE,
318};
319
07a58883
AH
320struct sdhci_acpi_uid_slot {
321 const char *hid;
322 const char *uid;
323 const struct sdhci_acpi_slot *slot;
324};
325
326static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
e839b134
AH
327 { "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
328 { "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
329 { "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
07a58883 330 { "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
db52d4f8 331 { "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
07a58883 332 { "80860F14" , "3" , &sdhci_acpi_slot_int_sd },
aad95dc4 333 { "80860F16" , NULL, &sdhci_acpi_slot_int_sd },
07a58883 334 { "INT33BB" , "2" , &sdhci_acpi_slot_int_sdio },
7147eaf3 335 { "INT33BB" , "3" , &sdhci_acpi_slot_int_sd },
07a58883 336 { "INT33C6" , NULL, &sdhci_acpi_slot_int_sdio },
07c001c1 337 { "INT3436" , NULL, &sdhci_acpi_slot_int_sdio },
d0ed8e6b 338 { "INT344D" , NULL, &sdhci_acpi_slot_int_sdio },
0cd2f044 339 { "PNP0FFF" , "3" , &sdhci_acpi_slot_int_sd },
07a58883 340 { "PNP0D40" },
70cce2af
PE
341 { "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
342 { "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
07a58883
AH
343 { },
344};
345
c4e05037 346static const struct acpi_device_id sdhci_acpi_ids[] = {
e839b134
AH
347 { "80865ACA" },
348 { "80865ACC" },
349 { "80865AD0" },
07a58883 350 { "80860F14" },
aad95dc4 351 { "80860F16" },
07a58883
AH
352 { "INT33BB" },
353 { "INT33C6" },
07c001c1 354 { "INT3436" },
d0ed8e6b 355 { "INT344D" },
07a58883 356 { "PNP0D40" },
70cce2af
PE
357 { "QCOM8051" },
358 { "QCOM8052" },
c4e05037
AH
359 { },
360};
361MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);
362
3db35251
AH
363static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid,
364 const char *uid)
c4e05037 365{
07a58883
AH
366 const struct sdhci_acpi_uid_slot *u;
367
368 for (u = sdhci_acpi_uids; u->hid; u++) {
369 if (strcmp(u->hid, hid))
370 continue;
371 if (!u->uid)
372 return u->slot;
373 if (uid && !strcmp(u->uid, uid))
374 return u->slot;
375 }
c4e05037
AH
376 return NULL;
377}
378
4e608e4e 379static int sdhci_acpi_probe(struct platform_device *pdev)
c4e05037
AH
380{
381 struct device *dev = &pdev->dev;
382 acpi_handle handle = ACPI_HANDLE(dev);
e5bbf307 383 struct acpi_device *device, *child;
c4e05037
AH
384 struct sdhci_acpi_host *c;
385 struct sdhci_host *host;
386 struct resource *iomem;
387 resource_size_t len;
388 const char *hid;
3db35251 389 const char *uid;
87875655 390 int err;
c4e05037
AH
391
392 if (acpi_bus_get_device(handle, &device))
393 return -ENODEV;
394
e5bbf307
AH
395 /* Power on the SDHCI controller and its children */
396 acpi_device_fix_up_power(device);
397 list_for_each_entry(child, &device->children, node)
398 acpi_device_fix_up_power(child);
399
c4e05037
AH
400 if (acpi_bus_get_status(device) || !device->status.present)
401 return -ENODEV;
402
6e1c7d61
AH
403 if (sdhci_acpi_byt_defer(dev))
404 return -EPROBE_DEFER;
405
c4e05037 406 hid = acpi_device_hid(device);
3db35251 407 uid = device->pnp.unique_id;
c4e05037
AH
408
409 iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
410 if (!iomem)
411 return -ENOMEM;
412
413 len = resource_size(iomem);
414 if (len < 0x100)
415 dev_err(dev, "Invalid iomem size!\n");
416
417 if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
418 return -ENOMEM;
419
420 host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host));
421 if (IS_ERR(host))
422 return PTR_ERR(host);
423
424 c = sdhci_priv(host);
425 c->host = host;
3db35251 426 c->slot = sdhci_acpi_get_slot(hid, uid);
c4e05037
AH
427 c->pdev = pdev;
428 c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);
429
430 platform_set_drvdata(pdev, c);
431
432 host->hw_name = "ACPI";
433 host->ops = &sdhci_acpi_ops_dflt;
434 host->irq = platform_get_irq(pdev, 0);
435
436 host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
437 resource_size(iomem));
438 if (host->ioaddr == NULL) {
439 err = -ENOMEM;
440 goto err_free;
441 }
442
c4e05037 443 if (c->slot) {
578b36b6 444 if (c->slot->probe_slot) {
7dafca83 445 err = c->slot->probe_slot(pdev, hid, uid);
578b36b6
GY
446 if (err)
447 goto err_free;
448 }
c4e05037
AH
449 if (c->slot->chip) {
450 host->ops = c->slot->chip->ops;
451 host->quirks |= c->slot->chip->quirks;
452 host->quirks2 |= c->slot->chip->quirks2;
453 host->mmc->caps |= c->slot->chip->caps;
454 host->mmc->caps2 |= c->slot->chip->caps2;
455 host->mmc->pm_caps |= c->slot->chip->pm_caps;
456 }
457 host->quirks |= c->slot->quirks;
458 host->quirks2 |= c->slot->quirks2;
459 host->mmc->caps |= c->slot->caps;
460 host->mmc->caps2 |= c->slot->caps2;
461 host->mmc->pm_caps |= c->slot->pm_caps;
462 }
463
0d3e3350
AH
464 host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;
465
a61abe6e 466 if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
4fd4409c
AH
467 bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);
468
89168b48 469 if (mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0, NULL)) {
4fd4409c 470 dev_warn(dev, "failed to setup card detect gpio\n");
a61abe6e 471 c->use_runtime_pm = false;
4fd4409c 472 }
a61abe6e
AH
473 }
474
4fd4409c
AH
475 err = sdhci_add_host(host);
476 if (err)
477 goto err_free;
478
c4e05037 479 if (c->use_runtime_pm) {
1d1ff458 480 pm_runtime_set_active(dev);
c4e05037
AH
481 pm_suspend_ignore_children(dev, 1);
482 pm_runtime_set_autosuspend_delay(dev, 50);
483 pm_runtime_use_autosuspend(dev);
484 pm_runtime_enable(dev);
485 }
486
4e6a2ef9
FZ
487 device_enable_async_suspend(dev);
488
c4e05037
AH
489 return 0;
490
491err_free:
c4e05037
AH
492 sdhci_free_host(c->host);
493 return err;
494}
495
4e608e4e 496static int sdhci_acpi_remove(struct platform_device *pdev)
c4e05037
AH
497{
498 struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
499 struct device *dev = &pdev->dev;
500 int dead;
501
502 if (c->use_runtime_pm) {
503 pm_runtime_get_sync(dev);
504 pm_runtime_disable(dev);
505 pm_runtime_put_noidle(dev);
506 }
507
578b36b6
GY
508 if (c->slot && c->slot->remove_slot)
509 c->slot->remove_slot(pdev);
510
c4e05037
AH
511 dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
512 sdhci_remove_host(c->host, dead);
c4e05037
AH
513 sdhci_free_host(c->host);
514
515 return 0;
516}
517
518#ifdef CONFIG_PM_SLEEP
519
520static int sdhci_acpi_suspend(struct device *dev)
521{
522 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
523
524 return sdhci_suspend_host(c->host);
525}
526
527static int sdhci_acpi_resume(struct device *dev)
528{
529 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
530
6e1c7d61
AH
531 sdhci_acpi_byt_setting(&c->pdev->dev);
532
c4e05037
AH
533 return sdhci_resume_host(c->host);
534}
535
c4e05037
AH
536#endif
537
162d6f98 538#ifdef CONFIG_PM
c4e05037
AH
539
540static int sdhci_acpi_runtime_suspend(struct device *dev)
541{
542 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
543
544 return sdhci_runtime_suspend_host(c->host);
545}
546
547static int sdhci_acpi_runtime_resume(struct device *dev)
548{
549 struct sdhci_acpi_host *c = dev_get_drvdata(dev);
550
6e1c7d61
AH
551 sdhci_acpi_byt_setting(&c->pdev->dev);
552
c4e05037
AH
553 return sdhci_runtime_resume_host(c->host);
554}
555
c4e05037
AH
556#endif
557
558static const struct dev_pm_ops sdhci_acpi_pm_ops = {
dafed447 559 SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
1d75f74b 560 SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
9b449e99 561 sdhci_acpi_runtime_resume, NULL)
c4e05037
AH
562};
563
564static struct platform_driver sdhci_acpi_driver = {
565 .driver = {
566 .name = "sdhci-acpi",
c4e05037
AH
567 .acpi_match_table = sdhci_acpi_ids,
568 .pm = &sdhci_acpi_pm_ops,
569 },
570 .probe = sdhci_acpi_probe,
4e608e4e 571 .remove = sdhci_acpi_remove,
c4e05037
AH
572};
573
574module_platform_driver(sdhci_acpi_driver);
575
576MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
577MODULE_AUTHOR("Adrian Hunter");
578MODULE_LICENSE("GPL v2");