2011-06-09 01:30:39 +02:00
|
|
|
/****************************************************************************
|
2014-01-15 18:05:15 +01:00
|
|
|
* arch/avr/src/atmega/atmega_head.S
|
2011-06-09 01:30:39 +02:00
|
|
|
*
|
2021-03-28 15:35:35 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2011-06-09 01:30:39 +02:00
|
|
|
*
|
2021-03-28 15:35:35 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-06-09 01:30:39 +02:00
|
|
|
*
|
2021-03-28 15:35:35 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2011-06-09 01:30:39 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <avr/io.h>
|
2015-12-29 20:02:20 +01:00
|
|
|
#include <avr/common.h>
|
2011-06-09 01:30:39 +02:00
|
|
|
#include <avr/sfr_defs.h>
|
|
|
|
|
2015-12-29 17:46:28 +01:00
|
|
|
#include <arch/irq.h>
|
2015-12-29 20:02:20 +01:00
|
|
|
|
2011-06-09 01:30:39 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2011-06-16 01:54:25 +02:00
|
|
|
/* Stack is allocated just after uninitialized data and just before the heap */
|
2011-06-09 01:30:39 +02:00
|
|
|
|
2021-04-07 17:50:51 +02:00
|
|
|
#define STACKBASE (_enoinit+CONFIG_IDLETHREAD_STACKSIZE)
|
2011-06-09 01:30:39 +02:00
|
|
|
|
|
|
|
/* The RAMPZ register is only available for CPUs with more than 64Kb of FLASH.
|
|
|
|
* At present, only the ATMega128 is supported so RAMPZ should always be
|
|
|
|
* available.
|
|
|
|
*
|
|
|
|
* - Support for the EPLMX instructions is assumed if RAMPZ is present
|
|
|
|
* - If RAMPZ is not present, support for LPMX is assumed
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define HAVE_RAMPZ 1
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* External Symbols
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
.file "up_nommuhead.S"
|
2016-01-16 20:41:49 +01:00
|
|
|
.global __start /* Entry point */
|
|
|
|
.global _sbss /* Start of .bss. Defined by ld.script */
|
|
|
|
.global _ebss /* End of .bss. Defined by ld.script */
|
|
|
|
.global _sdata /* Start of .data section in RAM */
|
|
|
|
.global _edata /* End of .data section in RAM */
|
|
|
|
.global _eronly /* Start of .data section in FLASH */
|
|
|
|
.global _enoinit /* End of uninitilized data. Defined by ld.script */
|
|
|
|
.global up_lowinit /* Perform low level initialization */
|
2019-02-04 23:20:35 +01:00
|
|
|
.global nx_start /* NuttX entry point */
|
2011-06-09 01:30:39 +02:00
|
|
|
|
|
|
|
.global vectortab
|
2015-01-26 21:10:46 +01:00
|
|
|
#if defined(CONFIG_ARCH_CHIP_ATMEGA128)
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_int0 /* External interrupt request 0 */
|
|
|
|
.global atmega_int1 /* External interrupt request 1 */
|
|
|
|
.global atmega_int2 /* External interrupt request 2 */
|
|
|
|
.global atmega_int3 /* External interrupt request 3 */
|
|
|
|
.global atmega_int4 /* External interrupt request 4 */
|
|
|
|
.global atmega_int5 /* External interrupt request 5 */
|
|
|
|
.global atmega_int6 /* External interrupt request 6 */
|
|
|
|
.global atmega_int7 /* External interrupt request 7 */
|
|
|
|
.global atmega_t2comp /* TIMER2 COMP timer/counter2 compare match */
|
|
|
|
.global atmega_t2ovf /* TIMER2 OVF timer/counter2 overflow */
|
|
|
|
.global atmega_t1capt /* TIMER1 CAPT timer/counter1 capture event */
|
|
|
|
.global atmega_t1compa /* TIMER1 COMPA timer/counter1 compare match a */
|
|
|
|
.global atmega_t1compb /* TIMER1 COMPB timer/counter1 compare match b */
|
|
|
|
.global atmega_t1ovf /* TIMER1 OVF timer/counter1 overflow */
|
|
|
|
.global atmega_t0comp /* TIMER0 COMP timer/counter0 compare match */
|
|
|
|
.global atmega_t0ovf /* TIMER0 OVF timer/counter0 overflow */
|
|
|
|
.global atmega_spi /* STC SPI serial transfer complete */
|
|
|
|
.global atmega_u0rx /* USART0 RX complete */
|
|
|
|
.global atmega_u0dre /* USART0 data register empty */
|
|
|
|
.global atmega_u0tx /* USART0 TX complete */
|
|
|
|
.global atmega_adc /* ADC conversion complete */
|
|
|
|
.global atmega_ee /* EEPROM ready */
|
|
|
|
.global atmega_anacomp /* ANALOG COMP analog comparator */
|
|
|
|
.global atmega_t1compc /* TIMER1 COMPC timer/countre1 compare match c */
|
|
|
|
.global atmega_t3capt /* TIMER3 CAPT timer/counter3 capture event */
|
|
|
|
.global atmega_t3compa /* TIMER3 COMPA timer/counter3 compare match a */
|
|
|
|
.global atmega_t3compb /* TIMER3 COMPB timer/counter3 compare match b */
|
|
|
|
.global atmega_t3compc /* TIMER3 COMPC timer/counter3 compare match c */
|
|
|
|
.global atmega_t3ovf /* TIMER3 OVF timer/counter3 overflow */
|
|
|
|
.global atmega_u1rx /* USART1 RX complete */
|
|
|
|
.global atmega_u1dre /* USART1 data register empty */
|
|
|
|
.global atmega_u1tx /* USART1 TX complete */
|
|
|
|
.global atmega_twi /* TWI two-wire serial interface */
|
|
|
|
.global atmega_spmrdy /* Store program memory ready */
|
2015-01-26 21:10:46 +01:00
|
|
|
#elif defined(CONFIG_ARCH_CHIP_ATMEGA1284P)
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_int0 /* External interrupt request 0 */
|
|
|
|
.global atmega_int1 /* External interrupt request 1 */
|
|
|
|
.global atmega_int2 /* External interrupt request 2 */
|
|
|
|
.global atmega_pcint0 /* Pin change interrupt request 0 */
|
|
|
|
.global atmega_pcint1 /* Pin change interrupt request 1 */
|
|
|
|
.global atmega_pcint2 /* Pin change interrupt request 2 */
|
|
|
|
.global atmega_pcint3 /* Pin change interrupt request 3 */
|
|
|
|
.global atmega_wdt /* Watchdog time-out interrupt */
|
|
|
|
.global atmega_t2compa /* TIMER2 COMPA timer/counter2 compare match */
|
|
|
|
.global atmega_t2compb /* TIMER2 COMPB timer/counter2 compare match */
|
|
|
|
.global atmega_t2ovf /* TIMER2 OVF timer/counter2 overflow */
|
|
|
|
.global atmega_t1capt /* TIMER1 CAPT timer/counter1 capture event */
|
|
|
|
.global atmega_t1compa /* TIMER1 COMPA timer/counter1 compare match a */
|
|
|
|
.global atmega_t1compb /* TIMER1 COMPB timer/counter1 compare match b */
|
|
|
|
.global atmega_t1ovf /* TIMER1 OVF timer/counter1 overflow */
|
|
|
|
.global atmega_t0compa /* TIMER0 COMPA timer/counter0 compare match */
|
|
|
|
.global atmega_t0compb /* TIMER0 COMPB timer/counter0 compare match */
|
|
|
|
.global atmega_t0ovf /* TIMER0 OVF timer/counter0 overflow */
|
|
|
|
.global atmega_spi /* STC SPI serial transfer complete */
|
|
|
|
.global atmega_u0rx /* USART0 RX complete */
|
|
|
|
.global atmega_u0dre /* USART0 data register empty */
|
|
|
|
.global atmega_u0tx /* USART0 TX complete */
|
|
|
|
.global atmega_anacomp /* ANALOG COMP analog comparator */
|
|
|
|
.global atmega_adc /* ADC conversion complete */
|
|
|
|
.global atmega_ee /* EEPROM ready */
|
|
|
|
.global atmega_twi /* TWI two-wire serial interface */
|
|
|
|
.global atmega_spmrdy /* Store program memory ready */
|
|
|
|
.global atmega_u1rx /* USART1 RX complete */
|
|
|
|
.global atmega_u1dre /* USART1 data register empty */
|
|
|
|
.global atmega_u1tx /* USART1 TX complete */
|
|
|
|
.global atmega_t3capt /* TIMER3 CAPT timer/counter3 capture event */
|
|
|
|
.global atmega_t3compa /* TIMER3 COMPA timer/counter3 compare match a */
|
|
|
|
.global atmega_t3compb /* TIMER3 COMPB timer/counter3 compare match b */
|
|
|
|
.global atmega_t3ovf /* TIMER3 OVF timer/counter3 overflow */
|
2015-12-27 00:47:35 +01:00
|
|
|
#elif defined(CONFIG_ARCH_CHIP_ATMEGA2560)
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_int0 /* 0x0002 INT0 External Interrupt Request 0 */
|
|
|
|
.global atmega_int1 /* 0x0004 INT1 External Interrupt Request 1 */
|
|
|
|
.global atmega_int2 /* 0x0006 INT2 External Interrupt Request 2 */
|
|
|
|
.global atmega_int3 /* 0x0008 INT3 External Interrupt Request 3 */
|
|
|
|
.global atmega_int4 /* 0x000A INT4 External Interrupt Request 4 */
|
|
|
|
.global atmega_int5 /* 0x000C INT5 External Interrupt Request 5 */
|
|
|
|
.global atmega_int6 /* 0x000E INT6 External Interrupt Request 6 */
|
|
|
|
.global atmega_int7 /* 0x0010 INT7 External Interrupt Request 7 */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_pcint0 /* 0x0012 PCINT0 Pin Change Interrupt Req 0 */
|
|
|
|
.global atmega_pcint1 /* 0x0014 PCINT1 Pin Change Interrupt Req 1 */
|
|
|
|
.global atmega_pcint2 /* 0x0016 PCINT2 Pin Change Interrupt Req 2 */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_wdt /* 0x0018 WDT Watchdog Time-out Interrupt */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_tim2_compa /* 0x001A TIMER2 COMPA Timer/Counter2 Compare Match A */
|
|
|
|
.global atmega_tim2_compb /* 0x001C TIMER2 COMPB Timer/Counter2 Compare Match B */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_tim2_ovf /* 0x001E TIMER2 OVF Timer/Counter2 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_tim1_capt /* 0x0020 TIMER1 CAPT Timer/Counter1 Capture Event */
|
|
|
|
.global atmega_tim1_compa /* 0x0022 TIMER1 COMPA Timer/Counter1 Compare Match A */
|
|
|
|
.global atmega_tim1_compb /* 0x0024 TIMER1 COMPB Timer/Counter1 Compare Match B */
|
|
|
|
.global atmega_tim1_compc /* 0x0026 TIMER1 COMPC Timer/Counter1 Compare Match C */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_tim1_ovf /* 0x0028 TIMER1 OVF Timer/Counter1 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_tim0_compa /* 0x002A TIMER0 COMPA Timer/Counter0 Compare Match A */
|
|
|
|
.global atmega_tim0_compb /* 0x002C TIMER0 COMPB Timer/Counter0 Compare match B */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_tim0_ovf /* 0x002E TIMER0 OVF Timer/Counter0 Overflow */
|
|
|
|
.global atmega_spi_stc /* 0x0030 SPI, STC SPI Serial Transfer Complete */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_u0rx /* 0x0032 USART0 RX USART0 Rx Complete */
|
|
|
|
.global atmega_u0dre /* 0x0034 USART0 UDRE USART0 Data Register Empty */
|
|
|
|
.global atmega_u0tx /* 0x0036 USART0 TX USART0 Tx Complete */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_ana_comp /* 0x0038 ANALOG COMP Analog Comparator */
|
|
|
|
.global atmega_adc /* 0x003A ADC ADC Conversion Complete */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_ee_rdy /* 0x003C EE READY EEPROM Ready */
|
|
|
|
.global atmega_tim3_capt /* 0x003E TIMER3 CAPT Timer/Counter3 Capture Event */
|
|
|
|
.global atmega_tim3_compa /* 0x0040 TIMER3 COMPA Timer/Counter3 Compare Match A */
|
|
|
|
.global atmega_tim3_compb /* 0x0042 TIMER3 COMPB Timer/Counter3 Compare Match B */
|
|
|
|
.global atmega_tim3_compc /* 0x0044 TIMER3 COMPC Timer/Counter3 Compare Match C */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_tim3_ovf /* 0x0046 TIMER3 OVF Timer/Counter3 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_u1rx /* 0x0048 USART1 RX USART1 Rx Complete */
|
|
|
|
.global atmega_u1dre /* 0x004A USART1 UDRE USART1 Data Register Empty */
|
|
|
|
.global atmega_u1tx /* 0x004C USART1 TX USART1 Tx Complete */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_twi /* 0x004E TWI 2-wire Serial Interface */
|
|
|
|
.global atmega_spm_rdy /* 0x0050 SPM READY Store Program Memory Ready */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_tim4_capt /* 0x0052 TIMER4 CAPT Timer/Counter4 Capture Event */
|
|
|
|
.global atmega_tim4_compa /* 0x0054 TIMER4 COMPA Timer/Counter4 Compare Match A */
|
|
|
|
.global atmega_tim4_compb /* 0x0056 TIMER4 COMPB Timer/Counter4 Compare Match B */
|
|
|
|
.global atmega_tim4_compc /* 0x0058 TIMER4 COMPC Timer/Counter4 Compare Match C */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_tim4_ovf /* 0x005A TIMER4 OVF Timer/Counter4 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_tim5_capt /* 0x005C TIMER5 CAPT Timer/Counter5 Capture Event */
|
|
|
|
.global atmega_tim5_compa /* 0x005E TIMER5 COMPA Timer/Counter5 Compare Match A */
|
|
|
|
.global atmega_tim5_compb /* 0x0060 TIMER5 COMPB Timer/Counter5 Compare Match B */
|
|
|
|
.global atmega_tim5_compc /* 0x0062 TIMER5 COMPC Timer/Counter5 Compare Match C */
|
2015-12-29 20:02:20 +01:00
|
|
|
.global atmega_tim5_ovf /* 0x0064 TIMER5 OVF Timer/Counter5 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
.global atmega_u2rx /* 0x0066 USART2 RX USART2 Rx Complete */
|
|
|
|
.global atmega_u2dre /* 0x0068 USART2 UDRE USART2 Data Register Empty */
|
|
|
|
.global atmega_u2tx /* 0x006A USART2 TX USART2 Tx Complete */
|
|
|
|
.global atmega_u3rx /* 0x006C USART3 RX USART3 Rx Complete */
|
|
|
|
.global atmega_u3dre /* 0x006E USART3 UDRE USART3 Data Register Empty */
|
|
|
|
.global atmega_u3tx /* 0x0070 USART3 TX USART3 Tx Complete */
|
2015-01-26 21:10:46 +01:00
|
|
|
#else
|
|
|
|
#error "Unrecognized chip"
|
|
|
|
#endif
|
2011-06-09 01:30:39 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Macros
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
.macro vector name
|
2011-06-16 18:58:30 +02:00
|
|
|
jmp \name
|
2011-06-09 01:30:39 +02:00
|
|
|
.endm
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Vector Table
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* The ATmega128 has 35 interrupt vectors including vector 0, the reset
|
|
|
|
* vector.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.section .vectors, "ax", @progbits
|
|
|
|
.func vectortab
|
|
|
|
vectortab:
|
2015-12-29 20:02:20 +01:00
|
|
|
jmp __start /* 0: Vector 0 is the reset vector */
|
2015-01-26 21:10:46 +01:00
|
|
|
#if defined(CONFIG_ARCH_CHIP_ATMEGA128)
|
2015-12-29 20:02:20 +01:00
|
|
|
vector atmega_int0 /* 1: External interrupt request 0 */
|
|
|
|
vector atmega_int1 /* 2: External interrupt request 1 */
|
|
|
|
vector atmega_int2 /* 3: External interrupt request 2 */
|
|
|
|
vector atmega_int3 /* 4: External interrupt request 3 */
|
|
|
|
vector atmega_int4 /* 5: External interrupt request 4 */
|
|
|
|
vector atmega_int5 /* 6 : External interrupt request 5 */
|
|
|
|
vector atmega_int6 /* 7: External interrupt request 6 */
|
|
|
|
vector atmega_int7 /* 8: External interrupt request 7 */
|
|
|
|
vector atmega_t2comp /* 9: TIMER2 COMP timer/counter2 compare match */
|
|
|
|
vector atmega_t2ovf /* 10: TIMER2 OVF timer/counter2 overflow */
|
|
|
|
vector atmega_t1capt /* 11: TIMER1 CAPT timer/counter1 capture event */
|
|
|
|
vector atmega_t1compa /* 12: TIMER1 COMPA timer/counter1 compare match a */
|
|
|
|
vector atmega_t1compb /* 13: TIMER1 COMPB timer/counter1 compare match b */
|
|
|
|
vector atmega_t1ovf /* 14: TIMER1 OVF timer/counter1 overflow */
|
|
|
|
vector atmega_t0comp /* 15: TIMER0 COMP timer/counter0 compare match */
|
|
|
|
vector atmega_t0ovf /* 16: TIMER0 OVF timer/counter0 overflow */
|
|
|
|
vector atmega_spi /* 17: STC SPI serial transfer complete */
|
|
|
|
vector atmega_u0rx /* 18: USART0 RX complete */
|
|
|
|
vector atmega_u0dre /* 19: USART0 data register empty */
|
|
|
|
vector atmega_u0tx /* 20: USART0 TX complete */
|
|
|
|
vector atmega_adc /* 21: ADC conversion complete */
|
|
|
|
vector atmega_ee /* 22: EEPROM ready */
|
|
|
|
vector atmega_anacomp /* 23: ANALOG COMP analog comparator */
|
|
|
|
vector atmega_t1compc /* 24: TIMER1 COMPC timer/countre1 compare match c */
|
|
|
|
vector atmega_t3capt /* 25: TIMER3 CAPT timer/counter3 capture event */
|
|
|
|
vector atmega_t3compa /* 26: TIMER3 COMPA timer/counter3 compare match a */
|
|
|
|
vector atmega_t3compb /* 27: TIMER3 COMPB timer/counter3 compare match b */
|
|
|
|
vector atmega_t3compc /* 28: TIMER3 COMPC timer/counter3 compare match c */
|
|
|
|
vector atmega_t3ovf /* 29: TIMER3 OVF timer/counter3 overflow */
|
|
|
|
vector atmega_u1rx /* 30: USART1 RX complete */
|
|
|
|
vector atmega_u1dre /* 31: USART1 data register empty */
|
|
|
|
vector atmega_u1tx /* 32: USART1 TX complete */
|
|
|
|
vector atmega_twi /* 33: TWI two-wire serial interface */
|
|
|
|
vector atmega_spmrdy /* 34: Store program memory ready */
|
2015-01-26 21:10:46 +01:00
|
|
|
#elif defined(CONFIG_ARCH_CHIP_ATMEGA1284P)
|
2015-12-29 20:02:20 +01:00
|
|
|
vector atmega_int0 /* External interrupt request 0 */
|
|
|
|
vector atmega_int1 /* External interrupt request 1 */
|
|
|
|
vector atmega_int2 /* External interrupt request 2 */
|
|
|
|
vector atmega_pcint0 /* Pin change interrupt request 0 */
|
|
|
|
vector atmega_pcint1 /* Pin change interrupt request 1 */
|
|
|
|
vector atmega_pcint2 /* Pin change interrupt request 2 */
|
|
|
|
vector atmega_pcint3 /* Pin change interrupt request 3 */
|
|
|
|
vector atmega_wdt /* Watchdog time-out interrupt */
|
|
|
|
vector atmega_t2compa /* TIMER2 COMPA timer/counter2 compare match */
|
|
|
|
vector atmega_t2compb /* TIMER2 COMPB timer/counter2 compare match */
|
|
|
|
vector atmega_t2ovf /* TIMER2 OVF timer/counter2 overflow */
|
|
|
|
vector atmega_t1capt /* TIMER1 CAPT timer/counter1 capture event */
|
|
|
|
vector atmega_t1compa /* TIMER1 COMPA timer/counter1 compare match a */
|
|
|
|
vector atmega_t1compb /* TIMER1 COMPB timer/counter1 compare match b */
|
|
|
|
vector atmega_t1ovf /* TIMER1 OVF timer/counter1 overflow */
|
|
|
|
vector atmega_t0compa /* TIMER0 COMPA timer/counter0 compare match */
|
|
|
|
vector atmega_t0compb /* TIMER0 COMPB timer/counter0 compare match */
|
|
|
|
vector atmega_t0ovf /* TIMER0 OVF timer/counter0 overflow */
|
|
|
|
vector atmega_spi /* STC SPI serial transfer complete */
|
|
|
|
vector atmega_u0rx /* USART0 RX complete */
|
|
|
|
vector atmega_u0dre /* USART0 data register empty */
|
|
|
|
vector atmega_u0tx /* USART0 TX complete */
|
|
|
|
vector atmega_anacomp /* ANALOG COMP analog comparator */
|
|
|
|
vector atmega_adc /* ADC conversion complete */
|
|
|
|
vector atmega_ee /* EEPROM ready */
|
|
|
|
vector atmega_twi /* TWI two-wire serial interface */
|
|
|
|
vector atmega_spmrdy /* Store program memory ready */
|
|
|
|
vector atmega_u1rx /* USART1 RX complete */
|
|
|
|
vector atmega_u1dre /* USART1 data register empty */
|
|
|
|
vector atmega_u1tx /* USART1 TX complete */
|
|
|
|
vector atmega_t3capt /* TIMER3 CAPT timer/counter3 capture event */
|
|
|
|
vector atmega_t3compa /* TIMER3 COMPA timer/counter3 compare match a */
|
|
|
|
vector atmega_t3compb /* TIMER3 COMPB timer/counter3 compare match b */
|
|
|
|
vector atmega_t3ovf /* TIMER3 OVF timer/counter3 overflow */
|
2015-12-27 00:47:35 +01:00
|
|
|
#elif defined(CONFIG_ARCH_CHIP_ATMEGA2560)
|
2015-12-29 20:02:20 +01:00
|
|
|
vector atmega_int0 /* 0x0002 INT0 External Interrupt Request 0 */
|
|
|
|
vector atmega_int1 /* 0x0004 INT1 External Interrupt Request 1 */
|
|
|
|
vector atmega_int2 /* 0x0006 INT2 External Interrupt Request 2 */
|
|
|
|
vector atmega_int3 /* 0x0008 INT3 External Interrupt Request 3 */
|
|
|
|
vector atmega_int4 /* 0x000A INT4 External Interrupt Request 4 */
|
|
|
|
vector atmega_int5 /* 0x000C INT5 External Interrupt Request 5 */
|
|
|
|
vector atmega_int6 /* 0x000E INT6 External Interrupt Request 6 */
|
|
|
|
vector atmega_int7 /* 0x0010 INT7 External Interrupt Request 7 */
|
|
|
|
vector atmega_pcint0 /* 0x0012 PCINT0 Pin Change Interrupt Req 0 */
|
|
|
|
vector atmega_pcint1 /* 0x0014 PCINT1 Pin Change Interrupt Req 1 */
|
|
|
|
vector atmega_pcint2 /* 0x0016 PCINT2 Pin Change Interrupt Req 2 */
|
|
|
|
vector atmega_wdt /* 0x0018 WDT Watchdog Time-out Interrupt */
|
|
|
|
vector atmega_tim2_compa /* 0x001A TIMER2 COMPA Timer/Counter2 Compare Match A */
|
|
|
|
vector atmega_tim2_compb /* 0x001C TIMER2 COMPB Timer/Counter2 Compare Match B */
|
|
|
|
vector atmega_tim2_ovf /* 0x001E TIMER2 OVF Timer/Counter2 Overflow */
|
|
|
|
vector atmega_tim1_capt /* 0x0020 TIMER1 CAPT Timer/Counter1 Capture Event */
|
|
|
|
vector atmega_tim1_compa /* 0x0022 TIMER1 COMPA Timer/Counter1 Compare Match A */
|
|
|
|
vector atmega_tim1_compb /* 0x0024 TIMER1 COMPB Timer/Counter1 Compare Match B */
|
|
|
|
vector atmega_tim1_compc /* 0x0026 TIMER1 COMPC Timer/Counter1 Compare Match C */
|
|
|
|
vector atmega_tim1_ovf /* 0x0028 TIMER1 OVF Timer/Counter1 Overflow */
|
|
|
|
vector atmega_tim0_compa /* 0x002A TIMER0 COMPA Timer/Counter0 Compare Match A */
|
|
|
|
vector atmega_tim0_compb /* 0x002C TIMER0 COMPB Timer/Counter0 Compare match B */
|
|
|
|
vector atmega_tim0_ovf /* 0x002E TIMER0 OVF Timer/Counter0 Overflow */
|
|
|
|
vector atmega_spi_stc /* 0x0030 SPI, STC SPI Serial Transfer Complete */
|
2016-01-16 20:41:49 +01:00
|
|
|
vector atmega_u0rx /* 0x0032 USART0 RX USART0 Rx Complete */
|
|
|
|
vector atmega_u0dre /* 0x0034 USART0 UDRE USART0 Data Register Empty */
|
|
|
|
vector atmega_u0tx /* 0x0036 USART0 TX USART0 Tx Complete */
|
2015-12-29 20:02:20 +01:00
|
|
|
vector atmega_ana_comp /* 0x0038 ANALOG COMP Analog Comparator */
|
|
|
|
vector atmega_adc /* 0x003A ADC ADC Conversion Complete */
|
|
|
|
vector atmega_ee_rdy /* 0x003C EE READY EEPROM Ready */
|
|
|
|
vector atmega_tim3_capt /* 0x003E TIMER3 CAPT Timer/Counter3 Capture Event */
|
|
|
|
vector atmega_tim3_compa /* 0x0040 TIMER3 COMPA Timer/Counter3 Compare Match A */
|
|
|
|
vector atmega_tim3_compb /* 0x0042 TIMER3 COMPB Timer/Counter3 Compare Match B */
|
|
|
|
vector atmega_tim3_compc /* 0x0044 TIMER3 COMPC Timer/Counter3 Compare Match C */
|
|
|
|
vector atmega_tim3_ovf /* 0x0046 TIMER3 OVF Timer/Counter3 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
vector atmega_u1rx /* 0x0048 USART1 RX USART1 Rx Complete */
|
|
|
|
vector atmega_u1dre /* 0x004A USART1 UDRE USART1 Data Register Empty */
|
|
|
|
vector atmega_u1tx /* 0x004C USART1 TX USART1 Tx Complete */
|
2015-12-29 20:02:20 +01:00
|
|
|
vector atmega_twi /* 0x004E TWI 2-wire Serial Interface */
|
|
|
|
vector atmega_spm_rdy /* 0x0050 SPM READY Store Program Memory Ready */
|
|
|
|
vector atmega_tim4_capt /* 0x0052 TIMER4 CAPT Timer/Counter4 Capture Event */
|
|
|
|
vector atmega_tim4_compa /* 0x0054 TIMER4 COMPA Timer/Counter4 Compare Match A */
|
|
|
|
vector atmega_tim4_compb /* 0x0056 TIMER4 COMPB Timer/Counter4 Compare Match B */
|
|
|
|
vector atmega_tim4_compc /* 0x0058 TIMER4 COMPC Timer/Counter4 Compare Match C */
|
|
|
|
vector atmega_tim4_ovf /* 0x005A TIMER4 OVF Timer/Counter4 Overflow */
|
|
|
|
vector atmega_tim5_capt /* 0x005C TIMER5 CAPT Timer/Counter5 Capture Event */
|
|
|
|
vector atmega_tim5_compa /* 0x005E TIMER5 COMPA Timer/Counter5 Compare Match A */
|
|
|
|
vector atmega_tim5_compb /* 0x0060 TIMER5 COMPB Timer/Counter5 Compare Match B */
|
|
|
|
vector atmega_tim5_compc /* 0x0062 TIMER5 COMPC Timer/Counter5 Compare Match C */
|
|
|
|
vector atmega_tim5_ovf /* 0x0064 TIMER5 OVF Timer/Counter5 Overflow */
|
2016-01-16 20:41:49 +01:00
|
|
|
vector atmega_u2rx /* 0x0066 USART2 RX USART2 Rx Complete */
|
|
|
|
vector atmega_u2dre /* 0x0068 USART2 UDRE USART2 Data Register Empty */
|
|
|
|
vector atmega_u2tx /* 0x006A USART2 TX USART2 Tx Complete */
|
|
|
|
vector atmega_u3rx /* 0x006C USART3 RX USART3 Rx Complete */
|
|
|
|
vector atmega_u3dre /* 0x006E USART3 UDRE USART3 Data Register Empty */
|
|
|
|
vector atmega_u3tx /* 0x0070 USART3 TX USART3 Tx Complete */
|
2015-01-26 21:10:46 +01:00
|
|
|
#else
|
|
|
|
#error "Unrecognized chip"
|
|
|
|
#endif
|
2011-06-09 01:30:39 +02:00
|
|
|
.endfunc
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Reset Entry Point
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
.section .init, "ax", @progbits
|
|
|
|
.func __start
|
|
|
|
__start:
|
|
|
|
|
2015-12-29 17:35:36 +01:00
|
|
|
/* no interrupts! Useful for software reset by jumping to address 0 */
|
|
|
|
cli
|
|
|
|
|
2015-12-29 17:46:28 +01:00
|
|
|
#if defined(EIND)
|
|
|
|
/* set EIND to 0, just to be sure we are sane */
|
2015-12-29 20:02:20 +01:00
|
|
|
out _SFR_IO_ADDR(EIND), 0 // EIND = 0x3c
|
2015-12-29 17:46:28 +01:00
|
|
|
#endif /* EIND */
|
2015-12-29 20:02:20 +01:00
|
|
|
|
2011-06-09 01:30:39 +02:00
|
|
|
/* Clear the zero register, clear the status register and initialize the
|
|
|
|
* IDLE thread stack
|
|
|
|
*/
|
|
|
|
|
|
|
|
clr r1
|
|
|
|
out _SFR_IO_ADDR(SREG), r1
|
|
|
|
ldi r28, lo8(STACKBASE)
|
|
|
|
ldi r29, hi8(STACKBASE)
|
|
|
|
out _SFR_IO_ADDR(SPH), r29
|
|
|
|
out _SFR_IO_ADDR(SPL), r28
|
|
|
|
|
|
|
|
/* Copy initial global data values from FLASH into RAM */
|
|
|
|
|
2015-12-29 20:02:20 +01:00
|
|
|
.global __do_copy_data; /* Required to suppress dragging in logic from libgcc */
|
2011-06-09 01:30:39 +02:00
|
|
|
__do_copy_data:
|
|
|
|
|
|
|
|
#ifdef HAVE_RAMPZ
|
|
|
|
ldi r17, hi8(_edata)
|
|
|
|
ldi r26, lo8(_sdata)
|
|
|
|
ldi r27, hi8(_sdata)
|
|
|
|
ldi r30, lo8(_eronly)
|
|
|
|
ldi r31, hi8(_eronly)
|
|
|
|
ldi r16, hh8(_eronly)
|
|
|
|
out _SFR_IO_ADDR(RAMPZ), r16
|
2015-12-29 20:02:20 +01:00
|
|
|
rjmp .Lcopystart
|
2011-06-09 01:30:39 +02:00
|
|
|
|
|
|
|
.Lcopyloop:
|
2015-12-29 20:02:20 +01:00
|
|
|
elpm r0, Z+
|
2011-06-09 01:30:39 +02:00
|
|
|
st X+, r0
|
|
|
|
|
|
|
|
.Lcopystart:
|
|
|
|
cpi r26, lo8(_edata)
|
|
|
|
cpc r27, r17
|
2015-12-29 20:02:20 +01:00
|
|
|
brne .Lcopyloop
|
2011-06-09 01:30:39 +02:00
|
|
|
#else
|
|
|
|
ldi r17, hi8(_edata)
|
|
|
|
ldi r26, lo8(_sdata)
|
|
|
|
ldi r27, hi8(_sdata)
|
|
|
|
ldi r30, lo8(_eronly)
|
|
|
|
ldi r31, hi8(_eronly)
|
2015-12-29 20:02:20 +01:00
|
|
|
rjmp .Lcopystart
|
2011-06-09 01:30:39 +02:00
|
|
|
|
|
|
|
.Lcopyloop:
|
2015-12-29 20:02:20 +01:00
|
|
|
lpm r0, Z+
|
|
|
|
st X+, r0
|
2011-06-16 16:28:18 +02:00
|
|
|
|
2011-06-09 01:30:39 +02:00
|
|
|
.Lcopystart:
|
2015-12-29 20:02:20 +01:00
|
|
|
cpi r26, lo8(_edata)
|
|
|
|
cpc r27, r17
|
|
|
|
brne .Lcopyloop
|
2011-06-09 01:30:39 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Clear uninitialized data */
|
|
|
|
|
2015-12-29 20:02:20 +01:00
|
|
|
.global __do_clear_bss; /* Required to suppress dragging in logic from libgcc */
|
2011-06-09 01:30:39 +02:00
|
|
|
__do_clear_bss:
|
|
|
|
|
|
|
|
ldi r17, hi8(_ebss)
|
|
|
|
ldi r26, lo8(_sbss)
|
|
|
|
ldi r27, hi8(_sbss)
|
2015-12-29 20:02:20 +01:00
|
|
|
rjmp .Lclearstart
|
2011-06-09 01:30:39 +02:00
|
|
|
|
|
|
|
.Lclearloop:
|
|
|
|
st X+, r1
|
2014-04-14 00:22:22 +02:00
|
|
|
|
2011-06-09 01:30:39 +02:00
|
|
|
.Lclearstart:
|
|
|
|
cpi r26, lo8(_ebss)
|
|
|
|
cpc r27, r17
|
|
|
|
brne .Lclearloop
|
|
|
|
|
|
|
|
/* Perform any low-level initialization */
|
|
|
|
|
|
|
|
call up_lowinit
|
|
|
|
|
|
|
|
/* Now start NuttX */
|
|
|
|
|
2019-02-04 23:20:35 +01:00
|
|
|
call nx_start
|
2011-06-09 01:30:39 +02:00
|
|
|
jmp exit
|
|
|
|
.endfunc
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Heap Base
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-03-14 15:42:52 +01:00
|
|
|
/* This global variable is unsigned long g_idle_topstack and is exported from
|
2011-06-16 01:54:25 +02:00
|
|
|
* here only because of its coupling to other uses of _enoinit in this file
|
2011-06-09 01:30:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
.data
|
2013-03-14 15:42:52 +01:00
|
|
|
.globl g_idle_topstack
|
|
|
|
.type g_idle_topstack, object
|
|
|
|
g_idle_topstack:
|
2011-06-16 01:54:25 +02:00
|
|
|
.word _enoinit+CONFIG_IDLETHREAD_STACKSIZE
|
2013-03-14 15:42:52 +01:00
|
|
|
.size g_idle_topstack, .-g_idle_topstack
|
2011-06-09 01:30:39 +02:00
|
|
|
.end
|