]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/sparc/kernel/prom_64.c
sparc: Commonize get_one_property() implementations.
[karo-tx-linux.git] / arch / sparc / kernel / prom_64.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 sparc64 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/module.h>
23 #include <linux/lmb.h>
24 #include <linux/of_device.h>
25
26 #include <asm/prom.h>
27 #include <asm/oplib.h>
28 #include <asm/irq.h>
29 #include <asm/asi.h>
30 #include <asm/upa.h>
31 #include <asm/smp.h>
32
33 #include "prom.h"
34
35 static unsigned int prom_early_allocated __initdata;
36
37 void * __init prom_early_alloc(unsigned long size)
38 {
39         unsigned long paddr = lmb_alloc(size, SMP_CACHE_BYTES);
40         void *ret;
41
42         if (!paddr) {
43                 prom_printf("prom_early_alloc(%lu) failed\n");
44                 prom_halt();
45         }
46
47         ret = __va(paddr);
48         memset(ret, 0, size);
49         prom_early_allocated += size;
50
51         return ret;
52 }
53
54 static int is_root_node(const struct device_node *dp)
55 {
56         if (!dp)
57                 return 0;
58
59         return (dp->parent == NULL);
60 }
61
62 /* The following routines deal with the black magic of fully naming a
63  * node.
64  *
65  * Certain well known named nodes are just the simple name string.
66  *
67  * Actual devices have an address specifier appended to the base name
68  * string, like this "foo@addr".  The "addr" can be in any number of
69  * formats, and the platform plus the type of the node determine the
70  * format and how it is constructed.
71  *
72  * For children of the ROOT node, the naming convention is fixed and
73  * determined by whether this is a sun4u or sun4v system.
74  *
75  * For children of other nodes, it is bus type specific.  So
76  * we walk up the tree until we discover a "device_type" property
77  * we recognize and we go from there.
78  *
79  * As an example, the boot device on my workstation has a full path:
80  *
81  *      /pci@1e,600000/ide@d/disk@0,0:c
82  */
83 static void __init sun4v_path_component(struct device_node *dp, char *tmp_buf)
84 {
85         struct linux_prom64_registers *regs;
86         struct property *rprop;
87         u32 high_bits, low_bits, type;
88
89         rprop = of_find_property(dp, "reg", NULL);
90         if (!rprop)
91                 return;
92
93         regs = rprop->value;
94         if (!is_root_node(dp->parent)) {
95                 sprintf(tmp_buf, "%s@%x,%x",
96                         dp->name,
97                         (unsigned int) (regs->phys_addr >> 32UL),
98                         (unsigned int) (regs->phys_addr & 0xffffffffUL));
99                 return;
100         }
101
102         type = regs->phys_addr >> 60UL;
103         high_bits = (regs->phys_addr >> 32UL) & 0x0fffffffUL;
104         low_bits = (regs->phys_addr & 0xffffffffUL);
105
106         if (type == 0 || type == 8) {
107                 const char *prefix = (type == 0) ? "m" : "i";
108
109                 if (low_bits)
110                         sprintf(tmp_buf, "%s@%s%x,%x",
111                                 dp->name, prefix,
112                                 high_bits, low_bits);
113                 else
114                         sprintf(tmp_buf, "%s@%s%x",
115                                 dp->name,
116                                 prefix,
117                                 high_bits);
118         } else if (type == 12) {
119                 sprintf(tmp_buf, "%s@%x",
120                         dp->name, high_bits);
121         }
122 }
123
124 static void __init sun4u_path_component(struct device_node *dp, char *tmp_buf)
125 {
126         struct linux_prom64_registers *regs;
127         struct property *prop;
128
129         prop = of_find_property(dp, "reg", NULL);
130         if (!prop)
131                 return;
132
133         regs = prop->value;
134         if (!is_root_node(dp->parent)) {
135                 sprintf(tmp_buf, "%s@%x,%x",
136                         dp->name,
137                         (unsigned int) (regs->phys_addr >> 32UL),
138                         (unsigned int) (regs->phys_addr & 0xffffffffUL));
139                 return;
140         }
141
142         prop = of_find_property(dp, "upa-portid", NULL);
143         if (!prop)
144                 prop = of_find_property(dp, "portid", NULL);
145         if (prop) {
146                 unsigned long mask = 0xffffffffUL;
147
148                 if (tlb_type >= cheetah)
149                         mask = 0x7fffff;
150
151                 sprintf(tmp_buf, "%s@%x,%x",
152                         dp->name,
153                         *(u32 *)prop->value,
154                         (unsigned int) (regs->phys_addr & mask));
155         }
156 }
157
158 /* "name@slot,offset"  */
159 static void __init sbus_path_component(struct device_node *dp, char *tmp_buf)
160 {
161         struct linux_prom_registers *regs;
162         struct property *prop;
163
164         prop = of_find_property(dp, "reg", NULL);
165         if (!prop)
166                 return;
167
168         regs = prop->value;
169         sprintf(tmp_buf, "%s@%x,%x",
170                 dp->name,
171                 regs->which_io,
172                 regs->phys_addr);
173 }
174
175 /* "name@devnum[,func]" */
176 static void __init pci_path_component(struct device_node *dp, char *tmp_buf)
177 {
178         struct linux_prom_pci_registers *regs;
179         struct property *prop;
180         unsigned int devfn;
181
182         prop = of_find_property(dp, "reg", NULL);
183         if (!prop)
184                 return;
185
186         regs = prop->value;
187         devfn = (regs->phys_hi >> 8) & 0xff;
188         if (devfn & 0x07) {
189                 sprintf(tmp_buf, "%s@%x,%x",
190                         dp->name,
191                         devfn >> 3,
192                         devfn & 0x07);
193         } else {
194                 sprintf(tmp_buf, "%s@%x",
195                         dp->name,
196                         devfn >> 3);
197         }
198 }
199
200 /* "name@UPA_PORTID,offset" */
201 static void __init upa_path_component(struct device_node *dp, char *tmp_buf)
202 {
203         struct linux_prom64_registers *regs;
204         struct property *prop;
205
206         prop = of_find_property(dp, "reg", NULL);
207         if (!prop)
208                 return;
209
210         regs = prop->value;
211
212         prop = of_find_property(dp, "upa-portid", NULL);
213         if (!prop)
214                 return;
215
216         sprintf(tmp_buf, "%s@%x,%x",
217                 dp->name,
218                 *(u32 *) prop->value,
219                 (unsigned int) (regs->phys_addr & 0xffffffffUL));
220 }
221
222 /* "name@reg" */
223 static void __init vdev_path_component(struct device_node *dp, char *tmp_buf)
224 {
225         struct property *prop;
226         u32 *regs;
227
228         prop = of_find_property(dp, "reg", NULL);
229         if (!prop)
230                 return;
231
232         regs = prop->value;
233
234         sprintf(tmp_buf, "%s@%x", dp->name, *regs);
235 }
236
237 /* "name@addrhi,addrlo" */
238 static void __init ebus_path_component(struct device_node *dp, char *tmp_buf)
239 {
240         struct linux_prom64_registers *regs;
241         struct property *prop;
242
243         prop = of_find_property(dp, "reg", NULL);
244         if (!prop)
245                 return;
246
247         regs = prop->value;
248
249         sprintf(tmp_buf, "%s@%x,%x",
250                 dp->name,
251                 (unsigned int) (regs->phys_addr >> 32UL),
252                 (unsigned int) (regs->phys_addr & 0xffffffffUL));
253 }
254
255 /* "name@bus,addr" */
256 static void __init i2c_path_component(struct device_node *dp, char *tmp_buf)
257 {
258         struct property *prop;
259         u32 *regs;
260
261         prop = of_find_property(dp, "reg", NULL);
262         if (!prop)
263                 return;
264
265         regs = prop->value;
266
267         /* This actually isn't right... should look at the #address-cells
268          * property of the i2c bus node etc. etc.
269          */
270         sprintf(tmp_buf, "%s@%x,%x",
271                 dp->name, regs[0], regs[1]);
272 }
273
274 /* "name@reg0[,reg1]" */
275 static void __init usb_path_component(struct device_node *dp, char *tmp_buf)
276 {
277         struct property *prop;
278         u32 *regs;
279
280         prop = of_find_property(dp, "reg", NULL);
281         if (!prop)
282                 return;
283
284         regs = prop->value;
285
286         if (prop->length == sizeof(u32) || regs[1] == 1) {
287                 sprintf(tmp_buf, "%s@%x",
288                         dp->name, regs[0]);
289         } else {
290                 sprintf(tmp_buf, "%s@%x,%x",
291                         dp->name, regs[0], regs[1]);
292         }
293 }
294
295 /* "name@reg0reg1[,reg2reg3]" */
296 static void __init ieee1394_path_component(struct device_node *dp, char *tmp_buf)
297 {
298         struct property *prop;
299         u32 *regs;
300
301         prop = of_find_property(dp, "reg", NULL);
302         if (!prop)
303                 return;
304
305         regs = prop->value;
306
307         if (regs[2] || regs[3]) {
308                 sprintf(tmp_buf, "%s@%08x%08x,%04x%08x",
309                         dp->name, regs[0], regs[1], regs[2], regs[3]);
310         } else {
311                 sprintf(tmp_buf, "%s@%08x%08x",
312                         dp->name, regs[0], regs[1]);
313         }
314 }
315
316 static void __init __build_path_component(struct device_node *dp, char *tmp_buf)
317 {
318         struct device_node *parent = dp->parent;
319
320         if (parent != NULL) {
321                 if (!strcmp(parent->type, "pci") ||
322                     !strcmp(parent->type, "pciex")) {
323                         pci_path_component(dp, tmp_buf);
324                         return;
325                 }
326                 if (!strcmp(parent->type, "sbus")) {
327                         sbus_path_component(dp, tmp_buf);
328                         return;
329                 }
330                 if (!strcmp(parent->type, "upa")) {
331                         upa_path_component(dp, tmp_buf);
332                         return;
333                 }
334                 if (!strcmp(parent->type, "ebus")) {
335                         ebus_path_component(dp, tmp_buf);
336                         return;
337                 }
338                 if (!strcmp(parent->name, "usb") ||
339                     !strcmp(parent->name, "hub")) {
340                         usb_path_component(dp, tmp_buf);
341                         return;
342                 }
343                 if (!strcmp(parent->type, "i2c")) {
344                         i2c_path_component(dp, tmp_buf);
345                         return;
346                 }
347                 if (!strcmp(parent->type, "firewire")) {
348                         ieee1394_path_component(dp, tmp_buf);
349                         return;
350                 }
351                 if (!strcmp(parent->type, "virtual-devices")) {
352                         vdev_path_component(dp, tmp_buf);
353                         return;
354                 }
355                 /* "isa" is handled with platform naming */
356         }
357
358         /* Use platform naming convention.  */
359         if (tlb_type == hypervisor) {
360                 sun4v_path_component(dp, tmp_buf);
361                 return;
362         } else {
363                 sun4u_path_component(dp, tmp_buf);
364         }
365 }
366
367 static char * __init build_path_component(struct device_node *dp)
368 {
369         char tmp_buf[64], *n;
370
371         tmp_buf[0] = '\0';
372         __build_path_component(dp, tmp_buf);
373         if (tmp_buf[0] == '\0')
374                 strcpy(tmp_buf, dp->name);
375
376         n = prom_early_alloc(strlen(tmp_buf) + 1);
377         strcpy(n, tmp_buf);
378
379         return n;
380 }
381
382 static char * __init build_full_name(struct device_node *dp)
383 {
384         int len, ourlen, plen;
385         char *n;
386
387         plen = strlen(dp->parent->full_name);
388         ourlen = strlen(dp->path_component_name);
389         len = ourlen + plen + 2;
390
391         n = prom_early_alloc(len);
392         strcpy(n, dp->parent->full_name);
393         if (!is_root_node(dp->parent)) {
394                 strcpy(n + plen, "/");
395                 plen++;
396         }
397         strcpy(n + plen, dp->path_component_name);
398
399         return n;
400 }
401
402 static char * __init get_one_property(phandle node, const char *name)
403 {
404         char *buf = "<NULL>";
405         int len;
406
407         len = prom_getproplen(node, name);
408         if (len > 0) {
409                 buf = prom_early_alloc(len);
410                 len = prom_getproperty(node, name, buf, len);
411         }
412
413         return buf;
414 }
415
416 static struct device_node * __init create_node(phandle node, struct device_node *parent)
417 {
418         struct device_node *dp;
419
420         if (!node)
421                 return NULL;
422
423         dp = prom_early_alloc(sizeof(*dp));
424         dp->unique_id = prom_unique_id++;
425         dp->parent = parent;
426
427         kref_init(&dp->kref);
428
429         dp->name = get_one_property(node, "name");
430         dp->type = get_one_property(node, "device_type");
431         dp->node = node;
432
433         dp->properties = build_prop_list(node);
434
435         irq_trans_init(dp);
436
437         return dp;
438 }
439
440 static struct device_node * __init build_tree(struct device_node *parent, phandle node, struct device_node ***nextp)
441 {
442         struct device_node *ret = NULL, *prev_sibling = NULL;
443         struct device_node *dp;
444
445         while (1) {
446                 dp = create_node(node, parent);
447                 if (!dp)
448                         break;
449
450                 if (prev_sibling)
451                         prev_sibling->sibling = dp;
452
453                 if (!ret)
454                         ret = dp;
455                 prev_sibling = dp;
456
457                 *(*nextp) = dp;
458                 *nextp = &dp->allnext;
459
460                 dp->path_component_name = build_path_component(dp);
461                 dp->full_name = build_full_name(dp);
462
463                 dp->child = build_tree(dp, prom_getchild(node), nextp);
464
465                 node = prom_getsibling(node);
466         }
467
468         return ret;
469 }
470
471 static const char *get_mid_prop(void)
472 {
473         return (tlb_type == spitfire ? "upa-portid" : "portid");
474 }
475
476 struct device_node *of_find_node_by_cpuid(int cpuid)
477 {
478         struct device_node *dp;
479         const char *mid_prop = get_mid_prop();
480
481         for_each_node_by_type(dp, "cpu") {
482                 int id = of_getintprop_default(dp, mid_prop, -1);
483                 const char *this_mid_prop = mid_prop;
484
485                 if (id < 0) {
486                         this_mid_prop = "cpuid";
487                         id = of_getintprop_default(dp, this_mid_prop, -1);
488                 }
489
490                 if (id < 0) {
491                         prom_printf("OF: Serious problem, cpu lacks "
492                                     "%s property", this_mid_prop);
493                         prom_halt();
494                 }
495                 if (cpuid == id)
496                         return dp;
497         }
498         return NULL;
499 }
500
501 static void __init of_fill_in_cpu_data(void)
502 {
503         struct device_node *dp;
504         const char *mid_prop = get_mid_prop();
505
506         ncpus_probed = 0;
507         for_each_node_by_type(dp, "cpu") {
508                 int cpuid = of_getintprop_default(dp, mid_prop, -1);
509                 const char *this_mid_prop = mid_prop;
510                 struct device_node *portid_parent;
511                 int portid = -1;
512
513                 portid_parent = NULL;
514                 if (cpuid < 0) {
515                         this_mid_prop = "cpuid";
516                         cpuid = of_getintprop_default(dp, this_mid_prop, -1);
517                         if (cpuid >= 0) {
518                                 int limit = 2;
519
520                                 portid_parent = dp;
521                                 while (limit--) {
522                                         portid_parent = portid_parent->parent;
523                                         if (!portid_parent)
524                                                 break;
525                                         portid = of_getintprop_default(portid_parent,
526                                                                        "portid", -1);
527                                         if (portid >= 0)
528                                                 break;
529                                 }
530                         }
531                 }
532
533                 if (cpuid < 0) {
534                         prom_printf("OF: Serious problem, cpu lacks "
535                                     "%s property", this_mid_prop);
536                         prom_halt();
537                 }
538
539                 ncpus_probed++;
540
541 #ifdef CONFIG_SMP
542                 if (cpuid >= NR_CPUS) {
543                         printk(KERN_WARNING "Ignoring CPU %d which is "
544                                ">= NR_CPUS (%d)\n",
545                                cpuid, NR_CPUS);
546                         continue;
547                 }
548 #else
549                 /* On uniprocessor we only want the values for the
550                  * real physical cpu the kernel booted onto, however
551                  * cpu_data() only has one entry at index 0.
552                  */
553                 if (cpuid != real_hard_smp_processor_id())
554                         continue;
555                 cpuid = 0;
556 #endif
557
558                 cpu_data(cpuid).clock_tick =
559                         of_getintprop_default(dp, "clock-frequency", 0);
560
561                 if (portid_parent) {
562                         cpu_data(cpuid).dcache_size =
563                                 of_getintprop_default(dp, "l1-dcache-size",
564                                                       16 * 1024);
565                         cpu_data(cpuid).dcache_line_size =
566                                 of_getintprop_default(dp, "l1-dcache-line-size",
567                                                       32);
568                         cpu_data(cpuid).icache_size =
569                                 of_getintprop_default(dp, "l1-icache-size",
570                                                       8 * 1024);
571                         cpu_data(cpuid).icache_line_size =
572                                 of_getintprop_default(dp, "l1-icache-line-size",
573                                                       32);
574                         cpu_data(cpuid).ecache_size =
575                                 of_getintprop_default(dp, "l2-cache-size", 0);
576                         cpu_data(cpuid).ecache_line_size =
577                                 of_getintprop_default(dp, "l2-cache-line-size", 0);
578                         if (!cpu_data(cpuid).ecache_size ||
579                             !cpu_data(cpuid).ecache_line_size) {
580                                 cpu_data(cpuid).ecache_size =
581                                         of_getintprop_default(portid_parent,
582                                                               "l2-cache-size",
583                                                               (4 * 1024 * 1024));
584                                 cpu_data(cpuid).ecache_line_size =
585                                         of_getintprop_default(portid_parent,
586                                                               "l2-cache-line-size", 64);
587                         }
588
589                         cpu_data(cpuid).core_id = portid + 1;
590                         cpu_data(cpuid).proc_id = portid;
591 #ifdef CONFIG_SMP
592                         sparc64_multi_core = 1;
593 #endif
594                 } else {
595                         cpu_data(cpuid).dcache_size =
596                                 of_getintprop_default(dp, "dcache-size", 16 * 1024);
597                         cpu_data(cpuid).dcache_line_size =
598                                 of_getintprop_default(dp, "dcache-line-size", 32);
599
600                         cpu_data(cpuid).icache_size =
601                                 of_getintprop_default(dp, "icache-size", 16 * 1024);
602                         cpu_data(cpuid).icache_line_size =
603                                 of_getintprop_default(dp, "icache-line-size", 32);
604
605                         cpu_data(cpuid).ecache_size =
606                                 of_getintprop_default(dp, "ecache-size",
607                                                       (4 * 1024 * 1024));
608                         cpu_data(cpuid).ecache_line_size =
609                                 of_getintprop_default(dp, "ecache-line-size", 64);
610
611                         cpu_data(cpuid).core_id = 0;
612                         cpu_data(cpuid).proc_id = -1;
613                 }
614
615 #ifdef CONFIG_SMP
616                 cpu_set(cpuid, cpu_present_map);
617                 cpu_set(cpuid, cpu_possible_map);
618 #endif
619         }
620
621         smp_fill_in_sib_core_maps();
622 }
623
624 struct device_node *of_console_device;
625 EXPORT_SYMBOL(of_console_device);
626
627 char *of_console_path;
628 EXPORT_SYMBOL(of_console_path);
629
630 char *of_console_options;
631 EXPORT_SYMBOL(of_console_options);
632
633 static void __init of_console_init(void)
634 {
635         char *msg = "OF stdout device is: %s\n";
636         struct device_node *dp;
637         const char *type;
638         phandle node;
639
640         of_console_path = prom_early_alloc(256);
641         if (prom_ihandle2path(prom_stdout, of_console_path, 256) < 0) {
642                 prom_printf("Cannot obtain path of stdout.\n");
643                 prom_halt();
644         }
645         of_console_options = strrchr(of_console_path, ':');
646         if (of_console_options) {
647                 of_console_options++;
648                 if (*of_console_options == '\0')
649                         of_console_options = NULL;
650         }
651
652         node = prom_inst2pkg(prom_stdout);
653         if (!node) {
654                 prom_printf("Cannot resolve stdout node from "
655                             "instance %08x.\n", prom_stdout);
656                 prom_halt();
657         }
658
659         dp = of_find_node_by_phandle(node);
660         type = of_get_property(dp, "device_type", NULL);
661         if (!type) {
662                 prom_printf("Console stdout lacks device_type property.\n");
663                 prom_halt();
664         }
665
666         if (strcmp(type, "display") && strcmp(type, "serial")) {
667                 prom_printf("Console device_type is neither display "
668                             "nor serial.\n");
669                 prom_halt();
670         }
671
672         of_console_device = dp;
673
674         printk(msg, of_console_path);
675 }
676
677 void __init prom_build_devicetree(void)
678 {
679         struct device_node **nextp;
680
681         allnodes = create_node(prom_root_node, NULL);
682         allnodes->path_component_name = "";
683         allnodes->full_name = "/";
684
685         nextp = &allnodes->allnext;
686         allnodes->child = build_tree(allnodes,
687                                      prom_getchild(allnodes->node),
688                                      &nextp);
689         of_console_init();
690
691         printk("PROM: Built device tree with %u bytes of memory.\n",
692                prom_early_allocated);
693
694         if (tlb_type != hypervisor)
695                 of_fill_in_cpu_data();
696 }