cores: Move static to front of declaration
[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_watchdog.h"
28 #include "avr_extint.h"
29 #include "avr_ioport.h"
30 #include "avr_timer.h"
31
32 #define _AVR_IO_H_
33 #define __ASSEMBLER__
34 #include "avr/iotn13.h"
35
36 static void init(struct avr_t * avr);
37 static void reset(struct avr_t * avr);
38
39
40 static const struct mcu_t {
41         avr_t core;
42         avr_eeprom_t    eeprom;
43         avr_watchdog_t  watchdog;
44         avr_extint_t    extint;
45         avr_ioport_t    portb;
46         avr_timer_t             timer0;
47 } mcu = {
48         .core = {
49                 .mmcu = "attiny13",
50
51                 /*
52                  * tiny13 has no extended fuse byte, so can not use DEFAULT_CORE macro
53                  */
54                 .ramend = RAMEND,
55                 .flashend = FLASHEND,
56                 .e2end = E2END,
57                 .vector_size = 2,
58 // Disable signature for now, for ubuntu, gentoo and other using old avr toolchain
59 #ifdef SIGNATURE_0
60                 .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 },
61                 .fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT },
62 #endif
63                 .init = init,
64                 .reset = reset,
65         },
66         AVR_EEPROM_DECLARE_8BIT(EE_RDY_vect),
67         // tiny13 has different names for these...
68         #define WDIF WDTIF
69         #define WDIE WDTIE
70         AVR_WATCHDOG_DECLARE(WDTCR, WDT_vect),
71         .extint = {
72                 AVR_EXTINT_TINY_DECLARE(0, 'B', 1, GIFR),
73         },
74         .portb = {
75                 .name = 'B',  .r_port = PORTB, .r_ddr = DDRB, .r_pin = PINB,
76                 .pcint = {
77                         .enable = AVR_IO_REGBIT(GIMSK, PCIE),
78                         .raised = AVR_IO_REGBIT(GIFR, PCIF),
79                         .vector = PCINT0_vect,
80                 },
81                 .r_pcint = PCMSK,
82         },
83         .timer0 = {
84                 .name = '0',
85                 .wgm = { AVR_IO_REGBIT(TCCR0A, WGM00), AVR_IO_REGBIT(TCCR0A, WGM01), AVR_IO_REGBIT(TCCR0B, WGM02) },
86                 .wgm_op = {
87                         [0] = AVR_TIMER_WGM_NORMAL8(),
88                         [2] = AVR_TIMER_WGM_CTC(),
89                         [3] = AVR_TIMER_WGM_FASTPWM8(),
90                         [7] = AVR_TIMER_WGM_OCPWM(),
91                 },
92                 .cs = { AVR_IO_REGBIT(TCCR0B, CS00), AVR_IO_REGBIT(TCCR0B, CS01), AVR_IO_REGBIT(TCCR0B, CS02) },
93                 .cs_div = { 0, 0, 3 /* 8 */, 6 /* 64 */, 8 /* 256 */, 10 /* 1024 */ },
94
95                 .r_tcnt = TCNT0,
96
97                 .overflow = {
98                         .enable = AVR_IO_REGBIT(TIMSK0, TOIE0),
99                         .raised = AVR_IO_REGBIT(TIFR0, TOV0),
100                         .vector = TIM0_OVF_vect,
101                 },
102                 .comp = {
103                         [AVR_TIMER_COMPA] = {
104                                 .r_ocr = OCR0A,
105                                 .interrupt = {
106                                         .enable = AVR_IO_REGBIT(TIMSK0, OCIE0A),
107                                         .raised = AVR_IO_REGBIT(TIFR0, OCF0A),
108                                         .vector = TIM0_COMPA_vect,
109                                 }
110                         },
111                         [AVR_TIMER_COMPB] = {
112                                 .r_ocr = OCR0B,
113                                 .interrupt = {
114                                         .enable = AVR_IO_REGBIT(TIMSK0, OCIE0B),
115                                         .raised = AVR_IO_REGBIT(TIFR0, OCF0B),
116                                         .vector = TIM0_COMPB_vect,
117                                 }
118                         }
119                 }
120         }
121 };
122
123 static avr_t * make()
124 {
125         return avr_core_allocate(&mcu.core, sizeof(struct mcu_t));
126 }
127
128 avr_kind_t tiny13 = {
129         .names = { "attiny13", "attiny13a" },
130         .make = make
131 };
132
133 static void init(struct avr_t * avr)
134 {
135         struct mcu_t * mcu = (struct mcu_t*)avr;
136
137         printf("%s init\n", avr->mmcu);
138
139         avr_eeprom_init(avr, &mcu->eeprom);
140         avr_watchdog_init(avr, &mcu->watchdog);
141         avr_extint_init(avr, &mcu->extint);
142         avr_ioport_init(avr, &mcu->portb);
143         avr_timer_init(avr, &mcu->timer0);
144 }
145
146 static void reset(struct avr_t * avr)
147 {
148 //      struct mcu_t * mcu = (struct mcu_t*)avr;
149 }