2 * Driver for TWL4030/6030 Generic Pulse Width Modulator
4 * Copyright (C) 2012 Texas Instruments
5 * Author: Peter Ujfalusi <peter.ujfalusi@ti.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <linux/module.h>
21 #include <linux/platform_device.h>
22 #include <linux/pwm.h>
23 #include <linux/i2c/twl.h>
24 #include <linux/slab.h>
27 * This driver handles the PWMs of TWL4030 and TWL6030.
28 * The TRM names for the PWMs on TWL4030 are: PWM0, PWM1
29 * TWL6030 also have two PWMs named in the TRM as PWM1, PWM2
32 #define TWL_PWM_MAX 0x7f
34 /* Registers, bits and macro for TWL4030 */
35 #define TWL4030_GPBR1_REG 0x0c
36 #define TWL4030_PMBR1_REG 0x0d
38 /* GPBR1 register bits */
39 #define TWL4030_PWMXCLK_ENABLE (1 << 0)
40 #define TWL4030_PWMX_ENABLE (1 << 2)
41 #define TWL4030_PWMX_BITS (TWL4030_PWMX_ENABLE | TWL4030_PWMXCLK_ENABLE)
42 #define TWL4030_PWM_TOGGLE(pwm, x) ((x) << (pwm))
44 /* PMBR1 register bits */
45 #define TWL4030_GPIO6_PWM0_MUTE_MASK (0x03 << 2)
46 #define TWL4030_GPIO6_PWM0_MUTE_PWM0 (0x01 << 2)
47 #define TWL4030_GPIO7_VIBRASYNC_PWM1_MASK (0x03 << 4)
48 #define TWL4030_GPIO7_VIBRASYNC_PWM1_PWM1 (0x03 << 4)
50 /* Register, bits and macro for TWL6030 */
51 #define TWL6030_TOGGLE3_REG 0x92
53 #define TWL6030_PWMXR (1 << 0)
54 #define TWL6030_PWMXS (1 << 1)
55 #define TWL6030_PWMXEN (1 << 2)
56 #define TWL6030_PWM_TOGGLE(pwm, x) ((x) << (pwm * 3))
65 static inline struct twl_pwm_chip *to_twl(struct pwm_chip *chip)
67 return container_of(chip, struct twl_pwm_chip, chip);
70 static int twl_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
71 int duty_ns, int period_ns)
73 int duty_cycle = DIV_ROUND_UP(duty_ns * TWL_PWM_MAX, period_ns) + 1;
74 u8 pwm_config[2] = { 1, 0 };
78 * To configure the duty period:
79 * On-cycle is set to 1 (the minimum allowed value)
80 * The off time of 0 is not configurable, so the mapping is:
84 * 126 - > off cycle 127,
86 * When on cycle == off cycle the PWM will be always on
90 else if (duty_cycle > TWL_PWM_MAX)
93 base = pwm->hwpwm * 3;
95 pwm_config[1] = duty_cycle;
97 ret = twl_i2c_write(TWL_MODULE_PWM, pwm_config, base, 2);
99 dev_err(chip->dev, "%s: Failed to configure PWM\n", pwm->label);
104 static int twl4030_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
106 struct twl_pwm_chip *twl = to_twl(chip);
110 mutex_lock(&twl->mutex);
111 ret = twl_i2c_read_u8(TWL4030_MODULE_INTBR, &val, TWL4030_GPBR1_REG);
113 dev_err(chip->dev, "%s: Failed to read GPBR1\n", pwm->label);
117 val |= TWL4030_PWM_TOGGLE(pwm->hwpwm, TWL4030_PWMXCLK_ENABLE);
119 ret = twl_i2c_write_u8(TWL4030_MODULE_INTBR, val, TWL4030_GPBR1_REG);
121 dev_err(chip->dev, "%s: Failed to enable PWM\n", pwm->label);
123 val |= TWL4030_PWM_TOGGLE(pwm->hwpwm, TWL4030_PWMX_ENABLE);
125 ret = twl_i2c_write_u8(TWL4030_MODULE_INTBR, val, TWL4030_GPBR1_REG);
127 dev_err(chip->dev, "%s: Failed to enable PWM\n", pwm->label);
130 mutex_unlock(&twl->mutex);
134 static void twl4030_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
136 struct twl_pwm_chip *twl = to_twl(chip);
140 mutex_lock(&twl->mutex);
141 ret = twl_i2c_read_u8(TWL4030_MODULE_INTBR, &val, TWL4030_GPBR1_REG);
143 dev_err(chip->dev, "%s: Failed to read GPBR1\n", pwm->label);
147 val &= ~TWL4030_PWM_TOGGLE(pwm->hwpwm, TWL4030_PWMX_ENABLE);
149 ret = twl_i2c_write_u8(TWL4030_MODULE_INTBR, val, TWL4030_GPBR1_REG);
151 dev_err(chip->dev, "%s: Failed to disable PWM\n", pwm->label);
153 val &= ~TWL4030_PWM_TOGGLE(pwm->hwpwm, TWL4030_PWMXCLK_ENABLE);
155 ret = twl_i2c_write_u8(TWL4030_MODULE_INTBR, val, TWL4030_GPBR1_REG);
157 dev_err(chip->dev, "%s: Failed to disable PWM\n", pwm->label);
160 mutex_unlock(&twl->mutex);
163 static int twl4030_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
165 struct twl_pwm_chip *twl = to_twl(chip);
169 if (pwm->hwpwm == 1) {
170 mask = TWL4030_GPIO7_VIBRASYNC_PWM1_MASK;
171 bits = TWL4030_GPIO7_VIBRASYNC_PWM1_PWM1;
173 mask = TWL4030_GPIO6_PWM0_MUTE_MASK;
174 bits = TWL4030_GPIO6_PWM0_MUTE_PWM0;
177 mutex_lock(&twl->mutex);
178 ret = twl_i2c_read_u8(TWL4030_MODULE_INTBR, &val, TWL4030_PMBR1_REG);
180 dev_err(chip->dev, "%s: Failed to read PMBR1\n", pwm->label);
184 /* Save the current MUX configuration for the PWM */
185 twl->twl4030_pwm_mux &= ~mask;
186 twl->twl4030_pwm_mux |= (val & mask);
188 /* Select PWM functionality */
192 ret = twl_i2c_write_u8(TWL4030_MODULE_INTBR, val, TWL4030_PMBR1_REG);
194 dev_err(chip->dev, "%s: Failed to request PWM\n", pwm->label);
197 mutex_unlock(&twl->mutex);
201 static void twl4030_pwm_free(struct pwm_chip *chip, struct pwm_device *pwm)
203 struct twl_pwm_chip *twl = to_twl(chip);
208 mask = TWL4030_GPIO7_VIBRASYNC_PWM1_MASK;
210 mask = TWL4030_GPIO6_PWM0_MUTE_MASK;
212 mutex_lock(&twl->mutex);
213 ret = twl_i2c_read_u8(TWL4030_MODULE_INTBR, &val, TWL4030_PMBR1_REG);
215 dev_err(chip->dev, "%s: Failed to read PMBR1\n", pwm->label);
219 /* Restore the MUX configuration for the PWM */
221 val |= (twl->twl4030_pwm_mux & mask);
223 ret = twl_i2c_write_u8(TWL4030_MODULE_INTBR, val, TWL4030_PMBR1_REG);
225 dev_err(chip->dev, "%s: Failed to free PWM\n", pwm->label);
228 mutex_unlock(&twl->mutex);
231 static int twl6030_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
233 struct twl_pwm_chip *twl = to_twl(chip);
237 mutex_lock(&twl->mutex);
238 val = twl->twl6030_toggle3;
239 val |= TWL6030_PWM_TOGGLE(pwm->hwpwm, TWL6030_PWMXS | TWL6030_PWMXEN);
240 val &= ~TWL6030_PWM_TOGGLE(pwm->hwpwm, TWL6030_PWMXR);
242 ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, val, TWL6030_TOGGLE3_REG);
244 dev_err(chip->dev, "%s: Failed to enable PWM\n", pwm->label);
248 twl->twl6030_toggle3 = val;
250 mutex_unlock(&twl->mutex);
254 static void twl6030_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
256 struct twl_pwm_chip *twl = to_twl(chip);
260 mutex_lock(&twl->mutex);
261 val = twl->twl6030_toggle3;
262 val |= TWL6030_PWM_TOGGLE(pwm->hwpwm, TWL6030_PWMXR);
263 val &= ~TWL6030_PWM_TOGGLE(pwm->hwpwm, TWL6030_PWMXS | TWL6030_PWMXEN);
265 ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, val, TWL6030_TOGGLE3_REG);
267 dev_err(chip->dev, "%s: Failed to read TOGGLE3\n", pwm->label);
271 val |= TWL6030_PWM_TOGGLE(pwm->hwpwm, TWL6030_PWMXS | TWL6030_PWMXEN);
273 ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, val, TWL6030_TOGGLE3_REG);
275 dev_err(chip->dev, "%s: Failed to disable PWM\n", pwm->label);
279 twl->twl6030_toggle3 = val;
281 mutex_unlock(&twl->mutex);
284 static const struct pwm_ops twl4030_pwm_ops = {
285 .config = twl_pwm_config,
286 .enable = twl4030_pwm_enable,
287 .disable = twl4030_pwm_disable,
288 .request = twl4030_pwm_request,
289 .free = twl4030_pwm_free,
290 .owner = THIS_MODULE,
293 static const struct pwm_ops twl6030_pwm_ops = {
294 .config = twl_pwm_config,
295 .enable = twl6030_pwm_enable,
296 .disable = twl6030_pwm_disable,
297 .owner = THIS_MODULE,
300 static int twl_pwm_probe(struct platform_device *pdev)
302 struct twl_pwm_chip *twl;
305 twl = devm_kzalloc(&pdev->dev, sizeof(*twl), GFP_KERNEL);
309 if (twl_class_is_4030())
310 twl->chip.ops = &twl4030_pwm_ops;
312 twl->chip.ops = &twl6030_pwm_ops;
314 twl->chip.dev = &pdev->dev;
317 twl->chip.can_sleep = true;
319 mutex_init(&twl->mutex);
321 ret = pwmchip_add(&twl->chip);
325 platform_set_drvdata(pdev, twl);
330 static int twl_pwm_remove(struct platform_device *pdev)
332 struct twl_pwm_chip *twl = platform_get_drvdata(pdev);
334 return pwmchip_remove(&twl->chip);
338 static const struct of_device_id twl_pwm_of_match[] = {
339 { .compatible = "ti,twl4030-pwm" },
340 { .compatible = "ti,twl6030-pwm" },
343 MODULE_DEVICE_TABLE(of, twl_pwm_of_match);
346 static struct platform_driver twl_pwm_driver = {
349 .of_match_table = of_match_ptr(twl_pwm_of_match),
351 .probe = twl_pwm_probe,
352 .remove = twl_pwm_remove,
354 module_platform_driver(twl_pwm_driver);
356 MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
357 MODULE_DESCRIPTION("PWM driver for TWL4030 and TWL6030");
358 MODULE_ALIAS("platform:twl-pwm");
359 MODULE_LICENSE("GPL");