2 * Regulator driver for National Semiconductors LP3971 PMIC chip
4 * Copyright (C) 2009 Samsung Electronics
5 * Author: Marek Szyprowski <m.szyprowski@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 #include <linux/bug.h>
16 #include <linux/err.h>
17 #include <linux/i2c.h>
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/regulator/driver.h>
21 #include <linux/regulator/lp3971.h>
22 #include <linux/slab.h>
27 struct i2c_client
*i2c
;
30 static u8
lp3971_reg_read(struct lp3971
*lp3971
, u8 reg
);
31 static int lp3971_set_bits(struct lp3971
*lp3971
, u8 reg
, u16 mask
, u16 val
);
33 #define LP3971_SYS_CONTROL1_REG 0x07
35 /* System control register 1 initial value,
36 bits 4 and 5 are EPROM programmable */
37 #define SYS_CONTROL1_INIT_VAL 0x40
38 #define SYS_CONTROL1_INIT_MASK 0xCF
40 #define LP3971_BUCK_VOL_ENABLE_REG 0x10
41 #define LP3971_BUCK_VOL_CHANGE_REG 0x20
43 /* Voltage control registers shift:
48 #define BUCK_VOL_CHANGE_SHIFT(x) (((!!x) << 2) | (x & ~0x01))
49 #define BUCK_VOL_CHANGE_FLAG_GO 0x01
50 #define BUCK_VOL_CHANGE_FLAG_TARGET 0x02
51 #define BUCK_VOL_CHANGE_FLAG_MASK 0x03
53 #define LP3971_BUCK1_BASE 0x23
54 #define LP3971_BUCK2_BASE 0x29
55 #define LP3971_BUCK3_BASE 0x32
57 static const int buck_base_addr
[] = {
63 #define LP3971_BUCK_TARGET_VOL1_REG(x) (buck_base_addr[x])
64 #define LP3971_BUCK_TARGET_VOL2_REG(x) (buck_base_addr[x]+1)
66 static const unsigned int buck_voltage_map
[] = {
67 0, 800000, 850000, 900000, 950000, 1000000, 1050000, 1100000,
68 1150000, 1200000, 1250000, 1300000, 1350000, 1400000, 1450000, 1500000,
69 1550000, 1600000, 1650000, 1700000, 1800000, 1900000, 2500000, 2800000,
73 #define BUCK_TARGET_VOL_MASK 0x3f
75 #define LP3971_BUCK_RAMP_REG(x) (buck_base_addr[x]+2)
77 #define LP3971_LDO_ENABLE_REG 0x12
78 #define LP3971_LDO_VOL_CONTR_BASE 0x39
80 /* Voltage control registers:
81 LP3971_LDO1 -> LP3971_LDO_VOL_CONTR_BASE + 0
82 LP3971_LDO2 -> LP3971_LDO_VOL_CONTR_BASE + 0
83 LP3971_LDO3 -> LP3971_LDO_VOL_CONTR_BASE + 1
84 LP3971_LDO4 -> LP3971_LDO_VOL_CONTR_BASE + 1
85 LP3971_LDO5 -> LP3971_LDO_VOL_CONTR_BASE + 2
87 #define LP3971_LDO_VOL_CONTR_REG(x) (LP3971_LDO_VOL_CONTR_BASE + (x >> 1))
89 /* Voltage control registers shift:
90 LP3971_LDO1 -> 0, LP3971_LDO2 -> 4
91 LP3971_LDO3 -> 0, LP3971_LDO4 -> 4
94 #define LDO_VOL_CONTR_SHIFT(x) ((x & 1) << 2)
95 #define LDO_VOL_CONTR_MASK 0x0f
97 static const unsigned int ldo45_voltage_map
[] = {
98 1000000, 1050000, 1100000, 1150000, 1200000, 1250000, 1300000, 1350000,
99 1400000, 1500000, 1800000, 1900000, 2500000, 2800000, 3000000, 3300000,
102 static const unsigned int ldo123_voltage_map
[] = {
103 1800000, 1900000, 2000000, 2100000, 2200000, 2300000, 2400000, 2500000,
104 2600000, 2700000, 2800000, 2900000, 3000000, 3100000, 3200000, 3300000,
107 #define LDO_VOL_MIN_IDX 0x00
108 #define LDO_VOL_MAX_IDX 0x0f
110 static int lp3971_ldo_is_enabled(struct regulator_dev
*dev
)
112 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
113 int ldo
= rdev_get_id(dev
) - LP3971_LDO1
;
114 u16 mask
= 1 << (1 + ldo
);
117 val
= lp3971_reg_read(lp3971
, LP3971_LDO_ENABLE_REG
);
118 return (val
& mask
) != 0;
121 static int lp3971_ldo_enable(struct regulator_dev
*dev
)
123 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
124 int ldo
= rdev_get_id(dev
) - LP3971_LDO1
;
125 u16 mask
= 1 << (1 + ldo
);
127 return lp3971_set_bits(lp3971
, LP3971_LDO_ENABLE_REG
, mask
, mask
);
130 static int lp3971_ldo_disable(struct regulator_dev
*dev
)
132 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
133 int ldo
= rdev_get_id(dev
) - LP3971_LDO1
;
134 u16 mask
= 1 << (1 + ldo
);
136 return lp3971_set_bits(lp3971
, LP3971_LDO_ENABLE_REG
, mask
, 0);
139 static int lp3971_ldo_get_voltage_sel(struct regulator_dev
*dev
)
141 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
142 int ldo
= rdev_get_id(dev
) - LP3971_LDO1
;
145 reg
= lp3971_reg_read(lp3971
, LP3971_LDO_VOL_CONTR_REG(ldo
));
146 val
= (reg
>> LDO_VOL_CONTR_SHIFT(ldo
)) & LDO_VOL_CONTR_MASK
;
151 static int lp3971_ldo_set_voltage_sel(struct regulator_dev
*dev
,
152 unsigned int selector
)
154 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
155 int ldo
= rdev_get_id(dev
) - LP3971_LDO1
;
157 return lp3971_set_bits(lp3971
, LP3971_LDO_VOL_CONTR_REG(ldo
),
158 LDO_VOL_CONTR_MASK
<< LDO_VOL_CONTR_SHIFT(ldo
),
159 selector
<< LDO_VOL_CONTR_SHIFT(ldo
));
162 static struct regulator_ops lp3971_ldo_ops
= {
163 .list_voltage
= regulator_list_voltage_table
,
164 .map_voltage
= regulator_map_voltage_ascend
,
165 .is_enabled
= lp3971_ldo_is_enabled
,
166 .enable
= lp3971_ldo_enable
,
167 .disable
= lp3971_ldo_disable
,
168 .get_voltage_sel
= lp3971_ldo_get_voltage_sel
,
169 .set_voltage_sel
= lp3971_ldo_set_voltage_sel
,
172 static int lp3971_dcdc_is_enabled(struct regulator_dev
*dev
)
174 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
175 int buck
= rdev_get_id(dev
) - LP3971_DCDC1
;
176 u16 mask
= 1 << (buck
* 2);
179 val
= lp3971_reg_read(lp3971
, LP3971_BUCK_VOL_ENABLE_REG
);
180 return (val
& mask
) != 0;
183 static int lp3971_dcdc_enable(struct regulator_dev
*dev
)
185 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
186 int buck
= rdev_get_id(dev
) - LP3971_DCDC1
;
187 u16 mask
= 1 << (buck
* 2);
189 return lp3971_set_bits(lp3971
, LP3971_BUCK_VOL_ENABLE_REG
, mask
, mask
);
192 static int lp3971_dcdc_disable(struct regulator_dev
*dev
)
194 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
195 int buck
= rdev_get_id(dev
) - LP3971_DCDC1
;
196 u16 mask
= 1 << (buck
* 2);
198 return lp3971_set_bits(lp3971
, LP3971_BUCK_VOL_ENABLE_REG
, mask
, 0);
201 static int lp3971_dcdc_get_voltage_sel(struct regulator_dev
*dev
)
203 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
204 int buck
= rdev_get_id(dev
) - LP3971_DCDC1
;
207 reg
= lp3971_reg_read(lp3971
, LP3971_BUCK_TARGET_VOL1_REG(buck
));
208 reg
&= BUCK_TARGET_VOL_MASK
;
213 static int lp3971_dcdc_set_voltage_sel(struct regulator_dev
*dev
,
214 unsigned int selector
)
216 struct lp3971
*lp3971
= rdev_get_drvdata(dev
);
217 int buck
= rdev_get_id(dev
) - LP3971_DCDC1
;
220 ret
= lp3971_set_bits(lp3971
, LP3971_BUCK_TARGET_VOL1_REG(buck
),
221 BUCK_TARGET_VOL_MASK
, selector
);
225 ret
= lp3971_set_bits(lp3971
, LP3971_BUCK_VOL_CHANGE_REG
,
226 BUCK_VOL_CHANGE_FLAG_MASK
<< BUCK_VOL_CHANGE_SHIFT(buck
),
227 BUCK_VOL_CHANGE_FLAG_GO
<< BUCK_VOL_CHANGE_SHIFT(buck
));
231 return lp3971_set_bits(lp3971
, LP3971_BUCK_VOL_CHANGE_REG
,
232 BUCK_VOL_CHANGE_FLAG_MASK
<< BUCK_VOL_CHANGE_SHIFT(buck
),
233 0 << BUCK_VOL_CHANGE_SHIFT(buck
));
236 static struct regulator_ops lp3971_dcdc_ops
= {
237 .list_voltage
= regulator_list_voltage_table
,
238 .map_voltage
= regulator_map_voltage_ascend
,
239 .is_enabled
= lp3971_dcdc_is_enabled
,
240 .enable
= lp3971_dcdc_enable
,
241 .disable
= lp3971_dcdc_disable
,
242 .get_voltage_sel
= lp3971_dcdc_get_voltage_sel
,
243 .set_voltage_sel
= lp3971_dcdc_set_voltage_sel
,
246 static const struct regulator_desc regulators
[] = {
250 .ops
= &lp3971_ldo_ops
,
251 .n_voltages
= ARRAY_SIZE(ldo123_voltage_map
),
252 .volt_table
= ldo123_voltage_map
,
253 .type
= REGULATOR_VOLTAGE
,
254 .owner
= THIS_MODULE
,
259 .ops
= &lp3971_ldo_ops
,
260 .n_voltages
= ARRAY_SIZE(ldo123_voltage_map
),
261 .volt_table
= ldo123_voltage_map
,
262 .type
= REGULATOR_VOLTAGE
,
263 .owner
= THIS_MODULE
,
268 .ops
= &lp3971_ldo_ops
,
269 .n_voltages
= ARRAY_SIZE(ldo123_voltage_map
),
270 .volt_table
= ldo123_voltage_map
,
271 .type
= REGULATOR_VOLTAGE
,
272 .owner
= THIS_MODULE
,
277 .ops
= &lp3971_ldo_ops
,
278 .n_voltages
= ARRAY_SIZE(ldo45_voltage_map
),
279 .volt_table
= ldo45_voltage_map
,
280 .type
= REGULATOR_VOLTAGE
,
281 .owner
= THIS_MODULE
,
286 .ops
= &lp3971_ldo_ops
,
287 .n_voltages
= ARRAY_SIZE(ldo45_voltage_map
),
288 .volt_table
= ldo45_voltage_map
,
289 .type
= REGULATOR_VOLTAGE
,
290 .owner
= THIS_MODULE
,
295 .ops
= &lp3971_dcdc_ops
,
296 .n_voltages
= ARRAY_SIZE(buck_voltage_map
),
297 .volt_table
= buck_voltage_map
,
298 .type
= REGULATOR_VOLTAGE
,
299 .owner
= THIS_MODULE
,
304 .ops
= &lp3971_dcdc_ops
,
305 .n_voltages
= ARRAY_SIZE(buck_voltage_map
),
306 .volt_table
= buck_voltage_map
,
307 .type
= REGULATOR_VOLTAGE
,
308 .owner
= THIS_MODULE
,
313 .ops
= &lp3971_dcdc_ops
,
314 .n_voltages
= ARRAY_SIZE(buck_voltage_map
),
315 .volt_table
= buck_voltage_map
,
316 .type
= REGULATOR_VOLTAGE
,
317 .owner
= THIS_MODULE
,
321 static int lp3971_i2c_read(struct i2c_client
*i2c
, char reg
, int count
,
328 ret
= i2c_smbus_read_byte_data(i2c
, reg
);
336 static int lp3971_i2c_write(struct i2c_client
*i2c
, char reg
, int count
,
341 return i2c_smbus_write_byte_data(i2c
, reg
, *src
);
344 static u8
lp3971_reg_read(struct lp3971
*lp3971
, u8 reg
)
348 mutex_lock(&lp3971
->io_lock
);
350 lp3971_i2c_read(lp3971
->i2c
, reg
, 1, &val
);
352 dev_dbg(lp3971
->dev
, "reg read 0x%02x -> 0x%02x\n", (int)reg
,
355 mutex_unlock(&lp3971
->io_lock
);
360 static int lp3971_set_bits(struct lp3971
*lp3971
, u8 reg
, u16 mask
, u16 val
)
365 mutex_lock(&lp3971
->io_lock
);
367 ret
= lp3971_i2c_read(lp3971
->i2c
, reg
, 1, &tmp
);
369 tmp
= (tmp
& ~mask
) | val
;
370 ret
= lp3971_i2c_write(lp3971
->i2c
, reg
, 1, &tmp
);
371 dev_dbg(lp3971
->dev
, "reg write 0x%02x -> 0x%02x\n", (int)reg
,
374 mutex_unlock(&lp3971
->io_lock
);
379 static int setup_regulators(struct lp3971
*lp3971
,
380 struct lp3971_platform_data
*pdata
)
384 /* Instantiate the regulators */
385 for (i
= 0; i
< pdata
->num_regulators
; i
++) {
386 struct regulator_config config
= { };
387 struct lp3971_regulator_subdev
*reg
= &pdata
->regulators
[i
];
388 struct regulator_dev
*rdev
;
390 config
.dev
= lp3971
->dev
;
391 config
.init_data
= reg
->initdata
;
392 config
.driver_data
= lp3971
;
394 rdev
= devm_regulator_register(lp3971
->dev
,
395 ®ulators
[reg
->id
], &config
);
398 dev_err(lp3971
->dev
, "regulator init failed: %d\n",
407 static int lp3971_i2c_probe(struct i2c_client
*i2c
,
408 const struct i2c_device_id
*id
)
410 struct lp3971
*lp3971
;
411 struct lp3971_platform_data
*pdata
= dev_get_platdata(&i2c
->dev
);
416 dev_dbg(&i2c
->dev
, "No platform init data supplied\n");
420 lp3971
= devm_kzalloc(&i2c
->dev
, sizeof(struct lp3971
), GFP_KERNEL
);
425 lp3971
->dev
= &i2c
->dev
;
427 mutex_init(&lp3971
->io_lock
);
430 ret
= lp3971_i2c_read(i2c
, LP3971_SYS_CONTROL1_REG
, 1, &val
);
431 if (ret
== 0 && (val
& SYS_CONTROL1_INIT_MASK
) != SYS_CONTROL1_INIT_VAL
)
434 dev_err(&i2c
->dev
, "failed to detect device\n");
438 ret
= setup_regulators(lp3971
, pdata
);
442 i2c_set_clientdata(i2c
, lp3971
);
446 static const struct i2c_device_id lp3971_i2c_id
[] = {
450 MODULE_DEVICE_TABLE(i2c
, lp3971_i2c_id
);
452 static struct i2c_driver lp3971_i2c_driver
= {
456 .probe
= lp3971_i2c_probe
,
457 .id_table
= lp3971_i2c_id
,
460 module_i2c_driver(lp3971_i2c_driver
);
462 MODULE_LICENSE("GPL");
463 MODULE_AUTHOR("Marek Szyprowski <m.szyprowski@samsung.com>");
464 MODULE_DESCRIPTION("LP3971 PMIC driver");