blob: b6edf8af26cc9819537d103f23e70bcd4763375f [file] [log] [blame]
Andy Shevchenkoc558e392014-08-19 19:17:35 +03001/*
2 * Intel Low Power Subsystem PWM controller driver
3 *
4 * Copyright (C) 2014, Intel Corporation
5 *
6 * Derived from the original pwm-lpss.c
7 *
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.
11 */
12
13#include <linux/acpi.h>
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/platform_device.h>
Qipeng Zhaf080be22015-10-26 12:58:27 +020017#include <linux/pm_runtime.h>
Andy Shevchenkoc558e392014-08-19 19:17:35 +030018
19#include "pwm-lpss.h"
20
Andy Shevchenko99000732017-01-28 17:10:43 +020021/* BayTrail */
22static const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
23 .clk_rate = 25000000,
24 .npwm = 1,
25 .base_unit_bits = 16,
26};
27
28/* Braswell */
29static const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
30 .clk_rate = 19200000,
31 .npwm = 1,
32 .base_unit_bits = 16,
Hans de Goede6a425ec2018-10-12 12:12:27 +020033 .check_power_on_resume = true,
Andy Shevchenko99000732017-01-28 17:10:43 +020034};
35
36/* Broxton */
37static const struct pwm_lpss_boardinfo pwm_lpss_bxt_info = {
38 .clk_rate = 19200000,
39 .npwm = 4,
40 .base_unit_bits = 22,
Hans de Goedeb997e3e2017-04-06 14:54:01 +030041 .bypass = true,
Andy Shevchenko99000732017-01-28 17:10:43 +020042};
43
Andy Shevchenkoc558e392014-08-19 19:17:35 +030044static int pwm_lpss_probe_platform(struct platform_device *pdev)
45{
46 const struct pwm_lpss_boardinfo *info;
47 const struct acpi_device_id *id;
48 struct pwm_lpss_chip *lpwm;
49 struct resource *r;
50
51 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
52 if (!id)
53 return -ENODEV;
54
55 info = (const struct pwm_lpss_boardinfo *)id->driver_data;
56 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
57
58 lpwm = pwm_lpss_probe(&pdev->dev, r, info);
59 if (IS_ERR(lpwm))
60 return PTR_ERR(lpwm);
61
62 platform_set_drvdata(pdev, lpwm);
Qipeng Zhaf080be22015-10-26 12:58:27 +020063
64 pm_runtime_set_active(&pdev->dev);
65 pm_runtime_enable(&pdev->dev);
66
Andy Shevchenkoc558e392014-08-19 19:17:35 +030067 return 0;
68}
69
70static int pwm_lpss_remove_platform(struct platform_device *pdev)
71{
72 struct pwm_lpss_chip *lpwm = platform_get_drvdata(pdev);
73
Qipeng Zhaf080be22015-10-26 12:58:27 +020074 pm_runtime_disable(&pdev->dev);
Andy Shevchenkoc558e392014-08-19 19:17:35 +030075 return pwm_lpss_remove(lpwm);
76}
77
Hans de Goede6a425ec2018-10-12 12:12:27 +020078static void pwm_lpss_complete(struct device *dev)
79{
80 struct pwm_lpss_chip *lpwm = dev_get_drvdata(dev);
81 int ret, state;
82
83 /* The PWM may be turned on by AML code, update our state to match */
84 if (pm_runtime_suspended(dev) && lpwm->info->check_power_on_resume) {
85 pm_runtime_disable(dev);
86
87 ret = acpi_device_get_power(ACPI_COMPANION(dev), &state);
88 if (ret == 0 && state == ACPI_STATE_D0)
89 pm_runtime_set_active(dev);
90
91 pm_runtime_enable(dev);
92 }
93}
94
95static const struct dev_pm_ops pwm_lpss_platform_pm_ops = {
96 .complete = pwm_lpss_complete,
97 SET_SYSTEM_SLEEP_PM_OPS(pwm_lpss_suspend, pwm_lpss_resume)
98};
Hans de Goede1d375b52018-04-26 14:10:23 +020099
Andy Shevchenkoc558e392014-08-19 19:17:35 +0300100static const struct acpi_device_id pwm_lpss_acpi_match[] = {
101 { "80860F09", (unsigned long)&pwm_lpss_byt_info },
102 { "80862288", (unsigned long)&pwm_lpss_bsw_info },
Hans de Goede1688c872018-10-12 12:12:25 +0200103 { "80862289", (unsigned long)&pwm_lpss_bsw_info },
Mika Westerberg03f00e52015-10-20 16:53:07 +0300104 { "80865AC8", (unsigned long)&pwm_lpss_bxt_info },
Andy Shevchenkoc558e392014-08-19 19:17:35 +0300105 { },
106};
107MODULE_DEVICE_TABLE(acpi, pwm_lpss_acpi_match);
108
109static struct platform_driver pwm_lpss_driver_platform = {
110 .driver = {
111 .name = "pwm-lpss",
112 .acpi_match_table = pwm_lpss_acpi_match,
Hans de Goede1d375b52018-04-26 14:10:23 +0200113 .pm = &pwm_lpss_platform_pm_ops,
Andy Shevchenkoc558e392014-08-19 19:17:35 +0300114 },
115 .probe = pwm_lpss_probe_platform,
116 .remove = pwm_lpss_remove_platform,
117};
118module_platform_driver(pwm_lpss_driver_platform);
119
120MODULE_DESCRIPTION("PWM platform driver for Intel LPSS");
121MODULE_LICENSE("GPL v2");
122MODULE_ALIAS("platform:pwm-lpss");