blob: 5a1d4afa4776231e457f5606e0a53c514477b510 [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>
Mark Browna0c7b162014-09-09 23:13:57 +010017#include <linux/regulator/driver.h>
Thierry Reding1c8fa582012-04-26 16:52:20 +020018#include <linux/regulator/of_regulator.h>
Rajendra Nayak8f446e62011-11-18 16:47:17 +053019
Mark Browna0c7b162014-09-09 23:13:57 +010020#include "internal.h"
21
Rajendra Nayak8f446e62011-11-18 16:47:17 +053022static void of_get_regulation_constraints(struct device_node *np,
23 struct regulator_init_data **init_data)
24{
Sergei Shtylyov1e050ea2014-05-27 00:27:19 +040025 const __be32 *min_uV, *max_uV;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053026 struct regulation_constraints *constraints = &(*init_data)->constraints;
Laxman Dewangan00c877c2013-09-18 18:18:02 +053027 int ret;
28 u32 pval;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053029
30 constraints->name = of_get_property(np, "regulator-name", NULL);
31
32 min_uV = of_get_property(np, "regulator-min-microvolt", NULL);
33 if (min_uV)
34 constraints->min_uV = be32_to_cpu(*min_uV);
35 max_uV = of_get_property(np, "regulator-max-microvolt", NULL);
36 if (max_uV)
37 constraints->max_uV = be32_to_cpu(*max_uV);
38
39 /* Voltage change possible? */
40 if (constraints->min_uV != constraints->max_uV)
41 constraints->valid_ops_mask |= REGULATOR_CHANGE_VOLTAGE;
Mark Brownab62aa92011-12-05 10:58:41 +000042 /* Only one voltage? Then make sure it's set. */
Karol Lewandowski8a093042012-01-25 10:31:45 +010043 if (min_uV && max_uV && constraints->min_uV == constraints->max_uV)
Mark Brownab62aa92011-12-05 10:58:41 +000044 constraints->apply_uV = true;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053045
Sergei Shtylyov1e050ea2014-05-27 00:27:19 +040046 if (!of_property_read_u32(np, "regulator-microvolt-offset", &pval))
47 constraints->uV_offset = pval;
48 if (!of_property_read_u32(np, "regulator-min-microamp", &pval))
49 constraints->min_uA = pval;
50 if (!of_property_read_u32(np, "regulator-max-microamp", &pval))
51 constraints->max_uA = pval;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053052
53 /* Current change possible? */
54 if (constraints->min_uA != constraints->max_uA)
55 constraints->valid_ops_mask |= REGULATOR_CHANGE_CURRENT;
56
Sergei Shtylyov1e050ea2014-05-27 00:27:19 +040057 constraints->boot_on = of_property_read_bool(np, "regulator-boot-on");
58 constraints->always_on = of_property_read_bool(np, "regulator-always-on");
59 if (!constraints->always_on) /* status change should be possible. */
Rajendra Nayak8f446e62011-11-18 16:47:17 +053060 constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +053061
Kishon Vijay Abraham I93134c72013-06-20 14:07:37 +053062 if (of_property_read_bool(np, "regulator-allow-bypass"))
63 constraints->valid_ops_mask |= REGULATOR_CHANGE_BYPASS;
64
Sergei Shtylyov1e050ea2014-05-27 00:27:19 +040065 ret = of_property_read_u32(np, "regulator-ramp-delay", &pval);
66 if (!ret) {
67 if (pval)
68 constraints->ramp_delay = pval;
Yadwinder Singh Brar1653ccf2013-06-29 18:21:15 +053069 else
70 constraints->ramp_disable = true;
71 }
Laxman Dewangan00c877c2013-09-18 18:18:02 +053072
73 ret = of_property_read_u32(np, "regulator-enable-ramp-delay", &pval);
74 if (!ret)
75 constraints->enable_time = pval;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053076}
77
78/**
79 * of_get_regulator_init_data - extract regulator_init_data structure info
80 * @dev: device requesting for regulator_init_data
81 *
82 * Populates regulator_init_data structure by extracting data from device
83 * tree node, returns a pointer to the populated struture or NULL if memory
84 * alloc fails.
85 */
Shawn Guod9a861c2011-12-01 17:21:06 +080086struct regulator_init_data *of_get_regulator_init_data(struct device *dev,
87 struct device_node *node)
Rajendra Nayak8f446e62011-11-18 16:47:17 +053088{
89 struct regulator_init_data *init_data;
90
Shawn Guod9a861c2011-12-01 17:21:06 +080091 if (!node)
Rajendra Nayak8f446e62011-11-18 16:47:17 +053092 return NULL;
93
94 init_data = devm_kzalloc(dev, sizeof(*init_data), GFP_KERNEL);
95 if (!init_data)
96 return NULL; /* Out of memory? */
97
Shawn Guod9a861c2011-12-01 17:21:06 +080098 of_get_regulation_constraints(node, &init_data);
Rajendra Nayak8f446e62011-11-18 16:47:17 +053099 return init_data;
100}
Axel Line69af5e2011-11-26 18:50:58 +0800101EXPORT_SYMBOL_GPL(of_get_regulator_init_data);
Thierry Reding1c8fa582012-04-26 16:52:20 +0200102
Charles Keepax13b3fde2014-04-15 13:34:36 +0100103struct devm_of_regulator_matches {
104 struct of_regulator_match *matches;
105 unsigned int num_matches;
106};
107
108static void devm_of_regulator_put_matches(struct device *dev, void *res)
109{
110 struct devm_of_regulator_matches *devm_matches = res;
111 int i;
112
113 for (i = 0; i < devm_matches->num_matches; i++)
114 of_node_put(devm_matches->matches[i].of_node);
115}
116
Thierry Reding1c8fa582012-04-26 16:52:20 +0200117/**
Stephen Warren13511de2012-09-24 13:25:00 -0600118 * of_regulator_match - extract multiple regulator init data from device tree.
Thierry Reding1c8fa582012-04-26 16:52:20 +0200119 * @dev: device requesting the data
120 * @node: parent device node of the regulators
121 * @matches: match table for the regulators
122 * @num_matches: number of entries in match table
123 *
Stephen Warren13511de2012-09-24 13:25:00 -0600124 * This function uses a match table specified by the regulator driver to
125 * parse regulator init data from the device tree. @node is expected to
126 * contain a set of child nodes, each providing the init data for one
127 * regulator. The data parsed from a child node will be matched to a regulator
128 * based on either the deprecated property regulator-compatible if present,
129 * or otherwise the child node's name. Note that the match table is modified
Charles Keepaxbd0dda742014-04-03 15:32:15 +0100130 * in place and an additional of_node reference is taken for each matched
131 * regulator.
Thierry Reding1c8fa582012-04-26 16:52:20 +0200132 *
133 * Returns the number of matches found or a negative error code on failure.
134 */
135int of_regulator_match(struct device *dev, struct device_node *node,
136 struct of_regulator_match *matches,
137 unsigned int num_matches)
138{
139 unsigned int count = 0;
140 unsigned int i;
Stephen Warren13511de2012-09-24 13:25:00 -0600141 const char *name;
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530142 struct device_node *child;
Charles Keepax13b3fde2014-04-15 13:34:36 +0100143 struct devm_of_regulator_matches *devm_matches;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200144
145 if (!dev || !node)
146 return -EINVAL;
147
Charles Keepax13b3fde2014-04-15 13:34:36 +0100148 devm_matches = devres_alloc(devm_of_regulator_put_matches,
149 sizeof(struct devm_of_regulator_matches),
150 GFP_KERNEL);
151 if (!devm_matches)
152 return -ENOMEM;
153
154 devm_matches->matches = matches;
155 devm_matches->num_matches = num_matches;
156
157 devres_add(dev, devm_matches);
158
Stephen Warrena2f95c32013-01-29 12:01:13 -0700159 for (i = 0; i < num_matches; i++) {
160 struct of_regulator_match *match = &matches[i];
161 match->init_data = NULL;
162 match->of_node = NULL;
163 }
164
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530165 for_each_child_of_node(node, child) {
Stephen Warren13511de2012-09-24 13:25:00 -0600166 name = of_get_property(child,
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530167 "regulator-compatible", NULL);
Stephen Warren13511de2012-09-24 13:25:00 -0600168 if (!name)
169 name = child->name;
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530170 for (i = 0; i < num_matches; i++) {
171 struct of_regulator_match *match = &matches[i];
172 if (match->of_node)
173 continue;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200174
Stephen Warren13511de2012-09-24 13:25:00 -0600175 if (strcmp(match->name, name))
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530176 continue;
177
178 match->init_data =
179 of_get_regulator_init_data(dev, child);
180 if (!match->init_data) {
181 dev_err(dev,
182 "failed to parse DT for regulator %s\n",
183 child->name);
184 return -EINVAL;
185 }
Charles Keepaxbd0dda742014-04-03 15:32:15 +0100186 match->of_node = of_node_get(child);
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530187 count++;
188 break;
189 }
Thierry Reding1c8fa582012-04-26 16:52:20 +0200190 }
191
192 return count;
193}
194EXPORT_SYMBOL_GPL(of_regulator_match);
Mark Browna0c7b162014-09-09 23:13:57 +0100195
196struct regulator_init_data *regulator_of_get_init_data(struct device *dev,
197 const struct regulator_desc *desc,
198 struct device_node **node)
199{
200 struct device_node *search, *child;
201 struct regulator_init_data *init_data = NULL;
202 const char *name;
203
204 if (!dev->of_node || !desc->of_match)
205 return NULL;
206
207 if (desc->regulators_node)
208 search = of_get_child_by_name(dev->of_node,
209 desc->regulators_node);
210 else
211 search = dev->of_node;
212
213 if (!search) {
Mark Brown7de79a12014-10-08 23:08:13 +0100214 dev_dbg(dev, "Failed to find regulator container node '%s'\n",
215 desc->regulators_node);
Mark Browna0c7b162014-09-09 23:13:57 +0100216 return NULL;
217 }
218
219 for_each_child_of_node(search, child) {
220 name = of_get_property(child, "regulator-compatible", NULL);
221 if (!name)
222 name = child->name;
223
224 if (strcmp(desc->of_match, name))
225 continue;
226
227 init_data = of_get_regulator_init_data(dev, child);
228 if (!init_data) {
229 dev_err(dev,
230 "failed to parse DT for regulator %s\n",
231 child->name);
232 break;
233 }
234
235 of_node_get(child);
236 *node = child;
237 break;
238 }
239
240 of_node_put(search);
241
242 return init_data;
243}