aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mfd/Kconfig15
-rw-r--r--drivers/mfd/Makefile1
-rw-r--r--drivers/mfd/tps65218.c282
-rw-r--r--include/linux/mfd/tps65218.h284
4 files changed, 582 insertions, 0 deletions
diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index 30fbacfe8b3b..3e2d698ac432 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -853,6 +853,21 @@ config MFD_TPS65217
853 This driver can also be built as a module. If so, the module 853 This driver can also be built as a module. If so, the module
854 will be called tps65217. 854 will be called tps65217.
855 855
856config MFD_TPS65218
857 tristate "TI TPS65218 Power Management chips"
858 depends on I2C
859 select MFD_CORE
860 select REGMAP_I2C
861 help
862 If you say yes here you get support for the TPS65218 series of
863 Power Management chips.
864 These include voltage regulators, gpio and other features
865 that are often used in portable devices. Only regulator
866 component is currently supported.
867
868 This driver can also be built as a module. If so, the module
869 will be called tps65218.
870
856config MFD_TPS6586X 871config MFD_TPS6586X
857 bool "TI TPS6586x Power Management chips" 872 bool "TI TPS6586x Power Management chips"
858 depends on I2C=y 873 depends on I2C=y
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile
index c8eb0bcf4da0..5e5cfbd1b8da 100644
--- a/drivers/mfd/Makefile
+++ b/drivers/mfd/Makefile
@@ -62,6 +62,7 @@ obj-$(CONFIG_TPS6105X) += tps6105x.o
62obj-$(CONFIG_TPS65010) += tps65010.o 62obj-$(CONFIG_TPS65010) += tps65010.o
63obj-$(CONFIG_TPS6507X) += tps6507x.o 63obj-$(CONFIG_TPS6507X) += tps6507x.o
64obj-$(CONFIG_MFD_TPS65217) += tps65217.o 64obj-$(CONFIG_MFD_TPS65217) += tps65217.o
65obj-$(CONFIG_MFD_TPS65218) += tps65218.o
65obj-$(CONFIG_MFD_TPS65910) += tps65910.o 66obj-$(CONFIG_MFD_TPS65910) += tps65910.o
66tps65912-objs := tps65912-core.o tps65912-irq.o 67tps65912-objs := tps65912-core.o tps65912-irq.o
67obj-$(CONFIG_MFD_TPS65912) += tps65912.o 68obj-$(CONFIG_MFD_TPS65912) += tps65912.o
diff --git a/drivers/mfd/tps65218.c b/drivers/mfd/tps65218.c
new file mode 100644
index 000000000000..a74bfb59f18f
--- /dev/null
+++ b/drivers/mfd/tps65218.c
@@ -0,0 +1,282 @@
1/*
2 * Driver for TPS65218 Integrated power management chipsets
3 *
4 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether expressed or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License version 2 for more details.
14 */
15
16#include <linux/kernel.h>
17#include <linux/device.h>
18#include <linux/module.h>
19#include <linux/platform_device.h>
20#include <linux/init.h>
21#include <linux/i2c.h>
22#include <linux/slab.h>
23#include <linux/regmap.h>
24#include <linux/err.h>
25#include <linux/of.h>
26#include <linux/of_device.h>
27#include <linux/irq.h>
28#include <linux/interrupt.h>
29#include <linux/mutex.h>
30
31#include <linux/mfd/core.h>
32#include <linux/mfd/tps65218.h>
33
34#define TPS65218_PASSWORD_REGS_UNLOCK 0x7D
35
36/**
37 * tps65218_reg_read: Read a single tps65218 register.
38 *
39 * @tps: Device to read from.
40 * @reg: Register to read.
41 * @val: Contians the value
42 */
43int tps65218_reg_read(struct tps65218 *tps, unsigned int reg,
44 unsigned int *val)
45{
46 return regmap_read(tps->regmap, reg, val);
47}
48EXPORT_SYMBOL_GPL(tps65218_reg_read);
49
50/**
51 * tps65218_reg_write: Write a single tps65218 register.
52 *
53 * @tps65218: Device to write to.
54 * @reg: Register to write to.
55 * @val: Value to write.
56 * @level: Password protected level
57 */
58int tps65218_reg_write(struct tps65218 *tps, unsigned int reg,
59 unsigned int val, unsigned int level)
60{
61 int ret;
62 unsigned int xor_reg_val;
63
64 switch (level) {
65 case TPS65218_PROTECT_NONE:
66 return regmap_write(tps->regmap, reg, val);
67 case TPS65218_PROTECT_L1:
68 xor_reg_val = reg ^ TPS65218_PASSWORD_REGS_UNLOCK;
69 ret = regmap_write(tps->regmap, TPS65218_REG_PASSWORD,
70 xor_reg_val);
71 if (ret < 0)
72 return ret;
73
74 return regmap_write(tps->regmap, reg, val);
75 default:
76 return -EINVAL;
77 }
78}
79EXPORT_SYMBOL_GPL(tps65218_reg_write);
80
81/**
82 * tps65218_update_bits: Modify bits w.r.t mask, val and level.
83 *
84 * @tps65218: Device to write to.
85 * @reg: Register to read-write to.
86 * @mask: Mask.
87 * @val: Value to write.
88 * @level: Password protected level
89 */
90static int tps65218_update_bits(struct tps65218 *tps, unsigned int reg,
91 unsigned int mask, unsigned int val, unsigned int level)
92{
93 int ret;
94 unsigned int data;
95
96 ret = tps65218_reg_read(tps, reg, &data);
97 if (ret) {
98 dev_err(tps->dev, "Read from reg 0x%x failed\n", reg);
99 return ret;
100 }
101
102 data &= ~mask;
103 data |= val & mask;
104
105 mutex_lock(&tps->tps_lock);
106 ret = tps65218_reg_write(tps, reg, data, level);
107 if (ret)
108 dev_err(tps->dev, "Write for reg 0x%x failed\n", reg);
109 mutex_unlock(&tps->tps_lock);
110
111 return ret;
112}
113
114int tps65218_set_bits(struct tps65218 *tps, unsigned int reg,
115 unsigned int mask, unsigned int val, unsigned int level)
116{
117 return tps65218_update_bits(tps, reg, mask, val, level);
118}
119EXPORT_SYMBOL_GPL(tps65218_set_bits);
120
121int tps65218_clear_bits(struct tps65218 *tps, unsigned int reg,
122 unsigned int mask, unsigned int level)
123{
124 return tps65218_update_bits(tps, reg, mask, 0, level);
125}
126EXPORT_SYMBOL_GPL(tps65218_clear_bits);
127
128static struct regmap_config tps65218_regmap_config = {
129 .reg_bits = 8,
130 .val_bits = 8,
131 .cache_type = REGCACHE_RBTREE,
132};
133
134static const struct regmap_irq tps65218_irqs[] = {
135 /* INT1 IRQs */
136 [TPS65218_PRGC_IRQ] = {
137 .mask = TPS65218_INT1_PRGC,
138 },
139 [TPS65218_CC_AQC_IRQ] = {
140 .mask = TPS65218_INT1_CC_AQC,
141 },
142 [TPS65218_HOT_IRQ] = {
143 .mask = TPS65218_INT1_HOT,
144 },
145 [TPS65218_PB_IRQ] = {
146 .mask = TPS65218_INT1_PB,
147 },
148 [TPS65218_AC_IRQ] = {
149 .mask = TPS65218_INT1_AC,
150 },
151 [TPS65218_VPRG_IRQ] = {
152 .mask = TPS65218_INT1_VPRG,
153 },
154 [TPS65218_INVALID1_IRQ] = {
155 },
156 [TPS65218_INVALID2_IRQ] = {
157 },
158 /* INT2 IRQs*/
159 [TPS65218_LS1_I_IRQ] = {
160 .mask = TPS65218_INT2_LS1_I,
161 .reg_offset = 1,
162 },
163 [TPS65218_LS2_I_IRQ] = {
164 .mask = TPS65218_INT2_LS2_I,
165 .reg_offset = 1,
166 },
167 [TPS65218_LS3_I_IRQ] = {
168 .mask = TPS65218_INT2_LS3_I,
169 .reg_offset = 1,
170 },
171 [TPS65218_LS1_F_IRQ] = {
172 .mask = TPS65218_INT2_LS1_F,
173 .reg_offset = 1,
174 },
175 [TPS65218_LS2_F_IRQ] = {
176 .mask = TPS65218_INT2_LS2_F,
177 .reg_offset = 1,
178 },
179 [TPS65218_LS3_F_IRQ] = {
180 .mask = TPS65218_INT2_LS3_F,
181 .reg_offset = 1,
182 },
183 [TPS65218_INVALID3_IRQ] = {
184 },
185 [TPS65218_INVALID4_IRQ] = {
186 },
187};
188
189static struct regmap_irq_chip tps65218_irq_chip = {
190 .name = "tps65218",
191 .irqs = tps65218_irqs,
192 .num_irqs = ARRAY_SIZE(tps65218_irqs),
193
194 .num_regs = 2,
195 .mask_base = TPS65218_REG_INT_MASK1,
196};
197
198static const struct of_device_id of_tps65218_match_table[] = {
199 { .compatible = "ti,tps65218", },
200};
201
202static int tps65218_probe(struct i2c_client *client,
203 const struct i2c_device_id *ids)
204{
205 struct tps65218 *tps;
206 const struct of_device_id *match;
207 int ret;
208
209 match = of_match_device(of_tps65218_match_table, &client->dev);
210 if (!match) {
211 dev_err(&client->dev,
212 "Failed to find matching dt id\n");
213 return -EINVAL;
214 }
215
216 tps = devm_kzalloc(&client->dev, sizeof(*tps), GFP_KERNEL);
217 if (!tps)
218 return -ENOMEM;
219
220 i2c_set_clientdata(client, tps);
221 tps->dev = &client->dev;
222 tps->irq = client->irq;
223 tps->regmap = devm_regmap_init_i2c(client, &tps65218_regmap_config);
224 if (IS_ERR(tps->regmap)) {
225 ret = PTR_ERR(tps->regmap);
226 dev_err(tps->dev, "Failed to allocate register map: %d\n",
227 ret);
228 return ret;
229 }
230
231 mutex_init(&tps->tps_lock);
232
233 ret = regmap_add_irq_chip(tps->regmap, tps->irq,
234 IRQF_ONESHOT, 0, &tps65218_irq_chip,
235 &tps->irq_data);
236 if (ret < 0)
237 return ret;
238
239 ret = of_platform_populate(client->dev.of_node, NULL, NULL,
240 &client->dev);
241 if (ret < 0)
242 goto err_irq;
243
244 return 0;
245
246err_irq:
247 regmap_del_irq_chip(tps->irq, tps->irq_data);
248
249 return ret;
250}
251
252static int tps65218_remove(struct i2c_client *client)
253{
254 struct tps65218 *tps = i2c_get_clientdata(client);
255
256 regmap_del_irq_chip(tps->irq, tps->irq_data);
257
258 return 0;
259}
260
261static const struct i2c_device_id tps65218_id_table[] = {
262 { "tps65218", TPS65218 },
263 { },
264};
265MODULE_DEVICE_TABLE(i2c, tps65218_id_table);
266
267static struct i2c_driver tps65218_driver = {
268 .driver = {
269 .name = "tps65218",
270 .owner = THIS_MODULE,
271 .of_match_table = of_tps65218_match_table,
272 },
273 .probe = tps65218_probe,
274 .remove = tps65218_remove,
275 .id_table = tps65218_id_table,
276};
277
278module_i2c_driver(tps65218_driver);
279
280MODULE_AUTHOR("J Keerthy <j-keerthy@ti.com>");
281MODULE_DESCRIPTION("TPS65218 chip family multi-function driver");
282MODULE_LICENSE("GPL v2");
diff --git a/include/linux/mfd/tps65218.h b/include/linux/mfd/tps65218.h
new file mode 100644
index 000000000000..d2e357df5a0e
--- /dev/null
+++ b/include/linux/mfd/tps65218.h
@@ -0,0 +1,284 @@
1/*
2 * linux/mfd/tps65218.h
3 *
4 * Functions to access TPS65219 power management chip.
5 *
6 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13 * kind, whether expressed or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License version 2 for more details.
16 */
17
18#ifndef __LINUX_MFD_TPS65218_H
19#define __LINUX_MFD_TPS65218_H
20
21#include <linux/i2c.h>
22#include <linux/regulator/driver.h>
23#include <linux/regulator/machine.h>
24#include <linux/bitops.h>
25
26/* TPS chip id list */
27#define TPS65218 0xF0
28
29/* I2C ID for TPS65218 part */
30#define TPS65218_I2C_ID 0x24
31
32/* All register addresses */
33#define TPS65218_REG_CHIPID 0x00
34#define TPS65218_REG_INT1 0x01
35#define TPS65218_REG_INT2 0x02
36#define TPS65218_REG_INT_MASK1 0x03
37#define TPS65218_REG_INT_MASK2 0x04
38#define TPS65218_REG_STATUS 0x05
39#define TPS65218_REG_CONTROL 0x06
40#define TPS65218_REG_FLAG 0x07
41
42#define TPS65218_REG_PASSWORD 0x10
43#define TPS65218_REG_ENABLE1 0x11
44#define TPS65218_REG_ENABLE2 0x12
45#define TPS65218_REG_CONFIG1 0x13
46#define TPS65218_REG_CONFIG2 0x14
47#define TPS65218_REG_CONFIG3 0x15
48#define TPS65218_REG_CONTROL_DCDC1 0x16
49#define TPS65218_REG_CONTROL_DCDC2 0x17
50#define TPS65218_REG_CONTROL_DCDC3 0x18
51#define TPS65218_REG_CONTROL_DCDC4 0x19
52#define TPS65218_REG_CONTRL_SLEW_RATE 0x1A
53#define TPS65218_REG_CONTROL_LDO1 0x1B
54#define TPS65218_REG_SEQ1 0x20
55#define TPS65218_REG_SEQ2 0x21
56#define TPS65218_REG_SEQ3 0x22
57#define TPS65218_REG_SEQ4 0x23
58#define TPS65218_REG_SEQ5 0x24
59#define TPS65218_REG_SEQ6 0x25
60#define TPS65218_REG_SEQ7 0x26
61
62/* Register field definitions */
63#define TPS65218_CHIPID_CHIP_MASK 0xF8
64#define TPS65218_CHIPID_REV_MASK 0x07
65
66#define TPS65218_INT1_VPRG BIT(5)
67#define TPS65218_INT1_AC BIT(4)
68#define TPS65218_INT1_PB BIT(3)
69#define TPS65218_INT1_HOT BIT(2)
70#define TPS65218_INT1_CC_AQC BIT(1)
71#define TPS65218_INT1_PRGC BIT(0)
72
73#define TPS65218_INT2_LS3_F BIT(5)
74#define TPS65218_INT2_LS2_F BIT(4)
75#define TPS65218_INT2_LS1_F BIT(3)
76#define TPS65218_INT2_LS3_I BIT(2)
77#define TPS65218_INT2_LS2_I BIT(1)
78#define TPS65218_INT2_LS1_I BIT(0)
79
80#define TPS65218_INT_MASK1_VPRG BIT(5)
81#define TPS65218_INT_MASK1_AC BIT(4)
82#define TPS65218_INT_MASK1_PB BIT(3)
83#define TPS65218_INT_MASK1_HOT BIT(2)
84#define TPS65218_INT_MASK1_CC_AQC BIT(1)
85#define TPS65218_INT_MASK1_PRGC BIT(0)
86
87#define TPS65218_INT_MASK2_LS3_F BIT(5)
88#define TPS65218_INT_MASK2_LS2_F BIT(4)
89#define TPS65218_INT_MASK2_LS1_F BIT(3)
90#define TPS65218_INT_MASK2_LS3_I BIT(2)
91#define TPS65218_INT_MASK2_LS2_I BIT(1)
92#define TPS65218_INT_MASK2_LS1_I BIT(0)
93
94#define TPS65218_STATUS_FSEAL BIT(7)
95#define TPS65218_STATUS_EE BIT(6)
96#define TPS65218_STATUS_AC_STATE BIT(5)
97#define TPS65218_STATUS_PB_STATE BIT(4)
98#define TPS65218_STATUS_STATE_MASK 0xC
99#define TPS65218_STATUS_CC_STAT 0x3
100
101#define TPS65218_CONTROL_OFFNPFO BIT(1)
102#define TPS65218_CONTROL_CC_AQ BIT(0)
103
104#define TPS65218_FLAG_GPO3_FLG BIT(7)
105#define TPS65218_FLAG_GPO2_FLG BIT(6)
106#define TPS65218_FLAG_GPO1_FLG BIT(5)
107#define TPS65218_FLAG_LDO1_FLG BIT(4)
108#define TPS65218_FLAG_DC4_FLG BIT(3)
109#define TPS65218_FLAG_DC3_FLG BIT(2)
110#define TPS65218_FLAG_DC2_FLG BIT(1)
111#define TPS65218_FLAG_DC1_FLG BIT(0)
112
113#define TPS65218_ENABLE1_DC6_EN BIT(5)
114#define TPS65218_ENABLE1_DC5_EN BIT(4)
115#define TPS65218_ENABLE1_DC4_EN BIT(3)
116#define TPS65218_ENABLE1_DC3_EN BIT(2)
117#define TPS65218_ENABLE1_DC2_EN BIT(1)
118#define TPS65218_ENABLE1_DC1_EN BIT(0)
119
120#define TPS65218_ENABLE2_GPIO3 BIT(6)
121#define TPS65218_ENABLE2_GPIO2 BIT(5)
122#define TPS65218_ENABLE2_GPIO1 BIT(4)
123#define TPS65218_ENABLE2_LS3_EN BIT(3)
124#define TPS65218_ENABLE2_LS2_EN BIT(2)
125#define TPS65218_ENABLE2_LS1_EN BIT(1)
126#define TPS65218_ENABLE2_LDO1_EN BIT(0)
127
128
129#define TPS65218_CONFIG1_TRST BIT(7)
130#define TPS65218_CONFIG1_GPO2_BUF BIT(6)
131#define TPS65218_CONFIG1_IO1_SEL BIT(5)
132#define TPS65218_CONFIG1_PGDLY_MASK 0x18
133#define TPS65218_CONFIG1_STRICT BIT(2)
134#define TPS65218_CONFIG1_UVLO_MASK 0x3
135
136#define TPS65218_CONFIG2_DC12_RST BIT(7)
137#define TPS65218_CONFIG2_UVLOHYS BIT(6)
138#define TPS65218_CONFIG2_LS3ILIM_MASK 0xC
139#define TPS65218_CONFIG2_LS2ILIM_MASK 0x3
140
141#define TPS65218_CONFIG3_LS3NPFO BIT(5)
142#define TPS65218_CONFIG3_LS2NPFO BIT(4)
143#define TPS65218_CONFIG3_LS1NPFO BIT(3)
144#define TPS65218_CONFIG3_LS3DCHRG BIT(2)
145#define TPS65218_CONFIG3_LS2DCHRG BIT(1)
146#define TPS65218_CONFIG3_LS1DCHRG BIT(0)
147
148#define TPS65218_CONTROL_DCDC1_PFM BIT(7)
149#define TPS65218_CONTROL_DCDC1_MASK 0x7F
150
151#define TPS65218_CONTROL_DCDC2_PFM BIT(7)
152#define TPS65218_CONTROL_DCDC2_MASK 0x3F
153
154#define TPS65218_CONTROL_DCDC3_PFM BIT(7)
155#define TPS65218_CONTROL_DCDC3_MASK 0x3F
156
157#define TPS65218_CONTROL_DCDC4_PFM BIT(7)
158#define TPS65218_CONTROL_DCDC4_MASK 0x3F
159
160#define TPS65218_SLEW_RATE_GO BIT(7)
161#define TPS65218_SLEW_RATE_GODSBL BIT(6)
162#define TPS65218_SLEW_RATE_SLEW_MASK 0x7
163
164#define TPS65218_CONTROL_LDO1_MASK 0x3F
165
166#define TPS65218_SEQ1_DLY8 BIT(7)
167#define TPS65218_SEQ1_DLY7 BIT(6)
168#define TPS65218_SEQ1_DLY6 BIT(5)
169#define TPS65218_SEQ1_DLY5 BIT(4)
170#define TPS65218_SEQ1_DLY4 BIT(3)
171#define TPS65218_SEQ1_DLY3 BIT(2)
172#define TPS65218_SEQ1_DLY2 BIT(1)
173#define TPS65218_SEQ1_DLY1 BIT(0)
174
175#define TPS65218_SEQ2_DLYFCTR BIT(7)
176#define TPS65218_SEQ2_DLY9 BIT(0)
177
178#define TPS65218_SEQ3_DC2_SEQ_MASK 0xF0
179#define TPS65218_SEQ3_DC1_SEQ_MASK 0xF
180
181#define TPS65218_SEQ4_DC4_SEQ_MASK 0xF0
182#define TPS65218_SEQ4_DC3_SEQ_MASK 0xF
183
184#define TPS65218_SEQ5_DC6_SEQ_MASK 0xF0
185#define TPS65218_SEQ5_DC5_SEQ_MASK 0xF
186
187#define TPS65218_SEQ6_LS1_SEQ_MASK 0xF0
188#define TPS65218_SEQ6_LDO1_SEQ_MASK 0xF
189
190#define TPS65218_SEQ7_GPO3_SEQ_MASK 0xF0
191#define TPS65218_SEQ7_GPO1_SEQ_MASK 0xF
192#define TPS65218_PROTECT_NONE 0
193#define TPS65218_PROTECT_L1 1
194
195enum tps65218_regulator_id {
196 /* DCDC's */
197 TPS65218_DCDC_1,
198 TPS65218_DCDC_2,
199 TPS65218_DCDC_3,
200 TPS65218_DCDC_4,
201 TPS65218_DCDC_5,
202 TPS65218_DCDC_6,
203 /* LDOs */
204 TPS65218_LDO_1,
205};
206
207#define TPS65218_MAX_REG_ID TPS65218_LDO_1
208
209/* Number of step-down converters available */
210#define TPS65218_NUM_DCDC 6
211/* Number of LDO voltage regulators available */
212#define TPS65218_NUM_LDO 1
213/* Number of total regulators available */
214#define TPS65218_NUM_REGULATOR (TPS65218_NUM_DCDC + TPS65218_NUM_LDO)
215
216/* Define the TPS65218 IRQ numbers */
217enum tps65218_irqs {
218 /* INT1 registers */
219 TPS65218_PRGC_IRQ,
220 TPS65218_CC_AQC_IRQ,
221 TPS65218_HOT_IRQ,
222 TPS65218_PB_IRQ,
223 TPS65218_AC_IRQ,
224 TPS65218_VPRG_IRQ,
225 TPS65218_INVALID1_IRQ,
226 TPS65218_INVALID2_IRQ,
227 /* INT2 registers */
228 TPS65218_LS1_I_IRQ,
229 TPS65218_LS2_I_IRQ,
230 TPS65218_LS3_I_IRQ,
231 TPS65218_LS1_F_IRQ,
232 TPS65218_LS2_F_IRQ,
233 TPS65218_LS3_F_IRQ,
234 TPS65218_INVALID3_IRQ,
235 TPS65218_INVALID4_IRQ,
236};
237
238/**
239 * struct tps_info - packages regulator constraints
240 * @id: Id of the regulator
241 * @name: Voltage regulator name
242 * @min_uV: minimum micro volts
243 * @max_uV: minimum micro volts
244 *
245 * This data is used to check the regualtor voltage limits while setting.
246 */
247struct tps_info {
248 int id;
249 const char *name;
250 int min_uV;
251 int max_uV;
252};
253
254/**
255 * struct tps65218 - tps65218 sub-driver chip access routines
256 *
257 * Device data may be used to access the TPS65218 chip
258 */
259
260struct tps65218 {
261 struct device *dev;
262 unsigned int id;
263
264 struct mutex tps_lock; /* lock guarding the data structure */
265 /* IRQ Data */
266 int irq;
267 u32 irq_mask;
268 struct regmap_irq_chip_data *irq_data;
269 struct regulator_desc desc[TPS65218_NUM_REGULATOR];
270 struct regulator_dev *rdev[TPS65218_NUM_REGULATOR];
271 struct tps_info *info[TPS65218_NUM_REGULATOR];
272 struct regmap *regmap;
273};
274
275int tps65218_reg_read(struct tps65218 *tps, unsigned int reg,
276 unsigned int *val);
277int tps65218_reg_write(struct tps65218 *tps, unsigned int reg,
278 unsigned int val, unsigned int level);
279int tps65218_set_bits(struct tps65218 *tps, unsigned int reg,
280 unsigned int mask, unsigned int val, unsigned int level);
281int tps65218_clear_bits(struct tps65218 *tps, unsigned int reg,
282 unsigned int mask, unsigned int level);
283
284#endif /* __LINUX_MFD_TPS65218_H */