regulator: IRQ based event/error notification helpers
[linux-block.git] / drivers / regulator / of_regulator.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
8f446e6f
RN
2/*
3 * OF helpers for regulator framework
4 *
5 * Copyright (C) 2011 Texas Instruments, Inc.
6 * Rajendra Nayak <rnayak@ti.com>
8f446e6f
RN
7 */
8
e69af5e9 9#include <linux/module.h>
8f446e6f
RN
10#include <linux/slab.h>
11#include <linux/of.h>
12#include <linux/regulator/machine.h>
a0c7b164 13#include <linux/regulator/driver.h>
1c8fa58f 14#include <linux/regulator/of_regulator.h>
8f446e6f 15
a0c7b164
MB
16#include "internal.h"
17
f32fa89c 18static const char *const regulator_states[PM_SUSPEND_MAX + 1] = {
f2b40769 19 [PM_SUSPEND_STANDBY] = "regulator-state-standby",
40e20d68
CC
20 [PM_SUSPEND_MEM] = "regulator-state-mem",
21 [PM_SUSPEND_MAX] = "regulator-state-disk",
22};
23
d8ca7d18
DO
24static int of_get_regulation_constraints(struct device *dev,
25 struct device_node *np,
5e5e3a42
JMC
26 struct regulator_init_data **init_data,
27 const struct regulator_desc *desc)
8f446e6f 28{
8f446e6f 29 struct regulation_constraints *constraints = &(*init_data)->constraints;
40e20d68
CC
30 struct regulator_state *suspend_state;
31 struct device_node *suspend_np;
02f37039 32 unsigned int mode;
54557ad9 33 int ret, i, len;
d8ca7d18 34 int n_phandles;
00c877c6 35 u32 pval;
8f446e6f 36
d8ca7d18
DO
37 n_phandles = of_count_phandle_with_args(np, "regulator-coupled-with",
38 NULL);
39 n_phandles = max(n_phandles, 0);
40
8f446e6f
RN
41 constraints->name = of_get_property(np, "regulator-name", NULL);
42
a34785f1
LD
43 if (!of_property_read_u32(np, "regulator-min-microvolt", &pval))
44 constraints->min_uV = pval;
45
46 if (!of_property_read_u32(np, "regulator-max-microvolt", &pval))
47 constraints->max_uV = pval;
8f446e6f
RN
48
49 /* Voltage change possible? */
45fa2038 50 if (constraints->min_uV != constraints->max_uV)
8f446e6f 51 constraints->valid_ops_mask |= REGULATOR_CHANGE_VOLTAGE;
45fa2038
MB
52
53 /* Do we have a voltage range, if so try to apply it? */
54 if (constraints->min_uV && constraints->max_uV)
ab62aa93 55 constraints->apply_uV = true;
8f446e6f 56
1e050eab
SS
57 if (!of_property_read_u32(np, "regulator-microvolt-offset", &pval))
58 constraints->uV_offset = pval;
59 if (!of_property_read_u32(np, "regulator-min-microamp", &pval))
60 constraints->min_uA = pval;
61 if (!of_property_read_u32(np, "regulator-max-microamp", &pval))
62 constraints->max_uA = pval;
8f446e6f 63
36e4f839
SB
64 if (!of_property_read_u32(np, "regulator-input-current-limit-microamp",
65 &pval))
66 constraints->ilim_uA = pval;
67
8f446e6f
RN
68 /* Current change possible? */
69 if (constraints->min_uA != constraints->max_uA)
70 constraints->valid_ops_mask |= REGULATOR_CHANGE_CURRENT;
71
1e050eab
SS
72 constraints->boot_on = of_property_read_bool(np, "regulator-boot-on");
73 constraints->always_on = of_property_read_bool(np, "regulator-always-on");
74 if (!constraints->always_on) /* status change should be possible. */
8f446e6f 75 constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;
6f0b2c69 76
23c779b9
SB
77 constraints->pull_down = of_property_read_bool(np, "regulator-pull-down");
78
93134c7b
KVA
79 if (of_property_read_bool(np, "regulator-allow-bypass"))
80 constraints->valid_ops_mask |= REGULATOR_CHANGE_BYPASS;
81
b263d203
BA
82 if (of_property_read_bool(np, "regulator-allow-set-load"))
83 constraints->valid_ops_mask |= REGULATOR_CHANGE_DRMS;
84
1e050eab
SS
85 ret = of_property_read_u32(np, "regulator-ramp-delay", &pval);
86 if (!ret) {
87 if (pval)
88 constraints->ramp_delay = pval;
1653ccf4
YSB
89 else
90 constraints->ramp_disable = true;
91 }
00c877c6 92
d6c1dc3f
LD
93 ret = of_property_read_u32(np, "regulator-settling-time-us", &pval);
94 if (!ret)
95 constraints->settling_time = pval;
96
3ffad468
MK
97 ret = of_property_read_u32(np, "regulator-settling-time-up-us", &pval);
98 if (!ret)
99 constraints->settling_time_up = pval;
100 if (constraints->settling_time_up && constraints->settling_time) {
0c9721a5
RH
101 pr_warn("%pOFn: ambiguous configuration for settling time, ignoring 'regulator-settling-time-up-us'\n",
102 np);
3ffad468
MK
103 constraints->settling_time_up = 0;
104 }
105
106 ret = of_property_read_u32(np, "regulator-settling-time-down-us",
107 &pval);
108 if (!ret)
109 constraints->settling_time_down = pval;
110 if (constraints->settling_time_down && constraints->settling_time) {
0c9721a5
RH
111 pr_warn("%pOFn: ambiguous configuration for settling time, ignoring 'regulator-settling-time-down-us'\n",
112 np);
3ffad468
MK
113 constraints->settling_time_down = 0;
114 }
115
00c877c6
LD
116 ret = of_property_read_u32(np, "regulator-enable-ramp-delay", &pval);
117 if (!ret)
118 constraints->enable_time = pval;
40e20d68 119
57f66b78
SB
120 constraints->soft_start = of_property_read_bool(np,
121 "regulator-soft-start");
670666b9
LD
122 ret = of_property_read_u32(np, "regulator-active-discharge", &pval);
123 if (!ret) {
124 constraints->active_discharge =
125 (pval) ? REGULATOR_ACTIVE_DISCHARGE_ENABLE :
126 REGULATOR_ACTIVE_DISCHARGE_DISABLE;
127 }
57f66b78 128
5e5e3a42
JMC
129 if (!of_property_read_u32(np, "regulator-initial-mode", &pval)) {
130 if (desc && desc->of_map_mode) {
02f37039
DA
131 mode = desc->of_map_mode(pval);
132 if (mode == REGULATOR_MODE_INVALID)
0c9721a5 133 pr_err("%pOFn: invalid mode %u\n", np, pval);
5e5e3a42 134 else
02f37039 135 constraints->initial_mode = mode;
5e5e3a42 136 } else {
0c9721a5
RH
137 pr_warn("%pOFn: mapping for mode %d not defined\n",
138 np, pval);
5e5e3a42
JMC
139 }
140 }
141
54557ad9
DC
142 len = of_property_count_elems_of_size(np, "regulator-allowed-modes",
143 sizeof(u32));
144 if (len > 0) {
145 if (desc && desc->of_map_mode) {
146 for (i = 0; i < len; i++) {
147 ret = of_property_read_u32_index(np,
148 "regulator-allowed-modes", i, &pval);
149 if (ret) {
0c9721a5
RH
150 pr_err("%pOFn: couldn't read allowed modes index %d, ret=%d\n",
151 np, i, ret);
54557ad9
DC
152 break;
153 }
154 mode = desc->of_map_mode(pval);
155 if (mode == REGULATOR_MODE_INVALID)
0c9721a5
RH
156 pr_err("%pOFn: invalid regulator-allowed-modes element %u\n",
157 np, pval);
54557ad9
DC
158 else
159 constraints->valid_modes_mask |= mode;
160 }
161 if (constraints->valid_modes_mask)
162 constraints->valid_ops_mask
163 |= REGULATOR_CHANGE_MODE;
164 } else {
0c9721a5 165 pr_warn("%pOFn: mode mapping not defined\n", np);
54557ad9
DC
166 }
167 }
168
22a10bca
SB
169 if (!of_property_read_u32(np, "regulator-system-load", &pval))
170 constraints->system_load = pval;
171
d8ca7d18
DO
172 if (n_phandles) {
173 constraints->max_spread = devm_kzalloc(dev,
174 sizeof(*constraints->max_spread) * n_phandles,
175 GFP_KERNEL);
176
177 if (!constraints->max_spread)
178 return -ENOMEM;
179
180 of_property_read_u32_array(np, "regulator-coupled-max-spread",
181 constraints->max_spread, n_phandles);
182 }
a085a31a 183
85254bcf
DO
184 if (!of_property_read_u32(np, "regulator-max-step-microvolt",
185 &pval))
186 constraints->max_uV_step = pval;
187
3a003bae
SB
188 constraints->over_current_protection = of_property_read_bool(np,
189 "regulator-over-current-protection");
190
40e20d68
CC
191 for (i = 0; i < ARRAY_SIZE(regulator_states); i++) {
192 switch (i) {
193 case PM_SUSPEND_MEM:
194 suspend_state = &constraints->state_mem;
195 break;
196 case PM_SUSPEND_MAX:
197 suspend_state = &constraints->state_disk;
198 break;
f2b40769
AS
199 case PM_SUSPEND_STANDBY:
200 suspend_state = &constraints->state_standby;
201 break;
40e20d68 202 case PM_SUSPEND_ON:
690cbb90 203 case PM_SUSPEND_TO_IDLE:
40e20d68
CC
204 default:
205 continue;
7cf225b9 206 }
40e20d68
CC
207
208 suspend_np = of_get_child_by_name(np, regulator_states[i]);
209 if (!suspend_np || !suspend_state)
210 continue;
211
5e5e3a42
JMC
212 if (!of_property_read_u32(suspend_np, "regulator-mode",
213 &pval)) {
214 if (desc && desc->of_map_mode) {
02f37039
DA
215 mode = desc->of_map_mode(pval);
216 if (mode == REGULATOR_MODE_INVALID)
0c9721a5
RH
217 pr_err("%pOFn: invalid mode %u\n",
218 np, pval);
5e5e3a42 219 else
02f37039 220 suspend_state->mode = mode;
5e5e3a42 221 } else {
0c9721a5
RH
222 pr_warn("%pOFn: mapping for mode %d not defined\n",
223 np, pval);
5e5e3a42
JMC
224 }
225 }
226
40e20d68
CC
227 if (of_property_read_bool(suspend_np,
228 "regulator-on-in-suspend"))
72069f99 229 suspend_state->enabled = ENABLE_IN_SUSPEND;
40e20d68
CC
230 else if (of_property_read_bool(suspend_np,
231 "regulator-off-in-suspend"))
72069f99 232 suspend_state->enabled = DISABLE_IN_SUSPEND;
40e20d68 233
131cb121
MF
234 if (!of_property_read_u32(suspend_np,
235 "regulator-suspend-min-microvolt", &pval))
f7efad10
CZ
236 suspend_state->min_uV = pval;
237
131cb121
MF
238 if (!of_property_read_u32(suspend_np,
239 "regulator-suspend-max-microvolt", &pval))
f7efad10 240 suspend_state->max_uV = pval;
40e20d68 241
8cbcaea8
DA
242 if (!of_property_read_u32(suspend_np,
243 "regulator-suspend-microvolt", &pval))
244 suspend_state->uV = pval;
f7efad10
CZ
245 else /* otherwise use min_uV as default suspend voltage */
246 suspend_state->uV = suspend_state->min_uV;
247
248 if (of_property_read_bool(suspend_np,
249 "regulator-changeable-in-suspend"))
250 suspend_state->changeable = true;
8cbcaea8 251
a0f78bc8
K
252 if (i == PM_SUSPEND_MEM)
253 constraints->initial_state = PM_SUSPEND_MEM;
254
4eafec83 255 of_node_put(suspend_np);
40e20d68
CC
256 suspend_state = NULL;
257 suspend_np = NULL;
258 }
d8ca7d18
DO
259
260 return 0;
8f446e6f
RN
261}
262
263/**
264 * of_get_regulator_init_data - extract regulator_init_data structure info
265 * @dev: device requesting for regulator_init_data
072e78b1
JMC
266 * @node: regulator device node
267 * @desc: regulator description
8f446e6f
RN
268 *
269 * Populates regulator_init_data structure by extracting data from device
48f1b4ef 270 * tree node, returns a pointer to the populated structure or NULL if memory
8f446e6f
RN
271 * alloc fails.
272 */
d9a861cc 273struct regulator_init_data *of_get_regulator_init_data(struct device *dev,
072e78b1
JMC
274 struct device_node *node,
275 const struct regulator_desc *desc)
8f446e6f
RN
276{
277 struct regulator_init_data *init_data;
278
d9a861cc 279 if (!node)
8f446e6f
RN
280 return NULL;
281
282 init_data = devm_kzalloc(dev, sizeof(*init_data), GFP_KERNEL);
283 if (!init_data)
284 return NULL; /* Out of memory? */
285
d8ca7d18
DO
286 if (of_get_regulation_constraints(dev, node, &init_data, desc))
287 return NULL;
288
8f446e6f
RN
289 return init_data;
290}
e69af5e9 291EXPORT_SYMBOL_GPL(of_get_regulator_init_data);
1c8fa58f 292
13b3fde8
CK
293struct devm_of_regulator_matches {
294 struct of_regulator_match *matches;
295 unsigned int num_matches;
296};
297
298static void devm_of_regulator_put_matches(struct device *dev, void *res)
299{
300 struct devm_of_regulator_matches *devm_matches = res;
301 int i;
302
303 for (i = 0; i < devm_matches->num_matches; i++)
304 of_node_put(devm_matches->matches[i].of_node);
305}
306
1c8fa58f 307/**
13511def 308 * of_regulator_match - extract multiple regulator init data from device tree.
1c8fa58f
TR
309 * @dev: device requesting the data
310 * @node: parent device node of the regulators
311 * @matches: match table for the regulators
312 * @num_matches: number of entries in match table
313 *
13511def
SW
314 * This function uses a match table specified by the regulator driver to
315 * parse regulator init data from the device tree. @node is expected to
316 * contain a set of child nodes, each providing the init data for one
317 * regulator. The data parsed from a child node will be matched to a regulator
318 * based on either the deprecated property regulator-compatible if present,
319 * or otherwise the child node's name. Note that the match table is modified
bd0dda74
CK
320 * in place and an additional of_node reference is taken for each matched
321 * regulator.
1c8fa58f
TR
322 *
323 * Returns the number of matches found or a negative error code on failure.
324 */
325int of_regulator_match(struct device *dev, struct device_node *node,
326 struct of_regulator_match *matches,
327 unsigned int num_matches)
328{
329 unsigned int count = 0;
330 unsigned int i;
13511def 331 const char *name;
5260cd2b 332 struct device_node *child;
13b3fde8 333 struct devm_of_regulator_matches *devm_matches;
1c8fa58f
TR
334
335 if (!dev || !node)
336 return -EINVAL;
337
13b3fde8
CK
338 devm_matches = devres_alloc(devm_of_regulator_put_matches,
339 sizeof(struct devm_of_regulator_matches),
340 GFP_KERNEL);
341 if (!devm_matches)
342 return -ENOMEM;
343
344 devm_matches->matches = matches;
345 devm_matches->num_matches = num_matches;
346
347 devres_add(dev, devm_matches);
348
a2f95c36
SW
349 for (i = 0; i < num_matches; i++) {
350 struct of_regulator_match *match = &matches[i];
351 match->init_data = NULL;
352 match->of_node = NULL;
353 }
354
5260cd2b 355 for_each_child_of_node(node, child) {
13511def 356 name = of_get_property(child,
5260cd2b 357 "regulator-compatible", NULL);
13511def
SW
358 if (!name)
359 name = child->name;
5260cd2b
LD
360 for (i = 0; i < num_matches; i++) {
361 struct of_regulator_match *match = &matches[i];
362 if (match->of_node)
363 continue;
364
13511def 365 if (strcmp(match->name, name))
5260cd2b
LD
366 continue;
367
368 match->init_data =
75d6b2fa
JMC
369 of_get_regulator_init_data(dev, child,
370 match->desc);
5260cd2b
LD
371 if (!match->init_data) {
372 dev_err(dev,
0c9721a5
RH
373 "failed to parse DT for regulator %pOFn\n",
374 child);
30966861 375 of_node_put(child);
5260cd2b
LD
376 return -EINVAL;
377 }
bd0dda74 378 match->of_node = of_node_get(child);
5260cd2b
LD
379 count++;
380 break;
1c8fa58f 381 }
1c8fa58f
TR
382 }
383
384 return count;
385}
386EXPORT_SYMBOL_GPL(of_regulator_match);
a0c7b164 387
7a67eb1d
Y
388static struct
389device_node *regulator_of_get_init_node(struct device *dev,
390 const struct regulator_desc *desc)
a0c7b164
MB
391{
392 struct device_node *search, *child;
a0c7b164
MB
393 const char *name;
394
395 if (!dev->of_node || !desc->of_match)
396 return NULL;
397
eba9473f 398 if (desc->regulators_node) {
a0c7b164
MB
399 search = of_get_child_by_name(dev->of_node,
400 desc->regulators_node);
eba9473f 401 } else {
423a1164 402 search = of_node_get(dev->of_node);
a0c7b164 403
eba9473f
CK
404 if (!strcmp(desc->of_match, search->name))
405 return search;
406 }
407
a0c7b164 408 if (!search) {
7de79a1d
MB
409 dev_dbg(dev, "Failed to find regulator container node '%s'\n",
410 desc->regulators_node);
a0c7b164
MB
411 return NULL;
412 }
413
130daa3f 414 for_each_available_child_of_node(search, child) {
a0c7b164 415 name = of_get_property(child, "regulator-compatible", NULL);
e7095c35
CM
416 if (!name) {
417 if (!desc->of_match_full_name)
418 name = child->name;
419 else
420 name = child->full_name;
421 }
a0c7b164 422
811ba489
ND
423 if (!strcmp(desc->of_match, name)) {
424 of_node_put(search);
8a065ce9
CJ
425 /*
426 * 'of_node_get(child)' is already performed by the
427 * for_each loop.
428 */
429 return child;
811ba489 430 }
925c85e2 431 }
a0c7b164 432
925c85e2 433 of_node_put(search);
a0c7b164 434
925c85e2
CK
435 return NULL;
436}
bfa21a0d 437
925c85e2
CK
438struct regulator_init_data *regulator_of_get_init_data(struct device *dev,
439 const struct regulator_desc *desc,
440 struct regulator_config *config,
441 struct device_node **node)
442{
443 struct device_node *child;
444 struct regulator_init_data *init_data = NULL;
445
446 child = regulator_of_get_init_node(dev, desc);
447 if (!child)
448 return NULL;
449
450 init_data = of_get_regulator_init_data(dev, child, desc);
451 if (!init_data) {
452 dev_err(dev, "failed to parse DT for regulator %pOFn\n", child);
453 goto error;
a0c7b164
MB
454 }
455
f8970d34
MF
456 if (desc->of_parse_cb) {
457 int ret;
458
459 ret = desc->of_parse_cb(child, desc, config);
460 if (ret) {
461 if (ret == -EPROBE_DEFER) {
462 of_node_put(child);
463 return ERR_PTR(-EPROBE_DEFER);
464 }
465 dev_err(dev,
466 "driver callback failed to parse DT for regulator %pOFn\n",
467 child);
468 goto error;
469 }
925c85e2
CK
470 }
471
472 *node = child;
a0c7b164
MB
473
474 return init_data;
925c85e2
CK
475
476error:
477 of_node_put(child);
478
479 return NULL;
a0c7b164 480}
148096af 481
148096af
MP
482struct regulator_dev *of_find_regulator_by_node(struct device_node *np)
483{
484 struct device *dev;
485
cfba5de9 486 dev = class_find_device_by_of_node(&regulator_class, np);
148096af
MP
487
488 return dev ? dev_to_rdev(dev) : NULL;
489}
a085a31a
MP
490
491/*
492 * Returns number of regulators coupled with rdev.
493 */
494int of_get_n_coupled(struct regulator_dev *rdev)
495{
496 struct device_node *node = rdev->dev.of_node;
497 int n_phandles;
498
499 n_phandles = of_count_phandle_with_args(node,
500 "regulator-coupled-with",
501 NULL);
502
503 return (n_phandles > 0) ? n_phandles : 0;
504}
505
506/* Looks for "to_find" device_node in src's "regulator-coupled-with" property */
507static bool of_coupling_find_node(struct device_node *src,
d8ca7d18
DO
508 struct device_node *to_find,
509 int *index)
a085a31a
MP
510{
511 int n_phandles, i;
512 bool found = false;
513
514 n_phandles = of_count_phandle_with_args(src,
515 "regulator-coupled-with",
516 NULL);
517
518 for (i = 0; i < n_phandles; i++) {
519 struct device_node *tmp = of_parse_phandle(src,
520 "regulator-coupled-with", i);
521
522 if (!tmp)
523 break;
524
525 /* found */
526 if (tmp == to_find)
527 found = true;
528
529 of_node_put(tmp);
530
d8ca7d18
DO
531 if (found) {
532 *index = i;
a085a31a 533 break;
d8ca7d18 534 }
a085a31a
MP
535 }
536
537 return found;
538}
539
540/**
541 * of_check_coupling_data - Parse rdev's coupling properties and check data
542 * consistency
45e8446e 543 * @rdev: pointer to regulator_dev whose data is checked
a085a31a
MP
544 *
545 * Function checks if all the following conditions are met:
546 * - rdev's max_spread is greater than 0
547 * - all coupled regulators have the same max_spread
548 * - all coupled regulators have the same number of regulator_dev phandles
549 * - all regulators are linked to each other
550 *
551 * Returns true if all conditions are met.
552 */
553bool of_check_coupling_data(struct regulator_dev *rdev)
554{
a085a31a
MP
555 struct device_node *node = rdev->dev.of_node;
556 int n_phandles = of_get_n_coupled(rdev);
557 struct device_node *c_node;
d8ca7d18 558 int index;
a085a31a
MP
559 int i;
560 bool ret = true;
561
a085a31a
MP
562 /* iterate over rdev's phandles */
563 for (i = 0; i < n_phandles; i++) {
d8ca7d18 564 int max_spread = rdev->constraints->max_spread[i];
a085a31a
MP
565 int c_max_spread, c_n_phandles;
566
d8ca7d18
DO
567 if (max_spread <= 0) {
568 dev_err(&rdev->dev, "max_spread value invalid\n");
569 return false;
570 }
571
a085a31a
MP
572 c_node = of_parse_phandle(node,
573 "regulator-coupled-with", i);
574
575 if (!c_node)
576 ret = false;
577
578 c_n_phandles = of_count_phandle_with_args(c_node,
579 "regulator-coupled-with",
580 NULL);
581
582 if (c_n_phandles != n_phandles) {
48f1b4ef 583 dev_err(&rdev->dev, "number of coupled reg phandles mismatch\n");
a085a31a
MP
584 ret = false;
585 goto clean;
586 }
587
d8ca7d18
DO
588 if (!of_coupling_find_node(c_node, node, &index)) {
589 dev_err(&rdev->dev, "missing 2-way linking for coupled regulators\n");
a085a31a
MP
590 ret = false;
591 goto clean;
592 }
593
d8ca7d18
DO
594 if (of_property_read_u32_index(c_node, "regulator-coupled-max-spread",
595 index, &c_max_spread)) {
a085a31a
MP
596 ret = false;
597 goto clean;
598 }
599
d8ca7d18
DO
600 if (c_max_spread != max_spread) {
601 dev_err(&rdev->dev,
602 "coupled regulators max_spread mismatch\n");
a085a31a 603 ret = false;
d8ca7d18 604 goto clean;
a085a31a
MP
605 }
606
607clean:
608 of_node_put(c_node);
609 if (!ret)
610 break;
611 }
612
613 return ret;
614}
615
616/**
617 * of_parse_coupled regulator - Get regulator_dev pointer from rdev's property
618 * @rdev: Pointer to regulator_dev, whose DTS is used as a source to parse
619 * "regulator-coupled-with" property
620 * @index: Index in phandles array
621 *
622 * Returns the regulator_dev pointer parsed from DTS. If it has not been yet
623 * registered, returns NULL
624 */
625struct regulator_dev *of_parse_coupled_regulator(struct regulator_dev *rdev,
626 int index)
627{
628 struct device_node *node = rdev->dev.of_node;
629 struct device_node *c_node;
630 struct regulator_dev *c_rdev;
631
632 c_node = of_parse_phandle(node, "regulator-coupled-with", index);
633 if (!c_node)
634 return NULL;
635
636 c_rdev = of_find_regulator_by_node(c_node);
637
638 of_node_put(c_node);
639
640 return c_rdev;
641}