blob: d04eee7aa9676e76b4a5ce76580052251fe7e1db [file] [log] [blame]
Mika Westerbergd16a5aa2014-03-20 22:04:23 +08001/*
2 * Intel Low Power Subsystem PWM controller driver
3 *
4 * Copyright (C) 2014, Intel Corporation
5 * Author: Mika Westerberg <mika.westerberg@linux.intel.com>
6 * Author: Chew Kean Ho <kean.ho.chew@intel.com>
7 * Author: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
8 * Author: Chew Chiau Ee <chiau.ee.chew@intel.com>
Alan Cox093e00b2014-04-18 19:17:40 +08009 * Author: Alan Cox <alan@linux.intel.com>
Mika Westerbergd16a5aa2014-03-20 22:04:23 +080010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16#include <linux/acpi.h>
Mika Westerbergd16a5aa2014-03-20 22:04:23 +080017#include <linux/device.h>
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/pwm.h>
21#include <linux/platform_device.h>
Alan Cox093e00b2014-04-18 19:17:40 +080022#include <linux/pci.h>
23
24static int pci_drv, plat_drv; /* So we know which drivers registered */
Mika Westerbergd16a5aa2014-03-20 22:04:23 +080025
26#define PWM 0x00000000
27#define PWM_ENABLE BIT(31)
28#define PWM_SW_UPDATE BIT(30)
29#define PWM_BASE_UNIT_SHIFT 8
30#define PWM_BASE_UNIT_MASK 0x00ffff00
31#define PWM_ON_TIME_DIV_MASK 0x000000ff
32#define PWM_DIVISION_CORRECTION 0x2
33#define PWM_LIMIT (0x8000 + PWM_DIVISION_CORRECTION)
34#define NSECS_PER_SEC 1000000000UL
35
36struct pwm_lpss_chip {
37 struct pwm_chip chip;
38 void __iomem *regs;
Alan Cox093e00b2014-04-18 19:17:40 +080039 unsigned long clk_rate;
40};
41
42struct pwm_lpss_boardinfo {
43 unsigned long clk_rate;
44};
45
46/* BayTrail */
47static const struct pwm_lpss_boardinfo byt_info = {
48 25000000
Mika Westerbergd16a5aa2014-03-20 22:04:23 +080049};
50
Alan Cox373c5782014-08-19 17:18:29 +030051/* Braswell */
52static const struct pwm_lpss_boardinfo bsw_info = {
53 19200000
54};
55
Mika Westerbergd16a5aa2014-03-20 22:04:23 +080056static inline struct pwm_lpss_chip *to_lpwm(struct pwm_chip *chip)
57{
58 return container_of(chip, struct pwm_lpss_chip, chip);
59}
60
61static int pwm_lpss_config(struct pwm_chip *chip, struct pwm_device *pwm,
62 int duty_ns, int period_ns)
63{
64 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
65 u8 on_time_div;
66 unsigned long c;
67 unsigned long long base_unit, freq = NSECS_PER_SEC;
68 u32 ctrl;
69
70 do_div(freq, period_ns);
71
72 /* The equation is: base_unit = ((freq / c) * 65536) + correction */
73 base_unit = freq * 65536;
74
Alan Cox093e00b2014-04-18 19:17:40 +080075 c = lpwm->clk_rate;
Mika Westerbergd16a5aa2014-03-20 22:04:23 +080076 if (!c)
77 return -EINVAL;
78
79 do_div(base_unit, c);
80 base_unit += PWM_DIVISION_CORRECTION;
81 if (base_unit > PWM_LIMIT)
82 return -EINVAL;
83
84 if (duty_ns <= 0)
85 duty_ns = 1;
86 on_time_div = 255 - (255 * duty_ns / period_ns);
87
88 ctrl = readl(lpwm->regs + PWM);
89 ctrl &= ~(PWM_BASE_UNIT_MASK | PWM_ON_TIME_DIV_MASK);
90 ctrl |= (u16) base_unit << PWM_BASE_UNIT_SHIFT;
91 ctrl |= on_time_div;
92 /* request PWM to update on next cycle */
93 ctrl |= PWM_SW_UPDATE;
94 writel(ctrl, lpwm->regs + PWM);
95
96 return 0;
97}
98
99static int pwm_lpss_enable(struct pwm_chip *chip, struct pwm_device *pwm)
100{
101 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
102 u32 ctrl;
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800103
104 ctrl = readl(lpwm->regs + PWM);
105 writel(ctrl | PWM_ENABLE, lpwm->regs + PWM);
106
107 return 0;
108}
109
110static void pwm_lpss_disable(struct pwm_chip *chip, struct pwm_device *pwm)
111{
112 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
113 u32 ctrl;
114
115 ctrl = readl(lpwm->regs + PWM);
116 writel(ctrl & ~PWM_ENABLE, lpwm->regs + PWM);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800117}
118
119static const struct pwm_ops pwm_lpss_ops = {
120 .config = pwm_lpss_config,
121 .enable = pwm_lpss_enable,
122 .disable = pwm_lpss_disable,
123 .owner = THIS_MODULE,
124};
125
Alan Cox093e00b2014-04-18 19:17:40 +0800126static struct pwm_lpss_chip *pwm_lpss_probe(struct device *dev,
127 struct resource *r,
Thierry Reding89c03392014-05-07 10:27:57 +0200128 const struct pwm_lpss_boardinfo *info)
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800129{
130 struct pwm_lpss_chip *lpwm;
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800131 int ret;
132
Alan Cox093e00b2014-04-18 19:17:40 +0800133 lpwm = devm_kzalloc(dev, sizeof(*lpwm), GFP_KERNEL);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800134 if (!lpwm)
Alan Cox093e00b2014-04-18 19:17:40 +0800135 return ERR_PTR(-ENOMEM);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800136
Alan Cox093e00b2014-04-18 19:17:40 +0800137 lpwm->regs = devm_ioremap_resource(dev, r);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800138 if (IS_ERR(lpwm->regs))
Thierry Reding89c03392014-05-07 10:27:57 +0200139 return ERR_CAST(lpwm->regs);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800140
Heikki Krogerus65accd82014-05-09 11:35:21 +0300141 lpwm->clk_rate = info->clk_rate;
Alan Cox093e00b2014-04-18 19:17:40 +0800142 lpwm->chip.dev = dev;
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800143 lpwm->chip.ops = &pwm_lpss_ops;
144 lpwm->chip.base = -1;
145 lpwm->chip.npwm = 1;
146
147 ret = pwmchip_add(&lpwm->chip);
148 if (ret) {
Alan Cox093e00b2014-04-18 19:17:40 +0800149 dev_err(dev, "failed to add PWM chip: %d\n", ret);
150 return ERR_PTR(ret);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800151 }
152
Alan Cox093e00b2014-04-18 19:17:40 +0800153 return lpwm;
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800154}
155
Alan Cox093e00b2014-04-18 19:17:40 +0800156static int pwm_lpss_remove(struct pwm_lpss_chip *lpwm)
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800157{
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800158 u32 ctrl;
159
160 ctrl = readl(lpwm->regs + PWM);
161 writel(ctrl & ~PWM_ENABLE, lpwm->regs + PWM);
162
163 return pwmchip_remove(&lpwm->chip);
164}
165
Alan Cox093e00b2014-04-18 19:17:40 +0800166static int pwm_lpss_probe_pci(struct pci_dev *pdev,
167 const struct pci_device_id *id)
168{
169 const struct pwm_lpss_boardinfo *info;
170 struct pwm_lpss_chip *lpwm;
171 int err;
172
173 err = pci_enable_device(pdev);
174 if (err < 0)
175 return err;
176
177 info = (struct pwm_lpss_boardinfo *)id->driver_data;
178 lpwm = pwm_lpss_probe(&pdev->dev, &pdev->resource[0], info);
179 if (IS_ERR(lpwm))
180 return PTR_ERR(lpwm);
181
182 pci_set_drvdata(pdev, lpwm);
183 return 0;
184}
185
186static void pwm_lpss_remove_pci(struct pci_dev *pdev)
187{
188 struct pwm_lpss_chip *lpwm = pci_get_drvdata(pdev);
189
190 pwm_lpss_remove(lpwm);
191 pci_disable_device(pdev);
192}
193
194static struct pci_device_id pwm_lpss_pci_ids[] = {
195 { PCI_VDEVICE(INTEL, 0x0f08), (unsigned long)&byt_info},
196 { PCI_VDEVICE(INTEL, 0x0f09), (unsigned long)&byt_info},
Alan Cox373c5782014-08-19 17:18:29 +0300197 { PCI_VDEVICE(INTEL, 0x2288), (unsigned long)&bsw_info},
198 { PCI_VDEVICE(INTEL, 0x2289), (unsigned long)&bsw_info},
Alan Cox093e00b2014-04-18 19:17:40 +0800199 { },
200};
201MODULE_DEVICE_TABLE(pci, pwm_lpss_pci_ids);
202
203static struct pci_driver pwm_lpss_driver_pci = {
204 .name = "pwm-lpss",
205 .id_table = pwm_lpss_pci_ids,
206 .probe = pwm_lpss_probe_pci,
207 .remove = pwm_lpss_remove_pci,
208};
209
210static int pwm_lpss_probe_platform(struct platform_device *pdev)
211{
Heikki Krogerus65accd82014-05-09 11:35:21 +0300212 const struct pwm_lpss_boardinfo *info;
213 const struct acpi_device_id *id;
Alan Cox093e00b2014-04-18 19:17:40 +0800214 struct pwm_lpss_chip *lpwm;
215 struct resource *r;
216
Heikki Krogerus65accd82014-05-09 11:35:21 +0300217 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
218 if (!id)
219 return -ENODEV;
220
Alan Cox093e00b2014-04-18 19:17:40 +0800221 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
222
Heikki Krogerus65accd82014-05-09 11:35:21 +0300223 info = (struct pwm_lpss_boardinfo *)id->driver_data;
224 lpwm = pwm_lpss_probe(&pdev->dev, r, info);
Alan Cox093e00b2014-04-18 19:17:40 +0800225 if (IS_ERR(lpwm))
226 return PTR_ERR(lpwm);
227
228 platform_set_drvdata(pdev, lpwm);
229 return 0;
230}
231
232static int pwm_lpss_remove_platform(struct platform_device *pdev)
233{
234 struct pwm_lpss_chip *lpwm = platform_get_drvdata(pdev);
235
236 return pwm_lpss_remove(lpwm);
237}
238
239static const struct acpi_device_id pwm_lpss_acpi_match[] = {
Heikki Krogerus65accd82014-05-09 11:35:21 +0300240 { "80860F09", (unsigned long)&byt_info },
Alan Cox373c5782014-08-19 17:18:29 +0300241 { "80862288", (unsigned long)&bsw_info },
Alan Cox093e00b2014-04-18 19:17:40 +0800242 { },
243};
244MODULE_DEVICE_TABLE(acpi, pwm_lpss_acpi_match);
245
246static struct platform_driver pwm_lpss_driver_platform = {
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800247 .driver = {
248 .name = "pwm-lpss",
249 .acpi_match_table = pwm_lpss_acpi_match,
250 },
Alan Cox093e00b2014-04-18 19:17:40 +0800251 .probe = pwm_lpss_probe_platform,
252 .remove = pwm_lpss_remove_platform,
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800253};
Alan Cox093e00b2014-04-18 19:17:40 +0800254
255static int __init pwm_init(void)
256{
257 pci_drv = pci_register_driver(&pwm_lpss_driver_pci);
258 plat_drv = platform_driver_register(&pwm_lpss_driver_platform);
259 if (pci_drv && plat_drv)
260 return pci_drv;
261
262 return 0;
263}
264module_init(pwm_init);
265
266static void __exit pwm_exit(void)
267{
268 if (!pci_drv)
269 pci_unregister_driver(&pwm_lpss_driver_pci);
270 if (!plat_drv)
271 platform_driver_unregister(&pwm_lpss_driver_platform);
272}
273module_exit(pwm_exit);
Mika Westerbergd16a5aa2014-03-20 22:04:23 +0800274
275MODULE_DESCRIPTION("PWM driver for Intel LPSS");
276MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
277MODULE_LICENSE("GPL v2");
278MODULE_ALIAS("platform:pwm-lpss");