]> cloudbase.mooo.com Git - z180-stamp.git/blame - avr/main.c
Add pin_alias
[z180-stamp.git] / avr / main.c
CommitLineData
d684c216
L
1/*
2 */
3
4
5#include "common.h"
6
7#include <util/delay.h>
d684c216 8#include <avr/interrupt.h>
d684c216
L
9#include <stdlib.h>
10#include <stdio.h>
11
d684c216
L
12#include "config.h"
13#include "debug.h"
14#include "z80-if.h"
61b0cfe9 15#include "i2c.h"
d684c216
L
16#include "con-utils.h"
17#include "serial.h"
18#include "timer.h"
19#include "cli.h"
20#include "env.h"
21
35e9ec0c
L
22#define udelay(n) _delay_us(n)
23
24static uint8_t mcusr;
25
69988dc1
L
26/*--------------------------------------------------------------------------*/
27#if DEBUG
35e9ec0c 28
f76ca346 29__attribute__ ((naked)) __attribute__ ((section (".init3")))
35e9ec0c 30void preset_ram (void)
69988dc1
L
31{
32 for (uint8_t *p = RAMSTART; p <= (uint8_t *) RAMEND; p++)
33 *p = 0xdd;
34
35}
d684c216 36
35e9ec0c
L
37static const FLASH char * const FLASH rreasons[] = {
38 FSTR("Power on"),
39 FSTR("External"),
40 FSTR("Brown out"),
41 FSTR("Watchdog"),
42 FSTR("JTAG"),
43 };
44
45static
46void print_reset_reason(void)
47{
48 uint8_t r = mcusr & 0x1f;
49 const FLASH char * const FLASH *p = rreasons;
50
51 printf_P(PSTR("### Reset reason(s): %s"), r ? "" : "none");
52 for ( ; r; p++, r >>= 1) {
53 if (r & 1) {
54 my_puts_P(*p);
55 if (r & ~1)
56 printf_P(PSTR(", "));
57 }
58 }
59 printf_P(PSTR(".\n"));
60}
61
62#endif
f338df2a
L
63
64static
d684c216
L
65void setup_avr(void)
66{
f338df2a 67 /* save and clear reset reason(s) */
35e9ec0c 68 /* TODO: move to init section? */
f338df2a
L
69 mcusr = MCUSR;
70 MCUSR = 0;
f76ca346 71
d684c216
L
72 /* WD */
73
74 /* CPU */
75
76 /* Disable JTAG Interface regardless of the JTAGEN fuse setting. */
77 MCUCR = _BV(JTD);
78 MCUCR = _BV(JTD);
79
04a63b0d
L
80 /* Disable peripherals. Enable individually in respective init function. */
81 PRR0 = _BV(PRTWI) |
82 _BV(PRTIM2) | _BV(PRTIM0) | _BV(PRTIM1) |
83 _BV(PRSPI) | _BV(PRUSART0) | _BV(PRADC);
84
f76ca346 85 PRR1 = _BV(PRTIM5) | _BV(PRTIM4) | _BV(PRTIM3) |
d684c216
L
86 _BV(PRUSART3) | _BV(PRUSART2) | _BV(PRUSART1);
87
04a63b0d 88
d684c216
L
89 /* disable analog comparator */
90 ACSR = _BV(ACD);
91 /* Ports */
92
93 /* Clock */
94 CLKPR = _BV(CLKPCE);
95 CLKPR = 0;
96
97 /* Timer */
41d36f28
L
98 PRR1 &= ~_BV(PRTIM3);
99 OCR3A = F_CPU / 1000 - 1; /* Timer3: 1000Hz interval (OC3A) */
100 TCCR3B = (0b01<<WGM32)|(0b001<<CS30); /* CTC Mode, Prescaler 1 */
101 TIMSK3 = _BV(OCIE3A); /* Enable TC2.oca interrupt */
d684c216
L
102}
103
f338df2a 104static
35e9ec0c 105int reset_reason_is_power_on(void)
f338df2a 106{
35e9ec0c 107 return (mcusr & _BV(PORF)) != 0;
f338df2a 108}
d684c216 109
35e9ec0c 110/*--------------------------------------------------------------------------*/
d684c216
L
111
112/* Stored value of bootdelay, used by autoboot_command() */
113static int stored_bootdelay;
114
115
116/***************************************************************************
117 * Watch for 'delay' seconds for autoboot stop.
f76ca346 118 * returns: 0 - no key, allow autoboot
d684c216
L
119 * 1 - got key, abort
120 */
121
122static int abortboot(int bootdelay)
123{
124 int abort = 0;
125 uint32_t ts;
126
127 if (bootdelay >= 0)
128 printf_P(PSTR("Hit any key to stop autoboot: %2d "), bootdelay);
129
130#if defined CONFIG_ZERO_BOOTDELAY_CHECK
131 /*
132 * Check if key already pressed
133 * Don't check if bootdelay < 0
134 */
135 if (bootdelay >= 0) {
136 if (tstc()) { /* we got a key press */
137 (void) my_getchar(); /* consume input */
138 my_puts_P(PSTR("\b\b\b 0"));
139 abort = 1; /* don't auto boot */
140 }
141 }
142#endif
143
144 while ((bootdelay > 0) && (!abort)) {
145 --bootdelay;
146 /* delay 1000 ms */
147 ts = get_timer(0);
148 do {
149 if (tstc()) { /* we got a key press */
150 abort = 1; /* don't auto boot */
151 bootdelay = 0; /* no more delay */
152 break;
153 }
154 udelay(10000);
155 } while (!abort && get_timer(ts) < 1000);
156
157 printf_P(PSTR("\b\b\b%2d "), bootdelay);
158 }
159
160 putchar('\n');
161
162 return abort;
163}
164
f338df2a 165static
d684c216
L
166const char *bootdelay_process(void)
167{
168 char *s;
169 int bootdelay;
170
70c99491 171 bootdelay = (int) getenv_ulong(PSTR(ENV_BOOTDELAY), 10, CONFIG_BOOTDELAY);
d684c216
L
172
173
174 debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
175 _delay_ms(20);
176
70c99491 177 s = getenv(PSTR(ENV_BOOTCMD));
d684c216
L
178 stored_bootdelay = bootdelay;
179 return s;
180}
181
f338df2a 182static
d684c216
L
183void autoboot_command(const char *s)
184{
185 debug("### main_loop: bootcmd=\"%s\"\n", s ? s : PSTR("<UNDEFINED>"));
186 _delay_ms(20);
187
188 if (stored_bootdelay != -1 && s && !abortboot(stored_bootdelay)) {
189 run_command_list(s, -1);
190 }
191}
192
193
f338df2a 194static
d684c216
L
195void main_loop(void)
196{
197 const char *s;
198
199 s = bootdelay_process();
200 autoboot_command(s);
201 cli_loop();
202}
203
204int main(void)
205{
69988dc1 206
d684c216
L
207 setup_avr();
208 z80_setup_bus();
35e9ec0c 209
f14850db
L
210 env_init();
211
35e9ec0c 212 if (reset_reason_is_power_on())
f14850db 213 _delay_ms(CONFIG_PWRON_DELAY);
f76ca346 214
70c99491 215 serial_setup(getenv_ulong(PSTR(ENV_BAUDRATE), 10, CONFIG_BAUDRATE));
d684c216 216 sei();
323398b1 217
f338df2a 218#if DEBUG
69988dc1 219 debug("\n=========================< (RE)START DEBUG >=========================\n");
f338df2a
L
220 print_reset_reason();
221#endif
f76ca346 222
35e9ec0c 223#if DEBUG
fc30b18e 224 unsigned long i_speed = getenv_ulong(PSTR("i2c_clock"), 10, CONFIG_SYS_I2C_CLOCK);
35e9ec0c
L
225 debug("### Setting I2C clock Frequency to %lu Hz.\n", i_speed);
226 i2c_init(i_speed);
227#else
228 i2c_init(CONFIG_SYS_I2C_CLOCK);
229#endif
d684c216 230
cd5ee544 231 printf_P(PSTR("\nATMEGA1281+Z8S180 Stamp Monitor\n\n"));
f76ca346
L
232
233
d684c216
L
234 main_loop();
235}