blob: fd02fc1dd891e3b2c2e02704867f3fc274fc71d9 [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 Salomon9bdf6ba2010-08-30 03:57:28 +000025#include <asm/prom.h>
Andres Salomonf90c34bd2010-10-10 21:49:45 -060026
27static struct of_pdt_ops *of_pdt_prom_ops __initdata;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000028
Andres Salomon3cfc5352010-10-10 21:42:33 -060029void __initdata (*prom_build_more)(struct device_node *dp,
30 struct device_node ***nextp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000031
Andres Salomon3cfc5352010-10-10 21:42:33 -060032#if defined(CONFIG_SPARC)
33unsigned int of_pdt_unique_id __initdata;
34
35#define of_pdt_incr_unique_id(p) do { \
36 (p)->unique_id = of_pdt_unique_id++; \
37} while (0)
38
39static inline const char *of_pdt_node_name(struct device_node *dp)
40{
41 return dp->path_component_name;
42}
43
44#else
45
46static inline void of_pdt_incr_unique_id(void *p) { }
47static inline void irq_trans_init(struct device_node *dp) { }
48
49static inline const char *of_pdt_node_name(struct device_node *dp)
50{
51 return dp->name;
52}
53
54#endif /* !CONFIG_SPARC */
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000055
56static struct property * __init build_one_prop(phandle node, char *prev,
57 char *special_name,
58 void *special_val,
59 int special_len)
60{
61 static struct property *tmp = NULL;
62 struct property *p;
Andres Salomonf90c34bd2010-10-10 21:49:45 -060063 int err;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000064
65 if (tmp) {
66 p = tmp;
67 memset(p, 0, sizeof(*p) + 32);
68 tmp = NULL;
69 } else {
70 p = prom_early_alloc(sizeof(struct property) + 32);
Andres Salomon3cfc5352010-10-10 21:42:33 -060071 of_pdt_incr_unique_id(p);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000072 }
73
74 p->name = (char *) (p + 1);
75 if (special_name) {
76 strcpy(p->name, special_name);
77 p->length = special_len;
78 p->value = prom_early_alloc(special_len);
79 memcpy(p->value, special_val, special_len);
80 } else {
Andres Salomonf90c34bd2010-10-10 21:49:45 -060081 err = of_pdt_prom_ops->nextprop(node, prev, p->name);
82 if (err) {
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000083 tmp = p;
84 return NULL;
85 }
Andres Salomonf90c34bd2010-10-10 21:49:45 -060086 p->length = of_pdt_prom_ops->getproplen(node, p->name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000087 if (p->length <= 0) {
88 p->length = 0;
89 } else {
90 int len;
91
92 p->value = prom_early_alloc(p->length + 1);
Andres Salomonf90c34bd2010-10-10 21:49:45 -060093 len = of_pdt_prom_ops->getproperty(node, p->name,
94 p->value, p->length);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000095 if (len <= 0)
96 p->length = 0;
97 ((unsigned char *)p->value)[p->length] = '\0';
98 }
99 }
100 return p;
101}
102
103static struct property * __init build_prop_list(phandle node)
104{
105 struct property *head, *tail;
106
107 head = tail = build_one_prop(node, NULL,
108 ".node", &node, sizeof(node));
109
110 tail->next = build_one_prop(node, NULL, NULL, NULL, 0);
111 tail = tail->next;
112 while(tail) {
113 tail->next = build_one_prop(node, tail->name,
114 NULL, NULL, 0);
115 tail = tail->next;
116 }
117
118 return head;
119}
120
121static char * __init get_one_property(phandle node, const char *name)
122{
123 char *buf = "<NULL>";
124 int len;
125
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600126 len = of_pdt_prom_ops->getproplen(node, name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000127 if (len > 0) {
128 buf = prom_early_alloc(len);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600129 len = of_pdt_prom_ops->getproperty(node, name, buf, len);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000130 }
131
132 return buf;
133}
134
135static struct device_node * __init prom_create_node(phandle node,
136 struct device_node *parent)
137{
138 struct device_node *dp;
139
140 if (!node)
141 return NULL;
142
143 dp = prom_early_alloc(sizeof(*dp));
Andres Salomon3cfc5352010-10-10 21:42:33 -0600144 of_pdt_incr_unique_id(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000145 dp->parent = parent;
146
147 kref_init(&dp->kref);
148
149 dp->name = get_one_property(node, "name");
150 dp->type = get_one_property(node, "device_type");
151 dp->phandle = node;
152
153 dp->properties = build_prop_list(node);
154
155 irq_trans_init(dp);
156
157 return dp;
158}
159
Andres Salomon3cfc5352010-10-10 21:42:33 -0600160static char * __init build_full_name(struct device_node *dp)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000161{
162 int len, ourlen, plen;
163 char *n;
164
165 plen = strlen(dp->parent->full_name);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600166 ourlen = strlen(of_pdt_node_name(dp));
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000167 len = ourlen + plen + 2;
168
169 n = prom_early_alloc(len);
170 strcpy(n, dp->parent->full_name);
171 if (!of_node_is_root(dp->parent)) {
172 strcpy(n + plen, "/");
173 plen++;
174 }
Andres Salomon3cfc5352010-10-10 21:42:33 -0600175 strcpy(n + plen, of_pdt_node_name(dp));
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000176
177 return n;
178}
179
180static struct device_node * __init prom_build_tree(struct device_node *parent,
181 phandle node,
182 struct device_node ***nextp)
183{
184 struct device_node *ret = NULL, *prev_sibling = NULL;
185 struct device_node *dp;
186
187 while (1) {
188 dp = prom_create_node(node, parent);
189 if (!dp)
190 break;
191
192 if (prev_sibling)
193 prev_sibling->sibling = dp;
194
195 if (!ret)
196 ret = dp;
197 prev_sibling = dp;
198
199 *(*nextp) = dp;
200 *nextp = &dp->allnext;
201
Andres Salomon3cfc5352010-10-10 21:42:33 -0600202#if defined(CONFIG_SPARC)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000203 dp->path_component_name = build_path_component(dp);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600204#endif
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000205 dp->full_name = build_full_name(dp);
206
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600207 dp->child = prom_build_tree(dp,
208 of_pdt_prom_ops->getchild(node), nextp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000209
210 if (prom_build_more)
211 prom_build_more(dp, nextp);
212
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600213 node = of_pdt_prom_ops->getsibling(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000214 }
215
216 return ret;
217}
218
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600219void __init of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000220{
221 struct device_node **nextp;
222
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600223 BUG_ON(!ops);
224 of_pdt_prom_ops = ops;
225
Andres Salomon3cfc5352010-10-10 21:42:33 -0600226 allnodes = prom_create_node(root_node, NULL);
227#if defined(CONFIG_SPARC)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000228 allnodes->path_component_name = "";
Andres Salomon3cfc5352010-10-10 21:42:33 -0600229#endif
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000230 allnodes->full_name = "/";
231
232 nextp = &allnodes->allnext;
233 allnodes->child = prom_build_tree(allnodes,
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600234 of_pdt_prom_ops->getchild(allnodes->phandle), &nextp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000235}