sn_proc_fs.c 3.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
6
 * Copyright (C) 2000-2005 Silicon Graphics, Inc. All rights reserved.
L
Linus Torvalds 已提交
7 8 9 10 11 12
 */
#include <linux/config.h>

#ifdef CONFIG_PROC_FS
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
13
#include <asm/uaccess.h>
L
Linus Torvalds 已提交
14 15 16 17
#include <asm/sn/sn_sal.h>

static int partition_id_show(struct seq_file *s, void *p)
{
18
	seq_printf(s, "%d\n", sn_partition_id);
L
Linus Torvalds 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
	return 0;
}

static int partition_id_open(struct inode *inode, struct file *file)
{
	return single_open(file, partition_id_show, NULL);
}

static int system_serial_number_show(struct seq_file *s, void *p)
{
	seq_printf(s, "%s\n", sn_system_serial_number());
	return 0;
}

static int system_serial_number_open(struct inode *inode, struct file *file)
{
	return single_open(file, system_serial_number_show, NULL);
}

static int licenseID_show(struct seq_file *s, void *p)
{
	seq_printf(s, "0x%lx\n", sn_partition_serial_number_val());
	return 0;
}

static int licenseID_open(struct inode *inode, struct file *file)
{
	return single_open(file, licenseID_show, NULL);
}

/*
 * Enable forced interrupt by default.
 * When set, the sn interrupt handler writes the force interrupt register on
 * the bridge chip.  The hardware will then send an interrupt message if the
 * interrupt line is active.  This mimics a level sensitive interrupt.
 */
L
Len Brown 已提交
55
extern int sn_force_interrupt_flag;
L
Linus Torvalds 已提交
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92

static int sn_force_interrupt_show(struct seq_file *s, void *p)
{
	seq_printf(s, "Force interrupt is %s\n",
		sn_force_interrupt_flag ? "enabled" : "disabled");
	return 0;
}

static ssize_t sn_force_interrupt_write_proc(struct file *file,
		const char __user *buffer, size_t count, loff_t *data)
{
	char val;

	if (copy_from_user(&val, buffer, 1))
		return -EFAULT;

	sn_force_interrupt_flag = (val == '0') ? 0 : 1;
	return count;
}

static int sn_force_interrupt_open(struct inode *inode, struct file *file)
{
	return single_open(file, sn_force_interrupt_show, NULL);
}

static int coherence_id_show(struct seq_file *s, void *p)
{
	seq_printf(s, "%d\n", partition_coherence_id());

	return 0;
}

static int coherence_id_open(struct inode *inode, struct file *file)
{
	return single_open(file, coherence_id_show, NULL);
}

93 94 95
static struct proc_dir_entry
*sn_procfs_create_entry(const char *name, struct proc_dir_entry *parent,
			int (*openfunc)(struct inode *, struct file *),
A
Andrew Morton 已提交
96 97
	int (*releasefunc)(struct inode *, struct file *),
	ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *))
L
Linus Torvalds 已提交
98 99 100 101
{
	struct proc_dir_entry *e = create_proc_entry(name, 0444, parent);

	if (e) {
A
Andrew Morton 已提交
102 103 104 105 106 107 108 109 110 111
		struct file_operations *f;

		f = kzalloc(sizeof(*f), GFP_KERNEL);
		if (f) {
			f->open = openfunc;
			f->read = seq_read;
			f->llseek = seq_lseek;
			f->release = releasefunc;
			f->write = write;
			e->proc_fops = f;
L
Linus Torvalds 已提交
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
		}
	}

	return e;
}

/* /proc/sgi_sn/sn_topology uses seq_file, see sn_hwperf.c */
extern int sn_topology_open(struct inode *, struct file *);
extern int sn_topology_release(struct inode *, struct file *);

void register_sn_procfs(void)
{
	static struct proc_dir_entry *sgi_proc_dir = NULL;

	BUG_ON(sgi_proc_dir != NULL);
	if (!(sgi_proc_dir = proc_mkdir("sgi_sn", NULL)))
		return;

	sn_procfs_create_entry("partition_id", sgi_proc_dir,
A
Andrew Morton 已提交
131
		partition_id_open, single_release, NULL);
L
Linus Torvalds 已提交
132 133

	sn_procfs_create_entry("system_serial_number", sgi_proc_dir,
A
Andrew Morton 已提交
134
		system_serial_number_open, single_release, NULL);
L
Linus Torvalds 已提交
135 136

	sn_procfs_create_entry("licenseID", sgi_proc_dir, 
A
Andrew Morton 已提交
137
		licenseID_open, single_release, NULL);
L
Linus Torvalds 已提交
138

A
Andrew Morton 已提交
139 140 141
	sn_procfs_create_entry("sn_force_interrupt", sgi_proc_dir,
		sn_force_interrupt_open, single_release,
		sn_force_interrupt_write_proc);
L
Linus Torvalds 已提交
142 143

	sn_procfs_create_entry("coherence_id", sgi_proc_dir, 
A
Andrew Morton 已提交
144
		coherence_id_open, single_release, NULL);
L
Linus Torvalds 已提交
145 146
	
	sn_procfs_create_entry("sn_topology", sgi_proc_dir,
A
Andrew Morton 已提交
147
		sn_topology_open, sn_topology_release, NULL);
L
Linus Torvalds 已提交
148 149 150
}

#endif /* CONFIG_PROC_FS */