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 (!compare(dp
, *cur_inst
, compare_arg
)) {
73 *mid
= get_cpu_mid(dp
);
82 static int __cpu_find_by(int (*compare
)(struct device_node
*, int, void *),
84 struct device_node
**dev_node
, int *mid
)
86 struct device_node
*dp
;
90 for_each_node_by_type(dp
, "cpu") {
91 int err
= check_cpu_node(dp
, &cur_inst
,
101 static int cpu_instance_compare(struct device_node
*dp
, int instance
, void *_arg
)
103 int desired_instance
= (int) (long) _arg
;
105 if (instance
== desired_instance
)
110 int cpu_find_by_instance(int instance
, struct device_node
**dev_node
, int *mid
)
112 return __cpu_find_by(cpu_instance_compare
, (void *)(long)instance
,
116 static int cpu_mid_compare(struct device_node
*dp
, int instance
, void *_arg
)
118 int desired_mid
= (int) (long) _arg
;
121 this_mid
= get_cpu_mid(dp
);
122 if (this_mid
== desired_mid
)
127 int cpu_find_by_mid(int mid
, struct device_node
**dev_node
)
129 return __cpu_find_by(cpu_mid_compare
, (void *)(long)mid
,
133 void __init
device_scan(void)
135 /* FIX ME FAST... -DaveM */
136 ioport_resource
.end
= 0xffffffffffffffffUL
;
138 prom_printf("Booting Linux...\n");
142 struct device_node
*dp
;
145 err
= cpu_find_by_instance(0, &dp
, NULL
);
147 prom_printf("No cpu nodes, cannot continue\n");
150 cpu_data(0).clock_tick
=
151 of_getintprop_default(dp
, "clock-frequency", 0);
153 def
= ((tlb_type
== hypervisor
) ?
156 cpu_data(0).dcache_size
= of_getintprop_default(dp
,
161 cpu_data(0).dcache_line_size
=
162 of_getintprop_default(dp
, "dcache-line-size", def
);
165 cpu_data(0).icache_size
= of_getintprop_default(dp
,
170 cpu_data(0).icache_line_size
=
171 of_getintprop_default(dp
, "icache-line-size", def
);
173 def
= ((tlb_type
== hypervisor
) ?
176 cpu_data(0).ecache_size
= of_getintprop_default(dp
,
181 cpu_data(0).ecache_line_size
=
182 of_getintprop_default(dp
, "ecache-line-size", def
);
183 printk("CPU[0]: Caches "
184 "D[sz(%d):line_sz(%d)] "
185 "I[sz(%d):line_sz(%d)] "
186 "E[sz(%d):line_sz(%d)]\n",
187 cpu_data(0).dcache_size
, cpu_data(0).dcache_line_size
,
188 cpu_data(0).icache_size
, cpu_data(0).icache_line_size
,
189 cpu_data(0).ecache_size
, cpu_data(0).ecache_line_size
);