1 // SPDX-License-Identifier: GPL-2.0-only
3 * Intel Low Power Subsystem PWM controller driver
5 * Copyright (C) 2014, Intel Corporation
7 * Derived from the original pwm-lpss.c
10 #include <linux/acpi.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/platform_device.h>
14 #include <linux/pm_runtime.h>
19 static const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
26 static const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
30 .other_devices_aml_touches_pwm_regs = true,
34 static const struct pwm_lpss_boardinfo pwm_lpss_bxt_info = {
41 static int pwm_lpss_probe_platform(struct platform_device *pdev)
43 const struct pwm_lpss_boardinfo *info;
44 const struct acpi_device_id *id;
45 struct pwm_lpss_chip *lpwm;
48 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
52 info = (const struct pwm_lpss_boardinfo *)id->driver_data;
53 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
55 lpwm = pwm_lpss_probe(&pdev->dev, r, info);
59 platform_set_drvdata(pdev, lpwm);
62 * On Cherry Trail devices the GFX0._PS0 AML checks if the controller
63 * is on and if it is not on it turns it on and restores what it
64 * believes is the correct state to the PWM controller.
65 * Because of this we must disallow direct-complete, which keeps the
66 * controller (runtime)suspended on resume, to avoid 2 issues:
67 * 1. The controller getting turned on without the linux-pm code
68 * knowing about this. On devices where the controller is unused
69 * this causes it to stay on during the next suspend causing high
70 * battery drain (because S0i3 is not reached)
71 * 2. The state restoring code unexpectedly messing with the controller
73 * Leaving the controller runtime-suspended (skipping runtime-resume +
74 * normal-suspend) during suspend is fine.
76 if (info->other_devices_aml_touches_pwm_regs)
77 dev_pm_set_driver_flags(&pdev->dev, DPM_FLAG_NO_DIRECT_COMPLETE|
78 DPM_FLAG_SMART_SUSPEND);
80 pm_runtime_set_active(&pdev->dev);
81 pm_runtime_enable(&pdev->dev);
86 static int pwm_lpss_remove_platform(struct platform_device *pdev)
88 pm_runtime_disable(&pdev->dev);
92 static const struct acpi_device_id pwm_lpss_acpi_match[] = {
93 { "80860F09", (unsigned long)&pwm_lpss_byt_info },
94 { "80862288", (unsigned long)&pwm_lpss_bsw_info },
95 { "80862289", (unsigned long)&pwm_lpss_bsw_info },
96 { "80865AC8", (unsigned long)&pwm_lpss_bxt_info },
99 MODULE_DEVICE_TABLE(acpi, pwm_lpss_acpi_match);
101 static struct platform_driver pwm_lpss_driver_platform = {
104 .acpi_match_table = pwm_lpss_acpi_match,
106 .probe = pwm_lpss_probe_platform,
107 .remove = pwm_lpss_remove_platform,
109 module_platform_driver(pwm_lpss_driver_platform);
111 MODULE_DESCRIPTION("PWM platform driver for Intel LPSS");
112 MODULE_LICENSE("GPL v2");
113 MODULE_ALIAS("platform:pwm-lpss");