Use tasklet to schedule printing our default greeting.
[cascardo/kernel/samples/char2/.git] / hellochar.c
1 /*
2  *  Copyright (C) 2010  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
3  *
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.
8  *
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.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <linux/module.h>
20 #include <linux/fs.h>
21 #include <linux/cdev.h>
22 #include <linux/slab.h>
23 #include <linux/spinlock.h>
24 #include <linux/interrupt.h>
25
26 MODULE_LICENSE("GPL");
27
28 static dev_t devnum;
29 static struct cdev *dev;
30 static const char def_greeting[] = "Hello, World!\n";
31
32 static DEFINE_SPINLOCK(hello_lock);
33
34 static int hello_open(struct inode *ino, struct file *fp)
35 {
36         return 0;
37 }
38
39 static void hello_world(unsigned long greeting)
40 {
41         printk(KERN_INFO "%s", (char *) greeting);
42 }
43
44 static DECLARE_TASKLET(hello_tasklet, hello_world, def_greeting);
45
46 static ssize_t hello_read(struct file *fp, char __user *buf, size_t sz,
47         loff_t *pos)
48 {
49         printk(KERN_INFO "Scheduling tasklet...\n");
50         tasklet_schedule(&hello_tasklet);
51         return 0;
52 }
53
54 static ssize_t hello_write(struct file *fp, const char __user *buf, size_t sz,
55         loff_t *pos)
56 {
57         return 0;
58 }
59
60 static int hello_release(struct inode *ino, struct file *fp)
61 {
62         return 0;
63 }
64
65 static const struct file_operations hello_fops = {
66         .owner = THIS_MODULE,
67         .open = hello_open,
68         .release = hello_release,
69         .read = hello_read,
70         .write = hello_write,
71 };
72
73 static int __init ch_init(void)
74 {
75         int r = 0;
76         r = alloc_chrdev_region(&devnum, 0, 256, "hello");
77         if (r)
78                 goto reg_out;
79         dev = cdev_alloc();
80         if (!dev) {
81                 r = -ENOMEM;
82                 goto cdev_out;
83         }
84         dev->ops = &hello_fops;
85         r = cdev_add(dev, devnum, 256);
86         if (r)
87                 goto add_out;
88         printk(KERN_DEBUG "Allocate major %d\n", MAJOR(devnum));
89         return 0;
90 add_out:
91         kfree(dev);
92 cdev_out:
93         unregister_chrdev_region(devnum, 256);
94 reg_out:
95         return r;
96 }
97
98 static void __exit ch_exit(void)
99 {
100         tasklet_kill(&hello_tasklet);
101         cdev_del(dev);
102         unregister_chrdev_region(devnum, 256);
103 }
104
105 module_init(ch_init);
106 module_exit(ch_exit);