acpi_lpss.c 18.8 KB
Newer Older
1 2 3
/*
 * ACPI support for Intel Lynxpoint LPSS.
 *
4
 * Copyright (C) 2013, 2014, Intel Corporation
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
 *          Rafael J. Wysocki <rafael.j.wysocki@intel.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/acpi.h>
#include <linux/clk.h>
#include <linux/clkdev.h>
#include <linux/clk-provider.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/platform_device.h>
#include <linux/platform_data/clk-lpss.h>
21
#include <linux/pm_runtime.h>
22
#include <linux/delay.h>
23 24 25 26 27

#include "internal.h"

ACPI_MODULE_NAME("acpi_lpss");

28 29 30 31
#ifdef CONFIG_X86_INTEL_LPSS

#define LPSS_ADDR(desc) ((unsigned long)&desc)

32
#define LPSS_CLK_SIZE	0x04
33 34 35
#define LPSS_LTR_SIZE	0x18

/* Offsets relative to LPSS_PRIVATE_OFFSET */
36
#define LPSS_CLK_DIVIDER_DEF_MASK	(BIT(1) | BIT(16))
37 38 39
#define LPSS_RESETS			0x04
#define LPSS_RESETS_RESET_FUNC		BIT(0)
#define LPSS_RESETS_RESET_APB		BIT(1)
40 41
#define LPSS_GENERAL			0x08
#define LPSS_GENERAL_LTR_MODE_SW	BIT(2)
42
#define LPSS_GENERAL_UART_RTS_OVRD	BIT(3)
43 44
#define LPSS_SW_LTR			0x10
#define LPSS_AUTO_LTR			0x14
45 46 47 48 49 50 51
#define LPSS_LTR_SNOOP_REQ		BIT(15)
#define LPSS_LTR_SNOOP_MASK		0x0000FFFF
#define LPSS_LTR_SNOOP_LAT_1US		0x800
#define LPSS_LTR_SNOOP_LAT_32US		0xC00
#define LPSS_LTR_SNOOP_LAT_SHIFT	5
#define LPSS_LTR_SNOOP_LAT_CUTOFF	3000
#define LPSS_LTR_MAX_VAL		0x3FF
52 53
#define LPSS_TX_INT			0x20
#define LPSS_TX_INT_MASK		BIT(1)
54

55 56
#define LPSS_PRV_REG_COUNT		9

H
Heikki Krogerus 已提交
57 58 59 60 61 62
/* LPSS Flags */
#define LPSS_CLK			BIT(0)
#define LPSS_CLK_GATE			BIT(1)
#define LPSS_CLK_DIVIDER		BIT(2)
#define LPSS_LTR			BIT(3)
#define LPSS_SAVE_CTX			BIT(4)
63 64
#define LPSS_DEV_PROXY			BIT(5)
#define LPSS_PROXY_REQ			BIT(6)
65

66
struct lpss_private_data;
67 68

struct lpss_device_desc {
H
Heikki Krogerus 已提交
69
	unsigned int flags;
70
	unsigned int prv_offset;
71
	size_t prv_size_override;
72
	void (*setup)(struct lpss_private_data *pdata);
73 74
};

75 76
static struct device *proxy_device;

77
static struct lpss_device_desc lpss_dma_desc = {
78
	.flags = LPSS_CLK | LPSS_PROXY_REQ,
79 80
};

81 82 83
struct lpss_private_data {
	void __iomem *mmio_base;
	resource_size_t mmio_size;
84
	unsigned int fixed_clk_rate;
85 86
	struct clk *clk;
	const struct lpss_device_desc *dev_desc;
87
	u32 prv_reg_ctx[LPSS_PRV_REG_COUNT];
88 89
};

90 91 92 93
/* UART Component Parameter Register */
#define LPSS_UART_CPR			0xF4
#define LPSS_UART_CPR_AFCE		BIT(4)

94 95
static void lpss_uart_setup(struct lpss_private_data *pdata)
{
96
	unsigned int offset;
97
	u32 val;
98

99
	offset = pdata->dev_desc->prv_offset + LPSS_TX_INT;
100 101 102 103 104 105 106 107 108 109
	val = readl(pdata->mmio_base + offset);
	writel(val | LPSS_TX_INT_MASK, pdata->mmio_base + offset);

	val = readl(pdata->mmio_base + LPSS_UART_CPR);
	if (!(val & LPSS_UART_CPR_AFCE)) {
		offset = pdata->dev_desc->prv_offset + LPSS_GENERAL;
		val = readl(pdata->mmio_base + offset);
		val |= LPSS_GENERAL_UART_RTS_OVRD;
		writel(val, pdata->mmio_base + offset);
	}
110 111
}

112
static void byt_i2c_setup(struct lpss_private_data *pdata)
113 114 115 116 117 118 119 120 121
{
	unsigned int offset;
	u32 val;

	offset = pdata->dev_desc->prv_offset + LPSS_RESETS;
	val = readl(pdata->mmio_base + offset);
	val |= LPSS_RESETS_RESET_APB | LPSS_RESETS_RESET_FUNC;
	writel(val, pdata->mmio_base + offset);

122 123
	if (readl(pdata->mmio_base + pdata->dev_desc->prv_offset))
		pdata->fixed_clk_rate = 133000000;
124
}
125

126
static struct lpss_device_desc lpt_dev_desc = {
H
Heikki Krogerus 已提交
127
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_LTR,
128 129 130 131
	.prv_offset = 0x800,
};

static struct lpss_device_desc lpt_i2c_dev_desc = {
H
Heikki Krogerus 已提交
132
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_LTR,
133 134 135
	.prv_offset = 0x800,
};

136
static struct lpss_device_desc lpt_uart_dev_desc = {
H
Heikki Krogerus 已提交
137
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_LTR,
138 139
	.prv_offset = 0x800,
	.setup = lpss_uart_setup,
140 141 142
};

static struct lpss_device_desc lpt_sdio_dev_desc = {
H
Heikki Krogerus 已提交
143
	.flags = LPSS_LTR,
144
	.prv_offset = 0x1000,
145
	.prv_size_override = 0x1018,
146 147 148
};

static struct lpss_device_desc byt_pwm_dev_desc = {
149
	.flags = LPSS_SAVE_CTX,
150 151
};

152
static struct lpss_device_desc byt_uart_dev_desc = {
153 154
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX |
		 LPSS_DEV_PROXY,
155
	.prv_offset = 0x800,
156
	.setup = lpss_uart_setup,
157 158 159
};

static struct lpss_device_desc byt_spi_dev_desc = {
160 161
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX |
		 LPSS_DEV_PROXY,
162 163 164 165
	.prv_offset = 0x400,
};

static struct lpss_device_desc byt_sdio_dev_desc = {
166
	.flags = LPSS_CLK | LPSS_DEV_PROXY,
167 168 169
};

static struct lpss_device_desc byt_i2c_dev_desc = {
170
	.flags = LPSS_CLK | LPSS_SAVE_CTX | LPSS_DEV_PROXY,
171
	.prv_offset = 0x800,
172
	.setup = byt_i2c_setup,
173 174
};

175 176 177 178 179 180
#else

#define LPSS_ADDR(desc) (0UL)

#endif /* CONFIG_X86_INTEL_LPSS */

181
static const struct acpi_device_id acpi_lpss_device_ids[] = {
182
	/* Generic LPSS devices */
183
	{ "INTL9C60", LPSS_ADDR(lpss_dma_desc) },
184

185
	/* Lynxpoint LPSS devices */
186 187 188 189 190 191 192
	{ "INT33C0", LPSS_ADDR(lpt_dev_desc) },
	{ "INT33C1", LPSS_ADDR(lpt_dev_desc) },
	{ "INT33C2", LPSS_ADDR(lpt_i2c_dev_desc) },
	{ "INT33C3", LPSS_ADDR(lpt_i2c_dev_desc) },
	{ "INT33C4", LPSS_ADDR(lpt_uart_dev_desc) },
	{ "INT33C5", LPSS_ADDR(lpt_uart_dev_desc) },
	{ "INT33C6", LPSS_ADDR(lpt_sdio_dev_desc) },
193 194
	{ "INT33C7", },

195
	/* BayTrail LPSS devices */
196 197 198 199 200
	{ "80860F09", LPSS_ADDR(byt_pwm_dev_desc) },
	{ "80860F0A", LPSS_ADDR(byt_uart_dev_desc) },
	{ "80860F0E", LPSS_ADDR(byt_spi_dev_desc) },
	{ "80860F14", LPSS_ADDR(byt_sdio_dev_desc) },
	{ "80860F41", LPSS_ADDR(byt_i2c_dev_desc) },
201
	{ "INT33B2", },
202
	{ "INT33FC", },
203

204
	/* Braswell LPSS devices */
205
	{ "80862288", LPSS_ADDR(byt_pwm_dev_desc) },
206 207 208 209
	{ "8086228A", LPSS_ADDR(byt_uart_dev_desc) },
	{ "8086228E", LPSS_ADDR(byt_spi_dev_desc) },
	{ "808622C1", LPSS_ADDR(byt_i2c_dev_desc) },

210 211 212 213 214 215 216
	{ "INT3430", LPSS_ADDR(lpt_dev_desc) },
	{ "INT3431", LPSS_ADDR(lpt_dev_desc) },
	{ "INT3432", LPSS_ADDR(lpt_i2c_dev_desc) },
	{ "INT3433", LPSS_ADDR(lpt_i2c_dev_desc) },
	{ "INT3434", LPSS_ADDR(lpt_uart_dev_desc) },
	{ "INT3435", LPSS_ADDR(lpt_uart_dev_desc) },
	{ "INT3436", LPSS_ADDR(lpt_sdio_dev_desc) },
217 218
	{ "INT3437", },

H
Heikki Krogerus 已提交
219 220
	/* Wildcat Point LPSS devices */
	{ "INT3438", LPSS_ADDR(lpt_dev_desc) },
221

222 223 224
	{ }
};

225 226
#ifdef CONFIG_X86_INTEL_LPSS

227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
static int is_memory(struct acpi_resource *res, void *not_used)
{
	struct resource r;
	return !acpi_dev_resource_memory(res, &r);
}

/* LPSS main clock device. */
static struct platform_device *lpss_clk_dev;

static inline void lpt_register_clock_device(void)
{
	lpss_clk_dev = platform_device_register_simple("clk-lpt", -1, NULL, 0);
}

static int register_device_clock(struct acpi_device *adev,
				 struct lpss_private_data *pdata)
{
	const struct lpss_device_desc *dev_desc = pdata->dev_desc;
245
	const char *devname = dev_name(&adev->dev);
246
	struct clk *clk = ERR_PTR(-ENODEV);
247
	struct lpss_clk_data *clk_data;
248 249
	const char *parent, *clk_name;
	void __iomem *prv_base;
250 251 252 253

	if (!lpss_clk_dev)
		lpt_register_clock_device();

254 255 256
	clk_data = platform_get_drvdata(lpss_clk_dev);
	if (!clk_data)
		return -ENODEV;
257
	clk = clk_data->clk;
258 259

	if (!pdata->mmio_base
260
	    || pdata->mmio_size < dev_desc->prv_offset + LPSS_CLK_SIZE)
261 262
		return -ENODATA;

263
	parent = clk_data->name;
264
	prv_base = pdata->mmio_base + dev_desc->prv_offset;
265

266 267 268 269
	if (pdata->fixed_clk_rate) {
		clk = clk_register_fixed_rate(NULL, devname, parent, 0,
					      pdata->fixed_clk_rate);
		goto out;
270 271
	}

H
Heikki Krogerus 已提交
272
	if (dev_desc->flags & LPSS_CLK_GATE) {
273 274 275 276 277
		clk = clk_register_gate(NULL, devname, parent, 0,
					prv_base, 0, 0, NULL);
		parent = devname;
	}

H
Heikki Krogerus 已提交
278
	if (dev_desc->flags & LPSS_CLK_DIVIDER) {
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
		/* Prevent division by zero */
		if (!readl(prv_base))
			writel(LPSS_CLK_DIVIDER_DEF_MASK, prv_base);

		clk_name = kasprintf(GFP_KERNEL, "%s-div", devname);
		if (!clk_name)
			return -ENOMEM;
		clk = clk_register_fractional_divider(NULL, clk_name, parent,
						      0, prv_base,
						      1, 15, 16, 15, 0, NULL);
		parent = clk_name;

		clk_name = kasprintf(GFP_KERNEL, "%s-update", devname);
		if (!clk_name) {
			kfree(parent);
			return -ENOMEM;
		}
		clk = clk_register_gate(NULL, clk_name, parent,
					CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE,
					prv_base, 31, 0, NULL);
		kfree(parent);
		kfree(clk_name);
301
	}
302
out:
303 304
	if (IS_ERR(clk))
		return PTR_ERR(clk);
305

306 307
	pdata->clk = clk;
	clk_register_clkdev(clk, NULL, devname);
308 309 310 311 312 313 314 315 316 317
	return 0;
}

static int acpi_lpss_create_device(struct acpi_device *adev,
				   const struct acpi_device_id *id)
{
	struct lpss_device_desc *dev_desc;
	struct lpss_private_data *pdata;
	struct resource_list_entry *rentry;
	struct list_head resource_list;
318
	struct platform_device *pdev;
319 320 321
	int ret;

	dev_desc = (struct lpss_device_desc *)id->driver_data;
322 323 324 325
	if (!dev_desc) {
		pdev = acpi_create_platform_device(adev);
		return IS_ERR_OR_NULL(pdev) ? PTR_ERR(pdev) : 1;
	}
326 327 328 329 330 331 332 333 334 335 336
	pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
	if (!pdata)
		return -ENOMEM;

	INIT_LIST_HEAD(&resource_list);
	ret = acpi_dev_get_resources(adev, &resource_list, is_memory, NULL);
	if (ret < 0)
		goto err_out;

	list_for_each_entry(rentry, &resource_list, node)
		if (resource_type(&rentry->res) == IORESOURCE_MEM) {
337 338 339 340
			if (dev_desc->prv_size_override)
				pdata->mmio_size = dev_desc->prv_size_override;
			else
				pdata->mmio_size = resource_size(&rentry->res);
341 342
			pdata->mmio_base = ioremap(rentry->res.start,
						   pdata->mmio_size);
343 344
			if (!pdata->mmio_base)
				goto err_out;
345 346 347 348 349
			break;
		}

	acpi_dev_free_resource_list(&resource_list);

350 351
	pdata->dev_desc = dev_desc;

352 353 354
	if (dev_desc->setup)
		dev_desc->setup(pdata);

H
Heikki Krogerus 已提交
355
	if (dev_desc->flags & LPSS_CLK) {
356 357
		ret = register_device_clock(adev, pdata);
		if (ret) {
358 359 360
			/* Skip the device, but continue the namespace scan. */
			ret = 0;
			goto err_out;
361 362 363
		}
	}

364 365 366 367 368 369 370 371 372 373 374 375
	/*
	 * This works around a known issue in ACPI tables where LPSS devices
	 * have _PS0 and _PS3 without _PSC (and no power resources), so
	 * acpi_bus_init_power() will assume that the BIOS has put them into D0.
	 */
	ret = acpi_device_fix_up_power(adev);
	if (ret) {
		/* Skip the device, but continue the namespace scan. */
		ret = 0;
		goto err_out;
	}

376
	adev->driver_data = pdata;
377 378
	pdev = acpi_create_platform_device(adev);
	if (!IS_ERR_OR_NULL(pdev)) {
379 380
		if (!proxy_device && dev_desc->flags & LPSS_DEV_PROXY)
			proxy_device = &pdev->dev;
381 382
		return 1;
	}
383

384
	ret = PTR_ERR(pdev);
385 386 387 388 389 390 391
	adev->driver_data = NULL;

 err_out:
	kfree(pdata);
	return ret;
}

392 393 394 395 396 397 398 399 400 401 402
static u32 __lpss_reg_read(struct lpss_private_data *pdata, unsigned int reg)
{
	return readl(pdata->mmio_base + pdata->dev_desc->prv_offset + reg);
}

static void __lpss_reg_write(u32 val, struct lpss_private_data *pdata,
			     unsigned int reg)
{
	writel(val, pdata->mmio_base + pdata->dev_desc->prv_offset + reg);
}

403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
static int lpss_reg_read(struct device *dev, unsigned int reg, u32 *val)
{
	struct acpi_device *adev;
	struct lpss_private_data *pdata;
	unsigned long flags;
	int ret;

	ret = acpi_bus_get_device(ACPI_HANDLE(dev), &adev);
	if (WARN_ON(ret))
		return ret;

	spin_lock_irqsave(&dev->power.lock, flags);
	if (pm_runtime_suspended(dev)) {
		ret = -EAGAIN;
		goto out;
	}
	pdata = acpi_driver_data(adev);
	if (WARN_ON(!pdata || !pdata->mmio_base)) {
		ret = -ENODEV;
		goto out;
	}
424
	*val = __lpss_reg_read(pdata, reg);
425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476

 out:
	spin_unlock_irqrestore(&dev->power.lock, flags);
	return ret;
}

static ssize_t lpss_ltr_show(struct device *dev, struct device_attribute *attr,
			     char *buf)
{
	u32 ltr_value = 0;
	unsigned int reg;
	int ret;

	reg = strcmp(attr->attr.name, "auto_ltr") ? LPSS_SW_LTR : LPSS_AUTO_LTR;
	ret = lpss_reg_read(dev, reg, &ltr_value);
	if (ret)
		return ret;

	return snprintf(buf, PAGE_SIZE, "%08x\n", ltr_value);
}

static ssize_t lpss_ltr_mode_show(struct device *dev,
				  struct device_attribute *attr, char *buf)
{
	u32 ltr_mode = 0;
	char *outstr;
	int ret;

	ret = lpss_reg_read(dev, LPSS_GENERAL, &ltr_mode);
	if (ret)
		return ret;

	outstr = (ltr_mode & LPSS_GENERAL_LTR_MODE_SW) ? "sw" : "auto";
	return sprintf(buf, "%s\n", outstr);
}

static DEVICE_ATTR(auto_ltr, S_IRUSR, lpss_ltr_show, NULL);
static DEVICE_ATTR(sw_ltr, S_IRUSR, lpss_ltr_show, NULL);
static DEVICE_ATTR(ltr_mode, S_IRUSR, lpss_ltr_mode_show, NULL);

static struct attribute *lpss_attrs[] = {
	&dev_attr_auto_ltr.attr,
	&dev_attr_sw_ltr.attr,
	&dev_attr_ltr_mode.attr,
	NULL,
};

static struct attribute_group lpss_attr_group = {
	.attrs = lpss_attrs,
	.name = "lpss_ltr",
};

477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
static void acpi_lpss_set_ltr(struct device *dev, s32 val)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	u32 ltr_mode, ltr_val;

	ltr_mode = __lpss_reg_read(pdata, LPSS_GENERAL);
	if (val < 0) {
		if (ltr_mode & LPSS_GENERAL_LTR_MODE_SW) {
			ltr_mode &= ~LPSS_GENERAL_LTR_MODE_SW;
			__lpss_reg_write(ltr_mode, pdata, LPSS_GENERAL);
		}
		return;
	}
	ltr_val = __lpss_reg_read(pdata, LPSS_SW_LTR) & ~LPSS_LTR_SNOOP_MASK;
	if (val >= LPSS_LTR_SNOOP_LAT_CUTOFF) {
		ltr_val |= LPSS_LTR_SNOOP_LAT_32US;
		val = LPSS_LTR_MAX_VAL;
	} else if (val > LPSS_LTR_MAX_VAL) {
		ltr_val |= LPSS_LTR_SNOOP_LAT_32US | LPSS_LTR_SNOOP_REQ;
		val >>= LPSS_LTR_SNOOP_LAT_SHIFT;
	} else {
		ltr_val |= LPSS_LTR_SNOOP_LAT_1US | LPSS_LTR_SNOOP_REQ;
	}
	ltr_val |= val;
	__lpss_reg_write(ltr_val, pdata, LPSS_SW_LTR);
	if (!(ltr_mode & LPSS_GENERAL_LTR_MODE_SW)) {
		ltr_mode |= LPSS_GENERAL_LTR_MODE_SW;
		__lpss_reg_write(ltr_mode, pdata, LPSS_GENERAL);
	}
}

508 509 510 511
#ifdef CONFIG_PM
/**
 * acpi_lpss_save_ctx() - Save the private registers of LPSS device
 * @dev: LPSS device
512
 * @pdata: pointer to the private data of the LPSS device
513 514 515 516 517
 *
 * Most LPSS devices have private registers which may loose their context when
 * the device is powered down. acpi_lpss_save_ctx() saves those registers into
 * prv_reg_ctx array.
 */
518 519
static void acpi_lpss_save_ctx(struct device *dev,
			       struct lpss_private_data *pdata)
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
{
	unsigned int i;

	for (i = 0; i < LPSS_PRV_REG_COUNT; i++) {
		unsigned long offset = i * sizeof(u32);

		pdata->prv_reg_ctx[i] = __lpss_reg_read(pdata, offset);
		dev_dbg(dev, "saving 0x%08x from LPSS reg at offset 0x%02lx\n",
			pdata->prv_reg_ctx[i], offset);
	}
}

/**
 * acpi_lpss_restore_ctx() - Restore the private registers of LPSS device
 * @dev: LPSS device
535
 * @pdata: pointer to the private data of the LPSS device
536 537 538
 *
 * Restores the registers that were previously stored with acpi_lpss_save_ctx().
 */
539 540
static void acpi_lpss_restore_ctx(struct device *dev,
				  struct lpss_private_data *pdata)
541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
{
	unsigned int i;

	/*
	 * The following delay is needed or the subsequent write operations may
	 * fail. The LPSS devices are actually PCI devices and the PCI spec
	 * expects 10ms delay before the device can be accessed after D3 to D0
	 * transition.
	 */
	msleep(10);

	for (i = 0; i < LPSS_PRV_REG_COUNT; i++) {
		unsigned long offset = i * sizeof(u32);

		__lpss_reg_write(pdata->prv_reg_ctx[i], pdata, offset);
		dev_dbg(dev, "restoring 0x%08x to LPSS reg at offset 0x%02lx\n",
			pdata->prv_reg_ctx[i], offset);
	}
}

#ifdef CONFIG_PM_SLEEP
static int acpi_lpss_suspend_late(struct device *dev)
{
564 565
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;
566

567
	ret = pm_generic_suspend_late(dev);
568 569 570
	if (ret)
		return ret;

571 572 573
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		acpi_lpss_save_ctx(dev, pdata);

574 575 576
	return acpi_dev_suspend_late(dev);
}

577
static int acpi_lpss_resume_early(struct device *dev)
578
{
579 580
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;
581

582
	ret = acpi_dev_resume_early(dev);
583 584 585
	if (ret)
		return ret;

586 587 588
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		acpi_lpss_restore_ctx(dev, pdata);

589 590 591 592 593 594
	return pm_generic_resume_early(dev);
}
#endif /* CONFIG_PM_SLEEP */

static int acpi_lpss_runtime_suspend(struct device *dev)
{
595 596
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;
597

598
	ret = pm_generic_runtime_suspend(dev);
599 600 601
	if (ret)
		return ret;

602 603 604
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		acpi_lpss_save_ctx(dev, pdata);

605 606 607 608 609 610 611 612
	ret = acpi_dev_runtime_suspend(dev);
	if (ret)
		return ret;

	if (pdata->dev_desc->flags & LPSS_PROXY_REQ && proxy_device)
		return pm_runtime_put_sync_suspend(proxy_device);

	return 0;
613 614 615 616
}

static int acpi_lpss_runtime_resume(struct device *dev)
{
617 618
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;
619

620 621 622 623 624 625
	if (pdata->dev_desc->flags & LPSS_PROXY_REQ && proxy_device) {
		ret = pm_runtime_get_sync(proxy_device);
		if (ret)
			return ret;
	}

626
	ret = acpi_dev_runtime_resume(dev);
627 628 629
	if (ret)
		return ret;

630 631 632
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		acpi_lpss_restore_ctx(dev, pdata);

633 634 635 636 637 638
	return pm_generic_runtime_resume(dev);
}
#endif /* CONFIG_PM */

static struct dev_pm_domain acpi_lpss_pm_domain = {
	.ops = {
639
#ifdef CONFIG_PM
640 641 642 643
#ifdef CONFIG_PM_SLEEP
		.prepare = acpi_subsys_prepare,
		.complete = acpi_subsys_complete,
		.suspend = acpi_subsys_suspend,
644 645
		.suspend_late = acpi_lpss_suspend_late,
		.resume_early = acpi_lpss_resume_early,
646 647
		.freeze = acpi_subsys_freeze,
		.poweroff = acpi_subsys_suspend,
648 649
		.poweroff_late = acpi_lpss_suspend_late,
		.restore_early = acpi_lpss_resume_early,
650 651 652 653 654 655 656
#endif
		.runtime_suspend = acpi_lpss_runtime_suspend,
		.runtime_resume = acpi_lpss_runtime_resume,
#endif
	},
};

657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
static int acpi_lpss_platform_notify(struct notifier_block *nb,
				     unsigned long action, void *data)
{
	struct platform_device *pdev = to_platform_device(data);
	struct lpss_private_data *pdata;
	struct acpi_device *adev;
	const struct acpi_device_id *id;

	id = acpi_match_device(acpi_lpss_device_ids, &pdev->dev);
	if (!id || !id->driver_data)
		return 0;

	if (acpi_bus_get_device(ACPI_HANDLE(&pdev->dev), &adev))
		return 0;

	pdata = acpi_driver_data(adev);
673
	if (!pdata)
674 675
		return 0;

676 677
	if (pdata->mmio_base &&
	    pdata->mmio_size < pdata->dev_desc->prv_offset + LPSS_LTR_SIZE) {
678 679 680 681
		dev_err(&pdev->dev, "MMIO size insufficient to access LTR\n");
		return 0;
	}

682 683
	switch (action) {
	case BUS_NOTIFY_ADD_DEVICE:
684
		pdev->dev.pm_domain = &acpi_lpss_pm_domain;
H
Heikki Krogerus 已提交
685
		if (pdata->dev_desc->flags & LPSS_LTR)
686 687
			return sysfs_create_group(&pdev->dev.kobj,
						  &lpss_attr_group);
688
		break;
689
	case BUS_NOTIFY_DEL_DEVICE:
H
Heikki Krogerus 已提交
690
		if (pdata->dev_desc->flags & LPSS_LTR)
691
			sysfs_remove_group(&pdev->dev.kobj, &lpss_attr_group);
692 693
		pdev->dev.pm_domain = NULL;
		break;
694 695 696
	default:
		break;
	}
697

698
	return 0;
699 700 701 702 703 704
}

static struct notifier_block acpi_lpss_nb = {
	.notifier_call = acpi_lpss_platform_notify,
};

705 706 707 708
static void acpi_lpss_bind(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));

H
Heikki Krogerus 已提交
709
	if (!pdata || !pdata->mmio_base || !(pdata->dev_desc->flags & LPSS_LTR))
710 711 712 713 714 715 716 717 718 719 720 721 722
		return;

	if (pdata->mmio_size >= pdata->dev_desc->prv_offset + LPSS_LTR_SIZE)
		dev->power.set_latency_tolerance = acpi_lpss_set_ltr;
	else
		dev_err(dev, "MMIO size insufficient to access LTR\n");
}

static void acpi_lpss_unbind(struct device *dev)
{
	dev->power.set_latency_tolerance = NULL;
}

723 724 725
static struct acpi_scan_handler lpss_handler = {
	.ids = acpi_lpss_device_ids,
	.attach = acpi_lpss_create_device,
726 727
	.bind = acpi_lpss_bind,
	.unbind = acpi_lpss_unbind,
728 729 730 731
};

void __init acpi_lpss_init(void)
{
732 733
	if (!lpt_clk_init()) {
		bus_register_notifier(&platform_bus_type, &acpi_lpss_nb);
734
		acpi_scan_add_handler(&lpss_handler);
735
	}
736
}
737 738 739 740 741 742 743 744 745 746 747 748 749

#else

static struct acpi_scan_handler lpss_handler = {
	.ids = acpi_lpss_device_ids,
};

void __init acpi_lpss_init(void)
{
	acpi_scan_add_handler(&lpss_handler);
}

#endif /* CONFIG_X86_INTEL_LPSS */