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, 2006 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
)
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
= kzalloc(sizeof (struct subch_data_s
), GFP_KERNEL
);
82 printk("%s: couldn't allocate subchannel data\n",
87 /* initialize subch_data_s fields */
88 sd
->sd_nasid
= scd
->scd_nasid
;
89 sd
->sd_subch
= ia64_sn_irtr_open(scd
->scd_nasid
);
91 if (sd
->sd_subch
< 0) {
93 printk("%s: couldn't allocate subchannel\n", __FUNCTION__
);
97 spin_lock_init(&sd
->sd_rlock
);
98 spin_lock_init(&sd
->sd_wlock
);
99 init_waitqueue_head(&sd
->sd_rq
);
100 init_waitqueue_head(&sd
->sd_wq
);
101 sema_init(&sd
->sd_rbs
, 1);
102 sema_init(&sd
->sd_wbs
, 1);
104 file
->private_data
= sd
;
106 /* hook this subchannel up to the system controller interrupt */
107 rv
= request_irq(SGI_UART_VECTOR
, scdrv_interrupt
,
108 IRQF_SHARED
| IRQF_DISABLED
,
109 SYSCTL_BASENAME
, sd
);
111 ia64_sn_irtr_close(sd
->sd_nasid
, sd
->sd_subch
);
113 printk("%s: irq request failed (%d)\n", __FUNCTION__
, rv
);
123 * Release a previously-reserved subchannel.
127 scdrv_release(struct inode
*inode
, struct file
*file
)
129 struct subch_data_s
*sd
= (struct subch_data_s
*) file
->private_data
;
132 /* free the interrupt */
133 free_irq(SGI_UART_VECTOR
, sd
);
135 /* ask SAL to close the subchannel */
136 rv
= ia64_sn_irtr_close(sd
->sd_nasid
, sd
->sd_subch
);
145 * Called to read bytes from the open IRouter pipe.
150 read_status_check(struct subch_data_s
*sd
, int *len
)
152 return ia64_sn_irtr_recv(sd
->sd_nasid
, sd
->sd_subch
, sd
->sd_rb
, len
);
156 scdrv_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*f_pos
)
161 struct subch_data_s
*sd
= (struct subch_data_s
*) file
->private_data
;
163 /* try to get control of the read buffer */
164 if (down_trylock(&sd
->sd_rbs
)) {
165 /* somebody else has it now;
166 * if we're non-blocking, then exit...
168 if (file
->f_flags
& O_NONBLOCK
) {
171 /* ...or if we want to block, then do so here */
172 if (down_interruptible(&sd
->sd_rbs
)) {
173 /* something went wrong with wait */
178 /* anything to read? */
180 spin_lock_irqsave(&sd
->sd_rlock
, flags
);
181 status
= read_status_check(sd
, &len
);
183 /* if not, and we're blocking I/O, loop */
185 DECLARE_WAITQUEUE(wait
, current
);
187 if (file
->f_flags
& O_NONBLOCK
) {
188 spin_unlock_irqrestore(&sd
->sd_rlock
, flags
);
194 set_current_state(TASK_INTERRUPTIBLE
);
195 add_wait_queue(&sd
->sd_rq
, &wait
);
196 spin_unlock_irqrestore(&sd
->sd_rlock
, flags
);
198 schedule_timeout(SCDRV_TIMEOUT
);
200 remove_wait_queue(&sd
->sd_rq
, &wait
);
201 if (signal_pending(current
)) {
202 /* wait was interrupted */
207 spin_lock_irqsave(&sd
->sd_rlock
, flags
);
208 status
= read_status_check(sd
, &len
);
210 spin_unlock_irqrestore(&sd
->sd_rlock
, flags
);
213 /* we read something in the last read_status_check(); copy
214 * it out to user space
217 pr_debug("%s: only accepting %d of %d bytes\n",
218 __FUNCTION__
, (int) count
, len
);
220 len
= min((int) count
, len
);
221 if (copy_to_user(buf
, sd
->sd_rb
, len
))
225 /* release the read buffer and wake anyone who might be
230 /* return the number of characters read in */
237 * Writes a chunk of an IRouter packet (or other system controller data)
238 * to the system controller.
242 write_status_check(struct subch_data_s
*sd
, int count
)
244 return ia64_sn_irtr_send(sd
->sd_nasid
, sd
->sd_subch
, sd
->sd_wb
, count
);
248 scdrv_write(struct file
*file
, const char __user
*buf
,
249 size_t count
, loff_t
*f_pos
)
253 struct subch_data_s
*sd
= (struct subch_data_s
*) file
->private_data
;
255 /* try to get control of the write buffer */
256 if (down_trylock(&sd
->sd_wbs
)) {
257 /* somebody else has it now;
258 * if we're non-blocking, then exit...
260 if (file
->f_flags
& O_NONBLOCK
) {
263 /* ...or if we want to block, then do so here */
264 if (down_interruptible(&sd
->sd_wbs
)) {
265 /* something went wrong with wait */
270 count
= min((int) count
, CHUNKSIZE
);
271 if (copy_from_user(sd
->sd_wb
, buf
, count
)) {
276 /* try to send the buffer */
277 spin_lock_irqsave(&sd
->sd_wlock
, flags
);
278 status
= write_status_check(sd
, count
);
280 /* if we failed, and we want to block, then loop */
281 while (status
<= 0) {
282 DECLARE_WAITQUEUE(wait
, current
);
284 if (file
->f_flags
& O_NONBLOCK
) {
285 spin_unlock(&sd
->sd_wlock
);
290 set_current_state(TASK_INTERRUPTIBLE
);
291 add_wait_queue(&sd
->sd_wq
, &wait
);
292 spin_unlock_irqrestore(&sd
->sd_wlock
, flags
);
294 schedule_timeout(SCDRV_TIMEOUT
);
296 remove_wait_queue(&sd
->sd_wq
, &wait
);
297 if (signal_pending(current
)) {
298 /* wait was interrupted */
303 spin_lock_irqsave(&sd
->sd_wlock
, flags
);
304 status
= write_status_check(sd
, count
);
306 spin_unlock_irqrestore(&sd
->sd_wlock
, flags
);
308 /* release the write buffer and wake anyone who's waiting for it */
311 /* return the number of characters accepted (should be the complete
312 * "chunk" as requested)
314 if ((status
>= 0) && (status
< count
)) {
315 pr_debug("Didn't accept the full chunk; %d of %d\n",
316 status
, (int) count
);
322 scdrv_poll(struct file
*file
, struct poll_table_struct
*wait
)
324 unsigned int mask
= 0;
326 struct subch_data_s
*sd
= (struct subch_data_s
*) file
->private_data
;
329 poll_wait(file
, &sd
->sd_rq
, wait
);
330 poll_wait(file
, &sd
->sd_wq
, wait
);
332 spin_lock_irqsave(&sd
->sd_rlock
, flags
);
333 spin_lock(&sd
->sd_wlock
);
334 status
= ia64_sn_irtr_intr(sd
->sd_nasid
, sd
->sd_subch
);
335 spin_unlock(&sd
->sd_wlock
);
336 spin_unlock_irqrestore(&sd
->sd_rlock
, flags
);
339 if (status
& SAL_IROUTER_INTR_RECV
) {
340 mask
|= POLLIN
| POLLRDNORM
;
342 if (status
& SAL_IROUTER_INTR_XMIT
) {
343 mask
|= POLLOUT
| POLLWRNORM
;
350 static const struct file_operations scdrv_fops
= {
351 .owner
= THIS_MODULE
,
353 .write
= scdrv_write
,
356 .release
= scdrv_release
,
359 static struct class *snsc_class
;
364 * Called at boot time to initialize the system controller communication
374 struct sysctl_data_s
*scd
;
376 dev_t first_dev
, dev
;
379 if (!ia64_platform_is("sn2"))
382 event_nasid
= ia64_sn_get_console_nasid();
384 if (alloc_chrdev_region(&first_dev
, 0, num_cnodes
,
385 SYSCTL_BASENAME
) < 0) {
386 printk("%s: failed to register SN system controller device\n",
390 snsc_class
= class_create(THIS_MODULE
, SYSCTL_BASENAME
);
392 for (cnode
= 0; cnode
< num_cnodes
; cnode
++) {
393 geoid
= cnodeid_get_geoid(cnode
);
395 format_module_id(devnamep
, geo_module(geoid
),
396 MODULE_FORMAT_BRIEF
);
397 devnamep
= devname
+ strlen(devname
);
398 sprintf(devnamep
, "^%d#%d", geo_slot(geoid
),
401 /* allocate sysctl device data */
402 scd
= kzalloc(sizeof (struct sysctl_data_s
),
405 printk("%s: failed to allocate device info"
406 "for %s/%s\n", __FUNCTION__
,
407 SYSCTL_BASENAME
, devname
);
411 /* initialize sysctl device data fields */
412 scd
->scd_nasid
= cnodeid_to_nasid(cnode
);
413 if (!(salbuf
= kmalloc(SCDRV_BUFSZ
, GFP_KERNEL
))) {
414 printk("%s: failed to allocate driver buffer"
415 "(%s%s)\n", __FUNCTION__
,
416 SYSCTL_BASENAME
, devname
);
421 if (ia64_sn_irtr_init(scd
->scd_nasid
, salbuf
,
424 ("%s: failed to initialize SAL for"
425 " system controller communication"
426 " (%s/%s): outdated PROM?\n",
427 __FUNCTION__
, SYSCTL_BASENAME
, devname
);
433 dev
= first_dev
+ cnode
;
434 cdev_init(&scd
->scd_cdev
, &scdrv_fops
);
435 if (cdev_add(&scd
->scd_cdev
, dev
, 1)) {
436 printk("%s: failed to register system"
437 " controller device (%s%s)\n",
438 __FUNCTION__
, SYSCTL_BASENAME
, devname
);
444 device_create(snsc_class
, NULL
, dev
, "%s", devname
);
446 ia64_sn_irtr_intr_enable(scd
->scd_nasid
,
448 SAL_IROUTER_INTR_RECV
);
450 /* on the console nasid, prepare to receive
451 * system controller environmental events
453 if(scd
->scd_nasid
== event_nasid
) {
454 scdrv_event_init(scd
);
460 module_init(scdrv_init
);