827b2125c6f3f0d9a6dbf51f40cbe0626faefc87
[simavr] / README.md
1 simavr - a lean and mean Atmel AVR simulator for linux
2 ======
3
4 _simavr_ is a new AVR simulator for linux, or any platform that uses avr-gcc. It uses 
5 avr-gcc's own register definition to simplify creating new targets for supported AVR
6 devices. The core was made to be small and compact, and hackable so allow quick 
7 prototyping of an AVR project. The AVR core is now stable for use with parts 
8 with <= 128KB flash, and with preliminary support for the bigger parts. The 
9 simulator loads ELF files directly, and there is even a way to specify simulation 
10 parameters directly in the emulated code using an .elf section. You can also 
11 load multipart HEX files.
12
13 Supported IOs
14 --------------
15 * _eeprom_
16 * _watchdog_
17 * _IO ports_ (including pin interrupts)
18 * _Timers_, 8 &16 (Normal, CTC and Fast PWM, the overflow interrupt too)
19 * The _UART_, including tx & rx interrupts (there is a loopback/local echo test mode too)
20 * _SPI_, master/slave including the interrupt
21 * _i2c_ Master & Slave
22 * External _Interrupts_, INT0 and so on.
23 * _ADC_
24 * Self-programming (ie bootloaders!)
25
26 Emulated Cores (very easy to add new ones!)
27 --------------
28 + AT90USB162 (with USB!)
29 + ATMega1280
30 + ATMega128
31 + ATMega16M1
32 + ATMega164/324/644
33 + ATMega48/88/168/328
34 + ATMega8
35 + ATTiny25/45/85
36 + ATTIny44/84
37 + ATTiny2313
38 + ATTiny13
39
40 Extras:
41 -------
42 * fully working _gdb_ support including some pretty cool “passive modes”.
43 * There is also very easy support for “VCD” (Value Change Dump) that can be visualized 
44 graphically as “waveforms” with tools like _gtkwave_ (see below).
45 * There are a few examples of real life firmwares running on simavr, including OpenGL rendering of the display…
46 * There is support for _Arduino_, but no IDE integration
47
48 Documentation And Further Information
49 -------------------------------------
50
51 * Manual / Developer Guide: https://github.com/buserror-uk/simavr/blob/master/doc/manual/manual.pdf?raw=true
52 * Examples: https://github.com/buserror-uk/simavr/tree/master/examples
53 * Mailing List: http://groups.google.com/group/simavr
54 * IRC: _#simavr_ on Freenode
55
56 VCD Support -- built in logic analyzer 
57 -----------
58 _simavr_ can output most of its pins, firmware variables, interrupts and a few other
59 things as signals to be dumped into a file that can be plotted using gtkwave for
60 further, precise analysis.
61 A firmware can contain instructions for _simavr_ to know what to trace, and the file is
62 automatically generated.
63 Example:
64
65         const struct avr_mmcu_vcd_trace_t _mytrace[]  _MMCU_ = {
66                 { AVR_MCU_VCD_SYMBOL("UDR0"), .what = (void*)&UDR0, },
67                 { AVR_MCU_VCD_SYMBOL("UDRE0"), .mask = (1 << UDRE0), .what = (void*)&UCSR0A, },
68         };
69
70 Will tell _simavr_ to generate a trace everytime the UDR0 register changes and everytime
71 the interrupt is raised (in UCSR0A). The *_MMCU_* tag tells gcc that it needs compiling,
72 but it won't be linked in your program, so it takes literally zero bytes, this is a code
73 section that is private to _simavr_, it's free!
74 A program running with these instructions and writing to the serial port will generate
75 a file that will display:
76
77         $ ./simavr/run_avr tests/atmega88_example.axf
78         AVR_MMCU_TAG_VCD_TRACE 00c6:00 - UDR0
79         AVR_MMCU_TAG_VCD_TRACE 00c0:20 - UDRE0
80         Loaded 1780 .text
81         Loaded 114 .data
82         Loaded 4 .eeprom
83         Starting atmega88 - flashend 1fff ramend 04ff e2end 01ff
84         atmega88 init
85         avr_eeprom_ioctl: AVR_IOCTL_EEPROM_SET Loaded 4 at offset 0
86         Creating VCD trace file 'gtkwave_trace.vcd'
87         Read from eeprom 0xdeadbeef -- should be 0xdeadbeef..
88         Read from eeprom 0xcafef00d -- should be 0xcafef00d..
89         simavr: sleeping with interrupts off, quitting gracefully
90
91 And when the file is loaded in gtkwave, you see:
92 ![gtkwave](https://github.com/buserror-uk/simavr/raw/master/doc/img/gtkwave1.png)
93
94 You get a very precise timing breakdown of any change that you add to the trace, down
95 to the AVR cycle. 
96
97 Example:
98 --------
99 _simavr_ is really made to be the center for emulating your own AVR projects, not just
100 a debugger, but also the emulating the peripherals you will use in your firmware, so 
101 you can test and develop offline, and now and then try it on the hardware.
102
103 You can also use _simavr_ to do test units on your shipping firmware to validate it
104 before you ship a new version, to prevent regressions or mistakes.
105
106 _simavr_ has a few 'complete projects/ that demonstrate this, most of them were made
107 using real hardware at some point, and the firmware binary is _exactly_ the one that
108 ran on the hardware. The key here is to emulate the _parts_ or peripherals that
109 are hooked to the AVR. Of course, you don't have to emulate the full hardware, you just
110 need to generate the proper stimulus so that the AVR is fooled.
111
112 HD44780 LCD Board Demo
113 ----------------------
114
115 ![lcd](https://github.com/buserror-uk/simavr/raw/master/doc/img/hd44780.png)
116
117 This example board hooks up an Atmega48 to an emulated HD44780 LCD and display a running
118 counter in the 'lcd'. Everything is emulated, the firmware runs exactly like this
119 on a real hardware.
120
121 ![lcd-gtkwave](https://github.com/buserror-uk/simavr/raw/master/doc/img/hd44780-wave.png)
122
123 And this is a gtkwave trace of what the firmware is doing. You can zoom in, measure, etc
124 in gtkwave, select trades to see etc.
125
126 Quite a few other examples are available!