pwm-twl6030.c 4.3 KB
Newer Older
H
Hemanth V 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * twl6030_pwm.c
 * Driver for PHOENIX (TWL6030) Pulse Width Modulator
 *
 * Copyright (C) 2010 Texas Instruments
 * Author: Hemanth V <hemanthv@ti.com>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <linux/module.h>
#include <linux/platform_device.h>
23
#include <linux/pwm.h>
H
Hemanth V 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#include <linux/i2c/twl.h>
#include <linux/slab.h>

#define LED_PWM_CTRL1	0xF4
#define LED_PWM_CTRL2	0xF5

/* Max value for CTRL1 register */
#define PWM_CTRL1_MAX	255

/* Pull down disable */
#define PWM_CTRL2_DIS_PD	(1 << 6)

/* Current control 2.5 milli Amps */
#define PWM_CTRL2_CURR_02	(2 << 4)

/* LED supply source */
#define PWM_CTRL2_SRC_VAC	(1 << 2)

/* LED modes */
#define PWM_CTRL2_MODE_HW	(0 << 0)
#define PWM_CTRL2_MODE_SW	(1 << 0)
#define PWM_CTRL2_MODE_DIS	(2 << 0)

#define PWM_CTRL2_MODE_MASK	0x3

49 50
struct twl6030_pwm_chip {
	struct pwm_chip chip;
H
Hemanth V 已提交
51 52
};

53
static int twl6030_pwm_request(struct pwm_chip *chip, struct pwm_device *pwm)
H
Hemanth V 已提交
54 55
{
	int ret;
56
	u8 val;
H
Hemanth V 已提交
57

58 59 60
	/* Configure PWM */
	val = PWM_CTRL2_DIS_PD | PWM_CTRL2_CURR_02 | PWM_CTRL2_SRC_VAC |
	      PWM_CTRL2_MODE_HW;
H
Hemanth V 已提交
61

62 63 64 65 66 67
	ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, val, LED_PWM_CTRL2);
	if (ret < 0) {
		dev_err(chip->dev, "%s: Failed to configure PWM, Error %d\n",
			pwm->label, ret);
		return ret;
	}
H
Hemanth V 已提交
68

69 70
	return 0;
}
H
Hemanth V 已提交
71

72 73 74 75 76 77 78
static int twl6030_pwm_config(struct pwm_chip *chip, struct pwm_device *pwm,
			      int duty_ns, int period_ns)
{
	u8 duty_cycle = (duty_ns * PWM_CTRL1_MAX) / period_ns;
	int ret;

	ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, duty_cycle, LED_PWM_CTRL1);
H
Hemanth V 已提交
79 80 81 82 83
	if (ret < 0) {
		pr_err("%s: Failed to configure PWM, Error %d\n",
			pwm->label, ret);
		return ret;
	}
84

H
Hemanth V 已提交
85 86 87
	return 0;
}

88
static int twl6030_pwm_enable(struct pwm_chip *chip, struct pwm_device *pwm)
H
Hemanth V 已提交
89 90
{
	int ret;
91
	u8 val;
H
Hemanth V 已提交
92 93 94

	ret = twl_i2c_read_u8(TWL6030_MODULE_ID1, &val, LED_PWM_CTRL2);
	if (ret < 0) {
95 96
		dev_err(chip->dev, "%s: Failed to enable PWM, Error %d\n",
			pwm->label, ret);
H
Hemanth V 已提交
97 98 99 100 101 102 103 104 105
		return ret;
	}

	/* Change mode to software control */
	val &= ~PWM_CTRL2_MODE_MASK;
	val |= PWM_CTRL2_MODE_SW;

	ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, val, LED_PWM_CTRL2);
	if (ret < 0) {
106 107
		dev_err(chip->dev, "%s: Failed to enable PWM, Error %d\n",
			pwm->label, ret);
H
Hemanth V 已提交
108 109 110 111 112 113 114
		return ret;
	}

	twl_i2c_read_u8(TWL6030_MODULE_ID1, &val, LED_PWM_CTRL2);
	return 0;
}

115
static void twl6030_pwm_disable(struct pwm_chip *chip, struct pwm_device *pwm)
H
Hemanth V 已提交
116 117
{
	int ret;
118
	u8 val;
H
Hemanth V 已提交
119 120 121

	ret = twl_i2c_read_u8(TWL6030_MODULE_ID1, &val, LED_PWM_CTRL2);
	if (ret < 0) {
122
		dev_err(chip->dev, "%s: Failed to disable PWM, Error %d\n",
H
Hemanth V 已提交
123 124 125 126 127 128 129 130 131
			pwm->label, ret);
		return;
	}

	val &= ~PWM_CTRL2_MODE_MASK;
	val |= PWM_CTRL2_MODE_HW;

	ret = twl_i2c_write_u8(TWL6030_MODULE_ID1, val, LED_PWM_CTRL2);
	if (ret < 0) {
132
		dev_err(chip->dev, "%s: Failed to disable PWM, Error %d\n",
H
Hemanth V 已提交
133 134 135 136
			pwm->label, ret);
	}
}

137 138 139 140 141 142 143 144
static const struct pwm_ops twl6030_pwm_ops = {
	.request = twl6030_pwm_request,
	.config = twl6030_pwm_config,
	.enable = twl6030_pwm_enable,
	.disable = twl6030_pwm_disable,
};

static int twl6030_pwm_probe(struct platform_device *pdev)
H
Hemanth V 已提交
145
{
146
	struct twl6030_pwm_chip *twl6030;
H
Hemanth V 已提交
147 148
	int ret;

149 150 151
	twl6030 = devm_kzalloc(&pdev->dev, sizeof(*twl6030), GFP_KERNEL);
	if (!twl6030)
		return -ENOMEM;
H
Hemanth V 已提交
152

153 154 155 156
	twl6030->chip.dev = &pdev->dev;
	twl6030->chip.ops = &twl6030_pwm_ops;
	twl6030->chip.base = -1;
	twl6030->chip.npwm = 1;
H
Hemanth V 已提交
157

158 159 160
	ret = pwmchip_add(&twl6030->chip);
	if (ret < 0)
		return ret;
H
Hemanth V 已提交
161

162
	platform_set_drvdata(pdev, twl6030);
H
Hemanth V 已提交
163

164
	return 0;
H
Hemanth V 已提交
165 166
}

167
static int twl6030_pwm_remove(struct platform_device *pdev)
H
Hemanth V 已提交
168
{
169 170 171
	struct twl6030_pwm_chip *twl6030 = platform_get_drvdata(pdev);

	return pwmchip_remove(&twl6030->chip);
H
Hemanth V 已提交
172
}
173

174 175 176 177 178 179 180 181 182 183
static struct platform_driver twl6030_pwm_driver = {
	.driver = {
		.name = "twl6030-pwm",
	},
	.probe = twl6030_pwm_probe,
	.remove = __devexit_p(twl6030_pwm_remove),
};
module_platform_driver(twl6030_pwm_driver);

MODULE_ALIAS("platform:twl6030-pwm");
184
MODULE_LICENSE("GPL");