blob: c1633041621daf4cc233e12a828d5d314e042be2 [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{
Rob Herring0c5eaa72018-11-16 15:06:55 -060035 return build_path_component(dp);
Andres Salomon3cfc5352010-10-10 21:42:33 -060036}
37
Andres Salomona74ea432011-02-23 22:38:22 -080038#else /* CONFIG_SPARC */
Andres Salomon3cfc5352010-10-10 21:42:33 -060039
40static inline void of_pdt_incr_unique_id(void *p) { }
41static inline void irq_trans_init(struct device_node *dp) { }
42
Andres Salomona74ea432011-02-23 22:38:22 -080043static char * __init of_pdt_build_full_name(struct device_node *dp)
Andres Salomon3cfc5352010-10-10 21:42:33 -060044{
Andres Salomona74ea432011-02-23 22:38:22 -080045 static int failsafe_id = 0; /* for generating unique names on failure */
Rob Herring0c5eaa72018-11-16 15:06:55 -060046 const char *name;
47 char path[256];
Andres Salomona74ea432011-02-23 22:38:22 -080048 char *buf;
49 int len;
50
Rob Herring0c5eaa72018-11-16 15:06:55 -060051 if (!of_pdt_prom_ops->pkg2path(dp->phandle, path, sizeof(path), &len)) {
52 name = kbasename(path);
53 buf = prom_early_alloc(strlen(name) + 1);
54 strcpy(buf, name);
55 return buf;
56 }
Andres Salomona74ea432011-02-23 22:38:22 -080057
Rob Herring0c5eaa72018-11-16 15:06:55 -060058 name = of_get_property(dp, "name", &len);
59 buf = prom_early_alloc(len + 16);
60 sprintf(buf, "%s@unknown%i", name, failsafe_id++);
Andres Salomona74ea432011-02-23 22:38:22 -080061 pr_err("%s: pkg2path failed; assigning %s\n", __func__, buf);
62 return buf;
Andres Salomon3cfc5352010-10-10 21:42:33 -060063}
64
65#endif /* !CONFIG_SPARC */
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000066
Andres Salomoned418502010-10-10 21:51:25 -060067static struct property * __init of_pdt_build_one_prop(phandle node, char *prev,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000068 char *special_name,
69 void *special_val,
70 int special_len)
71{
72 static struct property *tmp = NULL;
73 struct property *p;
Andres Salomonf90c34bd2010-10-10 21:49:45 -060074 int err;
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000075
76 if (tmp) {
77 p = tmp;
78 memset(p, 0, sizeof(*p) + 32);
79 tmp = NULL;
80 } else {
81 p = prom_early_alloc(sizeof(struct property) + 32);
Andres Salomon3cfc5352010-10-10 21:42:33 -060082 of_pdt_incr_unique_id(p);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000083 }
84
85 p->name = (char *) (p + 1);
86 if (special_name) {
87 strcpy(p->name, special_name);
88 p->length = special_len;
89 p->value = prom_early_alloc(special_len);
90 memcpy(p->value, special_val, special_len);
91 } else {
Andres Salomonf90c34bd2010-10-10 21:49:45 -060092 err = of_pdt_prom_ops->nextprop(node, prev, p->name);
93 if (err) {
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000094 tmp = p;
95 return NULL;
96 }
Andres Salomonf90c34bd2010-10-10 21:49:45 -060097 p->length = of_pdt_prom_ops->getproplen(node, p->name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +000098 if (p->length <= 0) {
99 p->length = 0;
100 } else {
101 int len;
102
103 p->value = prom_early_alloc(p->length + 1);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600104 len = of_pdt_prom_ops->getproperty(node, p->name,
105 p->value, p->length);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000106 if (len <= 0)
107 p->length = 0;
108 ((unsigned char *)p->value)[p->length] = '\0';
109 }
110 }
111 return p;
112}
113
Andres Salomoned418502010-10-10 21:51:25 -0600114static struct property * __init of_pdt_build_prop_list(phandle node)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000115{
116 struct property *head, *tail;
117
Andres Salomoned418502010-10-10 21:51:25 -0600118 head = tail = of_pdt_build_one_prop(node, NULL,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000119 ".node", &node, sizeof(node));
120
Andres Salomoned418502010-10-10 21:51:25 -0600121 tail->next = of_pdt_build_one_prop(node, NULL, NULL, NULL, 0);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000122 tail = tail->next;
123 while(tail) {
Andres Salomoned418502010-10-10 21:51:25 -0600124 tail->next = of_pdt_build_one_prop(node, tail->name,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000125 NULL, NULL, 0);
126 tail = tail->next;
127 }
128
129 return head;
130}
131
Andres Salomoned418502010-10-10 21:51:25 -0600132static char * __init of_pdt_get_one_property(phandle node, const char *name)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000133{
134 char *buf = "<NULL>";
135 int len;
136
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600137 len = of_pdt_prom_ops->getproplen(node, name);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000138 if (len > 0) {
139 buf = prom_early_alloc(len);
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600140 len = of_pdt_prom_ops->getproperty(node, name, buf, len);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000141 }
142
143 return buf;
144}
145
Andres Salomoned418502010-10-10 21:51:25 -0600146static struct device_node * __init of_pdt_create_node(phandle node,
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000147 struct device_node *parent)
148{
149 struct device_node *dp;
150
151 if (!node)
152 return NULL;
153
154 dp = prom_early_alloc(sizeof(*dp));
Pantelis Antoniou0829f6d2013-12-13 20:08:59 +0200155 of_node_init(dp);
Andres Salomon3cfc5352010-10-10 21:42:33 -0600156 of_pdt_incr_unique_id(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000157 dp->parent = parent;
158
Andres Salomona74ea432011-02-23 22:38:22 -0800159 dp->name = of_pdt_get_one_property(node, "name");
Andres Salomoned418502010-10-10 21:51:25 -0600160 dp->type = of_pdt_get_one_property(node, "device_type");
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000161 dp->phandle = node;
162
Andres Salomoned418502010-10-10 21:51:25 -0600163 dp->properties = of_pdt_build_prop_list(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000164
Rob Herring0c5eaa72018-11-16 15:06:55 -0600165 dp->full_name = of_pdt_build_full_name(dp);
166
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000167 irq_trans_init(dp);
168
169 return dp;
170}
171
Andres Salomoned418502010-10-10 21:51:25 -0600172static struct device_node * __init of_pdt_build_tree(struct device_node *parent,
Grant Likely5063e252014-10-03 16:28:27 +0100173 phandle node)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000174{
175 struct device_node *ret = NULL, *prev_sibling = NULL;
176 struct device_node *dp;
177
178 while (1) {
Andres Salomoned418502010-10-10 21:51:25 -0600179 dp = of_pdt_create_node(node, parent);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000180 if (!dp)
181 break;
182
183 if (prev_sibling)
184 prev_sibling->sibling = dp;
185
186 if (!ret)
187 ret = dp;
188 prev_sibling = dp;
189
Grant Likely5063e252014-10-03 16:28:27 +0100190 dp->child = of_pdt_build_tree(dp, of_pdt_prom_ops->getchild(node));
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000191
Andres Salomoned418502010-10-10 21:51:25 -0600192 if (of_pdt_build_more)
Grant Likely5063e252014-10-03 16:28:27 +0100193 of_pdt_build_more(dp);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000194
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600195 node = of_pdt_prom_ops->getsibling(node);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000196 }
197
198 return ret;
199}
200
Sam Ravnborg75c71842011-12-27 22:58:40 +0100201static void * __init kernel_tree_alloc(u64 size, u64 align)
Shawn Guo611cad72011-08-15 15:28:14 +0800202{
203 return prom_early_alloc(size);
204}
205
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600206void __init of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops)
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000207{
Andres Salomonf90c34bd2010-10-10 21:49:45 -0600208 BUG_ON(!ops);
209 of_pdt_prom_ops = ops;
210
Grant Likely5063e252014-10-03 16:28:27 +0100211 of_root = of_pdt_create_node(root_node, NULL);
Grant Likely5063e252014-10-03 16:28:27 +0100212 of_root->full_name = "/";
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000213
Grant Likely5063e252014-10-03 16:28:27 +0100214 of_root->child = of_pdt_build_tree(of_root,
215 of_pdt_prom_ops->getchild(of_root->phandle));
Shawn Guo611cad72011-08-15 15:28:14 +0800216
Robert P. J. Day4c7d6362013-05-30 05:38:08 -0400217 /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */
Shawn Guo611cad72011-08-15 15:28:14 +0800218 of_alias_scan(kernel_tree_alloc);
Andres Salomon9bdf6ba2010-08-30 03:57:28 +0000219}