Blame view

drivers/regulator/wm831x-isink.c 6.26 KB
d4d6b722e   Mark Brown   regulator: Add WM...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * wm831x-isink.c  --  Current sink driver for the WM831x series
   *
   * Copyright 2009 Wolfson Microelectronics PLC.
   *
   * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
   *
   *  This program is free software; you can redistribute  it and/or modify it
   *  under  the terms of  the GNU General  Public License as published by the
   *  Free Software Foundation;  either version 2 of the  License, or (at your
   *  option) any later version.
   */
  
  #include <linux/module.h>
  #include <linux/moduleparam.h>
  #include <linux/init.h>
  #include <linux/bitops.h>
  #include <linux/err.h>
  #include <linux/i2c.h>
  #include <linux/platform_device.h>
  #include <linux/regulator/driver.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
22
  #include <linux/slab.h>
d4d6b722e   Mark Brown   regulator: Add WM...
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
  
  #include <linux/mfd/wm831x/core.h>
  #include <linux/mfd/wm831x/regulator.h>
  #include <linux/mfd/wm831x/pdata.h>
  
  #define WM831X_ISINK_MAX_NAME 7
  
  struct wm831x_isink {
  	char name[WM831X_ISINK_MAX_NAME];
  	struct regulator_desc desc;
  	int reg;
  	struct wm831x *wm831x;
  	struct regulator_dev *regulator;
  };
  
  static int wm831x_isink_enable(struct regulator_dev *rdev)
  {
  	struct wm831x_isink *isink = rdev_get_drvdata(rdev);
  	struct wm831x *wm831x = isink->wm831x;
  	int ret;
  
  	/* We have a two stage enable: first start the ISINK... */
  	ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_ENA,
  			      WM831X_CS1_ENA);
  	if (ret != 0)
  		return ret;
  
  	/* ...then enable drive */
  	ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_DRIVE,
  			      WM831X_CS1_DRIVE);
  	if (ret != 0)
  		wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_ENA, 0);
  
  	return ret;
  
  }
  
  static int wm831x_isink_disable(struct regulator_dev *rdev)
  {
  	struct wm831x_isink *isink = rdev_get_drvdata(rdev);
  	struct wm831x *wm831x = isink->wm831x;
  	int ret;
  
  	ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_DRIVE, 0);
  	if (ret < 0)
  		return ret;
  
  	ret = wm831x_set_bits(wm831x, isink->reg, WM831X_CS1_ENA, 0);
  	if (ret < 0)
  		return ret;
  
  	return ret;
  
  }
  
  static int wm831x_isink_is_enabled(struct regulator_dev *rdev)
  {
  	struct wm831x_isink *isink = rdev_get_drvdata(rdev);
  	struct wm831x *wm831x = isink->wm831x;
  	int ret;
  
  	ret = wm831x_reg_read(wm831x, isink->reg);
  	if (ret < 0)
  		return ret;
  
  	if ((ret & (WM831X_CS1_ENA | WM831X_CS1_DRIVE)) ==
  	    (WM831X_CS1_ENA | WM831X_CS1_DRIVE))
  		return 1;
  	else
  		return 0;
  }
  
  static int wm831x_isink_set_current(struct regulator_dev *rdev,
  				    int min_uA, int max_uA)
  {
  	struct wm831x_isink *isink = rdev_get_drvdata(rdev);
  	struct wm831x *wm831x = isink->wm831x;
  	int ret, i;
  
  	for (i = 0; i < ARRAY_SIZE(wm831x_isinkv_values); i++) {
  		int val = wm831x_isinkv_values[i];
  		if (min_uA >= val && val <= max_uA) {
  			ret = wm831x_set_bits(wm831x, isink->reg,
  					      WM831X_CS1_ISEL_MASK, i);
  			return ret;
  		}
  	}
  
  	return -EINVAL;
  }
  
  static int wm831x_isink_get_current(struct regulator_dev *rdev)
  {
  	struct wm831x_isink *isink = rdev_get_drvdata(rdev);
  	struct wm831x *wm831x = isink->wm831x;
  	int ret;
  
  	ret = wm831x_reg_read(wm831x, isink->reg);
  	if (ret < 0)
  		return ret;
  
  	ret &= WM831X_CS1_ISEL_MASK;
  	if (ret > WM831X_ISINK_MAX_ISEL)
  		ret = WM831X_ISINK_MAX_ISEL;
  
  	return wm831x_isinkv_values[ret];
  }
  
  static struct regulator_ops wm831x_isink_ops = {
  	.is_enabled = wm831x_isink_is_enabled,
  	.enable = wm831x_isink_enable,
  	.disable = wm831x_isink_disable,
  	.set_current_limit = wm831x_isink_set_current,
  	.get_current_limit = wm831x_isink_get_current,
  };
  
  static irqreturn_t wm831x_isink_irq(int irq, void *data)
  {
  	struct wm831x_isink *isink = data;
  
  	regulator_notifier_call_chain(isink->regulator,
  				      REGULATOR_EVENT_OVER_CURRENT,
  				      NULL);
  
  	return IRQ_HANDLED;
  }
  
  
  static __devinit int wm831x_isink_probe(struct platform_device *pdev)
  {
  	struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent);
  	struct wm831x_pdata *pdata = wm831x->dev->platform_data;
  	struct wm831x_isink *isink;
  	int id = pdev->id % ARRAY_SIZE(pdata->isink);
  	struct resource *res;
  	int ret, irq;
  
  	dev_dbg(&pdev->dev, "Probing ISINK%d
  ", id + 1);
  
  	if (pdata == NULL || pdata->isink[id] == NULL)
  		return -ENODEV;
fded2f4fa   Mark Brown   regulator: Conver...
165
166
  	isink = devm_kzalloc(&pdev->dev, sizeof(struct wm831x_isink),
  			     GFP_KERNEL);
d4d6b722e   Mark Brown   regulator: Add WM...
167
168
169
170
171
  	if (isink == NULL) {
  		dev_err(&pdev->dev, "Unable to allocate private data
  ");
  		return -ENOMEM;
  	}
e8092da92   Mark Brown   regulator: Initia...
172
  	isink->wm831x = wm831x;
d4d6b722e   Mark Brown   regulator: Add WM...
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
  	res = platform_get_resource(pdev, IORESOURCE_IO, 0);
  	if (res == NULL) {
  		dev_err(&pdev->dev, "No I/O resource
  ");
  		ret = -EINVAL;
  		goto err;
  	}
  	isink->reg = res->start;
  
  	/* For current parts this is correct; probably need to revisit
  	 * in future.
  	 */
  	snprintf(isink->name, sizeof(isink->name), "ISINK%d", id + 1);
  	isink->desc.name = isink->name;
  	isink->desc.id = id;
  	isink->desc.ops = &wm831x_isink_ops;
  	isink->desc.type = REGULATOR_CURRENT;
  	isink->desc.owner = THIS_MODULE;
  
  	isink->regulator = regulator_register(&isink->desc, &pdev->dev,
2c043bcbf   Rajendra Nayak   regulator: pass a...
193
  					     pdata->isink[id], isink, NULL);
d4d6b722e   Mark Brown   regulator: Add WM...
194
195
196
197
198
199
200
201
202
  	if (IS_ERR(isink->regulator)) {
  		ret = PTR_ERR(isink->regulator);
  		dev_err(wm831x->dev, "Failed to register ISINK%d: %d
  ",
  			id + 1, ret);
  		goto err;
  	}
  
  	irq = platform_get_irq(pdev, 0);
dfda9c27b   Mark Brown   regulator: Conver...
203
204
  	ret = request_threaded_irq(irq, NULL, wm831x_isink_irq,
  				   IRQF_TRIGGER_RISING, isink->name, isink);
d4d6b722e   Mark Brown   regulator: Add WM...
205
206
207
208
209
210
211
212
213
214
215
216
217
218
  	if (ret != 0) {
  		dev_err(&pdev->dev, "Failed to request ISINK IRQ %d: %d
  ",
  			irq, ret);
  		goto err_regulator;
  	}
  
  	platform_set_drvdata(pdev, isink);
  
  	return 0;
  
  err_regulator:
  	regulator_unregister(isink->regulator);
  err:
d4d6b722e   Mark Brown   regulator: Add WM...
219
220
221
222
223
224
  	return ret;
  }
  
  static __devexit int wm831x_isink_remove(struct platform_device *pdev)
  {
  	struct wm831x_isink *isink = platform_get_drvdata(pdev);
d4d6b722e   Mark Brown   regulator: Add WM...
225

eb66d565e   Dmitry Torokhov   Regulators: wm831...
226
  	platform_set_drvdata(pdev, NULL);
dfda9c27b   Mark Brown   regulator: Conver...
227
  	free_irq(platform_get_irq(pdev, 0), isink);
d4d6b722e   Mark Brown   regulator: Add WM...
228
229
  
  	regulator_unregister(isink->regulator);
d4d6b722e   Mark Brown   regulator: Add WM...
230
231
232
233
234
235
236
237
238
  
  	return 0;
  }
  
  static struct platform_driver wm831x_isink_driver = {
  	.probe = wm831x_isink_probe,
  	.remove = __devexit_p(wm831x_isink_remove),
  	.driver		= {
  		.name	= "wm831x-isink",
eb66d565e   Dmitry Torokhov   Regulators: wm831...
239
  		.owner	= THIS_MODULE,
d4d6b722e   Mark Brown   regulator: Add WM...
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
  	},
  };
  
  static int __init wm831x_isink_init(void)
  {
  	int ret;
  	ret = platform_driver_register(&wm831x_isink_driver);
  	if (ret != 0)
  		pr_err("Failed to register WM831x ISINK driver: %d
  ", ret);
  
  	return ret;
  }
  subsys_initcall(wm831x_isink_init);
  
  static void __exit wm831x_isink_exit(void)
  {
  	platform_driver_unregister(&wm831x_isink_driver);
  }
  module_exit(wm831x_isink_exit);
  
  /* Module information */
  MODULE_AUTHOR("Mark Brown");
  MODULE_DESCRIPTION("WM831x current sink driver");
  MODULE_LICENSE("GPL");
  MODULE_ALIAS("platform:wm831x-isink");