cores: Also disable fuse macros
[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_timer.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_timer_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 // Disable signature for now, for ubuntu, gentoo and other using old avr toolchain
55 #ifdef SIGNATURE_0
56                 .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
57                 .fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT },
58 #endif
59                 .init = init,
60                 .reset = reset,
61         },
62         AVR_EEPROM_DECLARE_8BIT(EE_RDY_vect),
63         .portb = {
64                 .name = 'B',  .r_port = PORTB, .r_ddr = DDRB, .r_pin = PINB,
65                 .pcint = {
66                         .enable = AVR_IO_REGBIT(GIMSK, PCIE),
67                         .raised = AVR_IO_REGBIT(GIFR, PCIF),
68                         .vector = PCINT0_vect,
69                 },
70                 .r_pcint = PCMSK,
71         },
72         .timer0 = {
73                 .name = '0',
74                 .wgm = { AVR_IO_REGBIT(TCCR0A, WGM00), AVR_IO_REGBIT(TCCR0A, WGM01), AVR_IO_REGBIT(TCCR0B, WGM02) },
75                 .wgm_op = {
76                         [0] = AVR_TIMER_WGM_NORMAL8(),
77                         [2] = AVR_TIMER_WGM_CTC(),
78                         [3] = AVR_TIMER_WGM_FASTPWM(),
79                         [7] = AVR_TIMER_WGM_FASTPWM(),
80                 },
81                 .cs = { AVR_IO_REGBIT(TCCR0B, CS00), AVR_IO_REGBIT(TCCR0B, CS01), AVR_IO_REGBIT(TCCR0B, CS02) },
82                 .cs_div = { 0, 0, 3 /* 8 */, 6 /* 64 */, 8 /* 256 */, 10 /* 1024 */ },
83
84                 .r_ocra = OCR0A,
85                 .r_ocrb = OCR0B,
86                 .r_tcnt = TCNT0,
87
88                 .overflow = {
89                         .enable = AVR_IO_REGBIT(TIMSK0, TOIE0),
90                         .raised = AVR_IO_REGBIT(TIFR0, TOV0),
91                         .vector = TIM0_OVF_vect,
92                 },
93                 .compa = {
94                         .enable = AVR_IO_REGBIT(TIMSK0, OCIE0A),
95                         .raised = AVR_IO_REGBIT(TIFR0, OCF0A),
96                         .vector = TIM0_COMPA_vect,
97                 },
98                 .compb = {
99                         .enable = AVR_IO_REGBIT(TIMSK0, OCIE0B),
100                         .raised = AVR_IO_REGBIT(TIFR0, OCF0B),
101                         .vector = TIM0_COMPB_vect,
102                 },
103         },
104 };
105
106 static avr_t * make()
107 {
108         return &mcu.core;
109 }
110
111 avr_kind_t tiny13 = {
112         .names = { "attiny13", "attiny13a" },
113         .make = make
114 };
115
116 static void init(struct avr_t * avr)
117 {
118         struct mcu_t * mcu = (struct mcu_t*)avr;
119
120         printf("%s init\n", avr->mmcu);
121
122         avr_eeprom_init(avr, &mcu->eeprom);
123         avr_ioport_init(avr, &mcu->portb);
124         avr_timer_init(avr, &mcu->timer0);
125 }
126
127 static void reset(struct avr_t * avr)
128 {
129 //      struct mcu_t * mcu = (struct mcu_t*)avr;
130 }