2 * Procedures for creating, accessing and interpreting the device tree.
4 * Paul Mackerras August 1996.
5 * Copyright (C) 1996-2005 Paul Mackerras.
7 * Adapted for 64bit PowerPC by Dave Engebretsen and Peter Bergner.
8 * {engebret|bergner}@us.ibm.com
10 * Adapted for sparc32 by David S. Miller davem@davemloft.net
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.
18 #include <linux/kernel.h>
19 #include <linux/types.h>
20 #include <linux/string.h>
22 #include <linux/bootmem.h>
23 #include <linux/module.h>
26 #include <asm/oplib.h>
30 void * __init prom_early_alloc(unsigned long size)
34 ret = __alloc_bootmem(size, SMP_CACHE_BYTES, 0UL);
38 prom_early_allocated += size;
43 /* The following routines deal with the black magic of fully naming a
46 * Certain well known named nodes are just the simple name string.
48 * Actual devices have an address specifier appended to the base name
49 * string, like this "foo@addr". The "addr" can be in any number of
50 * formats, and the platform plus the type of the node determine the
51 * format and how it is constructed.
53 * For children of the ROOT node, the naming convention is fixed and
54 * determined by whether this is a sun4u or sun4v system.
56 * For children of other nodes, it is bus type specific. So
57 * we walk up the tree until we discover a "device_type" property
58 * we recognize and we go from there.
60 static void __init sparc32_path_component(struct device_node *dp, char *tmp_buf)
62 struct linux_prom_registers *regs;
63 struct property *rprop;
65 rprop = of_find_property(dp, "reg", NULL);
70 sprintf(tmp_buf, "%s@%x,%x",
72 regs->which_io, regs->phys_addr);
75 /* "name@slot,offset" */
76 static void __init sbus_path_component(struct device_node *dp, char *tmp_buf)
78 struct linux_prom_registers *regs;
79 struct property *prop;
81 prop = of_find_property(dp, "reg", NULL);
86 sprintf(tmp_buf, "%s@%x,%x",
92 /* "name@devnum[,func]" */
93 static void __init pci_path_component(struct device_node *dp, char *tmp_buf)
95 struct linux_prom_pci_registers *regs;
96 struct property *prop;
99 prop = of_find_property(dp, "reg", NULL);
104 devfn = (regs->phys_hi >> 8) & 0xff;
106 sprintf(tmp_buf, "%s@%x,%x",
111 sprintf(tmp_buf, "%s@%x",
117 /* "name@addrhi,addrlo" */
118 static void __init ebus_path_component(struct device_node *dp, char *tmp_buf)
120 struct linux_prom_registers *regs;
121 struct property *prop;
123 prop = of_find_property(dp, "reg", NULL);
129 sprintf(tmp_buf, "%s@%x,%x",
131 regs->which_io, regs->phys_addr);
134 static void __init __build_path_component(struct device_node *dp, char *tmp_buf)
136 struct device_node *parent = dp->parent;
138 if (parent != NULL) {
139 if (!strcmp(parent->type, "pci") ||
140 !strcmp(parent->type, "pciex"))
141 return pci_path_component(dp, tmp_buf);
142 if (!strcmp(parent->type, "sbus"))
143 return sbus_path_component(dp, tmp_buf);
144 if (!strcmp(parent->type, "ebus"))
145 return ebus_path_component(dp, tmp_buf);
147 /* "isa" is handled with platform naming */
150 /* Use platform naming convention. */
151 return sparc32_path_component(dp, tmp_buf);
154 char * __init build_path_component(struct device_node *dp)
156 char tmp_buf[64], *n;
159 __build_path_component(dp, tmp_buf);
160 if (tmp_buf[0] == '\0')
161 strcpy(tmp_buf, dp->name);
163 n = prom_early_alloc(strlen(tmp_buf) + 1);
169 extern void restore_current(void);
171 void __init of_console_init(void)
173 char *msg = "OF stdout device is: %s\n";
174 struct device_node *dp;
180 of_console_path = prom_early_alloc(256);
185 switch (*romvec->pv_stdout) {
199 prom_printf("Invalid PROM_V0 stdout value %u\n",
205 for_each_node_by_type(dp, type) {
210 prom_printf("Cannot find PROM_V0 console node.\n");
213 of_console_device = dp;
215 strcpy(of_console_path, dp->full_name);
216 if (!strcmp(type, "serial")) {
217 strcat(of_console_path,
218 (skip ? ":b" : ":a"));
225 fd = *romvec->pv_v2bootargs.fd_stdout;
227 spin_lock_irqsave(&prom_lock, flags);
228 node = (*romvec->pv_v2devops.v2_inst2pkg)(fd);
230 spin_unlock_irqrestore(&prom_lock, flags);
233 prom_printf("Cannot resolve stdout node from "
234 "instance %08x.\n", fd);
237 dp = of_find_node_by_phandle(node);
238 type = of_get_property(dp, "device_type", NULL);
241 prom_printf("Console stdout lacks "
242 "device_type property.\n");
246 if (strcmp(type, "display") && strcmp(type, "serial")) {
247 prom_printf("Console device_type is neither display "
252 of_console_device = dp;
254 if (prom_vers == PROM_V2) {
255 strcpy(of_console_path, dp->full_name);
256 switch (*romvec->pv_stdout) {
258 strcat(of_console_path, ":a");
261 strcat(of_console_path, ":b");
267 dp = of_find_node_by_path("/");
268 path = of_get_property(dp, "stdout-path", NULL);
270 prom_printf("No stdout-path in root node.\n");
273 strcpy(of_console_path, path);
278 of_console_options = strrchr(of_console_path, ':');
279 if (of_console_options) {
280 of_console_options++;
281 if (*of_console_options == '\0')
282 of_console_options = NULL;
285 prom_printf(msg, of_console_path);
286 printk(msg, of_console_path);
289 void __init of_fill_in_cpu_data(void)
293 void __init irq_trans_init(struct device_node *dp)