Store the next cycle count where the earliest cycle timer needs to be run.
[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         avr_cycle_count_t next_cycle_timer;
160         struct {
161                 avr_cycle_count_t       when;
162                 avr_cycle_timer_t       timer;
163                 void * param;
164         } cycle_timer[32];
165
166         // interrupt vectors, and their enable/clear registers
167         struct avr_int_vector_t * vector[64];
168         uint8_t         pending_wait;   // number of cycles to wait for pending
169         uint32_t        pending[2];             // pending interrupts
170
171         // DEBUG ONLY -- value ignored if CONFIG_SIMAVR_TRACE = 0
172         int             trace;
173
174 #if CONFIG_SIMAVR_TRACE
175         struct avr_symbol_t ** codeline;
176
177         /* DEBUG ONLY
178          * this keeps track of "jumps" ie, call,jmp,ret,reti and so on
179          * allows dumping of a meaningful data even if the stack is
180          * munched and so on
181          */
182         #define OLD_PC_SIZE     32
183         struct {
184                 uint32_t pc;
185                 uint16_t sp;
186         } old[OLD_PC_SIZE]; // catches reset..
187         int                     old_pci;
188
189 #if AVR_STACK_WATCH
190         #define STACK_FRAME_SIZE        32
191         // this records the call/ret pairs, to try to catch
192         // code that munches the stack -under- their own frame
193         struct {
194                 uint32_t        pc;
195                 uint16_t        sp;             
196         } stack_frame[STACK_FRAME_SIZE];
197         int                     stack_frame_index;
198 #endif
199
200         // DEBUG ONLY
201         // keeps track of which registers gets touched by instructions
202         // reset before each new instructions. Allows meaningful traces
203         uint32_t        touched[256 / 32];      // debug
204 #endif
205
206         // VALUE CHANGE DUMP file (waveforms)
207         // this is the VCD file that gets allocated if the 
208         // firmware that is loaded explicitly asks for a trace
209         // to be generated, and allocates it's own symbols
210         // using AVR_MMCU_TAG_VCD_TRACE (see avr_mcu_section.h)
211         struct avr_vcd_t * vcd;
212         
213         // gdb hooking structure. Only present when gdb server is active
214         struct avr_gdb_t * gdb;
215
216         // if non-zero, the gdb server will be started when the core
217         // crashed even if not activated at startup
218         // if zero, the simulator will just exit() in case of a crash
219         int             gdb_port;
220 } avr_t;
221
222
223 // this is a static constructor for each of the AVR devices
224 typedef struct avr_kind_t {
225         const char * names[4];  // name aliases
226         avr_t * (*make)();
227 } avr_kind_t;
228
229 // a symbol loaded from the .elf file
230 typedef struct avr_symbol_t {
231         const char * symbol;
232         uint32_t        addr;
233 } avr_symbol_t;
234
235 // locate the maker for mcu "name" and allocates a new avr instance
236 avr_t * avr_make_mcu_by_name(const char *name);
237 // initializes a new AVR instance. Will call the IO registers init(), and then reset()
238 int avr_init(avr_t * avr);
239 // resets the AVR, and the IO modules
240 void avr_reset(avr_t * avr);
241 // run one cycle of the AVR, sleep if necessary
242 int avr_run(avr_t * avr);
243 // finish any pending operations 
244 void avr_terminate(avr_t * avr);
245
246 // set an IO register to receive commands from the AVR firmware
247 // it's optional, and uses the ELF tags
248 void avr_set_command_register(avr_t * avr, avr_io_addr_t addr);
249
250 // specify the "console register" -- output sent to this register
251 // is printed on the simulator console, without using a UART
252 void avr_set_console_register(avr_t * avr, avr_io_addr_t addr);
253
254 // load code in the "flash"
255 void avr_loadcode(avr_t * avr, uint8_t * code, uint32_t size, uint32_t address);
256
257
258 /*
259  * these are accessors for avr->data but allows watchpoints to be set for gdb
260  * IO modules use that to set values to registers, and the AVR core decoder uses
261  * that to register "public" read by instructions.
262  */
263 void avr_core_watch_write(avr_t *avr, uint16_t addr, uint8_t v);
264 uint8_t avr_core_watch_read(avr_t *avr, uint16_t addr);
265
266 // called when the core has detected a crash somehow.
267 // this might activate gdb server
268 void avr_sadly_crashed(avr_t *avr, uint8_t signal);
269
270 #ifdef __cplusplus
271 };
272 #endif
273
274 #include "sim_io.h"
275 #include "sim_regbit.h"
276 #include "sim_interrupts.h"
277 #include "sim_irq.h"
278 #include "sim_cycle_timers.h"
279
280 #endif /*__SIM_AVR_H__*/
281