1 /* devices.c: Initial scan of the prom device tree for important
2 * Sparc device nodes which we need to find.
4 * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
7 #include <linux/kernel.h>
8 #include <linux/threads.h>
9 #include <linux/init.h>
10 #include <linux/ioport.h>
11 #include <linux/string.h>
12 #include <linux/spinlock.h>
13 #include <linux/errno.h>
14 #include <linux/bootmem.h>
17 #include <asm/oplib.h>
18 #include <asm/system.h>
20 #include <asm/spitfire.h>
21 #include <asm/timer.h>
22 #include <asm/cpudata.h>
24 /* Used to synchronize acceses to NatSemi SUPER I/O chip configure
25 * operations in asm/ns87303.h
27 DEFINE_SPINLOCK(ns87303_lock);
29 extern void cpu_probe(void);
30 extern void central_probe(void);
32 static const char *cpu_mid_prop(void)
34 if (tlb_type == spitfire)
39 static int get_cpu_mid(struct device_node *dp)
41 struct property *prop;
43 if (tlb_type == hypervisor) {
44 struct linux_prom64_registers *reg;
47 prop = of_find_property(dp, "cpuid", &len);
49 return *(int *) prop->value;
51 prop = of_find_property(dp, "reg", NULL);
53 return (reg[0].phys_addr >> 32) & 0x0fffffffUL;
55 const char *prop_name = cpu_mid_prop();
57 prop = of_find_property(dp, prop_name, NULL);
59 return *(int *) prop->value;
64 static int check_cpu_node(struct device_node *dp, int *cur_inst,
65 int (*compare)(struct device_node *, int, void *),
67 struct device_node **dev_node, int *mid)
69 if (strcmp(dp->type, "cpu"))
72 if (!compare(dp, *cur_inst, compare_arg)) {
76 *mid = get_cpu_mid(dp);
85 static int __cpu_find_by(int (*compare)(struct device_node *, int, void *),
87 struct device_node **dev_node, int *mid)
89 struct device_node *dp;
93 for_each_node_by_type(dp, "cpu") {
94 int err = check_cpu_node(dp, &cur_inst,
104 static int cpu_instance_compare(struct device_node *dp, int instance, void *_arg)
106 int desired_instance = (int) (long) _arg;
108 if (instance == desired_instance)
113 int cpu_find_by_instance(int instance, struct device_node **dev_node, int *mid)
115 return __cpu_find_by(cpu_instance_compare, (void *)(long)instance,
119 static int cpu_mid_compare(struct device_node *dp, int instance, void *_arg)
121 int desired_mid = (int) (long) _arg;
124 this_mid = get_cpu_mid(dp);
125 if (this_mid == desired_mid)
130 int cpu_find_by_mid(int mid, struct device_node **dev_node)
132 return __cpu_find_by(cpu_mid_compare, (void *)(long)mid,
136 void __init device_scan(void)
138 /* FIX ME FAST... -DaveM */
139 ioport_resource.end = 0xffffffffffffffffUL;
141 prom_printf("Booting Linux...\n");
145 struct device_node *dp;
148 err = cpu_find_by_instance(0, &dp, NULL);
150 prom_printf("No cpu nodes, cannot continue\n");
153 cpu_data(0).clock_tick =
154 of_getintprop_default(dp, "clock-frequency", 0);
156 def = ((tlb_type == hypervisor) ?
159 cpu_data(0).dcache_size = of_getintprop_default(dp,
164 cpu_data(0).dcache_line_size =
165 of_getintprop_default(dp, "dcache-line-size", def);
168 cpu_data(0).icache_size = of_getintprop_default(dp,
173 cpu_data(0).icache_line_size =
174 of_getintprop_default(dp, "icache-line-size", def);
176 def = ((tlb_type == hypervisor) ?
179 cpu_data(0).ecache_size = of_getintprop_default(dp,
184 cpu_data(0).ecache_line_size =
185 of_getintprop_default(dp, "ecache-line-size", def);
186 printk("CPU[0]: Caches "
187 "D[sz(%d):line_sz(%d)] "
188 "I[sz(%d):line_sz(%d)] "
189 "E[sz(%d):line_sz(%d)]\n",
190 cpu_data(0).dcache_size, cpu_data(0).dcache_line_size,
191 cpu_data(0).icache_size, cpu_data(0).icache_line_size,
192 cpu_data(0).ecache_size, cpu_data(0).ecache_line_size);