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/err.h>
26 #include <linux/platform_device.h>
28 #include <linux/of_address.h>
29 #include <linux/mfd/anatop.h>
30 #include <linux/regulator/driver.h>
31 #include <linux/regulator/of_regulator.h>
33 struct anatop_regulator
{
42 struct regulator_desc rdesc
;
43 struct regulator_init_data
*initdata
;
46 static int anatop_set_voltage_sel(struct regulator_dev
*reg
, unsigned selector
)
48 struct anatop_regulator
*anatop_reg
= rdev_get_drvdata(reg
);
51 if (!anatop_reg
->control_reg
)
54 val
= anatop_reg
->min_bit_val
+ selector
;
55 dev_dbg(®
->dev
, "%s: calculated val %d\n", __func__
, val
);
56 mask
= ((1 << anatop_reg
->vol_bit_width
) - 1) <<
57 anatop_reg
->vol_bit_shift
;
58 val
<<= anatop_reg
->vol_bit_shift
;
59 anatop_write_reg(anatop_reg
->mfd
, anatop_reg
->control_reg
, val
, mask
);
64 static int anatop_get_voltage_sel(struct regulator_dev
*reg
)
66 struct anatop_regulator
*anatop_reg
= rdev_get_drvdata(reg
);
69 if (!anatop_reg
->control_reg
)
72 val
= anatop_read_reg(anatop_reg
->mfd
, anatop_reg
->control_reg
);
73 mask
= ((1 << anatop_reg
->vol_bit_width
) - 1) <<
74 anatop_reg
->vol_bit_shift
;
75 val
= (val
& mask
) >> anatop_reg
->vol_bit_shift
;
77 return val
- anatop_reg
->min_bit_val
;
80 static struct regulator_ops anatop_rops
= {
81 .set_voltage_sel
= anatop_set_voltage_sel
,
82 .get_voltage_sel
= anatop_get_voltage_sel
,
83 .list_voltage
= regulator_list_voltage_linear
,
84 .map_voltage
= regulator_map_voltage_linear
,
87 static int __devinit
anatop_regulator_probe(struct platform_device
*pdev
)
89 struct device
*dev
= &pdev
->dev
;
90 struct device_node
*np
= dev
->of_node
;
91 struct regulator_desc
*rdesc
;
92 struct regulator_dev
*rdev
;
93 struct anatop_regulator
*sreg
;
94 struct regulator_init_data
*initdata
;
95 struct anatop
*anatopmfd
= dev_get_drvdata(pdev
->dev
.parent
);
96 struct regulator_config config
= { };
99 initdata
= of_get_regulator_init_data(dev
, np
);
100 sreg
= devm_kzalloc(dev
, sizeof(*sreg
), GFP_KERNEL
);
103 sreg
->initdata
= initdata
;
104 sreg
->name
= kstrdup(of_get_property(np
, "regulator-name", NULL
),
106 rdesc
= &sreg
->rdesc
;
107 memset(rdesc
, 0, sizeof(*rdesc
));
108 rdesc
->name
= sreg
->name
;
109 rdesc
->ops
= &anatop_rops
;
110 rdesc
->type
= REGULATOR_VOLTAGE
;
111 rdesc
->owner
= THIS_MODULE
;
112 sreg
->mfd
= anatopmfd
;
113 ret
= of_property_read_u32(np
, "anatop-reg-offset",
116 dev_err(dev
, "no anatop-reg-offset property set\n");
117 goto anatop_probe_end
;
119 ret
= of_property_read_u32(np
, "anatop-vol-bit-width",
120 &sreg
->vol_bit_width
);
122 dev_err(dev
, "no anatop-vol-bit-width property set\n");
123 goto anatop_probe_end
;
125 ret
= of_property_read_u32(np
, "anatop-vol-bit-shift",
126 &sreg
->vol_bit_shift
);
128 dev_err(dev
, "no anatop-vol-bit-shift property set\n");
129 goto anatop_probe_end
;
131 ret
= of_property_read_u32(np
, "anatop-min-bit-val",
134 dev_err(dev
, "no anatop-min-bit-val property set\n");
135 goto anatop_probe_end
;
137 ret
= of_property_read_u32(np
, "anatop-min-voltage",
140 dev_err(dev
, "no anatop-min-voltage property set\n");
141 goto anatop_probe_end
;
143 ret
= of_property_read_u32(np
, "anatop-max-voltage",
146 dev_err(dev
, "no anatop-max-voltage property set\n");
147 goto anatop_probe_end
;
150 rdesc
->n_voltages
= (sreg
->max_voltage
- sreg
->min_voltage
)
152 rdesc
->min_uV
= sreg
->min_voltage
;
153 rdesc
->uV_step
= 25000;
155 config
.dev
= &pdev
->dev
;
156 config
.init_data
= initdata
;
157 config
.driver_data
= sreg
;
158 config
.of_node
= pdev
->dev
.of_node
;
160 /* register regulator */
161 rdev
= regulator_register(rdesc
, &config
);
163 dev_err(dev
, "failed to register %s\n",
166 goto anatop_probe_end
;
169 platform_set_drvdata(pdev
, rdev
);
178 static int __devexit
anatop_regulator_remove(struct platform_device
*pdev
)
180 struct regulator_dev
*rdev
= platform_get_drvdata(pdev
);
181 struct anatop_regulator
*sreg
= rdev_get_drvdata(rdev
);
182 const char *name
= sreg
->name
;
184 regulator_unregister(rdev
);
190 static struct of_device_id __devinitdata of_anatop_regulator_match_tbl
[] = {
191 { .compatible
= "fsl,anatop-regulator", },
195 static struct platform_driver anatop_regulator_driver
= {
197 .name
= "anatop_regulator",
198 .owner
= THIS_MODULE
,
199 .of_match_table
= of_anatop_regulator_match_tbl
,
201 .probe
= anatop_regulator_probe
,
202 .remove
= __devexit_p(anatop_regulator_remove
),
205 static int __init
anatop_regulator_init(void)
207 return platform_driver_register(&anatop_regulator_driver
);
209 postcore_initcall(anatop_regulator_init
);
211 static void __exit
anatop_regulator_exit(void)
213 platform_driver_unregister(&anatop_regulator_driver
);
215 module_exit(anatop_regulator_exit
);
217 MODULE_AUTHOR("Nancy Chen <Nancy.Chen@freescale.com>, "
218 "Ying-Chun Liu (PaulLiu) <paul.liu@linaro.org>");
219 MODULE_DESCRIPTION("ANATOP Regulator driver");
220 MODULE_LICENSE("GPL v2");