2 * IBM ASM Service Processor Device Driver
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 * Copyright (C) IBM Corporation, 2004
20 * Author: Max Asböck <amax@us.ibm.com>
25 * Parts of this code are based on an article by Jonathan Corbet
26 * that appeared in Linux Weekly News.
31 * The IBMASM file virtual filesystem. It creates the following hierarchy
32 * dymamically when mounted from user space:
38 * | |-- reverse_heartbeat
51 * |-- reverse_heartbeat
59 * For each service processor the following files are created:
61 * command: execute dot commands
62 * write: execute a dot command on the service processor
63 * read: return the result of a previously executed dot command
65 * events: listen for service processor events
66 * read: sleep (interruptible) until an event occurs
67 * write: wakeup sleeping event listener
69 * reverse_heartbeat: send a heartbeat to the service processor
70 * read: sleep (interruptible) until the reverse heartbeat fails
71 * write: wakeup sleeping heartbeat listener
75 * remote_video/width: control remote display settings
79 * remote_video/connected
80 * read: return "1" if web browser VNC java applet is connected,
84 * read: sleep until a remote mouse or keyboard event occurs, then return
89 #include <linux/pagemap.h>
90 #include <asm/uaccess.h>
94 #include "dot_command.h"
96 #define IBMASMFS_MAGIC 0x66726f67
98 static LIST_HEAD(service_processors
);
100 static struct inode
*ibmasmfs_make_inode(struct super_block
*sb
, int mode
);
101 static void ibmasmfs_create_files (struct super_block
*sb
, struct dentry
*root
);
102 static int ibmasmfs_fill_super (struct super_block
*sb
, void *data
, int silent
);
105 static struct super_block
*ibmasmfs_get_super(struct file_system_type
*fst
,
106 int flags
, const char *name
, void *data
)
108 return get_sb_single(fst
, flags
, data
, ibmasmfs_fill_super
);
111 static struct super_operations ibmasmfs_s_ops
= {
112 .statfs
= simple_statfs
,
113 .drop_inode
= generic_delete_inode
,
116 static struct file_operations
*ibmasmfs_dir_ops
= &simple_dir_operations
;
118 static struct file_system_type ibmasmfs_type
= {
119 .owner
= THIS_MODULE
,
121 .get_sb
= ibmasmfs_get_super
,
122 .kill_sb
= kill_litter_super
,
125 static int ibmasmfs_fill_super (struct super_block
*sb
, void *data
, int silent
)
128 struct dentry
*root_dentry
;
130 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
131 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
132 sb
->s_magic
= IBMASMFS_MAGIC
;
133 sb
->s_op
= &ibmasmfs_s_ops
;
136 root
= ibmasmfs_make_inode (sb
, S_IFDIR
| 0500);
140 root
->i_op
= &simple_dir_inode_operations
;
141 root
->i_fop
= ibmasmfs_dir_ops
;
143 root_dentry
= d_alloc_root(root
);
148 sb
->s_root
= root_dentry
;
150 ibmasmfs_create_files(sb
, root_dentry
);
154 static struct inode
*ibmasmfs_make_inode(struct super_block
*sb
, int mode
)
156 struct inode
*ret
= new_inode(sb
);
160 ret
->i_uid
= ret
->i_gid
= 0;
161 ret
->i_blksize
= PAGE_CACHE_SIZE
;
163 ret
->i_atime
= ret
->i_mtime
= ret
->i_ctime
= CURRENT_TIME
;
168 static struct dentry
*ibmasmfs_create_file (struct super_block
*sb
,
169 struct dentry
*parent
,
171 struct file_operations
*fops
,
175 struct dentry
*dentry
;
178 dentry
= d_alloc_name(parent
, name
);
182 inode
= ibmasmfs_make_inode(sb
, S_IFREG
| mode
);
189 inode
->u
.generic_ip
= data
;
191 d_add(dentry
, inode
);
195 static struct dentry
*ibmasmfs_create_dir (struct super_block
*sb
,
196 struct dentry
*parent
,
199 struct dentry
*dentry
;
202 dentry
= d_alloc_name(parent
, name
);
206 inode
= ibmasmfs_make_inode(sb
, S_IFDIR
| 0500);
212 inode
->i_op
= &simple_dir_inode_operations
;
213 inode
->i_fop
= ibmasmfs_dir_ops
;
215 d_add(dentry
, inode
);
219 int ibmasmfs_register(void)
221 return register_filesystem(&ibmasmfs_type
);
224 void ibmasmfs_unregister(void)
226 unregister_filesystem(&ibmasmfs_type
);
229 void ibmasmfs_add_sp(struct service_processor
*sp
)
231 list_add(&sp
->node
, &service_processors
);
234 /* struct to save state between command file operations */
235 struct ibmasmfs_command_data
{
236 struct service_processor
*sp
;
237 struct command
*command
;
240 /* struct to save state between event file operations */
241 struct ibmasmfs_event_data
{
242 struct service_processor
*sp
;
243 struct event_reader reader
;
247 /* struct to save state between reverse heartbeat file operations */
248 struct ibmasmfs_heartbeat_data
{
249 struct service_processor
*sp
;
250 struct reverse_heartbeat heartbeat
;
254 static int command_file_open(struct inode
*inode
, struct file
*file
)
256 struct ibmasmfs_command_data
*command_data
;
258 if (!inode
->u
.generic_ip
)
261 command_data
= kmalloc(sizeof(struct ibmasmfs_command_data
), GFP_KERNEL
);
265 command_data
->command
= NULL
;
266 command_data
->sp
= inode
->u
.generic_ip
;
267 file
->private_data
= command_data
;
271 static int command_file_close(struct inode
*inode
, struct file
*file
)
273 struct ibmasmfs_command_data
*command_data
= file
->private_data
;
275 if (command_data
->command
)
276 command_put(command_data
->command
);
282 static ssize_t
command_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*offset
)
284 struct ibmasmfs_command_data
*command_data
= file
->private_data
;
291 if (count
== 0 || count
> IBMASM_CMD_MAX_BUFFER_SIZE
)
296 spin_lock_irqsave(&command_data
->sp
->lock
, flags
);
297 cmd
= command_data
->command
;
299 spin_unlock_irqrestore(&command_data
->sp
->lock
, flags
);
302 command_data
->command
= NULL
;
303 spin_unlock_irqrestore(&command_data
->sp
->lock
, flags
);
305 if (cmd
->status
!= IBMASM_CMD_COMPLETE
) {
309 len
= min(count
, cmd
->buffer_size
);
310 if (copy_to_user(buf
, cmd
->buffer
, len
)) {
319 static ssize_t
command_file_write(struct file
*file
, const char __user
*ubuff
, size_t count
, loff_t
*offset
)
321 struct ibmasmfs_command_data
*command_data
= file
->private_data
;
327 if (count
== 0 || count
> IBMASM_CMD_MAX_BUFFER_SIZE
)
332 /* commands are executed sequentially, only one command at a time */
333 if (command_data
->command
)
336 cmd
= ibmasm_new_command(count
);
340 if (copy_from_user(cmd
->buffer
, ubuff
, count
)) {
345 spin_lock_irqsave(&command_data
->sp
->lock
, flags
);
346 if (command_data
->command
) {
347 spin_unlock_irqrestore(&command_data
->sp
->lock
, flags
);
351 command_data
->command
= cmd
;
352 spin_unlock_irqrestore(&command_data
->sp
->lock
, flags
);
354 ibmasm_exec_command(command_data
->sp
, cmd
);
355 ibmasm_wait_for_response(cmd
, get_dot_command_timeout(cmd
->buffer
));
360 static int event_file_open(struct inode
*inode
, struct file
*file
)
362 struct ibmasmfs_event_data
*event_data
;
363 struct service_processor
*sp
;
365 if (!inode
->u
.generic_ip
)
368 sp
= inode
->u
.generic_ip
;
370 event_data
= kmalloc(sizeof(struct ibmasmfs_event_data
), GFP_KERNEL
);
374 ibmasm_event_reader_register(sp
, &event_data
->reader
);
377 file
->private_data
= event_data
;
381 static int event_file_close(struct inode
*inode
, struct file
*file
)
383 struct ibmasmfs_event_data
*event_data
= file
->private_data
;
385 ibmasm_event_reader_unregister(event_data
->sp
, &event_data
->reader
);
390 static ssize_t
event_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*offset
)
392 struct ibmasmfs_event_data
*event_data
= file
->private_data
;
393 struct event_reader
*reader
= &event_data
->reader
;
398 if (count
== 0 || count
> IBMASM_EVENT_MAX_SIZE
)
403 ret
= ibmasm_get_next_event(event_data
->sp
, reader
);
407 if (count
< reader
->data_size
)
410 if (copy_to_user(buf
, reader
->data
, reader
->data_size
))
413 return reader
->data_size
;
416 static ssize_t
event_file_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*offset
)
418 struct ibmasmfs_event_data
*event_data
= file
->private_data
;
427 wake_up_interruptible(&event_data
->reader
.wait
);
431 static int r_heartbeat_file_open(struct inode
*inode
, struct file
*file
)
433 struct ibmasmfs_heartbeat_data
*rhbeat
;
435 if (!inode
->u
.generic_ip
)
438 rhbeat
= kmalloc(sizeof(struct ibmasmfs_heartbeat_data
), GFP_KERNEL
);
442 rhbeat
->sp
= (struct service_processor
*)inode
->u
.generic_ip
;
444 ibmasm_init_reverse_heartbeat(rhbeat
->sp
, &rhbeat
->heartbeat
);
445 file
->private_data
= rhbeat
;
449 static int r_heartbeat_file_close(struct inode
*inode
, struct file
*file
)
451 struct ibmasmfs_heartbeat_data
*rhbeat
= file
->private_data
;
457 static ssize_t
r_heartbeat_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*offset
)
459 struct ibmasmfs_heartbeat_data
*rhbeat
= file
->private_data
;
465 if (count
== 0 || count
> 1024)
470 /* allow only one reverse heartbeat per process */
471 spin_lock_irqsave(&rhbeat
->sp
->lock
, flags
);
472 if (rhbeat
->active
) {
473 spin_unlock_irqrestore(&rhbeat
->sp
->lock
, flags
);
477 spin_unlock_irqrestore(&rhbeat
->sp
->lock
, flags
);
479 result
= ibmasm_start_reverse_heartbeat(rhbeat
->sp
, &rhbeat
->heartbeat
);
485 static ssize_t
r_heartbeat_file_write(struct file
*file
, const char __user
*buf
, size_t count
, loff_t
*offset
)
487 struct ibmasmfs_heartbeat_data
*rhbeat
= file
->private_data
;
497 ibmasm_stop_reverse_heartbeat(&rhbeat
->heartbeat
);
502 static int remote_settings_file_open(struct inode
*inode
, struct file
*file
)
504 file
->private_data
= inode
->u
.generic_ip
;
508 static int remote_settings_file_close(struct inode
*inode
, struct file
*file
)
513 static ssize_t
remote_settings_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*offset
)
515 void __iomem
*address
= (void __iomem
*)file
->private_data
;
523 if (count
== 0 || count
> 1024)
528 page
= (unsigned char *)__get_free_page(GFP_KERNEL
);
532 value
= readl(address
);
533 len
= sprintf(page
, "%d\n", value
);
535 if (copy_to_user(buf
, page
, len
)) {
543 free_page((unsigned long)page
);
547 static ssize_t
remote_settings_file_write(struct file
*file
, const char __user
*ubuff
, size_t count
, loff_t
*offset
)
549 void __iomem
*address
= (void __iomem
*)file
->private_data
;
555 if (count
== 0 || count
> 1024)
560 buff
= kmalloc (count
+ 1, GFP_KERNEL
);
564 memset(buff
, 0x0, count
+ 1);
566 if (copy_from_user(buff
, ubuff
, count
)) {
571 value
= simple_strtoul(buff
, NULL
, 10);
572 writel(value
, address
);
578 static int remote_event_file_open(struct inode
*inode
, struct file
*file
)
580 struct service_processor
*sp
;
582 struct remote_queue
*q
;
584 file
->private_data
= inode
->u
.generic_ip
;
585 sp
= file
->private_data
;
586 q
= &sp
->remote_queue
;
588 /* allow only one event reader */
589 spin_lock_irqsave(&sp
->lock
, flags
);
591 spin_unlock_irqrestore(&sp
->lock
, flags
);
595 spin_unlock_irqrestore(&sp
->lock
, flags
);
597 enable_mouse_interrupts(sp
);
602 static int remote_event_file_close(struct inode
*inode
, struct file
*file
)
604 struct service_processor
*sp
= file
->private_data
;
606 disable_mouse_interrupts(sp
);
607 wake_up_interruptible(&sp
->remote_queue
.wait
);
608 sp
->remote_queue
.open
= 0;
613 static ssize_t
remote_event_file_read(struct file
*file
, char __user
*buf
, size_t count
, loff_t
*offset
)
615 struct service_processor
*sp
= file
->private_data
;
616 struct remote_queue
*q
= &sp
->remote_queue
;
618 struct remote_event
*reader
= q
->reader
;
623 if (count
== 0 || count
> 1024)
628 if (wait_event_interruptible(q
->wait
, q
->reader
!= q
->writer
))
631 /* only get multiples of struct remote_event */
632 num_events
= min((count
/sizeof(struct remote_event
)), ibmasm_events_available(q
));
636 data_size
= num_events
* sizeof(struct remote_event
);
638 if (copy_to_user(buf
, reader
, data_size
))
641 ibmasm_advance_reader(q
, num_events
);
647 static struct file_operations command_fops
= {
648 .open
= command_file_open
,
649 .release
= command_file_close
,
650 .read
= command_file_read
,
651 .write
= command_file_write
,
654 static struct file_operations event_fops
= {
655 .open
= event_file_open
,
656 .release
= event_file_close
,
657 .read
= event_file_read
,
658 .write
= event_file_write
,
661 static struct file_operations r_heartbeat_fops
= {
662 .open
= r_heartbeat_file_open
,
663 .release
= r_heartbeat_file_close
,
664 .read
= r_heartbeat_file_read
,
665 .write
= r_heartbeat_file_write
,
668 static struct file_operations remote_settings_fops
= {
669 .open
= remote_settings_file_open
,
670 .release
= remote_settings_file_close
,
671 .read
= remote_settings_file_read
,
672 .write
= remote_settings_file_write
,
675 static struct file_operations remote_event_fops
= {
676 .open
= remote_event_file_open
,
677 .release
= remote_event_file_close
,
678 .read
= remote_event_file_read
,
682 static void ibmasmfs_create_files (struct super_block
*sb
, struct dentry
*root
)
684 struct list_head
*entry
;
685 struct service_processor
*sp
;
687 list_for_each(entry
, &service_processors
) {
689 struct dentry
*remote_dir
;
690 sp
= list_entry(entry
, struct service_processor
, node
);
691 dir
= ibmasmfs_create_dir(sb
, root
, sp
->dirname
);
695 ibmasmfs_create_file(sb
, dir
, "command", &command_fops
, sp
, S_IRUSR
|S_IWUSR
);
696 ibmasmfs_create_file(sb
, dir
, "event", &event_fops
, sp
, S_IRUSR
|S_IWUSR
);
697 ibmasmfs_create_file(sb
, dir
, "reverse_heartbeat", &r_heartbeat_fops
, sp
, S_IRUSR
|S_IWUSR
);
699 remote_dir
= ibmasmfs_create_dir(sb
, dir
, "remote_video");
703 ibmasmfs_create_file(sb
, remote_dir
, "width", &remote_settings_fops
, (void *)display_width(sp
), S_IRUSR
|S_IWUSR
);
704 ibmasmfs_create_file(sb
, remote_dir
, "height", &remote_settings_fops
, (void *)display_height(sp
), S_IRUSR
|S_IWUSR
);
705 ibmasmfs_create_file(sb
, remote_dir
, "depth", &remote_settings_fops
, (void *)display_depth(sp
), S_IRUSR
|S_IWUSR
);
706 ibmasmfs_create_file(sb
, remote_dir
, "connected", &remote_settings_fops
, (void *)vnc_status(sp
), S_IRUSR
);
707 ibmasmfs_create_file(sb
, remote_dir
, "events", &remote_event_fops
, (void *)sp
, S_IRUSR
);