blob: 928570430cef7599b1e72c58e793dfef1b26f3dc [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Andy Shevchenkoc558e392014-08-19 19:17:35 +03002/*
3 * Intel Low Power Subsystem PWM controller driver
4 *
5 * Copyright (C) 2014, Intel Corporation
6 *
7 * Derived from the original pwm-lpss.c
Andy Shevchenkoc558e392014-08-19 19:17:35 +03008 */
9
10#include <linux/acpi.h>
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/platform_device.h>
Qipeng Zhaf080be22015-10-26 12:58:27 +020014#include <linux/pm_runtime.h>
Andy Shevchenkoc558e392014-08-19 19:17:35 +030015
16#include "pwm-lpss.h"
17
Andy Shevchenko99000732017-01-28 17:10:43 +020018/* BayTrail */
19static const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
20 .clk_rate = 25000000,
21 .npwm = 1,
22 .base_unit_bits = 16,
23};
24
25/* Braswell */
26static const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
27 .clk_rate = 19200000,
28 .npwm = 1,
29 .base_unit_bits = 16,
Hans de Goede47437652018-10-14 17:12:01 +020030 .other_devices_aml_touches_pwm_regs = true,
Andy Shevchenko99000732017-01-28 17:10:43 +020031};
32
33/* Broxton */
34static const struct pwm_lpss_boardinfo pwm_lpss_bxt_info = {
35 .clk_rate = 19200000,
36 .npwm = 4,
37 .base_unit_bits = 22,
Hans de Goedeb997e3e2017-04-06 14:54:01 +030038 .bypass = true,
Andy Shevchenko99000732017-01-28 17:10:43 +020039};
40
Andy Shevchenkoc558e392014-08-19 19:17:35 +030041static int pwm_lpss_probe_platform(struct platform_device *pdev)
42{
43 const struct pwm_lpss_boardinfo *info;
44 const struct acpi_device_id *id;
45 struct pwm_lpss_chip *lpwm;
46 struct resource *r;
47
48 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
49 if (!id)
50 return -ENODEV;
51
52 info = (const struct pwm_lpss_boardinfo *)id->driver_data;
53 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
54
55 lpwm = pwm_lpss_probe(&pdev->dev, r, info);
56 if (IS_ERR(lpwm))
57 return PTR_ERR(lpwm);
58
59 platform_set_drvdata(pdev, lpwm);
Qipeng Zhaf080be22015-10-26 12:58:27 +020060
Hans de Goedeb9c90f12020-11-09 11:57:25 +010061 /*
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
Hans de Goedee3aa45f2020-11-09 11:57:26 +010072 *
73 * Leaving the controller runtime-suspended (skipping runtime-resume +
74 * normal-suspend) during suspend is fine.
Hans de Goedeb9c90f12020-11-09 11:57:25 +010075 */
76 if (info->other_devices_aml_touches_pwm_regs)
Hans de Goedee3aa45f2020-11-09 11:57:26 +010077 dev_pm_set_driver_flags(&pdev->dev, DPM_FLAG_NO_DIRECT_COMPLETE|
78 DPM_FLAG_SMART_SUSPEND);
Hans de Goedeb9c90f12020-11-09 11:57:25 +010079
Qipeng Zhaf080be22015-10-26 12:58:27 +020080 pm_runtime_set_active(&pdev->dev);
81 pm_runtime_enable(&pdev->dev);
82
Andy Shevchenkoc558e392014-08-19 19:17:35 +030083 return 0;
84}
85
86static int pwm_lpss_remove_platform(struct platform_device *pdev)
87{
Qipeng Zhaf080be22015-10-26 12:58:27 +020088 pm_runtime_disable(&pdev->dev);
Uwe Kleine-Königd1e487b2021-04-07 10:01:55 +020089 return 0;
Andy Shevchenkoc558e392014-08-19 19:17:35 +030090}
91
92static 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 },
Hans de Goede1688c872018-10-12 12:12:25 +020095 { "80862289", (unsigned long)&pwm_lpss_bsw_info },
Mika Westerberg03f00e52015-10-20 16:53:07 +030096 { "80865AC8", (unsigned long)&pwm_lpss_bxt_info },
Andy Shevchenkoc558e392014-08-19 19:17:35 +030097 { },
98};
99MODULE_DEVICE_TABLE(acpi, pwm_lpss_acpi_match);
100
101static struct platform_driver pwm_lpss_driver_platform = {
102 .driver = {
103 .name = "pwm-lpss",
104 .acpi_match_table = pwm_lpss_acpi_match,
Andy Shevchenkoc558e392014-08-19 19:17:35 +0300105 },
106 .probe = pwm_lpss_probe_platform,
107 .remove = pwm_lpss_remove_platform,
108};
109module_platform_driver(pwm_lpss_driver_platform);
110
111MODULE_DESCRIPTION("PWM platform driver for Intel LPSS");
112MODULE_LICENSE("GPL v2");
113MODULE_ALIAS("platform:pwm-lpss");