161c3110357d38111c9a448da6281d820acef7d1
[simavr] / simavr / sim / sim_irq.h
1 /*
2         sim_irq.h
3
4         Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
5
6         This file is part of simavr.
7
8         simavr is free software: you can redistribute it and/or modify
9         it under the terms of the GNU General Public License as published by
10         the Free Software Foundation, either version 3 of the License, or
11         (at your option) any later version.
12
13         simavr is distributed in the hope that it will be useful,
14         but WITHOUT ANY WARRANTY; without even the implied warranty of
15         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16         GNU General Public License for more details.
17
18         You should have received a copy of the GNU General Public License
19         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 #ifndef __SIM_IRQ_H__
23 #define __SIM_IRQ_H__
24
25 #include "sim_avr.h"
26
27 /*
28  * Internal IRQ system
29  * 
30  * This subsystem allow any piece of code to "register" a hook to be called when an IRQ is
31  * raised. The IRQ definition is up to the module defining it, for example a IOPORT pin change
32  * might be an IRQ in wich case any oiece of code can be notified when a pin has changed state
33  * 
34  * The notify hooks are chained, and duplicates are filtered out so you can't register a
35  * notify hook twice on one particylar IRQ
36  * 
37  * IRQ calling order is not defined, so don't rely on it.
38  * 
39  * IRQ hook needs to be registered in reset() handlers, ie after all modules init() bits
40  * have been called, to prevent race condition of the initialization order.
41  */
42 // internal structure for a hook, never seen by the notify procs
43 struct avr_irq_t;
44
45 typedef void (*avr_irq_notify_t)(avr_t * avr, struct avr_irq_t * irq, uint32_t value, void * param);
46
47 typedef struct avr_irq_hook_t {
48         struct avr_irq_hook_t * next;
49         void * param;
50         int busy;       // prevent reentrance of callbacks
51         avr_irq_notify_t notify;
52 } avr_irq_hook_t;
53
54 typedef struct avr_irq_t {
55         uint32_t                        irq;
56         uint32_t                        value;
57         avr_irq_hook_t *        hook;
58 } avr_irq_t;
59
60 avr_irq_t * avr_alloc_irq(avr_t * avr, uint32_t base, uint32_t count);
61 void avr_init_irq(avr_t * avr, avr_irq_t * irq, uint32_t base, uint32_t count);
62 void avr_raise_irq(avr_t * avr, avr_irq_t * irq, uint32_t value);
63 // this connects a "source" IRQ to a "destination" IRQ
64 void avr_connect_irq(avr_t * avr, avr_irq_t * src, avr_irq_t * dst);
65 void avr_irq_register_notify(avr_t * avr, avr_irq_t * irq, avr_irq_notify_t notify, void * param);
66
67 #endif /* __SIM_IRQ_H__ */