blob: 09fc385c2acd2ce0bc7fae3a9ffe05c1f1441427 [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>
Mike Rapoport57c8a662018-10-30 15:09:49 -070022#include <linux/memblock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#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{
Ashok Raj55e59c52005-03-31 22:51:10 -050045 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -030046 * If CPEI can be re-targeted or if this is not
Siddha, Suresh B72486f12006-12-07 02:14:10 +010047 * CPEI target, then it is hotpluggable
Ashok Raj55e59c52005-03-31 22:51:10 -050048 */
Siddha, Suresh B72486f12006-12-07 02:14:10 +010049 if (can_cpei_retarget() || !is_cpu_cpei_target(num))
50 sysfs_cpus[num].cpu.hotpluggable = 1;
KAMEZAWA Hiroyuki3212fe12006-09-25 16:25:31 -070051 map_cpu_to_node(num, node_cpuid[num].nid);
KAMEZAWA Hiroyuki76b67ed2006-06-27 02:53:41 -070052 return register_cpu(&sysfs_cpus[num].cpu, num);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
Hidetoshi Seto6d3c5112008-04-30 16:50:55 +090054EXPORT_SYMBOL(arch_register_cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Robin Holt8704ad82008-12-08 08:43:46 -060056void __ref arch_unregister_cpu(int num)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
KAMEZAWA Hiroyuki3212fe12006-09-25 16:25:31 -070058 unregister_cpu(&sysfs_cpus[num].cpu);
59 unmap_cpu_from_node(num, cpu_to_node(num));
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
Linus Torvalds1da177e2005-04-16 15:20:36 -070061EXPORT_SYMBOL(arch_unregister_cpu);
Hidetoshi Seto6d3c5112008-04-30 16:50:55 +090062#else
63static int __init arch_register_cpu(int num)
64{
65 return register_cpu(&sysfs_cpus[num].cpu, num);
66}
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#endif /*CONFIG_HOTPLUG_CPU*/
68
69
70static int __init topology_init(void)
71{
72 int i, err = 0;
73
74#ifdef CONFIG_NUMA
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080075 /*
76 * MCD - Do we want to register all ONLINE nodes, or all POSSIBLE nodes?
77 */
78 for_each_online_node(i) {
Yasunori Goto0fc44152006-06-27 02:53:38 -070079 if ((err = register_one_node(i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 goto out;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#endif
83
Kees Cook6396bb22018-06-12 14:03:40 -070084 sysfs_cpus = kcalloc(NR_CPUS, sizeof(struct ia64_cpu), GFP_KERNEL);
Paul Jacksona8132132006-08-14 22:45:49 -070085 if (!sysfs_cpus)
86 panic("kzalloc in topology_init failed - NR_CPUS too big?");
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080088 for_each_present_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if((err = arch_register_cpu(i)))
90 goto out;
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092out:
93 return err;
94}
95
Zhang, Yanmin69dcc992006-02-03 03:04:36 -080096subsys_initcall(topology_init);
Zhang, Yanminf1918002006-02-27 11:37:45 +080097
98
99/*
100 * Export cpu cache information through sysfs
101 */
102
103/*
104 * A bunch of string array to get pretty printing
105 */
106static const char *cache_types[] = {
107 "", /* not used */
108 "Instruction",
109 "Data",
110 "Unified" /* unified */
111};
112
113static const char *cache_mattrib[]={
114 "WriteThrough",
115 "WriteBack",
116 "", /* reserved */
117 "" /* reserved */
118};
119
120struct cache_info {
121 pal_cache_config_info_t cci;
122 cpumask_t shared_cpu_map;
123 int level;
124 int type;
125 struct kobject kobj;
126};
127
128struct cpu_cache_info {
129 struct cache_info *cache_leaves;
130 int num_cache_leaves;
131 struct kobject kobj;
132};
133
Paul Gortmakerccce9bb2013-06-17 15:51:20 -0400134static struct cpu_cache_info all_cpu_cache_info[NR_CPUS];
Zhang, Yanminf1918002006-02-27 11:37:45 +0800135#define LEAF_KOBJECT_PTR(x,y) (&all_cpu_cache_info[x].cache_leaves[y])
136
137#ifdef CONFIG_SMP
Paul Gortmakerccce9bb2013-06-17 15:51:20 -0400138static void cache_shared_cpu_map_setup(unsigned int cpu,
Zhang, Yanminf1918002006-02-27 11:37:45 +0800139 struct cache_info * this_leaf)
140{
141 pal_cache_shared_info_t csi;
142 int num_shared, i = 0;
143 unsigned int j;
144
145 if (cpu_data(cpu)->threads_per_core <= 1 &&
146 cpu_data(cpu)->cores_per_socket <= 1) {
Rusty Russell5d2068d2015-03-05 10:49:16 +1030147 cpumask_set_cpu(cpu, &this_leaf->shared_cpu_map);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800148 return;
149 }
150
151 if (ia64_pal_cache_shared_info(this_leaf->level,
152 this_leaf->type,
153 0,
154 &csi) != PAL_STATUS_SUCCESS)
155 return;
156
157 num_shared = (int) csi.num_shared;
158 do {
Andrew Mortonfb1bb342006-06-25 05:46:43 -0700159 for_each_possible_cpu(j)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800160 if (cpu_data(cpu)->socket_id == cpu_data(j)->socket_id
161 && cpu_data(j)->core_id == csi.log1_cid
162 && cpu_data(j)->thread_id == csi.log1_tid)
Rusty Russell5d2068d2015-03-05 10:49:16 +1030163 cpumask_set_cpu(j, &this_leaf->shared_cpu_map);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800164
165 i++;
166 } while (i < num_shared &&
167 ia64_pal_cache_shared_info(this_leaf->level,
168 this_leaf->type,
169 i,
170 &csi) == PAL_STATUS_SUCCESS);
171}
172#else
Paul Gortmakerccce9bb2013-06-17 15:51:20 -0400173static void cache_shared_cpu_map_setup(unsigned int cpu,
Zhang, Yanminf1918002006-02-27 11:37:45 +0800174 struct cache_info * this_leaf)
175{
Rusty Russell5d2068d2015-03-05 10:49:16 +1030176 cpumask_set_cpu(cpu, &this_leaf->shared_cpu_map);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800177 return;
178}
179#endif
180
181static ssize_t show_coherency_line_size(struct cache_info *this_leaf,
182 char *buf)
183{
184 return sprintf(buf, "%u\n", 1 << this_leaf->cci.pcci_line_size);
185}
186
187static ssize_t show_ways_of_associativity(struct cache_info *this_leaf,
188 char *buf)
189{
190 return sprintf(buf, "%u\n", this_leaf->cci.pcci_assoc);
191}
192
193static ssize_t show_attributes(struct cache_info *this_leaf, char *buf)
194{
195 return sprintf(buf,
196 "%s\n",
197 cache_mattrib[this_leaf->cci.pcci_cache_attr]);
198}
199
200static ssize_t show_size(struct cache_info *this_leaf, char *buf)
201{
202 return sprintf(buf, "%uK\n", this_leaf->cci.pcci_cache_size / 1024);
203}
204
205static ssize_t show_number_of_sets(struct cache_info *this_leaf, char *buf)
206{
207 unsigned number_of_sets = this_leaf->cci.pcci_cache_size;
208 number_of_sets /= this_leaf->cci.pcci_assoc;
209 number_of_sets /= 1 << this_leaf->cci.pcci_line_size;
210
211 return sprintf(buf, "%u\n", number_of_sets);
212}
213
214static ssize_t show_shared_cpu_map(struct cache_info *this_leaf, char *buf)
215{
Zhang, Yanminf1918002006-02-27 11:37:45 +0800216 cpumask_t shared_cpu_map;
217
Srivatsa S. Bhat7d7f9842012-03-28 14:42:46 -0700218 cpumask_and(&shared_cpu_map,
219 &this_leaf->shared_cpu_map, cpu_online_mask);
Tejun Heo90b586c2015-02-13 14:37:14 -0800220 return scnprintf(buf, PAGE_SIZE, "%*pb\n",
221 cpumask_pr_args(&shared_cpu_map));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800222}
223
224static ssize_t show_type(struct cache_info *this_leaf, char *buf)
225{
226 int type = this_leaf->type + this_leaf->cci.pcci_unified;
227 return sprintf(buf, "%s\n", cache_types[type]);
228}
229
230static ssize_t show_level(struct cache_info *this_leaf, char *buf)
231{
232 return sprintf(buf, "%u\n", this_leaf->level);
233}
234
235struct cache_attr {
236 struct attribute attr;
237 ssize_t (*show)(struct cache_info *, char *);
238 ssize_t (*store)(struct cache_info *, const char *, size_t count);
239};
240
241#ifdef define_one_ro
242 #undef define_one_ro
243#endif
244#define define_one_ro(_name) \
245 static struct cache_attr _name = \
246__ATTR(_name, 0444, show_##_name, NULL)
247
248define_one_ro(level);
249define_one_ro(type);
250define_one_ro(coherency_line_size);
251define_one_ro(ways_of_associativity);
252define_one_ro(size);
253define_one_ro(number_of_sets);
254define_one_ro(shared_cpu_map);
255define_one_ro(attributes);
256
257static struct attribute * cache_default_attrs[] = {
258 &type.attr,
259 &level.attr,
260 &coherency_line_size.attr,
261 &ways_of_associativity.attr,
262 &attributes.attr,
263 &size.attr,
264 &number_of_sets.attr,
265 &shared_cpu_map.attr,
266 NULL
267};
268
269#define to_object(k) container_of(k, struct cache_info, kobj)
270#define to_attr(a) container_of(a, struct cache_attr, attr)
271
Tony Luck4fafc8c2012-11-07 15:51:04 -0800272static ssize_t ia64_cache_show(struct kobject * kobj, struct attribute * attr, char * buf)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800273{
274 struct cache_attr *fattr = to_attr(attr);
275 struct cache_info *this_leaf = to_object(kobj);
276 ssize_t ret;
277
278 ret = fattr->show ? fattr->show(this_leaf, buf) : 0;
279 return ret;
280}
281
Emese Revfy52cf25d2010-01-19 02:58:23 +0100282static const struct sysfs_ops cache_sysfs_ops = {
Tony Luck4fafc8c2012-11-07 15:51:04 -0800283 .show = ia64_cache_show
Zhang, Yanminf1918002006-02-27 11:37:45 +0800284};
285
286static struct kobj_type cache_ktype = {
287 .sysfs_ops = &cache_sysfs_ops,
288 .default_attrs = cache_default_attrs,
289};
290
291static struct kobj_type cache_ktype_percpu_entry = {
292 .sysfs_ops = &cache_sysfs_ops,
293};
294
Paul Gortmakerccce9bb2013-06-17 15:51:20 -0400295static void cpu_cache_sysfs_exit(unsigned int cpu)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800296{
Jesper Juhlcbf283c2006-04-20 10:11:09 -0700297 kfree(all_cpu_cache_info[cpu].cache_leaves);
298 all_cpu_cache_info[cpu].cache_leaves = NULL;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800299 all_cpu_cache_info[cpu].num_cache_leaves = 0;
300 memset(&all_cpu_cache_info[cpu].kobj, 0, sizeof(struct kobject));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800301 return;
302}
303
Paul Gortmakerccce9bb2013-06-17 15:51:20 -0400304static int cpu_cache_sysfs_init(unsigned int cpu)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800305{
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -0700306 unsigned long i, levels, unique_caches;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800307 pal_cache_config_info_t cci;
308 int j;
Matthew Wilcoxe088a4a2009-05-22 13:49:49 -0700309 long status;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800310 struct cache_info *this_cache;
311 int num_cache_leaves = 0;
312
313 if ((status = ia64_pal_cache_summary(&levels, &unique_caches)) != 0) {
314 printk(KERN_ERR "ia64_pal_cache_summary=%ld\n", status);
315 return -1;
316 }
317
Kees Cook6396bb22018-06-12 14:03:40 -0700318 this_cache=kcalloc(unique_caches, sizeof(struct cache_info),
319 GFP_KERNEL);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800320 if (this_cache == NULL)
321 return -ENOMEM;
322
323 for (i=0; i < levels; i++) {
324 for (j=2; j >0 ; j--) {
325 if ((status=ia64_pal_cache_config_info(i,j, &cci)) !=
326 PAL_STATUS_SUCCESS)
327 continue;
328
329 this_cache[num_cache_leaves].cci = cci;
330 this_cache[num_cache_leaves].level = i + 1;
331 this_cache[num_cache_leaves].type = j;
332
333 cache_shared_cpu_map_setup(cpu,
334 &this_cache[num_cache_leaves]);
335 num_cache_leaves ++;
336 }
337 }
338
339 all_cpu_cache_info[cpu].cache_leaves = this_cache;
340 all_cpu_cache_info[cpu].num_cache_leaves = num_cache_leaves;
341
342 memset(&all_cpu_cache_info[cpu].kobj, 0, sizeof(struct kobject));
343
344 return 0;
345}
346
347/* Add cache interface for CPU device */
Sebastian Andrzej Siewior5c584dd2016-11-03 18:33:53 +0100348static int cache_add_dev(unsigned int cpu)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800349{
Sebastian Andrzej Siewior5c584dd2016-11-03 18:33:53 +0100350 struct device *sys_dev = get_cpu_device(cpu);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800351 unsigned long i, j;
352 struct cache_info *this_object;
353 int retval = 0;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800354
355 if (all_cpu_cache_info[cpu].kobj.parent)
356 return 0;
357
Zhang, Yanminf1918002006-02-27 11:37:45 +0800358
359 retval = cpu_cache_sysfs_init(cpu);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800360 if (unlikely(retval < 0))
361 return retval;
362
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400363 retval = kobject_init_and_add(&all_cpu_cache_info[cpu].kobj,
364 &cache_ktype_percpu_entry, &sys_dev->kobj,
365 "%s", "cache");
Fenghua Yu5359dff2009-08-11 14:52:11 -0700366 if (unlikely(retval < 0)) {
367 cpu_cache_sysfs_exit(cpu);
368 return retval;
369 }
Zhang, Yanminf1918002006-02-27 11:37:45 +0800370
371 for (i = 0; i < all_cpu_cache_info[cpu].num_cache_leaves; i++) {
372 this_object = LEAF_KOBJECT_PTR(cpu,i);
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400373 retval = kobject_init_and_add(&(this_object->kobj),
374 &cache_ktype,
375 &all_cpu_cache_info[cpu].kobj,
376 "index%1lu", i);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800377 if (unlikely(retval)) {
378 for (j = 0; j < i; j++) {
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800379 kobject_put(&(LEAF_KOBJECT_PTR(cpu,j)->kobj));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800380 }
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800381 kobject_put(&all_cpu_cache_info[cpu].kobj);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800382 cpu_cache_sysfs_exit(cpu);
Fenghua Yu5359dff2009-08-11 14:52:11 -0700383 return retval;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800384 }
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400385 kobject_uevent(&(this_object->kobj), KOBJ_ADD);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800386 }
Greg Kroah-Hartmanc1997902007-12-17 15:54:39 -0400387 kobject_uevent(&all_cpu_cache_info[cpu].kobj, KOBJ_ADD);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800388 return retval;
389}
390
391/* Remove cache interface for CPU device */
Sebastian Andrzej Siewior5c584dd2016-11-03 18:33:53 +0100392static int cache_remove_dev(unsigned int cpu)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800393{
Zhang, Yanminf1918002006-02-27 11:37:45 +0800394 unsigned long i;
395
396 for (i = 0; i < all_cpu_cache_info[cpu].num_cache_leaves; i++)
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800397 kobject_put(&(LEAF_KOBJECT_PTR(cpu,i)->kobj));
Zhang, Yanminf1918002006-02-27 11:37:45 +0800398
399 if (all_cpu_cache_info[cpu].kobj.parent) {
Greg Kroah-Hartman38a382a2007-12-20 08:13:05 -0800400 kobject_put(&all_cpu_cache_info[cpu].kobj);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800401 memset(&all_cpu_cache_info[cpu].kobj,
402 0,
403 sizeof(struct kobject));
404 }
405
406 cpu_cache_sysfs_exit(cpu);
407
408 return 0;
409}
410
Satyam Sharmadb6a5ce2007-10-02 13:39:45 -0700411static int __init cache_sysfs_init(void)
Zhang, Yanminf1918002006-02-27 11:37:45 +0800412{
Sebastian Andrzej Siewior5c584dd2016-11-03 18:33:53 +0100413 int ret;
Zhang, Yanminf1918002006-02-27 11:37:45 +0800414
Sebastian Andrzej Siewior5c584dd2016-11-03 18:33:53 +0100415 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "ia64/topology:online",
416 cache_add_dev, cache_remove_dev);
417 WARN_ON(ret < 0);
Zhang, Yanminf1918002006-02-27 11:37:45 +0800418 return 0;
419}
Zhang, Yanminf1918002006-02-27 11:37:45 +0800420device_initcall(cache_sysfs_init);