Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 1 | /* pdt.c: OF PROM device tree support code. |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 2 | * |
| 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 Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 10 | * Adapted for multiple architectures by Andres Salomon <dilinger@queued.net> |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 11 | * |
| 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 Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 24 | #include <linux/of_pdt.h> |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 25 | |
| 26 | static struct of_pdt_ops *of_pdt_prom_ops __initdata; |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 27 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 28 | void __initdata (*of_pdt_build_more)(struct device_node *dp, |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 29 | struct device_node ***nextp); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 30 | |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 31 | #if defined(CONFIG_SPARC) |
| 32 | unsigned int of_pdt_unique_id __initdata; |
| 33 | |
| 34 | #define of_pdt_incr_unique_id(p) do { \ |
| 35 | (p)->unique_id = of_pdt_unique_id++; \ |
| 36 | } while (0) |
| 37 | |
Andres Salomon | a74ea43 | 2011-02-23 22:38:22 -0800 | [diff] [blame] | 38 | static char * __init of_pdt_build_full_name(struct device_node *dp) |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 39 | { |
Andres Salomon | a74ea43 | 2011-02-23 22:38:22 -0800 | [diff] [blame] | 40 | int len, ourlen, plen; |
| 41 | char *n; |
| 42 | |
| 43 | dp->path_component_name = build_path_component(dp); |
| 44 | |
| 45 | plen = strlen(dp->parent->full_name); |
| 46 | ourlen = strlen(dp->path_component_name); |
| 47 | len = ourlen + plen + 2; |
| 48 | |
| 49 | n = prom_early_alloc(len); |
| 50 | strcpy(n, dp->parent->full_name); |
| 51 | if (!of_node_is_root(dp->parent)) { |
| 52 | strcpy(n + plen, "/"); |
| 53 | plen++; |
| 54 | } |
| 55 | strcpy(n + plen, dp->path_component_name); |
| 56 | |
| 57 | return n; |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 58 | } |
| 59 | |
Andres Salomon | a74ea43 | 2011-02-23 22:38:22 -0800 | [diff] [blame] | 60 | #else /* CONFIG_SPARC */ |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 61 | |
| 62 | static inline void of_pdt_incr_unique_id(void *p) { } |
| 63 | static inline void irq_trans_init(struct device_node *dp) { } |
| 64 | |
Andres Salomon | a74ea43 | 2011-02-23 22:38:22 -0800 | [diff] [blame] | 65 | static char * __init of_pdt_build_full_name(struct device_node *dp) |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 66 | { |
Andres Salomon | a74ea43 | 2011-02-23 22:38:22 -0800 | [diff] [blame] | 67 | static int failsafe_id = 0; /* for generating unique names on failure */ |
| 68 | char *buf; |
| 69 | int len; |
| 70 | |
| 71 | if (of_pdt_prom_ops->pkg2path(dp->phandle, NULL, 0, &len)) |
| 72 | goto failsafe; |
| 73 | |
| 74 | buf = prom_early_alloc(len + 1); |
| 75 | if (of_pdt_prom_ops->pkg2path(dp->phandle, buf, len, &len)) |
| 76 | goto failsafe; |
| 77 | return buf; |
| 78 | |
| 79 | failsafe: |
| 80 | buf = prom_early_alloc(strlen(dp->parent->full_name) + |
| 81 | strlen(dp->name) + 16); |
| 82 | sprintf(buf, "%s/%s@unknown%i", |
| 83 | of_node_is_root(dp->parent) ? "" : dp->parent->full_name, |
| 84 | dp->name, failsafe_id++); |
| 85 | pr_err("%s: pkg2path failed; assigning %s\n", __func__, buf); |
| 86 | return buf; |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | #endif /* !CONFIG_SPARC */ |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 90 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 91 | static struct property * __init of_pdt_build_one_prop(phandle node, char *prev, |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 92 | char *special_name, |
| 93 | void *special_val, |
| 94 | int special_len) |
| 95 | { |
| 96 | static struct property *tmp = NULL; |
| 97 | struct property *p; |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 98 | int err; |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 99 | |
| 100 | if (tmp) { |
| 101 | p = tmp; |
| 102 | memset(p, 0, sizeof(*p) + 32); |
| 103 | tmp = NULL; |
| 104 | } else { |
| 105 | p = prom_early_alloc(sizeof(struct property) + 32); |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 106 | of_pdt_incr_unique_id(p); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | p->name = (char *) (p + 1); |
| 110 | if (special_name) { |
| 111 | strcpy(p->name, special_name); |
| 112 | p->length = special_len; |
| 113 | p->value = prom_early_alloc(special_len); |
| 114 | memcpy(p->value, special_val, special_len); |
| 115 | } else { |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 116 | err = of_pdt_prom_ops->nextprop(node, prev, p->name); |
| 117 | if (err) { |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 118 | tmp = p; |
| 119 | return NULL; |
| 120 | } |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 121 | p->length = of_pdt_prom_ops->getproplen(node, p->name); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 122 | if (p->length <= 0) { |
| 123 | p->length = 0; |
| 124 | } else { |
| 125 | int len; |
| 126 | |
| 127 | p->value = prom_early_alloc(p->length + 1); |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 128 | len = of_pdt_prom_ops->getproperty(node, p->name, |
| 129 | p->value, p->length); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 130 | if (len <= 0) |
| 131 | p->length = 0; |
| 132 | ((unsigned char *)p->value)[p->length] = '\0'; |
| 133 | } |
| 134 | } |
| 135 | return p; |
| 136 | } |
| 137 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 138 | static struct property * __init of_pdt_build_prop_list(phandle node) |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 139 | { |
| 140 | struct property *head, *tail; |
| 141 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 142 | head = tail = of_pdt_build_one_prop(node, NULL, |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 143 | ".node", &node, sizeof(node)); |
| 144 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 145 | tail->next = of_pdt_build_one_prop(node, NULL, NULL, NULL, 0); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 146 | tail = tail->next; |
| 147 | while(tail) { |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 148 | tail->next = of_pdt_build_one_prop(node, tail->name, |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 149 | NULL, NULL, 0); |
| 150 | tail = tail->next; |
| 151 | } |
| 152 | |
| 153 | return head; |
| 154 | } |
| 155 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 156 | static char * __init of_pdt_get_one_property(phandle node, const char *name) |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 157 | { |
| 158 | char *buf = "<NULL>"; |
| 159 | int len; |
| 160 | |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 161 | len = of_pdt_prom_ops->getproplen(node, name); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 162 | if (len > 0) { |
| 163 | buf = prom_early_alloc(len); |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 164 | len = of_pdt_prom_ops->getproperty(node, name, buf, len); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 165 | } |
| 166 | |
| 167 | return buf; |
| 168 | } |
| 169 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 170 | static struct device_node * __init of_pdt_create_node(phandle node, |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 171 | struct device_node *parent) |
| 172 | { |
| 173 | struct device_node *dp; |
| 174 | |
| 175 | if (!node) |
| 176 | return NULL; |
| 177 | |
| 178 | dp = prom_early_alloc(sizeof(*dp)); |
Pantelis Antoniou | 0829f6d | 2013-12-13 20:08:59 +0200 | [diff] [blame] | 179 | of_node_init(dp); |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 180 | of_pdt_incr_unique_id(dp); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 181 | dp->parent = parent; |
| 182 | |
Andres Salomon | a74ea43 | 2011-02-23 22:38:22 -0800 | [diff] [blame] | 183 | dp->name = of_pdt_get_one_property(node, "name"); |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 184 | dp->type = of_pdt_get_one_property(node, "device_type"); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 185 | dp->phandle = node; |
| 186 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 187 | dp->properties = of_pdt_build_prop_list(node); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 188 | |
| 189 | irq_trans_init(dp); |
| 190 | |
| 191 | return dp; |
| 192 | } |
| 193 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 194 | static struct device_node * __init of_pdt_build_tree(struct device_node *parent, |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 195 | phandle node, |
| 196 | struct device_node ***nextp) |
| 197 | { |
| 198 | struct device_node *ret = NULL, *prev_sibling = NULL; |
| 199 | struct device_node *dp; |
| 200 | |
| 201 | while (1) { |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 202 | dp = of_pdt_create_node(node, parent); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 203 | if (!dp) |
| 204 | break; |
| 205 | |
| 206 | if (prev_sibling) |
| 207 | prev_sibling->sibling = dp; |
| 208 | |
| 209 | if (!ret) |
| 210 | ret = dp; |
| 211 | prev_sibling = dp; |
| 212 | |
| 213 | *(*nextp) = dp; |
| 214 | *nextp = &dp->allnext; |
| 215 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 216 | dp->full_name = of_pdt_build_full_name(dp); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 217 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 218 | dp->child = of_pdt_build_tree(dp, |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 219 | of_pdt_prom_ops->getchild(node), nextp); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 220 | |
Andres Salomon | ed41850 | 2010-10-10 21:51:25 -0600 | [diff] [blame] | 221 | if (of_pdt_build_more) |
| 222 | of_pdt_build_more(dp, nextp); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 223 | |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 224 | node = of_pdt_prom_ops->getsibling(node); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | return ret; |
| 228 | } |
| 229 | |
Sam Ravnborg | 75c7184 | 2011-12-27 22:58:40 +0100 | [diff] [blame] | 230 | static void * __init kernel_tree_alloc(u64 size, u64 align) |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 231 | { |
| 232 | return prom_early_alloc(size); |
| 233 | } |
| 234 | |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 235 | void __init of_pdt_build_devicetree(phandle root_node, struct of_pdt_ops *ops) |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 236 | { |
| 237 | struct device_node **nextp; |
| 238 | |
Andres Salomon | f90c34bd | 2010-10-10 21:49:45 -0600 | [diff] [blame] | 239 | BUG_ON(!ops); |
| 240 | of_pdt_prom_ops = ops; |
| 241 | |
Randy Dunlap | 465aac6 | 2012-11-30 10:01:51 +0000 | [diff] [blame] | 242 | of_allnodes = of_pdt_create_node(root_node, NULL); |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 243 | #if defined(CONFIG_SPARC) |
Randy Dunlap | 465aac6 | 2012-11-30 10:01:51 +0000 | [diff] [blame] | 244 | of_allnodes->path_component_name = ""; |
Andres Salomon | 3cfc535 | 2010-10-10 21:42:33 -0600 | [diff] [blame] | 245 | #endif |
Randy Dunlap | 465aac6 | 2012-11-30 10:01:51 +0000 | [diff] [blame] | 246 | of_allnodes->full_name = "/"; |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 247 | |
Randy Dunlap | 465aac6 | 2012-11-30 10:01:51 +0000 | [diff] [blame] | 248 | nextp = &of_allnodes->allnext; |
| 249 | of_allnodes->child = of_pdt_build_tree(of_allnodes, |
| 250 | of_pdt_prom_ops->getchild(of_allnodes->phandle), &nextp); |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 251 | |
Robert P. J. Day | 4c7d636 | 2013-05-30 05:38:08 -0400 | [diff] [blame] | 252 | /* Get pointer to "/chosen" and "/aliases" nodes for use everywhere */ |
Shawn Guo | 611cad7 | 2011-08-15 15:28:14 +0800 | [diff] [blame] | 253 | of_alias_scan(kernel_tree_alloc); |
Andres Salomon | 9bdf6ba | 2010-08-30 03:57:28 +0000 | [diff] [blame] | 254 | } |