2 * Copyright (C) 2011 Freescale Semiconductor, Inc. All Rights Reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #include <linux/slab.h>
22 #include <linux/device.h>
23 #include <linux/module.h>
24 #include <linux/mfd/syscon.h>
25 #include <linux/err.h>
27 #include <linux/platform_device.h>
29 #include <linux/of_address.h>
30 #include <linux/regmap.h>
31 #include <linux/regulator/driver.h>
32 #include <linux/regulator/of_regulator.h>
34 struct anatop_regulator
{
37 struct regmap
*anatop
;
43 struct regulator_desc rdesc
;
44 struct regulator_init_data
*initdata
;
47 static int anatop_regmap_set_voltage_sel(struct regulator_dev
*reg
,
50 struct anatop_regulator
*anatop_reg
= rdev_get_drvdata(reg
);
52 if (!anatop_reg
->control_reg
)
55 return regulator_set_voltage_sel_regmap(reg
, selector
);
58 static int anatop_regmap_get_voltage_sel(struct regulator_dev
*reg
)
60 struct anatop_regulator
*anatop_reg
= rdev_get_drvdata(reg
);
62 if (!anatop_reg
->control_reg
)
65 return regulator_get_voltage_sel_regmap(reg
);
68 static struct regulator_ops anatop_rops
= {
69 .set_voltage_sel
= anatop_regmap_set_voltage_sel
,
70 .get_voltage_sel
= anatop_regmap_get_voltage_sel
,
71 .list_voltage
= regulator_list_voltage_linear
,
72 .map_voltage
= regulator_map_voltage_linear
,
75 static int anatop_regulator_probe(struct platform_device
*pdev
)
77 struct device
*dev
= &pdev
->dev
;
78 struct device_node
*np
= dev
->of_node
;
79 struct device_node
*anatop_np
;
80 struct regulator_desc
*rdesc
;
81 struct regulator_dev
*rdev
;
82 struct anatop_regulator
*sreg
;
83 struct regulator_init_data
*initdata
;
84 struct regulator_config config
= { };
87 initdata
= of_get_regulator_init_data(dev
, np
);
88 sreg
= devm_kzalloc(dev
, sizeof(*sreg
), GFP_KERNEL
);
91 sreg
->initdata
= initdata
;
92 sreg
->name
= kstrdup(of_get_property(np
, "regulator-name", NULL
),
95 memset(rdesc
, 0, sizeof(*rdesc
));
96 rdesc
->name
= sreg
->name
;
97 rdesc
->ops
= &anatop_rops
;
98 rdesc
->type
= REGULATOR_VOLTAGE
;
99 rdesc
->owner
= THIS_MODULE
;
101 anatop_np
= of_get_parent(np
);
104 sreg
->anatop
= syscon_node_to_regmap(anatop_np
);
105 of_node_put(anatop_np
);
106 if (IS_ERR(sreg
->anatop
))
107 return PTR_ERR(sreg
->anatop
);
109 ret
= of_property_read_u32(np
, "anatop-reg-offset",
112 dev_err(dev
, "no anatop-reg-offset property set\n");
113 goto anatop_probe_end
;
115 ret
= of_property_read_u32(np
, "anatop-vol-bit-width",
116 &sreg
->vol_bit_width
);
118 dev_err(dev
, "no anatop-vol-bit-width property set\n");
119 goto anatop_probe_end
;
121 ret
= of_property_read_u32(np
, "anatop-vol-bit-shift",
122 &sreg
->vol_bit_shift
);
124 dev_err(dev
, "no anatop-vol-bit-shift property set\n");
125 goto anatop_probe_end
;
127 ret
= of_property_read_u32(np
, "anatop-min-bit-val",
130 dev_err(dev
, "no anatop-min-bit-val property set\n");
131 goto anatop_probe_end
;
133 ret
= of_property_read_u32(np
, "anatop-min-voltage",
136 dev_err(dev
, "no anatop-min-voltage property set\n");
137 goto anatop_probe_end
;
139 ret
= of_property_read_u32(np
, "anatop-max-voltage",
142 dev_err(dev
, "no anatop-max-voltage property set\n");
143 goto anatop_probe_end
;
146 rdesc
->n_voltages
= (sreg
->max_voltage
- sreg
->min_voltage
) / 25000 + 1
148 rdesc
->min_uV
= sreg
->min_voltage
;
149 rdesc
->uV_step
= 25000;
150 rdesc
->linear_min_sel
= sreg
->min_bit_val
;
151 rdesc
->vsel_reg
= sreg
->control_reg
;
152 rdesc
->vsel_mask
= ((1 << sreg
->vol_bit_width
) - 1) <<
155 config
.dev
= &pdev
->dev
;
156 config
.init_data
= initdata
;
157 config
.driver_data
= sreg
;
158 config
.of_node
= pdev
->dev
.of_node
;
159 config
.regmap
= sreg
->anatop
;
161 /* register regulator */
162 rdev
= regulator_register(rdesc
, &config
);
164 dev_err(dev
, "failed to register %s\n",
167 goto anatop_probe_end
;
170 platform_set_drvdata(pdev
, rdev
);
179 static int anatop_regulator_remove(struct platform_device
*pdev
)
181 struct regulator_dev
*rdev
= platform_get_drvdata(pdev
);
182 struct anatop_regulator
*sreg
= rdev_get_drvdata(rdev
);
183 const char *name
= sreg
->name
;
185 regulator_unregister(rdev
);
191 static struct of_device_id of_anatop_regulator_match_tbl
[] = {
192 { .compatible
= "fsl,anatop-regulator", },
196 static struct platform_driver anatop_regulator_driver
= {
198 .name
= "anatop_regulator",
199 .owner
= THIS_MODULE
,
200 .of_match_table
= of_anatop_regulator_match_tbl
,
202 .probe
= anatop_regulator_probe
,
203 .remove
= anatop_regulator_remove
,
206 static int __init
anatop_regulator_init(void)
208 return platform_driver_register(&anatop_regulator_driver
);
210 postcore_initcall(anatop_regulator_init
);
212 static void __exit
anatop_regulator_exit(void)
214 platform_driver_unregister(&anatop_regulator_driver
);
216 module_exit(anatop_regulator_exit
);
218 MODULE_AUTHOR("Nancy Chen <Nancy.Chen@freescale.com>, "
219 "Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org>");
220 MODULE_DESCRIPTION("ANATOP Regulator driver");
221 MODULE_LICENSE("GPL v2");