xref: /dflybsd-src/sys/dev/drm/include/linux/interrupt.h (revision 7c324357c2de9f5930b82a981c0147080f88039a)
1 /*
2  * Copyright (c) 2017-2018 François Tigeot <ftigeot@wolfpond.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice unmodified, this list of conditions, and the following
10  *    disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 
27 #ifndef _LINUX_INTERRUPT_H_
28 #define _LINUX_INTERRUPT_H_
29 
30 #include <linux/kernel.h>
31 #include <linux/bitops.h>
32 #include <linux/irqreturn.h>
33 #include <linux/hardirq.h>
34 #include <linux/irqflags.h>
35 #include <linux/hrtimer.h>
36 #include <linux/kref.h>
37 
38 #include <linux/atomic.h>
39 
40 #define IRQF_SHARED	0x00000080
41 
42 struct tasklet_struct {
43 	unsigned long state;
44 	void (*func)(unsigned long);
45 	unsigned long data;
46 	struct lock lock;
47 };
48 
49 enum {
50 	TASKLET_STATE_SCHED,
51 	TASKLET_STATE_RUN
52 };
53 
54 /*
55  * TODO: verify these points:
56  * - tasklets that have the same type cannot be run on multiple processors at the same time
57  * - tasklets always run on the processor from which they were originally
58  *   submitted
59  * - when a tasklet is scheduled, its state is set to TASKLET_STATE_SCHED, and the tasklet
60  *   added to a queue
61  * - during the execution of its function, the tasklet state is set to TASKLET_STATE_RUN
62  *   and the TASKLET_STATE_SCHED state is removed
63  */
64 
65 /* XXX scheduling and execution should be handled separately */
66 static inline void
67 tasklet_schedule(struct tasklet_struct *t)
68 {
69 	set_bit(TASKLET_STATE_SCHED, &t->state);
70 
71 	lockmgr(&t->lock, LK_EXCLUSIVE);
72 	clear_bit(TASKLET_STATE_SCHED, &t->state);
73 
74 	set_bit(TASKLET_STATE_RUN, &t->state);
75 	if (t->func)
76 		t->func(t->data);
77 	clear_bit(TASKLET_STATE_RUN, &t->state);
78 
79 	lockmgr(&t->lock, LK_RELEASE);
80 }
81 
82 /* This function ensures that the tasklet is not scheduled to run again */
83 /* XXX this doesn't kill anything */
84 static inline void
85 tasklet_kill(struct tasklet_struct *t)
86 {
87 	lockmgr(&t->lock, LK_EXCLUSIVE);
88 	clear_bit(TASKLET_STATE_SCHED, &t->state);
89 	lockmgr(&t->lock, LK_RELEASE);
90 }
91 
92 static inline void
93 tasklet_init(struct tasklet_struct *t, void (*func)(unsigned long), unsigned long data)
94 {
95 	lockinit(&t->lock, "ltasklet", 0, LK_CANRECURSE);
96 	t->state = 0;
97 	t->func = func;
98 	t->data = data;
99 }
100 
101 typedef irqreturn_t (*irq_handler_t)(int, void *);
102 
103 int request_irq(unsigned int irq, irq_handler_t handler,
104 		unsigned long flags, const char *name, void *dev);
105 
106 void free_irq(unsigned int irq, void *dev_id);
107 
108 #endif	/* _LINUX_INTERRUPT_H_ */
109