blob: 4672cd2f4632a1bc43fb66bc9f035210287824c6 [file] [log] [blame]
Rajendra Nayak8f446e62011-11-18 16:47:17 +05301/*
2 * OF helpers for regulator framework
3 *
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Rajendra Nayak <rnayak@ti.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
Axel Line69af5e2011-11-26 18:50:58 +080013#include <linux/module.h>
Rajendra Nayak8f446e62011-11-18 16:47:17 +053014#include <linux/slab.h>
15#include <linux/of.h>
16#include <linux/regulator/machine.h>
Thierry Reding1c8fa582012-04-26 16:52:20 +020017#include <linux/regulator/of_regulator.h>
Rajendra Nayak8f446e62011-11-18 16:47:17 +053018
19static void of_get_regulation_constraints(struct device_node *np,
20 struct regulator_init_data **init_data)
21{
22 const __be32 *min_uV, *max_uV, *uV_offset;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +053023 const __be32 *min_uA, *max_uA, *ramp_delay;
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +053024 struct property *prop;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053025 struct regulation_constraints *constraints = &(*init_data)->constraints;
Laxman Dewangan00c877c2013-09-18 18:18:02 +053026 int ret;
27 u32 pval;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053028
29 constraints->name = of_get_property(np, "regulator-name", NULL);
30
31 min_uV = of_get_property(np, "regulator-min-microvolt", NULL);
32 if (min_uV)
33 constraints->min_uV = be32_to_cpu(*min_uV);
34 max_uV = of_get_property(np, "regulator-max-microvolt", NULL);
35 if (max_uV)
36 constraints->max_uV = be32_to_cpu(*max_uV);
37
38 /* Voltage change possible? */
39 if (constraints->min_uV != constraints->max_uV)
40 constraints->valid_ops_mask |= REGULATOR_CHANGE_VOLTAGE;
Mark Brownab62aa92011-12-05 10:58:41 +000041 /* Only one voltage? Then make sure it's set. */
Karol Lewandowski8a093042012-01-25 10:31:45 +010042 if (min_uV && max_uV && constraints->min_uV == constraints->max_uV)
Mark Brownab62aa92011-12-05 10:58:41 +000043 constraints->apply_uV = true;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053044
45 uV_offset = of_get_property(np, "regulator-microvolt-offset", NULL);
46 if (uV_offset)
47 constraints->uV_offset = be32_to_cpu(*uV_offset);
48 min_uA = of_get_property(np, "regulator-min-microamp", NULL);
49 if (min_uA)
50 constraints->min_uA = be32_to_cpu(*min_uA);
51 max_uA = of_get_property(np, "regulator-max-microamp", NULL);
52 if (max_uA)
53 constraints->max_uA = be32_to_cpu(*max_uA);
54
55 /* Current change possible? */
56 if (constraints->min_uA != constraints->max_uA)
57 constraints->valid_ops_mask |= REGULATOR_CHANGE_CURRENT;
58
59 if (of_find_property(np, "regulator-boot-on", NULL))
60 constraints->boot_on = true;
61
62 if (of_find_property(np, "regulator-always-on", NULL))
63 constraints->always_on = true;
64 else /* status change should be possible if not always on. */
65 constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +053066
Kishon Vijay Abraham I93134c72013-06-20 14:07:37 +053067 if (of_property_read_bool(np, "regulator-allow-bypass"))
68 constraints->valid_ops_mask |= REGULATOR_CHANGE_BYPASS;
69
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +053070 prop = of_find_property(np, "regulator-ramp-delay", NULL);
71 if (prop && prop->value) {
72 ramp_delay = prop->value;
73 if (*ramp_delay)
74 constraints->ramp_delay = be32_to_cpu(*ramp_delay);
75 else
76 constraints->ramp_disable = true;
77 }
Laxman Dewangan00c877c2013-09-18 18:18:02 +053078
79 ret = of_property_read_u32(np, "regulator-enable-ramp-delay", &pval);
80 if (!ret)
81 constraints->enable_time = pval;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053082}
83
84/**
85 * of_get_regulator_init_data - extract regulator_init_data structure info
86 * @dev: device requesting for regulator_init_data
87 *
88 * Populates regulator_init_data structure by extracting data from device
89 * tree node, returns a pointer to the populated struture or NULL if memory
90 * alloc fails.
91 */
Shawn Guod9a861c2011-12-01 17:21:06 +080092struct regulator_init_data *of_get_regulator_init_data(struct device *dev,
93 struct device_node *node)
Rajendra Nayak8f446e62011-11-18 16:47:17 +053094{
95 struct regulator_init_data *init_data;
96
Shawn Guod9a861c2011-12-01 17:21:06 +080097 if (!node)
Rajendra Nayak8f446e62011-11-18 16:47:17 +053098 return NULL;
99
100 init_data = devm_kzalloc(dev, sizeof(*init_data), GFP_KERNEL);
101 if (!init_data)
102 return NULL; /* Out of memory? */
103
Shawn Guod9a861c2011-12-01 17:21:06 +0800104 of_get_regulation_constraints(node, &init_data);
Rajendra Nayak8f446e62011-11-18 16:47:17 +0530105 return init_data;
106}
Axel Line69af5e2011-11-26 18:50:58 +0800107EXPORT_SYMBOL_GPL(of_get_regulator_init_data);
Thierry Reding1c8fa582012-04-26 16:52:20 +0200108
Charles Keepax13b3fde2014-04-15 13:34:36 +0100109struct devm_of_regulator_matches {
110 struct of_regulator_match *matches;
111 unsigned int num_matches;
112};
113
114static void devm_of_regulator_put_matches(struct device *dev, void *res)
115{
116 struct devm_of_regulator_matches *devm_matches = res;
117 int i;
118
119 for (i = 0; i < devm_matches->num_matches; i++)
120 of_node_put(devm_matches->matches[i].of_node);
121}
122
Thierry Reding1c8fa582012-04-26 16:52:20 +0200123/**
Stephen Warren13511de2012-09-24 13:25:00 -0600124 * of_regulator_match - extract multiple regulator init data from device tree.
Thierry Reding1c8fa582012-04-26 16:52:20 +0200125 * @dev: device requesting the data
126 * @node: parent device node of the regulators
127 * @matches: match table for the regulators
128 * @num_matches: number of entries in match table
129 *
Stephen Warren13511de2012-09-24 13:25:00 -0600130 * This function uses a match table specified by the regulator driver to
131 * parse regulator init data from the device tree. @node is expected to
132 * contain a set of child nodes, each providing the init data for one
133 * regulator. The data parsed from a child node will be matched to a regulator
134 * based on either the deprecated property regulator-compatible if present,
135 * or otherwise the child node's name. Note that the match table is modified
Charles Keepaxbd0dda742014-04-03 15:32:15 +0100136 * in place and an additional of_node reference is taken for each matched
137 * regulator.
Thierry Reding1c8fa582012-04-26 16:52:20 +0200138 *
139 * Returns the number of matches found or a negative error code on failure.
140 */
141int of_regulator_match(struct device *dev, struct device_node *node,
142 struct of_regulator_match *matches,
143 unsigned int num_matches)
144{
145 unsigned int count = 0;
146 unsigned int i;
Stephen Warren13511de2012-09-24 13:25:00 -0600147 const char *name;
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530148 struct device_node *child;
Charles Keepax13b3fde2014-04-15 13:34:36 +0100149 struct devm_of_regulator_matches *devm_matches;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200150
151 if (!dev || !node)
152 return -EINVAL;
153
Charles Keepax13b3fde2014-04-15 13:34:36 +0100154 devm_matches = devres_alloc(devm_of_regulator_put_matches,
155 sizeof(struct devm_of_regulator_matches),
156 GFP_KERNEL);
157 if (!devm_matches)
158 return -ENOMEM;
159
160 devm_matches->matches = matches;
161 devm_matches->num_matches = num_matches;
162
163 devres_add(dev, devm_matches);
164
Stephen Warrena2f95c32013-01-29 12:01:13 -0700165 for (i = 0; i < num_matches; i++) {
166 struct of_regulator_match *match = &matches[i];
167 match->init_data = NULL;
168 match->of_node = NULL;
169 }
170
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530171 for_each_child_of_node(node, child) {
Stephen Warren13511de2012-09-24 13:25:00 -0600172 name = of_get_property(child,
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530173 "regulator-compatible", NULL);
Stephen Warren13511de2012-09-24 13:25:00 -0600174 if (!name)
175 name = child->name;
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530176 for (i = 0; i < num_matches; i++) {
177 struct of_regulator_match *match = &matches[i];
178 if (match->of_node)
179 continue;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200180
Stephen Warren13511de2012-09-24 13:25:00 -0600181 if (strcmp(match->name, name))
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530182 continue;
183
184 match->init_data =
185 of_get_regulator_init_data(dev, child);
186 if (!match->init_data) {
187 dev_err(dev,
188 "failed to parse DT for regulator %s\n",
189 child->name);
190 return -EINVAL;
191 }
Charles Keepaxbd0dda742014-04-03 15:32:15 +0100192 match->of_node = of_node_get(child);
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530193 count++;
194 break;
195 }
Thierry Reding1c8fa582012-04-26 16:52:20 +0200196 }
197
198 return count;
199}
200EXPORT_SYMBOL_GPL(of_regulator_match);