summaryrefslogtreecommitdiff
path: root/drivers/regulator/stmp3xxx.c
blob: 137e6e641ea4acc7ce30e7561749cd85daa1dac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/*
 * Freescale STMP378X voltage regulators
 *
 * Embedded Alley Solutions, Inc <source@embeddedalley.com>
 *
 * Copyright 2008-2009 Freescale Semiconductor, Inc. All Rights Reserved.
 * Copyright 2008 Embedded Alley Solutions, Inc All Rights Reserved.
 */

/*
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */
#include <linux/device.h>
#include <linux/module.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <linux/regulator/machine.h>
#include <linux/regulator/driver.h>
#include <mach/power.h>
#include <mach/regulator.h>

static int stmp3xxx_set_voltage(struct regulator_dev *reg, int MiniV, int uv)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	if (stmp_reg->rdata->set_voltage)
		return stmp_reg->rdata->set_voltage(stmp_reg, uv);
	else
		return -ENOTSUPP;
}


static int stmp3xxx_get_voltage(struct regulator_dev *reg)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	if (stmp_reg->rdata->get_voltage)
		return stmp_reg->rdata->get_voltage(stmp_reg);
	else
		return -ENOTSUPP;
}

static int stmp3xxx_set_current(struct regulator_dev *reg, int min_uA, int uA)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	if (stmp_reg->rdata->set_current)
		return stmp_reg->rdata->set_current(stmp_reg, uA);
	else
		return -ENOTSUPP;
}

static int stmp3xxx_get_current(struct regulator_dev *reg)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	if (stmp_reg->rdata->get_current)
		return stmp_reg->rdata->get_current(stmp_reg);
	else
		return -ENOTSUPP;
}

static int stmp3xxx_enable(struct regulator_dev *reg)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	return stmp_reg->rdata->enable(stmp_reg);
}

static int stmp3xxx_disable(struct regulator_dev *reg)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	return stmp_reg->rdata->disable(stmp_reg);
}

static int stmp3xxx_is_enabled(struct regulator_dev *reg)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	return stmp_reg->rdata->is_enabled(stmp_reg);
}

static int stmp3xxx_set_mode(struct regulator_dev *reg, unsigned int mode)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	return stmp_reg->rdata->set_mode(stmp_reg, mode);
}

static unsigned int stmp3xxx_get_mode(struct regulator_dev *reg)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	return stmp_reg->rdata->get_mode(stmp_reg);
}

static unsigned int stmp3xxx_get_optimum_mode(struct regulator_dev *reg,
				int input_uV, int output_uV, int load_uA)
{
	struct stmp3xxx_regulator *stmp_reg = rdev_get_drvdata(reg);

	if (stmp_reg->rdata->get_optimum_mode)
		return stmp_reg->rdata->get_optimum_mode(stmp_reg, input_uV,
							 output_uV, load_uA);
	else
		return -ENOTSUPP;
}

static struct regulator_ops stmp3xxx_rops = {
	.set_voltage	= stmp3xxx_set_voltage,
	.get_voltage	= stmp3xxx_get_voltage,
	.set_current_limit	= stmp3xxx_set_current,
	.get_current_limit	= stmp3xxx_get_current,
	.enable		= stmp3xxx_enable,
	.disable	= stmp3xxx_disable,
	.is_enabled	= stmp3xxx_is_enabled,
	.set_mode	= stmp3xxx_set_mode,
	.get_mode	= stmp3xxx_get_mode,
	.get_optimum_mode = stmp3xxx_get_optimum_mode,
};

static struct regulator_desc stmp3xxx_reg_desc[] = {
	{
		.name = "vddd",
		.id = STMP3XXX_VDDD,
		.ops = &stmp3xxx_rops,
		.irq = 0,
		.type = REGULATOR_VOLTAGE,
		.owner = THIS_MODULE
	},
	{
		.name = "vdda",
		.id = STMP3XXX_VDDA,
		.ops = &stmp3xxx_rops,
		.irq = 0,
		.type = REGULATOR_VOLTAGE,
		.owner = THIS_MODULE
	},
	{
		.name = "vddio",
		.id = STMP3XXX_VDDIO,
		.ops = &stmp3xxx_rops,
		.irq = 0,
		.type = REGULATOR_VOLTAGE,
		.owner = THIS_MODULE
	},
	{
		.name = "vddd_bo",
		.id = STMP3XXX_VDDDBO,
		.ops = &stmp3xxx_rops,
		.irq = 0,
		.type = REGULATOR_VOLTAGE,
		.owner = THIS_MODULE
	},
	{
		.name = "overall_current",
		.id = STMP3XXX_OVERALL_CUR,
		.ops = &stmp3xxx_rops,
		.irq = 0,
		.type = REGULATOR_CURRENT,
		.owner = THIS_MODULE
	},
};

static int reg_callback(struct notifier_block *self,
			unsigned long event, void *data)
{
	unsigned long flags;
	struct stmp3xxx_regulator *sreg =
		container_of(self, struct stmp3xxx_regulator , nb);

	switch (event) {
	case STMP3XXX_REG5V_IS_USB:
		spin_lock_irqsave(&sreg->lock, flags);
		sreg->rdata->max_current = 500000;
		spin_unlock_irqrestore(&sreg->lock, flags);
		break;
	case STMP3XXX_REG5V_NOT_USB:
		spin_lock_irqsave(&sreg->lock, flags);
		sreg->rdata->max_current = 0x7fffffff;
		spin_unlock_irqrestore(&sreg->lock, flags);
		break;
	}

	return 0;
}

int stmp3xxx_regulator_probe(struct platform_device *pdev)
{
	struct regulator_desc *rdesc;
	struct regulator_dev *rdev;
	struct stmp3xxx_regulator *sreg;
	struct regulator_init_data *initdata;

	sreg = platform_get_drvdata(pdev);
	initdata = pdev->dev.platform_data;
	sreg->cur_current = 0;
	sreg->next_current = 0;
	sreg->cur_voltage = 0;

	init_waitqueue_head(&sreg->wait_q);
	spin_lock_init(&sreg->lock);

	if (pdev->id > STMP3XXX_OVERALL_CUR) {
		rdesc = kzalloc(sizeof(struct regulator_desc), GFP_KERNEL);
		memcpy(rdesc, &stmp3xxx_reg_desc[STMP3XXX_OVERALL_CUR],
			sizeof(struct regulator_desc));
		rdesc->name = kstrdup(sreg->rdata->name, GFP_KERNEL);
	} else
		rdesc = &stmp3xxx_reg_desc[pdev->id];

	pr_debug("probing regulator %s %s %d\n",
			sreg->rdata->name,
			rdesc->name,
			pdev->id);

	/* register regulator */
	rdev = regulator_register(rdesc, &pdev->dev,
				  initdata, sreg);

	if (IS_ERR(rdev)) {
		dev_err(&pdev->dev, "failed to register %s\n",
			rdesc->name);
		return PTR_ERR(rdev);
	}

	if (sreg->rdata->max_current) {
		struct regulator *regu;
		regu = regulator_get(NULL, sreg->rdata->name);
		sreg->nb.notifier_call = reg_callback;
		regulator_register_notifier(regu, &sreg->nb);
	}

	return 0;
}


int stmp3xxx_regulator_remove(struct platform_device *pdev)
{
	struct regulator_dev *rdev = platform_get_drvdata(pdev);

	regulator_unregister(rdev);

	return 0;

}

int stmp3xxx_register_regulator(
		struct stmp3xxx_regulator *reg_data, int reg,
			      struct regulator_init_data *initdata)
{
	struct platform_device *pdev;
	int ret;

	pdev = platform_device_alloc("stmp3xxx_reg", reg);
	if (!pdev)
		return -ENOMEM;

	pdev->dev.platform_data = initdata;

	platform_set_drvdata(pdev, reg_data);
	ret = platform_device_add(pdev);

	if (ret != 0) {
		pr_debug("Failed to register regulator %d: %d\n",
			reg, ret);
		platform_device_del(pdev);
	}
	pr_debug("register regulator %s, %d: %d\n",
			reg_data->rdata->name, reg, ret);

	return ret;
}
EXPORT_SYMBOL_GPL(stmp3xxx_register_regulator);

struct platform_driver stmp3xxx_reg = {
	.driver = {
		.name	= "stmp3xxx_reg",
	},
	.probe	= stmp3xxx_regulator_probe,
	.remove	= stmp3xxx_regulator_remove,
};

int stmp3xxx_regulator_init(void)
{
	return platform_driver_register(&stmp3xxx_reg);
}

void stmp3xxx_regulator_exit(void)
{
	platform_driver_unregister(&stmp3xxx_reg);
}

postcore_initcall(stmp3xxx_regulator_init);
module_exit(stmp3xxx_regulator_exit);