2 * Intel Low Power Subsystem PWM controller driver
4 * Copyright (C) 2014, Intel Corporation
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.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
22 #define PWM 0x00000000
23 #define PWM_ENABLE BIT(31)
24 #define PWM_SW_UPDATE BIT(30)
25 #define PWM_BASE_UNIT_SHIFT 8
26 #define PWM_BASE_UNIT_MASK 0x00ffff00
27 #define PWM_ON_TIME_DIV_MASK 0x000000ff
28 #define PWM_DIVISION_CORRECTION 0x2
29 #define PWM_LIMIT (0x8000 + PWM_DIVISION_CORRECTION)
30 #define NSECS_PER_SEC 1000000000UL
32 struct pwm_lpss_chip {
35 unsigned long clk_rate;
39 const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
42 EXPORT_SYMBOL_GPL(pwm_lpss_byt_info);
45 const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
48 EXPORT_SYMBOL_GPL(pwm_lpss_bsw_info);
50 static inline struct pwm_lpss_chip *to_lpwm(struct pwm_chip *chip)
52 return container_of(chip, struct pwm_lpss_chip, chip);
55 static int pwm_lpss_config(struct pwm_chip *chip, struct pwm_device *pwm,
56 int duty_ns, int period_ns)
58 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
61 unsigned long long base_unit, freq = NSECS_PER_SEC;
64 do_div(freq, period_ns);
66 /* The equation is: base_unit = ((freq / c) * 65536) + correction */
67 base_unit = freq * 65536;
74 base_unit += PWM_DIVISION_CORRECTION;
75 if (base_unit > PWM_LIMIT)
80 on_time_div = 255 - (255 * duty_ns / period_ns);
82 ctrl = readl(lpwm->regs + PWM);
83 ctrl &= ~(PWM_BASE_UNIT_MASK | PWM_ON_TIME_DIV_MASK);
84 ctrl |= (u16) base_unit << PWM_BASE_UNIT_SHIFT;
86 /* request PWM to update on next cycle */
87 ctrl |= PWM_SW_UPDATE;
88 writel(ctrl, lpwm->regs + PWM);
93 static int pwm_lpss_enable(struct pwm_chip *chip, struct pwm_device *pwm)
95 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
98 ctrl = readl(lpwm->regs + PWM);
99 writel(ctrl | PWM_ENABLE, lpwm->regs + PWM);
104 static void pwm_lpss_disable(struct pwm_chip *chip, struct pwm_device *pwm)
106 struct pwm_lpss_chip *lpwm = to_lpwm(chip);
109 ctrl = readl(lpwm->regs + PWM);
110 writel(ctrl & ~PWM_ENABLE, lpwm->regs + PWM);
113 static const struct pwm_ops pwm_lpss_ops = {
114 .config = pwm_lpss_config,
115 .enable = pwm_lpss_enable,
116 .disable = pwm_lpss_disable,
117 .owner = THIS_MODULE,
120 struct pwm_lpss_chip *pwm_lpss_probe(struct device *dev, struct resource *r,
121 const struct pwm_lpss_boardinfo *info)
123 struct pwm_lpss_chip *lpwm;
126 lpwm = devm_kzalloc(dev, sizeof(*lpwm), GFP_KERNEL);
128 return ERR_PTR(-ENOMEM);
130 lpwm->regs = devm_ioremap_resource(dev, r);
131 if (IS_ERR(lpwm->regs))
132 return ERR_CAST(lpwm->regs);
134 lpwm->clk_rate = info->clk_rate;
135 lpwm->chip.dev = dev;
136 lpwm->chip.ops = &pwm_lpss_ops;
137 lpwm->chip.base = -1;
140 ret = pwmchip_add(&lpwm->chip);
142 dev_err(dev, "failed to add PWM chip: %d\n", ret);
148 EXPORT_SYMBOL_GPL(pwm_lpss_probe);
150 int pwm_lpss_remove(struct pwm_lpss_chip *lpwm)
154 ctrl = readl(lpwm->regs + PWM);
155 writel(ctrl & ~PWM_ENABLE, lpwm->regs + PWM);
157 return pwmchip_remove(&lpwm->chip);
159 EXPORT_SYMBOL_GPL(pwm_lpss_remove);
161 MODULE_DESCRIPTION("PWM driver for Intel LPSS");
163 MODULE_LICENSE("GPL v2");