Added tiny13
[simavr] / simavr / cores / sim_tiny13.c
1 /*
2         sim_tiny13.c
3
4         Copyright 2008, 2009 Michel Pollet <buserror@gmail.com>
5                              Jon Escombe <lists@dresco.co.uk>
6
7         This file is part of simavr.
8
9         simavr is free software: you can redistribute it and/or modify
10         it under the terms of the GNU General Public License as published by
11         the Free Software Foundation, either version 3 of the License, or
12         (at your option) any later version.
13
14         simavr is distributed in the hope that it will be useful,
15         but WITHOUT ANY WARRANTY; without even the implied warranty of
16         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17         GNU General Public License for more details.
18
19         You should have received a copy of the GNU General Public License
20         along with simavr.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23 #include </usr/include/stdio.h>
24 #include "sim_avr.h"
25 #include "sim_core_declare.h"
26 #include "avr_eeprom.h"
27 #include "avr_ioport.h"
28 #include "avr_timer8.h"
29
30 #define _AVR_IO_H_
31 #define __ASSEMBLER__
32 #include "avr/iotn13.h"
33
34 static void init(struct avr_t * avr);
35 static void reset(struct avr_t * avr);
36
37
38 static struct mcu_t {
39         avr_t core;
40         avr_eeprom_t    eeprom;
41         avr_ioport_t    portb;
42         avr_timer8_t    timer0;
43 } mcu = {
44         .core = {
45                 .mmcu = "attiny13",
46
47                 /*
48                  * tiny13 has no extended fuse byte, so can not use DEFAULT_CORE macro
49                  */
50                 .ramend = RAMEND,
51                 .flashend = FLASHEND,
52                 .e2end = E2END,
53                 .vector_size = 2,
54                 .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
55                 .fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT },
56
57                 .init = init,
58                 .reset = reset,
59         },
60         AVR_EEPROM_DECLARE_8BIT(EE_RDY_vect),
61         .portb = {
62                 .name = 'B',  .r_port = PORTB, .r_ddr = DDRB, .r_pin = PINB,
63                 .pcint = {
64                         .enable = AVR_IO_REGBIT(GIMSK, PCIE),
65                         .raised = AVR_IO_REGBIT(GIFR, PCIF),
66                         .vector = PCINT0_vect,
67                 },
68                 .r_pcint = PCMSK,
69         },
70         .timer0 = {
71                 .name = '0',
72                 .wgm = { AVR_IO_REGBIT(TCCR0A, WGM00), AVR_IO_REGBIT(TCCR0A, WGM01), AVR_IO_REGBIT(TCCR0B, WGM02) },
73                 .cs = { AVR_IO_REGBIT(TCCR0B, CS00), AVR_IO_REGBIT(TCCR0B, CS01), AVR_IO_REGBIT(TCCR0B, CS02) },
74                 .cs_div = { 0, 0, 3 /* 8 */, 6 /* 64 */, 8 /* 256 */, 10 /* 1024 */ },
75
76                 .r_ocra = OCR0A,
77                 .r_ocrb = OCR0B,
78                 .r_tcnt = TCNT0,
79
80                 .overflow = {
81                         .enable = AVR_IO_REGBIT(TIMSK0, TOIE0),
82                         .raised = AVR_IO_REGBIT(TIFR0, TOV0),
83                         .vector = TIM0_OVF_vect,
84                 },
85                 .compa = {
86                         .enable = AVR_IO_REGBIT(TIMSK0, OCIE0A),
87                         .raised = AVR_IO_REGBIT(TIFR0, OCF0A),
88                         .vector = TIM0_COMPA_vect,
89                 },
90                 .compb = {
91                         .enable = AVR_IO_REGBIT(TIMSK0, OCIE0B),
92                         .raised = AVR_IO_REGBIT(TIFR0, OCF0B),
93                         .vector = TIM0_COMPB_vect,
94                 },
95         },
96 };
97
98 static avr_t * make()
99 {
100         return &mcu.core;
101 }
102
103 avr_kind_t tiny13 = {
104         .names = { "attiny13", "attiny13a" },
105         .make = make
106 };
107
108 static void init(struct avr_t * avr)
109 {
110         struct mcu_t * mcu = (struct mcu_t*)avr;
111
112         printf("%s init\n", avr->mmcu);
113
114         avr_eeprom_init(avr, &mcu->eeprom);
115         avr_ioport_init(avr, &mcu->portb);
116         avr_timer8_init(avr, &mcu->timer0);
117 }
118
119 static void reset(struct avr_t * avr)
120 {
121 //      struct mcu_t * mcu = (struct mcu_t*)avr;
122 }