2 * SN Platform system controller communication support
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
8 * Copyright (C) 2004 Silicon Graphics, Inc. All rights reserved.
12 * System controller communication driver
14 * This driver allows a user process to communicate with the system
15 * controller (a.k.a. "IRouter") network in an SGI SN system.
18 #include <linux/interrupt.h>
19 #include <linux/sched.h>
20 #include <linux/device.h>
21 #include <linux/poll.h>
22 #include <linux/module.h>
23 #include <linux/slab.h>
24 #include <asm/sn/io.h>
25 #include <asm/sn/sn_sal.h>
26 #include <asm/sn/module.h>
27 #include <asm/sn/geo.h>
28 #include <asm/sn/nodepda.h>
31 #define SYSCTL_BASENAME "snsc"
33 #define SCDRV_BUFSZ 2048
34 #define SCDRV_TIMEOUT 1000
37 scdrv_interrupt(int irq, void *subch_data, struct pt_regs *regs)
39 struct subch_data_s *sd = subch_data;
43 spin_lock_irqsave(&sd->sd_rlock, flags);
44 spin_lock(&sd->sd_wlock);
45 status = ia64_sn_irtr_intr(sd->sd_nasid, sd->sd_subch);
48 if (status & SAL_IROUTER_INTR_RECV) {
51 if (status & SAL_IROUTER_INTR_XMIT) {
52 ia64_sn_irtr_intr_disable
53 (sd->sd_nasid, sd->sd_subch,
54 SAL_IROUTER_INTR_XMIT);
58 spin_unlock(&sd->sd_wlock);
59 spin_unlock_irqrestore(&sd->sd_rlock, flags);
66 * Reserve a subchannel for system controller communication.
70 scdrv_open(struct inode *inode, struct file *file)
72 struct sysctl_data_s *scd;
73 struct subch_data_s *sd;
76 /* look up device info for this device file */
77 scd = container_of(inode->i_cdev, struct sysctl_data_s, scd_cdev);
79 /* allocate memory for subchannel data */
80 sd = kmalloc(sizeof (struct subch_data_s), GFP_KERNEL);
82 printk("%s: couldn't allocate subchannel data\n",
87 /* initialize subch_data_s fields */
88 memset(sd, 0, sizeof (struct subch_data_s));
89 sd->sd_nasid = scd->scd_nasid;
90 sd->sd_subch = ia64_sn_irtr_open(scd->scd_nasid);
92 if (sd->sd_subch < 0) {
94 printk("%s: couldn't allocate subchannel\n", __FUNCTION__);
98 spin_lock_init(&sd->sd_rlock);
99 spin_lock_init(&sd->sd_wlock);
100 init_waitqueue_head(&sd->sd_rq);
101 init_waitqueue_head(&sd->sd_wq);
102 sema_init(&sd->sd_rbs, 1);
103 sema_init(&sd->sd_wbs, 1);
105 file->private_data = sd;
107 /* hook this subchannel up to the system controller interrupt */
108 rv = request_irq(SGI_UART_VECTOR, scdrv_interrupt,
109 SA_SHIRQ | SA_INTERRUPT,
110 SYSCTL_BASENAME, sd);
112 ia64_sn_irtr_close(sd->sd_nasid, sd->sd_subch);
114 printk("%s: irq request failed (%d)\n", __FUNCTION__, rv);
124 * Release a previously-reserved subchannel.
128 scdrv_release(struct inode *inode, struct file *file)
130 struct subch_data_s *sd = (struct subch_data_s *) file->private_data;
133 /* free the interrupt */
134 free_irq(SGI_UART_VECTOR, sd);
136 /* ask SAL to close the subchannel */
137 rv = ia64_sn_irtr_close(sd->sd_nasid, sd->sd_subch);
146 * Called to read bytes from the open IRouter pipe.
151 read_status_check(struct subch_data_s *sd, int *len)
153 return ia64_sn_irtr_recv(sd->sd_nasid, sd->sd_subch, sd->sd_rb, len);
157 scdrv_read(struct file *file, char __user *buf, size_t count, loff_t *f_pos)
162 struct subch_data_s *sd = (struct subch_data_s *) file->private_data;
164 /* try to get control of the read buffer */
165 if (down_trylock(&sd->sd_rbs)) {
166 /* somebody else has it now;
167 * if we're non-blocking, then exit...
169 if (file->f_flags & O_NONBLOCK) {
172 /* ...or if we want to block, then do so here */
173 if (down_interruptible(&sd->sd_rbs)) {
174 /* something went wrong with wait */
179 /* anything to read? */
181 spin_lock_irqsave(&sd->sd_rlock, flags);
182 status = read_status_check(sd, &len);
184 /* if not, and we're blocking I/O, loop */
186 DECLARE_WAITQUEUE(wait, current);
188 if (file->f_flags & O_NONBLOCK) {
189 spin_unlock_irqrestore(&sd->sd_rlock, flags);
195 set_current_state(TASK_INTERRUPTIBLE);
196 add_wait_queue(&sd->sd_rq, &wait);
197 spin_unlock_irqrestore(&sd->sd_rlock, flags);
199 schedule_timeout(SCDRV_TIMEOUT);
201 remove_wait_queue(&sd->sd_rq, &wait);
202 if (signal_pending(current)) {
203 /* wait was interrupted */
208 spin_lock_irqsave(&sd->sd_rlock, flags);
209 status = read_status_check(sd, &len);
211 spin_unlock_irqrestore(&sd->sd_rlock, flags);
214 /* we read something in the last read_status_check(); copy
215 * it out to user space
218 pr_debug("%s: only accepting %d of %d bytes\n",
219 __FUNCTION__, (int) count, len);
221 len = min((int) count, len);
222 if (copy_to_user(buf, sd->sd_rb, len))
226 /* release the read buffer and wake anyone who might be
231 /* return the number of characters read in */
238 * Writes a chunk of an IRouter packet (or other system controller data)
239 * to the system controller.
243 write_status_check(struct subch_data_s *sd, int count)
245 return ia64_sn_irtr_send(sd->sd_nasid, sd->sd_subch, sd->sd_wb, count);
249 scdrv_write(struct file *file, const char __user *buf,
250 size_t count, loff_t *f_pos)
254 struct subch_data_s *sd = (struct subch_data_s *) file->private_data;
256 /* try to get control of the write buffer */
257 if (down_trylock(&sd->sd_wbs)) {
258 /* somebody else has it now;
259 * if we're non-blocking, then exit...
261 if (file->f_flags & O_NONBLOCK) {
264 /* ...or if we want to block, then do so here */
265 if (down_interruptible(&sd->sd_wbs)) {
266 /* something went wrong with wait */
271 count = min((int) count, CHUNKSIZE);
272 if (copy_from_user(sd->sd_wb, buf, count)) {
277 /* try to send the buffer */
278 spin_lock_irqsave(&sd->sd_wlock, flags);
279 status = write_status_check(sd, count);
281 /* if we failed, and we want to block, then loop */
282 while (status <= 0) {
283 DECLARE_WAITQUEUE(wait, current);
285 if (file->f_flags & O_NONBLOCK) {
286 spin_unlock(&sd->sd_wlock);
291 set_current_state(TASK_INTERRUPTIBLE);
292 add_wait_queue(&sd->sd_wq, &wait);
293 spin_unlock_irqrestore(&sd->sd_wlock, flags);
295 schedule_timeout(SCDRV_TIMEOUT);
297 remove_wait_queue(&sd->sd_wq, &wait);
298 if (signal_pending(current)) {
299 /* wait was interrupted */
304 spin_lock_irqsave(&sd->sd_wlock, flags);
305 status = write_status_check(sd, count);
307 spin_unlock_irqrestore(&sd->sd_wlock, flags);
309 /* release the write buffer and wake anyone who's waiting for it */
312 /* return the number of characters accepted (should be the complete
313 * "chunk" as requested)
315 if ((status >= 0) && (status < count)) {
316 pr_debug("Didn't accept the full chunk; %d of %d\n",
317 status, (int) count);
323 scdrv_poll(struct file *file, struct poll_table_struct *wait)
325 unsigned int mask = 0;
327 struct subch_data_s *sd = (struct subch_data_s *) file->private_data;
330 poll_wait(file, &sd->sd_rq, wait);
331 poll_wait(file, &sd->sd_wq, wait);
333 spin_lock_irqsave(&sd->sd_rlock, flags);
334 spin_lock(&sd->sd_wlock);
335 status = ia64_sn_irtr_intr(sd->sd_nasid, sd->sd_subch);
336 spin_unlock(&sd->sd_wlock);
337 spin_unlock_irqrestore(&sd->sd_rlock, flags);
340 if (status & SAL_IROUTER_INTR_RECV) {
341 mask |= POLLIN | POLLRDNORM;
343 if (status & SAL_IROUTER_INTR_XMIT) {
344 mask |= POLLOUT | POLLWRNORM;
351 static struct file_operations scdrv_fops = {
352 .owner = THIS_MODULE,
354 .write = scdrv_write,
357 .release = scdrv_release,
363 * Called at boot time to initialize the system controller communication
373 struct sysctl_data_s *scd;
375 struct class_simple *snsc_class;
376 dev_t first_dev, dev;
377 nasid_t event_nasid = ia64_sn_get_console_nasid();
379 if (alloc_chrdev_region(&first_dev, 0, numionodes,
380 SYSCTL_BASENAME) < 0) {
381 printk("%s: failed to register SN system controller device\n",
385 snsc_class = class_simple_create(THIS_MODULE, SYSCTL_BASENAME);
387 for (cnode = 0; cnode < numionodes; cnode++) {
388 geoid = cnodeid_get_geoid(cnode);
390 format_module_id(devnamep, geo_module(geoid),
391 MODULE_FORMAT_BRIEF);
392 devnamep = devname + strlen(devname);
393 sprintf(devnamep, "#%d", geo_slab(geoid));
395 /* allocate sysctl device data */
396 scd = kmalloc(sizeof (struct sysctl_data_s),
399 printk("%s: failed to allocate device info"
400 "for %s/%s\n", __FUNCTION__,
401 SYSCTL_BASENAME, devname);
404 memset(scd, 0, sizeof (struct sysctl_data_s));
406 /* initialize sysctl device data fields */
407 scd->scd_nasid = cnodeid_to_nasid(cnode);
408 if (!(salbuf = kmalloc(SCDRV_BUFSZ, GFP_KERNEL))) {
409 printk("%s: failed to allocate driver buffer"
410 "(%s%s)\n", __FUNCTION__,
411 SYSCTL_BASENAME, devname);
416 if (ia64_sn_irtr_init(scd->scd_nasid, salbuf,
419 ("%s: failed to initialize SAL for"
420 " system controller communication"
421 " (%s/%s): outdated PROM?\n",
422 __FUNCTION__, SYSCTL_BASENAME, devname);
428 dev = first_dev + cnode;
429 cdev_init(&scd->scd_cdev, &scdrv_fops);
430 if (cdev_add(&scd->scd_cdev, dev, 1)) {
431 printk("%s: failed to register system"
432 " controller device (%s%s)\n",
433 __FUNCTION__, SYSCTL_BASENAME, devname);
439 class_simple_device_add(snsc_class, dev, NULL,
442 ia64_sn_irtr_intr_enable(scd->scd_nasid,
444 SAL_IROUTER_INTR_RECV);
446 /* on the console nasid, prepare to receive
447 * system controller environmental events
449 if(scd->scd_nasid == event_nasid) {
450 scdrv_event_init(scd);
456 module_init(scdrv_init);