2 * ACPI support for Intel Lynxpoint LPSS.
4 * Copyright (C) 2013, Intel Corporation
5 * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
6 * Rafael J. Wysocki <rafael.j.wysocki@intel.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/acpi.h>
14 #include <linux/clkdev.h>
15 #include <linux/clk-provider.h>
16 #include <linux/err.h>
18 #include <linux/mutex.h>
19 #include <linux/platform_device.h>
20 #include <linux/platform_data/clk-lpss.h>
21 #include <linux/platform_data/x86/pmc_atom.h>
22 #include <linux/pm_domain.h>
23 #include <linux/pm_runtime.h>
24 #include <linux/pwm.h>
25 #include <linux/delay.h>
29 ACPI_MODULE_NAME("acpi_lpss");
31 #ifdef CONFIG_X86_INTEL_LPSS
33 #include <asm/cpu_device_id.h>
34 #include <asm/intel-family.h>
35 #include <asm/iosf_mbi.h>
37 #define LPSS_ADDR(desc) ((unsigned long)&desc)
39 #define LPSS_CLK_SIZE 0x04
40 #define LPSS_LTR_SIZE 0x18
42 /* Offsets relative to LPSS_PRIVATE_OFFSET */
43 #define LPSS_CLK_DIVIDER_DEF_MASK (BIT(1) | BIT(16))
44 #define LPSS_RESETS 0x04
45 #define LPSS_RESETS_RESET_FUNC BIT(0)
46 #define LPSS_RESETS_RESET_APB BIT(1)
47 #define LPSS_GENERAL 0x08
48 #define LPSS_GENERAL_LTR_MODE_SW BIT(2)
49 #define LPSS_GENERAL_UART_RTS_OVRD BIT(3)
50 #define LPSS_SW_LTR 0x10
51 #define LPSS_AUTO_LTR 0x14
52 #define LPSS_LTR_SNOOP_REQ BIT(15)
53 #define LPSS_LTR_SNOOP_MASK 0x0000FFFF
54 #define LPSS_LTR_SNOOP_LAT_1US 0x800
55 #define LPSS_LTR_SNOOP_LAT_32US 0xC00
56 #define LPSS_LTR_SNOOP_LAT_SHIFT 5
57 #define LPSS_LTR_SNOOP_LAT_CUTOFF 3000
58 #define LPSS_LTR_MAX_VAL 0x3FF
59 #define LPSS_TX_INT 0x20
60 #define LPSS_TX_INT_MASK BIT(1)
62 #define LPSS_PRV_REG_COUNT 9
65 #define LPSS_CLK BIT(0)
66 #define LPSS_CLK_GATE BIT(1)
67 #define LPSS_CLK_DIVIDER BIT(2)
68 #define LPSS_LTR BIT(3)
69 #define LPSS_SAVE_CTX BIT(4)
70 #define LPSS_NO_D3_DELAY BIT(5)
72 /* Crystal Cove PMIC shares same ACPI ID between different platforms */
76 struct lpss_private_data
;
78 struct lpss_device_desc
{
80 const char *clk_con_id
;
81 unsigned int prv_offset
;
82 size_t prv_size_override
;
83 struct property_entry
*properties
;
84 void (*setup
)(struct lpss_private_data
*pdata
);
87 static const struct lpss_device_desc lpss_dma_desc
= {
91 struct lpss_private_data
{
92 struct acpi_device
*adev
;
93 void __iomem
*mmio_base
;
94 resource_size_t mmio_size
;
95 unsigned int fixed_clk_rate
;
97 const struct lpss_device_desc
*dev_desc
;
98 u32 prv_reg_ctx
[LPSS_PRV_REG_COUNT
];
101 /* LPSS run time quirks */
102 static unsigned int lpss_quirks
;
105 * LPSS_QUIRK_ALWAYS_POWER_ON: override power state for LPSS DMA device.
107 * The LPSS DMA controller has neither _PS0 nor _PS3 method. Moreover
108 * it can be powered off automatically whenever the last LPSS device goes down.
109 * In case of no power any access to the DMA controller will hang the system.
110 * The behaviour is reproduced on some HP laptops based on Intel BayTrail as
111 * well as on ASuS T100TA transformer.
113 * This quirk overrides power state of entire LPSS island to keep DMA powered
114 * on whenever we have at least one other device in use.
116 #define LPSS_QUIRK_ALWAYS_POWER_ON BIT(0)
118 /* UART Component Parameter Register */
119 #define LPSS_UART_CPR 0xF4
120 #define LPSS_UART_CPR_AFCE BIT(4)
122 static void lpss_uart_setup(struct lpss_private_data
*pdata
)
127 offset
= pdata
->dev_desc
->prv_offset
+ LPSS_TX_INT
;
128 val
= readl(pdata
->mmio_base
+ offset
);
129 writel(val
| LPSS_TX_INT_MASK
, pdata
->mmio_base
+ offset
);
131 val
= readl(pdata
->mmio_base
+ LPSS_UART_CPR
);
132 if (!(val
& LPSS_UART_CPR_AFCE
)) {
133 offset
= pdata
->dev_desc
->prv_offset
+ LPSS_GENERAL
;
134 val
= readl(pdata
->mmio_base
+ offset
);
135 val
|= LPSS_GENERAL_UART_RTS_OVRD
;
136 writel(val
, pdata
->mmio_base
+ offset
);
140 static void lpss_deassert_reset(struct lpss_private_data
*pdata
)
145 offset
= pdata
->dev_desc
->prv_offset
+ LPSS_RESETS
;
146 val
= readl(pdata
->mmio_base
+ offset
);
147 val
|= LPSS_RESETS_RESET_APB
| LPSS_RESETS_RESET_FUNC
;
148 writel(val
, pdata
->mmio_base
+ offset
);
152 * BYT PWM used for backlight control by the i915 driver on systems without
153 * the Crystal Cove PMIC.
155 static struct pwm_lookup byt_pwm_lookup
[] = {
156 PWM_LOOKUP_WITH_MODULE("80860F09:00", 0, "0000:00:02.0",
157 "pwm_backlight", 0, PWM_POLARITY_NORMAL
,
158 "pwm-lpss-platform"),
161 static void byt_pwm_setup(struct lpss_private_data
*pdata
)
163 struct acpi_device
*adev
= pdata
->adev
;
165 /* Only call pwm_add_table for the first PWM controller */
166 if (!adev
->pnp
.unique_id
|| strcmp(adev
->pnp
.unique_id
, "1"))
169 if (!acpi_dev_present("INT33FD", NULL
, BYT_CRC_HRV
))
170 pwm_add_table(byt_pwm_lookup
, ARRAY_SIZE(byt_pwm_lookup
));
173 #define LPSS_I2C_ENABLE 0x6c
175 static void byt_i2c_setup(struct lpss_private_data
*pdata
)
177 lpss_deassert_reset(pdata
);
179 if (readl(pdata
->mmio_base
+ pdata
->dev_desc
->prv_offset
))
180 pdata
->fixed_clk_rate
= 133000000;
182 writel(0, pdata
->mmio_base
+ LPSS_I2C_ENABLE
);
185 /* BSW PWM used for backlight control by the i915 driver */
186 static struct pwm_lookup bsw_pwm_lookup
[] = {
187 PWM_LOOKUP_WITH_MODULE("80862288:00", 0, "0000:00:02.0",
188 "pwm_backlight", 0, PWM_POLARITY_NORMAL
,
189 "pwm-lpss-platform"),
192 static void bsw_pwm_setup(struct lpss_private_data
*pdata
)
194 struct acpi_device
*adev
= pdata
->adev
;
196 /* Only call pwm_add_table for the first PWM controller */
197 if (!adev
->pnp
.unique_id
|| strcmp(adev
->pnp
.unique_id
, "1"))
200 pwm_add_table(bsw_pwm_lookup
, ARRAY_SIZE(bsw_pwm_lookup
));
203 static const struct lpss_device_desc lpt_dev_desc
= {
204 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_CLK_DIVIDER
| LPSS_LTR
,
208 static const struct lpss_device_desc lpt_i2c_dev_desc
= {
209 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_LTR
,
213 static struct property_entry uart_properties
[] = {
214 PROPERTY_ENTRY_U32("reg-io-width", 4),
215 PROPERTY_ENTRY_U32("reg-shift", 2),
216 PROPERTY_ENTRY_BOOL("snps,uart-16550-compatible"),
220 static const struct lpss_device_desc lpt_uart_dev_desc
= {
221 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_CLK_DIVIDER
| LPSS_LTR
,
222 .clk_con_id
= "baudclk",
224 .setup
= lpss_uart_setup
,
225 .properties
= uart_properties
,
228 static const struct lpss_device_desc lpt_sdio_dev_desc
= {
230 .prv_offset
= 0x1000,
231 .prv_size_override
= 0x1018,
234 static const struct lpss_device_desc byt_pwm_dev_desc
= {
235 .flags
= LPSS_SAVE_CTX
,
237 .setup
= byt_pwm_setup
,
240 static const struct lpss_device_desc bsw_pwm_dev_desc
= {
241 .flags
= LPSS_SAVE_CTX
| LPSS_NO_D3_DELAY
,
243 .setup
= bsw_pwm_setup
,
246 static const struct lpss_device_desc byt_uart_dev_desc
= {
247 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_CLK_DIVIDER
| LPSS_SAVE_CTX
,
248 .clk_con_id
= "baudclk",
250 .setup
= lpss_uart_setup
,
251 .properties
= uart_properties
,
254 static const struct lpss_device_desc bsw_uart_dev_desc
= {
255 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_CLK_DIVIDER
| LPSS_SAVE_CTX
257 .clk_con_id
= "baudclk",
259 .setup
= lpss_uart_setup
,
260 .properties
= uart_properties
,
263 static const struct lpss_device_desc byt_spi_dev_desc
= {
264 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_CLK_DIVIDER
| LPSS_SAVE_CTX
,
268 static const struct lpss_device_desc byt_sdio_dev_desc
= {
272 static const struct lpss_device_desc byt_i2c_dev_desc
= {
273 .flags
= LPSS_CLK
| LPSS_SAVE_CTX
,
275 .setup
= byt_i2c_setup
,
278 static const struct lpss_device_desc bsw_i2c_dev_desc
= {
279 .flags
= LPSS_CLK
| LPSS_SAVE_CTX
| LPSS_NO_D3_DELAY
,
281 .setup
= byt_i2c_setup
,
284 static const struct lpss_device_desc bsw_spi_dev_desc
= {
285 .flags
= LPSS_CLK
| LPSS_CLK_GATE
| LPSS_CLK_DIVIDER
| LPSS_SAVE_CTX
288 .setup
= lpss_deassert_reset
,
291 #define ICPU(model) { X86_VENDOR_INTEL, 6, model, X86_FEATURE_ANY, }
293 static const struct x86_cpu_id lpss_cpu_ids
[] = {
294 ICPU(INTEL_FAM6_ATOM_SILVERMONT
), /* Valleyview, Bay Trail */
295 ICPU(INTEL_FAM6_ATOM_AIRMONT
), /* Braswell, Cherry Trail */
301 #define LPSS_ADDR(desc) (0UL)
303 #endif /* CONFIG_X86_INTEL_LPSS */
305 static const struct acpi_device_id acpi_lpss_device_ids
[] = {
306 /* Generic LPSS devices */
307 { "INTL9C60", LPSS_ADDR(lpss_dma_desc
) },
309 /* Lynxpoint LPSS devices */
310 { "INT33C0", LPSS_ADDR(lpt_dev_desc
) },
311 { "INT33C1", LPSS_ADDR(lpt_dev_desc
) },
312 { "INT33C2", LPSS_ADDR(lpt_i2c_dev_desc
) },
313 { "INT33C3", LPSS_ADDR(lpt_i2c_dev_desc
) },
314 { "INT33C4", LPSS_ADDR(lpt_uart_dev_desc
) },
315 { "INT33C5", LPSS_ADDR(lpt_uart_dev_desc
) },
316 { "INT33C6", LPSS_ADDR(lpt_sdio_dev_desc
) },
319 /* BayTrail LPSS devices */
320 { "80860F09", LPSS_ADDR(byt_pwm_dev_desc
) },
321 { "80860F0A", LPSS_ADDR(byt_uart_dev_desc
) },
322 { "80860F0E", LPSS_ADDR(byt_spi_dev_desc
) },
323 { "80860F14", LPSS_ADDR(byt_sdio_dev_desc
) },
324 { "80860F41", LPSS_ADDR(byt_i2c_dev_desc
) },
328 /* Braswell LPSS devices */
329 { "80862286", LPSS_ADDR(lpss_dma_desc
) },
330 { "80862288", LPSS_ADDR(bsw_pwm_dev_desc
) },
331 { "8086228A", LPSS_ADDR(bsw_uart_dev_desc
) },
332 { "8086228E", LPSS_ADDR(bsw_spi_dev_desc
) },
333 { "808622C0", LPSS_ADDR(lpss_dma_desc
) },
334 { "808622C1", LPSS_ADDR(bsw_i2c_dev_desc
) },
336 /* Broadwell LPSS devices */
337 { "INT3430", LPSS_ADDR(lpt_dev_desc
) },
338 { "INT3431", LPSS_ADDR(lpt_dev_desc
) },
339 { "INT3432", LPSS_ADDR(lpt_i2c_dev_desc
) },
340 { "INT3433", LPSS_ADDR(lpt_i2c_dev_desc
) },
341 { "INT3434", LPSS_ADDR(lpt_uart_dev_desc
) },
342 { "INT3435", LPSS_ADDR(lpt_uart_dev_desc
) },
343 { "INT3436", LPSS_ADDR(lpt_sdio_dev_desc
) },
346 /* Wildcat Point LPSS devices */
347 { "INT3438", LPSS_ADDR(lpt_dev_desc
) },
352 #ifdef CONFIG_X86_INTEL_LPSS
354 static int is_memory(struct acpi_resource
*res
, void *not_used
)
357 return !acpi_dev_resource_memory(res
, &r
);
360 /* LPSS main clock device. */
361 static struct platform_device
*lpss_clk_dev
;
363 static inline void lpt_register_clock_device(void)
365 lpss_clk_dev
= platform_device_register_simple("clk-lpt", -1, NULL
, 0);
368 static int register_device_clock(struct acpi_device
*adev
,
369 struct lpss_private_data
*pdata
)
371 const struct lpss_device_desc
*dev_desc
= pdata
->dev_desc
;
372 const char *devname
= dev_name(&adev
->dev
);
373 struct clk
*clk
= ERR_PTR(-ENODEV
);
374 struct lpss_clk_data
*clk_data
;
375 const char *parent
, *clk_name
;
376 void __iomem
*prv_base
;
379 lpt_register_clock_device();
381 clk_data
= platform_get_drvdata(lpss_clk_dev
);
386 if (!pdata
->mmio_base
387 || pdata
->mmio_size
< dev_desc
->prv_offset
+ LPSS_CLK_SIZE
)
390 parent
= clk_data
->name
;
391 prv_base
= pdata
->mmio_base
+ dev_desc
->prv_offset
;
393 if (pdata
->fixed_clk_rate
) {
394 clk
= clk_register_fixed_rate(NULL
, devname
, parent
, 0,
395 pdata
->fixed_clk_rate
);
399 if (dev_desc
->flags
& LPSS_CLK_GATE
) {
400 clk
= clk_register_gate(NULL
, devname
, parent
, 0,
401 prv_base
, 0, 0, NULL
);
405 if (dev_desc
->flags
& LPSS_CLK_DIVIDER
) {
406 /* Prevent division by zero */
407 if (!readl(prv_base
))
408 writel(LPSS_CLK_DIVIDER_DEF_MASK
, prv_base
);
410 clk_name
= kasprintf(GFP_KERNEL
, "%s-div", devname
);
413 clk
= clk_register_fractional_divider(NULL
, clk_name
, parent
,
415 1, 15, 16, 15, 0, NULL
);
418 clk_name
= kasprintf(GFP_KERNEL
, "%s-update", devname
);
423 clk
= clk_register_gate(NULL
, clk_name
, parent
,
424 CLK_SET_RATE_PARENT
| CLK_SET_RATE_GATE
,
425 prv_base
, 31, 0, NULL
);
434 clk_register_clkdev(clk
, dev_desc
->clk_con_id
, devname
);
438 static int acpi_lpss_create_device(struct acpi_device
*adev
,
439 const struct acpi_device_id
*id
)
441 const struct lpss_device_desc
*dev_desc
;
442 struct lpss_private_data
*pdata
;
443 struct resource_entry
*rentry
;
444 struct list_head resource_list
;
445 struct platform_device
*pdev
;
448 dev_desc
= (const struct lpss_device_desc
*)id
->driver_data
;
450 pdev
= acpi_create_platform_device(adev
, NULL
);
451 return IS_ERR_OR_NULL(pdev
) ? PTR_ERR(pdev
) : 1;
453 pdata
= kzalloc(sizeof(*pdata
), GFP_KERNEL
);
457 INIT_LIST_HEAD(&resource_list
);
458 ret
= acpi_dev_get_resources(adev
, &resource_list
, is_memory
, NULL
);
462 list_for_each_entry(rentry
, &resource_list
, node
)
463 if (resource_type(rentry
->res
) == IORESOURCE_MEM
) {
464 if (dev_desc
->prv_size_override
)
465 pdata
->mmio_size
= dev_desc
->prv_size_override
;
467 pdata
->mmio_size
= resource_size(rentry
->res
);
468 pdata
->mmio_base
= ioremap(rentry
->res
->start
,
473 acpi_dev_free_resource_list(&resource_list
);
475 if (!pdata
->mmio_base
) {
476 /* Avoid acpi_bus_attach() instantiating a pdev for this dev. */
477 adev
->pnp
.type
.platform_id
= 0;
478 /* Skip the device, but continue the namespace scan. */
484 pdata
->dev_desc
= dev_desc
;
487 dev_desc
->setup(pdata
);
489 if (dev_desc
->flags
& LPSS_CLK
) {
490 ret
= register_device_clock(adev
, pdata
);
492 /* Skip the device, but continue the namespace scan. */
499 * This works around a known issue in ACPI tables where LPSS devices
500 * have _PS0 and _PS3 without _PSC (and no power resources), so
501 * acpi_bus_init_power() will assume that the BIOS has put them into D0.
503 ret
= acpi_device_fix_up_power(adev
);
505 /* Skip the device, but continue the namespace scan. */
510 adev
->driver_data
= pdata
;
511 pdev
= acpi_create_platform_device(adev
, dev_desc
->properties
);
512 if (!IS_ERR_OR_NULL(pdev
)) {
517 adev
->driver_data
= NULL
;
524 static u32
__lpss_reg_read(struct lpss_private_data
*pdata
, unsigned int reg
)
526 return readl(pdata
->mmio_base
+ pdata
->dev_desc
->prv_offset
+ reg
);
529 static void __lpss_reg_write(u32 val
, struct lpss_private_data
*pdata
,
532 writel(val
, pdata
->mmio_base
+ pdata
->dev_desc
->prv_offset
+ reg
);
535 static int lpss_reg_read(struct device
*dev
, unsigned int reg
, u32
*val
)
537 struct acpi_device
*adev
;
538 struct lpss_private_data
*pdata
;
542 ret
= acpi_bus_get_device(ACPI_HANDLE(dev
), &adev
);
546 spin_lock_irqsave(&dev
->power
.lock
, flags
);
547 if (pm_runtime_suspended(dev
)) {
551 pdata
= acpi_driver_data(adev
);
552 if (WARN_ON(!pdata
|| !pdata
->mmio_base
)) {
556 *val
= __lpss_reg_read(pdata
, reg
);
559 spin_unlock_irqrestore(&dev
->power
.lock
, flags
);
563 static ssize_t
lpss_ltr_show(struct device
*dev
, struct device_attribute
*attr
,
570 reg
= strcmp(attr
->attr
.name
, "auto_ltr") ? LPSS_SW_LTR
: LPSS_AUTO_LTR
;
571 ret
= lpss_reg_read(dev
, reg
, <r_value
);
575 return snprintf(buf
, PAGE_SIZE
, "%08x\n", ltr_value
);
578 static ssize_t
lpss_ltr_mode_show(struct device
*dev
,
579 struct device_attribute
*attr
, char *buf
)
585 ret
= lpss_reg_read(dev
, LPSS_GENERAL
, <r_mode
);
589 outstr
= (ltr_mode
& LPSS_GENERAL_LTR_MODE_SW
) ? "sw" : "auto";
590 return sprintf(buf
, "%s\n", outstr
);
593 static DEVICE_ATTR(auto_ltr
, S_IRUSR
, lpss_ltr_show
, NULL
);
594 static DEVICE_ATTR(sw_ltr
, S_IRUSR
, lpss_ltr_show
, NULL
);
595 static DEVICE_ATTR(ltr_mode
, S_IRUSR
, lpss_ltr_mode_show
, NULL
);
597 static struct attribute
*lpss_attrs
[] = {
598 &dev_attr_auto_ltr
.attr
,
599 &dev_attr_sw_ltr
.attr
,
600 &dev_attr_ltr_mode
.attr
,
604 static const struct attribute_group lpss_attr_group
= {
609 static void acpi_lpss_set_ltr(struct device
*dev
, s32 val
)
611 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
612 u32 ltr_mode
, ltr_val
;
614 ltr_mode
= __lpss_reg_read(pdata
, LPSS_GENERAL
);
616 if (ltr_mode
& LPSS_GENERAL_LTR_MODE_SW
) {
617 ltr_mode
&= ~LPSS_GENERAL_LTR_MODE_SW
;
618 __lpss_reg_write(ltr_mode
, pdata
, LPSS_GENERAL
);
622 ltr_val
= __lpss_reg_read(pdata
, LPSS_SW_LTR
) & ~LPSS_LTR_SNOOP_MASK
;
623 if (val
>= LPSS_LTR_SNOOP_LAT_CUTOFF
) {
624 ltr_val
|= LPSS_LTR_SNOOP_LAT_32US
;
625 val
= LPSS_LTR_MAX_VAL
;
626 } else if (val
> LPSS_LTR_MAX_VAL
) {
627 ltr_val
|= LPSS_LTR_SNOOP_LAT_32US
| LPSS_LTR_SNOOP_REQ
;
628 val
>>= LPSS_LTR_SNOOP_LAT_SHIFT
;
630 ltr_val
|= LPSS_LTR_SNOOP_LAT_1US
| LPSS_LTR_SNOOP_REQ
;
633 __lpss_reg_write(ltr_val
, pdata
, LPSS_SW_LTR
);
634 if (!(ltr_mode
& LPSS_GENERAL_LTR_MODE_SW
)) {
635 ltr_mode
|= LPSS_GENERAL_LTR_MODE_SW
;
636 __lpss_reg_write(ltr_mode
, pdata
, LPSS_GENERAL
);
642 * acpi_lpss_save_ctx() - Save the private registers of LPSS device
644 * @pdata: pointer to the private data of the LPSS device
646 * Most LPSS devices have private registers which may loose their context when
647 * the device is powered down. acpi_lpss_save_ctx() saves those registers into
650 static void acpi_lpss_save_ctx(struct device
*dev
,
651 struct lpss_private_data
*pdata
)
655 for (i
= 0; i
< LPSS_PRV_REG_COUNT
; i
++) {
656 unsigned long offset
= i
* sizeof(u32
);
658 pdata
->prv_reg_ctx
[i
] = __lpss_reg_read(pdata
, offset
);
659 dev_dbg(dev
, "saving 0x%08x from LPSS reg at offset 0x%02lx\n",
660 pdata
->prv_reg_ctx
[i
], offset
);
665 * acpi_lpss_restore_ctx() - Restore the private registers of LPSS device
667 * @pdata: pointer to the private data of the LPSS device
669 * Restores the registers that were previously stored with acpi_lpss_save_ctx().
671 static void acpi_lpss_restore_ctx(struct device
*dev
,
672 struct lpss_private_data
*pdata
)
676 for (i
= 0; i
< LPSS_PRV_REG_COUNT
; i
++) {
677 unsigned long offset
= i
* sizeof(u32
);
679 __lpss_reg_write(pdata
->prv_reg_ctx
[i
], pdata
, offset
);
680 dev_dbg(dev
, "restoring 0x%08x to LPSS reg at offset 0x%02lx\n",
681 pdata
->prv_reg_ctx
[i
], offset
);
685 static void acpi_lpss_d3_to_d0_delay(struct lpss_private_data
*pdata
)
688 * The following delay is needed or the subsequent write operations may
689 * fail. The LPSS devices are actually PCI devices and the PCI spec
690 * expects 10ms delay before the device can be accessed after D3 to D0
691 * transition. However some platforms like BSW does not need this delay.
693 unsigned int delay
= 10; /* default 10ms delay */
695 if (pdata
->dev_desc
->flags
& LPSS_NO_D3_DELAY
)
701 static int acpi_lpss_activate(struct device
*dev
)
703 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
706 ret
= acpi_dev_runtime_resume(dev
);
710 acpi_lpss_d3_to_d0_delay(pdata
);
713 * This is called only on ->probe() stage where a device is either in
714 * known state defined by BIOS or most likely powered off. Due to this
715 * we have to deassert reset line to be sure that ->probe() will
716 * recognize the device.
718 if (pdata
->dev_desc
->flags
& LPSS_SAVE_CTX
)
719 lpss_deassert_reset(pdata
);
724 static void acpi_lpss_dismiss(struct device
*dev
)
726 acpi_dev_runtime_suspend(dev
);
729 #ifdef CONFIG_PM_SLEEP
730 static int acpi_lpss_suspend_late(struct device
*dev
)
732 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
735 ret
= pm_generic_suspend_late(dev
);
739 if (pdata
->dev_desc
->flags
& LPSS_SAVE_CTX
)
740 acpi_lpss_save_ctx(dev
, pdata
);
742 return acpi_dev_suspend_late(dev
);
745 static int acpi_lpss_resume_early(struct device
*dev
)
747 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
750 ret
= acpi_dev_resume_early(dev
);
754 acpi_lpss_d3_to_d0_delay(pdata
);
756 if (pdata
->dev_desc
->flags
& LPSS_SAVE_CTX
)
757 acpi_lpss_restore_ctx(dev
, pdata
);
759 return pm_generic_resume_early(dev
);
761 #endif /* CONFIG_PM_SLEEP */
763 /* IOSF SB for LPSS island */
764 #define LPSS_IOSF_UNIT_LPIOEP 0xA0
765 #define LPSS_IOSF_UNIT_LPIO1 0xAB
766 #define LPSS_IOSF_UNIT_LPIO2 0xAC
768 #define LPSS_IOSF_PMCSR 0x84
769 #define LPSS_PMCSR_D0 0
770 #define LPSS_PMCSR_D3hot 3
771 #define LPSS_PMCSR_Dx_MASK GENMASK(1, 0)
773 #define LPSS_IOSF_GPIODEF0 0x154
774 #define LPSS_GPIODEF0_DMA1_D3 BIT(2)
775 #define LPSS_GPIODEF0_DMA2_D3 BIT(3)
776 #define LPSS_GPIODEF0_DMA_D3_MASK GENMASK(3, 2)
777 #define LPSS_GPIODEF0_DMA_LLP BIT(13)
779 static DEFINE_MUTEX(lpss_iosf_mutex
);
781 static void lpss_iosf_enter_d3_state(void)
784 u32 mask1
= LPSS_GPIODEF0_DMA_D3_MASK
| LPSS_GPIODEF0_DMA_LLP
;
785 u32 value2
= LPSS_PMCSR_D3hot
;
786 u32 mask2
= LPSS_PMCSR_Dx_MASK
;
788 * PMC provides an information about actual status of the LPSS devices.
789 * Here we read the values related to LPSS power island, i.e. LPSS
790 * devices, excluding both LPSS DMA controllers, along with SCC domain.
792 u32 func_dis
, d3_sts_0
, pmc_status
, pmc_mask
= 0xfe000ffe;
795 ret
= pmc_atom_read(PMC_FUNC_DIS
, &func_dis
);
799 mutex_lock(&lpss_iosf_mutex
);
801 ret
= pmc_atom_read(PMC_D3_STS_0
, &d3_sts_0
);
806 * Get the status of entire LPSS power island per device basis.
807 * Shutdown both LPSS DMA controllers if and only if all other devices
808 * are already in D3hot.
810 pmc_status
= (~(d3_sts_0
| func_dis
)) & pmc_mask
;
814 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO1
, MBI_CFG_WRITE
,
815 LPSS_IOSF_PMCSR
, value2
, mask2
);
817 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO2
, MBI_CFG_WRITE
,
818 LPSS_IOSF_PMCSR
, value2
, mask2
);
820 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIOEP
, MBI_CR_WRITE
,
821 LPSS_IOSF_GPIODEF0
, value1
, mask1
);
823 mutex_unlock(&lpss_iosf_mutex
);
826 static void lpss_iosf_exit_d3_state(void)
828 u32 value1
= LPSS_GPIODEF0_DMA1_D3
| LPSS_GPIODEF0_DMA2_D3
|
829 LPSS_GPIODEF0_DMA_LLP
;
830 u32 mask1
= LPSS_GPIODEF0_DMA_D3_MASK
| LPSS_GPIODEF0_DMA_LLP
;
831 u32 value2
= LPSS_PMCSR_D0
;
832 u32 mask2
= LPSS_PMCSR_Dx_MASK
;
834 mutex_lock(&lpss_iosf_mutex
);
836 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIOEP
, MBI_CR_WRITE
,
837 LPSS_IOSF_GPIODEF0
, value1
, mask1
);
839 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO2
, MBI_CFG_WRITE
,
840 LPSS_IOSF_PMCSR
, value2
, mask2
);
842 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO1
, MBI_CFG_WRITE
,
843 LPSS_IOSF_PMCSR
, value2
, mask2
);
845 mutex_unlock(&lpss_iosf_mutex
);
848 static int acpi_lpss_runtime_suspend(struct device
*dev
)
850 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
853 ret
= pm_generic_runtime_suspend(dev
);
857 if (pdata
->dev_desc
->flags
& LPSS_SAVE_CTX
)
858 acpi_lpss_save_ctx(dev
, pdata
);
860 ret
= acpi_dev_runtime_suspend(dev
);
863 * This call must be last in the sequence, otherwise PMC will return
864 * wrong status for devices being about to be powered off. See
865 * lpss_iosf_enter_d3_state() for further information.
867 if (lpss_quirks
& LPSS_QUIRK_ALWAYS_POWER_ON
&& iosf_mbi_available())
868 lpss_iosf_enter_d3_state();
873 static int acpi_lpss_runtime_resume(struct device
*dev
)
875 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
879 * This call is kept first to be in symmetry with
880 * acpi_lpss_runtime_suspend() one.
882 if (lpss_quirks
& LPSS_QUIRK_ALWAYS_POWER_ON
&& iosf_mbi_available())
883 lpss_iosf_exit_d3_state();
885 ret
= acpi_dev_runtime_resume(dev
);
889 acpi_lpss_d3_to_d0_delay(pdata
);
891 if (pdata
->dev_desc
->flags
& LPSS_SAVE_CTX
)
892 acpi_lpss_restore_ctx(dev
, pdata
);
894 return pm_generic_runtime_resume(dev
);
896 #endif /* CONFIG_PM */
898 static struct dev_pm_domain acpi_lpss_pm_domain
= {
900 .activate
= acpi_lpss_activate
,
901 .dismiss
= acpi_lpss_dismiss
,
905 #ifdef CONFIG_PM_SLEEP
906 .prepare
= acpi_subsys_prepare
,
907 .complete
= pm_complete_with_resume_check
,
908 .suspend
= acpi_subsys_suspend
,
909 .suspend_late
= acpi_lpss_suspend_late
,
910 .resume_early
= acpi_lpss_resume_early
,
911 .freeze
= acpi_subsys_freeze
,
912 .poweroff
= acpi_subsys_suspend
,
913 .poweroff_late
= acpi_lpss_suspend_late
,
914 .restore_early
= acpi_lpss_resume_early
,
916 .runtime_suspend
= acpi_lpss_runtime_suspend
,
917 .runtime_resume
= acpi_lpss_runtime_resume
,
922 static int acpi_lpss_platform_notify(struct notifier_block
*nb
,
923 unsigned long action
, void *data
)
925 struct platform_device
*pdev
= to_platform_device(data
);
926 struct lpss_private_data
*pdata
;
927 struct acpi_device
*adev
;
928 const struct acpi_device_id
*id
;
930 id
= acpi_match_device(acpi_lpss_device_ids
, &pdev
->dev
);
931 if (!id
|| !id
->driver_data
)
934 if (acpi_bus_get_device(ACPI_HANDLE(&pdev
->dev
), &adev
))
937 pdata
= acpi_driver_data(adev
);
941 if (pdata
->mmio_base
&&
942 pdata
->mmio_size
< pdata
->dev_desc
->prv_offset
+ LPSS_LTR_SIZE
) {
943 dev_err(&pdev
->dev
, "MMIO size insufficient to access LTR\n");
948 case BUS_NOTIFY_BIND_DRIVER
:
949 dev_pm_domain_set(&pdev
->dev
, &acpi_lpss_pm_domain
);
951 case BUS_NOTIFY_DRIVER_NOT_BOUND
:
952 case BUS_NOTIFY_UNBOUND_DRIVER
:
953 dev_pm_domain_set(&pdev
->dev
, NULL
);
955 case BUS_NOTIFY_ADD_DEVICE
:
956 dev_pm_domain_set(&pdev
->dev
, &acpi_lpss_pm_domain
);
957 if (pdata
->dev_desc
->flags
& LPSS_LTR
)
958 return sysfs_create_group(&pdev
->dev
.kobj
,
961 case BUS_NOTIFY_DEL_DEVICE
:
962 if (pdata
->dev_desc
->flags
& LPSS_LTR
)
963 sysfs_remove_group(&pdev
->dev
.kobj
, &lpss_attr_group
);
964 dev_pm_domain_set(&pdev
->dev
, NULL
);
973 static struct notifier_block acpi_lpss_nb
= {
974 .notifier_call
= acpi_lpss_platform_notify
,
977 static void acpi_lpss_bind(struct device
*dev
)
979 struct lpss_private_data
*pdata
= acpi_driver_data(ACPI_COMPANION(dev
));
981 if (!pdata
|| !pdata
->mmio_base
|| !(pdata
->dev_desc
->flags
& LPSS_LTR
))
984 if (pdata
->mmio_size
>= pdata
->dev_desc
->prv_offset
+ LPSS_LTR_SIZE
)
985 dev
->power
.set_latency_tolerance
= acpi_lpss_set_ltr
;
987 dev_err(dev
, "MMIO size insufficient to access LTR\n");
990 static void acpi_lpss_unbind(struct device
*dev
)
992 dev
->power
.set_latency_tolerance
= NULL
;
995 static struct acpi_scan_handler lpss_handler
= {
996 .ids
= acpi_lpss_device_ids
,
997 .attach
= acpi_lpss_create_device
,
998 .bind
= acpi_lpss_bind
,
999 .unbind
= acpi_lpss_unbind
,
1002 void __init
acpi_lpss_init(void)
1004 const struct x86_cpu_id
*id
;
1007 ret
= lpt_clk_init();
1011 id
= x86_match_cpu(lpss_cpu_ids
);
1013 lpss_quirks
|= LPSS_QUIRK_ALWAYS_POWER_ON
;
1015 bus_register_notifier(&platform_bus_type
, &acpi_lpss_nb
);
1016 acpi_scan_add_handler(&lpss_handler
);
1021 static struct acpi_scan_handler lpss_handler
= {
1022 .ids
= acpi_lpss_device_ids
,
1025 void __init
acpi_lpss_init(void)
1027 acpi_scan_add_handler(&lpss_handler
);
1030 #endif /* CONFIG_X86_INTEL_LPSS */