core: Ensure we can run in >64K flash
[simavr] / simavr / sim / sim_avr.h
1 /*
2         sim_avr.h
3
4         Copyright 2008-2012 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 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 #include "sim_irq.h"
30 #include "sim_interrupts.h"
31 #include "sim_cycle_timers.h"
32
33 typedef uint32_t avr_flashaddr_t;
34
35 struct avr_t;
36 typedef uint8_t (*avr_io_read_t)(
37                 struct avr_t * avr,
38                 avr_io_addr_t addr,
39                 void * param);
40 typedef void (*avr_io_write_t)(
41                 struct avr_t * avr,
42                 avr_io_addr_t addr,
43                 uint8_t v,
44                 void * param);
45
46 enum {
47         // SREG bit indexes
48         S_C = 0,S_Z,S_N,S_V,S_S,S_H,S_T,S_I,
49
50         // 16 bits register pairs
51         R_XL    = 0x1a, R_XH,R_YL,R_YH,R_ZL,R_ZH,
52         // stack pointer
53         R_SPL   = 32+0x3d, R_SPH,
54         // real SREG
55         R_SREG  = 32+0x3f,
56
57         // maximum number of IO registers, on normal AVRs
58         MAX_IOs = 256,  // Bigger AVRs need more than 256-32 (mega1280)
59 };
60
61 #define AVR_DATA_TO_IO(v) ((v) - 32)
62 #define AVR_IO_TO_DATA(v) ((v) + 32)
63
64 /*
65  * Core states.
66  */
67 enum {
68         cpu_Limbo = 0,  // before initialization is finished
69         cpu_Stopped,    // all is stopped, timers included
70
71         cpu_Running,    // we're free running
72
73         cpu_Sleeping,   // we're now sleeping until an interrupt
74
75         cpu_Step,               // run ONE instruction, then...
76         cpu_StepDone,   // tell gdb it's all OK, and give it registers
77         cpu_Done,       // avr software stopped gracefully
78         cpu_Crashed,    // avr software crashed (watchdog fired)
79 };
80
81 // this is only ever used if CONFIG_SIMAVR_TRACE is defined
82 struct avr_trace_data_t {
83         struct avr_symbol_t ** codeline;
84
85         /* DEBUG ONLY
86          * this keeps track of "jumps" ie, call,jmp,ret,reti and so on
87          * allows dumping of a meaningful data even if the stack is
88          * munched and so on
89          */
90         #define OLD_PC_SIZE     32
91         struct {
92                 uint32_t pc;
93                 uint16_t sp;
94         } old[OLD_PC_SIZE]; // catches reset..
95         int                     old_pci;
96
97 #if AVR_STACK_WATCH
98         #define STACK_FRAME_SIZE        32
99         // this records the call/ret pairs, to try to catch
100         // code that munches the stack -under- their own frame
101         struct {
102                 uint32_t        pc;
103                 uint16_t        sp;             
104         } stack_frame[STACK_FRAME_SIZE];
105         int                     stack_frame_index;
106 #endif
107
108         // DEBUG ONLY
109         // keeps track of which registers gets touched by instructions
110         // reset before each new instructions. Allows meaningful traces
111         uint32_t        touched[256 / 32];      // debug
112 };
113
114 /*
115  * Main AVR instance. Some of these fields are set by the AVR "Core" definition files
116  * the rest is runtime data (as little as possible)
117  */
118 typedef struct avr_t {
119         const char * mmcu;      // name of the AVR
120         // these are filled by sim_core_declare from constants in /usr/lib/avr/include/avr/io*.h
121         uint16_t        ramend;         
122         uint32_t        flashend;
123         uint32_t        e2end;
124         uint8_t         vector_size;
125         uint8_t         signature[3];
126         uint8_t         fuse[4];
127         avr_io_addr_t   rampz;  // optional, only for ELPM/SPM on >64Kb cores
128         avr_io_addr_t   eind;   // optional, only for EIJMP/EICALL on >64Kb cores
129
130         // filled by the ELF data, this allow tracking of invalid jumps
131         uint32_t                        codeend;
132
133         int                                     state;          // stopped, running, sleeping
134         uint32_t                        frequency;      // frequency we are running at
135         // mostly used by the ADC for now
136         uint32_t                        vcc,avcc,aref; // (optional) voltages in millivolts
137
138         // cycles gets incremented when sleeping and when running; it corresponds
139         // not only to "cycles that runs" but also "cycles that might have run"
140         // like, sleeping.
141         avr_cycle_count_t       cycle;          // current cycle
142         
143         // called at init time
144         void (*init)(struct avr_t * avr);
145         // called at init time (for special purposes like using a memory mapped file as flash see: simduino)
146         void (*special_init)(struct avr_t * avr);
147         // called at termination time ( to clean special initalizations)
148         void (*special_deinit)(struct avr_t * avr);
149         // called at reset time
150         void (*reset)(struct avr_t * avr);
151
152         /*!
153          * Default AVR core run function.
154          * Two modes are available, a "raw" run that goes as fast as
155          * it can, and a "gdb" mode that also watchouts for gdb events
156          * and is a little bit slower.
157          */
158         void (*run)(struct avr_t * avr);
159
160         /*!
161          * Sleep default behaviour.
162          * In "raw" mode, it calls usleep, in gdb mode, it waits
163          * for howLong for gdb command on it's sockets.
164          */
165         void (*sleep)(struct avr_t * avr, avr_cycle_count_t howLong);
166
167         /*!
168          * Every IRQs will be stored in this pool. It is not
169          * mandatory (yet) but will allow listing IRQs and their connections
170          */
171         avr_irq_pool_t  irq_pool;
172
173         // Mirror of the SREG register, to facilitate the access to bits
174         // in the opcode decoder.
175         // This array is re-synthetized back/forth when SREG changes
176         uint8_t         sreg[8];
177         uint8_t         i_shadow;       // used to detect edges on I flag
178
179         /* 
180          * ** current PC **
181          * Note that the PC is representing /bytes/ while the AVR value is
182          * assumed to be "words". This is in line with what GDB does...
183          * this is why you will see >>1 and <<1 in the decoder to handle jumps.
184          * It CAN be a little confusing, so concentrate, young grasshopper.
185          */
186         avr_flashaddr_t pc;
187
188         /*
189          * callback when specific IO registers are read/written.
190          * There is one drawback here, there is in way of knowing what is the
191          * "beginning of useful sram" on a core, so there is no way to deduce
192          * what is the maximum IO register for a core, and thus, we can't
193          * allocate this table dynamically.
194          * If you wanted to emulate the BIG AVRs, and XMegas, this would need
195          * work.
196          */
197         struct {
198                 struct avr_irq_t * irq; // optional, used only if asked for with avr_iomem_getirq()
199                 struct {
200                         void * param;
201                         avr_io_read_t c;
202                 } r;
203                 struct {
204                         void * param;
205                         avr_io_write_t c;
206                 } w;
207         } io[MAX_IOs];
208
209         /*
210          * This block allows sharing of the IO write/read on addresses between
211          * multiple callbacks. In 99% of case it's not needed, however on the tiny*
212          * (tiny85 at last) some registers have bits that are used by different
213          * IO modules.
214          * If this case is detected, a special "dispatch" callback is installed that
215          * will handle this particular case, without impacting the performance of the
216          * other, normal cases...
217          */
218         int     io_shared_io_count;
219         struct {
220                 int used;
221                 struct {
222                         void * param;
223                         void * c;
224                 } io[4];
225         } io_shared_io[4];
226
227         // flash memory (initialized to 0xff, and code loaded into it)
228         uint8_t *       flash;
229         // this is the general purpose registers, IO registers, and SRAM
230         uint8_t *       data;
231
232         // queue of io modules
233         struct avr_io_t *io_port;
234
235         // cycle timers tracking & delivery
236         avr_cycle_timer_pool_t  cycle_timers;
237         // interrupt vectors and delivery fifo
238         avr_int_table_t interrupts;
239
240         // DEBUG ONLY -- value ignored if CONFIG_SIMAVR_TRACE = 0
241         int             trace : 1,
242                         log : 2; // log level, default to 1
243
244         // Only used if CONFIG_SIMAVR_TRACE is defined
245         struct avr_trace_data_t *trace_data;
246
247         // VALUE CHANGE DUMP file (waveforms)
248         // this is the VCD file that gets allocated if the 
249         // firmware that is loaded explicitly asks for a trace
250         // to be generated, and allocates it's own symbols
251         // using AVR_MMCU_TAG_VCD_TRACE (see avr_mcu_section.h)
252         struct avr_vcd_t * vcd;
253         
254         // gdb hooking structure. Only present when gdb server is active
255         struct avr_gdb_t * gdb;
256
257         // if non-zero, the gdb server will be started when the core
258         // crashed even if not activated at startup
259         // if zero, the simulator will just exit() in case of a crash
260         int             gdb_port;
261 } avr_t;
262
263
264 // this is a static constructor for each of the AVR devices
265 typedef struct avr_kind_t {
266         const char * names[4];  // name aliases
267         avr_t * (*make)();
268 } avr_kind_t;
269
270 // a symbol loaded from the .elf file
271 typedef struct avr_symbol_t {
272         const char * symbol;
273         uint32_t        addr;
274 } avr_symbol_t;
275
276 // locate the maker for mcu "name" and allocates a new avr instance
277 avr_t *
278 avr_make_mcu_by_name(
279                 const char *name);
280 // initializes a new AVR instance. Will call the IO registers init(), and then reset()
281 int
282 avr_init(
283                 avr_t * avr);
284 // resets the AVR, and the IO modules
285 void
286 avr_reset(
287                 avr_t * avr);
288 // run one cycle of the AVR, sleep if necessary
289 int
290 avr_run(
291                 avr_t * avr);
292 // finish any pending operations 
293 void
294 avr_terminate(
295                 avr_t * avr);
296
297 // set an IO register to receive commands from the AVR firmware
298 // it's optional, and uses the ELF tags
299 void
300 avr_set_command_register(
301                 avr_t * avr,
302                 avr_io_addr_t addr);
303
304 // specify the "console register" -- output sent to this register
305 // is printed on the simulator console, without using a UART
306 void
307 avr_set_console_register(
308                 avr_t * avr,
309                 avr_io_addr_t addr);
310
311 // load code in the "flash"
312 void
313 avr_loadcode(
314                 avr_t * avr,
315                 uint8_t * code,
316                 uint32_t size,
317                 avr_flashaddr_t address);
318
319 /*
320  * these are accessors for avr->data but allows watchpoints to be set for gdb
321  * IO modules use that to set values to registers, and the AVR core decoder uses
322  * that to register "public" read by instructions.
323  */
324 void
325 avr_core_watch_write(
326                 avr_t *avr,
327                 uint16_t addr,
328                 uint8_t v);
329 uint8_t
330 avr_core_watch_read(
331                 avr_t *avr,
332                 uint16_t addr);
333
334 // called when the core has detected a crash somehow.
335 // this might activate gdb server
336 void
337 avr_sadly_crashed(
338                 avr_t *avr,
339                 uint8_t signal);
340
341
342 /*
343  * These are callbacks for the two 'main' bahaviour in simavr
344  */
345 void avr_callback_sleep_gdb(avr_t * avr, avr_cycle_count_t howLong);
346 void avr_callback_run_gdb(avr_t * avr);
347 void avr_callback_sleep_raw(avr_t * avr, avr_cycle_count_t howLong);
348 void avr_callback_run_raw(avr_t * avr);
349
350 #ifdef __cplusplus
351 };
352 #endif
353
354 #include "sim_io.h"
355 #include "sim_regbit.h"
356
357 #endif /*__SIM_AVR_H__*/
358