blob: 3e4106f2bda90ccfa6dc7da80380f314bb5189d8 [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;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053024 struct regulation_constraints *constraints = &(*init_data)->constraints;
25
26 constraints->name = of_get_property(np, "regulator-name", NULL);
27
28 min_uV = of_get_property(np, "regulator-min-microvolt", NULL);
29 if (min_uV)
30 constraints->min_uV = be32_to_cpu(*min_uV);
31 max_uV = of_get_property(np, "regulator-max-microvolt", NULL);
32 if (max_uV)
33 constraints->max_uV = be32_to_cpu(*max_uV);
34
35 /* Voltage change possible? */
36 if (constraints->min_uV != constraints->max_uV)
37 constraints->valid_ops_mask |= REGULATOR_CHANGE_VOLTAGE;
Mark Brownab62aa92011-12-05 10:58:41 +000038 /* Only one voltage? Then make sure it's set. */
Karol Lewandowski8a093042012-01-25 10:31:45 +010039 if (min_uV && max_uV && constraints->min_uV == constraints->max_uV)
Mark Brownab62aa92011-12-05 10:58:41 +000040 constraints->apply_uV = true;
Rajendra Nayak8f446e62011-11-18 16:47:17 +053041
42 uV_offset = of_get_property(np, "regulator-microvolt-offset", NULL);
43 if (uV_offset)
44 constraints->uV_offset = be32_to_cpu(*uV_offset);
45 min_uA = of_get_property(np, "regulator-min-microamp", NULL);
46 if (min_uA)
47 constraints->min_uA = be32_to_cpu(*min_uA);
48 max_uA = of_get_property(np, "regulator-max-microamp", NULL);
49 if (max_uA)
50 constraints->max_uA = be32_to_cpu(*max_uA);
51
52 /* Current change possible? */
53 if (constraints->min_uA != constraints->max_uA)
54 constraints->valid_ops_mask |= REGULATOR_CHANGE_CURRENT;
55
56 if (of_find_property(np, "regulator-boot-on", NULL))
57 constraints->boot_on = true;
58
59 if (of_find_property(np, "regulator-always-on", NULL))
60 constraints->always_on = true;
61 else /* status change should be possible if not always on. */
62 constraints->valid_ops_mask |= REGULATOR_CHANGE_STATUS;
Yadwinder Singh Brar6f0b2c62012-06-11 17:41:08 +053063
64 ramp_delay = of_get_property(np, "regulator-ramp-delay", NULL);
65 if (ramp_delay)
Axel Lin086ccd42012-06-18 13:59:02 +080066 constraints->ramp_delay = be32_to_cpu(*ramp_delay);
Rajendra Nayak8f446e62011-11-18 16:47:17 +053067}
68
69/**
70 * of_get_regulator_init_data - extract regulator_init_data structure info
71 * @dev: device requesting for regulator_init_data
72 *
73 * Populates regulator_init_data structure by extracting data from device
74 * tree node, returns a pointer to the populated struture or NULL if memory
75 * alloc fails.
76 */
Shawn Guod9a861c2011-12-01 17:21:06 +080077struct regulator_init_data *of_get_regulator_init_data(struct device *dev,
78 struct device_node *node)
Rajendra Nayak8f446e62011-11-18 16:47:17 +053079{
80 struct regulator_init_data *init_data;
81
Shawn Guod9a861c2011-12-01 17:21:06 +080082 if (!node)
Rajendra Nayak8f446e62011-11-18 16:47:17 +053083 return NULL;
84
85 init_data = devm_kzalloc(dev, sizeof(*init_data), GFP_KERNEL);
86 if (!init_data)
87 return NULL; /* Out of memory? */
88
Shawn Guod9a861c2011-12-01 17:21:06 +080089 of_get_regulation_constraints(node, &init_data);
Rajendra Nayak8f446e62011-11-18 16:47:17 +053090 return init_data;
91}
Axel Line69af5e2011-11-26 18:50:58 +080092EXPORT_SYMBOL_GPL(of_get_regulator_init_data);
Thierry Reding1c8fa582012-04-26 16:52:20 +020093
94/**
Laxman Dewangan5260cd22012-06-20 17:53:06 +053095 * of_regulator_match - extract regulator init data when node
96 * property "regulator-compatible" matches with the regulator name.
Thierry Reding1c8fa582012-04-26 16:52:20 +020097 * @dev: device requesting the data
98 * @node: parent device node of the regulators
99 * @matches: match table for the regulators
100 * @num_matches: number of entries in match table
101 *
102 * This function uses a match table specified by the regulator driver and
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530103 * looks up the corresponding init data in the device tree if
104 * regulator-compatible matches. Note that the match table is modified
105 * in place.
Thierry Reding1c8fa582012-04-26 16:52:20 +0200106 *
107 * Returns the number of matches found or a negative error code on failure.
108 */
109int of_regulator_match(struct device *dev, struct device_node *node,
110 struct of_regulator_match *matches,
111 unsigned int num_matches)
112{
113 unsigned int count = 0;
114 unsigned int i;
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530115 const char *regulator_comp;
116 struct device_node *child;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200117
118 if (!dev || !node)
119 return -EINVAL;
120
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530121 for_each_child_of_node(node, child) {
122 regulator_comp = of_get_property(child,
123 "regulator-compatible", NULL);
124 if (!regulator_comp) {
125 dev_err(dev, "regulator-compatible is missing for node %s\n",
Thierry Reding1c8fa582012-04-26 16:52:20 +0200126 child->name);
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530127 continue;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200128 }
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530129 for (i = 0; i < num_matches; i++) {
130 struct of_regulator_match *match = &matches[i];
131 if (match->of_node)
132 continue;
Thierry Reding1c8fa582012-04-26 16:52:20 +0200133
Laxman Dewangan5260cd22012-06-20 17:53:06 +0530134 if (strcmp(match->name, regulator_comp))
135 continue;
136
137 match->init_data =
138 of_get_regulator_init_data(dev, child);
139 if (!match->init_data) {
140 dev_err(dev,
141 "failed to parse DT for regulator %s\n",
142 child->name);
143 return -EINVAL;
144 }
145 match->of_node = child;
146 count++;
147 break;
148 }
Thierry Reding1c8fa582012-04-26 16:52:20 +0200149 }
150
151 return count;
152}
153EXPORT_SYMBOL_GPL(of_regulator_match);