blob: 9deb21dbf62965740f2b6c34c1630dbf80d1f4aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
4 * for more details.
5 *
6 * This file contains NUMA specific variables and functions which can
7 * be split away from DISCONTIGMEM and are used on NUMA machines with
8 * contiguous memory.
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
Zhang, Yanminf1918002006-02-27 11:37:45 +080012 * 02/27/2006 Zhang, Yanmin
13 * Populate cpu cache entries in sysfs for cpu cache info
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/cpu.h>
17#include <linux/kernel.h>
18#include <linux/mm.h>
19#include <linux/node.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/init.h>
22#include <linux/bootmem.h>
23#include <linux/nodemask.h>
Zhang, Yanminf1918002006-02-27 11:37:45 +080024#include <linux/notifier.h>
Paul Gortmakerbd3ff192011-07-31 18:33:21 -040025#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/mmzone.h>
27#include <asm/numa.h>
28#include <asm/cpu.h>
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030static struct ia64_cpu *sysfs_cpus;
31
Alex Chiangfe086a72008-04-29 15:05:29 -070032void arch_fix_phys_package_id(int num, u32 slot)
33{
34#ifdef CONFIG_SMP
35 if (cpu_data(num)->socket_id == -1)
36 cpu_data(num)->socket_id = slot;
37#endif
38}
39EXPORT_SYMBOL_GPL(arch_fix_phys_package_id);
40
Hidetoshi Seto6d3c5112008-04-30 16:50:55 +090041
42#ifdef CONFIG_HOTPLUG_CPU
43int __ref arch_register_cpu(int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044{
Hidetoshi Seto6d3c5112008-04-30 16:50:55 +090045#ifdef CONFIG_ACPI
Ashok Raj55e59c52005-03-31 22:51:10 -050046 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -030047 * If CPEI can be re-targeted or if this is not
Siddha, Suresh B72486f12006-12-07 02:14:10 +010048 * CPEI target, then it is hotpluggable
Ashok Raj55e59c52005-03-31 22:51:10 -050049 */
Siddha, Suresh B72486f12006-12-07 02:14:10 +010050 if (can_cpei_retarget() || !is_cpu_cpei_target(num))
51 sysfs_cpus[num].cpu.hotpluggable = 1;
KAMEZAWA Hiroyuki3212fe12006-09-25 16:25:31 -070052 map_cpu_to_node(num, node_cpuid[num].nid);
53#endif
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070054 return register_cpu(&sysfs_cpus[num].cpu, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
Hidetoshi Seto6d3c5112008-04-30 16:50:55 +090056EXPORT_SYMBOL(arch_register_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Robin Holt8704ad82008-12-08 08:43:46 -060058void __ref arch_unregister_cpu(int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
KAMEZAWA Hiroyuki3212fe12006-09-25 16:25:31 -070060 unregister_cpu(&sysfs_cpus[num].cpu);
Robin Holt8704ad82008-12-08 08:43:46 -060061#ifdef CONFIG_ACPI
KAMEZAWA Hiroyuki3212fe12006-09-25 16:25:31 -070062 unmap_cpu_from_node(num, cpu_to_node(num));
Robin Holt8704ad82008-12-08 08:43:46 -060063#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
Linus Torvalds1da177e2005-04-16 15:20:36 -070065EXPORT_SYMBOL(arch_unregister_cpu);
Hidetoshi Seto6d3c5112008-04-30 16:50:55 +090066#else
67static int __init arch_register_cpu(int num)
68{
69 return register_cpu(&sysfs_cpus[num].cpu, num);
70}
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#endif /*CONFIG_HOTPLUG_CPU*/
72
73
74static int __init topology_init(void)
75{
76 int i, err = 0;
77
78#ifdef CONFIG_NUMA
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080079 /*
80 * MCD - Do we want to register all ONLINE nodes, or all POSSIBLE nodes?
81 */
82 for_each_online_node(i) {
Yasunori Goto0fc44152006-06-27 02:53:38 -070083 if ((err = register_one_node(i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 goto out;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080085 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070086#endif
87
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080088 sysfs_cpus = kzalloc(sizeof(struct ia64_cpu) * NR_CPUS, GFP_KERNEL);
Paul Jacksona8132132006-08-14 22:45:49 -070089 if (!sysfs_cpus)
90 panic("kzalloc in topology_init failed - NR_CPUS too big?");
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080092 for_each_present_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 if((err = arch_register_cpu(i)))
94 goto out;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080095 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070096out:
97 return err;
98}
99
Zhang, Yanmin69dcc992006-02-03 03:04:36 -0800100subsys_initcall(topology_init);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800101
102
103/*
104 * Export cpu cache information through sysfs
105 */
106
107/*
108 * A bunch of string array to get pretty printing
109 */
110static const char *cache_types[] = {
111 "", /* not used */
112 "Instruction",
113 "Data",
114 "Unified" /* unified */
115};
116
117static const char *cache_mattrib[]={
118 "WriteThrough",
119 "WriteBack",
120 "", /* reserved */
121 "" /* reserved */
122};
123
124struct cache_info {
125 pal_cache_config_info_t cci;
126 cpumask_t shared_cpu_map;
127 int level;
128 int type;
129 struct kobject kobj;
130};
131
132struct cpu_cache_info {
133 struct cache_info *cache_leaves;
134 int num_cache_leaves;
135 struct kobject kobj;
136};
137
Satyam Sharmadb6a5ce2007-10-02 13:39:45 -0700138static struct cpu_cache_info all_cpu_cache_info[NR_CPUS] __cpuinitdata;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800139#define LEAF_KOBJECT_PTR(x,y) (&all_cpu_cache_info[x].cache_leaves[y])
140
141#ifdef CONFIG_SMP
Satyam Sharmadb6a5ce2007-10-02 13:39:45 -0700142static void __cpuinit cache_shared_cpu_map_setup( unsigned int cpu,
Zhang, Yanminf1918002006-02-27 11:37:45 +0800143 struct cache_info * this_leaf)
144{
145 pal_cache_shared_info_t csi;
146 int num_shared, i = 0;
147 unsigned int j;
148
149 if (cpu_data(cpu)->threads_per_core <= 1 &&
150 cpu_data(cpu)->cores_per_socket <= 1) {
151 cpu_set(cpu, this_leaf->shared_cpu_map);
152 return;
153 }
154
155 if (ia64_pal_cache_shared_info(this_leaf->level,
156 this_leaf->type,
157 0,
158 &csi) != PAL_STATUS_SUCCESS)
159 return;
160
161 num_shared = (int) csi.num_shared;
162 do {
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700163 for_each_possible_cpu(j)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800164 if (cpu_data(cpu)->socket_id == cpu_data(j)->socket_id
165 && cpu_data(j)->core_id == csi.log1_cid
166 && cpu_data(j)->thread_id == csi.log1_tid)
167 cpu_set(j, this_leaf->shared_cpu_map);
168
169 i++;
170 } while (i < num_shared &&
171 ia64_pal_cache_shared_info(this_leaf->level,
172 this_leaf->type,
173 i,
174 &csi) == PAL_STATUS_SUCCESS);
175}
176#else
Satyam Sharmadb6a5ce2007-10-02 13:39:45 -0700177static void __cpuinit cache_shared_cpu_map_setup(unsigned int cpu,
Zhang, Yanminf1918002006-02-27 11:37:45 +0800178 struct cache_info * this_leaf)
179{
180 cpu_set(cpu, this_leaf->shared_cpu_map);
181 return;
182}
183#endif
184
185static ssize_t show_coherency_line_size(struct cache_info *this_leaf,
186 char *buf)
187{
188 return sprintf(buf, "%u\n", 1 << this_leaf->cci.pcci_line_size);
189}
190
191static ssize_t show_ways_of_associativity(struct cache_info *this_leaf,
192 char *buf)
193{
194 return sprintf(buf, "%u\n", this_leaf->cci.pcci_assoc);
195}
196
197static ssize_t show_attributes(struct cache_info *this_leaf, char *buf)
198{
199 return sprintf(buf,
200 "%s\n",
201 cache_mattrib[this_leaf->cci.pcci_cache_attr]);
202}
203
204static ssize_t show_size(struct cache_info *this_leaf, char *buf)
205{
206 return sprintf(buf, "%uK\n", this_leaf->cci.pcci_cache_size / 1024);
207}
208
209static ssize_t show_number_of_sets(struct cache_info *this_leaf, char *buf)
210{
211 unsigned number_of_sets = this_leaf->cci.pcci_cache_size;
212 number_of_sets /= this_leaf->cci.pcci_assoc;
213 number_of_sets /= 1 << this_leaf->cci.pcci_line_size;
214
215 return sprintf(buf, "%u\n", number_of_sets);
216}
217
218static ssize_t show_shared_cpu_map(struct cache_info *this_leaf, char *buf)
219{
220 ssize_t len;
221 cpumask_t shared_cpu_map;
222
223 cpus_and(shared_cpu_map, this_leaf->shared_cpu_map, cpu_online_map);
Rusty Russell29c01772008-12-13 21:20:25 +1030224 len = cpumask_scnprintf(buf, NR_CPUS+1, &shared_cpu_map);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800225 len += sprintf(buf+len, "\n");
226 return len;
227}
228
229static ssize_t show_type(struct cache_info *this_leaf, char *buf)
230{
231 int type = this_leaf->type + this_leaf->cci.pcci_unified;
232 return sprintf(buf, "%s\n", cache_types[type]);
233}
234
235static ssize_t show_level(struct cache_info *this_leaf, char *buf)
236{
237 return sprintf(buf, "%u\n", this_leaf->level);
238}
239
240struct cache_attr {
241 struct attribute attr;
242 ssize_t (*show)(struct cache_info *, char *);
243 ssize_t (*store)(struct cache_info *, const char *, size_t count);
244};
245
246#ifdef define_one_ro
247 #undef define_one_ro
248#endif
249#define define_one_ro(_name) \
250 static struct cache_attr _name = \
251__ATTR(_name, 0444, show_##_name, NULL)
252
253define_one_ro(level);
254define_one_ro(type);
255define_one_ro(coherency_line_size);
256define_one_ro(ways_of_associativity);
257define_one_ro(size);
258define_one_ro(number_of_sets);
259define_one_ro(shared_cpu_map);
260define_one_ro(attributes);
261
262static struct attribute * cache_default_attrs[] = {
263 &type.attr,
264 &level.attr,
265 &coherency_line_size.attr,
266 &ways_of_associativity.attr,
267 &attributes.attr,
268 &size.attr,
269 &number_of_sets.attr,
270 &shared_cpu_map.attr,
271 NULL
272};
273
274#define to_object(k) container_of(k, struct cache_info, kobj)
275#define to_attr(a) container_of(a, struct cache_attr, attr)
276
277static ssize_t cache_show(struct kobject * kobj, struct attribute * attr, char * buf)
278{
279 struct cache_attr *fattr = to_attr(attr);
280 struct cache_info *this_leaf = to_object(kobj);
281 ssize_t ret;
282
283 ret = fattr->show ? fattr->show(this_leaf, buf) : 0;
284 return ret;
285}
286
Emese Revfy52cf25d2010-01-19 02:58:23 +0100287static const struct sysfs_ops cache_sysfs_ops = {
Zhang, Yanminf1918002006-02-27 11:37:45 +0800288 .show = cache_show
289};
290
291static struct kobj_type cache_ktype = {
292 .sysfs_ops = &cache_sysfs_ops,
293 .default_attrs = cache_default_attrs,
294};
295
296static struct kobj_type cache_ktype_percpu_entry = {
297 .sysfs_ops = &cache_sysfs_ops,
298};
299
300static void __cpuinit cpu_cache_sysfs_exit(unsigned int cpu)
301{
Jesper Juhlcbf283c2006-04-20 10:11:09 -0700302 kfree(all_cpu_cache_info[cpu].cache_leaves);
303 all_cpu_cache_info[cpu].cache_leaves = NULL;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800304 all_cpu_cache_info[cpu].num_cache_leaves = 0;
305 memset(&all_cpu_cache_info[cpu].kobj, 0, sizeof(struct kobject));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800306 return;
307}
308
309static int __cpuinit cpu_cache_sysfs_init(unsigned int cpu)
310{
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -0700311 unsigned long i, levels, unique_caches;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800312 pal_cache_config_info_t cci;
313 int j;
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -0700314 long status;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800315 struct cache_info *this_cache;
316 int num_cache_leaves = 0;
317
318 if ((status = ia64_pal_cache_summary(&levels, &unique_caches)) != 0) {
319 printk(KERN_ERR "ia64_pal_cache_summary=%ld\n", status);
320 return -1;
321 }
322
323 this_cache=kzalloc(sizeof(struct cache_info)*unique_caches,
324 GFP_KERNEL);
325 if (this_cache == NULL)
326 return -ENOMEM;
327
328 for (i=0; i < levels; i++) {
329 for (j=2; j >0 ; j--) {
330 if ((status=ia64_pal_cache_config_info(i,j, &cci)) !=
331 PAL_STATUS_SUCCESS)
332 continue;
333
334 this_cache[num_cache_leaves].cci = cci;
335 this_cache[num_cache_leaves].level = i + 1;
336 this_cache[num_cache_leaves].type = j;
337
338 cache_shared_cpu_map_setup(cpu,
339 &this_cache[num_cache_leaves]);
340 num_cache_leaves ++;
341 }
342 }
343
344 all_cpu_cache_info[cpu].cache_leaves = this_cache;
345 all_cpu_cache_info[cpu].num_cache_leaves = num_cache_leaves;
346
347 memset(&all_cpu_cache_info[cpu].kobj, 0, sizeof(struct kobject));
348
349 return 0;
350}
351
352/* Add cache interface for CPU device */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800353static int __cpuinit cache_add_dev(struct device * sys_dev)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800354{
355 unsigned int cpu = sys_dev->id;
356 unsigned long i, j;
357 struct cache_info *this_object;
358 int retval = 0;
359 cpumask_t oldmask;
360
361 if (all_cpu_cache_info[cpu].kobj.parent)
362 return 0;
363
364 oldmask = current->cpus_allowed;
Julia Lawall552dce32010-03-26 23:02:23 +0100365 retval = set_cpus_allowed_ptr(current, cpumask_of(cpu));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800366 if (unlikely(retval))
367 return retval;
368
369 retval = cpu_cache_sysfs_init(cpu);
Julia Lawall552dce32010-03-26 23:02:23 +0100370 set_cpus_allowed_ptr(current, &oldmask);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800371 if (unlikely(retval < 0))
372 return retval;
373
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400374 retval = kobject_init_and_add(&all_cpu_cache_info[cpu].kobj,
375 &cache_ktype_percpu_entry, &sys_dev->kobj,
376 "%s", "cache");
Fenghua Yu5359dff2009-08-11 14:52:11 -0700377 if (unlikely(retval < 0)) {
378 cpu_cache_sysfs_exit(cpu);
379 return retval;
380 }
Zhang, Yanminf1918002006-02-27 11:37:45 +0800381
382 for (i = 0; i < all_cpu_cache_info[cpu].num_cache_leaves; i++) {
383 this_object = LEAF_KOBJECT_PTR(cpu,i);
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400384 retval = kobject_init_and_add(&(this_object->kobj),
385 &cache_ktype,
386 &all_cpu_cache_info[cpu].kobj,
387 "index%1lu", i);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800388 if (unlikely(retval)) {
389 for (j = 0; j < i; j++) {
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800390 kobject_put(&(LEAF_KOBJECT_PTR(cpu,j)->kobj));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800391 }
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800392 kobject_put(&all_cpu_cache_info[cpu].kobj);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800393 cpu_cache_sysfs_exit(cpu);
Fenghua Yu5359dff2009-08-11 14:52:11 -0700394 return retval;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800395 }
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400396 kobject_uevent(&(this_object->kobj), KOBJ_ADD);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800397 }
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400398 kobject_uevent(&all_cpu_cache_info[cpu].kobj, KOBJ_ADD);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800399 return retval;
400}
401
402/* Remove cache interface for CPU device */
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800403static int __cpuinit cache_remove_dev(struct device * sys_dev)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800404{
405 unsigned int cpu = sys_dev->id;
406 unsigned long i;
407
408 for (i = 0; i < all_cpu_cache_info[cpu].num_cache_leaves; i++)
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800409 kobject_put(&(LEAF_KOBJECT_PTR(cpu,i)->kobj));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800410
411 if (all_cpu_cache_info[cpu].kobj.parent) {
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800412 kobject_put(&all_cpu_cache_info[cpu].kobj);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800413 memset(&all_cpu_cache_info[cpu].kobj,
414 0,
415 sizeof(struct kobject));
416 }
417
418 cpu_cache_sysfs_exit(cpu);
419
420 return 0;
421}
422
423/*
424 * When a cpu is hot-plugged, do a check and initiate
425 * cache kobject if necessary
426 */
Chandra Seetharaman9c7b2162006-06-27 02:54:07 -0700427static int __cpuinit cache_cpu_callback(struct notifier_block *nfb,
Zhang, Yanminf1918002006-02-27 11:37:45 +0800428 unsigned long action, void *hcpu)
429{
430 unsigned int cpu = (unsigned long)hcpu;
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800431 struct device *sys_dev;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800432
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800433 sys_dev = get_cpu_device(cpu);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800434 switch (action) {
435 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700436 case CPU_ONLINE_FROZEN:
Zhang, Yanminf1918002006-02-27 11:37:45 +0800437 cache_add_dev(sys_dev);
438 break;
439 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700440 case CPU_DEAD_FROZEN:
Zhang, Yanminf1918002006-02-27 11:37:45 +0800441 cache_remove_dev(sys_dev);
442 break;
443 }
444 return NOTIFY_OK;
445}
446
Chandra Seetharaman74b85f32006-06-27 02:54:09 -0700447static struct notifier_block __cpuinitdata cache_cpu_notifier =
Zhang, Yanminf1918002006-02-27 11:37:45 +0800448{
449 .notifier_call = cache_cpu_callback
450};
451
Satyam Sharmadb6a5ce2007-10-02 13:39:45 -0700452static int __init cache_sysfs_init(void)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800453{
454 int i;
455
456 for_each_online_cpu(i) {
Kay Sievers8a25a2f2011-12-21 14:29:42 -0800457 struct device *sys_dev = get_cpu_device((unsigned int)i);
Satyam Sharmadb6a5ce2007-10-02 13:39:45 -0700458 cache_add_dev(sys_dev);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800459 }
460
Chandra Seetharamanbe6b5a32006-07-30 03:03:37 -0700461 register_hotcpu_notifier(&cache_cpu_notifier);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800462
463 return 0;
464}
465
466device_initcall(cache_sysfs_init);
467