2 * isl9305 - Intersil ISL9305 DCDC regulator
4 * Copyright 2014 Linaro Ltd
6 * Author: Mark Brown <broonie@kernel.org>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/module.h>
15 #include <linux/err.h>
16 #include <linux/i2c.h>
18 #include <linux/platform_data/isl9305.h>
19 #include <linux/regmap.h>
20 #include <linux/regulator/driver.h>
21 #include <linux/regulator/of_regulator.h>
22 #include <linux/slab.h>
27 #define ISL9305_DCD1OUT 0x0
28 #define ISL9305_DCD2OUT 0x1
29 #define ISL9305_LDO1OUT 0x2
30 #define ISL9305_LDO2OUT 0x3
31 #define ISL9305_DCD_PARAMETER 0x4
32 #define ISL9305_SYSTEM_PARAMETER 0x5
33 #define ISL9305_DCD_SRCTL 0x6
35 #define ISL9305_MAX_REG ISL9305_DCD_SRCTL
40 #define ISL9305_DCD_PHASE 0x40
41 #define ISL9305_DCD2_ULTRA 0x20
42 #define ISL9305_DCD1_ULTRA 0x10
43 #define ISL9305_DCD2_BLD 0x08
44 #define ISL9305_DCD1_BLD 0x04
45 #define ISL9305_DCD2_MODE 0x02
46 #define ISL9305_DCD1_MODE 0x01
51 #define ISL9305_I2C_EN 0x40
52 #define ISL9305_DCDPOR_MASK 0x30
53 #define ISL9305_LDO2_EN 0x08
54 #define ISL9305_LDO1_EN 0x04
55 #define ISL9305_DCD2_EN 0x02
56 #define ISL9305_DCD1_EN 0x01
61 #define ISL9305_DCD2SR_MASK 0xc0
62 #define ISL9305_DCD1SR_MASK 0x07
64 static const struct regulator_ops isl9305_ops
= {
65 .enable
= regulator_enable_regmap
,
66 .disable
= regulator_disable_regmap
,
67 .is_enabled
= regulator_is_enabled_regmap
,
68 .list_voltage
= regulator_list_voltage_linear
,
69 .get_voltage_sel
= regulator_get_voltage_sel_regmap
,
70 .set_voltage_sel
= regulator_set_voltage_sel_regmap
,
73 static const struct regulator_desc isl9305_regulators
[] = {
76 .of_match
= of_match_ptr("dcd1"),
77 .regulators_node
= of_match_ptr("regulators"),
81 .vsel_reg
= ISL9305_DCD1OUT
,
83 .enable_reg
= ISL9305_SYSTEM_PARAMETER
,
84 .enable_mask
= ISL9305_DCD1_EN
,
85 .supply_name
= "VINDCD1",
90 .of_match
= of_match_ptr("dcd2"),
91 .regulators_node
= of_match_ptr("regulators"),
95 .vsel_reg
= ISL9305_DCD2OUT
,
97 .enable_reg
= ISL9305_SYSTEM_PARAMETER
,
98 .enable_mask
= ISL9305_DCD2_EN
,
99 .supply_name
= "VINDCD2",
104 .of_match
= of_match_ptr("ldo1"),
105 .regulators_node
= of_match_ptr("regulators"),
109 .vsel_reg
= ISL9305_LDO1OUT
,
111 .enable_reg
= ISL9305_SYSTEM_PARAMETER
,
112 .enable_mask
= ISL9305_LDO1_EN
,
113 .supply_name
= "VINLDO1",
118 .of_match
= of_match_ptr("ldo2"),
119 .regulators_node
= of_match_ptr("regulators"),
123 .vsel_reg
= ISL9305_LDO2OUT
,
125 .enable_reg
= ISL9305_SYSTEM_PARAMETER
,
126 .enable_mask
= ISL9305_LDO2_EN
,
127 .supply_name
= "VINLDO2",
132 static const struct regmap_config isl9305_regmap
= {
136 .max_register
= ISL9305_MAX_REG
,
137 .cache_type
= REGCACHE_RBTREE
,
140 static int isl9305_i2c_probe(struct i2c_client
*i2c
,
141 const struct i2c_device_id
*id
)
143 struct regulator_config config
= { };
144 struct isl9305_pdata
*pdata
= i2c
->dev
.platform_data
;
145 struct regulator_dev
*rdev
;
146 struct regmap
*regmap
;
149 regmap
= devm_regmap_init_i2c(i2c
, &isl9305_regmap
);
150 if (IS_ERR(regmap
)) {
151 ret
= PTR_ERR(regmap
);
152 dev_err(&i2c
->dev
, "Failed to create regmap: %d\n", ret
);
156 config
.dev
= &i2c
->dev
;
158 for (i
= 0; i
< ARRAY_SIZE(isl9305_regulators
); i
++) {
160 config
.init_data
= pdata
->init_data
[i
];
162 config
.init_data
= NULL
;
164 rdev
= devm_regulator_register(&i2c
->dev
,
165 &isl9305_regulators
[i
],
169 dev_err(&i2c
->dev
, "Failed to register %s: %d\n",
170 isl9305_regulators
[i
].name
, ret
);
179 static const struct of_device_id isl9305_dt_ids
[] = {
180 { .compatible
= "isl,isl9305" }, /* for backward compat., don't use */
181 { .compatible
= "isil,isl9305" },
182 { .compatible
= "isl,isl9305h" }, /* for backward compat., don't use */
183 { .compatible
= "isil,isl9305h" },
186 MODULE_DEVICE_TABLE(of
, isl9305_dt_ids
);
189 static const struct i2c_device_id isl9305_i2c_id
[] = {
194 MODULE_DEVICE_TABLE(i2c
, isl9305_i2c_id
);
196 static struct i2c_driver isl9305_regulator_driver
= {
199 .of_match_table
= of_match_ptr(isl9305_dt_ids
),
201 .probe
= isl9305_i2c_probe
,
202 .id_table
= isl9305_i2c_id
,
205 module_i2c_driver(isl9305_regulator_driver
);
207 MODULE_AUTHOR("Mark Brown");
208 MODULE_DESCRIPTION("Intersil ISL9305 DCDC regulator");
209 MODULE_LICENSE("GPL");