core: added extra init/deinit functions to avr_t
[simavr] / simavr / sim / sim_avr.h
1 /*
2         sim_avr.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_AVR_H__
23 #define __SIM_AVR_H__
24
25 #include <stdint.h>
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 typedef uint64_t avr_cycle_count_t;
32 typedef uint16_t        avr_io_addr_t;
33
34 struct avr_t;
35 typedef uint8_t (*avr_io_read_t)(struct avr_t * avr, avr_io_addr_t addr, void * param);
36 typedef void (*avr_io_write_t)(struct avr_t * avr, avr_io_addr_t addr, uint8_t v, void * param);
37 typedef avr_cycle_count_t (*avr_cycle_timer_t)(struct avr_t * avr, avr_cycle_count_t when, void * param);
38
39 enum {
40         // SREG bit indexes
41         S_C = 0,S_Z,S_N,S_V,S_S,S_H,S_T,S_I,
42
43         // 16 bits register pairs
44         R_XL    = 0x1a, R_XH,R_YL,R_YH,R_ZL,R_ZH,
45         // stack pointer
46         R_SPL   = 32+0x3d, R_SPH,
47         // real SREG
48         R_SREG  = 32+0x3f,
49
50         // maximum number of IO registers, on normal AVRs
51         MAX_IOs = 256 - 32,     // minus 32 GP registers
52 };
53
54 #define AVR_DATA_TO_IO(v) ((v) - 32)
55 #define AVR_IO_TO_DATA(v) ((v) + 32)
56
57 /*
58  * Core states.
59  */
60 enum {
61         cpu_Limbo = 0,  // before initialization is finished
62         cpu_Stopped,    // all is stopped, timers included
63
64         cpu_Running,    // we're free running
65
66         cpu_Sleeping,   // we're now sleeping until an interrupt
67
68         cpu_Step,               // run ONE instruction, then...
69         cpu_StepDone,   // tell gdb it's all OK, and give it registers
70 };
71
72 /*
73  * Main AVR instance. Some of these fields are set by the AVR "Core" definition files
74  * the rest is runtime data (as little as possible)
75  */
76 typedef struct avr_t {
77         const char * mmcu;      // name of the AVR
78         // these are filled by sim_core_declare from constants in /usr/lib/avr/include/avr/io*.h
79         uint16_t        ramend;         
80         uint32_t        flashend;
81         uint32_t        e2end;
82         uint8_t         vector_size;
83         uint8_t         signature[3];
84         uint8_t         fuse[4];
85         avr_io_addr_t   rampz;  // optional, only for ELPM/SPM on >64Kb cores
86         avr_io_addr_t   eind;   // optional, only for EIJMP/EICALL on >64Kb cores
87
88         // filled by the ELF data, this allow tracking of invalid jumps
89         uint32_t                        codeend;
90
91         int                                     state;          // stopped, running, sleeping
92         uint32_t                        frequency;      // frequency we are running at
93         // mostly used by the ADC for now
94         uint32_t                        vcc,avcc,aref; // (optional) voltages in millivolts
95
96         // cycles gets incremented when sleeping and when running; it corresponds
97         // not only to "cycles that runs" but also "cycles that might have run"
98         // like, sleeping.
99         avr_cycle_count_t       cycle;          // current cycle
100         
101         // called at init time
102         void (*init)(struct avr_t * avr);
103         // called at init time (for special purposes like using a memory mapped file as flash see: simduino)
104         void (*special_init)(struct avr_t * avr);
105         // called at termination time ( to clean special initalizations)
106         void (*special_deinit)(struct avr_t * avr);
107         // called at reset time
108         void (*reset)(struct avr_t * avr);
109
110         // Mirror of the SREG register, to facilitate the access to bits
111         // in the opcode decoder.
112         // This array is re-synthetized back/forth when SREG changes
113         uint8_t         sreg[8];
114         uint8_t         i_shadow;       // used to detect edges on I flag
115
116         /* 
117          * ** current PC **
118          * Note that the PC is representing /bytes/ while the AVR value is
119          * assumed to be "words". This is in line with what GDB does...
120          * this is why you will see >>1 and <<1 in the decoder to handle jumps.
121          * It CAN be a little confusing, so concentrate, young grasshopper.
122          */
123         uint32_t        pc;
124
125         /*
126          * callback when specific IO registers are read/written.
127          * There is one drawback here, there is in way of knowing what is the
128          * "beginning of useful sram" on a core, so there is no way to deduce
129          * what is the maximum IO register for a core, and thus, we can't
130          * allocate this table dynamically.
131          * If you wanted to emulate the BIG AVRs, and XMegas, this would need
132          * work.
133          */
134         struct {
135                 struct avr_irq_t * irq; // optional, used only if asked for with avr_iomem_getirq()
136                 struct {
137                         void * param;
138                         avr_io_read_t c;
139                 } r;
140                 struct {
141                         void * param;
142                         avr_io_write_t c;
143                 } w;
144         } io[MAX_IOs];
145
146         // flash memory (initialized to 0xff, and code loaded into it)
147         uint8_t *       flash;
148         // this is the general purpose registers, IO registers, and SRAM
149         uint8_t *       data;
150
151         // queue of io modules
152         struct avr_io_t *io_port;
153
154         // cycle timers are callbacks that will be called when "when" cycle is reached
155         // the bitmap allows quick knowledge of whether there is anything to call
156         // these timers are one shots, then get cleared if the timer function returns zero,
157         // they get reset if the callback function returns a new cycle number
158         uint32_t        cycle_timer_map;
159         struct {
160                 avr_cycle_count_t       when;
161                 avr_cycle_timer_t       timer;
162                 void * param;
163         } cycle_timer[32];
164
165         // interrupt vectors, and their enable/clear registers
166         struct avr_int_vector_t * vector[64];
167         uint8_t         pending_wait;   // number of cycles to wait for pending
168         uint32_t        pending[2];             // pending interrupts
169
170         // DEBUG ONLY -- value ignored if CONFIG_SIMAVR_TRACE = 0
171         int             trace;
172
173 #if CONFIG_SIMAVR_TRACE
174         struct avr_symbol_t ** codeline;
175
176         /* DEBUG ONLY
177          * this keeps track of "jumps" ie, call,jmp,ret,reti and so on
178          * allows dumping of a meaningful data even if the stack is
179          * munched and so on
180          */
181         #define OLD_PC_SIZE     32
182         struct {
183                 uint32_t pc;
184                 uint16_t sp;
185         } old[OLD_PC_SIZE]; // catches reset..
186         int                     old_pci;
187
188 #if AVR_STACK_WATCH
189         #define STACK_FRAME_SIZE        32
190         // this records the call/ret pairs, to try to catch
191         // code that munches the stack -under- their own frame
192         struct {
193                 uint32_t        pc;
194                 uint16_t        sp;             
195         } stack_frame[STACK_FRAME_SIZE];
196         int                     stack_frame_index;
197 #endif
198
199         // DEBUG ONLY
200         // keeps track of which registers gets touched by instructions
201         // reset before each new instructions. Allows meaningful traces
202         uint32_t        touched[256 / 32];      // debug
203 #endif
204
205         // VALUE CHANGE DUMP file (waveforms)
206         // this is the VCD file that gets allocated if the 
207         // firmware that is loaded explicitly asks for a trace
208         // to be generated, and allocates it's own symbols
209         // using AVR_MMCU_TAG_VCD_TRACE (see avr_mcu_section.h)
210         struct avr_vcd_t * vcd;
211         
212         // gdb hooking structure. Only present when gdb server is active
213         struct avr_gdb_t * gdb;
214
215         // if non-zero, the gdb server will be started when the core
216         // crashed even if not activated at startup
217         // if zero, the simulator will just exit() in case of a crash
218         int             gdb_port;
219 } avr_t;
220
221
222 // this is a static constructor for each of the AVR devices
223 typedef struct avr_kind_t {
224         const char * names[4];  // name aliases
225         avr_t * (*make)();
226 } avr_kind_t;
227
228 // a symbol loaded from the .elf file
229 typedef struct avr_symbol_t {
230         const char * symbol;
231         uint32_t        addr;
232 } avr_symbol_t;
233
234 // locate the maker for mcu "name" and allocates a new avr instance
235 avr_t * avr_make_mcu_by_name(const char *name);
236 // initializes a new AVR instance. Will call the IO registers init(), and then reset()
237 int avr_init(avr_t * avr);
238 // resets the AVR, and the IO modules
239 void avr_reset(avr_t * avr);
240 // run one cycle of the AVR, sleep if necessary
241 int avr_run(avr_t * avr);
242 // finish any pending operations 
243 void avr_terminate(avr_t * avr);
244
245 // set an IO register to receive commands from the AVR firmware
246 // it's optional, and uses the ELF tags
247 void avr_set_command_register(avr_t * avr, avr_io_addr_t addr);
248
249 // specify the "console register" -- output sent to this register
250 // is printed on the simulator console, without using a UART
251 void avr_set_console_register(avr_t * avr, avr_io_addr_t addr);
252
253 // load code in the "flash"
254 void avr_loadcode(avr_t * avr, uint8_t * code, uint32_t size, uint32_t address);
255
256
257 /*
258  * these are accessors for avr->data but allows watchpoints to be set for gdb
259  * IO modules use that to set values to registers, and the AVR core decoder uses
260  * that to register "public" read by instructions.
261  */
262 void avr_core_watch_write(avr_t *avr, uint16_t addr, uint8_t v);
263 uint8_t avr_core_watch_read(avr_t *avr, uint16_t addr);
264
265 // called when the core has detected a crash somehow.
266 // this might activate gdb server
267 void avr_sadly_crashed(avr_t *avr, uint8_t signal);
268
269 #ifdef __cplusplus
270 };
271 #endif
272
273 #include "sim_io.h"
274 #include "sim_regbit.h"
275 #include "sim_interrupts.h"
276 #include "sim_irq.h"
277 #include "sim_cycle_timers.h"
278
279 #endif /*__SIM_AVR_H__*/
280