GDB working, some more source massaging
[simavr] / simavr / sim / sim_io.h
1 /*
2         sim_io.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_IO_H__
23 #define __SIM_IO_H__
24
25 #include "sim_avr.h"
26
27 /*
28  * used by the ioports to implement their own features
29  * see avr_eeprom.* for an example, and avr_ioctl().
30  */
31 #define AVR_IOCTL_DEF(_a,_b,_c,_d) \
32         (((_a) << 24)|((_b) << 16)|((_c) << 8)|((_d)))
33
34 /*
35  * IO module base struct
36  * Modules uses that as their first member in their own struct
37  */
38 typedef struct avr_io_t {
39         struct avr_io_t * next;
40         const char *            kind;           // pretty name, for debug
41
42         uint32_t                        irq_ioctl_get;  // used to get irqs from this module
43         int                                     irq_count;      // number of (optional) irqs
44         struct avr_irq_t *      irq;            // optional external IRQs
45         // called at every instruction
46         void (*run)(avr_t * avr, struct avr_io_t *io);
47         // called at reset time
48         void (*reset)(avr_t * avr, struct avr_io_t *io);
49         // called externally. allow access to io modules and so on
50         int (*ioctl)(avr_t * avr, struct avr_io_t *io, uint32_t ctl, void *io_param);
51 } avr_io_t;
52
53 /*
54  * IO modules helper functions
55  */
56
57 // registers an IO module, so it's run(), reset() etc are called
58 // this is called by the AVR core init functions, you /could/ register an external
59 // one after instanciation, for whatever purpose...
60 void avr_register_io(avr_t *avr, avr_io_t * io);
61 // register a callback for when IO register "addr" is read
62 void avr_register_io_read(avr_t *avr, uint8_t addr, avr_io_read_t read, void * param);
63 // register a callback for when the IO register is written. callback has to set the memory itself
64 void avr_register_io_write(avr_t *avr, uint8_t addr, avr_io_write_t write, void * param);
65 // call every IO modules until one responds to this
66 int avr_ioctl(avr_t *avr, uint32_t ctl, void * io_param);
67 // get the specific irq for a module, check AVR_IOCTL_IOPORT_GETIRQ for example
68 struct avr_irq_t * avr_io_getirq(avr_t * avr, uint32_t ctl, int index);
69
70 #endif /* __SIM_IO_H__ */