a9859d2b256590bf26755ba29f0e94e3aa8770b7
[safe/jmp/linux-2.6] / arch / sparc / kernel / prom_32.c
1 /*
2  * Procedures for creating, accessing and interpreting the device tree.
3  *
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 sparc32 by David S. Miller davem@davemloft.net
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/types.h>
20 #include <linux/string.h>
21 #include <linux/mm.h>
22 #include <linux/bootmem.h>
23 #include <linux/module.h>
24
25 #include <asm/prom.h>
26 #include <asm/oplib.h>
27
28 #include "prom.h"
29
30 static unsigned int prom_early_allocated;
31
32 void * __init prom_early_alloc(unsigned long size)
33 {
34         void *ret;
35
36         ret = __alloc_bootmem(size, SMP_CACHE_BYTES, 0UL);
37         if (ret != NULL)
38                 memset(ret, 0, size);
39
40         prom_early_allocated += size;
41
42         return ret;
43 }
44
45 static int is_root_node(const struct device_node *dp)
46 {
47         if (!dp)
48                 return 0;
49
50         return (dp->parent == NULL);
51 }
52
53 /* The following routines deal with the black magic of fully naming a
54  * node.
55  *
56  * Certain well known named nodes are just the simple name string.
57  *
58  * Actual devices have an address specifier appended to the base name
59  * string, like this "foo@addr".  The "addr" can be in any number of
60  * formats, and the platform plus the type of the node determine the
61  * format and how it is constructed.
62  *
63  * For children of the ROOT node, the naming convention is fixed and
64  * determined by whether this is a sun4u or sun4v system.
65  *
66  * For children of other nodes, it is bus type specific.  So
67  * we walk up the tree until we discover a "device_type" property
68  * we recognize and we go from there.
69  */
70 static void __init sparc32_path_component(struct device_node *dp, char *tmp_buf)
71 {
72         struct linux_prom_registers *regs;
73         struct property *rprop;
74
75         rprop = of_find_property(dp, "reg", NULL);
76         if (!rprop)
77                 return;
78
79         regs = rprop->value;
80         sprintf(tmp_buf, "%s@%x,%x",
81                 dp->name,
82                 regs->which_io, regs->phys_addr);
83 }
84
85 /* "name@slot,offset"  */
86 static void __init sbus_path_component(struct device_node *dp, char *tmp_buf)
87 {
88         struct linux_prom_registers *regs;
89         struct property *prop;
90
91         prop = of_find_property(dp, "reg", NULL);
92         if (!prop)
93                 return;
94
95         regs = prop->value;
96         sprintf(tmp_buf, "%s@%x,%x",
97                 dp->name,
98                 regs->which_io,
99                 regs->phys_addr);
100 }
101
102 /* "name@devnum[,func]" */
103 static void __init pci_path_component(struct device_node *dp, char *tmp_buf)
104 {
105         struct linux_prom_pci_registers *regs;
106         struct property *prop;
107         unsigned int devfn;
108
109         prop = of_find_property(dp, "reg", NULL);
110         if (!prop)
111                 return;
112
113         regs = prop->value;
114         devfn = (regs->phys_hi >> 8) & 0xff;
115         if (devfn & 0x07) {
116                 sprintf(tmp_buf, "%s@%x,%x",
117                         dp->name,
118                         devfn >> 3,
119                         devfn & 0x07);
120         } else {
121                 sprintf(tmp_buf, "%s@%x",
122                         dp->name,
123                         devfn >> 3);
124         }
125 }
126
127 /* "name@addrhi,addrlo" */
128 static void __init ebus_path_component(struct device_node *dp, char *tmp_buf)
129 {
130         struct linux_prom_registers *regs;
131         struct property *prop;
132
133         prop = of_find_property(dp, "reg", NULL);
134         if (!prop)
135                 return;
136
137         regs = prop->value;
138
139         sprintf(tmp_buf, "%s@%x,%x",
140                 dp->name,
141                 regs->which_io, regs->phys_addr);
142 }
143
144 static void __init __build_path_component(struct device_node *dp, char *tmp_buf)
145 {
146         struct device_node *parent = dp->parent;
147
148         if (parent != NULL) {
149                 if (!strcmp(parent->type, "pci") ||
150                     !strcmp(parent->type, "pciex"))
151                         return pci_path_component(dp, tmp_buf);
152                 if (!strcmp(parent->type, "sbus"))
153                         return sbus_path_component(dp, tmp_buf);
154                 if (!strcmp(parent->type, "ebus"))
155                         return ebus_path_component(dp, tmp_buf);
156
157                 /* "isa" is handled with platform naming */
158         }
159
160         /* Use platform naming convention.  */
161         return sparc32_path_component(dp, tmp_buf);
162 }
163
164 static char * __init build_path_component(struct device_node *dp)
165 {
166         char tmp_buf[64], *n;
167
168         tmp_buf[0] = '\0';
169         __build_path_component(dp, tmp_buf);
170         if (tmp_buf[0] == '\0')
171                 strcpy(tmp_buf, dp->name);
172
173         n = prom_early_alloc(strlen(tmp_buf) + 1);
174         strcpy(n, tmp_buf);
175
176         return n;
177 }
178
179 static char * __init build_full_name(struct device_node *dp)
180 {
181         int len, ourlen, plen;
182         char *n;
183
184         plen = strlen(dp->parent->full_name);
185         ourlen = strlen(dp->path_component_name);
186         len = ourlen + plen + 2;
187
188         n = prom_early_alloc(len);
189         strcpy(n, dp->parent->full_name);
190         if (!is_root_node(dp->parent)) {
191                 strcpy(n + plen, "/");
192                 plen++;
193         }
194         strcpy(n + plen, dp->path_component_name);
195
196         return n;
197 }
198
199 static char * __init get_one_property(phandle node, char *name)
200 {
201         char *buf = "<NULL>";
202         int len;
203
204         len = prom_getproplen(node, name);
205         if (len > 0) {
206                 buf = prom_early_alloc(len);
207                 len = prom_getproperty(node, name, buf, len);
208         }
209
210         return buf;
211 }
212
213 static struct device_node * __init create_node(phandle node)
214 {
215         struct device_node *dp;
216
217         if (!node)
218                 return NULL;
219
220         dp = prom_early_alloc(sizeof(*dp));
221         dp->unique_id = prom_unique_id++;
222
223         kref_init(&dp->kref);
224
225         dp->name = get_one_property(node, "name");
226         dp->type = get_one_property(node, "device_type");
227         dp->node = node;
228
229         /* Build interrupts later... */
230
231         dp->properties = build_prop_list(node);
232
233         return dp;
234 }
235
236 static struct device_node * __init build_tree(struct device_node *parent, phandle node, struct device_node ***nextp)
237 {
238         struct device_node *dp;
239
240         dp = create_node(node);
241         if (dp) {
242                 *(*nextp) = dp;
243                 *nextp = &dp->allnext;
244
245                 dp->parent = parent;
246                 dp->path_component_name = build_path_component(dp);
247                 dp->full_name = build_full_name(dp);
248
249                 dp->child = build_tree(dp, prom_getchild(node), nextp);
250
251                 dp->sibling = build_tree(parent, prom_getsibling(node), nextp);
252         }
253
254         return dp;
255 }
256
257 struct device_node *of_console_device;
258 EXPORT_SYMBOL(of_console_device);
259
260 char *of_console_path;
261 EXPORT_SYMBOL(of_console_path);
262
263 char *of_console_options;
264 EXPORT_SYMBOL(of_console_options);
265
266 extern void restore_current(void);
267
268 static void __init of_console_init(void)
269 {
270         char *msg = "OF stdout device is: %s\n";
271         struct device_node *dp;
272         unsigned long flags;
273         const char *type;
274         phandle node;
275         int skip, tmp, fd;
276
277         of_console_path = prom_early_alloc(256);
278
279         switch (prom_vers) {
280         case PROM_V0:
281                 skip = 0;
282                 switch (*romvec->pv_stdout) {
283                 case PROMDEV_SCREEN:
284                         type = "display";
285                         break;
286
287                 case PROMDEV_TTYB:
288                         skip = 1;
289                         /* FALLTHRU */
290
291                 case PROMDEV_TTYA:
292                         type = "serial";
293                         break;
294
295                 default:
296                         prom_printf("Invalid PROM_V0 stdout value %u\n",
297                                     *romvec->pv_stdout);
298                         prom_halt();
299                 }
300
301                 tmp = skip;
302                 for_each_node_by_type(dp, type) {
303                         if (!tmp--)
304                                 break;
305                 }
306                 if (!dp) {
307                         prom_printf("Cannot find PROM_V0 console node.\n");
308                         prom_halt();
309                 }
310                 of_console_device = dp;
311
312                 strcpy(of_console_path, dp->full_name);
313                 if (!strcmp(type, "serial")) {
314                         strcat(of_console_path,
315                                (skip ? ":b" : ":a"));
316                 }
317                 break;
318
319         default:
320         case PROM_V2:
321         case PROM_V3:
322                 fd = *romvec->pv_v2bootargs.fd_stdout;
323
324                 spin_lock_irqsave(&prom_lock, flags);
325                 node = (*romvec->pv_v2devops.v2_inst2pkg)(fd);
326                 restore_current();
327                 spin_unlock_irqrestore(&prom_lock, flags);
328
329                 if (!node) {
330                         prom_printf("Cannot resolve stdout node from "
331                                     "instance %08x.\n", fd);
332                         prom_halt();
333                 }
334                 dp = of_find_node_by_phandle(node);
335                 type = of_get_property(dp, "device_type", NULL);
336
337                 if (!type) {
338                         prom_printf("Console stdout lacks "
339                                     "device_type property.\n");
340                         prom_halt();
341                 }
342
343                 if (strcmp(type, "display") && strcmp(type, "serial")) {
344                         prom_printf("Console device_type is neither display "
345                                     "nor serial.\n");
346                         prom_halt();
347                 }
348
349                 of_console_device = dp;
350
351                 if (prom_vers == PROM_V2) {
352                         strcpy(of_console_path, dp->full_name);
353                         switch (*romvec->pv_stdout) {
354                         case PROMDEV_TTYA:
355                                 strcat(of_console_path, ":a");
356                                 break;
357                         case PROMDEV_TTYB:
358                                 strcat(of_console_path, ":b");
359                                 break;
360                         }
361                 } else {
362                         const char *path;
363
364                         dp = of_find_node_by_path("/");
365                         path = of_get_property(dp, "stdout-path", NULL);
366                         if (!path) {
367                                 prom_printf("No stdout-path in root node.\n");
368                                 prom_halt();
369                         }
370                         strcpy(of_console_path, path);
371                 }
372                 break;
373         }
374
375         of_console_options = strrchr(of_console_path, ':');
376         if (of_console_options) {
377                 of_console_options++;
378                 if (*of_console_options == '\0')
379                         of_console_options = NULL;
380         }
381
382         prom_printf(msg, of_console_path);
383         printk(msg, of_console_path);
384 }
385
386 void __init prom_build_devicetree(void)
387 {
388         struct device_node **nextp;
389
390         allnodes = create_node(prom_root_node);
391         allnodes->path_component_name = "";
392         allnodes->full_name = "/";
393
394         nextp = &allnodes->allnext;
395         allnodes->child = build_tree(allnodes,
396                                      prom_getchild(allnodes->node),
397                                      &nextp);
398         of_console_init();
399
400         printk("PROM: Built device tree with %u bytes of memory.\n",
401                prom_early_allocated);
402 }