blob: d2acae825af9928dd8aef21089f0933b42498035 [file] [log] [blame]
Andres Salomon3cfc5352010-10-10 21:42:33 -06001/* pdt.c: OF PROM device tree support code.
Andres Salomon9bdf6ba2010-08-30 03:57:28 +00002 *
3 * Paul Mackerras August 1996.
4 * Copyright (C) 1996-2005 Paul Mackerras.
5 *
6 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
7 * {engebret|bergner}@us.ibm.com
8 *
9 * Adapted for sparc by David S. Miller davem@davemloft.net
Andres Salomon3cfc5352010-10-10 21:42:33 -060010 * Adapted for multiple architectures by Andres Salomon <dilinger@queued.net>
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000011 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version
15 * 2 of the License, or (at your option) any later version.
16 */
17
18#include <linux/kernel.h>
19#include <linux/module.h>
20#include <linux/errno.h>
21#include <linux/mutex.h>
22#include <linux/slab.h>
23#include <linux/of.h>
Andres Salomon3cfc5352010-10-10 21:42:33 -060024#include <linux/of_pdt.h>
Andres Salomonf90c34bd2010-10-10 21:49:45 -060025
26static struct of_pdt_ops *of_pdt_prom_ops __initdata;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000027
Grant Likely5063e252014-10-03 16:28:27 +010028void __initdata (*of_pdt_build_more)(struct device_node *dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000029
Andres Salomon3cfc5352010-10-10 21:42:33 -060030#if defined(CONFIG_SPARC)
31unsigned int of_pdt_unique_id __initdata;
32
33#define of_pdt_incr_unique_id(p) do { \
34 (p)->unique_id = of_pdt_unique_id++; \
35} while (0)
36
Andres Salomona74ea432011-02-23 22:38:22 -080037static char * __init of_pdt_build_full_name(struct device_node *dp)
Andres Salomon3cfc5352010-10-10 21:42:33 -060038{
Andres Salomona74ea432011-02-23 22:38:22 -080039 int len, ourlen, plen;
40 char *n;
41
42 dp->path_component_name = build_path_component(dp);
43
44 plen = strlen(dp->parent->full_name);
45 ourlen = strlen(dp->path_component_name);
46 len = ourlen + plen + 2;
47
48 n = prom_early_alloc(len);
49 strcpy(n, dp->parent->full_name);
50 if (!of_node_is_root(dp->parent)) {
51 strcpy(n + plen, "/");
52 plen++;
53 }
54 strcpy(n + plen, dp->path_component_name);
55
56 return n;
Andres Salomon3cfc5352010-10-10 21:42:33 -060057}
58
Andres Salomona74ea432011-02-23 22:38:22 -080059#else /* CONFIG_SPARC */
Andres Salomon3cfc5352010-10-10 21:42:33 -060060
61static inline void of_pdt_incr_unique_id(void *p) { }
62static inline void irq_trans_init(struct device_node *dp) { }
63
Andres Salomona74ea432011-02-23 22:38:22 -080064static char * __init of_pdt_build_full_name(struct device_node *dp)
Andres Salomon3cfc5352010-10-10 21:42:33 -060065{
Andres Salomona74ea432011-02-23 22:38:22 -080066 static int failsafe_id = 0; /* for generating unique names on failure */
67 char *buf;
68 int len;
69
70 if (of_pdt_prom_ops->pkg2path(dp->phandle, NULL, 0, &len))
71 goto failsafe;
72
73 buf = prom_early_alloc(len + 1);
74 if (of_pdt_prom_ops->pkg2path(dp->phandle, buf, len, &len))
75 goto failsafe;
76 return buf;
77
78 failsafe:
79 buf = prom_early_alloc(strlen(dp->parent->full_name) +
80 strlen(dp->name) + 16);
81 sprintf(buf, "%s/%s@unknown%i",
82 of_node_is_root(dp->parent) ? "" : dp->parent->full_name,
83 dp->name, failsafe_id++);
84 pr_err("%s: pkg2path failed; assigning %s\n", __func__, buf);
85 return buf;
Andres Salomon3cfc5352010-10-10 21:42:33 -060086}
87
88#endif /* !CONFIG_SPARC */
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000089
Andres Salomoned418502010-10-10 21:51:25 -060090static struct property * __init of_pdt_build_one_prop(phandle node, char *prev,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000091 char *special_name,
92 void *special_val,
93 int special_len)
94{
95 static struct property *tmp = NULL;
96 struct property *p;
Andres Salomonf90c34bd2010-10-10 21:49:45 -060097 int err;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000098
99 if (tmp) {
100 p = tmp;
101 memset(p, 0, sizeof(*p) + 32);
102 tmp = NULL;
103 } else {
104 p = prom_early_alloc(sizeof(struct property) + 32);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600105 of_pdt_incr_unique_id(p);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000106 }
107
108 p->name = (char *) (p + 1);
109 if (special_name) {
110 strcpy(p->name, special_name);
111 p->length = special_len;
112 p->value = prom_early_alloc(special_len);
113 memcpy(p->value, special_val, special_len);
114 } else {
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600115 err = of_pdt_prom_ops->nextprop(node, prev, p->name);
116 if (err) {
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000117 tmp = p;
118 return NULL;
119 }
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600120 p->length = of_pdt_prom_ops->getproplen(node, p->name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000121 if (p->length <= 0) {
122 p->length = 0;
123 } else {
124 int len;
125
126 p->value = prom_early_alloc(p->length + 1);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600127 len = of_pdt_prom_ops->getproperty(node, p->name,
128 p->value, p->length);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000129 if (len <= 0)
130 p->length = 0;
131 ((unsigned char *)p->value)[p->length] = '\0';
132 }
133 }
134 return p;
135}
136
Andres Salomoned418502010-10-10 21:51:25 -0600137static struct property * __init of_pdt_build_prop_list(phandle node)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000138{
139 struct property *head, *tail;
140
Andres Salomoned418502010-10-10 21:51:25 -0600141 head = tail = of_pdt_build_one_prop(node, NULL,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000142 ".node", &node, sizeof(node));
143
Andres Salomoned418502010-10-10 21:51:25 -0600144 tail->next = of_pdt_build_one_prop(node, NULL, NULL, NULL, 0);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000145 tail = tail->next;
146 while(tail) {
Andres Salomoned418502010-10-10 21:51:25 -0600147 tail->next = of_pdt_build_one_prop(node, tail->name,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000148 NULL, NULL, 0);
149 tail = tail->next;
150 }
151
152 return head;
153}
154
Andres Salomoned418502010-10-10 21:51:25 -0600155static char * __init of_pdt_get_one_property(phandle node, const char *name)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000156{
157 char *buf = "<NULL>";
158 int len;
159
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600160 len = of_pdt_prom_ops->getproplen(node, name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000161 if (len > 0) {
162 buf = prom_early_alloc(len);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600163 len = of_pdt_prom_ops->getproperty(node, name, buf, len);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000164 }
165
166 return buf;
167}
168
Andres Salomoned418502010-10-10 21:51:25 -0600169static struct device_node * __init of_pdt_create_node(phandle node,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000170 struct device_node *parent)
171{
172 struct device_node *dp;
173
174 if (!node)
175 return NULL;
176
177 dp = prom_early_alloc(sizeof(*dp));
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200178 of_node_init(dp);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600179 of_pdt_incr_unique_id(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000180 dp->parent = parent;
181
Andres Salomona74ea432011-02-23 22:38:22 -0800182 dp->name = of_pdt_get_one_property(node, "name");
Andres Salomoned418502010-10-10 21:51:25 -0600183 dp->type = of_pdt_get_one_property(node, "device_type");
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000184 dp->phandle = node;
185
Andres Salomoned418502010-10-10 21:51:25 -0600186 dp->properties = of_pdt_build_prop_list(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000187
188 irq_trans_init(dp);
189
190 return dp;
191}
192
Andres Salomoned418502010-10-10 21:51:25 -0600193static struct device_node * __init of_pdt_build_tree(struct device_node *parent,
Grant Likely5063e252014-10-03 16:28:27 +0100194 phandle node)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000195{
196 struct device_node *ret = NULL, *prev_sibling = NULL;
197 struct device_node *dp;
198
199 while (1) {
Andres Salomoned418502010-10-10 21:51:25 -0600200 dp = of_pdt_create_node(node, parent);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000201 if (!dp)
202 break;
203
204 if (prev_sibling)
205 prev_sibling->sibling = dp;
206
207 if (!ret)
208 ret = dp;
209 prev_sibling = dp;
210
Andres Salomoned418502010-10-10 21:51:25 -0600211 dp->full_name = of_pdt_build_full_name(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000212
Grant Likely5063e252014-10-03 16:28:27 +0100213 dp->child = of_pdt_build_tree(dp, of_pdt_prom_ops->getchild(node));
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000214
Andres Salomoned418502010-10-10 21:51:25 -0600215 if (of_pdt_build_more)
Grant Likely5063e252014-10-03 16:28:27 +0100216 of_pdt_build_more(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000217
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600218 node = of_pdt_prom_ops->getsibling(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000219 }
220
221 return ret;
222}
223
Sam Ravnborg75c71842011-12-27 22:58:40 +0100224static void * __init kernel_tree_alloc(u64 size, u64 align)
Shawn Guo611cad72011-08-15 15:28:14 +0800225{
226 return prom_early_alloc(size);
227}
228
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600229void __init of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000230{
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600231 BUG_ON(!ops);
232 of_pdt_prom_ops = ops;
233
Grant Likely5063e252014-10-03 16:28:27 +0100234 of_root = of_pdt_create_node(root_node, NULL);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600235#if defined(CONFIG_SPARC)
Grant Likely5063e252014-10-03 16:28:27 +0100236 of_root->path_component_name = "";
Andres Salomon3cfc5352010-10-10 21:42:33 -0600237#endif
Grant Likely5063e252014-10-03 16:28:27 +0100238 of_root->full_name = "/";
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000239
Grant Likely5063e252014-10-03 16:28:27 +0100240 of_root->child = of_pdt_build_tree(of_root,
241 of_pdt_prom_ops->getchild(of_root->phandle));
Shawn Guo611cad72011-08-15 15:28:14 +0800242
Robert P. J. Day4c7d6362013-05-30 05:38:08 -0400243 /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */
Shawn Guo611cad72011-08-15 15:28:14 +0800244 of_alias_scan(kernel_tree_alloc);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000245}