blob: e2a26d9da25b3985145718071a958a8a1fc844e5 [file] [log] [blame]
Thomas Gleixneraf873fc2019-05-28 09:57:21 -07001// SPDX-License-Identifier: GPL-2.0-only
Thierry Reding6173f8f2012-08-31 11:46:24 +02002/*
3 * Copyright (C) ST-Ericsson SA 2010
4 *
5 * Author: Arun R Murthy <arun.murthy@stericsson.com>
Thierry Reding6173f8f2012-08-31 11:46:24 +02006 */
7#include <linux/err.h>
8#include <linux/platform_device.h>
9#include <linux/slab.h>
10#include <linux/pwm.h>
11#include <linux/mfd/abx500.h>
12#include <linux/mfd/abx500/ab8500.h>
13#include <linux/module.h>
14
15/*
16 * PWM Out generators
17 * Bank: 0x10
18 */
19#define AB8500_PWM_OUT_CTRL1_REG 0x60
20#define AB8500_PWM_OUT_CTRL2_REG 0x61
21#define AB8500_PWM_OUT_CTRL7_REG 0x66
22
Thierry Reding6173f8f2012-08-31 11:46:24 +020023struct ab8500_pwm_chip {
24 struct pwm_chip chip;
25};
26
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010027static int ab8500_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
28 const struct pwm_state *state)
Thierry Reding6173f8f2012-08-31 11:46:24 +020029{
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010030 int ret;
Thierry Reding6173f8f2012-08-31 11:46:24 +020031 u8 reg;
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010032 unsigned int higher_val, lower_val;
33
34 if (state->polarity != PWM_POLARITY_NORMAL)
35 return -EINVAL;
36
37 if (!state->enabled) {
38 ret = abx500_mask_and_set_register_interruptible(chip->dev,
39 AB8500_MISC, AB8500_PWM_OUT_CTRL7_REG,
40 1 << (chip->base - 1), 0);
41
42 if (ret < 0)
43 dev_err(chip->dev, "%s: Failed to disable PWM, Error %d\n",
44 pwm->label, ret);
45 return ret;
46 }
Thierry Reding6173f8f2012-08-31 11:46:24 +020047
48 /*
49 * get the first 8 bits that are be written to
50 * AB8500_PWM_OUT_CTRL1_REG[0:7]
51 */
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010052 lower_val = state->duty_cycle & 0x00FF;
Thierry Reding6173f8f2012-08-31 11:46:24 +020053 /*
54 * get bits [9:10] that are to be written to
55 * AB8500_PWM_OUT_CTRL2_REG[0:1]
56 */
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010057 higher_val = ((state->duty_cycle & 0x0300) >> 8);
Thierry Reding6173f8f2012-08-31 11:46:24 +020058
59 reg = AB8500_PWM_OUT_CTRL1_REG + ((chip->base - 1) * 2);
60
61 ret = abx500_set_register_interruptible(chip->dev, AB8500_MISC,
62 reg, (u8)lower_val);
63 if (ret < 0)
64 return ret;
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010065
Thierry Reding6173f8f2012-08-31 11:46:24 +020066 ret = abx500_set_register_interruptible(chip->dev, AB8500_MISC,
67 (reg + 1), (u8)higher_val);
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010068 if (ret < 0)
69 return ret;
Thierry Reding6173f8f2012-08-31 11:46:24 +020070
71 ret = abx500_mask_and_set_register_interruptible(chip->dev,
72 AB8500_MISC, AB8500_PWM_OUT_CTRL7_REG,
Axel Lin54b02342014-04-09 21:19:54 +080073 1 << (chip->base - 1), 1 << (chip->base - 1));
Thierry Reding6173f8f2012-08-31 11:46:24 +020074 if (ret < 0)
Axel Lin622fc5d2013-03-26 22:34:50 +080075 dev_err(chip->dev, "%s: Failed to enable PWM, Error %d\n",
Thierry Reding6173f8f2012-08-31 11:46:24 +020076 pwm->label, ret);
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010077
Thierry Reding6173f8f2012-08-31 11:46:24 +020078 return ret;
79}
80
Thierry Reding6173f8f2012-08-31 11:46:24 +020081static const struct pwm_ops ab8500_pwm_ops = {
Uwe Kleine-Königacf34022021-03-01 19:45:37 +010082 .apply = ab8500_pwm_apply,
Axel Linfa0abee2013-03-31 11:14:02 +080083 .owner = THIS_MODULE,
Thierry Reding6173f8f2012-08-31 11:46:24 +020084};
85
Bill Pemberton3e9fe832012-11-19 13:23:14 -050086static int ab8500_pwm_probe(struct platform_device *pdev)
Thierry Reding6173f8f2012-08-31 11:46:24 +020087{
88 struct ab8500_pwm_chip *ab8500;
89 int err;
90
91 /*
92 * Nothing to be done in probe, this is required to get the
93 * device which is required for ab8500 read and write
94 */
Jingoo Han482467a2013-03-08 12:45:58 +090095 ab8500 = devm_kzalloc(&pdev->dev, sizeof(*ab8500), GFP_KERNEL);
Jingoo Hana2fc1db2014-04-23 18:39:26 +090096 if (ab8500 == NULL)
Thierry Reding6173f8f2012-08-31 11:46:24 +020097 return -ENOMEM;
Thierry Reding6173f8f2012-08-31 11:46:24 +020098
99 ab8500->chip.dev = &pdev->dev;
100 ab8500->chip.ops = &ab8500_pwm_ops;
Thierry Reding6173f8f2012-08-31 11:46:24 +0200101 ab8500->chip.npwm = 1;
102
103 err = pwmchip_add(&ab8500->chip);
Jingoo Han482467a2013-03-08 12:45:58 +0900104 if (err < 0)
Uwe Kleine-König2e978a42020-08-12 09:52:14 +0200105 return dev_err_probe(&pdev->dev, err, "Failed to add pwm chip\n");
Thierry Reding6173f8f2012-08-31 11:46:24 +0200106
107 dev_dbg(&pdev->dev, "pwm probe successful\n");
108 platform_set_drvdata(pdev, ab8500);
109
110 return 0;
111}
112
Bill Pemberton77f37912012-11-19 13:26:09 -0500113static int ab8500_pwm_remove(struct platform_device *pdev)
Thierry Reding6173f8f2012-08-31 11:46:24 +0200114{
115 struct ab8500_pwm_chip *ab8500 = platform_get_drvdata(pdev);
116 int err;
117
118 err = pwmchip_remove(&ab8500->chip);
119 if (err < 0)
120 return err;
121
122 dev_dbg(&pdev->dev, "pwm driver removed\n");
Thierry Reding6173f8f2012-08-31 11:46:24 +0200123
124 return 0;
125}
126
127static struct platform_driver ab8500_pwm_driver = {
128 .driver = {
129 .name = "ab8500-pwm",
Thierry Reding6173f8f2012-08-31 11:46:24 +0200130 },
131 .probe = ab8500_pwm_probe,
Bill Pembertonfd109112012-11-19 13:21:28 -0500132 .remove = ab8500_pwm_remove,
Thierry Reding6173f8f2012-08-31 11:46:24 +0200133};
134module_platform_driver(ab8500_pwm_driver);
135
136MODULE_AUTHOR("Arun MURTHY <arun.murthy@stericsson.com>");
137MODULE_DESCRIPTION("AB8500 Pulse Width Modulation Driver");
138MODULE_ALIAS("platform:ab8500-pwm");
139MODULE_LICENSE("GPL v2");