2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * This file contains NUMA specific variables and functions which can
7 * be split away from DISCONTIGMEM and are used on NUMA machines with
9 * 2002/08/07 Erich Focht <efocht@ess.nec.de>
10 * Populate cpu entries in sysfs for non-numa systems as well
11 * Intel Corporation - Ashok Raj
12 * 02/27/2006 Zhang, Yanmin
13 * Populate cpu cache entries in sysfs for cpu cache info
16 #include <linux/cpu.h>
17 #include <linux/kernel.h>
19 #include <linux/node.h>
20 #include <linux/init.h>
21 #include <linux/bootmem.h>
22 #include <linux/nodemask.h>
23 #include <linux/notifier.h>
24 #include <asm/mmzone.h>
28 static struct ia64_cpu
*sysfs_cpus
;
30 int arch_register_cpu(int num
)
32 #if defined (CONFIG_ACPI) && defined (CONFIG_HOTPLUG_CPU)
34 * If CPEI cannot be re-targetted, and this is
35 * CPEI target, then dont create the control file
37 if (!can_cpei_retarget() && is_cpu_cpei_target(num
))
38 sysfs_cpus
[num
].cpu
.no_control
= 1;
41 return register_cpu(&sysfs_cpus
[num
].cpu
, num
);
44 #ifdef CONFIG_HOTPLUG_CPU
46 void arch_unregister_cpu(int num
)
48 return unregister_cpu(&sysfs_cpus
[num
].cpu
);
50 EXPORT_SYMBOL(arch_register_cpu
);
51 EXPORT_SYMBOL(arch_unregister_cpu
);
52 #endif /*CONFIG_HOTPLUG_CPU*/
55 static int __init
topology_init(void)
61 * MCD - Do we want to register all ONLINE nodes, or all POSSIBLE nodes?
63 for_each_online_node(i
) {
64 if ((err
= register_one_node(i
)))
69 sysfs_cpus
= kzalloc(sizeof(struct ia64_cpu
) * NR_CPUS
, GFP_KERNEL
);
71 panic("kzalloc in topology_init failed - NR_CPUS too big?");
73 for_each_present_cpu(i
) {
74 if((err
= arch_register_cpu(i
)))
81 subsys_initcall(topology_init
);
85 * Export cpu cache information through sysfs
89 * A bunch of string array to get pretty printing
91 static const char *cache_types
[] = {
95 "Unified" /* unified */
98 static const char *cache_mattrib
[]={
106 pal_cache_config_info_t cci
;
107 cpumask_t shared_cpu_map
;
113 struct cpu_cache_info
{
114 struct cache_info
*cache_leaves
;
115 int num_cache_leaves
;
119 static struct cpu_cache_info all_cpu_cache_info
[NR_CPUS
];
120 #define LEAF_KOBJECT_PTR(x,y) (&all_cpu_cache_info[x].cache_leaves[y])
123 static void cache_shared_cpu_map_setup( unsigned int cpu
,
124 struct cache_info
* this_leaf
)
126 pal_cache_shared_info_t csi
;
127 int num_shared
, i
= 0;
130 if (cpu_data(cpu
)->threads_per_core
<= 1 &&
131 cpu_data(cpu
)->cores_per_socket
<= 1) {
132 cpu_set(cpu
, this_leaf
->shared_cpu_map
);
136 if (ia64_pal_cache_shared_info(this_leaf
->level
,
139 &csi
) != PAL_STATUS_SUCCESS
)
142 num_shared
= (int) csi
.num_shared
;
144 for_each_possible_cpu(j
)
145 if (cpu_data(cpu
)->socket_id
== cpu_data(j
)->socket_id
146 && cpu_data(j
)->core_id
== csi
.log1_cid
147 && cpu_data(j
)->thread_id
== csi
.log1_tid
)
148 cpu_set(j
, this_leaf
->shared_cpu_map
);
151 } while (i
< num_shared
&&
152 ia64_pal_cache_shared_info(this_leaf
->level
,
155 &csi
) == PAL_STATUS_SUCCESS
);
158 static void cache_shared_cpu_map_setup(unsigned int cpu
,
159 struct cache_info
* this_leaf
)
161 cpu_set(cpu
, this_leaf
->shared_cpu_map
);
166 static ssize_t
show_coherency_line_size(struct cache_info
*this_leaf
,
169 return sprintf(buf
, "%u\n", 1 << this_leaf
->cci
.pcci_line_size
);
172 static ssize_t
show_ways_of_associativity(struct cache_info
*this_leaf
,
175 return sprintf(buf
, "%u\n", this_leaf
->cci
.pcci_assoc
);
178 static ssize_t
show_attributes(struct cache_info
*this_leaf
, char *buf
)
182 cache_mattrib
[this_leaf
->cci
.pcci_cache_attr
]);
185 static ssize_t
show_size(struct cache_info
*this_leaf
, char *buf
)
187 return sprintf(buf
, "%uK\n", this_leaf
->cci
.pcci_cache_size
/ 1024);
190 static ssize_t
show_number_of_sets(struct cache_info
*this_leaf
, char *buf
)
192 unsigned number_of_sets
= this_leaf
->cci
.pcci_cache_size
;
193 number_of_sets
/= this_leaf
->cci
.pcci_assoc
;
194 number_of_sets
/= 1 << this_leaf
->cci
.pcci_line_size
;
196 return sprintf(buf
, "%u\n", number_of_sets
);
199 static ssize_t
show_shared_cpu_map(struct cache_info
*this_leaf
, char *buf
)
202 cpumask_t shared_cpu_map
;
204 cpus_and(shared_cpu_map
, this_leaf
->shared_cpu_map
, cpu_online_map
);
205 len
= cpumask_scnprintf(buf
, NR_CPUS
+1, shared_cpu_map
);
206 len
+= sprintf(buf
+len
, "\n");
210 static ssize_t
show_type(struct cache_info
*this_leaf
, char *buf
)
212 int type
= this_leaf
->type
+ this_leaf
->cci
.pcci_unified
;
213 return sprintf(buf
, "%s\n", cache_types
[type
]);
216 static ssize_t
show_level(struct cache_info
*this_leaf
, char *buf
)
218 return sprintf(buf
, "%u\n", this_leaf
->level
);
222 struct attribute attr
;
223 ssize_t (*show
)(struct cache_info
*, char *);
224 ssize_t (*store
)(struct cache_info
*, const char *, size_t count
);
230 #define define_one_ro(_name) \
231 static struct cache_attr _name = \
232 __ATTR(_name, 0444, show_##_name, NULL)
234 define_one_ro(level
);
236 define_one_ro(coherency_line_size
);
237 define_one_ro(ways_of_associativity
);
239 define_one_ro(number_of_sets
);
240 define_one_ro(shared_cpu_map
);
241 define_one_ro(attributes
);
243 static struct attribute
* cache_default_attrs
[] = {
246 &coherency_line_size
.attr
,
247 &ways_of_associativity
.attr
,
250 &number_of_sets
.attr
,
251 &shared_cpu_map
.attr
,
255 #define to_object(k) container_of(k, struct cache_info, kobj)
256 #define to_attr(a) container_of(a, struct cache_attr, attr)
258 static ssize_t
cache_show(struct kobject
* kobj
, struct attribute
* attr
, char * buf
)
260 struct cache_attr
*fattr
= to_attr(attr
);
261 struct cache_info
*this_leaf
= to_object(kobj
);
264 ret
= fattr
->show
? fattr
->show(this_leaf
, buf
) : 0;
268 static struct sysfs_ops cache_sysfs_ops
= {
272 static struct kobj_type cache_ktype
= {
273 .sysfs_ops
= &cache_sysfs_ops
,
274 .default_attrs
= cache_default_attrs
,
277 static struct kobj_type cache_ktype_percpu_entry
= {
278 .sysfs_ops
= &cache_sysfs_ops
,
281 static void __cpuinit
cpu_cache_sysfs_exit(unsigned int cpu
)
283 kfree(all_cpu_cache_info
[cpu
].cache_leaves
);
284 all_cpu_cache_info
[cpu
].cache_leaves
= NULL
;
285 all_cpu_cache_info
[cpu
].num_cache_leaves
= 0;
286 memset(&all_cpu_cache_info
[cpu
].kobj
, 0, sizeof(struct kobject
));
290 static int __cpuinit
cpu_cache_sysfs_init(unsigned int cpu
)
292 u64 i
, levels
, unique_caches
;
293 pal_cache_config_info_t cci
;
296 struct cache_info
*this_cache
;
297 int num_cache_leaves
= 0;
299 if ((status
= ia64_pal_cache_summary(&levels
, &unique_caches
)) != 0) {
300 printk(KERN_ERR
"ia64_pal_cache_summary=%ld\n", status
);
304 this_cache
=kzalloc(sizeof(struct cache_info
)*unique_caches
,
306 if (this_cache
== NULL
)
309 for (i
=0; i
< levels
; i
++) {
310 for (j
=2; j
>0 ; j
--) {
311 if ((status
=ia64_pal_cache_config_info(i
,j
, &cci
)) !=
315 this_cache
[num_cache_leaves
].cci
= cci
;
316 this_cache
[num_cache_leaves
].level
= i
+ 1;
317 this_cache
[num_cache_leaves
].type
= j
;
319 cache_shared_cpu_map_setup(cpu
,
320 &this_cache
[num_cache_leaves
]);
325 all_cpu_cache_info
[cpu
].cache_leaves
= this_cache
;
326 all_cpu_cache_info
[cpu
].num_cache_leaves
= num_cache_leaves
;
328 memset(&all_cpu_cache_info
[cpu
].kobj
, 0, sizeof(struct kobject
));
333 /* Add cache interface for CPU device */
334 static int __cpuinit
cache_add_dev(struct sys_device
* sys_dev
)
336 unsigned int cpu
= sys_dev
->id
;
338 struct cache_info
*this_object
;
342 if (all_cpu_cache_info
[cpu
].kobj
.parent
)
345 oldmask
= current
->cpus_allowed
;
346 retval
= set_cpus_allowed(current
, cpumask_of_cpu(cpu
));
347 if (unlikely(retval
))
350 retval
= cpu_cache_sysfs_init(cpu
);
351 set_cpus_allowed(current
, oldmask
);
352 if (unlikely(retval
< 0))
355 all_cpu_cache_info
[cpu
].kobj
.parent
= &sys_dev
->kobj
;
356 kobject_set_name(&all_cpu_cache_info
[cpu
].kobj
, "%s", "cache");
357 all_cpu_cache_info
[cpu
].kobj
.ktype
= &cache_ktype_percpu_entry
;
358 retval
= kobject_register(&all_cpu_cache_info
[cpu
].kobj
);
360 for (i
= 0; i
< all_cpu_cache_info
[cpu
].num_cache_leaves
; i
++) {
361 this_object
= LEAF_KOBJECT_PTR(cpu
,i
);
362 this_object
->kobj
.parent
= &all_cpu_cache_info
[cpu
].kobj
;
363 kobject_set_name(&(this_object
->kobj
), "index%1lu", i
);
364 this_object
->kobj
.ktype
= &cache_ktype
;
365 retval
= kobject_register(&(this_object
->kobj
));
366 if (unlikely(retval
)) {
367 for (j
= 0; j
< i
; j
++) {
369 &(LEAF_KOBJECT_PTR(cpu
,j
)->kobj
));
371 kobject_unregister(&all_cpu_cache_info
[cpu
].kobj
);
372 cpu_cache_sysfs_exit(cpu
);
379 /* Remove cache interface for CPU device */
380 static int __cpuinit
cache_remove_dev(struct sys_device
* sys_dev
)
382 unsigned int cpu
= sys_dev
->id
;
385 for (i
= 0; i
< all_cpu_cache_info
[cpu
].num_cache_leaves
; i
++)
386 kobject_unregister(&(LEAF_KOBJECT_PTR(cpu
,i
)->kobj
));
388 if (all_cpu_cache_info
[cpu
].kobj
.parent
) {
389 kobject_unregister(&all_cpu_cache_info
[cpu
].kobj
);
390 memset(&all_cpu_cache_info
[cpu
].kobj
,
392 sizeof(struct kobject
));
395 cpu_cache_sysfs_exit(cpu
);
401 * When a cpu is hot-plugged, do a check and initiate
402 * cache kobject if necessary
404 static int __cpuinit
cache_cpu_callback(struct notifier_block
*nfb
,
405 unsigned long action
, void *hcpu
)
407 unsigned int cpu
= (unsigned long)hcpu
;
408 struct sys_device
*sys_dev
;
410 sys_dev
= get_cpu_sysdev(cpu
);
413 cache_add_dev(sys_dev
);
416 cache_remove_dev(sys_dev
);
422 static struct notifier_block __cpuinitdata cache_cpu_notifier
=
424 .notifier_call
= cache_cpu_callback
427 static int __cpuinit
cache_sysfs_init(void)
431 for_each_online_cpu(i
) {
432 cache_cpu_callback(&cache_cpu_notifier
, CPU_ONLINE
,
436 register_hotcpu_notifier(&cache_cpu_notifier
);
441 device_initcall(cache_sysfs_init
);