aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2011-03-09 07:02:55 -0500
committerSamuel Ortiz <sameo@linux.intel.com>2011-03-23 05:42:09 -0400
commit2edd3b692404efc2d3915175a2ed553e783de763 (patch)
treec2a6d4632ec08b567c24e345d638e656462c0135
parent798a8eee44da56b4f2e000ff81dfb49d09c65b71 (diff)
regulator: Add a subdriver for TI TPS6105x regulator portions v2
This adds a subdriver for the regulator found inside the TPS61050 and TPS61052 chips. Cc: Samuel Ortiz <samuel.ortiz@intel.com> Cc: Ola Lilja <ola.o.lilja@stericsson.com> Cc: Jonas Aberg <jonas.aberg@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
-rw-r--r--drivers/mfd/Kconfig2
-rw-r--r--drivers/regulator/Kconfig9
-rw-r--r--drivers/regulator/Makefile2
-rw-r--r--drivers/regulator/tps6105x-regulator.c196
-rw-r--r--include/linux/mfd/tps6105x.h6
5 files changed, 214 insertions, 1 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index bc99288f8f39..8d7d098f7a03 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -132,6 +132,8 @@ config UCB1400_CORE
132config TPS6105X 132config TPS6105X
133 tristate "TPS61050/61052 Boost Converters" 133 tristate "TPS61050/61052 Boost Converters"
134 depends on I2C 134 depends on I2C
135 select REGULATOR
136 select REGULATOR_FIXED_VOLTAGE
135 help 137 help
136 This option enables a driver for the TP61050/TPS61052 138 This option enables a driver for the TP61050/TPS61052
137 high-power "white LED driver". This boost converter is 139 high-power "white LED driver". This boost converter is
diff --git a/drivers/regulator/Kconfig b/drivers/regulator/Kconfig
index 395d35941b84..de75f67f4cc3 100644
--- a/drivers/regulator/Kconfig
+++ b/drivers/regulator/Kconfig
@@ -223,6 +223,15 @@ config REGULATOR_AB3100
223 AB3100 analog baseband dealing with power regulators 223 AB3100 analog baseband dealing with power regulators
224 for the system. 224 for the system.
225 225
226config REGULATOR_TPS6105X
227 tristate "TI TPS6105X Power regulators"
228 depends on TPS6105X
229 default y if TPS6105X
230 help
231 This driver supports TPS61050/TPS61052 voltage regulator chips.
232 It is a single boost converter primarily for white LEDs and
233 audio amplifiers.
234
226config REGULATOR_TPS65023 235config REGULATOR_TPS65023
227 tristate "TI TPS65023 Power regulators" 236 tristate "TI TPS65023 Power regulators"
228 depends on I2C 237 depends on I2C
diff --git a/drivers/regulator/Makefile b/drivers/regulator/Makefile
index e43b8524871e..d72a42756778 100644
--- a/drivers/regulator/Makefile
+++ b/drivers/regulator/Makefile
@@ -34,7 +34,7 @@ obj-$(CONFIG_REGULATOR_MC13783) += mc13783-regulator.o
34obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o 34obj-$(CONFIG_REGULATOR_MC13892) += mc13892-regulator.o
35obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += mc13xxx-regulator-core.o 35obj-$(CONFIG_REGULATOR_MC13XXX_CORE) += mc13xxx-regulator-core.o
36obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o 36obj-$(CONFIG_REGULATOR_AB3100) += ab3100.o
37 37obj-$(CONFIG_REGULATOR_TPS6105X) += tps6105x-regulator.o
38obj-$(CONFIG_REGULATOR_TPS65023) += tps65023-regulator.o 38obj-$(CONFIG_REGULATOR_TPS65023) += tps65023-regulator.o
39obj-$(CONFIG_REGULATOR_TPS6507X) += tps6507x-regulator.o 39obj-$(CONFIG_REGULATOR_TPS6507X) += tps6507x-regulator.o
40obj-$(CONFIG_REGULATOR_TPS6524X) += tps6524x-regulator.o 40obj-$(CONFIG_REGULATOR_TPS6524X) += tps6524x-regulator.o
diff --git a/drivers/regulator/tps6105x-regulator.c b/drivers/regulator/tps6105x-regulator.c
new file mode 100644
index 000000000000..1661499feda4
--- /dev/null
+++ b/drivers/regulator/tps6105x-regulator.c
@@ -0,0 +1,196 @@
1/*
2 * Driver for TPS61050/61052 boost converters, typically used for white LEDs
3 * or audio amplifiers.
4 *
5 * Copyright (C) 2011 ST-Ericsson SA
6 * Written on behalf of Linaro for ST-Ericsson
7 *
8 * Author: Linus Walleij <linus.walleij@linaro.org>
9 *
10 * License terms: GNU General Public License (GPL) version 2
11 */
12
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/err.h>
17#include <linux/i2c.h>
18#include <linux/platform_device.h>
19#include <linux/regulator/driver.h>
20#include <linux/mfd/core.h>
21#include <linux/mfd/tps6105x.h>
22
23static const int tps6105x_voltages[] = {
24 4500000,
25 5000000,
26 5250000,
27 5000000, /* There is an additional 5V */
28};
29
30static int tps6105x_regulator_enable(struct regulator_dev *rdev)
31{
32 struct tps6105x *tps6105x = rdev_get_drvdata(rdev);
33 int ret;
34
35 /* Activate voltage mode */
36 ret = tps6105x_mask_and_set(tps6105x, TPS6105X_REG_0,
37 TPS6105X_REG0_MODE_MASK,
38 TPS6105X_REG0_MODE_VOLTAGE << TPS6105X_REG0_MODE_SHIFT);
39 if (ret)
40 return ret;
41
42 return 0;
43}
44
45static int tps6105x_regulator_disable(struct regulator_dev *rdev)
46{
47 struct tps6105x *tps6105x = rdev_get_drvdata(rdev);
48 int ret;
49
50 /* Set into shutdown mode */
51 ret = tps6105x_mask_and_set(tps6105x, TPS6105X_REG_0,
52 TPS6105X_REG0_MODE_MASK,
53 TPS6105X_REG0_MODE_SHUTDOWN << TPS6105X_REG0_MODE_SHIFT);
54 if (ret)
55 return ret;
56
57 return 0;
58}
59
60static int tps6105x_regulator_is_enabled(struct regulator_dev *rdev)
61{
62 struct tps6105x *tps6105x = rdev_get_drvdata(rdev);
63 u8 regval;
64 int ret;
65
66 ret = tps6105x_get(tps6105x, TPS6105X_REG_0, &regval);
67 if (ret)
68 return ret;
69 regval &= TPS6105X_REG0_MODE_MASK;
70 regval >>= TPS6105X_REG0_MODE_SHIFT;
71
72 if (regval == TPS6105X_REG0_MODE_VOLTAGE)
73 return 1;
74
75 return 0;
76}
77
78static int tps6105x_regulator_get_voltage_sel(struct regulator_dev *rdev)
79{
80 struct tps6105x *tps6105x = rdev_get_drvdata(rdev);
81 u8 regval;
82 int ret;
83
84 ret = tps6105x_get(tps6105x, TPS6105X_REG_0, &regval);
85 if (ret)
86 return ret;
87
88 regval &= TPS6105X_REG0_VOLTAGE_MASK;
89 regval >>= TPS6105X_REG0_VOLTAGE_SHIFT;
90 return (int) regval;
91}
92
93static int tps6105x_regulator_set_voltage_sel(struct regulator_dev *rdev,
94 unsigned selector)
95{
96 struct tps6105x *tps6105x = rdev_get_drvdata(rdev);
97 int ret;
98
99 ret = tps6105x_mask_and_set(tps6105x, TPS6105X_REG_0,
100 TPS6105X_REG0_VOLTAGE_MASK,
101 selector << TPS6105X_REG0_VOLTAGE_SHIFT);
102 if (ret)
103 return ret;
104
105 return 0;
106}
107
108static int tps6105x_regulator_list_voltage(struct regulator_dev *rdev,
109 unsigned selector)
110{
111 if (selector >= ARRAY_SIZE(tps6105x_voltages))
112 return -EINVAL;
113
114 return tps6105x_voltages[selector];
115}
116
117static struct regulator_ops tps6105x_regulator_ops = {
118 .enable = tps6105x_regulator_enable,
119 .disable = tps6105x_regulator_disable,
120 .is_enabled = tps6105x_regulator_is_enabled,
121 .get_voltage_sel = tps6105x_regulator_get_voltage_sel,
122 .set_voltage_sel = tps6105x_regulator_set_voltage_sel,
123 .list_voltage = tps6105x_regulator_list_voltage,
124};
125
126static struct regulator_desc tps6105x_regulator_desc = {
127 .name = "tps6105x-boost",
128 .ops = &tps6105x_regulator_ops,
129 .type = REGULATOR_VOLTAGE,
130 .id = 0,
131 .owner = THIS_MODULE,
132 .n_voltages = ARRAY_SIZE(tps6105x_voltages),
133};
134
135/*
136 * Registers the chip as a voltage regulator
137 */
138static int __devinit tps6105x_regulator_probe(struct platform_device *pdev)
139{
140 struct tps6105x *tps6105x = mfd_get_data(pdev);
141 struct tps6105x_platform_data *pdata = tps6105x->pdata;
142 int ret;
143
144 /* This instance is not set for regulator mode so bail out */
145 if (pdata->mode != TPS6105X_MODE_VOLTAGE) {
146 dev_info(&pdev->dev,
147 "chip not in voltage mode mode, exit probe \n");
148 return 0;
149 }
150
151 /* Register regulator with framework */
152 tps6105x->regulator = regulator_register(&tps6105x_regulator_desc,
153 &tps6105x->client->dev,
154 pdata->regulator_data, tps6105x);
155 if (IS_ERR(tps6105x->regulator)) {
156 ret = PTR_ERR(tps6105x->regulator);
157 dev_err(&tps6105x->client->dev,
158 "failed to register regulator\n");
159 return ret;
160 }
161
162 return 0;
163}
164
165static int __devexit tps6105x_regulator_remove(struct platform_device *pdev)
166{
167 struct tps6105x *tps6105x = platform_get_drvdata(pdev);
168 regulator_unregister(tps6105x->regulator);
169 return 0;
170}
171
172static struct platform_driver tps6105x_regulator_driver = {
173 .driver = {
174 .name = "tps6105x-regulator",
175 .owner = THIS_MODULE,
176 },
177 .probe = tps6105x_regulator_probe,
178 .remove = __devexit_p(tps6105x_regulator_remove),
179};
180
181static __init int tps6105x_regulator_init(void)
182{
183 return platform_driver_register(&tps6105x_regulator_driver);
184}
185subsys_initcall(tps6105x_regulator_init);
186
187static __exit void tps6105x_regulator_exit(void)
188{
189 platform_driver_unregister(&tps6105x_regulator_driver);
190}
191module_exit(tps6105x_regulator_exit);
192
193MODULE_AUTHOR("Linus Walleij <linus.walleij@linaro.org>");
194MODULE_DESCRIPTION("TPS6105x regulator driver");
195MODULE_LICENSE("GPL v2");
196MODULE_ALIAS("platform:tps6105x-regulator");
diff --git a/include/linux/mfd/tps6105x.h b/include/linux/mfd/tps6105x.h
index f259244a56bd..386743dd931c 100644
--- a/include/linux/mfd/tps6105x.h
+++ b/include/linux/mfd/tps6105x.h
@@ -10,6 +10,7 @@
10#define MFD_TPS6105X_H 10#define MFD_TPS6105X_H
11 11
12#include <linux/i2c.h> 12#include <linux/i2c.h>
13#include <linux/regulator/machine.h>
13 14
14/* 15/*
15 * Register definitions to all subdrivers 16 * Register definitions to all subdrivers
@@ -71,20 +72,25 @@ enum tps6105x_mode {
71 * struct tps6105x_platform_data - TPS61905x platform data 72 * struct tps6105x_platform_data - TPS61905x platform data
72 * @mode: what mode this instance shall be operated in, 73 * @mode: what mode this instance shall be operated in,
73 * this is not selectable at runtime 74 * this is not selectable at runtime
75 * @regulator_data: initialization data for the voltage
76 * regulator if used as a voltage source
74 */ 77 */
75struct tps6105x_platform_data { 78struct tps6105x_platform_data {
76 enum tps6105x_mode mode; 79 enum tps6105x_mode mode;
80 struct regulator_init_data *regulator_data;
77}; 81};
78 82
79/** 83/**
80 * struct tps6105x - state holder for the TPS6105x drivers 84 * struct tps6105x - state holder for the TPS6105x drivers
81 * @mutex: mutex to serialize I2C accesses 85 * @mutex: mutex to serialize I2C accesses
82 * @i2c_client: corresponding I2C client 86 * @i2c_client: corresponding I2C client
87 * @regulator: regulator device if used in voltage mode
83 */ 88 */
84struct tps6105x { 89struct tps6105x {
85 struct tps6105x_platform_data *pdata; 90 struct tps6105x_platform_data *pdata;
86 struct mutex lock; 91 struct mutex lock;
87 struct i2c_client *client; 92 struct i2c_client *client;
93 struct regulator_dev *regulator;
88}; 94};
89 95
90extern int tps6105x_set(struct tps6105x *tps6105x, u8 reg, u8 value); 96extern int tps6105x_set(struct tps6105x *tps6105x, u8 reg, u8 value);