misc: Typos
[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 reset time
104         void (*reset)(struct avr_t * avr);
105
106         // Mirror of the SREG register, to facilitate the access to bits
107         // in the opcode decoder.
108         // This array is re-synthetized back/forth when SREG changes
109         uint8_t         sreg[8];
110         uint8_t         i_shadow;       // used to detect edges on I flag
111
112         /* 
113          * ** current PC **
114          * Note that the PC is representing /bytes/ while the AVR value is
115          * assumed to be "words". This is in line with what GDB does...
116          * this is why you will see >>1 and <<1 in the decoder to handle jumps.
117          * It CAN be a little confusing, so concentrate, young grasshopper.
118          */
119         uint32_t        pc;
120
121         /*
122          * callback when specific IO registers are read/written.
123          * There is one drawback here, there is in way of knowing what is the
124          * "beginning of useful sram" on a core, so there is no way to deduce
125          * what is the maximum IO register for a core, and thus, we can't
126          * allocate this table dynamically.
127          * If you wanted to emulate the BIG AVRs, and XMegas, this would need
128          * work.
129          */
130         struct {
131                 struct avr_irq_t * irq; // optional, used only if asked for with avr_iomem_getirq()
132                 struct {
133                         void * param;
134                         avr_io_read_t c;
135                 } r;
136                 struct {
137                         void * param;
138                         avr_io_write_t c;
139                 } w;
140         } io[MAX_IOs];
141
142         // flash memory (initialized to 0xff, and code loaded into it)
143         uint8_t *       flash;
144         // this is the general purpose registers, IO registers, and SRAM
145         uint8_t *       data;
146
147         // queue of io modules
148         struct avr_io_t *io_port;
149
150         // cycle timers are callbacks that will be called when "when" cycle is reached
151         // the bitmap allows quick knowledge of whether there is anything to call
152         // these timers are one shots, then get cleared if the timer function returns zero,
153         // they get reset if the callback function returns a new cycle number
154         uint32_t        cycle_timer_map;
155         struct {
156                 avr_cycle_count_t       when;
157                 avr_cycle_timer_t       timer;
158                 void * param;
159         } cycle_timer[32];
160
161         // interrupt vectors, and their enable/clear registers
162         struct avr_int_vector_t * vector[64];
163         uint8_t         pending_wait;   // number of cycles to wait for pending
164         uint32_t        pending[2];             // pending interrupts
165
166         // DEBUG ONLY -- value ignored if CONFIG_SIMAVR_TRACE = 0
167         int             trace;
168
169 #if CONFIG_SIMAVR_TRACE
170         struct avr_symbol_t ** codeline;
171
172         /* DEBUG ONLY
173          * this keeps track of "jumps" ie, call,jmp,ret,reti and so on
174          * allows dumping of a meaningful data even if the stack is
175          * munched and so on
176          */
177         #define OLD_PC_SIZE     32
178         struct {
179                 uint32_t pc;
180                 uint16_t sp;
181         } old[OLD_PC_SIZE]; // catches reset..
182         int                     old_pci;
183
184 #if AVR_STACK_WATCH
185         #define STACK_FRAME_SIZE        32
186         // this records the call/ret pairs, to try to catch
187         // code that munches the stack -under- their own frame
188         struct {
189                 uint32_t        pc;
190                 uint16_t        sp;             
191         } stack_frame[STACK_FRAME_SIZE];
192         int                     stack_frame_index;
193 #endif
194
195         // DEBUG ONLY
196         // keeps track of which registers gets touched by instructions
197         // reset before each new instructions. Allows meaningful traces
198         uint32_t        touched[256 / 32];      // debug
199 #endif
200
201         // VALUE CHANGE DUMP file (waveforms)
202         // this is the VCD file that gets allocated if the 
203         // firmware that is loaded explicitly asks for a trace
204         // to be generated, and allocates it's own symbols
205         // using AVR_MMCU_TAG_VCD_TRACE (see avr_mcu_section.h)
206         struct avr_vcd_t * vcd;
207         
208         // gdb hooking structure. Only present when gdb server is active
209         struct avr_gdb_t * gdb;
210
211         // if non-zero, the gdb server will be started when the core
212         // crashed even if not activated at startup
213         // if zero, the simulator will just exit() in case of a crash
214         int             gdb_port;
215 } avr_t;
216
217
218 // this is a static constructor for each of the AVR devices
219 typedef struct avr_kind_t {
220         const char * names[4];  // name aliases
221         avr_t * (*make)();
222 } avr_kind_t;
223
224 // a symbol loaded from the .elf file
225 typedef struct avr_symbol_t {
226         const char * symbol;
227         uint32_t        addr;
228 } avr_symbol_t;
229
230 // locate the maker for mcu "name" and allocates a new avr instance
231 avr_t * avr_make_mcu_by_name(const char *name);
232 // initializes a new AVR instance. Will call the IO registers init(), and then reset()
233 int avr_init(avr_t * avr);
234 // resets the AVR, and the IO modules
235 void avr_reset(avr_t * avr);
236 // run one cycle of the AVR, sleep if necessary
237 int avr_run(avr_t * avr);
238 // finish any pending operations 
239 void avr_terminate(avr_t * avr);
240
241 // set an IO register to receive commands from the AVR firmware
242 // it's optional, and uses the ELF tags
243 void avr_set_command_register(avr_t * avr, avr_io_addr_t addr);
244
245 // specify the "console register" -- output sent to this register
246 // is printed on the simulator console, without using a UART
247 void avr_set_console_register(avr_t * avr, avr_io_addr_t addr);
248
249 // load code in the "flash"
250 void avr_loadcode(avr_t * avr, uint8_t * code, uint32_t size, uint32_t address);
251
252
253 /*
254  * these are accessors for avr->data but allows watchpoints to be set for gdb
255  * IO modules use that to set values to registers, and the AVR core decoder uses
256  * that to register "public" read by instructions.
257  */
258 void avr_core_watch_write(avr_t *avr, uint16_t addr, uint8_t v);
259 uint8_t avr_core_watch_read(avr_t *avr, uint16_t addr);
260
261 // called when the core has detected a crash somehow.
262 // this might activate gdb server
263 void avr_sadly_crashed(avr_t *avr, uint8_t signal);
264
265 #ifdef __cplusplus
266 };
267 #endif
268
269 #include "sim_io.h"
270 #include "sim_regbit.h"
271 #include "sim_interrupts.h"
272 #include "sim_irq.h"
273 #include "sim_cycle_timers.h"
274
275 #endif /*__SIM_AVR_H__*/
276