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.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/pm_runtime.h>
23 #define PWM 0x00000000
24 #define PWM_ENABLE BIT(31)
25 #define PWM_SW_UPDATE BIT(30)
26 #define PWM_BASE_UNIT_SHIFT 8
27 #define PWM_BASE_UNIT_MASK 0x00ffff00
28 #define PWM_ON_TIME_DIV_MASK 0x000000ff
29 #define PWM_DIVISION_CORRECTION 0x2
30 #define PWM_LIMIT (0x8000 + PWM_DIVISION_CORRECTION)
31 #define NSECS_PER_SEC 1000000000UL
33 /* Size of each PWM register space if multiple */
34 #define PWM_SIZE 0x400
36 struct pwm_lpss_chip
{
39 unsigned long clk_rate
;
43 const struct pwm_lpss_boardinfo pwm_lpss_byt_info
= {
47 EXPORT_SYMBOL_GPL(pwm_lpss_byt_info
);
50 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
= {
61 EXPORT_SYMBOL_GPL(pwm_lpss_bxt_info
);
63 static inline struct pwm_lpss_chip
*to_lpwm(struct pwm_chip
*chip
)
65 return container_of(chip
, struct pwm_lpss_chip
, chip
);
68 static inline u32
pwm_lpss_read(const struct pwm_device
*pwm
)
70 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
72 return readl(lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
);
75 static inline void pwm_lpss_write(const struct pwm_device
*pwm
, u32 value
)
77 struct pwm_lpss_chip
*lpwm
= to_lpwm(pwm
->chip
);
79 writel(value
, lpwm
->regs
+ pwm
->hwpwm
* PWM_SIZE
+ PWM
);
82 static int pwm_lpss_config(struct pwm_chip
*chip
, struct pwm_device
*pwm
,
83 int duty_ns
, int period_ns
)
85 struct pwm_lpss_chip
*lpwm
= to_lpwm(chip
);
88 unsigned long long base_unit
, freq
= NSECS_PER_SEC
;
91 do_div(freq
, period_ns
);
93 /* The equation is: base_unit = ((freq / c) * 65536) + correction */
94 base_unit
= freq
* 65536;
100 do_div(base_unit
, c
);
101 base_unit
+= PWM_DIVISION_CORRECTION
;
102 if (base_unit
> PWM_LIMIT
)
107 on_time_div
= 255 - (255 * duty_ns
/ period_ns
);
109 pm_runtime_get_sync(chip
->dev
);
111 ctrl
= pwm_lpss_read(pwm
);
112 ctrl
&= ~(PWM_BASE_UNIT_MASK
| PWM_ON_TIME_DIV_MASK
);
113 ctrl
|= (u16
) base_unit
<< PWM_BASE_UNIT_SHIFT
;
115 /* request PWM to update on next cycle */
116 ctrl
|= PWM_SW_UPDATE
;
117 pwm_lpss_write(pwm
, ctrl
);
119 pm_runtime_put(chip
->dev
);
124 static int pwm_lpss_enable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
126 pm_runtime_get_sync(chip
->dev
);
127 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) | PWM_ENABLE
);
131 static void pwm_lpss_disable(struct pwm_chip
*chip
, struct pwm_device
*pwm
)
133 pwm_lpss_write(pwm
, pwm_lpss_read(pwm
) & ~PWM_ENABLE
);
134 pm_runtime_put(chip
->dev
);
137 static const struct pwm_ops pwm_lpss_ops
= {
138 .free
= pwm_lpss_disable
,
139 .config
= pwm_lpss_config
,
140 .enable
= pwm_lpss_enable
,
141 .disable
= pwm_lpss_disable
,
142 .owner
= THIS_MODULE
,
145 struct pwm_lpss_chip
*pwm_lpss_probe(struct device
*dev
, struct resource
*r
,
146 const struct pwm_lpss_boardinfo
*info
)
148 struct pwm_lpss_chip
*lpwm
;
151 lpwm
= devm_kzalloc(dev
, sizeof(*lpwm
), GFP_KERNEL
);
153 return ERR_PTR(-ENOMEM
);
155 lpwm
->regs
= devm_ioremap_resource(dev
, r
);
156 if (IS_ERR(lpwm
->regs
))
157 return ERR_CAST(lpwm
->regs
);
159 lpwm
->clk_rate
= info
->clk_rate
;
160 lpwm
->chip
.dev
= dev
;
161 lpwm
->chip
.ops
= &pwm_lpss_ops
;
162 lpwm
->chip
.base
= -1;
163 lpwm
->chip
.npwm
= info
->npwm
;
165 ret
= pwmchip_add(&lpwm
->chip
);
167 dev_err(dev
, "failed to add PWM chip: %d\n", ret
);
173 EXPORT_SYMBOL_GPL(pwm_lpss_probe
);
175 int pwm_lpss_remove(struct pwm_lpss_chip
*lpwm
)
177 return pwmchip_remove(&lpwm
->chip
);
179 EXPORT_SYMBOL_GPL(pwm_lpss_remove
);
181 MODULE_DESCRIPTION("PWM driver for Intel LPSS");
182 MODULE_AUTHOR("Mika Westerberg <mika.westerberg@linux.intel.com>");
183 MODULE_LICENSE("GPL v2");