percpu: clear memory allocated with the km allocator
[linux-2.6/kvm.git] / drivers / misc / ibmasm / ibmasmfs.c
blob8844a3f45381e8bd34c2a13901f77810fe87aa95
1 /*
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:
34 * /ibmasm
35 * |-- 0
36 * | |-- command
37 * | |-- event
38 * | |-- reverse_heartbeat
39 * | `-- remote_video
40 * | |-- depth
41 * | |-- height
42 * | `-- width
43 * .
44 * .
45 * .
46 * `-- n
47 * |-- command
48 * |-- event
49 * |-- reverse_heartbeat
50 * `-- remote_video
51 * |-- depth
52 * |-- height
53 * `-- width
55 * For each service processor the following files are created:
57 * command: execute dot commands
58 * write: execute a dot command on the service processor
59 * read: return the result of a previously executed dot command
61 * events: listen for service processor events
62 * read: sleep (interruptible) until an event occurs
63 * write: wakeup sleeping event listener
65 * reverse_heartbeat: send a heartbeat to the service processor
66 * read: sleep (interruptible) until the reverse heartbeat fails
67 * write: wakeup sleeping heartbeat listener
69 * remote_video/width
70 * remote_video/height
71 * remote_video/width: control remote display settings
72 * write: set value
73 * read: read value
76 #include <linux/fs.h>
77 #include <linux/pagemap.h>
78 #include <linux/slab.h>
79 #include <asm/uaccess.h>
80 #include <asm/io.h>
81 #include "ibmasm.h"
82 #include "remote.h"
83 #include "dot_command.h"
85 #define IBMASMFS_MAGIC 0x66726f67
87 static LIST_HEAD(service_processors);
89 static struct inode *ibmasmfs_make_inode(struct super_block *sb, int mode);
90 static void ibmasmfs_create_files (struct super_block *sb, struct dentry *root);
91 static int ibmasmfs_fill_super (struct super_block *sb, void *data, int silent);
94 static int ibmasmfs_get_super(struct file_system_type *fst,
95 int flags, const char *name, void *data,
96 struct vfsmount *mnt)
98 return get_sb_single(fst, flags, data, ibmasmfs_fill_super, mnt);
101 static const struct super_operations ibmasmfs_s_ops = {
102 .statfs = simple_statfs,
103 .drop_inode = generic_delete_inode,
106 static const struct file_operations *ibmasmfs_dir_ops = &simple_dir_operations;
108 static struct file_system_type ibmasmfs_type = {
109 .owner = THIS_MODULE,
110 .name = "ibmasmfs",
111 .get_sb = ibmasmfs_get_super,
112 .kill_sb = kill_litter_super,
115 static int ibmasmfs_fill_super (struct super_block *sb, void *data, int silent)
117 struct inode *root;
118 struct dentry *root_dentry;
120 sb->s_blocksize = PAGE_CACHE_SIZE;
121 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
122 sb->s_magic = IBMASMFS_MAGIC;
123 sb->s_op = &ibmasmfs_s_ops;
124 sb->s_time_gran = 1;
126 root = ibmasmfs_make_inode (sb, S_IFDIR | 0500);
127 if (!root)
128 return -ENOMEM;
130 root->i_op = &simple_dir_inode_operations;
131 root->i_fop = ibmasmfs_dir_ops;
133 root_dentry = d_alloc_root(root);
134 if (!root_dentry) {
135 iput(root);
136 return -ENOMEM;
138 sb->s_root = root_dentry;
140 ibmasmfs_create_files(sb, root_dentry);
141 return 0;
144 static struct inode *ibmasmfs_make_inode(struct super_block *sb, int mode)
146 struct inode *ret = new_inode(sb);
148 if (ret) {
149 ret->i_mode = mode;
150 ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME;
152 return ret;
155 static struct dentry *ibmasmfs_create_file (struct super_block *sb,
156 struct dentry *parent,
157 const char *name,
158 const struct file_operations *fops,
159 void *data,
160 int mode)
162 struct dentry *dentry;
163 struct inode *inode;
165 dentry = d_alloc_name(parent, name);
166 if (!dentry)
167 return NULL;
169 inode = ibmasmfs_make_inode(sb, S_IFREG | mode);
170 if (!inode) {
171 dput(dentry);
172 return NULL;
175 inode->i_fop = fops;
176 inode->i_private = data;
178 d_add(dentry, inode);
179 return dentry;
182 static struct dentry *ibmasmfs_create_dir (struct super_block *sb,
183 struct dentry *parent,
184 const char *name)
186 struct dentry *dentry;
187 struct inode *inode;
189 dentry = d_alloc_name(parent, name);
190 if (!dentry)
191 return NULL;
193 inode = ibmasmfs_make_inode(sb, S_IFDIR | 0500);
194 if (!inode) {
195 dput(dentry);
196 return NULL;
199 inode->i_op = &simple_dir_inode_operations;
200 inode->i_fop = ibmasmfs_dir_ops;
202 d_add(dentry, inode);
203 return dentry;
206 int ibmasmfs_register(void)
208 return register_filesystem(&ibmasmfs_type);
211 void ibmasmfs_unregister(void)
213 unregister_filesystem(&ibmasmfs_type);
216 void ibmasmfs_add_sp(struct service_processor *sp)
218 list_add(&sp->node, &service_processors);
221 /* struct to save state between command file operations */
222 struct ibmasmfs_command_data {
223 struct service_processor *sp;
224 struct command *command;
227 /* struct to save state between event file operations */
228 struct ibmasmfs_event_data {
229 struct service_processor *sp;
230 struct event_reader reader;
231 int active;
234 /* struct to save state between reverse heartbeat file operations */
235 struct ibmasmfs_heartbeat_data {
236 struct service_processor *sp;
237 struct reverse_heartbeat heartbeat;
238 int active;
241 static int command_file_open(struct inode *inode, struct file *file)
243 struct ibmasmfs_command_data *command_data;
245 if (!inode->i_private)
246 return -ENODEV;
248 command_data = kmalloc(sizeof(struct ibmasmfs_command_data), GFP_KERNEL);
249 if (!command_data)
250 return -ENOMEM;
252 command_data->command = NULL;
253 command_data->sp = inode->i_private;
254 file->private_data = command_data;
255 return 0;
258 static int command_file_close(struct inode *inode, struct file *file)
260 struct ibmasmfs_command_data *command_data = file->private_data;
262 if (command_data->command)
263 command_put(command_data->command);
265 kfree(command_data);
266 return 0;
269 static ssize_t command_file_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
271 struct ibmasmfs_command_data *command_data = file->private_data;
272 struct command *cmd;
273 int len;
274 unsigned long flags;
276 if (*offset < 0)
277 return -EINVAL;
278 if (count == 0 || count > IBMASM_CMD_MAX_BUFFER_SIZE)
279 return 0;
280 if (*offset != 0)
281 return 0;
283 spin_lock_irqsave(&command_data->sp->lock, flags);
284 cmd = command_data->command;
285 if (cmd == NULL) {
286 spin_unlock_irqrestore(&command_data->sp->lock, flags);
287 return 0;
289 command_data->command = NULL;
290 spin_unlock_irqrestore(&command_data->sp->lock, flags);
292 if (cmd->status != IBMASM_CMD_COMPLETE) {
293 command_put(cmd);
294 return -EIO;
296 len = min(count, cmd->buffer_size);
297 if (copy_to_user(buf, cmd->buffer, len)) {
298 command_put(cmd);
299 return -EFAULT;
301 command_put(cmd);
303 return len;
306 static ssize_t command_file_write(struct file *file, const char __user *ubuff, size_t count, loff_t *offset)
308 struct ibmasmfs_command_data *command_data = file->private_data;
309 struct command *cmd;
310 unsigned long flags;
312 if (*offset < 0)
313 return -EINVAL;
314 if (count == 0 || count > IBMASM_CMD_MAX_BUFFER_SIZE)
315 return 0;
316 if (*offset != 0)
317 return 0;
319 /* commands are executed sequentially, only one command at a time */
320 if (command_data->command)
321 return -EAGAIN;
323 cmd = ibmasm_new_command(command_data->sp, count);
324 if (!cmd)
325 return -ENOMEM;
327 if (copy_from_user(cmd->buffer, ubuff, count)) {
328 command_put(cmd);
329 return -EFAULT;
332 spin_lock_irqsave(&command_data->sp->lock, flags);
333 if (command_data->command) {
334 spin_unlock_irqrestore(&command_data->sp->lock, flags);
335 command_put(cmd);
336 return -EAGAIN;
338 command_data->command = cmd;
339 spin_unlock_irqrestore(&command_data->sp->lock, flags);
341 ibmasm_exec_command(command_data->sp, cmd);
342 ibmasm_wait_for_response(cmd, get_dot_command_timeout(cmd->buffer));
344 return count;
347 static int event_file_open(struct inode *inode, struct file *file)
349 struct ibmasmfs_event_data *event_data;
350 struct service_processor *sp;
352 if (!inode->i_private)
353 return -ENODEV;
355 sp = inode->i_private;
357 event_data = kmalloc(sizeof(struct ibmasmfs_event_data), GFP_KERNEL);
358 if (!event_data)
359 return -ENOMEM;
361 ibmasm_event_reader_register(sp, &event_data->reader);
363 event_data->sp = sp;
364 event_data->active = 0;
365 file->private_data = event_data;
366 return 0;
369 static int event_file_close(struct inode *inode, struct file *file)
371 struct ibmasmfs_event_data *event_data = file->private_data;
373 ibmasm_event_reader_unregister(event_data->sp, &event_data->reader);
374 kfree(event_data);
375 return 0;
378 static ssize_t event_file_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
380 struct ibmasmfs_event_data *event_data = file->private_data;
381 struct event_reader *reader = &event_data->reader;
382 struct service_processor *sp = event_data->sp;
383 int ret;
384 unsigned long flags;
386 if (*offset < 0)
387 return -EINVAL;
388 if (count == 0 || count > IBMASM_EVENT_MAX_SIZE)
389 return 0;
390 if (*offset != 0)
391 return 0;
393 spin_lock_irqsave(&sp->lock, flags);
394 if (event_data->active) {
395 spin_unlock_irqrestore(&sp->lock, flags);
396 return -EBUSY;
398 event_data->active = 1;
399 spin_unlock_irqrestore(&sp->lock, flags);
401 ret = ibmasm_get_next_event(sp, reader);
402 if (ret <= 0)
403 goto out;
405 if (count < reader->data_size) {
406 ret = -EINVAL;
407 goto out;
410 if (copy_to_user(buf, reader->data, reader->data_size)) {
411 ret = -EFAULT;
412 goto out;
414 ret = reader->data_size;
416 out:
417 event_data->active = 0;
418 return ret;
421 static ssize_t event_file_write(struct file *file, const char __user *buf, size_t count, loff_t *offset)
423 struct ibmasmfs_event_data *event_data = file->private_data;
425 if (*offset < 0)
426 return -EINVAL;
427 if (count != 1)
428 return 0;
429 if (*offset != 0)
430 return 0;
432 ibmasm_cancel_next_event(&event_data->reader);
433 return 0;
436 static int r_heartbeat_file_open(struct inode *inode, struct file *file)
438 struct ibmasmfs_heartbeat_data *rhbeat;
440 if (!inode->i_private)
441 return -ENODEV;
443 rhbeat = kmalloc(sizeof(struct ibmasmfs_heartbeat_data), GFP_KERNEL);
444 if (!rhbeat)
445 return -ENOMEM;
447 rhbeat->sp = inode->i_private;
448 rhbeat->active = 0;
449 ibmasm_init_reverse_heartbeat(rhbeat->sp, &rhbeat->heartbeat);
450 file->private_data = rhbeat;
451 return 0;
454 static int r_heartbeat_file_close(struct inode *inode, struct file *file)
456 struct ibmasmfs_heartbeat_data *rhbeat = file->private_data;
458 kfree(rhbeat);
459 return 0;
462 static ssize_t r_heartbeat_file_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
464 struct ibmasmfs_heartbeat_data *rhbeat = file->private_data;
465 unsigned long flags;
466 int result;
468 if (*offset < 0)
469 return -EINVAL;
470 if (count == 0 || count > 1024)
471 return 0;
472 if (*offset != 0)
473 return 0;
475 /* allow only one reverse heartbeat per process */
476 spin_lock_irqsave(&rhbeat->sp->lock, flags);
477 if (rhbeat->active) {
478 spin_unlock_irqrestore(&rhbeat->sp->lock, flags);
479 return -EBUSY;
481 rhbeat->active = 1;
482 spin_unlock_irqrestore(&rhbeat->sp->lock, flags);
484 result = ibmasm_start_reverse_heartbeat(rhbeat->sp, &rhbeat->heartbeat);
485 rhbeat->active = 0;
487 return result;
490 static ssize_t r_heartbeat_file_write(struct file *file, const char __user *buf, size_t count, loff_t *offset)
492 struct ibmasmfs_heartbeat_data *rhbeat = file->private_data;
494 if (*offset < 0)
495 return -EINVAL;
496 if (count != 1)
497 return 0;
498 if (*offset != 0)
499 return 0;
501 if (rhbeat->active)
502 ibmasm_stop_reverse_heartbeat(&rhbeat->heartbeat);
504 return 1;
507 static int remote_settings_file_open(struct inode *inode, struct file *file)
509 file->private_data = inode->i_private;
510 return 0;
513 static int remote_settings_file_close(struct inode *inode, struct file *file)
515 return 0;
518 static ssize_t remote_settings_file_read(struct file *file, char __user *buf, size_t count, loff_t *offset)
520 void __iomem *address = (void __iomem *)file->private_data;
521 unsigned char *page;
522 int retval;
523 int len = 0;
524 unsigned int value;
526 if (*offset < 0)
527 return -EINVAL;
528 if (count == 0 || count > 1024)
529 return 0;
530 if (*offset != 0)
531 return 0;
533 page = (unsigned char *)__get_free_page(GFP_KERNEL);
534 if (!page)
535 return -ENOMEM;
537 value = readl(address);
538 len = sprintf(page, "%d\n", value);
540 if (copy_to_user(buf, page, len)) {
541 retval = -EFAULT;
542 goto exit;
544 *offset += len;
545 retval = len;
547 exit:
548 free_page((unsigned long)page);
549 return retval;
552 static ssize_t remote_settings_file_write(struct file *file, const char __user *ubuff, size_t count, loff_t *offset)
554 void __iomem *address = (void __iomem *)file->private_data;
555 char *buff;
556 unsigned int value;
558 if (*offset < 0)
559 return -EINVAL;
560 if (count == 0 || count > 1024)
561 return 0;
562 if (*offset != 0)
563 return 0;
565 buff = kzalloc (count + 1, GFP_KERNEL);
566 if (!buff)
567 return -ENOMEM;
570 if (copy_from_user(buff, ubuff, count)) {
571 kfree(buff);
572 return -EFAULT;
575 value = simple_strtoul(buff, NULL, 10);
576 writel(value, address);
577 kfree(buff);
579 return count;
582 static const struct file_operations command_fops = {
583 .open = command_file_open,
584 .release = command_file_close,
585 .read = command_file_read,
586 .write = command_file_write,
589 static const struct file_operations event_fops = {
590 .open = event_file_open,
591 .release = event_file_close,
592 .read = event_file_read,
593 .write = event_file_write,
596 static const struct file_operations r_heartbeat_fops = {
597 .open = r_heartbeat_file_open,
598 .release = r_heartbeat_file_close,
599 .read = r_heartbeat_file_read,
600 .write = r_heartbeat_file_write,
603 static const struct file_operations remote_settings_fops = {
604 .open = remote_settings_file_open,
605 .release = remote_settings_file_close,
606 .read = remote_settings_file_read,
607 .write = remote_settings_file_write,
611 static void ibmasmfs_create_files (struct super_block *sb, struct dentry *root)
613 struct list_head *entry;
614 struct service_processor *sp;
616 list_for_each(entry, &service_processors) {
617 struct dentry *dir;
618 struct dentry *remote_dir;
619 sp = list_entry(entry, struct service_processor, node);
620 dir = ibmasmfs_create_dir(sb, root, sp->dirname);
621 if (!dir)
622 continue;
624 ibmasmfs_create_file(sb, dir, "command", &command_fops, sp, S_IRUSR|S_IWUSR);
625 ibmasmfs_create_file(sb, dir, "event", &event_fops, sp, S_IRUSR|S_IWUSR);
626 ibmasmfs_create_file(sb, dir, "reverse_heartbeat", &r_heartbeat_fops, sp, S_IRUSR|S_IWUSR);
628 remote_dir = ibmasmfs_create_dir(sb, dir, "remote_video");
629 if (!remote_dir)
630 continue;
632 ibmasmfs_create_file(sb, remote_dir, "width", &remote_settings_fops, (void *)display_width(sp), S_IRUSR|S_IWUSR);
633 ibmasmfs_create_file(sb, remote_dir, "height", &remote_settings_fops, (void *)display_height(sp), S_IRUSR|S_IWUSR);
634 ibmasmfs_create_file(sb, remote_dir, "depth", &remote_settings_fops, (void *)display_depth(sp), S_IRUSR|S_IWUSR);