2 * linux/drivers/regulator/aat2870-regulator.c
4 * Copyright (c) 2011, NVIDIA Corporation.
5 * Author: Jin Park <jinyoungp@nvidia.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
22 #include <linux/kernel.h>
23 #include <linux/init.h>
24 #include <linux/err.h>
25 #include <linux/module.h>
26 #include <linux/slab.h>
27 #include <linux/platform_device.h>
28 #include <linux/regulator/driver.h>
29 #include <linux/regulator/machine.h>
30 #include <linux/mfd/aat2870.h>
32 struct aat2870_regulator
{
33 struct aat2870_data
*aat2870
;
34 struct regulator_desc desc
;
45 static int aat2870_ldo_set_voltage_sel(struct regulator_dev
*rdev
,
48 struct aat2870_regulator
*ri
= rdev_get_drvdata(rdev
);
49 struct aat2870_data
*aat2870
= ri
->aat2870
;
51 return aat2870
->update(aat2870
, ri
->voltage_addr
, ri
->voltage_mask
,
52 selector
<< ri
->voltage_shift
);
55 static int aat2870_ldo_get_voltage_sel(struct regulator_dev
*rdev
)
57 struct aat2870_regulator
*ri
= rdev_get_drvdata(rdev
);
58 struct aat2870_data
*aat2870
= ri
->aat2870
;
62 ret
= aat2870
->read(aat2870
, ri
->voltage_addr
, &val
);
66 return (val
& ri
->voltage_mask
) >> ri
->voltage_shift
;
69 static int aat2870_ldo_enable(struct regulator_dev
*rdev
)
71 struct aat2870_regulator
*ri
= rdev_get_drvdata(rdev
);
72 struct aat2870_data
*aat2870
= ri
->aat2870
;
74 return aat2870
->update(aat2870
, ri
->enable_addr
, ri
->enable_mask
,
78 static int aat2870_ldo_disable(struct regulator_dev
*rdev
)
80 struct aat2870_regulator
*ri
= rdev_get_drvdata(rdev
);
81 struct aat2870_data
*aat2870
= ri
->aat2870
;
83 return aat2870
->update(aat2870
, ri
->enable_addr
, ri
->enable_mask
, 0);
86 static int aat2870_ldo_is_enabled(struct regulator_dev
*rdev
)
88 struct aat2870_regulator
*ri
= rdev_get_drvdata(rdev
);
89 struct aat2870_data
*aat2870
= ri
->aat2870
;
93 ret
= aat2870
->read(aat2870
, ri
->enable_addr
, &val
);
97 return val
& ri
->enable_mask
? 1 : 0;
100 static struct regulator_ops aat2870_ldo_ops
= {
101 .list_voltage
= regulator_list_voltage_table
,
102 .map_voltage
= regulator_map_voltage_ascend
,
103 .set_voltage_sel
= aat2870_ldo_set_voltage_sel
,
104 .get_voltage_sel
= aat2870_ldo_get_voltage_sel
,
105 .enable
= aat2870_ldo_enable
,
106 .disable
= aat2870_ldo_disable
,
107 .is_enabled
= aat2870_ldo_is_enabled
,
110 static const unsigned int aat2870_ldo_voltages
[] = {
111 1200000, 1300000, 1500000, 1600000,
112 1800000, 2000000, 2200000, 2500000,
113 2600000, 2700000, 2800000, 2900000,
114 3000000, 3100000, 3200000, 3300000,
117 #define AAT2870_LDO(ids) \
121 .id = AAT2870_ID_##ids, \
122 .n_voltages = ARRAY_SIZE(aat2870_ldo_voltages), \
123 .volt_table = aat2870_ldo_voltages, \
124 .ops = &aat2870_ldo_ops, \
125 .type = REGULATOR_VOLTAGE, \
126 .owner = THIS_MODULE, \
130 static struct aat2870_regulator aat2870_regulators
[] = {
137 static struct aat2870_regulator
*aat2870_get_regulator(int id
)
139 struct aat2870_regulator
*ri
= NULL
;
142 for (i
= 0; i
< ARRAY_SIZE(aat2870_regulators
); i
++) {
143 ri
= &aat2870_regulators
[i
];
144 if (ri
->desc
.id
== id
)
148 if (i
== ARRAY_SIZE(aat2870_regulators
))
151 ri
->enable_addr
= AAT2870_LDO_EN
;
152 ri
->enable_shift
= id
- AAT2870_ID_LDOA
;
153 ri
->enable_mask
= 0x1 << ri
->enable_shift
;
155 ri
->voltage_addr
= (id
- AAT2870_ID_LDOA
) / 2 ?
156 AAT2870_LDO_CD
: AAT2870_LDO_AB
;
157 ri
->voltage_shift
= (id
- AAT2870_ID_LDOA
) % 2 ? 0 : 4;
158 ri
->voltage_mask
= 0xF << ri
->voltage_shift
;
163 static int aat2870_regulator_probe(struct platform_device
*pdev
)
165 struct aat2870_regulator
*ri
;
166 struct regulator_config config
= { };
167 struct regulator_dev
*rdev
;
169 ri
= aat2870_get_regulator(pdev
->id
);
171 dev_err(&pdev
->dev
, "Invalid device ID, %d\n", pdev
->id
);
174 ri
->aat2870
= dev_get_drvdata(pdev
->dev
.parent
);
176 config
.dev
= &pdev
->dev
;
177 config
.driver_data
= ri
;
178 config
.init_data
= dev_get_platdata(&pdev
->dev
);
180 rdev
= devm_regulator_register(&pdev
->dev
, &ri
->desc
, &config
);
182 dev_err(&pdev
->dev
, "Failed to register regulator %s\n",
184 return PTR_ERR(rdev
);
186 platform_set_drvdata(pdev
, rdev
);
191 static struct platform_driver aat2870_regulator_driver
= {
193 .name
= "aat2870-regulator",
195 .probe
= aat2870_regulator_probe
,
198 static int __init
aat2870_regulator_init(void)
200 return platform_driver_register(&aat2870_regulator_driver
);
202 subsys_initcall(aat2870_regulator_init
);
204 static void __exit
aat2870_regulator_exit(void)
206 platform_driver_unregister(&aat2870_regulator_driver
);
208 module_exit(aat2870_regulator_exit
);
210 MODULE_DESCRIPTION("AnalogicTech AAT2870 Regulator");
211 MODULE_LICENSE("GPL");
212 MODULE_AUTHOR("Jin Park <jinyoungp@nvidia.com>");
213 MODULE_ALIAS("platform:aat2870-regulator");