net/mlx5: offset comp irq index in name by one
[linux-block.git] / drivers / regulator / anatop-regulator.c
CommitLineData
c07bbfe7
FE
1// SPDX-License-Identifier: GPL-2.0+
2//
3// Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
e3e5aff7
YCLP
4
5#include <linux/slab.h>
6#include <linux/device.h>
7#include <linux/module.h>
baa64151 8#include <linux/mfd/syscon.h>
e3e5aff7
YCLP
9#include <linux/err.h>
10#include <linux/io.h>
11#include <linux/platform_device.h>
12#include <linux/of.h>
13#include <linux/of_address.h>
baa64151 14#include <linux/regmap.h>
e3e5aff7
YCLP
15#include <linux/regulator/driver.h>
16#include <linux/regulator/of_regulator.h>
0d19208e 17#include <linux/regulator/machine.h>
e3e5aff7 18
9ee417c0
AH
19#define LDO_RAMP_UP_UNIT_IN_CYCLES 64 /* 64 cycles per step */
20#define LDO_RAMP_UP_FREQ_IN_MHZ 24 /* cycle based on 24M OSC */
21
605ebd35 22#define LDO_POWER_GATE 0x00
d38018f2 23#define LDO_FET_FULL_ON 0x1f
605ebd35 24
e3e5aff7 25struct anatop_regulator {
9ee417c0
AH
26 u32 delay_reg;
27 int delay_bit_shift;
28 int delay_bit_width;
e3e5aff7 29 struct regulator_desc rdesc;
d38018f2 30 bool bypass;
605ebd35 31 int sel;
e3e5aff7
YCLP
32};
33
9ee417c0
AH
34static int anatop_regmap_set_voltage_time_sel(struct regulator_dev *reg,
35 unsigned int old_sel,
36 unsigned int new_sel)
37{
38 struct anatop_regulator *anatop_reg = rdev_get_drvdata(reg);
39 u32 val;
40 int ret = 0;
41
42 /* check whether need to care about LDO ramp up speed */
43 if (anatop_reg->delay_bit_width && new_sel > old_sel) {
44 /*
45 * the delay for LDO ramp up time is
46 * based on the register setting, we need
47 * to calculate how many steps LDO need to
48 * ramp up, and how much delay needed. (us)
49 */
f34a2692 50 regmap_read(reg->regmap, anatop_reg->delay_reg, &val);
9ee417c0
AH
51 val = (val >> anatop_reg->delay_bit_shift) &
52 ((1 << anatop_reg->delay_bit_width) - 1);
ff1ce057
SG
53 ret = (new_sel - old_sel) * (LDO_RAMP_UP_UNIT_IN_CYCLES <<
54 val) / LDO_RAMP_UP_FREQ_IN_MHZ + 1;
9ee417c0
AH
55 }
56
57 return ret;
58}
59
605ebd35
PZ
60static int anatop_regmap_enable(struct regulator_dev *reg)
61{
62 struct anatop_regulator *anatop_reg = rdev_get_drvdata(reg);
d38018f2 63 int sel;
605ebd35 64
d38018f2
PZ
65 sel = anatop_reg->bypass ? LDO_FET_FULL_ON : anatop_reg->sel;
66 return regulator_set_voltage_sel_regmap(reg, sel);
605ebd35
PZ
67}
68
69static int anatop_regmap_disable(struct regulator_dev *reg)
70{
71 return regulator_set_voltage_sel_regmap(reg, LDO_POWER_GATE);
72}
73
74static int anatop_regmap_is_enabled(struct regulator_dev *reg)
75{
76 return regulator_get_voltage_sel_regmap(reg) != LDO_POWER_GATE;
77}
78
79static int anatop_regmap_core_set_voltage_sel(struct regulator_dev *reg,
80 unsigned selector)
81{
82 struct anatop_regulator *anatop_reg = rdev_get_drvdata(reg);
83 int ret;
84
d38018f2 85 if (anatop_reg->bypass || !anatop_regmap_is_enabled(reg)) {
605ebd35
PZ
86 anatop_reg->sel = selector;
87 return 0;
88 }
89
90 ret = regulator_set_voltage_sel_regmap(reg, selector);
91 if (!ret)
92 anatop_reg->sel = selector;
93 return ret;
94}
95
96static int anatop_regmap_core_get_voltage_sel(struct regulator_dev *reg)
97{
98 struct anatop_regulator *anatop_reg = rdev_get_drvdata(reg);
99
d38018f2 100 if (anatop_reg->bypass || !anatop_regmap_is_enabled(reg))
605ebd35
PZ
101 return anatop_reg->sel;
102
103 return regulator_get_voltage_sel_regmap(reg);
104}
105
d38018f2
PZ
106static int anatop_regmap_get_bypass(struct regulator_dev *reg, bool *enable)
107{
108 struct anatop_regulator *anatop_reg = rdev_get_drvdata(reg);
109 int sel;
110
111 sel = regulator_get_voltage_sel_regmap(reg);
112 if (sel == LDO_FET_FULL_ON)
113 WARN_ON(!anatop_reg->bypass);
114 else if (sel != LDO_POWER_GATE)
115 WARN_ON(anatop_reg->bypass);
116
117 *enable = anatop_reg->bypass;
118 return 0;
119}
120
121static int anatop_regmap_set_bypass(struct regulator_dev *reg, bool enable)
122{
123 struct anatop_regulator *anatop_reg = rdev_get_drvdata(reg);
124 int sel;
125
126 if (enable == anatop_reg->bypass)
127 return 0;
128
129 sel = enable ? LDO_FET_FULL_ON : anatop_reg->sel;
130 anatop_reg->bypass = enable;
131
132 return regulator_set_voltage_sel_regmap(reg, sel);
133}
134
e3e5aff7 135static struct regulator_ops anatop_rops = {
114c5748
AL
136 .set_voltage_sel = regulator_set_voltage_sel_regmap,
137 .get_voltage_sel = regulator_get_voltage_sel_regmap,
d01c3a1e
AL
138 .list_voltage = regulator_list_voltage_linear,
139 .map_voltage = regulator_map_voltage_linear,
e3e5aff7
YCLP
140};
141
cae62a93 142static const struct regulator_ops anatop_core_rops = {
605ebd35
PZ
143 .enable = anatop_regmap_enable,
144 .disable = anatop_regmap_disable,
145 .is_enabled = anatop_regmap_is_enabled,
146 .set_voltage_sel = anatop_regmap_core_set_voltage_sel,
147 .set_voltage_time_sel = anatop_regmap_set_voltage_time_sel,
148 .get_voltage_sel = anatop_regmap_core_get_voltage_sel,
149 .list_voltage = regulator_list_voltage_linear,
150 .map_voltage = regulator_map_voltage_linear,
d38018f2
PZ
151 .get_bypass = anatop_regmap_get_bypass,
152 .set_bypass = anatop_regmap_set_bypass,
605ebd35
PZ
153};
154
a5023574 155static int anatop_regulator_probe(struct platform_device *pdev)
e3e5aff7
YCLP
156{
157 struct device *dev = &pdev->dev;
158 struct device_node *np = dev->of_node;
baa64151 159 struct device_node *anatop_np;
e3e5aff7
YCLP
160 struct regulator_desc *rdesc;
161 struct regulator_dev *rdev;
162 struct anatop_regulator *sreg;
163 struct regulator_init_data *initdata;
d914d81b 164 struct regulator_config config = { };
f34a2692
AL
165 struct regmap *regmap;
166 u32 control_reg;
167 u32 vol_bit_shift;
168 u32 vol_bit_width;
169 u32 min_bit_val;
170 u32 min_voltage;
171 u32 max_voltage;
e3e5aff7 172 int ret = 0;
605ebd35 173 u32 val;
e3e5aff7 174
e3e5aff7
YCLP
175 sreg = devm_kzalloc(dev, sizeof(*sreg), GFP_KERNEL);
176 if (!sreg)
177 return -ENOMEM;
5062e047 178
e3e5aff7 179 rdesc = &sreg->rdesc;
e3e5aff7
YCLP
180 rdesc->type = REGULATOR_VOLTAGE;
181 rdesc->owner = THIS_MODULE;
baa64151 182
aeb1404d 183 of_property_read_string(np, "regulator-name", &rdesc->name);
4af5924c
DA
184 if (!rdesc->name) {
185 dev_err(dev, "failed to get a regulator-name\n");
186 return -EINVAL;
187 }
aeb1404d 188
072e78b1 189 initdata = of_get_regulator_init_data(dev, np, rdesc);
7f51cf2e
DA
190 if (!initdata)
191 return -ENOMEM;
192
0d19208e 193 initdata->supply_regulator = "vin";
072e78b1 194
baa64151
DA
195 anatop_np = of_get_parent(np);
196 if (!anatop_np)
197 return -ENODEV;
f34a2692 198 regmap = syscon_node_to_regmap(anatop_np);
baa64151 199 of_node_put(anatop_np);
f34a2692
AL
200 if (IS_ERR(regmap))
201 return PTR_ERR(regmap);
baa64151 202
f34a2692 203 ret = of_property_read_u32(np, "anatop-reg-offset", &control_reg);
e3e5aff7 204 if (ret) {
2f2cc27f 205 dev_err(dev, "no anatop-reg-offset property set\n");
f2b269b8 206 return ret;
e3e5aff7 207 }
f34a2692 208 ret = of_property_read_u32(np, "anatop-vol-bit-width", &vol_bit_width);
e3e5aff7
YCLP
209 if (ret) {
210 dev_err(dev, "no anatop-vol-bit-width property set\n");
f2b269b8 211 return ret;
e3e5aff7 212 }
f34a2692 213 ret = of_property_read_u32(np, "anatop-vol-bit-shift", &vol_bit_shift);
e3e5aff7
YCLP
214 if (ret) {
215 dev_err(dev, "no anatop-vol-bit-shift property set\n");
f2b269b8 216 return ret;
e3e5aff7 217 }
f34a2692 218 ret = of_property_read_u32(np, "anatop-min-bit-val", &min_bit_val);
e3e5aff7
YCLP
219 if (ret) {
220 dev_err(dev, "no anatop-min-bit-val property set\n");
f2b269b8 221 return ret;
e3e5aff7 222 }
f34a2692 223 ret = of_property_read_u32(np, "anatop-min-voltage", &min_voltage);
e3e5aff7
YCLP
224 if (ret) {
225 dev_err(dev, "no anatop-min-voltage property set\n");
f2b269b8 226 return ret;
e3e5aff7 227 }
f34a2692 228 ret = of_property_read_u32(np, "anatop-max-voltage", &max_voltage);
e3e5aff7
YCLP
229 if (ret) {
230 dev_err(dev, "no anatop-max-voltage property set\n");
f2b269b8 231 return ret;
e3e5aff7
YCLP
232 }
233
9ee417c0
AH
234 /* read LDO ramp up setting, only for core reg */
235 of_property_read_u32(np, "anatop-delay-reg-offset",
236 &sreg->delay_reg);
237 of_property_read_u32(np, "anatop-delay-bit-width",
238 &sreg->delay_bit_width);
239 of_property_read_u32(np, "anatop-delay-bit-shift",
240 &sreg->delay_bit_shift);
241
f34a2692
AL
242 rdesc->n_voltages = (max_voltage - min_voltage) / 25000 + 1
243 + min_bit_val;
244 rdesc->min_uV = min_voltage;
0713e6ab 245 rdesc->uV_step = 25000;
f34a2692
AL
246 rdesc->linear_min_sel = min_bit_val;
247 rdesc->vsel_reg = control_reg;
248 rdesc->vsel_mask = ((1 << vol_bit_width) - 1) << vol_bit_shift;
0d19208e 249 rdesc->min_dropout_uV = 125000;
e3e5aff7 250
d914d81b
AL
251 config.dev = &pdev->dev;
252 config.init_data = initdata;
253 config.driver_data = sreg;
254 config.of_node = pdev->dev.of_node;
f34a2692 255 config.regmap = regmap;
d914d81b 256
605ebd35 257 /* Only core regulators have the ramp up delay configuration. */
f34a2692 258 if (control_reg && sreg->delay_bit_width) {
605ebd35
PZ
259 rdesc->ops = &anatop_core_rops;
260
261 ret = regmap_read(config.regmap, rdesc->vsel_reg, &val);
262 if (ret) {
263 dev_err(dev, "failed to read initial state\n");
264 return ret;
265 }
266
f34a2692 267 sreg->sel = (val & rdesc->vsel_mask) >> vol_bit_shift;
d38018f2
PZ
268 if (sreg->sel == LDO_FET_FULL_ON) {
269 sreg->sel = 0;
270 sreg->bypass = true;
271 }
fe08be3e
MP
272
273 /*
274 * In case vddpu was disabled by the bootloader, we need to set
275 * a sane default until imx6-cpufreq was probed and changes the
276 * voltage to the correct value. In this case we set 1.25V.
277 */
aeb1404d 278 if (!sreg->sel && !strcmp(rdesc->name, "vddpu"))
fe08be3e 279 sreg->sel = 22;
da0607c8 280
9bf94454 281 /* set the default voltage of the pcie phy to be 1.100v */
4af5924c 282 if (!sreg->sel && !strcmp(rdesc->name, "vddpcie"))
9bf94454
DA
283 sreg->sel = 0x10;
284
8a092e68 285 if (!sreg->bypass && !sreg->sel) {
da0607c8
MP
286 dev_err(&pdev->dev, "Failed to read a valid default voltage selector.\n");
287 return -EINVAL;
288 }
605ebd35 289 } else {
ca7734ad
AS
290 u32 enable_bit;
291
605ebd35 292 rdesc->ops = &anatop_rops;
ca7734ad
AS
293
294 if (!of_property_read_u32(np, "anatop-enable-bit",
295 &enable_bit)) {
296 anatop_rops.enable = regulator_enable_regmap;
297 anatop_rops.disable = regulator_disable_regmap;
298 anatop_rops.is_enabled = regulator_is_enabled_regmap;
299
f34a2692 300 rdesc->enable_reg = control_reg;
ca7734ad
AS
301 rdesc->enable_mask = BIT(enable_bit);
302 }
605ebd35
PZ
303 }
304
e3e5aff7 305 /* register regulator */
be1221e8 306 rdev = devm_regulator_register(dev, rdesc, &config);
e3e5aff7 307 if (IS_ERR(rdev)) {
788bfc6e
AH
308 ret = PTR_ERR(rdev);
309 if (ret == -EPROBE_DEFER)
310 dev_dbg(dev, "failed to register %s, deferring...\n",
311 rdesc->name);
312 else
313 dev_err(dev, "failed to register %s\n", rdesc->name);
314 return ret;
e3e5aff7
YCLP
315 }
316
317 platform_set_drvdata(pdev, rdev);
318
e3e5aff7
YCLP
319 return 0;
320}
321
a799baab 322static const struct of_device_id of_anatop_regulator_match_tbl[] = {
e3e5aff7
YCLP
323 { .compatible = "fsl,anatop-regulator", },
324 { /* end */ }
325};
d702ffd4 326MODULE_DEVICE_TABLE(of, of_anatop_regulator_match_tbl);
e3e5aff7 327
c0d78c23 328static struct platform_driver anatop_regulator_driver = {
e3e5aff7
YCLP
329 .driver = {
330 .name = "anatop_regulator",
259b93b2 331 .probe_type = PROBE_PREFER_ASYNCHRONOUS,
e3e5aff7
YCLP
332 .of_match_table = of_anatop_regulator_match_tbl,
333 },
334 .probe = anatop_regulator_probe,
e3e5aff7
YCLP
335};
336
337static int __init anatop_regulator_init(void)
338{
c0d78c23 339 return platform_driver_register(&anatop_regulator_driver);
e3e5aff7
YCLP
340}
341postcore_initcall(anatop_regulator_init);
342
343static void __exit anatop_regulator_exit(void)
344{
c0d78c23 345 platform_driver_unregister(&anatop_regulator_driver);
e3e5aff7
YCLP
346}
347module_exit(anatop_regulator_exit);
348
34f75685
JH
349MODULE_AUTHOR("Nancy Chen <Nancy.Chen@freescale.com>");
350MODULE_AUTHOR("Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org>");
e3e5aff7
YCLP
351MODULE_DESCRIPTION("ANATOP Regulator driver");
352MODULE_LICENSE("GPL v2");
89705b9e 353MODULE_ALIAS("platform:anatop_regulator");