2 * devres.c -- Voltage/Current Regulator framework devres implementation.
4 * Copyright 2013 Linaro Ltd
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.
13 #include <linux/kernel.h>
14 #include <linux/err.h>
15 #include <linux/regmap.h>
16 #include <linux/regulator/consumer.h>
17 #include <linux/regulator/driver.h>
18 #include <linux/module.h>
28 static void devm_regulator_release(struct device
*dev
, void *res
)
30 regulator_put(*(struct regulator
**)res
);
33 static struct regulator
*_devm_regulator_get(struct device
*dev
, const char *id
,
36 struct regulator
**ptr
, *regulator
;
38 ptr
= devres_alloc(devm_regulator_release
, sizeof(*ptr
), GFP_KERNEL
);
40 return ERR_PTR(-ENOMEM
);
44 regulator
= regulator_get(dev
, id
);
47 regulator
= regulator_get_exclusive(dev
, id
);
50 regulator
= regulator_get_optional(dev
, id
);
53 regulator
= ERR_PTR(-EINVAL
);
56 if (!IS_ERR(regulator
)) {
67 * devm_regulator_get - Resource managed regulator_get()
68 * @dev: device for regulator "consumer"
69 * @id: Supply name or regulator ID.
71 * Managed regulator_get(). Regulators returned from this function are
72 * automatically regulator_put() on driver detach. See regulator_get() for more
75 struct regulator
*devm_regulator_get(struct device
*dev
, const char *id
)
77 return _devm_regulator_get(dev
, id
, NORMAL_GET
);
79 EXPORT_SYMBOL_GPL(devm_regulator_get
);
82 * devm_regulator_get_exclusive - Resource managed regulator_get_exclusive()
83 * @dev: device for regulator "consumer"
84 * @id: Supply name or regulator ID.
86 * Managed regulator_get_exclusive(). Regulators returned from this function
87 * are automatically regulator_put() on driver detach. See regulator_get() for
90 struct regulator
*devm_regulator_get_exclusive(struct device
*dev
,
93 return _devm_regulator_get(dev
, id
, EXCLUSIVE_GET
);
95 EXPORT_SYMBOL_GPL(devm_regulator_get_exclusive
);
98 * devm_regulator_get_optional - Resource managed regulator_get_optional()
99 * @dev: device for regulator "consumer"
100 * @id: Supply name or regulator ID.
102 * Managed regulator_get_optional(). Regulators returned from this
103 * function are automatically regulator_put() on driver detach. See
104 * regulator_get_optional() for more information.
106 struct regulator
*devm_regulator_get_optional(struct device
*dev
,
109 return _devm_regulator_get(dev
, id
, OPTIONAL_GET
);
111 EXPORT_SYMBOL_GPL(devm_regulator_get_optional
);
113 static int devm_regulator_match(struct device
*dev
, void *res
, void *data
)
115 struct regulator
**r
= res
;
124 * devm_regulator_put - Resource managed regulator_put()
125 * @regulator: regulator to free
127 * Deallocate a regulator allocated with devm_regulator_get(). Normally
128 * this function will not need to be called and the resource management
129 * code will ensure that the resource is freed.
131 void devm_regulator_put(struct regulator
*regulator
)
135 rc
= devres_release(regulator
->dev
, devm_regulator_release
,
136 devm_regulator_match
, regulator
);
140 EXPORT_SYMBOL_GPL(devm_regulator_put
);
143 * devm_regulator_bulk_get - managed get multiple regulator consumers
145 * @dev: Device to supply
146 * @num_consumers: Number of consumers to register
147 * @consumers: Configuration of consumers; clients are stored here.
149 * @return 0 on success, an errno on failure.
151 * This helper function allows drivers to get several regulator
152 * consumers in one operation with management, the regulators will
153 * automatically be freed when the device is unbound. If any of the
154 * regulators cannot be acquired then any regulators that were
155 * allocated will be freed before returning to the caller.
157 int devm_regulator_bulk_get(struct device
*dev
, int num_consumers
,
158 struct regulator_bulk_data
*consumers
)
163 for (i
= 0; i
< num_consumers
; i
++)
164 consumers
[i
].consumer
= NULL
;
166 for (i
= 0; i
< num_consumers
; i
++) {
167 consumers
[i
].consumer
= _devm_regulator_get(dev
,
169 consumers
[i
].optional
?
172 if (IS_ERR(consumers
[i
].consumer
)) {
173 ret
= PTR_ERR(consumers
[i
].consumer
);
174 dev_err(dev
, "Failed to get supply '%s': %d\n",
175 consumers
[i
].supply
, ret
);
176 consumers
[i
].consumer
= NULL
;
184 for (i
= 0; i
< num_consumers
&& consumers
[i
].consumer
; i
++)
185 devm_regulator_put(consumers
[i
].consumer
);
189 EXPORT_SYMBOL_GPL(devm_regulator_bulk_get
);
191 static void devm_rdev_release(struct device
*dev
, void *res
)
193 regulator_unregister(*(struct regulator_dev
**)res
);
197 * devm_regulator_register - Resource managed regulator_register()
198 * @regulator_desc: regulator to register
199 * @config: runtime configuration for regulator
201 * Called by regulator drivers to register a regulator. Returns a
202 * valid pointer to struct regulator_dev on success or an ERR_PTR() on
203 * error. The regulator will automatically be released when the device
206 struct regulator_dev
*devm_regulator_register(struct device
*dev
,
207 const struct regulator_desc
*regulator_desc
,
208 const struct regulator_config
*config
)
210 struct regulator_dev
**ptr
, *rdev
;
212 ptr
= devres_alloc(devm_rdev_release
, sizeof(*ptr
),
215 return ERR_PTR(-ENOMEM
);
217 rdev
= regulator_register(regulator_desc
, config
);
220 devres_add(dev
, ptr
);
227 EXPORT_SYMBOL_GPL(devm_regulator_register
);
229 static int devm_rdev_match(struct device
*dev
, void *res
, void *data
)
231 struct regulator_dev
**r
= res
;
240 * devm_regulator_unregister - Resource managed regulator_unregister()
241 * @regulator: regulator to free
243 * Unregister a regulator registered with devm_regulator_register().
244 * Normally this function will not need to be called and the resource
245 * management code will ensure that the resource is freed.
247 void devm_regulator_unregister(struct device
*dev
, struct regulator_dev
*rdev
)
251 rc
= devres_release(dev
, devm_rdev_release
, devm_rdev_match
, rdev
);
255 EXPORT_SYMBOL_GPL(devm_regulator_unregister
);
257 struct regulator_supply_alias_match
{
262 static int devm_regulator_match_supply_alias(struct device
*dev
, void *res
,
265 struct regulator_supply_alias_match
*match
= res
;
266 struct regulator_supply_alias_match
*target
= data
;
268 return match
->dev
== target
->dev
&& strcmp(match
->id
, target
->id
) == 0;
271 static void devm_regulator_destroy_supply_alias(struct device
*dev
, void *res
)
273 struct regulator_supply_alias_match
*match
= res
;
275 regulator_unregister_supply_alias(match
->dev
, match
->id
);
279 * devm_regulator_register_supply_alias - Resource managed
280 * regulator_register_supply_alias()
282 * @dev: device that will be given as the regulator "consumer"
283 * @id: Supply name or regulator ID
284 * @alias_dev: device that should be used to lookup the supply
285 * @alias_id: Supply name or regulator ID that should be used to lookup the
288 * The supply alias will automatically be unregistered when the source
291 int devm_regulator_register_supply_alias(struct device
*dev
, const char *id
,
292 struct device
*alias_dev
,
293 const char *alias_id
)
295 struct regulator_supply_alias_match
*match
;
298 match
= devres_alloc(devm_regulator_destroy_supply_alias
,
299 sizeof(struct regulator_supply_alias_match
),
307 ret
= regulator_register_supply_alias(dev
, id
, alias_dev
, alias_id
);
313 devres_add(dev
, match
);
317 EXPORT_SYMBOL_GPL(devm_regulator_register_supply_alias
);
320 * devm_regulator_unregister_supply_alias - Resource managed
321 * regulator_unregister_supply_alias()
323 * @dev: device that will be given as the regulator "consumer"
324 * @id: Supply name or regulator ID
326 * Unregister an alias registered with
327 * devm_regulator_register_supply_alias(). Normally this function
328 * will not need to be called and the resource management code
329 * will ensure that the resource is freed.
331 void devm_regulator_unregister_supply_alias(struct device
*dev
, const char *id
)
333 struct regulator_supply_alias_match match
;
339 rc
= devres_release(dev
, devm_regulator_destroy_supply_alias
,
340 devm_regulator_match_supply_alias
, &match
);
344 EXPORT_SYMBOL_GPL(devm_regulator_unregister_supply_alias
);
347 * devm_regulator_bulk_register_supply_alias - Managed register
350 * @dev: device that will be given as the regulator "consumer"
351 * @id: List of supply names or regulator IDs
352 * @alias_dev: device that should be used to lookup the supply
353 * @alias_id: List of supply names or regulator IDs that should be used to
355 * @num_id: Number of aliases to register
357 * @return 0 on success, an errno on failure.
359 * This helper function allows drivers to register several supply
360 * aliases in one operation, the aliases will be automatically
361 * unregisters when the source device is unbound. If any of the
362 * aliases cannot be registered any aliases that were registered
363 * will be removed before returning to the caller.
365 int devm_regulator_bulk_register_supply_alias(struct device
*dev
,
366 const char *const *id
,
367 struct device
*alias_dev
,
368 const char *const *alias_id
,
374 for (i
= 0; i
< num_id
; ++i
) {
375 ret
= devm_regulator_register_supply_alias(dev
, id
[i
],
386 "Failed to create supply alias %s,%s -> %s,%s\n",
387 id
[i
], dev_name(dev
), alias_id
[i
], dev_name(alias_dev
));
390 devm_regulator_unregister_supply_alias(dev
, id
[i
]);
394 EXPORT_SYMBOL_GPL(devm_regulator_bulk_register_supply_alias
);
397 * devm_regulator_bulk_unregister_supply_alias - Managed unregister
400 * @dev: device that will be given as the regulator "consumer"
401 * @id: List of supply names or regulator IDs
402 * @num_id: Number of aliases to unregister
404 * Unregister aliases registered with
405 * devm_regulator_bulk_register_supply_alias(). Normally this function
406 * will not need to be called and the resource management code
407 * will ensure that the resource is freed.
409 void devm_regulator_bulk_unregister_supply_alias(struct device
*dev
,
410 const char *const *id
,
415 for (i
= 0; i
< num_id
; ++i
)
416 devm_regulator_unregister_supply_alias(dev
, id
[i
]);
418 EXPORT_SYMBOL_GPL(devm_regulator_bulk_unregister_supply_alias
);
420 struct regulator_notifier_match
{
421 struct regulator
*regulator
;
422 struct notifier_block
*nb
;
425 static int devm_regulator_match_notifier(struct device
*dev
, void *res
,
428 struct regulator_notifier_match
*match
= res
;
429 struct regulator_notifier_match
*target
= data
;
431 return match
->regulator
== target
->regulator
&& match
->nb
== target
->nb
;
434 static void devm_regulator_destroy_notifier(struct device
*dev
, void *res
)
436 struct regulator_notifier_match
*match
= res
;
438 regulator_unregister_notifier(match
->regulator
, match
->nb
);
442 * devm_regulator_register_notifier - Resource managed
443 * regulator_register_notifier
445 * @regulator: regulator source
446 * @nb: notifier block
448 * The notifier will be registers under the consumer device and be
449 * automatically be unregistered when the source device is unbound.
451 int devm_regulator_register_notifier(struct regulator
*regulator
,
452 struct notifier_block
*nb
)
454 struct regulator_notifier_match
*match
;
457 match
= devres_alloc(devm_regulator_destroy_notifier
,
458 sizeof(struct regulator_notifier_match
),
463 match
->regulator
= regulator
;
466 ret
= regulator_register_notifier(regulator
, nb
);
472 devres_add(regulator
->dev
, match
);
476 EXPORT_SYMBOL_GPL(devm_regulator_register_notifier
);
479 * devm_regulator_unregister_notifier - Resource managed
480 * regulator_unregister_notifier()
482 * @regulator: regulator source
483 * @nb: notifier block
485 * Unregister a notifier registered with devm_regulator_register_notifier().
486 * Normally this function will not need to be called and the resource
487 * management code will ensure that the resource is freed.
489 void devm_regulator_unregister_notifier(struct regulator
*regulator
,
490 struct notifier_block
*nb
)
492 struct regulator_notifier_match match
;
495 match
.regulator
= regulator
;
498 rc
= devres_release(regulator
->dev
, devm_regulator_destroy_notifier
,
499 devm_regulator_match_notifier
, &match
);
503 EXPORT_SYMBOL_GPL(devm_regulator_unregister_notifier
);