blob: 013e65de074ad45756fa1a361d13091bae5d311c [file] [log] [blame]
Rob Herringaf6074f2017-12-27 12:55:14 -06001// SPDX-License-Identifier: GPL-2.0+
Andres Salomon3cfc5352010-10-10 21:42:33 -06002/* pdt.c: OF PROM device tree support code.
Andres Salomon9bdf6ba2010-08-30 03:57:28 +00003 *
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
6 *
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
9 *
10 * Adapted for sparc by David S. Miller davem@davemloft.net
Andres Salomon3cfc5352010-10-10 21:42:33 -060011 * Adapted for multiple architectures by Andres Salomon <dilinger@queued.net>
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000012 */
13
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/errno.h>
17#include <linux/mutex.h>
18#include <linux/slab.h>
19#include <linux/of.h>
Andres Salomon3cfc5352010-10-10 21:42:33 -060020#include <linux/of_pdt.h>
Andres Salomonf90c34bd2010-10-10 21:49:45 -060021
22static struct of_pdt_ops *of_pdt_prom_ops __initdata;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000023
Grant Likely5063e252014-10-03 16:28:27 +010024void __initdata (*of_pdt_build_more)(struct device_node *dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000025
Andres Salomon3cfc5352010-10-10 21:42:33 -060026#if defined(CONFIG_SPARC)
27unsigned int of_pdt_unique_id __initdata;
28
29#define of_pdt_incr_unique_id(p) do { \
30 (p)->unique_id = of_pdt_unique_id++; \
31} while (0)
32
Andres Salomona74ea432011-02-23 22:38:22 -080033static char * __init of_pdt_build_full_name(struct device_node *dp)
Andres Salomon3cfc5352010-10-10 21:42:33 -060034{
Andres Salomona74ea432011-02-23 22:38:22 -080035 int len, ourlen, plen;
36 char *n;
37
38 dp->path_component_name = build_path_component(dp);
39
40 plen = strlen(dp->parent->full_name);
41 ourlen = strlen(dp->path_component_name);
42 len = ourlen + plen + 2;
43
44 n = prom_early_alloc(len);
45 strcpy(n, dp->parent->full_name);
46 if (!of_node_is_root(dp->parent)) {
47 strcpy(n + plen, "/");
48 plen++;
49 }
50 strcpy(n + plen, dp->path_component_name);
51
52 return n;
Andres Salomon3cfc5352010-10-10 21:42:33 -060053}
54
Andres Salomona74ea432011-02-23 22:38:22 -080055#else /* CONFIG_SPARC */
Andres Salomon3cfc5352010-10-10 21:42:33 -060056
57static inline void of_pdt_incr_unique_id(void *p) { }
58static inline void irq_trans_init(struct device_node *dp) { }
59
Andres Salomona74ea432011-02-23 22:38:22 -080060static char * __init of_pdt_build_full_name(struct device_node *dp)
Andres Salomon3cfc5352010-10-10 21:42:33 -060061{
Andres Salomona74ea432011-02-23 22:38:22 -080062 static int failsafe_id = 0; /* for generating unique names on failure */
63 char *buf;
64 int len;
65
66 if (of_pdt_prom_ops->pkg2path(dp->phandle, NULL, 0, &len))
67 goto failsafe;
68
69 buf = prom_early_alloc(len + 1);
70 if (of_pdt_prom_ops->pkg2path(dp->phandle, buf, len, &len))
71 goto failsafe;
72 return buf;
73
74 failsafe:
75 buf = prom_early_alloc(strlen(dp->parent->full_name) +
76 strlen(dp->name) + 16);
77 sprintf(buf, "%s/%s@unknown%i",
78 of_node_is_root(dp->parent) ? "" : dp->parent->full_name,
79 dp->name, failsafe_id++);
80 pr_err("%s: pkg2path failed; assigning %s\n", __func__, buf);
81 return buf;
Andres Salomon3cfc5352010-10-10 21:42:33 -060082}
83
84#endif /* !CONFIG_SPARC */
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000085
Andres Salomoned418502010-10-10 21:51:25 -060086static struct property * __init of_pdt_build_one_prop(phandle node, char *prev,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000087 char *special_name,
88 void *special_val,
89 int special_len)
90{
91 static struct property *tmp = NULL;
92 struct property *p;
Andres Salomonf90c34bd2010-10-10 21:49:45 -060093 int err;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000094
95 if (tmp) {
96 p = tmp;
97 memset(p, 0, sizeof(*p) + 32);
98 tmp = NULL;
99 } else {
100 p = prom_early_alloc(sizeof(struct property) + 32);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600101 of_pdt_incr_unique_id(p);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000102 }
103
104 p->name = (char *) (p + 1);
105 if (special_name) {
106 strcpy(p->name, special_name);
107 p->length = special_len;
108 p->value = prom_early_alloc(special_len);
109 memcpy(p->value, special_val, special_len);
110 } else {
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600111 err = of_pdt_prom_ops->nextprop(node, prev, p->name);
112 if (err) {
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000113 tmp = p;
114 return NULL;
115 }
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600116 p->length = of_pdt_prom_ops->getproplen(node, p->name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000117 if (p->length <= 0) {
118 p->length = 0;
119 } else {
120 int len;
121
122 p->value = prom_early_alloc(p->length + 1);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600123 len = of_pdt_prom_ops->getproperty(node, p->name,
124 p->value, p->length);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000125 if (len <= 0)
126 p->length = 0;
127 ((unsigned char *)p->value)[p->length] = '\0';
128 }
129 }
130 return p;
131}
132
Andres Salomoned418502010-10-10 21:51:25 -0600133static struct property * __init of_pdt_build_prop_list(phandle node)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000134{
135 struct property *head, *tail;
136
Andres Salomoned418502010-10-10 21:51:25 -0600137 head = tail = of_pdt_build_one_prop(node, NULL,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000138 ".node", &node, sizeof(node));
139
Andres Salomoned418502010-10-10 21:51:25 -0600140 tail->next = of_pdt_build_one_prop(node, NULL, NULL, NULL, 0);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000141 tail = tail->next;
142 while(tail) {
Andres Salomoned418502010-10-10 21:51:25 -0600143 tail->next = of_pdt_build_one_prop(node, tail->name,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000144 NULL, NULL, 0);
145 tail = tail->next;
146 }
147
148 return head;
149}
150
Andres Salomoned418502010-10-10 21:51:25 -0600151static char * __init of_pdt_get_one_property(phandle node, const char *name)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000152{
153 char *buf = "<NULL>";
154 int len;
155
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600156 len = of_pdt_prom_ops->getproplen(node, name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000157 if (len > 0) {
158 buf = prom_early_alloc(len);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600159 len = of_pdt_prom_ops->getproperty(node, name, buf, len);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000160 }
161
162 return buf;
163}
164
Andres Salomoned418502010-10-10 21:51:25 -0600165static struct device_node * __init of_pdt_create_node(phandle node,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000166 struct device_node *parent)
167{
168 struct device_node *dp;
169
170 if (!node)
171 return NULL;
172
173 dp = prom_early_alloc(sizeof(*dp));
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200174 of_node_init(dp);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600175 of_pdt_incr_unique_id(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000176 dp->parent = parent;
177
Andres Salomona74ea432011-02-23 22:38:22 -0800178 dp->name = of_pdt_get_one_property(node, "name");
Andres Salomoned418502010-10-10 21:51:25 -0600179 dp->type = of_pdt_get_one_property(node, "device_type");
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000180 dp->phandle = node;
181
Andres Salomoned418502010-10-10 21:51:25 -0600182 dp->properties = of_pdt_build_prop_list(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000183
184 irq_trans_init(dp);
185
186 return dp;
187}
188
Andres Salomoned418502010-10-10 21:51:25 -0600189static struct device_node * __init of_pdt_build_tree(struct device_node *parent,
Grant Likely5063e252014-10-03 16:28:27 +0100190 phandle node)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000191{
192 struct device_node *ret = NULL, *prev_sibling = NULL;
193 struct device_node *dp;
194
195 while (1) {
Andres Salomoned418502010-10-10 21:51:25 -0600196 dp = of_pdt_create_node(node, parent);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000197 if (!dp)
198 break;
199
200 if (prev_sibling)
201 prev_sibling->sibling = dp;
202
203 if (!ret)
204 ret = dp;
205 prev_sibling = dp;
206
Andres Salomoned418502010-10-10 21:51:25 -0600207 dp->full_name = of_pdt_build_full_name(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000208
Grant Likely5063e252014-10-03 16:28:27 +0100209 dp->child = of_pdt_build_tree(dp, of_pdt_prom_ops->getchild(node));
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000210
Andres Salomoned418502010-10-10 21:51:25 -0600211 if (of_pdt_build_more)
Grant Likely5063e252014-10-03 16:28:27 +0100212 of_pdt_build_more(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000213
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600214 node = of_pdt_prom_ops->getsibling(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000215 }
216
217 return ret;
218}
219
Sam Ravnborg75c71842011-12-27 22:58:40 +0100220static void * __init kernel_tree_alloc(u64 size, u64 align)
Shawn Guo611cad72011-08-15 15:28:14 +0800221{
222 return prom_early_alloc(size);
223}
224
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600225void __init of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000226{
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600227 BUG_ON(!ops);
228 of_pdt_prom_ops = ops;
229
Grant Likely5063e252014-10-03 16:28:27 +0100230 of_root = of_pdt_create_node(root_node, NULL);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600231#if defined(CONFIG_SPARC)
Grant Likely5063e252014-10-03 16:28:27 +0100232 of_root->path_component_name = "";
Andres Salomon3cfc5352010-10-10 21:42:33 -0600233#endif
Grant Likely5063e252014-10-03 16:28:27 +0100234 of_root->full_name = "/";
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000235
Grant Likely5063e252014-10-03 16:28:27 +0100236 of_root->child = of_pdt_build_tree(of_root,
237 of_pdt_prom_ops->getchild(of_root->phandle));
Shawn Guo611cad72011-08-15 15:28:14 +0800238
Robert P. J. Day4c7d6362013-05-30 05:38:08 -0400239 /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */
Shawn Guo611cad72011-08-15 15:28:14 +0800240 of_alias_scan(kernel_tree_alloc);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000241}