misc: Typos
[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 <stdint.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 /*
32  * Internal IRQ system
33  * 
34  * This subsystem allow any piece of code to "register" a hook to be called when an IRQ is
35  * raised. The IRQ definition is up to the module defining it, for example a IOPORT pin change
36  * might be an IRQ in wich case any oiece of code can be notified when a pin has changed state
37  * 
38  * The notify hooks are chained, and duplicates are filtered out so you can't register a
39  * notify hook twice on one particylar IRQ
40  * 
41  * IRQ calling order is not defined, so don't rely on it.
42  * 
43  * IRQ hook needs to be registered in reset() handlers, ie after all modules init() bits
44  * have been called, to prevent race condition of the initialization order.
45  */
46 struct avr_irq_t;
47
48 typedef void (*avr_irq_notify_t)(struct avr_irq_t * irq, uint32_t value, void * param);
49
50
51 enum {
52         IRQ_FLAG_NOT            = (1 << 0),     // change polarity of the IRQ
53         IRQ_FLAG_FILTERED       = (1 << 1),     // do not "notify" if "value" is the same as previous raise
54         IRQ_FLAG_ALLOC          = (1 << 2), // this irq structure was malloced via avr_alloc_irq
55 };
56
57 /*
58  * Public IRQ structure
59  */
60 typedef struct avr_irq_t {
61         uint32_t                        irq;            // any value the user needs
62         uint32_t                        value;          // current value
63         uint8_t                         flags;          // IRQ_* flags
64         struct avr_irq_hook_t * hook;   // list of hooks to be notified
65 } avr_irq_t;
66
67 // allocates 'count' IRQs, initializes their "irq" starting from 'base' and increment
68 avr_irq_t * avr_alloc_irq(uint32_t base, uint32_t count);
69 void avr_free_irq(avr_irq_t * irq, uint32_t count);
70
71 // init 'count' IRQs, initializes their "irq" starting from 'base' and increment
72 void avr_init_irq(avr_irq_t * irq, uint32_t base, uint32_t count);
73 // 'raise' an IRQ. Ie call their 'hooks', and raise any chained IRQs, and set the new 'value'
74 void avr_raise_irq(avr_irq_t * irq, uint32_t value);
75 // this connects a "source" IRQ to a "destination" IRQ
76 void avr_connect_irq(avr_irq_t * src, avr_irq_t * dst);
77 // register a notification 'hook' for 'irq' -- 'param' is anything that your want passed back as argument
78 void avr_irq_register_notify(avr_irq_t * irq, avr_irq_notify_t notify, void * param);
79
80 #ifdef __cplusplus
81 };
82 #endif
83
84 #endif /* __SIM_IRQ_H__ */