forked from cirosantilli/linux-kernel-module-cheat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathirq.c
64 lines (54 loc) · 1.24 KB
/
irq.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* https://cirosantilli.com/linux-kernel-module-cheat#irq-ko */
#include <linux/fs.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/uaccess.h> /* copy_from_user, copy_to_user */
#define NAME "lkmc_irq"
#define MAX_IRQS 256
static int irqs[MAX_IRQS];
static int major;
/**
* Return value from kernel docs:*
*
* enum irqreturn
* @IRQ_NONE interrupt was not from this device or was not handled
* @IRQ_HANDLED interrupt was handled by this device
* @IRQ_WAKE_THREAD handler requests to wake the handler thread
*/
static irqreturn_t handler(int irq, void *dev)
{
pr_info("handler irq = %d dev = %d\n", irq, *(int *)dev);
return IRQ_NONE;
}
static const struct file_operations fops;
static int myinit(void)
{
int ret, i;
major = register_chrdev(0, NAME, &fops);
for (i = 0; i < MAX_IRQS; ++i) {
ret = request_irq(
i,
handler,
IRQF_SHARED,
"myirqhandler0",
&major
);
irqs[i] = ret;
pr_info("request_irq irq = %d ret = %d\n", i, ret);
}
return 0;
}
static void myexit(void)
{
int i;
for (i = 0; i < MAX_IRQS; ++i) {
if (!irqs[i]) {
free_irq(i, &major);
}
}
unregister_chrdev(major, NAME);
}
module_init(myinit)
module_exit(myexit)
MODULE_LICENSE("GPL");