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 * Copyright (C) 2004-2005 Silicon Graphics, Inc. All rights reserved.
8 * SGI Altix topology and hardware performance monitoring API.
9 * Mark Goodwin <markgw@sgi.com>.
11 * Creates /proc/sgi_sn/sn_topology (read-only) to export
12 * info about Altix nodes, routers, CPUs and NumaLink
13 * interconnection/topology.
15 * Also creates a dynamic misc device named "sn_hwperf"
16 * that supports an ioctl interface to call down into SAL
17 * to discover hw objects, topology and to read/write
18 * memory mapped registers, e.g. for performance monitoring.
19 * The "sn_hwperf" device is registered only after the procfs
20 * file is first opened, i.e. only if/when it's needed.
22 * This API is used by SGI Performance Co-Pilot and other
23 * tools, see http://oss.sgi.com/projects/pcp
27 #include <linux/slab.h>
28 #include <linux/vmalloc.h>
29 #include <linux/seq_file.h>
30 #include <linux/miscdevice.h>
31 #include <linux/utsname.h>
32 #include <linux/cpumask.h>
33 #include <linux/smp_lock.h>
34 #include <linux/nodemask.h>
35 #include <asm/processor.h>
36 #include <asm/topology.h>
38 #include <asm/semaphore.h>
39 #include <asm/uaccess.h>
41 #include <asm/sn/io.h>
42 #include <asm/sn/sn_sal.h>
43 #include <asm/sn/module.h>
44 #include <asm/sn/geo.h>
45 #include <asm/sn/sn2/sn_hwperf.h>
46 #include <asm/sn/addrs.h>
48 static void *sn_hwperf_salheap = NULL;
49 static int sn_hwperf_obj_cnt = 0;
50 static nasid_t sn_hwperf_master_nasid = INVALID_NASID;
51 static int sn_hwperf_init(void);
52 static DECLARE_MUTEX(sn_hwperf_init_mutex);
54 static int sn_hwperf_enum_objects(int *nobj, struct sn_hwperf_object_info **ret)
58 struct sn_hwperf_object_info *objbuf = NULL;
60 if ((e = sn_hwperf_init()) < 0) {
61 printk("sn_hwperf_init failed: err %d\n", e);
65 sz = sn_hwperf_obj_cnt * sizeof(struct sn_hwperf_object_info);
66 if ((objbuf = (struct sn_hwperf_object_info *) vmalloc(sz)) == NULL) {
67 printk("sn_hwperf_enum_objects: vmalloc(%d) failed\n", (int)sz);
72 e = ia64_sn_hwperf_op(sn_hwperf_master_nasid, SN_HWPERF_ENUM_OBJECTS,
73 0, sz, (u64) objbuf, 0, 0, NULL);
74 if (e != SN_HWPERF_OP_OK) {
80 *nobj = sn_hwperf_obj_cnt;
85 static int sn_hwperf_location_to_bpos(char *location,
86 int *rack, int *bay, int *slot, int *slab)
90 /* first scan for an old style geoid string */
91 if (sscanf(location, "%03d%c%02d#%d",
92 rack, &type, bay, slab) == 4)
94 else /* scan for a new bladed geoid string */
95 if (sscanf(location, "%03d%c%02d^%02d#%d",
96 rack, &type, bay, slot, slab) != 5)
102 static int sn_hwperf_geoid_to_cnode(char *location)
106 moduleid_t module_id;
107 int rack, bay, slot, slab;
108 int this_rack, this_bay, this_slot, this_slab;
110 if (sn_hwperf_location_to_bpos(location, &rack, &bay, &slot, &slab))
113 for (cnode = 0; cnode < numionodes; cnode++) {
114 geoid = cnodeid_get_geoid(cnode);
115 module_id = geo_module(geoid);
116 this_rack = MODULE_GET_RACK(module_id);
117 this_bay = MODULE_GET_BPOS(module_id);
118 this_slot = geo_slot(geoid);
119 this_slab = geo_slab(geoid);
120 if (rack == this_rack && bay == this_bay &&
121 slot == this_slot && slab == this_slab) {
126 return cnode < numionodes ? cnode : -1;
129 static int sn_hwperf_obj_to_cnode(struct sn_hwperf_object_info * obj)
131 if (!obj->sn_hwp_this_part)
133 return sn_hwperf_geoid_to_cnode(obj->location);
136 static int sn_hwperf_generic_ordinal(struct sn_hwperf_object_info *obj,
137 struct sn_hwperf_object_info *objs)
140 struct sn_hwperf_object_info *p;
142 for (ordinal=0, p=objs; p != obj; p++) {
143 if (SN_HWPERF_FOREIGN(p))
145 if (SN_HWPERF_SAME_OBJTYPE(p, obj))
152 static const char *slabname_node = "node"; /* SHub asic */
153 static const char *slabname_ionode = "ionode"; /* TIO asic */
154 static const char *slabname_router = "router"; /* NL3R or NL4R */
155 static const char *slabname_other = "other"; /* unknown asic */
157 static const char *sn_hwperf_get_slabname(struct sn_hwperf_object_info *obj,
158 struct sn_hwperf_object_info *objs, int *ordinal)
161 const char *slabname = slabname_other;
163 if ((isnode = SN_HWPERF_IS_NODE(obj)) || SN_HWPERF_IS_IONODE(obj)) {
164 slabname = isnode ? slabname_node : slabname_ionode;
165 *ordinal = sn_hwperf_obj_to_cnode(obj);
168 *ordinal = sn_hwperf_generic_ordinal(obj, objs);
169 if (SN_HWPERF_IS_ROUTER(obj))
170 slabname = slabname_router;
176 static void print_pci_topology(struct seq_file *s,
177 struct sn_hwperf_object_info *obj, int *ordinal,
178 u64 rack, u64 bay, u64 slot, u64 slab)
184 if (!(pg = (char *)get_zeroed_page(GFP_KERNEL)))
186 if (ia64_sn_ioif_get_pci_topology(rack, bay, slot, slab,
187 __pa(pg), PAGE_SIZE) == SN_HWPERF_OP_OK) {
188 for (p1=pg; *p1 && p1 < pg + PAGE_SIZE;) {
189 if (!(p2 = strchr(p1, '\n')))
192 seq_printf(s, "pcibus %d %s-%s\n",
193 *ordinal, obj->location, p1);
198 free_page((unsigned long)pg);
201 static int sn_topology_show(struct seq_file *s, void *d)
208 const char *slabname;
212 struct cpuinfo_ia64 *c;
213 struct sn_hwperf_port_info *ptdata;
214 struct sn_hwperf_object_info *p;
215 struct sn_hwperf_object_info *obj = d; /* this object */
216 struct sn_hwperf_object_info *objs = s->private; /* all objects */
217 int rack, bay, slot, slab;
227 int pci_bus_ordinal = 0;
230 seq_printf(s, "# sn_topology version 2\n");
231 seq_printf(s, "# objtype ordinal location partition"
232 " [attribute value [, ...]]\n");
234 if (ia64_sn_get_sn_info(0,
235 &shubtype, &nasid_mask, &nasid_shift, &system_size,
236 &sharing_size, &partid, &coher, ®ion_size))
238 for (nasid_msb=63; nasid_msb > 0; nasid_msb--) {
239 if (((u64)nasid_mask << nasid_shift) & (1ULL << nasid_msb))
242 seq_printf(s, "partition %u %s local "
244 "nasid_mask 0x%016lx, "
248 "coherency_domain %d, "
251 partid, system_utsname.nodename,
252 shubtype ? "shub2" : "shub1",
253 (u64)nasid_mask << nasid_shift, nasid_msb, nasid_shift,
254 system_size, sharing_size, coher, region_size);
257 if (SN_HWPERF_FOREIGN(obj)) {
258 /* private in another partition: not interesting */
262 for (i = 0; i < SN_HWPERF_MAXSTRING && obj->name[i]; i++) {
263 if (obj->name[i] == ' ')
267 slabname = sn_hwperf_get_slabname(obj, objs, &ordinal);
268 seq_printf(s, "%s %d %s %s asic %s", slabname, ordinal, obj->location,
269 obj->sn_hwp_this_part ? "local" : "shared", obj->name);
271 if (!SN_HWPERF_IS_NODE(obj) && !SN_HWPERF_IS_IONODE(obj))
274 seq_printf(s, ", nasid 0x%x", cnodeid_to_nasid(ordinal));
275 for (i=0; i < numionodes; i++) {
276 seq_printf(s, i ? ":%d" : ", dist %d",
277 node_distance(ordinal, i));
282 * CPUs on this node, if any
284 cpumask = node_to_cpumask(ordinal);
285 for_each_online_cpu(i) {
286 if (cpu_isset(i, cpumask)) {
287 slice = 'a' + cpuid_to_slice(i);
289 seq_printf(s, "cpu %d %s%c local"
290 " freq %luMHz, arch ia64",
291 i, obj->location, slice,
292 c->proc_freq / 1000000);
293 for_each_online_cpu(j) {
294 seq_printf(s, j ? ":%d" : ", dist %d",
297 cpuid_to_cnodeid(j)));
304 * PCI busses attached to this node, if any
306 if (sn_hwperf_location_to_bpos(obj->location,
307 &rack, &bay, &slot, &slab)) {
308 /* export pci bus info */
309 print_pci_topology(s, obj, &pci_bus_ordinal,
310 rack, bay, slot, slab);
319 sz = obj->ports * sizeof(struct sn_hwperf_port_info);
320 if ((ptdata = vmalloc(sz)) == NULL)
322 e = ia64_sn_hwperf_op(sn_hwperf_master_nasid,
323 SN_HWPERF_ENUM_PORTS, obj->id, sz,
324 (u64) ptdata, 0, 0, NULL);
325 if (e != SN_HWPERF_OP_OK)
327 for (ordinal=0, p=objs; p != obj; p++) {
328 if (!SN_HWPERF_FOREIGN(p))
331 for (pt = 0; pt < obj->ports; pt++) {
332 for (p = objs, i = 0; i < sn_hwperf_obj_cnt; i++, p++) {
333 if (ptdata[pt].conn_id == p->id) {
337 seq_printf(s, "numalink %d %s-%d",
338 ordinal+pt, obj->location, ptdata[pt].port);
340 if (i >= sn_hwperf_obj_cnt) {
342 seq_puts(s, " local endpoint disconnected"
343 ", protocol unknown\n");
347 if (obj->sn_hwp_this_part && p->sn_hwp_this_part)
348 /* both ends local to this partition */
349 seq_puts(s, " local");
350 else if (!obj->sn_hwp_this_part && !p->sn_hwp_this_part)
351 /* both ends of the link in foreign partiton */
352 seq_puts(s, " foreign");
354 /* link straddles a partition */
355 seq_puts(s, " shared");
358 * Unlikely, but strictly should query the LLP config
359 * registers because an NL4R can be configured to run
360 * NL3 protocol, even when not talking to an NL3 router.
361 * Ditto for node-node.
363 seq_printf(s, " endpoint %s-%d, protocol %s\n",
364 p->location, ptdata[pt].conn_port,
365 (SN_HWPERF_IS_NL3ROUTER(obj) ||
366 SN_HWPERF_IS_NL3ROUTER(p)) ? "LLP3" : "LLP4");
374 static void *sn_topology_start(struct seq_file *s, loff_t * pos)
376 struct sn_hwperf_object_info *objs = s->private;
378 if (*pos < sn_hwperf_obj_cnt)
379 return (void *)(objs + *pos);
384 static void *sn_topology_next(struct seq_file *s, void *v, loff_t * pos)
387 return sn_topology_start(s, pos);
390 static void sn_topology_stop(struct seq_file *m, void *v)
396 * /proc/sgi_sn/sn_topology, read-only using seq_file
398 static struct seq_operations sn_topology_seq_ops = {
399 .start = sn_topology_start,
400 .next = sn_topology_next,
401 .stop = sn_topology_stop,
402 .show = sn_topology_show
405 struct sn_hwperf_op_info {
407 struct sn_hwperf_ioctl_args *a;
413 static void sn_hwperf_call_sal(void *info)
415 struct sn_hwperf_op_info *op_info = info;
418 r = ia64_sn_hwperf_op(sn_hwperf_master_nasid, op_info->op,
419 op_info->a->arg, op_info->a->sz,
420 (u64) op_info->p, 0, 0, op_info->v0);
424 static int sn_hwperf_op_cpu(struct sn_hwperf_op_info *op_info)
429 cpumask_t save_allowed;
431 cpu = (op_info->a->arg & SN_HWPERF_ARG_CPU_MASK) >> 32;
432 use_ipi = op_info->a->arg & SN_HWPERF_ARG_USE_IPI_MASK;
433 op_info->a->arg &= SN_HWPERF_ARG_OBJID_MASK;
435 if (cpu != SN_HWPERF_ARG_ANY_CPU) {
436 if (cpu >= num_online_cpus() || !cpu_online(cpu)) {
442 if (cpu == SN_HWPERF_ARG_ANY_CPU || cpu == get_cpu()) {
443 /* don't care, or already on correct cpu */
444 sn_hwperf_call_sal(op_info);
448 /* use an interprocessor interrupt to call SAL */
449 smp_call_function_single(cpu, sn_hwperf_call_sal,
453 /* migrate the task before calling SAL */
454 save_allowed = current->cpus_allowed;
455 set_cpus_allowed(current, cpumask_of_cpu(cpu));
456 sn_hwperf_call_sal(op_info);
457 set_cpus_allowed(current, save_allowed);
466 /* map SAL hwperf error code to system error code */
467 static int sn_hwperf_map_err(int hwperf_err)
472 case SN_HWPERF_OP_OK:
476 case SN_HWPERF_OP_NOMEM:
480 case SN_HWPERF_OP_NO_PERM:
484 case SN_HWPERF_OP_IO_ERROR:
488 case SN_HWPERF_OP_BUSY:
492 case SN_HWPERF_OP_RECONFIGURE:
496 case SN_HWPERF_OP_INVAL:
506 * ioctl for "sn_hwperf" misc device
509 sn_hwperf_ioctl(struct inode *in, struct file *fp, u32 op, u64 arg)
511 struct sn_hwperf_ioctl_args a;
512 struct cpuinfo_ia64 *cdata;
513 struct sn_hwperf_object_info *objs;
514 struct sn_hwperf_object_info *cpuobj;
515 struct sn_hwperf_op_info op_info;
527 /* only user requests are allowed here */
528 if ((op & SN_HWPERF_OP_MASK) < 10) {
532 r = copy_from_user(&a, (const void __user *)arg,
533 sizeof(struct sn_hwperf_ioctl_args));
540 * Allocate memory to hold a kernel copy of the user buffer. The
541 * buffer contents are either copied in or out (or both) of user
542 * space depending on the flags encoded in the requested operation.
552 if (op & SN_HWPERF_OP_MEM_COPYIN) {
553 r = copy_from_user(p, (const void __user *)a.ptr, a.sz);
561 case SN_HWPERF_GET_CPU_INFO:
562 if (a.sz == sizeof(u64)) {
563 /* special case to get size needed */
564 *(u64 *) p = (u64) num_online_cpus() *
565 sizeof(struct sn_hwperf_object_info);
567 if (a.sz < num_online_cpus() * sizeof(struct sn_hwperf_object_info)) {
571 if ((r = sn_hwperf_enum_objects(&nobj, &objs)) == 0) {
573 for (i = 0; i < nobj; i++) {
574 node = sn_hwperf_obj_to_cnode(objs + i);
575 for_each_online_cpu(j) {
576 if (node != cpu_to_node(j))
578 cpuobj = (struct sn_hwperf_object_info *) p + j;
579 slice = 'a' + cpuid_to_slice(j);
582 snprintf(cpuobj->name,
583 sizeof(cpuobj->name),
585 cdata->proc_freq / 1000000,
587 snprintf(cpuobj->location,
588 sizeof(cpuobj->location),
589 "%s%c", objs[i].location,
598 case SN_HWPERF_GET_NODE_NASID:
599 if (a.sz != sizeof(u64) ||
600 (node = a.arg) < 0 || node >= numionodes) {
604 *(u64 *)p = (u64)cnodeid_to_nasid(node);
607 case SN_HWPERF_GET_OBJ_NODE:
608 if (a.sz != sizeof(u64) || a.arg < 0) {
612 if ((r = sn_hwperf_enum_objects(&nobj, &objs)) == 0) {
618 if (objs[(i = a.arg)].id != a.arg) {
619 for (i = 0; i < nobj; i++) {
620 if (objs[i].id == a.arg)
629 *(u64 *)p = (u64)sn_hwperf_obj_to_cnode(objs + i);
634 case SN_HWPERF_GET_MMRS:
635 case SN_HWPERF_SET_MMRS:
636 case SN_HWPERF_OBJECT_DISTANCE:
641 r = sn_hwperf_op_cpu(&op_info);
643 r = sn_hwperf_map_err(r);
650 /* all other ops are a direct SAL call */
651 r = ia64_sn_hwperf_op(sn_hwperf_master_nasid, op,
652 a.arg, a.sz, (u64) p, 0, 0, &v0);
654 r = sn_hwperf_map_err(r);
661 if (op & SN_HWPERF_OP_MEM_COPYOUT) {
662 r = copy_to_user((void __user *)a.ptr, p, a.sz);
676 static struct file_operations sn_hwperf_fops = {
677 .ioctl = sn_hwperf_ioctl,
680 static struct miscdevice sn_hwperf_dev = {
686 static int sn_hwperf_init(void)
692 /* single threaded, once-only initialization */
693 down(&sn_hwperf_init_mutex);
694 if (sn_hwperf_salheap) {
695 up(&sn_hwperf_init_mutex);
700 * The PROM code needs a fixed reference node. For convenience the
701 * same node as the console I/O is used.
703 sn_hwperf_master_nasid = (nasid_t) ia64_sn_get_console_nasid();
706 * Request the needed size and install the PROM scratch area.
707 * The PROM keeps various tracking bits in this memory area.
709 salr = ia64_sn_hwperf_op(sn_hwperf_master_nasid,
710 (u64) SN_HWPERF_GET_HEAPSIZE, 0,
711 (u64) sizeof(u64), (u64) &v, 0, 0, NULL);
712 if (salr != SN_HWPERF_OP_OK) {
717 if ((sn_hwperf_salheap = vmalloc(v)) == NULL) {
721 salr = ia64_sn_hwperf_op(sn_hwperf_master_nasid,
722 SN_HWPERF_INSTALL_HEAP, 0, v,
723 (u64) sn_hwperf_salheap, 0, 0, NULL);
724 if (salr != SN_HWPERF_OP_OK) {
729 salr = ia64_sn_hwperf_op(sn_hwperf_master_nasid,
730 SN_HWPERF_OBJECT_COUNT, 0,
731 sizeof(u64), (u64) &v, 0, 0, NULL);
732 if (salr != SN_HWPERF_OP_OK) {
736 sn_hwperf_obj_cnt = (int)v;
739 if (e < 0 && sn_hwperf_salheap) {
740 vfree(sn_hwperf_salheap);
741 sn_hwperf_salheap = NULL;
742 sn_hwperf_obj_cnt = 0;
747 * Register a dynamic misc device for ioctl. Platforms
748 * supporting hotplug will create /dev/sn_hwperf, else
749 * user can to look up the minor number in /proc/misc.
751 if ((e = misc_register(&sn_hwperf_dev)) != 0) {
752 printk(KERN_ERR "sn_hwperf_init: misc register "
753 "for \"sn_hwperf\" failed, err %d\n", e);
757 up(&sn_hwperf_init_mutex);
761 int sn_topology_open(struct inode *inode, struct file *file)
764 struct seq_file *seq;
765 struct sn_hwperf_object_info *objbuf;
768 if ((e = sn_hwperf_enum_objects(&nobj, &objbuf)) == 0) {
769 e = seq_open(file, &sn_topology_seq_ops);
770 seq = file->private_data;
771 seq->private = objbuf;
777 int sn_topology_release(struct inode *inode, struct file *file)
779 struct seq_file *seq = file->private_data;
782 return seq_release(inode, file);