]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/regulator/pcap-regulator.c
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-artful-kernel.git] / drivers / regulator / pcap-regulator.c
CommitLineData
39b1772a
DR
1/*
2 * PCAP2 Regulator Driver
3 *
4 * Copyright (c) 2009 Daniel Ribeiro <drwyrm@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/err.h>
16#include <linux/platform_device.h>
17#include <linux/regulator/driver.h>
18#include <linux/regulator/machine.h>
19#include <linux/mfd/ezx-pcap.h>
20
c49af956
AL
21static const unsigned int V1_table[] = {
22 2775000, 1275000, 1600000, 1725000, 1825000, 1925000, 2075000, 2275000,
39b1772a
DR
23};
24
c49af956
AL
25static const unsigned int V2_table[] = {
26 2500000, 2775000,
39b1772a
DR
27};
28
c49af956
AL
29static const unsigned int V3_table[] = {
30 1075000, 1275000, 1550000, 1725000, 1876000, 1950000, 2075000, 2275000,
39b1772a
DR
31};
32
c49af956
AL
33static const unsigned int V4_table[] = {
34 1275000, 1550000, 1725000, 1875000, 1950000, 2075000, 2275000, 2775000,
39b1772a
DR
35};
36
c49af956
AL
37static const unsigned int V5_table[] = {
38 1875000, 2275000, 2475000, 2775000,
39b1772a
DR
39};
40
c49af956
AL
41static const unsigned int V6_table[] = {
42 2475000, 2775000,
39b1772a
DR
43};
44
c49af956
AL
45static const unsigned int V7_table[] = {
46 1875000, 2775000,
39b1772a
DR
47};
48
49#define V8_table V4_table
50
c49af956
AL
51static const unsigned int V9_table[] = {
52 1575000, 1875000, 2475000, 2775000,
39b1772a
DR
53};
54
c49af956
AL
55static const unsigned int V10_table[] = {
56 5000000,
39b1772a
DR
57};
58
c49af956
AL
59static const unsigned int VAUX1_table[] = {
60 1875000, 2475000, 2775000, 3000000,
39b1772a
DR
61};
62
63#define VAUX2_table VAUX1_table
64
c49af956
AL
65static const unsigned int VAUX3_table[] = {
66 1200000, 1200000, 1200000, 1200000, 1400000, 1600000, 1800000, 2000000,
67 2200000, 2400000, 2600000, 2800000, 3000000, 3200000, 3400000, 3600000,
39b1772a
DR
68};
69
c49af956
AL
70static const unsigned int VAUX4_table[] = {
71 1800000, 1800000, 3000000, 5000000,
39b1772a
DR
72};
73
c49af956
AL
74static const unsigned int VSIM_table[] = {
75 1875000, 3000000,
39b1772a
DR
76};
77
c49af956
AL
78static const unsigned int VSIM2_table[] = {
79 1875000,
39b1772a
DR
80};
81
c49af956
AL
82static const unsigned int VVIB_table[] = {
83 1300000, 1800000, 2000000, 3000000,
39b1772a
DR
84};
85
c49af956
AL
86static const unsigned int SW1_table[] = {
87 900000, 950000, 1000000, 1050000, 1100000, 1150000, 1200000, 1250000,
88 1300000, 1350000, 1400000, 1450000, 1500000, 1600000, 1875000, 2250000,
39b1772a
DR
89};
90
91#define SW2_table SW1_table
92
c49af956
AL
93static const unsigned int SW3_table[] = {
94 4000000, 4500000, 5000000, 5500000,
39b1772a
DR
95};
96
97struct pcap_regulator {
98 const u8 reg;
99 const u8 en;
100 const u8 index;
101 const u8 stby;
102 const u8 lowpwr;
39b1772a
DR
103};
104
105#define NA 0xff
106
107#define VREG_INFO(_vreg, _reg, _en, _index, _stby, _lowpwr) \
108 [_vreg] = { \
109 .reg = _reg, \
110 .en = _en, \
111 .index = _index, \
112 .stby = _stby, \
113 .lowpwr = _lowpwr, \
39b1772a
DR
114 }
115
116static struct pcap_regulator vreg_table[] = {
117 VREG_INFO(V1, PCAP_REG_VREG1, 1, 2, 18, 0),
118 VREG_INFO(V2, PCAP_REG_VREG1, 5, 6, 19, 22),
119 VREG_INFO(V3, PCAP_REG_VREG1, 7, 8, 20, 23),
120 VREG_INFO(V4, PCAP_REG_VREG1, 11, 12, 21, 24),
121 /* V5 STBY and LOWPWR are on PCAP_REG_VREG2 */
122 VREG_INFO(V5, PCAP_REG_VREG1, 15, 16, 12, 19),
123
124 VREG_INFO(V6, PCAP_REG_VREG2, 1, 2, 14, 20),
125 VREG_INFO(V7, PCAP_REG_VREG2, 3, 4, 15, 21),
126 VREG_INFO(V8, PCAP_REG_VREG2, 5, 6, 16, 22),
127 VREG_INFO(V9, PCAP_REG_VREG2, 9, 10, 17, 23),
128 VREG_INFO(V10, PCAP_REG_VREG2, 10, NA, 18, 24),
129
130 VREG_INFO(VAUX1, PCAP_REG_AUXVREG, 1, 2, 22, 23),
131 /* VAUX2 ... VSIM2 STBY and LOWPWR are on PCAP_REG_LOWPWR */
132 VREG_INFO(VAUX2, PCAP_REG_AUXVREG, 4, 5, 0, 1),
133 VREG_INFO(VAUX3, PCAP_REG_AUXVREG, 7, 8, 2, 3),
134 VREG_INFO(VAUX4, PCAP_REG_AUXVREG, 12, 13, 4, 5),
135 VREG_INFO(VSIM, PCAP_REG_AUXVREG, 17, 18, NA, 6),
136 VREG_INFO(VSIM2, PCAP_REG_AUXVREG, 16, NA, NA, 7),
137 VREG_INFO(VVIB, PCAP_REG_AUXVREG, 19, 20, NA, NA),
138
139 VREG_INFO(SW1, PCAP_REG_SWCTRL, 1, 2, NA, NA),
140 VREG_INFO(SW2, PCAP_REG_SWCTRL, 6, 7, NA, NA),
141 /* SW3 STBY is on PCAP_REG_AUXVREG */
142 VREG_INFO(SW3, PCAP_REG_SWCTRL, 11, 12, 24, NA),
143
144 /* SWxS used to control SWx voltage on standby */
145/* VREG_INFO(SW1S, PCAP_REG_LOWPWR, NA, 12, NA, NA),
146 VREG_INFO(SW2S, PCAP_REG_LOWPWR, NA, 20, NA, NA), */
147};
148
d5ec9635
AL
149static int pcap_regulator_set_voltage_sel(struct regulator_dev *rdev,
150 unsigned selector)
39b1772a
DR
151{
152 struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)];
153 void *pcap = rdev_get_drvdata(rdev);
39b1772a
DR
154
155 /* the regulator doesn't support voltage switching */
c49af956 156 if (rdev->desc->n_voltages == 1)
39b1772a
DR
157 return -EINVAL;
158
d5ec9635 159 return ezx_pcap_set_bits(pcap, vreg->reg,
c49af956 160 (rdev->desc->n_voltages - 1) << vreg->index,
d5ec9635 161 selector << vreg->index);
39b1772a
DR
162}
163
3cbff37e 164static int pcap_regulator_get_voltage_sel(struct regulator_dev *rdev)
39b1772a
DR
165{
166 struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)];
167 void *pcap = rdev_get_drvdata(rdev);
168 u32 tmp;
39b1772a 169
c49af956 170 if (rdev->desc->n_voltages == 1)
3cbff37e 171 return 0;
39b1772a
DR
172
173 ezx_pcap_read(pcap, vreg->reg, &tmp);
c49af956 174 tmp = ((tmp >> vreg->index) & (rdev->desc->n_voltages - 1));
3cbff37e 175 return tmp;
39b1772a
DR
176}
177
178static int pcap_regulator_enable(struct regulator_dev *rdev)
179{
180 struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)];
181 void *pcap = rdev_get_drvdata(rdev);
182
183 if (vreg->en == NA)
184 return -EINVAL;
185
186 return ezx_pcap_set_bits(pcap, vreg->reg, 1 << vreg->en, 1 << vreg->en);
187}
188
189static int pcap_regulator_disable(struct regulator_dev *rdev)
190{
191 struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)];
192 void *pcap = rdev_get_drvdata(rdev);
193
194 if (vreg->en == NA)
195 return -EINVAL;
196
197 return ezx_pcap_set_bits(pcap, vreg->reg, 1 << vreg->en, 0);
198}
199
200static int pcap_regulator_is_enabled(struct regulator_dev *rdev)
201{
202 struct pcap_regulator *vreg = &vreg_table[rdev_get_id(rdev)];
203 void *pcap = rdev_get_drvdata(rdev);
204 u32 tmp;
205
206 if (vreg->en == NA)
207 return -EINVAL;
208
209 ezx_pcap_read(pcap, vreg->reg, &tmp);
210 return (tmp >> vreg->en) & 1;
211}
212
00804e6a 213static const struct regulator_ops pcap_regulator_ops = {
c49af956 214 .list_voltage = regulator_list_voltage_table,
d5ec9635 215 .set_voltage_sel = pcap_regulator_set_voltage_sel,
3cbff37e 216 .get_voltage_sel = pcap_regulator_get_voltage_sel,
39b1772a
DR
217 .enable = pcap_regulator_enable,
218 .disable = pcap_regulator_disable,
219 .is_enabled = pcap_regulator_is_enabled,
220};
221
222#define VREG(_vreg) \
223 [_vreg] = { \
224 .name = #_vreg, \
225 .id = _vreg, \
226 .n_voltages = ARRAY_SIZE(_vreg##_table), \
c49af956 227 .volt_table = _vreg##_table, \
39b1772a
DR
228 .ops = &pcap_regulator_ops, \
229 .type = REGULATOR_VOLTAGE, \
230 .owner = THIS_MODULE, \
231 }
232
0d2fbc51 233static const struct regulator_desc pcap_regulators[] = {
39b1772a
DR
234 VREG(V1), VREG(V2), VREG(V3), VREG(V4), VREG(V5), VREG(V6), VREG(V7),
235 VREG(V8), VREG(V9), VREG(V10), VREG(VAUX1), VREG(VAUX2), VREG(VAUX3),
236 VREG(VAUX4), VREG(VSIM), VREG(VSIM2), VREG(VVIB), VREG(SW1), VREG(SW2),
237};
238
a5023574 239static int pcap_regulator_probe(struct platform_device *pdev)
39b1772a
DR
240{
241 struct regulator_dev *rdev;
70fde5cb 242 void *pcap = dev_get_drvdata(pdev->dev.parent);
c172708d 243 struct regulator_config config = { };
39b1772a 244
c172708d 245 config.dev = &pdev->dev;
dff91d0b 246 config.init_data = dev_get_platdata(&pdev->dev);
c172708d
MB
247 config.driver_data = pcap;
248
15dc006a
JH
249 rdev = devm_regulator_register(&pdev->dev, &pcap_regulators[pdev->id],
250 &config);
39b1772a
DR
251 if (IS_ERR(rdev))
252 return PTR_ERR(rdev);
253
254 platform_set_drvdata(pdev, rdev);
255
256 return 0;
257}
258
39b1772a
DR
259static struct platform_driver pcap_regulator_driver = {
260 .driver = {
6a74857d 261 .name = "pcap-regulator",
39b1772a 262 },
6a74857d 263 .probe = pcap_regulator_probe,
39b1772a
DR
264};
265
266static int __init pcap_regulator_init(void)
267{
268 return platform_driver_register(&pcap_regulator_driver);
269}
270
271static void __exit pcap_regulator_exit(void)
272{
273 platform_driver_unregister(&pcap_regulator_driver);
274}
275
e397e7ed 276subsys_initcall(pcap_regulator_init);
39b1772a
DR
277module_exit(pcap_regulator_exit);
278
279MODULE_AUTHOR("Daniel Ribeiro <drwyrm@gmail.com>");
280MODULE_DESCRIPTION("PCAP2 Regulator Driver");
281MODULE_LICENSE("GPL");