sdhci-acpi.c 13.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
/*
 * Secure Digital Host Controller Interface ACPI driver.
 *
 * Copyright (c) 2012, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */

#include <linux/init.h>
#include <linux/export.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/ioport.h>
#include <linux/io.h>
#include <linux/dma-mapping.h>
#include <linux/compiler.h>
#include <linux/stddef.h>
#include <linux/bitops.h>
#include <linux/types.h>
#include <linux/err.h>
#include <linux/interrupt.h>
#include <linux/acpi.h>
#include <linux/pm.h>
#include <linux/pm_runtime.h>
38
#include <linux/delay.h>
39 40 41

#include <linux/mmc/host.h>
#include <linux/mmc/pm.h>
42
#include <linux/mmc/slot-gpio.h>
43

44 45
#ifdef CONFIG_X86
#include <asm/cpu_device_id.h>
46
#include <asm/intel-family.h>
47 48 49
#include <asm/iosf_mbi.h>
#endif

50 51 52
#include "sdhci.h"

enum {
53 54 55
	SDHCI_ACPI_SD_CD		= BIT(0),
	SDHCI_ACPI_RUNTIME_PM		= BIT(1),
	SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL	= BIT(2),
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
};

struct sdhci_acpi_chip {
	const struct	sdhci_ops *ops;
	unsigned int	quirks;
	unsigned int	quirks2;
	unsigned long	caps;
	unsigned int	caps2;
	mmc_pm_flag_t	pm_caps;
};

struct sdhci_acpi_slot {
	const struct	sdhci_acpi_chip *chip;
	unsigned int	quirks;
	unsigned int	quirks2;
	unsigned long	caps;
	unsigned int	caps2;
	mmc_pm_flag_t	pm_caps;
	unsigned int	flags;
75
	int (*probe_slot)(struct platform_device *, const char *, const char *);
76
	int (*remove_slot)(struct platform_device *);
77 78 79 80 81 82 83 84 85 86 87 88 89 90
};

struct sdhci_acpi_host {
	struct sdhci_host		*host;
	const struct sdhci_acpi_slot	*slot;
	struct platform_device		*pdev;
	bool				use_runtime_pm;
};

static inline bool sdhci_acpi_flag(struct sdhci_acpi_host *c, unsigned int flag)
{
	return c->slot && (c->slot->flags & flag);
}

91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
static void sdhci_acpi_int_hw_reset(struct sdhci_host *host)
{
	u8 reg;

	reg = sdhci_readb(host, SDHCI_POWER_CONTROL);
	reg |= 0x10;
	sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
	/* For eMMC, minimum is 1us but give it 9us for good measure */
	udelay(9);
	reg &= ~0x10;
	sdhci_writeb(host, reg, SDHCI_POWER_CONTROL);
	/* For eMMC, minimum is 200us but give it 300us for good measure */
	usleep_range(300, 1000);
}

106
static const struct sdhci_ops sdhci_acpi_ops_dflt = {
107
	.set_clock = sdhci_set_clock,
108
	.set_bus_width = sdhci_set_bus_width,
109
	.reset = sdhci_reset,
110
	.set_uhs_signaling = sdhci_set_uhs_signaling,
111 112
};

113
static const struct sdhci_ops sdhci_acpi_ops_int = {
114
	.set_clock = sdhci_set_clock,
115
	.set_bus_width = sdhci_set_bus_width,
116
	.reset = sdhci_reset,
117
	.set_uhs_signaling = sdhci_set_uhs_signaling,
118 119 120 121 122 123 124
	.hw_reset   = sdhci_acpi_int_hw_reset,
};

static const struct sdhci_acpi_chip sdhci_acpi_chip_int = {
	.ops = &sdhci_acpi_ops_int,
};

125 126 127 128 129
#ifdef CONFIG_X86

static bool sdhci_acpi_byt(void)
{
	static const struct x86_cpu_id byt[] = {
130
		{ X86_VENDOR_INTEL, 6, INTEL_FAM6_ATOM_SILVERMONT1 },
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
		{}
	};

	return x86_match_cpu(byt);
}

#define BYT_IOSF_SCCEP			0x63
#define BYT_IOSF_OCP_NETCTRL0		0x1078
#define BYT_IOSF_OCP_TIMEOUT_BASE	GENMASK(10, 8)

static void sdhci_acpi_byt_setting(struct device *dev)
{
	u32 val = 0;

	if (!sdhci_acpi_byt())
		return;

	if (iosf_mbi_read(BYT_IOSF_SCCEP, MBI_CR_READ, BYT_IOSF_OCP_NETCTRL0,
			  &val)) {
		dev_err(dev, "%s read error\n", __func__);
		return;
	}

	if (!(val & BYT_IOSF_OCP_TIMEOUT_BASE))
		return;

	val &= ~BYT_IOSF_OCP_TIMEOUT_BASE;

	if (iosf_mbi_write(BYT_IOSF_SCCEP, MBI_CR_WRITE, BYT_IOSF_OCP_NETCTRL0,
			   val)) {
		dev_err(dev, "%s write error\n", __func__);
		return;
	}

	dev_dbg(dev, "%s completed\n", __func__);
}

static bool sdhci_acpi_byt_defer(struct device *dev)
{
	if (!sdhci_acpi_byt())
		return false;

	if (!iosf_mbi_available())
		return true;

	sdhci_acpi_byt_setting(dev);

	return false;
}

#else

static inline void sdhci_acpi_byt_setting(struct device *dev)
{
}

static inline bool sdhci_acpi_byt_defer(struct device *dev)
{
	return false;
}

#endif

194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
static int bxt_get_cd(struct mmc_host *mmc)
{
	int gpio_cd = mmc_gpio_get_cd(mmc);
	struct sdhci_host *host = mmc_priv(mmc);
	unsigned long flags;
	int ret = 0;

	if (!gpio_cd)
		return 0;

	spin_lock_irqsave(&host->lock, flags);

	if (host->flags & SDHCI_DEVICE_DEAD)
		goto out;

	ret = !!(sdhci_readl(host, SDHCI_PRESENT_STATE) & SDHCI_CARD_PRESENT);
out:
	spin_unlock_irqrestore(&host->lock, flags);

	return ret;
}

216 217
static int sdhci_acpi_emmc_probe_slot(struct platform_device *pdev,
				      const char *hid, const char *uid)
218 219 220 221 222 223 224 225 226
{
	struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
	struct sdhci_host *host;

	if (!c || !c->host)
		return 0;

	host = c->host;

227
	/* Platform specific code during emmc probe slot goes here */
228

229 230 231 232 233
	if (hid && uid && !strcmp(hid, "80860F14") && !strcmp(uid, "1") &&
	    sdhci_readl(host, SDHCI_CAPABILITIES) == 0x446cc8b2 &&
	    sdhci_readl(host, SDHCI_CAPABILITIES_1) == 0x00000807)
		host->timeout_clk = 1000; /* 1000 kHz i.e. 1 MHz */

234 235 236
	return 0;
}

237 238
static int sdhci_acpi_sdio_probe_slot(struct platform_device *pdev,
				      const char *hid, const char *uid)
239 240 241 242 243 244 245 246 247
{
	struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
	struct sdhci_host *host;

	if (!c || !c->host)
		return 0;

	host = c->host;

248
	/* Platform specific code during sdio probe slot goes here */
249 250 251 252

	return 0;
}

253 254
static int sdhci_acpi_sd_probe_slot(struct platform_device *pdev,
				    const char *hid, const char *uid)
255 256 257 258 259 260 261 262 263
{
	struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
	struct sdhci_host *host;

	if (!c || !c->host || !c->slot)
		return 0;

	host = c->host;

264
	/* Platform specific code during sd probe slot goes here */
265

266
	if (hid && !strcmp(hid, "80865ACA")) {
267
		host->mmc_host_ops.get_cd = bxt_get_cd;
268 269
		host->mmc->caps |= MMC_CAP_AGGRESSIVE_PM;
	}
270

271 272 273
	return 0;
}

274
static const struct sdhci_acpi_slot sdhci_acpi_slot_int_emmc = {
275
	.chip    = &sdhci_acpi_chip_int,
276
	.caps    = MMC_CAP_8_BIT_DATA | MMC_CAP_NONREMOVABLE |
277
		   MMC_CAP_HW_RESET | MMC_CAP_1_8V_DDR |
278
		   MMC_CAP_CMD_DURING_TFR | MMC_CAP_WAIT_WHILE_BUSY,
279 280
	.caps2   = MMC_CAP2_HC_ERASE_SZ,
	.flags   = SDHCI_ACPI_RUNTIME_PM,
281
	.quirks  = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
282 283 284
	.quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
		   SDHCI_QUIRK2_STOP_WITH_TC |
		   SDHCI_QUIRK2_CAPS_BIT63_FOR_HS400,
285
	.probe_slot	= sdhci_acpi_emmc_probe_slot,
286 287
};

288
static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sdio = {
289 290
	.quirks  = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
		   SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
291
	.quirks2 = SDHCI_QUIRK2_HOST_OFF_CARD_ON,
292
	.caps    = MMC_CAP_NONREMOVABLE | MMC_CAP_POWER_OFF_CARD |
293
		   MMC_CAP_WAIT_WHILE_BUSY,
294 295
	.flags   = SDHCI_ACPI_RUNTIME_PM,
	.pm_caps = MMC_PM_KEEP_POWER,
296
	.probe_slot	= sdhci_acpi_sdio_probe_slot,
297 298
};

299
static const struct sdhci_acpi_slot sdhci_acpi_slot_int_sd = {
300 301
	.flags   = SDHCI_ACPI_SD_CD | SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL |
		   SDHCI_ACPI_RUNTIME_PM,
302
	.quirks  = SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC,
303 304
	.quirks2 = SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON |
		   SDHCI_QUIRK2_STOP_WITH_TC,
305
	.caps    = MMC_CAP_WAIT_WHILE_BUSY,
306
	.probe_slot	= sdhci_acpi_sd_probe_slot,
307 308
};

309 310 311 312 313 314 315 316 317 318 319
static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd_3v = {
	.quirks  = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
	.quirks2 = SDHCI_QUIRK2_NO_1_8_V,
	.caps    = MMC_CAP_NONREMOVABLE,
};

static const struct sdhci_acpi_slot sdhci_acpi_slot_qcom_sd = {
	.quirks  = SDHCI_QUIRK_BROKEN_CARD_DETECTION,
	.caps    = MMC_CAP_NONREMOVABLE,
};

320 321 322 323 324 325 326
struct sdhci_acpi_uid_slot {
	const char *hid;
	const char *uid;
	const struct sdhci_acpi_slot *slot;
};

static const struct sdhci_acpi_uid_slot sdhci_acpi_uids[] = {
327 328 329
	{ "80865ACA", NULL, &sdhci_acpi_slot_int_sd },
	{ "80865ACC", NULL, &sdhci_acpi_slot_int_emmc },
	{ "80865AD0", NULL, &sdhci_acpi_slot_int_sdio },
330
	{ "80860F14" , "1" , &sdhci_acpi_slot_int_emmc },
331
	{ "80860F14" , "2" , &sdhci_acpi_slot_int_sdio },
332
	{ "80860F14" , "3" , &sdhci_acpi_slot_int_sd   },
333
	{ "80860F16" , NULL, &sdhci_acpi_slot_int_sd   },
334
	{ "INT33BB"  , "2" , &sdhci_acpi_slot_int_sdio },
335
	{ "INT33BB"  , "3" , &sdhci_acpi_slot_int_sd },
336
	{ "INT33C6"  , NULL, &sdhci_acpi_slot_int_sdio },
337
	{ "INT3436"  , NULL, &sdhci_acpi_slot_int_sdio },
338
	{ "INT344D"  , NULL, &sdhci_acpi_slot_int_sdio },
339
	{ "PNP0FFF"  , "3" , &sdhci_acpi_slot_int_sd   },
340
	{ "PNP0D40"  },
341 342
	{ "QCOM8051", NULL, &sdhci_acpi_slot_qcom_sd_3v },
	{ "QCOM8052", NULL, &sdhci_acpi_slot_qcom_sd },
343 344 345
	{ },
};

346
static const struct acpi_device_id sdhci_acpi_ids[] = {
347 348 349
	{ "80865ACA" },
	{ "80865ACC" },
	{ "80865AD0" },
350
	{ "80860F14" },
351
	{ "80860F16" },
352 353
	{ "INT33BB"  },
	{ "INT33C6"  },
354
	{ "INT3436"  },
355
	{ "INT344D"  },
356
	{ "PNP0D40"  },
357 358
	{ "QCOM8051" },
	{ "QCOM8052" },
359 360 361 362
	{ },
};
MODULE_DEVICE_TABLE(acpi, sdhci_acpi_ids);

363 364
static const struct sdhci_acpi_slot *sdhci_acpi_get_slot(const char *hid,
							 const char *uid)
365
{
366 367 368 369 370 371 372 373 374 375
	const struct sdhci_acpi_uid_slot *u;

	for (u = sdhci_acpi_uids; u->hid; u++) {
		if (strcmp(u->hid, hid))
			continue;
		if (!u->uid)
			return u->slot;
		if (uid && !strcmp(u->uid, uid))
			return u->slot;
	}
376 377 378
	return NULL;
}

379
static int sdhci_acpi_probe(struct platform_device *pdev)
380 381 382
{
	struct device *dev = &pdev->dev;
	acpi_handle handle = ACPI_HANDLE(dev);
383
	struct acpi_device *device, *child;
384 385 386 387 388
	struct sdhci_acpi_host *c;
	struct sdhci_host *host;
	struct resource *iomem;
	resource_size_t len;
	const char *hid;
389
	const char *uid;
390
	int err;
391 392 393 394

	if (acpi_bus_get_device(handle, &device))
		return -ENODEV;

395 396 397 398 399
	/* Power on the SDHCI controller and its children */
	acpi_device_fix_up_power(device);
	list_for_each_entry(child, &device->children, node)
		acpi_device_fix_up_power(child);

400 401 402
	if (acpi_bus_get_status(device) || !device->status.present)
		return -ENODEV;

403 404 405
	if (sdhci_acpi_byt_defer(dev))
		return -EPROBE_DEFER;

406
	hid = acpi_device_hid(device);
407
	uid = device->pnp.unique_id;
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425

	iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!iomem)
		return -ENOMEM;

	len = resource_size(iomem);
	if (len < 0x100)
		dev_err(dev, "Invalid iomem size!\n");

	if (!devm_request_mem_region(dev, iomem->start, len, dev_name(dev)))
		return -ENOMEM;

	host = sdhci_alloc_host(dev, sizeof(struct sdhci_acpi_host));
	if (IS_ERR(host))
		return PTR_ERR(host);

	c = sdhci_priv(host);
	c->host = host;
426
	c->slot = sdhci_acpi_get_slot(hid, uid);
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
	c->pdev = pdev;
	c->use_runtime_pm = sdhci_acpi_flag(c, SDHCI_ACPI_RUNTIME_PM);

	platform_set_drvdata(pdev, c);

	host->hw_name	= "ACPI";
	host->ops	= &sdhci_acpi_ops_dflt;
	host->irq	= platform_get_irq(pdev, 0);

	host->ioaddr = devm_ioremap_nocache(dev, iomem->start,
					    resource_size(iomem));
	if (host->ioaddr == NULL) {
		err = -ENOMEM;
		goto err_free;
	}

	if (c->slot) {
444
		if (c->slot->probe_slot) {
445
			err = c->slot->probe_slot(pdev, hid, uid);
446 447 448
			if (err)
				goto err_free;
		}
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
		if (c->slot->chip) {
			host->ops            = c->slot->chip->ops;
			host->quirks        |= c->slot->chip->quirks;
			host->quirks2       |= c->slot->chip->quirks2;
			host->mmc->caps     |= c->slot->chip->caps;
			host->mmc->caps2    |= c->slot->chip->caps2;
			host->mmc->pm_caps  |= c->slot->chip->pm_caps;
		}
		host->quirks        |= c->slot->quirks;
		host->quirks2       |= c->slot->quirks2;
		host->mmc->caps     |= c->slot->caps;
		host->mmc->caps2    |= c->slot->caps2;
		host->mmc->pm_caps  |= c->slot->pm_caps;
	}

464 465
	host->mmc->caps2 |= MMC_CAP2_NO_PRESCAN_POWERUP;

466
	if (sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD)) {
467 468
		bool v = sdhci_acpi_flag(c, SDHCI_ACPI_SD_CD_OVERRIDE_LEVEL);

469
		if (mmc_gpiod_request_cd(host->mmc, NULL, 0, v, 0, NULL)) {
470
			dev_warn(dev, "failed to setup card detect gpio\n");
471
			c->use_runtime_pm = false;
472
		}
473 474
	}

475 476 477 478
	err = sdhci_add_host(host);
	if (err)
		goto err_free;

479
	if (c->use_runtime_pm) {
480
		pm_runtime_set_active(dev);
481 482 483 484 485 486
		pm_suspend_ignore_children(dev, 1);
		pm_runtime_set_autosuspend_delay(dev, 50);
		pm_runtime_use_autosuspend(dev);
		pm_runtime_enable(dev);
	}

487 488
	device_enable_async_suspend(dev);

489 490 491 492 493 494 495
	return 0;

err_free:
	sdhci_free_host(c->host);
	return err;
}

496
static int sdhci_acpi_remove(struct platform_device *pdev)
497 498 499 500 501 502 503 504 505 506 507
{
	struct sdhci_acpi_host *c = platform_get_drvdata(pdev);
	struct device *dev = &pdev->dev;
	int dead;

	if (c->use_runtime_pm) {
		pm_runtime_get_sync(dev);
		pm_runtime_disable(dev);
		pm_runtime_put_noidle(dev);
	}

508 509 510
	if (c->slot && c->slot->remove_slot)
		c->slot->remove_slot(pdev);

511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
	dead = (sdhci_readl(c->host, SDHCI_INT_STATUS) == ~0);
	sdhci_remove_host(c->host, dead);
	sdhci_free_host(c->host);

	return 0;
}

#ifdef CONFIG_PM_SLEEP

static int sdhci_acpi_suspend(struct device *dev)
{
	struct sdhci_acpi_host *c = dev_get_drvdata(dev);

	return sdhci_suspend_host(c->host);
}

static int sdhci_acpi_resume(struct device *dev)
{
	struct sdhci_acpi_host *c = dev_get_drvdata(dev);

531 532
	sdhci_acpi_byt_setting(&c->pdev->dev);

533 534 535 536 537
	return sdhci_resume_host(c->host);
}

#endif

538
#ifdef CONFIG_PM
539 540 541 542 543 544 545 546 547 548 549 550

static int sdhci_acpi_runtime_suspend(struct device *dev)
{
	struct sdhci_acpi_host *c = dev_get_drvdata(dev);

	return sdhci_runtime_suspend_host(c->host);
}

static int sdhci_acpi_runtime_resume(struct device *dev)
{
	struct sdhci_acpi_host *c = dev_get_drvdata(dev);

551 552
	sdhci_acpi_byt_setting(&c->pdev->dev);

553 554 555 556 557 558
	return sdhci_runtime_resume_host(c->host);
}

#endif

static const struct dev_pm_ops sdhci_acpi_pm_ops = {
559
	SET_SYSTEM_SLEEP_PM_OPS(sdhci_acpi_suspend, sdhci_acpi_resume)
560
	SET_RUNTIME_PM_OPS(sdhci_acpi_runtime_suspend,
561
			sdhci_acpi_runtime_resume, NULL)
562 563 564 565 566 567 568 569 570
};

static struct platform_driver sdhci_acpi_driver = {
	.driver = {
		.name			= "sdhci-acpi",
		.acpi_match_table	= sdhci_acpi_ids,
		.pm			= &sdhci_acpi_pm_ops,
	},
	.probe	= sdhci_acpi_probe,
571
	.remove	= sdhci_acpi_remove,
572 573 574 575 576 577 578
};

module_platform_driver(sdhci_acpi_driver);

MODULE_DESCRIPTION("Secure Digital Host Controller Interface ACPI driver");
MODULE_AUTHOR("Adrian Hunter");
MODULE_LICENSE("GPL v2");