Merge tag 'acpi-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael...
[linux-2.6-block.git] / drivers / acpi / x86 / lpss.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
f58b082a
RW
2/*
3 * ACPI support for Intel Lynxpoint LPSS.
4 *
3df2da96 5 * Copyright (C) 2013, Intel Corporation
f58b082a
RW
6 * Authors: Mika Westerberg <mika.westerberg@linux.intel.com>
7 * Rafael J. Wysocki <rafael.j.wysocki@intel.com>
f58b082a
RW
8 */
9
10#include <linux/acpi.h>
f58b082a
RW
11#include <linux/clkdev.h>
12#include <linux/clk-provider.h>
6025e2fa 13#include <linux/dmi.h>
f58b082a
RW
14#include <linux/err.h>
15#include <linux/io.h>
eebb3e8d 16#include <linux/mutex.h>
1e30124a 17#include <linux/pci.h>
f58b082a 18#include <linux/platform_device.h>
a9443a63 19#include <linux/platform_data/x86/clk-lpss.h>
80a7581f 20#include <linux/platform_data/x86/pmc_atom.h>
989561de 21#include <linux/pm_domain.h>
2e0f8822 22#include <linux/pm_runtime.h>
bf7696a1 23#include <linux/pwm.h>
620c803f 24#include <linux/pxa2xx_ssp.h>
a09c5913 25#include <linux/suspend.h>
c78b0830 26#include <linux/delay.h>
f58b082a 27
2d5d5abe 28#include "../internal.h"
f58b082a 29
d6ddaaac
RW
30#ifdef CONFIG_X86_INTEL_LPSS
31
eebb3e8d 32#include <asm/cpu_device_id.h>
4626d840 33#include <asm/intel-family.h>
eebb3e8d 34#include <asm/iosf_mbi.h>
eebb3e8d 35
d6ddaaac
RW
36#define LPSS_ADDR(desc) ((unsigned long)&desc)
37
f58b082a 38#define LPSS_CLK_SIZE 0x04
2e0f8822
RW
39#define LPSS_LTR_SIZE 0x18
40
41/* Offsets relative to LPSS_PRIVATE_OFFSET */
ed3a872e 42#define LPSS_CLK_DIVIDER_DEF_MASK (BIT(1) | BIT(16))
765bdd4e
MW
43#define LPSS_RESETS 0x04
44#define LPSS_RESETS_RESET_FUNC BIT(0)
45#define LPSS_RESETS_RESET_APB BIT(1)
2e0f8822
RW
46#define LPSS_GENERAL 0x08
47#define LPSS_GENERAL_LTR_MODE_SW BIT(2)
088f1fd2 48#define LPSS_GENERAL_UART_RTS_OVRD BIT(3)
2e0f8822
RW
49#define LPSS_SW_LTR 0x10
50#define LPSS_AUTO_LTR 0x14
1a8f8351
RW
51#define LPSS_LTR_SNOOP_REQ BIT(15)
52#define LPSS_LTR_SNOOP_MASK 0x0000FFFF
53#define LPSS_LTR_SNOOP_LAT_1US 0x800
54#define LPSS_LTR_SNOOP_LAT_32US 0xC00
55#define LPSS_LTR_SNOOP_LAT_SHIFT 5
56#define LPSS_LTR_SNOOP_LAT_CUTOFF 3000
57#define LPSS_LTR_MAX_VAL 0x3FF
06d86415
HK
58#define LPSS_TX_INT 0x20
59#define LPSS_TX_INT_MASK BIT(1)
f58b082a 60
c78b0830
HK
61#define LPSS_PRV_REG_COUNT 9
62
ff8c1af5
HK
63/* LPSS Flags */
64#define LPSS_CLK BIT(0)
65#define LPSS_CLK_GATE BIT(1)
66#define LPSS_CLK_DIVIDER BIT(2)
67#define LPSS_LTR BIT(3)
68#define LPSS_SAVE_CTX BIT(4)
15aa5e4c
HG
69/*
70 * For some devices the DSDT AML code for another device turns off the device
71 * before our suspend handler runs, causing us to read/save all 1-s (0xffffffff)
72 * as ctx register values.
73 * Luckily these devices always use the same ctx register values, so we can
74 * work around this by saving the ctx registers once on activation.
75 */
76#define LPSS_SAVE_CTX_ONCE BIT(5)
77#define LPSS_NO_D3_DELAY BIT(6)
f6272170 78
06d86415 79struct lpss_private_data;
f58b082a
RW
80
81struct lpss_device_desc {
ff8c1af5 82 unsigned int flags;
fcf0789a 83 const char *clk_con_id;
2e0f8822 84 unsigned int prv_offset;
958c4eb2 85 size_t prv_size_override;
f167c1a1 86 const struct property_entry *properties;
06d86415 87 void (*setup)(struct lpss_private_data *pdata);
48402cee 88 bool resume_from_noirq;
f58b082a
RW
89};
90
eebb3e8d 91static const struct lpss_device_desc lpss_dma_desc = {
3df2da96 92 .flags = LPSS_CLK,
b59cc200
RW
93};
94
f58b082a 95struct lpss_private_data {
dd242a08 96 struct acpi_device *adev;
f58b082a
RW
97 void __iomem *mmio_base;
98 resource_size_t mmio_size;
03f09f73 99 unsigned int fixed_clk_rate;
f58b082a
RW
100 struct clk *clk;
101 const struct lpss_device_desc *dev_desc;
c78b0830 102 u32 prv_reg_ctx[LPSS_PRV_REG_COUNT];
f58b082a
RW
103};
104
86b62e5c
HG
105/* Devices which need to be in D3 before lpss_iosf_enter_d3_state() proceeds */
106static u32 pmc_atom_d3_mask = 0xfe000ffe;
107
eebb3e8d
AS
108/* LPSS run time quirks */
109static unsigned int lpss_quirks;
110
111/*
112 * LPSS_QUIRK_ALWAYS_POWER_ON: override power state for LPSS DMA device.
113 *
fa9e93b1 114 * The LPSS DMA controller has neither _PS0 nor _PS3 method. Moreover
eebb3e8d
AS
115 * it can be powered off automatically whenever the last LPSS device goes down.
116 * In case of no power any access to the DMA controller will hang the system.
117 * The behaviour is reproduced on some HP laptops based on Intel BayTrail as
118 * well as on ASuS T100TA transformer.
119 *
120 * This quirk overrides power state of entire LPSS island to keep DMA powered
121 * on whenever we have at least one other device in use.
122 */
123#define LPSS_QUIRK_ALWAYS_POWER_ON BIT(0)
124
1f47a77c
HK
125/* UART Component Parameter Register */
126#define LPSS_UART_CPR 0xF4
127#define LPSS_UART_CPR_AFCE BIT(4)
128
06d86415
HK
129static void lpss_uart_setup(struct lpss_private_data *pdata)
130{
088f1fd2 131 unsigned int offset;
1f47a77c 132 u32 val;
06d86415 133
088f1fd2 134 offset = pdata->dev_desc->prv_offset + LPSS_TX_INT;
1f47a77c
HK
135 val = readl(pdata->mmio_base + offset);
136 writel(val | LPSS_TX_INT_MASK, pdata->mmio_base + offset);
137
138 val = readl(pdata->mmio_base + LPSS_UART_CPR);
139 if (!(val & LPSS_UART_CPR_AFCE)) {
140 offset = pdata->dev_desc->prv_offset + LPSS_GENERAL;
141 val = readl(pdata->mmio_base + offset);
142 val |= LPSS_GENERAL_UART_RTS_OVRD;
143 writel(val, pdata->mmio_base + offset);
144 }
06d86415
HK
145}
146
3095794a 147static void lpss_deassert_reset(struct lpss_private_data *pdata)
765bdd4e
MW
148{
149 unsigned int offset;
150 u32 val;
151
152 offset = pdata->dev_desc->prv_offset + LPSS_RESETS;
153 val = readl(pdata->mmio_base + offset);
154 val |= LPSS_RESETS_RESET_APB | LPSS_RESETS_RESET_FUNC;
155 writel(val, pdata->mmio_base + offset);
3095794a
MW
156}
157
04434ab5
HG
158/*
159 * BYT PWM used for backlight control by the i915 driver on systems without
160 * the Crystal Cove PMIC.
161 */
162static struct pwm_lookup byt_pwm_lookup[] = {
163 PWM_LOOKUP_WITH_MODULE("80860F09:00", 0, "0000:00:02.0",
b2147a3a 164 "pwm_soc_backlight", 0, PWM_POLARITY_NORMAL,
04434ab5
HG
165 "pwm-lpss-platform"),
166};
167
168static void byt_pwm_setup(struct lpss_private_data *pdata)
169{
dd242a08 170 /* Only call pwm_add_table for the first PWM controller */
5ecdb287
RJ
171 if (acpi_dev_uid_match(pdata->adev, 1))
172 pwm_add_table(byt_pwm_lookup, ARRAY_SIZE(byt_pwm_lookup));
04434ab5
HG
173}
174
3095794a
MW
175#define LPSS_I2C_ENABLE 0x6c
176
177static void byt_i2c_setup(struct lpss_private_data *pdata)
178{
86b62e5c
HG
179 acpi_handle handle = pdata->adev->handle;
180 unsigned long long shared_host = 0;
181 acpi_status status;
2a036e48 182 u64 uid;
86b62e5c 183
2a036e48
AS
184 /* Expected to always be successfull, but better safe then sorry */
185 if (!acpi_dev_uid_to_integer(pdata->adev, &uid) && uid) {
8e3ecc68
LS
186 /* Detect I2C bus shared with PUNIT and ignore its d3 status */
187 status = acpi_evaluate_integer(handle, "_SEM", NULL, &shared_host);
188 if (ACPI_SUCCESS(status) && shared_host)
189 pmc_atom_d3_mask &= ~(BIT_LPSS2_F1_I2C1 << (uid - 1));
190 }
86b62e5c 191
3095794a 192 lpss_deassert_reset(pdata);
765bdd4e 193
03f09f73
HK
194 if (readl(pdata->mmio_base + pdata->dev_desc->prv_offset))
195 pdata->fixed_clk_rate = 133000000;
3293c7b8
MW
196
197 writel(0, pdata->mmio_base + LPSS_I2C_ENABLE);
765bdd4e 198}
43218a1b 199
fa578bf5
HG
200/*
201 * BSW PWM1 is used for backlight control by the i915 driver
202 * BSW PWM2 is used for backlight control for fixed (etched into the glass)
203 * touch controls on some models. These touch-controls have specialized
204 * drivers which know they need the "pwm_soc_lpss_2" con-id.
205 */
bf7696a1
HG
206static struct pwm_lookup bsw_pwm_lookup[] = {
207 PWM_LOOKUP_WITH_MODULE("80862288:00", 0, "0000:00:02.0",
b2147a3a 208 "pwm_soc_backlight", 0, PWM_POLARITY_NORMAL,
bf7696a1 209 "pwm-lpss-platform"),
fa578bf5
HG
210 PWM_LOOKUP_WITH_MODULE("80862289:00", 0, NULL,
211 "pwm_soc_lpss_2", 0, PWM_POLARITY_NORMAL,
212 "pwm-lpss-platform"),
bf7696a1
HG
213};
214
215static void bsw_pwm_setup(struct lpss_private_data *pdata)
216{
dd242a08 217 /* Only call pwm_add_table for the first PWM controller */
5ecdb287
RJ
218 if (acpi_dev_uid_match(pdata->adev, 1))
219 pwm_add_table(bsw_pwm_lookup, ARRAY_SIZE(bsw_pwm_lookup));
bf7696a1
HG
220}
221
620c803f
AS
222static const struct property_entry lpt_spi_properties[] = {
223 PROPERTY_ENTRY_U32("intel,spi-pxa2xx-type", LPSS_LPT_SSP),
224 { }
225};
226
227static const struct lpss_device_desc lpt_spi_dev_desc = {
57b30064
JN
228 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_LTR
229 | LPSS_SAVE_CTX,
ed3a872e 230 .prv_offset = 0x800,
620c803f 231 .properties = lpt_spi_properties,
ed3a872e
HK
232};
233
b2687cd7 234static const struct lpss_device_desc lpt_i2c_dev_desc = {
57b30064 235 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_LTR | LPSS_SAVE_CTX,
2e0f8822 236 .prv_offset = 0x800,
2e0f8822
RW
237};
238
a5565cf2
HK
239static struct property_entry uart_properties[] = {
240 PROPERTY_ENTRY_U32("reg-io-width", 4),
241 PROPERTY_ENTRY_U32("reg-shift", 2),
242 PROPERTY_ENTRY_BOOL("snps,uart-16550-compatible"),
243 { },
244};
245
b2687cd7 246static const struct lpss_device_desc lpt_uart_dev_desc = {
57b30064
JN
247 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_LTR
248 | LPSS_SAVE_CTX,
fcf0789a 249 .clk_con_id = "baudclk",
06d86415 250 .prv_offset = 0x800,
06d86415 251 .setup = lpss_uart_setup,
a5565cf2 252 .properties = uart_properties,
2e0f8822
RW
253};
254
b2687cd7 255static const struct lpss_device_desc lpt_sdio_dev_desc = {
ff8c1af5 256 .flags = LPSS_LTR,
2e0f8822 257 .prv_offset = 0x1000,
958c4eb2 258 .prv_size_override = 0x1018,
e1c74817
CCE
259};
260
b2687cd7 261static const struct lpss_device_desc byt_pwm_dev_desc = {
3f56bf3e 262 .flags = LPSS_SAVE_CTX,
fdcb613d 263 .prv_offset = 0x800,
04434ab5 264 .setup = byt_pwm_setup,
e1c74817
CCE
265};
266
b00855ae 267static const struct lpss_device_desc bsw_pwm_dev_desc = {
15aa5e4c 268 .flags = LPSS_SAVE_CTX_ONCE | LPSS_NO_D3_DELAY,
fdcb613d 269 .prv_offset = 0x800,
bf7696a1 270 .setup = bsw_pwm_setup,
5e31ee84 271 .resume_from_noirq = true,
b00855ae
SK
272};
273
03c57b01
HG
274static const struct lpss_device_desc bsw_pwm2_dev_desc = {
275 .flags = LPSS_SAVE_CTX_ONCE | LPSS_NO_D3_DELAY,
276 .prv_offset = 0x800,
277 .resume_from_noirq = true,
278};
279
b2687cd7 280static const struct lpss_device_desc byt_uart_dev_desc = {
3df2da96 281 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX,
fcf0789a 282 .clk_con_id = "baudclk",
f6272170 283 .prv_offset = 0x800,
06d86415 284 .setup = lpss_uart_setup,
a5565cf2 285 .properties = uart_properties,
f6272170
MW
286};
287
b00855ae
SK
288static const struct lpss_device_desc bsw_uart_dev_desc = {
289 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX
290 | LPSS_NO_D3_DELAY,
291 .clk_con_id = "baudclk",
292 .prv_offset = 0x800,
293 .setup = lpss_uart_setup,
a5565cf2 294 .properties = uart_properties,
b00855ae
SK
295};
296
620c803f
AS
297static const struct property_entry byt_spi_properties[] = {
298 PROPERTY_ENTRY_U32("intel,spi-pxa2xx-type", LPSS_BYT_SSP),
299 { }
300};
301
b2687cd7 302static const struct lpss_device_desc byt_spi_dev_desc = {
3df2da96 303 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX,
f6272170 304 .prv_offset = 0x400,
620c803f 305 .properties = byt_spi_properties,
f6272170
MW
306};
307
b2687cd7 308static const struct lpss_device_desc byt_sdio_dev_desc = {
3df2da96 309 .flags = LPSS_CLK,
f6272170
MW
310};
311
b2687cd7 312static const struct lpss_device_desc byt_i2c_dev_desc = {
3df2da96 313 .flags = LPSS_CLK | LPSS_SAVE_CTX,
f6272170 314 .prv_offset = 0x800,
03f09f73 315 .setup = byt_i2c_setup,
48402cee 316 .resume_from_noirq = true,
1bfbd8eb
AC
317};
318
b00855ae
SK
319static const struct lpss_device_desc bsw_i2c_dev_desc = {
320 .flags = LPSS_CLK | LPSS_SAVE_CTX | LPSS_NO_D3_DELAY,
321 .prv_offset = 0x800,
322 .setup = byt_i2c_setup,
48402cee 323 .resume_from_noirq = true,
b00855ae
SK
324};
325
620c803f
AS
326static const struct property_entry bsw_spi_properties[] = {
327 PROPERTY_ENTRY_U32("intel,spi-pxa2xx-type", LPSS_BSW_SSP),
07b73ee5 328 PROPERTY_ENTRY_U32("num-cs", 2),
620c803f
AS
329 { }
330};
331
eebb3e8d 332static const struct lpss_device_desc bsw_spi_dev_desc = {
b00855ae
SK
333 .flags = LPSS_CLK | LPSS_CLK_GATE | LPSS_CLK_DIVIDER | LPSS_SAVE_CTX
334 | LPSS_NO_D3_DELAY,
3095794a
MW
335 .prv_offset = 0x400,
336 .setup = lpss_deassert_reset,
620c803f 337 .properties = bsw_spi_properties,
3095794a
MW
338};
339
eebb3e8d 340static const struct x86_cpu_id lpss_cpu_ids[] = {
e36cf2f7
TG
341 X86_MATCH_INTEL_FAM6_MODEL(ATOM_SILVERMONT, NULL),
342 X86_MATCH_INTEL_FAM6_MODEL(ATOM_AIRMONT, NULL),
eebb3e8d
AS
343 {}
344};
345
d6ddaaac
RW
346#else
347
348#define LPSS_ADDR(desc) (0UL)
349
350#endif /* CONFIG_X86_INTEL_LPSS */
351
f58b082a 352static const struct acpi_device_id acpi_lpss_device_ids[] = {
b59cc200 353 /* Generic LPSS devices */
d6ddaaac 354 { "INTL9C60", LPSS_ADDR(lpss_dma_desc) },
b59cc200 355
f58b082a 356 /* Lynxpoint LPSS devices */
620c803f
AS
357 { "INT33C0", LPSS_ADDR(lpt_spi_dev_desc) },
358 { "INT33C1", LPSS_ADDR(lpt_spi_dev_desc) },
d6ddaaac
RW
359 { "INT33C2", LPSS_ADDR(lpt_i2c_dev_desc) },
360 { "INT33C3", LPSS_ADDR(lpt_i2c_dev_desc) },
361 { "INT33C4", LPSS_ADDR(lpt_uart_dev_desc) },
362 { "INT33C5", LPSS_ADDR(lpt_uart_dev_desc) },
363 { "INT33C6", LPSS_ADDR(lpt_sdio_dev_desc) },
f58b082a 364
f6272170 365 /* BayTrail LPSS devices */
d6ddaaac
RW
366 { "80860F09", LPSS_ADDR(byt_pwm_dev_desc) },
367 { "80860F0A", LPSS_ADDR(byt_uart_dev_desc) },
368 { "80860F0E", LPSS_ADDR(byt_spi_dev_desc) },
369 { "80860F14", LPSS_ADDR(byt_sdio_dev_desc) },
370 { "80860F41", LPSS_ADDR(byt_i2c_dev_desc) },
f6272170 371
1bfbd8eb 372 /* Braswell LPSS devices */
24071406 373 { "80862286", LPSS_ADDR(lpss_dma_desc) },
b00855ae 374 { "80862288", LPSS_ADDR(bsw_pwm_dev_desc) },
03c57b01 375 { "80862289", LPSS_ADDR(bsw_pwm2_dev_desc) },
b00855ae 376 { "8086228A", LPSS_ADDR(bsw_uart_dev_desc) },
3095794a 377 { "8086228E", LPSS_ADDR(bsw_spi_dev_desc) },
24071406 378 { "808622C0", LPSS_ADDR(lpss_dma_desc) },
b00855ae 379 { "808622C1", LPSS_ADDR(bsw_i2c_dev_desc) },
1bfbd8eb 380
b00855ae 381 /* Broadwell LPSS devices */
620c803f
AS
382 { "INT3430", LPSS_ADDR(lpt_spi_dev_desc) },
383 { "INT3431", LPSS_ADDR(lpt_spi_dev_desc) },
d6ddaaac
RW
384 { "INT3432", LPSS_ADDR(lpt_i2c_dev_desc) },
385 { "INT3433", LPSS_ADDR(lpt_i2c_dev_desc) },
386 { "INT3434", LPSS_ADDR(lpt_uart_dev_desc) },
387 { "INT3435", LPSS_ADDR(lpt_uart_dev_desc) },
388 { "INT3436", LPSS_ADDR(lpt_sdio_dev_desc) },
a4d97536 389
ff8c1af5 390 /* Wildcat Point LPSS devices */
620c803f 391 { "INT3438", LPSS_ADDR(lpt_spi_dev_desc) },
43218a1b 392
f58b082a
RW
393 { }
394};
395
d6ddaaac
RW
396#ifdef CONFIG_X86_INTEL_LPSS
397
f58b082a
RW
398/* LPSS main clock device. */
399static struct platform_device *lpss_clk_dev;
400
401static inline void lpt_register_clock_device(void)
402{
cf0a9565
AS
403 lpss_clk_dev = platform_device_register_simple("clk-lpss-atom",
404 PLATFORM_DEVID_NONE,
405 NULL, 0);
f58b082a
RW
406}
407
408static int register_device_clock(struct acpi_device *adev,
409 struct lpss_private_data *pdata)
410{
411 const struct lpss_device_desc *dev_desc = pdata->dev_desc;
ed3a872e 412 const char *devname = dev_name(&adev->dev);
71c50dbe 413 struct clk *clk;
b59cc200 414 struct lpss_clk_data *clk_data;
ed3a872e
HK
415 const char *parent, *clk_name;
416 void __iomem *prv_base;
f58b082a
RW
417
418 if (!lpss_clk_dev)
419 lpt_register_clock_device();
420
b4f1f61e 421 if (IS_ERR(lpss_clk_dev))
422 return PTR_ERR(lpss_clk_dev);
423
b59cc200
RW
424 clk_data = platform_get_drvdata(lpss_clk_dev);
425 if (!clk_data)
426 return -ENODEV;
b0d00f8b 427 clk = clk_data->clk;
b59cc200
RW
428
429 if (!pdata->mmio_base
2e0f8822 430 || pdata->mmio_size < dev_desc->prv_offset + LPSS_CLK_SIZE)
f58b082a
RW
431 return -ENODATA;
432
f6272170 433 parent = clk_data->name;
ed3a872e 434 prv_base = pdata->mmio_base + dev_desc->prv_offset;
f6272170 435
03f09f73
HK
436 if (pdata->fixed_clk_rate) {
437 clk = clk_register_fixed_rate(NULL, devname, parent, 0,
438 pdata->fixed_clk_rate);
439 goto out;
f6272170
MW
440 }
441
ff8c1af5 442 if (dev_desc->flags & LPSS_CLK_GATE) {
ed3a872e
HK
443 clk = clk_register_gate(NULL, devname, parent, 0,
444 prv_base, 0, 0, NULL);
445 parent = devname;
446 }
447
ff8c1af5 448 if (dev_desc->flags & LPSS_CLK_DIVIDER) {
ed3a872e
HK
449 /* Prevent division by zero */
450 if (!readl(prv_base))
451 writel(LPSS_CLK_DIVIDER_DEF_MASK, prv_base);
452
453 clk_name = kasprintf(GFP_KERNEL, "%s-div", devname);
454 if (!clk_name)
455 return -ENOMEM;
456 clk = clk_register_fractional_divider(NULL, clk_name, parent,
3ebccf1d 457 0, prv_base, 1, 15, 16, 15,
82f53f9e 458 CLK_FRAC_DIVIDER_POWER_OF_TWO_PS,
3ebccf1d 459 NULL);
ed3a872e
HK
460 parent = clk_name;
461
462 clk_name = kasprintf(GFP_KERNEL, "%s-update", devname);
463 if (!clk_name) {
464 kfree(parent);
465 return -ENOMEM;
466 }
467 clk = clk_register_gate(NULL, clk_name, parent,
468 CLK_SET_RATE_PARENT | CLK_SET_RATE_GATE,
469 prv_base, 31, 0, NULL);
470 kfree(parent);
471 kfree(clk_name);
f6272170 472 }
03f09f73 473out:
f6272170
MW
474 if (IS_ERR(clk))
475 return PTR_ERR(clk);
f58b082a 476
ed3a872e 477 pdata->clk = clk;
fcf0789a 478 clk_register_clkdev(clk, dev_desc->clk_con_id, devname);
f58b082a
RW
479 return 0;
480}
481
e6ce0ce3
AH
482struct lpss_device_links {
483 const char *supplier_hid;
484 const char *supplier_uid;
485 const char *consumer_hid;
486 const char *consumer_uid;
487 u32 flags;
6025e2fa
HG
488 const struct dmi_system_id *dep_missing_ids;
489};
490
491/* Please keep this list sorted alphabetically by vendor and model */
492static const struct dmi_system_id i2c1_dep_missing_dmi_ids[] = {
493 {
494 .matches = {
495 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
496 DMI_MATCH(DMI_PRODUCT_NAME, "T200TA"),
497 },
498 },
499 {}
e6ce0ce3
AH
500};
501
502/*
503 * The _DEP method is used to identify dependencies but instead of creating
504 * device links for every handle in _DEP, only links in the following list are
505 * created. That is necessary because, in the general case, _DEP can refer to
506 * devices that might not have drivers, or that are on different buses, or where
507 * the supplier is not enumerated until after the consumer is probed.
508 */
509static const struct lpss_device_links lpss_device_links[] = {
cc18735f 510 /* CHT External sdcard slot controller depends on PMIC I2C ctrl */
e6ce0ce3 511 {"808622C1", "7", "80860F14", "3", DL_FLAG_PM_RUNTIME},
cc18735f 512 /* CHT iGPU depends on PMIC I2C controller */
bd0f4e34 513 {"808622C1", "7", "LNXVIDEO", NULL, DL_FLAG_PM_RUNTIME},
b3b3519c 514 /* BYT iGPU depends on the Embedded Controller I2C controller (UID 1) */
6025e2fa
HG
515 {"80860F41", "1", "LNXVIDEO", NULL, DL_FLAG_PM_RUNTIME,
516 i2c1_dep_missing_dmi_ids},
cc18735f 517 /* BYT CR iGPU depends on PMIC I2C controller (UID 5 on CR) */
2d71ee0c 518 {"80860F41", "5", "LNXVIDEO", NULL, DL_FLAG_PM_RUNTIME},
cc18735f
HG
519 /* BYT iGPU depends on PMIC I2C controller (UID 7 on non CR) */
520 {"80860F41", "7", "LNXVIDEO", NULL, DL_FLAG_PM_RUNTIME},
e6ce0ce3
AH
521};
522
e6ce0ce3
AH
523static bool acpi_lpss_is_supplier(struct acpi_device *adev,
524 const struct lpss_device_links *link)
525{
7e70c8ac 526 return acpi_dev_hid_uid_match(adev, link->supplier_hid, link->supplier_uid);
e6ce0ce3
AH
527}
528
529static bool acpi_lpss_is_consumer(struct acpi_device *adev,
530 const struct lpss_device_links *link)
531{
7e70c8ac 532 return acpi_dev_hid_uid_match(adev, link->consumer_hid, link->consumer_uid);
e6ce0ce3
AH
533}
534
535struct hid_uid {
536 const char *hid;
537 const char *uid;
538};
539
418e3ea1 540static int match_hid_uid(struct device *dev, const void *data)
e6ce0ce3
AH
541{
542 struct acpi_device *adev = ACPI_COMPANION(dev);
418e3ea1 543 const struct hid_uid *id = data;
e6ce0ce3
AH
544
545 if (!adev)
546 return 0;
547
7e70c8ac 548 return acpi_dev_hid_uid_match(adev, id->hid, id->uid);
e6ce0ce3
AH
549}
550
551static struct device *acpi_lpss_find_device(const char *hid, const char *uid)
552{
1e30124a
HG
553 struct device *dev;
554
e6ce0ce3
AH
555 struct hid_uid data = {
556 .hid = hid,
557 .uid = uid,
558 };
559
1e30124a
HG
560 dev = bus_find_device(&platform_bus_type, NULL, &data, match_hid_uid);
561 if (dev)
562 return dev;
563
564 return bus_find_device(&pci_bus_type, NULL, &data, match_hid_uid);
e6ce0ce3
AH
565}
566
e6ce0ce3
AH
567static void acpi_lpss_link_consumer(struct device *dev1,
568 const struct lpss_device_links *link)
569{
570 struct device *dev2;
571
572 dev2 = acpi_lpss_find_device(link->consumer_hid, link->consumer_uid);
573 if (!dev2)
574 return;
575
6025e2fa 576 if ((link->dep_missing_ids && dmi_check_system(link->dep_missing_ids))
d70d141b 577 || acpi_device_dep(ACPI_HANDLE(dev2), ACPI_HANDLE(dev1)))
e6ce0ce3
AH
578 device_link_add(dev2, dev1, link->flags);
579
580 put_device(dev2);
581}
582
583static void acpi_lpss_link_supplier(struct device *dev1,
584 const struct lpss_device_links *link)
585{
586 struct device *dev2;
587
588 dev2 = acpi_lpss_find_device(link->supplier_hid, link->supplier_uid);
589 if (!dev2)
590 return;
591
6025e2fa 592 if ((link->dep_missing_ids && dmi_check_system(link->dep_missing_ids))
d70d141b 593 || acpi_device_dep(ACPI_HANDLE(dev1), ACPI_HANDLE(dev2)))
e6ce0ce3
AH
594 device_link_add(dev1, dev2, link->flags);
595
596 put_device(dev2);
597}
598
599static void acpi_lpss_create_device_links(struct acpi_device *adev,
600 struct platform_device *pdev)
601{
602 int i;
603
604 for (i = 0; i < ARRAY_SIZE(lpss_device_links); i++) {
605 const struct lpss_device_links *link = &lpss_device_links[i];
606
607 if (acpi_lpss_is_supplier(adev, link))
608 acpi_lpss_link_consumer(&pdev->dev, link);
609
610 if (acpi_lpss_is_consumer(adev, link))
611 acpi_lpss_link_supplier(&pdev->dev, link);
612 }
613}
614
f58b082a
RW
615static int acpi_lpss_create_device(struct acpi_device *adev,
616 const struct acpi_device_id *id)
617{
b2687cd7 618 const struct lpss_device_desc *dev_desc;
f58b082a 619 struct lpss_private_data *pdata;
90e97820 620 struct resource_entry *rentry;
f58b082a 621 struct list_head resource_list;
8ce62f85 622 struct platform_device *pdev;
f58b082a
RW
623 int ret;
624
b2687cd7 625 dev_desc = (const struct lpss_device_desc *)id->driver_data;
bda3df10
RJ
626 if (!dev_desc)
627 return -EINVAL;
628
f58b082a
RW
629 pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
630 if (!pdata)
631 return -ENOMEM;
632
633 INIT_LIST_HEAD(&resource_list);
840baca4 634 ret = acpi_dev_get_memory_resources(adev, &resource_list);
f58b082a
RW
635 if (ret < 0)
636 goto err_out;
637
da13b336
AS
638 rentry = list_first_entry_or_null(&resource_list, struct resource_entry, node);
639 if (rentry) {
640 if (dev_desc->prv_size_override)
641 pdata->mmio_size = dev_desc->prv_size_override;
642 else
643 pdata->mmio_size = resource_size(rentry->res);
644 pdata->mmio_base = ioremap(rentry->res->start, pdata->mmio_size);
645 }
f58b082a
RW
646
647 acpi_dev_free_resource_list(&resource_list);
648
d3e13ff3 649 if (!pdata->mmio_base) {
e1681599
HG
650 /* Avoid acpi_bus_attach() instantiating a pdev for this dev. */
651 adev->pnp.type.platform_id = 0;
6cc401be 652 goto out_free;
d3e13ff3
RW
653 }
654
dd242a08 655 pdata->adev = adev;
af65cfe9
MW
656 pdata->dev_desc = dev_desc;
657
03f09f73
HK
658 if (dev_desc->setup)
659 dev_desc->setup(pdata);
660
ff8c1af5 661 if (dev_desc->flags & LPSS_CLK) {
f58b082a 662 ret = register_device_clock(adev, pdata);
6cc401be
AS
663 if (ret)
664 goto out_free;
f58b082a
RW
665 }
666
b9e95fc6
RW
667 /*
668 * This works around a known issue in ACPI tables where LPSS devices
669 * have _PS0 and _PS3 without _PSC (and no power resources), so
670 * acpi_bus_init_power() will assume that the BIOS has put them into D0.
671 */
1a2fa02f 672 acpi_device_fix_up_power(adev);
b9e95fc6 673
f58b082a 674 adev->driver_data = pdata;
1571875b 675 pdev = acpi_create_platform_device(adev, dev_desc->properties);
6cc401be
AS
676 if (IS_ERR_OR_NULL(pdev)) {
677 adev->driver_data = NULL;
678 ret = PTR_ERR(pdev);
679 goto err_out;
8ce62f85 680 }
f58b082a 681
6cc401be
AS
682 acpi_lpss_create_device_links(adev, pdev);
683 return 1;
f58b082a 684
6cc401be
AS
685out_free:
686 /* Skip the device, but continue the namespace scan */
687 ret = 0;
688err_out:
f58b082a
RW
689 kfree(pdata);
690 return ret;
691}
692
1a8f8351
RW
693static u32 __lpss_reg_read(struct lpss_private_data *pdata, unsigned int reg)
694{
695 return readl(pdata->mmio_base + pdata->dev_desc->prv_offset + reg);
696}
697
698static void __lpss_reg_write(u32 val, struct lpss_private_data *pdata,
699 unsigned int reg)
700{
701 writel(val, pdata->mmio_base + pdata->dev_desc->prv_offset + reg);
702}
703
2e0f8822
RW
704static int lpss_reg_read(struct device *dev, unsigned int reg, u32 *val)
705{
50861d43 706 struct acpi_device *adev = ACPI_COMPANION(dev);
2e0f8822
RW
707 struct lpss_private_data *pdata;
708 unsigned long flags;
709 int ret;
710
50861d43
RW
711 if (WARN_ON(!adev))
712 return -ENODEV;
2e0f8822
RW
713
714 spin_lock_irqsave(&dev->power.lock, flags);
715 if (pm_runtime_suspended(dev)) {
716 ret = -EAGAIN;
717 goto out;
718 }
719 pdata = acpi_driver_data(adev);
720 if (WARN_ON(!pdata || !pdata->mmio_base)) {
721 ret = -ENODEV;
722 goto out;
723 }
1a8f8351 724 *val = __lpss_reg_read(pdata, reg);
50861d43 725 ret = 0;
2e0f8822
RW
726
727 out:
728 spin_unlock_irqrestore(&dev->power.lock, flags);
729 return ret;
730}
731
732static ssize_t lpss_ltr_show(struct device *dev, struct device_attribute *attr,
733 char *buf)
734{
735 u32 ltr_value = 0;
736 unsigned int reg;
737 int ret;
738
739 reg = strcmp(attr->attr.name, "auto_ltr") ? LPSS_SW_LTR : LPSS_AUTO_LTR;
740 ret = lpss_reg_read(dev, reg, &ltr_value);
741 if (ret)
742 return ret;
743
d47e983e 744 return sysfs_emit(buf, "%08x\n", ltr_value);
2e0f8822
RW
745}
746
747static ssize_t lpss_ltr_mode_show(struct device *dev,
748 struct device_attribute *attr, char *buf)
749{
750 u32 ltr_mode = 0;
751 char *outstr;
752 int ret;
753
754 ret = lpss_reg_read(dev, LPSS_GENERAL, &ltr_mode);
755 if (ret)
756 return ret;
757
758 outstr = (ltr_mode & LPSS_GENERAL_LTR_MODE_SW) ? "sw" : "auto";
759 return sprintf(buf, "%s\n", outstr);
760}
761
762static DEVICE_ATTR(auto_ltr, S_IRUSR, lpss_ltr_show, NULL);
763static DEVICE_ATTR(sw_ltr, S_IRUSR, lpss_ltr_show, NULL);
764static DEVICE_ATTR(ltr_mode, S_IRUSR, lpss_ltr_mode_show, NULL);
765
766static struct attribute *lpss_attrs[] = {
767 &dev_attr_auto_ltr.attr,
768 &dev_attr_sw_ltr.attr,
769 &dev_attr_ltr_mode.attr,
770 NULL,
771};
772
31945d0e 773static const struct attribute_group lpss_attr_group = {
2e0f8822
RW
774 .attrs = lpss_attrs,
775 .name = "lpss_ltr",
776};
777
1a8f8351
RW
778static void acpi_lpss_set_ltr(struct device *dev, s32 val)
779{
780 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
781 u32 ltr_mode, ltr_val;
782
783 ltr_mode = __lpss_reg_read(pdata, LPSS_GENERAL);
784 if (val < 0) {
785 if (ltr_mode & LPSS_GENERAL_LTR_MODE_SW) {
786 ltr_mode &= ~LPSS_GENERAL_LTR_MODE_SW;
787 __lpss_reg_write(ltr_mode, pdata, LPSS_GENERAL);
788 }
789 return;
790 }
791 ltr_val = __lpss_reg_read(pdata, LPSS_SW_LTR) & ~LPSS_LTR_SNOOP_MASK;
792 if (val >= LPSS_LTR_SNOOP_LAT_CUTOFF) {
793 ltr_val |= LPSS_LTR_SNOOP_LAT_32US;
794 val = LPSS_LTR_MAX_VAL;
795 } else if (val > LPSS_LTR_MAX_VAL) {
796 ltr_val |= LPSS_LTR_SNOOP_LAT_32US | LPSS_LTR_SNOOP_REQ;
797 val >>= LPSS_LTR_SNOOP_LAT_SHIFT;
798 } else {
799 ltr_val |= LPSS_LTR_SNOOP_LAT_1US | LPSS_LTR_SNOOP_REQ;
800 }
801 ltr_val |= val;
802 __lpss_reg_write(ltr_val, pdata, LPSS_SW_LTR);
803 if (!(ltr_mode & LPSS_GENERAL_LTR_MODE_SW)) {
804 ltr_mode |= LPSS_GENERAL_LTR_MODE_SW;
805 __lpss_reg_write(ltr_mode, pdata, LPSS_GENERAL);
806 }
807}
808
c78b0830
HK
809#ifdef CONFIG_PM
810/**
811 * acpi_lpss_save_ctx() - Save the private registers of LPSS device
812 * @dev: LPSS device
cb39dcdd 813 * @pdata: pointer to the private data of the LPSS device
c78b0830
HK
814 *
815 * Most LPSS devices have private registers which may loose their context when
816 * the device is powered down. acpi_lpss_save_ctx() saves those registers into
817 * prv_reg_ctx array.
818 */
cb39dcdd
AS
819static void acpi_lpss_save_ctx(struct device *dev,
820 struct lpss_private_data *pdata)
c78b0830 821{
c78b0830
HK
822 unsigned int i;
823
824 for (i = 0; i < LPSS_PRV_REG_COUNT; i++) {
825 unsigned long offset = i * sizeof(u32);
826
827 pdata->prv_reg_ctx[i] = __lpss_reg_read(pdata, offset);
828 dev_dbg(dev, "saving 0x%08x from LPSS reg at offset 0x%02lx\n",
829 pdata->prv_reg_ctx[i], offset);
830 }
831}
832
833/**
834 * acpi_lpss_restore_ctx() - Restore the private registers of LPSS device
835 * @dev: LPSS device
cb39dcdd 836 * @pdata: pointer to the private data of the LPSS device
c78b0830
HK
837 *
838 * Restores the registers that were previously stored with acpi_lpss_save_ctx().
839 */
cb39dcdd
AS
840static void acpi_lpss_restore_ctx(struct device *dev,
841 struct lpss_private_data *pdata)
c78b0830 842{
c78b0830
HK
843 unsigned int i;
844
02b98540
AS
845 for (i = 0; i < LPSS_PRV_REG_COUNT; i++) {
846 unsigned long offset = i * sizeof(u32);
847
848 __lpss_reg_write(pdata->prv_reg_ctx[i], pdata, offset);
849 dev_dbg(dev, "restoring 0x%08x to LPSS reg at offset 0x%02lx\n",
850 pdata->prv_reg_ctx[i], offset);
851 }
852}
853
854static void acpi_lpss_d3_to_d0_delay(struct lpss_private_data *pdata)
855{
c78b0830
HK
856 /*
857 * The following delay is needed or the subsequent write operations may
858 * fail. The LPSS devices are actually PCI devices and the PCI spec
859 * expects 10ms delay before the device can be accessed after D3 to D0
b00855ae 860 * transition. However some platforms like BSW does not need this delay.
c78b0830 861 */
b00855ae
SK
862 unsigned int delay = 10; /* default 10ms delay */
863
864 if (pdata->dev_desc->flags & LPSS_NO_D3_DELAY)
865 delay = 0;
866
867 msleep(delay);
c78b0830
HK
868}
869
c3a49cf3
AS
870static int acpi_lpss_activate(struct device *dev)
871{
872 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
873 int ret;
874
63705c40 875 ret = acpi_dev_resume(dev);
c3a49cf3
AS
876 if (ret)
877 return ret;
878
879 acpi_lpss_d3_to_d0_delay(pdata);
880
881 /*
882 * This is called only on ->probe() stage where a device is either in
883 * known state defined by BIOS or most likely powered off. Due to this
884 * we have to deassert reset line to be sure that ->probe() will
885 * recognize the device.
886 */
15aa5e4c 887 if (pdata->dev_desc->flags & (LPSS_SAVE_CTX | LPSS_SAVE_CTX_ONCE))
c3a49cf3
AS
888 lpss_deassert_reset(pdata);
889
15aa5e4c
HG
890 if (pdata->dev_desc->flags & LPSS_SAVE_CTX_ONCE)
891 acpi_lpss_save_ctx(dev, pdata);
15aa5e4c 892
c3a49cf3
AS
893 return 0;
894}
895
896static void acpi_lpss_dismiss(struct device *dev)
897{
cbe25ce3 898 acpi_dev_suspend(dev, false);
c3a49cf3
AS
899}
900
eebb3e8d
AS
901/* IOSF SB for LPSS island */
902#define LPSS_IOSF_UNIT_LPIOEP 0xA0
903#define LPSS_IOSF_UNIT_LPIO1 0xAB
904#define LPSS_IOSF_UNIT_LPIO2 0xAC
905
906#define LPSS_IOSF_PMCSR 0x84
907#define LPSS_PMCSR_D0 0
908#define LPSS_PMCSR_D3hot 3
909#define LPSS_PMCSR_Dx_MASK GENMASK(1, 0)
910
911#define LPSS_IOSF_GPIODEF0 0x154
912#define LPSS_GPIODEF0_DMA1_D3 BIT(2)
913#define LPSS_GPIODEF0_DMA2_D3 BIT(3)
914#define LPSS_GPIODEF0_DMA_D3_MASK GENMASK(3, 2)
d132d6d5 915#define LPSS_GPIODEF0_DMA_LLP BIT(13)
eebb3e8d
AS
916
917static DEFINE_MUTEX(lpss_iosf_mutex);
f11fc4bc 918static bool lpss_iosf_d3_entered = true;
eebb3e8d
AS
919
920static void lpss_iosf_enter_d3_state(void)
921{
922 u32 value1 = 0;
d132d6d5 923 u32 mask1 = LPSS_GPIODEF0_DMA_D3_MASK | LPSS_GPIODEF0_DMA_LLP;
eebb3e8d
AS
924 u32 value2 = LPSS_PMCSR_D3hot;
925 u32 mask2 = LPSS_PMCSR_Dx_MASK;
926 /*
927 * PMC provides an information about actual status of the LPSS devices.
928 * Here we read the values related to LPSS power island, i.e. LPSS
929 * devices, excluding both LPSS DMA controllers, along with SCC domain.
930 */
86b62e5c 931 u32 func_dis, d3_sts_0, pmc_status;
eebb3e8d
AS
932 int ret;
933
934 ret = pmc_atom_read(PMC_FUNC_DIS, &func_dis);
935 if (ret)
936 return;
937
938 mutex_lock(&lpss_iosf_mutex);
939
940 ret = pmc_atom_read(PMC_D3_STS_0, &d3_sts_0);
941 if (ret)
942 goto exit;
943
944 /*
945 * Get the status of entire LPSS power island per device basis.
946 * Shutdown both LPSS DMA controllers if and only if all other devices
947 * are already in D3hot.
948 */
86b62e5c 949 pmc_status = (~(d3_sts_0 | func_dis)) & pmc_atom_d3_mask;
eebb3e8d
AS
950 if (pmc_status)
951 goto exit;
952
953 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO1, MBI_CFG_WRITE,
954 LPSS_IOSF_PMCSR, value2, mask2);
955
956 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO2, MBI_CFG_WRITE,
957 LPSS_IOSF_PMCSR, value2, mask2);
958
959 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIOEP, MBI_CR_WRITE,
960 LPSS_IOSF_GPIODEF0, value1, mask1);
12864ff8
RW
961
962 lpss_iosf_d3_entered = true;
963
eebb3e8d
AS
964exit:
965 mutex_unlock(&lpss_iosf_mutex);
966}
967
968static void lpss_iosf_exit_d3_state(void)
969{
d132d6d5
AS
970 u32 value1 = LPSS_GPIODEF0_DMA1_D3 | LPSS_GPIODEF0_DMA2_D3 |
971 LPSS_GPIODEF0_DMA_LLP;
972 u32 mask1 = LPSS_GPIODEF0_DMA_D3_MASK | LPSS_GPIODEF0_DMA_LLP;
eebb3e8d
AS
973 u32 value2 = LPSS_PMCSR_D0;
974 u32 mask2 = LPSS_PMCSR_Dx_MASK;
975
976 mutex_lock(&lpss_iosf_mutex);
977
12864ff8
RW
978 if (!lpss_iosf_d3_entered)
979 goto exit;
980
981 lpss_iosf_d3_entered = false;
982
eebb3e8d
AS
983 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIOEP, MBI_CR_WRITE,
984 LPSS_IOSF_GPIODEF0, value1, mask1);
985
986 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO2, MBI_CFG_WRITE,
987 LPSS_IOSF_PMCSR, value2, mask2);
988
989 iosf_mbi_modify(LPSS_IOSF_UNIT_LPIO1, MBI_CFG_WRITE,
990 LPSS_IOSF_PMCSR, value2, mask2);
991
12864ff8 992exit:
eebb3e8d
AS
993 mutex_unlock(&lpss_iosf_mutex);
994}
995
12864ff8 996static int acpi_lpss_suspend(struct device *dev, bool wakeup)
c78b0830 997{
cb39dcdd
AS
998 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
999 int ret;
c78b0830 1000
cb39dcdd
AS
1001 if (pdata->dev_desc->flags & LPSS_SAVE_CTX)
1002 acpi_lpss_save_ctx(dev, pdata);
1003
a192aa92 1004 ret = acpi_dev_suspend(dev, wakeup);
eebb3e8d
AS
1005
1006 /*
1007 * This call must be last in the sequence, otherwise PMC will return
1008 * wrong status for devices being about to be powered off. See
1009 * lpss_iosf_enter_d3_state() for further information.
1010 */
12864ff8 1011 if (acpi_target_system_state() == ACPI_STATE_S0 &&
a09c5913 1012 lpss_quirks & LPSS_QUIRK_ALWAYS_POWER_ON && iosf_mbi_available())
eebb3e8d
AS
1013 lpss_iosf_enter_d3_state();
1014
1015 return ret;
c78b0830
HK
1016}
1017
12864ff8 1018static int acpi_lpss_resume(struct device *dev)
c78b0830 1019{
cb39dcdd
AS
1020 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1021 int ret;
c78b0830 1022
eebb3e8d
AS
1023 /*
1024 * This call is kept first to be in symmetry with
1025 * acpi_lpss_runtime_suspend() one.
1026 */
12864ff8 1027 if (lpss_quirks & LPSS_QUIRK_ALWAYS_POWER_ON && iosf_mbi_available())
eebb3e8d
AS
1028 lpss_iosf_exit_d3_state();
1029
63705c40 1030 ret = acpi_dev_resume(dev);
c78b0830
HK
1031 if (ret)
1032 return ret;
1033
02b98540
AS
1034 acpi_lpss_d3_to_d0_delay(pdata);
1035
15aa5e4c 1036 if (pdata->dev_desc->flags & (LPSS_SAVE_CTX | LPSS_SAVE_CTX_ONCE))
cb39dcdd
AS
1037 acpi_lpss_restore_ctx(dev, pdata);
1038
a192aa92
RW
1039 return 0;
1040}
1041
1042#ifdef CONFIG_PM_SLEEP
48402cee 1043static int acpi_lpss_do_suspend_late(struct device *dev)
a192aa92 1044{
05087360
RW
1045 int ret;
1046
fa2bfead 1047 if (dev_pm_skip_suspend(dev))
05087360 1048 return 0;
a192aa92 1049
05087360 1050 ret = pm_generic_suspend_late(dev);
12864ff8 1051 return ret ? ret : acpi_lpss_suspend(dev, device_may_wakeup(dev));
a192aa92
RW
1052}
1053
48402cee
HG
1054static int acpi_lpss_suspend_late(struct device *dev)
1055{
1056 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1057
1058 if (pdata->dev_desc->resume_from_noirq)
1059 return 0;
1060
1061 return acpi_lpss_do_suspend_late(dev);
1062}
1063
1064static int acpi_lpss_suspend_noirq(struct device *dev)
1065{
1066 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1067 int ret;
1068
1069 if (pdata->dev_desc->resume_from_noirq) {
c95b7595
RW
1070 /*
1071 * The driver's ->suspend_late callback will be invoked by
1072 * acpi_lpss_do_suspend_late(), with the assumption that the
1073 * driver really wanted to run that code in ->suspend_noirq, but
1074 * it could not run after acpi_dev_suspend() and the driver
1075 * expected the latter to be called in the "late" phase.
1076 */
48402cee
HG
1077 ret = acpi_lpss_do_suspend_late(dev);
1078 if (ret)
1079 return ret;
1080 }
1081
1082 return acpi_subsys_suspend_noirq(dev);
1083}
1084
1085static int acpi_lpss_do_resume_early(struct device *dev)
a192aa92 1086{
12864ff8 1087 int ret = acpi_lpss_resume(dev);
a192aa92
RW
1088
1089 return ret ? ret : pm_generic_resume_early(dev);
1090}
48402cee
HG
1091
1092static int acpi_lpss_resume_early(struct device *dev)
1093{
1094 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1095
1096 if (pdata->dev_desc->resume_from_noirq)
1097 return 0;
1098
76c70cb5 1099 if (dev_pm_skip_resume(dev))
6e176bf8
RW
1100 return 0;
1101
48402cee
HG
1102 return acpi_lpss_do_resume_early(dev);
1103}
1104
1105static int acpi_lpss_resume_noirq(struct device *dev)
1106{
1107 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1108 int ret;
1109
3cd7957e 1110 /* Follow acpi_subsys_resume_noirq(). */
76c70cb5 1111 if (dev_pm_skip_resume(dev))
3cd7957e
RW
1112 return 0;
1113
3cd7957e 1114 ret = pm_generic_resume_noirq(dev);
48402cee
HG
1115 if (ret)
1116 return ret;
1117
3cd7957e
RW
1118 if (!pdata->dev_desc->resume_from_noirq)
1119 return 0;
48402cee 1120
3cd7957e
RW
1121 /*
1122 * The driver's ->resume_early callback will be invoked by
1123 * acpi_lpss_do_resume_early(), with the assumption that the driver
1124 * really wanted to run that code in ->resume_noirq, but it could not
1125 * run before acpi_dev_resume() and the driver expected the latter to be
1126 * called in the "early" phase.
1127 */
1128 return acpi_lpss_do_resume_early(dev);
1129}
1130
1131static int acpi_lpss_do_restore_early(struct device *dev)
1132{
1133 int ret = acpi_lpss_resume(dev);
1134
1135 return ret ? ret : pm_generic_restore_early(dev);
48402cee
HG
1136}
1137
3cd7957e
RW
1138static int acpi_lpss_restore_early(struct device *dev)
1139{
1140 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1141
1142 if (pdata->dev_desc->resume_from_noirq)
1143 return 0;
1144
1145 return acpi_lpss_do_restore_early(dev);
48402cee
HG
1146}
1147
3cd7957e
RW
1148static int acpi_lpss_restore_noirq(struct device *dev)
1149{
1150 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1151 int ret;
1152
1153 ret = pm_generic_restore_noirq(dev);
1154 if (ret)
1155 return ret;
1156
1157 if (!pdata->dev_desc->resume_from_noirq)
1158 return 0;
1159
1160 /* This is analogous to what happens in acpi_lpss_resume_noirq(). */
1161 return acpi_lpss_do_restore_early(dev);
1162}
c95b7595
RW
1163
1164static int acpi_lpss_do_poweroff_late(struct device *dev)
1165{
1166 int ret = pm_generic_poweroff_late(dev);
1167
1168 return ret ? ret : acpi_lpss_suspend(dev, device_may_wakeup(dev));
1169}
1170
1171static int acpi_lpss_poweroff_late(struct device *dev)
1172{
1173 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1174
fa2bfead 1175 if (dev_pm_skip_suspend(dev))
c95b7595
RW
1176 return 0;
1177
1178 if (pdata->dev_desc->resume_from_noirq)
1179 return 0;
1180
1181 return acpi_lpss_do_poweroff_late(dev);
1182}
1183
1184static int acpi_lpss_poweroff_noirq(struct device *dev)
1185{
1186 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1187
fa2bfead 1188 if (dev_pm_skip_suspend(dev))
c95b7595
RW
1189 return 0;
1190
1191 if (pdata->dev_desc->resume_from_noirq) {
1192 /* This is analogous to the acpi_lpss_suspend_noirq() case. */
1193 int ret = acpi_lpss_do_poweroff_late(dev);
bb415ed5 1194
c95b7595
RW
1195 if (ret)
1196 return ret;
1197 }
1198
1199 return pm_generic_poweroff_noirq(dev);
1200}
a192aa92
RW
1201#endif /* CONFIG_PM_SLEEP */
1202
1203static int acpi_lpss_runtime_suspend(struct device *dev)
1204{
1205 int ret = pm_generic_runtime_suspend(dev);
1206
1207 return ret ? ret : acpi_lpss_suspend(dev, true);
1208}
1209
1210static int acpi_lpss_runtime_resume(struct device *dev)
1211{
12864ff8 1212 int ret = acpi_lpss_resume(dev);
a192aa92
RW
1213
1214 return ret ? ret : pm_generic_runtime_resume(dev);
c78b0830 1215}
c78b0830
HK
1216#endif /* CONFIG_PM */
1217
1218static struct dev_pm_domain acpi_lpss_pm_domain = {
c3a49cf3
AS
1219#ifdef CONFIG_PM
1220 .activate = acpi_lpss_activate,
1221 .dismiss = acpi_lpss_dismiss,
1222#endif
c78b0830 1223 .ops = {
5de21bb9 1224#ifdef CONFIG_PM
c78b0830 1225#ifdef CONFIG_PM_SLEEP
c78b0830 1226 .prepare = acpi_subsys_prepare,
e4da817d 1227 .complete = acpi_subsys_complete,
c78b0830 1228 .suspend = acpi_subsys_suspend,
f4168b61 1229 .suspend_late = acpi_lpss_suspend_late,
48402cee
HG
1230 .suspend_noirq = acpi_lpss_suspend_noirq,
1231 .resume_noirq = acpi_lpss_resume_noirq,
f4168b61 1232 .resume_early = acpi_lpss_resume_early,
c78b0830 1233 .freeze = acpi_subsys_freeze,
c95b7595
RW
1234 .poweroff = acpi_subsys_poweroff,
1235 .poweroff_late = acpi_lpss_poweroff_late,
1236 .poweroff_noirq = acpi_lpss_poweroff_noirq,
3cd7957e
RW
1237 .restore_noirq = acpi_lpss_restore_noirq,
1238 .restore_early = acpi_lpss_restore_early,
c78b0830 1239#endif
c78b0830
HK
1240 .runtime_suspend = acpi_lpss_runtime_suspend,
1241 .runtime_resume = acpi_lpss_runtime_resume,
1242#endif
1243 },
1244};
1245
2e0f8822
RW
1246static int acpi_lpss_platform_notify(struct notifier_block *nb,
1247 unsigned long action, void *data)
1248{
1249 struct platform_device *pdev = to_platform_device(data);
1250 struct lpss_private_data *pdata;
1251 struct acpi_device *adev;
1252 const struct acpi_device_id *id;
2e0f8822
RW
1253
1254 id = acpi_match_device(acpi_lpss_device_ids, &pdev->dev);
1255 if (!id || !id->driver_data)
1256 return 0;
1257
50861d43
RW
1258 adev = ACPI_COMPANION(&pdev->dev);
1259 if (!adev)
2e0f8822
RW
1260 return 0;
1261
1262 pdata = acpi_driver_data(adev);
cb39dcdd 1263 if (!pdata)
2e0f8822
RW
1264 return 0;
1265
cb39dcdd
AS
1266 if (pdata->mmio_base &&
1267 pdata->mmio_size < pdata->dev_desc->prv_offset + LPSS_LTR_SIZE) {
2e0f8822
RW
1268 dev_err(&pdev->dev, "MMIO size insufficient to access LTR\n");
1269 return 0;
1270 }
1271
c78b0830 1272 switch (action) {
de16d552 1273 case BUS_NOTIFY_BIND_DRIVER:
989561de 1274 dev_pm_domain_set(&pdev->dev, &acpi_lpss_pm_domain);
b5f88dd1 1275 break;
de16d552 1276 case BUS_NOTIFY_DRIVER_NOT_BOUND:
b5f88dd1 1277 case BUS_NOTIFY_UNBOUND_DRIVER:
5be6ada3 1278 dev_pm_domain_set(&pdev->dev, NULL);
b5f88dd1
AS
1279 break;
1280 case BUS_NOTIFY_ADD_DEVICE:
989561de 1281 dev_pm_domain_set(&pdev->dev, &acpi_lpss_pm_domain);
ff8c1af5 1282 if (pdata->dev_desc->flags & LPSS_LTR)
c78b0830
HK
1283 return sysfs_create_group(&pdev->dev.kobj,
1284 &lpss_attr_group);
01ac170b 1285 break;
c78b0830 1286 case BUS_NOTIFY_DEL_DEVICE:
ff8c1af5 1287 if (pdata->dev_desc->flags & LPSS_LTR)
c78b0830 1288 sysfs_remove_group(&pdev->dev.kobj, &lpss_attr_group);
989561de 1289 dev_pm_domain_set(&pdev->dev, NULL);
01ac170b 1290 break;
c78b0830
HK
1291 default:
1292 break;
1293 }
2e0f8822 1294
c78b0830 1295 return 0;
2e0f8822
RW
1296}
1297
1298static struct notifier_block acpi_lpss_nb = {
1299 .notifier_call = acpi_lpss_platform_notify,
1300};
1301
1a8f8351
RW
1302static void acpi_lpss_bind(struct device *dev)
1303{
1304 struct lpss_private_data *pdata = acpi_driver_data(ACPI_COMPANION(dev));
1305
ff8c1af5 1306 if (!pdata || !pdata->mmio_base || !(pdata->dev_desc->flags & LPSS_LTR))
1a8f8351
RW
1307 return;
1308
1309 if (pdata->mmio_size >= pdata->dev_desc->prv_offset + LPSS_LTR_SIZE)
1310 dev->power.set_latency_tolerance = acpi_lpss_set_ltr;
1311 else
1312 dev_err(dev, "MMIO size insufficient to access LTR\n");
1313}
1314
1315static void acpi_lpss_unbind(struct device *dev)
1316{
1317 dev->power.set_latency_tolerance = NULL;
1318}
1319
f58b082a
RW
1320static struct acpi_scan_handler lpss_handler = {
1321 .ids = acpi_lpss_device_ids,
1322 .attach = acpi_lpss_create_device,
1a8f8351
RW
1323 .bind = acpi_lpss_bind,
1324 .unbind = acpi_lpss_unbind,
f58b082a
RW
1325};
1326
1327void __init acpi_lpss_init(void)
1328{
eebb3e8d
AS
1329 const struct x86_cpu_id *id;
1330 int ret;
1331
cf0a9565 1332 ret = lpss_atom_clk_init();
eebb3e8d
AS
1333 if (ret)
1334 return;
1335
1336 id = x86_match_cpu(lpss_cpu_ids);
1337 if (id)
1338 lpss_quirks |= LPSS_QUIRK_ALWAYS_POWER_ON;
1339
1340 bus_register_notifier(&platform_bus_type, &acpi_lpss_nb);
1341 acpi_scan_add_handler(&lpss_handler);
f58b082a 1342}
d6ddaaac
RW
1343
1344#else
1345
1346static struct acpi_scan_handler lpss_handler = {
1347 .ids = acpi_lpss_device_ids,
1348};
1349
1350void __init acpi_lpss_init(void)
1351{
1352 acpi_scan_add_handler(&lpss_handler);
1353}
1354
1355#endif /* CONFIG_X86_INTEL_LPSS */