2 * Intel Low Power Subsystem PWM controller driver
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>
9 * Author: Alan Cox <alan@linux.intel.com>
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.
16 #include <linux/delay.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/time.h>
25 #define PWM 0x00000000
26 #define PWM_ENABLE BIT(31)
27 #define PWM_SW_UPDATE BIT(30)
28 #define PWM_BASE_UNIT_SHIFT 8
29 #define PWM_ON_TIME_DIV_MASK 0x000000ff
31 /* Size of each PWM register space if multiple */
32 #define PWM_SIZE 0x400
34 struct pwm_lpss_chip
{
37 const struct pwm_lpss_boardinfo
*info
;
41 const struct pwm_lpss_boardinfo pwm_lpss_byt_info
= {
46 EXPORT_SYMBOL_GPL(pwm_lpss_byt_info
);
49 const struct pwm_lpss_boardinfo pwm_lpss_bsw_info
= {
54 EXPORT_SYMBOL_GPL(pwm_lpss_bsw_info
);
57 const struct pwm_lpss_boardinfo pwm_lpss_bxt_info
= {
62 EXPORT_SYMBOL_GPL(pwm_lpss_bxt_info
);
64 static inline struct pwm_lpss_chip
*to_lpwm(struct pwm_chip
*chip
)
66 return container_of(chip
, struct pwm_lpss_chip
, chip
);
69 static inline u32
pwm_lpss_read(const struct pwm_device
*pwm
)
71 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
73 return readl(lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
);
76 static inline void pwm_lpss_write(const struct pwm_device
*pwm
, u32 value
)
78 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
80 writel(value
, lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
);
83 static void pwm_lpss_update(struct pwm_device
*pwm
)
85 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) | PWM_SW_UPDATE
);
86 /* Give it some time to propagate */
90 static int pwm_lpss_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
91 int duty_ns
, int period_ns
)
93 struct pwm_lpss_chip
*lpwm
= to_lpwm(chip
);
94 unsigned long long on_time_div
;
95 unsigned long c
= lpwm
->info
->clk_rate
, base_unit_range
;
96 unsigned long long base_unit
, freq
= NSEC_PER_SEC
;
99 do_div(freq
, period_ns
);
103 * base_unit = round(base_unit_range * freq / c)
105 base_unit_range
= BIT(lpwm
->info
->base_unit_bits
);
106 freq
*= base_unit_range
;
108 base_unit
= DIV_ROUND_CLOSEST_ULL(freq
, c
);
112 on_time_div
= 255ULL * duty_ns
;
113 do_div(on_time_div
, period_ns
);
114 on_time_div
= 255ULL - on_time_div
;
116 pm_runtime_get_sync(chip
->dev
);
118 ctrl
= pwm_lpss_read(pwm
);
119 ctrl
&= ~PWM_ON_TIME_DIV_MASK
;
120 ctrl
&= ~((base_unit_range
- 1) << PWM_BASE_UNIT_SHIFT
);
121 base_unit
&= (base_unit_range
- 1);
122 ctrl
|= (u32
) base_unit
<< PWM_BASE_UNIT_SHIFT
;
124 pwm_lpss_write(pwm
, ctrl
);
127 * If the PWM is already enabled we need to notify the hardware
128 * about the change by setting PWM_SW_UPDATE.
130 if (pwm_is_enabled(pwm
))
131 pwm_lpss_update(pwm
);
133 pm_runtime_put(chip
->dev
);
138 static int pwm_lpss_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
140 pm_runtime_get_sync(chip
->dev
);
143 * Hardware must first see PWM_SW_UPDATE before the PWM can be
146 pwm_lpss_update(pwm
);
147 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) | PWM_ENABLE
);
151 static void pwm_lpss_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
153 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) & ~PWM_ENABLE
);
154 pm_runtime_put(chip
->dev
);
157 static const struct pwm_ops pwm_lpss_ops
= {
158 .config
= pwm_lpss_config
,
159 .enable
= pwm_lpss_enable
,
160 .disable
= pwm_lpss_disable
,
161 .owner
= THIS_MODULE
,
164 struct pwm_lpss_chip
*pwm_lpss_probe(struct device
*dev
, struct resource
*r
,
165 const struct pwm_lpss_boardinfo
*info
)
167 struct pwm_lpss_chip
*lpwm
;
171 lpwm
= devm_kzalloc(dev
, sizeof(*lpwm
), GFP_KERNEL
);
173 return ERR_PTR(-ENOMEM
);
175 lpwm
->regs
= devm_ioremap_resource(dev
, r
);
176 if (IS_ERR(lpwm
->regs
))
177 return ERR_CAST(lpwm
->regs
);
181 c
= lpwm
->info
->clk_rate
;
183 return ERR_PTR(-EINVAL
);
185 lpwm
->chip
.dev
= dev
;
186 lpwm
->chip
.ops
= &pwm_lpss_ops
;
187 lpwm
->chip
.base
= -1;
188 lpwm
->chip
.npwm
= info
->npwm
;
190 ret
= pwmchip_add(&lpwm
->chip
);
192 dev_err(dev
, "failed to add PWM chip: %d\n", ret
);
198 EXPORT_SYMBOL_GPL(pwm_lpss_probe
);
200 int pwm_lpss_remove(struct pwm_lpss_chip
*lpwm
)
202 return pwmchip_remove(&lpwm
->chip
);
204 EXPORT_SYMBOL_GPL(pwm_lpss_remove
);
206 MODULE_DESCRIPTION("PWM driver for Intel LPSS");
207 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
208 MODULE_LICENSE("GPL v2");