acpi_lpss.c 32.4 KB
Newer Older
1 2 3
/*
 * ACPI support for Intel Lynxpoint LPSS.
 *
4
 * Copyright (C) 2013, Intel Corporation
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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/clkdev.h>
#include <linux/clk-provider.h>
#include <linux/err.h>
#include <linux/io.h>
18
#include <linux/mutex.h>
19
#include <linux/pci.h>
20 21
#include <linux/platform_device.h>
#include <linux/platform_data/clk-lpss.h>
22
#include <linux/platform_data/x86/pmc_atom.h>
23
#include <linux/pm_domain.h>
24
#include <linux/pm_runtime.h>
25
#include <linux/pwm.h>
26
#include <linux/suspend.h>
27
#include <linux/delay.h>
28 29 30 31 32

#include "internal.h"

ACPI_MODULE_NAME("acpi_lpss");

33 34
#ifdef CONFIG_X86_INTEL_LPSS

35
#include <asm/cpu_device_id.h>
36
#include <asm/intel-family.h>
37 38
#include <asm/iosf_mbi.h>

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

41
#define LPSS_CLK_SIZE	0x04
42 43 44
#define LPSS_LTR_SIZE	0x18

/* Offsets relative to LPSS_PRIVATE_OFFSET */
45
#define LPSS_CLK_DIVIDER_DEF_MASK	(BIT(1) | BIT(16))
46 47 48
#define LPSS_RESETS			0x04
#define LPSS_RESETS_RESET_FUNC		BIT(0)
#define LPSS_RESETS_RESET_APB		BIT(1)
49 50
#define LPSS_GENERAL			0x08
#define LPSS_GENERAL_LTR_MODE_SW	BIT(2)
51
#define LPSS_GENERAL_UART_RTS_OVRD	BIT(3)
52 53
#define LPSS_SW_LTR			0x10
#define LPSS_AUTO_LTR			0x14
54 55 56 57 58 59 60
#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
61 62
#define LPSS_TX_INT			0x20
#define LPSS_TX_INT_MASK		BIT(1)
63

64 65
#define LPSS_PRV_REG_COUNT		9

H
Heikki Krogerus 已提交
66 67 68 69 70 71
/* 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)
72
#define LPSS_NO_D3_DELAY		BIT(5)
73

74 75 76 77
/* Crystal Cove PMIC shares same ACPI ID between different platforms */
#define BYT_CRC_HRV			2
#define CHT_CRC_HRV			3

78
struct lpss_private_data;
79 80

struct lpss_device_desc {
H
Heikki Krogerus 已提交
81
	unsigned int flags;
82
	const char *clk_con_id;
83
	unsigned int prv_offset;
84
	size_t prv_size_override;
85
	struct property_entry *properties;
86
	void (*setup)(struct lpss_private_data *pdata);
87
	bool resume_from_noirq;
88 89
};

90
static const struct lpss_device_desc lpss_dma_desc = {
91
	.flags = LPSS_CLK,
92 93
};

94
struct lpss_private_data {
95
	struct acpi_device *adev;
96 97
	void __iomem *mmio_base;
	resource_size_t mmio_size;
98
	unsigned int fixed_clk_rate;
99 100
	struct clk *clk;
	const struct lpss_device_desc *dev_desc;
101
	u32 prv_reg_ctx[LPSS_PRV_REG_COUNT];
102 103
};

104 105 106
/* Devices which need to be in D3 before lpss_iosf_enter_d3_state() proceeds */
static u32 pmc_atom_d3_mask = 0xfe000ffe;

107 108 109 110 111 112
/* LPSS run time quirks */
static unsigned int lpss_quirks;

/*
 * LPSS_QUIRK_ALWAYS_POWER_ON: override power state for LPSS DMA device.
 *
113
 * The LPSS DMA controller has neither _PS0 nor _PS3 method. Moreover
114 115 116 117 118 119 120 121 122 123
 * it can be powered off automatically whenever the last LPSS device goes down.
 * In case of no power any access to the DMA controller will hang the system.
 * The behaviour is reproduced on some HP laptops based on Intel BayTrail as
 * well as on ASuS T100TA transformer.
 *
 * This quirk overrides power state of entire LPSS island to keep DMA powered
 * on whenever we have at least one other device in use.
 */
#define LPSS_QUIRK_ALWAYS_POWER_ON	BIT(0)

124 125 126 127
/* UART Component Parameter Register */
#define LPSS_UART_CPR			0xF4
#define LPSS_UART_CPR_AFCE		BIT(4)

128 129
static void lpss_uart_setup(struct lpss_private_data *pdata)
{
130
	unsigned int offset;
131
	u32 val;
132

133
	offset = pdata->dev_desc->prv_offset + LPSS_TX_INT;
134 135 136 137 138 139 140 141 142 143
	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);
	}
144 145
}

146
static void lpss_deassert_reset(struct lpss_private_data *pdata)
147 148 149 150 151 152 153 154
{
	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);
155 156
}

157 158 159 160 161 162 163 164 165 166 167 168
/*
 * BYT PWM used for backlight control by the i915 driver on systems without
 * the Crystal Cove PMIC.
 */
static struct pwm_lookup byt_pwm_lookup[] = {
	PWM_LOOKUP_WITH_MODULE("80860F09:00", 0, "0000:00:02.0",
			       "pwm_backlight", 0, PWM_POLARITY_NORMAL,
			       "pwm-lpss-platform"),
};

static void byt_pwm_setup(struct lpss_private_data *pdata)
{
169 170 171 172 173 174
	struct acpi_device *adev = pdata->adev;

	/* Only call pwm_add_table for the first PWM controller */
	if (!adev->pnp.unique_id || strcmp(adev->pnp.unique_id, "1"))
		return;

175
	if (!acpi_dev_present("INT33FD", NULL, BYT_CRC_HRV))
176 177 178
		pwm_add_table(byt_pwm_lookup, ARRAY_SIZE(byt_pwm_lookup));
}

179 180 181 182
#define LPSS_I2C_ENABLE			0x6c

static void byt_i2c_setup(struct lpss_private_data *pdata)
{
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	const char *uid_str = acpi_device_uid(pdata->adev);
	acpi_handle handle = pdata->adev->handle;
	unsigned long long shared_host = 0;
	acpi_status status;
	long uid = 0;

	/* Expected to always be true, but better safe then sorry */
	if (uid_str)
		uid = simple_strtol(uid_str, NULL, 10);

	/* Detect I2C bus shared with PUNIT and ignore its d3 status */
	status = acpi_evaluate_integer(handle, "_SEM", NULL, &shared_host);
	if (ACPI_SUCCESS(status) && shared_host && uid)
		pmc_atom_d3_mask &= ~(BIT_LPSS2_F1_I2C1 << (uid - 1));

198
	lpss_deassert_reset(pdata);
199

200 201
	if (readl(pdata->mmio_base + pdata->dev_desc->prv_offset))
		pdata->fixed_clk_rate = 133000000;
202 203

	writel(0, pdata->mmio_base + LPSS_I2C_ENABLE);
204
}
205

206 207 208 209 210 211 212 213 214
/* BSW PWM used for backlight control by the i915 driver */
static struct pwm_lookup bsw_pwm_lookup[] = {
	PWM_LOOKUP_WITH_MODULE("80862288:00", 0, "0000:00:02.0",
			       "pwm_backlight", 0, PWM_POLARITY_NORMAL,
			       "pwm-lpss-platform"),
};

static void bsw_pwm_setup(struct lpss_private_data *pdata)
{
215 216 217 218 219 220
	struct acpi_device *adev = pdata->adev;

	/* Only call pwm_add_table for the first PWM controller */
	if (!adev->pnp.unique_id || strcmp(adev->pnp.unique_id, "1"))
		return;

221 222 223
	pwm_add_table(bsw_pwm_lookup, ARRAY_SIZE(bsw_pwm_lookup));
}

224
static const struct lpss_device_desc lpt_dev_desc = {
H
Heikki Krogerus 已提交
225
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_LTR,
226 227 228
	.prv_offset = 0x800,
};

229
static const struct lpss_device_desc lpt_i2c_dev_desc = {
H
Heikki Krogerus 已提交
230
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_LTR,
231 232 233
	.prv_offset = 0x800,
};

234 235 236 237 238 239 240
static struct property_entry uart_properties[] = {
	PROPERTY_ENTRY_U32("reg-io-width", 4),
	PROPERTY_ENTRY_U32("reg-shift", 2),
	PROPERTY_ENTRY_BOOL("snps,uart-16550-compatible"),
	{ },
};

241
static const struct lpss_device_desc lpt_uart_dev_desc = {
H
Heikki Krogerus 已提交
242
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_LTR,
243
	.clk_con_id = "baudclk",
244 245
	.prv_offset = 0x800,
	.setup = lpss_uart_setup,
246
	.properties = uart_properties,
247 248
};

249
static const struct lpss_device_desc lpt_sdio_dev_desc = {
H
Heikki Krogerus 已提交
250
	.flags = LPSS_LTR,
251
	.prv_offset = 0x1000,
252
	.prv_size_override = 0x1018,
253 254
};

255
static const struct lpss_device_desc byt_pwm_dev_desc = {
256
	.flags = LPSS_SAVE_CTX,
257
	.prv_offset = 0x800,
258
	.setup = byt_pwm_setup,
259 260
};

261 262
static const struct lpss_device_desc bsw_pwm_dev_desc = {
	.flags = LPSS_SAVE_CTX | LPSS_NO_D3_DELAY,
263
	.prv_offset = 0x800,
264
	.setup = bsw_pwm_setup,
265 266
};

267
static const struct lpss_device_desc byt_uart_dev_desc = {
268
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX,
269
	.clk_con_id = "baudclk",
270
	.prv_offset = 0x800,
271
	.setup = lpss_uart_setup,
272
	.properties = uart_properties,
273 274
};

275 276 277 278 279 280
static const struct lpss_device_desc bsw_uart_dev_desc = {
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX
			| LPSS_NO_D3_DELAY,
	.clk_con_id = "baudclk",
	.prv_offset = 0x800,
	.setup = lpss_uart_setup,
281
	.properties = uart_properties,
282 283
};

284
static const struct lpss_device_desc byt_spi_dev_desc = {
285
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX,
286 287 288
	.prv_offset = 0x400,
};

289
static const struct lpss_device_desc byt_sdio_dev_desc = {
290
	.flags = LPSS_CLK,
291 292
};

293
static const struct lpss_device_desc byt_i2c_dev_desc = {
294
	.flags = LPSS_CLK | LPSS_SAVE_CTX,
295
	.prv_offset = 0x800,
296
	.setup = byt_i2c_setup,
297
	.resume_from_noirq = true,
298 299
};

300 301 302 303
static const struct lpss_device_desc bsw_i2c_dev_desc = {
	.flags = LPSS_CLK | LPSS_SAVE_CTX | LPSS_NO_D3_DELAY,
	.prv_offset = 0x800,
	.setup = byt_i2c_setup,
304
	.resume_from_noirq = true,
305 306
};

307
static const struct lpss_device_desc bsw_spi_dev_desc = {
308 309
	.flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX
			| LPSS_NO_D3_DELAY,
310 311 312 313
	.prv_offset = 0x400,
	.setup = lpss_deassert_reset,
};

314 315 316
#define ICPU(model)	{ X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, }

static const struct x86_cpu_id lpss_cpu_ids[] = {
317
	ICPU(INTEL_FAM6_ATOM_SILVERMONT),	/* Valleyview, Bay Trail */
318
	ICPU(INTEL_FAM6_ATOM_AIRMONT),	/* Braswell, Cherry Trail */
319 320 321
	{}
};

322 323 324 325 326 327
#else

#define LPSS_ADDR(desc) (0UL)

#endif /* CONFIG_X86_INTEL_LPSS */

328
static const struct acpi_device_id acpi_lpss_device_ids[] = {
329
	/* Generic LPSS devices */
330
	{ "INTL9C60", LPSS_ADDR(lpss_dma_desc) },
331

332
	/* Lynxpoint LPSS devices */
333 334 335 336 337 338 339
	{ "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) },
340 341
	{ "INT33C7", },

342
	/* BayTrail LPSS devices */
343 344 345 346 347
	{ "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) },
348
	{ "INT33B2", },
349
	{ "INT33FC", },
350

351
	/* Braswell LPSS devices */
352
	{ "80862286", LPSS_ADDR(lpss_dma_desc) },
353 354
	{ "80862288", LPSS_ADDR(bsw_pwm_dev_desc) },
	{ "8086228A", LPSS_ADDR(bsw_uart_dev_desc) },
355
	{ "8086228E", LPSS_ADDR(bsw_spi_dev_desc) },
356
	{ "808622C0", LPSS_ADDR(lpss_dma_desc) },
357
	{ "808622C1", LPSS_ADDR(bsw_i2c_dev_desc) },
358

359
	/* Broadwell LPSS devices */
360 361 362 363 364 365 366
	{ "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) },
367 368
	{ "INT3437", },

H
Heikki Krogerus 已提交
369 370
	/* Wildcat Point LPSS devices */
	{ "INT3438", LPSS_ADDR(lpt_dev_desc) },
371

372 373 374
	{ }
};

375 376
#ifdef CONFIG_X86_INTEL_LPSS

377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
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;
395
	const char *devname = dev_name(&adev->dev);
396
	struct clk *clk;
397
	struct lpss_clk_data *clk_data;
398 399
	const char *parent, *clk_name;
	void __iomem *prv_base;
400 401 402 403

	if (!lpss_clk_dev)
		lpt_register_clock_device();

404 405 406
	clk_data = platform_get_drvdata(lpss_clk_dev);
	if (!clk_data)
		return -ENODEV;
407
	clk = clk_data->clk;
408 409

	if (!pdata->mmio_base
410
	    || pdata->mmio_size < dev_desc->prv_offset + LPSS_CLK_SIZE)
411 412
		return -ENODATA;

413
	parent = clk_data->name;
414
	prv_base = pdata->mmio_base + dev_desc->prv_offset;
415

416 417 418 419
	if (pdata->fixed_clk_rate) {
		clk = clk_register_fixed_rate(NULL, devname, parent, 0,
					      pdata->fixed_clk_rate);
		goto out;
420 421
	}

H
Heikki Krogerus 已提交
422
	if (dev_desc->flags & LPSS_CLK_GATE) {
423 424 425 426 427
		clk = clk_register_gate(NULL, devname, parent, 0,
					prv_base, 0, 0, NULL);
		parent = devname;
	}

H
Heikki Krogerus 已提交
428
	if (dev_desc->flags & LPSS_CLK_DIVIDER) {
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
		/* 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);
451
	}
452
out:
453 454
	if (IS_ERR(clk))
		return PTR_ERR(clk);
455

456
	pdata->clk = clk;
457
	clk_register_clkdev(clk, dev_desc->clk_con_id, devname);
458 459 460
	return 0;
}

461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 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 508 509 510 511 512 513 514 515 516 517 518
struct lpss_device_links {
	const char *supplier_hid;
	const char *supplier_uid;
	const char *consumer_hid;
	const char *consumer_uid;
	u32 flags;
};

/*
 * The _DEP method is used to identify dependencies but instead of creating
 * device links for every handle in _DEP, only links in the following list are
 * created. That is necessary because, in the general case, _DEP can refer to
 * devices that might not have drivers, or that are on different buses, or where
 * the supplier is not enumerated until after the consumer is probed.
 */
static const struct lpss_device_links lpss_device_links[] = {
	{"808622C1", "7", "80860F14", "3", DL_FLAG_PM_RUNTIME},
};

static bool hid_uid_match(const char *hid1, const char *uid1,
			  const char *hid2, const char *uid2)
{
	return !strcmp(hid1, hid2) && uid1 && uid2 && !strcmp(uid1, uid2);
}

static bool acpi_lpss_is_supplier(struct acpi_device *adev,
				  const struct lpss_device_links *link)
{
	return hid_uid_match(acpi_device_hid(adev), acpi_device_uid(adev),
			     link->supplier_hid, link->supplier_uid);
}

static bool acpi_lpss_is_consumer(struct acpi_device *adev,
				  const struct lpss_device_links *link)
{
	return hid_uid_match(acpi_device_hid(adev), acpi_device_uid(adev),
			     link->consumer_hid, link->consumer_uid);
}

struct hid_uid {
	const char *hid;
	const char *uid;
};

static int match_hid_uid(struct device *dev, void *data)
{
	struct acpi_device *adev = ACPI_COMPANION(dev);
	struct hid_uid *id = data;

	if (!adev)
		return 0;

	return hid_uid_match(acpi_device_hid(adev), acpi_device_uid(adev),
			     id->hid, id->uid);
}

static struct device *acpi_lpss_find_device(const char *hid, const char *uid)
{
519 520
	struct device *dev;

521 522 523 524 525
	struct hid_uid data = {
		.hid = hid,
		.uid = uid,
	};

526 527 528 529 530
	dev = bus_find_device(&platform_bus_type, NULL, &data, match_hid_uid);
	if (dev)
		return dev;

	return bus_find_device(&pci_bus_type, NULL, &data, match_hid_uid);
531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602
}

static bool acpi_lpss_dep(struct acpi_device *adev, acpi_handle handle)
{
	struct acpi_handle_list dep_devices;
	acpi_status status;
	int i;

	if (!acpi_has_method(adev->handle, "_DEP"))
		return false;

	status = acpi_evaluate_reference(adev->handle, "_DEP", NULL,
					 &dep_devices);
	if (ACPI_FAILURE(status)) {
		dev_dbg(&adev->dev, "Failed to evaluate _DEP.\n");
		return false;
	}

	for (i = 0; i < dep_devices.count; i++) {
		if (dep_devices.handles[i] == handle)
			return true;
	}

	return false;
}

static void acpi_lpss_link_consumer(struct device *dev1,
				    const struct lpss_device_links *link)
{
	struct device *dev2;

	dev2 = acpi_lpss_find_device(link->consumer_hid, link->consumer_uid);
	if (!dev2)
		return;

	if (acpi_lpss_dep(ACPI_COMPANION(dev2), ACPI_HANDLE(dev1)))
		device_link_add(dev2, dev1, link->flags);

	put_device(dev2);
}

static void acpi_lpss_link_supplier(struct device *dev1,
				    const struct lpss_device_links *link)
{
	struct device *dev2;

	dev2 = acpi_lpss_find_device(link->supplier_hid, link->supplier_uid);
	if (!dev2)
		return;

	if (acpi_lpss_dep(ACPI_COMPANION(dev1), ACPI_HANDLE(dev2)))
		device_link_add(dev1, dev2, link->flags);

	put_device(dev2);
}

static void acpi_lpss_create_device_links(struct acpi_device *adev,
					  struct platform_device *pdev)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(lpss_device_links); i++) {
		const struct lpss_device_links *link = &lpss_device_links[i];

		if (acpi_lpss_is_supplier(adev, link))
			acpi_lpss_link_consumer(&pdev->dev, link);

		if (acpi_lpss_is_consumer(adev, link))
			acpi_lpss_link_supplier(&pdev->dev, link);
	}
}

603 604 605
static int acpi_lpss_create_device(struct acpi_device *adev,
				   const struct acpi_device_id *id)
{
606
	const struct lpss_device_desc *dev_desc;
607
	struct lpss_private_data *pdata;
608
	struct resource_entry *rentry;
609
	struct list_head resource_list;
610
	struct platform_device *pdev;
611 612
	int ret;

613
	dev_desc = (const struct lpss_device_desc *)id->driver_data;
614
	if (!dev_desc) {
615
		pdev = acpi_create_platform_device(adev, NULL);
616 617
		return IS_ERR_OR_NULL(pdev) ? PTR_ERR(pdev) : 1;
	}
618 619 620 621 622 623 624 625 626 627
	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)
628
		if (resource_type(rentry->res) == IORESOURCE_MEM) {
629 630 631
			if (dev_desc->prv_size_override)
				pdata->mmio_size = dev_desc->prv_size_override;
			else
632 633
				pdata->mmio_size = resource_size(rentry->res);
			pdata->mmio_base = ioremap(rentry->res->start,
634 635 636 637 638 639
						   pdata->mmio_size);
			break;
		}

	acpi_dev_free_resource_list(&resource_list);

640
	if (!pdata->mmio_base) {
641 642
		/* Avoid acpi_bus_attach() instantiating a pdev for this dev. */
		adev->pnp.type.platform_id = 0;
643 644
		/* Skip the device, but continue the namespace scan. */
		ret = 0;
645 646 647
		goto err_out;
	}

648
	pdata->adev = adev;
649 650
	pdata->dev_desc = dev_desc;

651 652 653
	if (dev_desc->setup)
		dev_desc->setup(pdata);

H
Heikki Krogerus 已提交
654
	if (dev_desc->flags & LPSS_CLK) {
655 656
		ret = register_device_clock(adev, pdata);
		if (ret) {
657 658 659
			/* Skip the device, but continue the namespace scan. */
			ret = 0;
			goto err_out;
660 661 662
		}
	}

663 664 665 666 667 668 669 670 671 672 673 674
	/*
	 * 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;
	}

675
	adev->driver_data = pdata;
676
	pdev = acpi_create_platform_device(adev, dev_desc->properties);
677
	if (!IS_ERR_OR_NULL(pdev)) {
678
		acpi_lpss_create_device_links(adev, pdev);
679 680
		return 1;
	}
681

682
	ret = PTR_ERR(pdev);
683 684 685 686 687 688 689
	adev->driver_data = NULL;

 err_out:
	kfree(pdata);
	return ret;
}

690 691 692 693 694 695 696 697 698 699 700
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);
}

701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
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;
	}
722
	*val = __lpss_reg_read(pdata, reg);
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769

 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,
};

770
static const struct attribute_group lpss_attr_group = {
771 772 773 774
	.attrs = lpss_attrs,
	.name = "lpss_ltr",
};

775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
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);
	}
}

806 807 808 809
#ifdef CONFIG_PM
/**
 * acpi_lpss_save_ctx() - Save the private registers of LPSS device
 * @dev: LPSS device
810
 * @pdata: pointer to the private data of the LPSS device
811 812 813 814 815
 *
 * 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.
 */
816 817
static void acpi_lpss_save_ctx(struct device *dev,
			       struct lpss_private_data *pdata)
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832
{
	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
833
 * @pdata: pointer to the private data of the LPSS device
834 835 836
 *
 * Restores the registers that were previously stored with acpi_lpss_save_ctx().
 */
837 838
static void acpi_lpss_restore_ctx(struct device *dev,
				  struct lpss_private_data *pdata)
839 840 841
{
	unsigned int i;

842 843 844 845 846 847 848 849 850 851 852
	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);
	}
}

static void acpi_lpss_d3_to_d0_delay(struct lpss_private_data *pdata)
{
853 854 855 856
	/*
	 * 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
857
	 * transition. However some platforms like BSW does not need this delay.
858
	 */
859 860 861 862 863 864
	unsigned int delay = 10;	/* default 10ms delay */

	if (pdata->dev_desc->flags & LPSS_NO_D3_DELAY)
		delay = 0;

	msleep(delay);
865 866
}

867 868 869 870 871
static int acpi_lpss_activate(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;

872
	ret = acpi_dev_resume(dev);
873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891
	if (ret)
		return ret;

	acpi_lpss_d3_to_d0_delay(pdata);

	/*
	 * This is called only on ->probe() stage where a device is either in
	 * known state defined by BIOS or most likely powered off. Due to this
	 * we have to deassert reset line to be sure that ->probe() will
	 * recognize the device.
	 */
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		lpss_deassert_reset(pdata);

	return 0;
}

static void acpi_lpss_dismiss(struct device *dev)
{
892
	acpi_dev_suspend(dev, false);
893 894
}

895 896 897 898 899 900 901 902 903 904 905 906 907 908
/* IOSF SB for LPSS island */
#define LPSS_IOSF_UNIT_LPIOEP		0xA0
#define LPSS_IOSF_UNIT_LPIO1		0xAB
#define LPSS_IOSF_UNIT_LPIO2		0xAC

#define LPSS_IOSF_PMCSR			0x84
#define LPSS_PMCSR_D0			0
#define LPSS_PMCSR_D3hot		3
#define LPSS_PMCSR_Dx_MASK		GENMASK(1, 0)

#define LPSS_IOSF_GPIODEF0		0x154
#define LPSS_GPIODEF0_DMA1_D3		BIT(2)
#define LPSS_GPIODEF0_DMA2_D3		BIT(3)
#define LPSS_GPIODEF0_DMA_D3_MASK	GENMASK(3, 2)
909
#define LPSS_GPIODEF0_DMA_LLP		BIT(13)
910 911

static DEFINE_MUTEX(lpss_iosf_mutex);
912
static bool lpss_iosf_d3_entered = true;
913 914 915 916

static void lpss_iosf_enter_d3_state(void)
{
	u32 value1 = 0;
917
	u32 mask1 = LPSS_GPIODEF0_DMA_D3_MASK | LPSS_GPIODEF0_DMA_LLP;
918 919 920 921 922 923 924
	u32 value2 = LPSS_PMCSR_D3hot;
	u32 mask2 = LPSS_PMCSR_Dx_MASK;
	/*
	 * PMC provides an information about actual status of the LPSS devices.
	 * Here we read the values related to LPSS power island, i.e. LPSS
	 * devices, excluding both LPSS DMA controllers, along with SCC domain.
	 */
925
	u32 func_dis, d3_sts_0, pmc_status;
926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
	int ret;

	ret = pmc_atom_read(PMC_FUNC_DIS, &func_dis);
	if (ret)
		return;

	mutex_lock(&lpss_iosf_mutex);

	ret = pmc_atom_read(PMC_D3_STS_0, &d3_sts_0);
	if (ret)
		goto exit;

	/*
	 * Get the status of entire LPSS power island per device basis.
	 * Shutdown both LPSS DMA controllers if and only if all other devices
	 * are already in D3hot.
	 */
943
	pmc_status = (~(d3_sts_0 | func_dis)) & pmc_atom_d3_mask;
944 945 946 947 948 949 950 951 952 953 954
	if (pmc_status)
		goto exit;

	iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO1, MBI_CFG_WRITE,
			LPSS_IOSF_PMCSR, value2, mask2);

	iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO2, MBI_CFG_WRITE,
			LPSS_IOSF_PMCSR, value2, mask2);

	iosf_mbi_modify(LPSS_IOSF_UNIT_LPIOEP, MBI_CR_WRITE,
			LPSS_IOSF_GPIODEF0, value1, mask1);
955 956 957

	lpss_iosf_d3_entered = true;

958 959 960 961 962 963
exit:
	mutex_unlock(&lpss_iosf_mutex);
}

static void lpss_iosf_exit_d3_state(void)
{
964 965 966
	u32 value1 = LPSS_GPIODEF0_DMA1_D3 | LPSS_GPIODEF0_DMA2_D3 |
		     LPSS_GPIODEF0_DMA_LLP;
	u32 mask1 = LPSS_GPIODEF0_DMA_D3_MASK | LPSS_GPIODEF0_DMA_LLP;
967 968 969 970 971
	u32 value2 = LPSS_PMCSR_D0;
	u32 mask2 = LPSS_PMCSR_Dx_MASK;

	mutex_lock(&lpss_iosf_mutex);

972 973 974 975 976
	if (!lpss_iosf_d3_entered)
		goto exit;

	lpss_iosf_d3_entered = false;

977 978 979 980 981 982 983 984 985
	iosf_mbi_modify(LPSS_IOSF_UNIT_LPIOEP, MBI_CR_WRITE,
			LPSS_IOSF_GPIODEF0, value1, mask1);

	iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO2, MBI_CFG_WRITE,
			LPSS_IOSF_PMCSR, value2, mask2);

	iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO1, MBI_CFG_WRITE,
			LPSS_IOSF_PMCSR, value2, mask2);

986
exit:
987 988 989
	mutex_unlock(&lpss_iosf_mutex);
}

990
static int acpi_lpss_suspend(struct device *dev, bool wakeup)
991
{
992 993
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;
994

995 996 997
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		acpi_lpss_save_ctx(dev, pdata);

998
	ret = acpi_dev_suspend(dev, wakeup);
999 1000 1001 1002 1003 1004

	/*
	 * This call must be last in the sequence, otherwise PMC will return
	 * wrong status for devices being about to be powered off. See
	 * lpss_iosf_enter_d3_state() for further information.
	 */
1005
	if (acpi_target_system_state() == ACPI_STATE_S0 &&
1006
	    lpss_quirks & LPSS_QUIRK_ALWAYS_POWER_ON && iosf_mbi_available())
1007 1008 1009
		lpss_iosf_enter_d3_state();

	return ret;
1010 1011
}

1012
static int acpi_lpss_resume(struct device *dev)
1013
{
1014 1015
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;
1016

1017 1018 1019 1020
	/*
	 * This call is kept first to be in symmetry with
	 * acpi_lpss_runtime_suspend() one.
	 */
1021
	if (lpss_quirks & LPSS_QUIRK_ALWAYS_POWER_ON && iosf_mbi_available())
1022 1023
		lpss_iosf_exit_d3_state();

1024
	ret = acpi_dev_resume(dev);
1025 1026 1027
	if (ret)
		return ret;

1028 1029
	acpi_lpss_d3_to_d0_delay(pdata);

1030 1031 1032
	if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
		acpi_lpss_restore_ctx(dev, pdata);

1033 1034 1035 1036
	return 0;
}

#ifdef CONFIG_PM_SLEEP
1037
static int acpi_lpss_do_suspend_late(struct device *dev)
1038
{
1039 1040 1041 1042
	int ret;

	if (dev_pm_smart_suspend_and_suspended(dev))
		return 0;
1043

1044
	ret = pm_generic_suspend_late(dev);
1045
	return ret ? ret : acpi_lpss_suspend(dev, device_may_wakeup(dev));
1046 1047
}

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072
static int acpi_lpss_suspend_late(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));

	if (pdata->dev_desc->resume_from_noirq)
		return 0;

	return acpi_lpss_do_suspend_late(dev);
}

static int acpi_lpss_suspend_noirq(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;

	if (pdata->dev_desc->resume_from_noirq) {
		ret = acpi_lpss_do_suspend_late(dev);
		if (ret)
			return ret;
	}

	return acpi_subsys_suspend_noirq(dev);
}

static int acpi_lpss_do_resume_early(struct device *dev)
1073
{
1074
	int ret = acpi_lpss_resume(dev);
1075 1076 1077

	return ret ? ret : pm_generic_resume_early(dev);
}
1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103

static int acpi_lpss_resume_early(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));

	if (pdata->dev_desc->resume_from_noirq)
		return 0;

	return acpi_lpss_do_resume_early(dev);
}

static int acpi_lpss_resume_noirq(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
	int ret;

	ret = acpi_subsys_resume_noirq(dev);
	if (ret)
		return ret;

	if (!dev_pm_may_skip_resume(dev) && pdata->dev_desc->resume_from_noirq)
		ret = acpi_lpss_do_resume_early(dev);

	return ret;
}

1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
#endif /* CONFIG_PM_SLEEP */

static int acpi_lpss_runtime_suspend(struct device *dev)
{
	int ret = pm_generic_runtime_suspend(dev);

	return ret ? ret : acpi_lpss_suspend(dev, true);
}

static int acpi_lpss_runtime_resume(struct device *dev)
{
1115
	int ret = acpi_lpss_resume(dev);
1116 1117

	return ret ? ret : pm_generic_runtime_resume(dev);
1118 1119 1120 1121
}
#endif /* CONFIG_PM */

static struct dev_pm_domain acpi_lpss_pm_domain = {
1122 1123 1124 1125
#ifdef CONFIG_PM
	.activate = acpi_lpss_activate,
	.dismiss = acpi_lpss_dismiss,
#endif
1126
	.ops = {
1127
#ifdef CONFIG_PM
1128 1129
#ifdef CONFIG_PM_SLEEP
		.prepare = acpi_subsys_prepare,
1130
		.complete = acpi_subsys_complete,
1131
		.suspend = acpi_subsys_suspend,
1132
		.suspend_late = acpi_lpss_suspend_late,
1133 1134
		.suspend_noirq = acpi_lpss_suspend_noirq,
		.resume_noirq = acpi_lpss_resume_noirq,
1135
		.resume_early = acpi_lpss_resume_early,
1136
		.freeze = acpi_subsys_freeze,
1137 1138 1139
		.freeze_late = acpi_subsys_freeze_late,
		.freeze_noirq = acpi_subsys_freeze_noirq,
		.thaw_noirq = acpi_subsys_thaw_noirq,
1140
		.poweroff = acpi_subsys_suspend,
1141
		.poweroff_late = acpi_lpss_suspend_late,
1142 1143
		.poweroff_noirq = acpi_lpss_suspend_noirq,
		.restore_noirq = acpi_lpss_resume_noirq,
1144
		.restore_early = acpi_lpss_resume_early,
1145 1146 1147 1148 1149 1150 1151
#endif
		.runtime_suspend = acpi_lpss_runtime_suspend,
		.runtime_resume = acpi_lpss_runtime_resume,
#endif
	},
};

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
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);
1168
	if (!pdata)
1169 1170
		return 0;

1171 1172
	if (pdata->mmio_base &&
	    pdata->mmio_size < pdata->dev_desc->prv_offset + LPSS_LTR_SIZE) {
1173 1174 1175 1176
		dev_err(&pdev->dev, "MMIO size insufficient to access LTR\n");
		return 0;
	}

1177
	switch (action) {
1178
	case BUS_NOTIFY_BIND_DRIVER:
1179
		dev_pm_domain_set(&pdev->dev, &acpi_lpss_pm_domain);
1180
		break;
1181
	case BUS_NOTIFY_DRIVER_NOT_BOUND:
1182
	case BUS_NOTIFY_UNBOUND_DRIVER:
1183
		dev_pm_domain_set(&pdev->dev, NULL);
1184 1185
		break;
	case BUS_NOTIFY_ADD_DEVICE:
1186
		dev_pm_domain_set(&pdev->dev, &acpi_lpss_pm_domain);
H
Heikki Krogerus 已提交
1187
		if (pdata->dev_desc->flags & LPSS_LTR)
1188 1189
			return sysfs_create_group(&pdev->dev.kobj,
						  &lpss_attr_group);
1190
		break;
1191
	case BUS_NOTIFY_DEL_DEVICE:
H
Heikki Krogerus 已提交
1192
		if (pdata->dev_desc->flags & LPSS_LTR)
1193
			sysfs_remove_group(&pdev->dev.kobj, &lpss_attr_group);
1194
		dev_pm_domain_set(&pdev->dev, NULL);
1195
		break;
1196 1197 1198
	default:
		break;
	}
1199

1200
	return 0;
1201 1202 1203 1204 1205 1206
}

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

1207 1208 1209 1210
static void acpi_lpss_bind(struct device *dev)
{
	struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));

H
Heikki Krogerus 已提交
1211
	if (!pdata || !pdata->mmio_base || !(pdata->dev_desc->flags & LPSS_LTR))
1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
		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;
}

1225 1226 1227
static struct acpi_scan_handler lpss_handler = {
	.ids = acpi_lpss_device_ids,
	.attach = acpi_lpss_create_device,
1228 1229
	.bind = acpi_lpss_bind,
	.unbind = acpi_lpss_unbind,
1230 1231 1232 1233
};

void __init acpi_lpss_init(void)
{
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
	const struct x86_cpu_id *id;
	int ret;

	ret = lpt_clk_init();
	if (ret)
		return;

	id = x86_match_cpu(lpss_cpu_ids);
	if (id)
		lpss_quirks |= LPSS_QUIRK_ALWAYS_POWER_ON;

	bus_register_notifier(&platform_bus_type, &acpi_lpss_nb);
	acpi_scan_add_handler(&lpss_handler);
1247
}
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260

#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 */