Update to V4.5.0 files and directory structure.

This commit is contained in:
Richard Barry 2007-09-17 10:07:48 +00:00
parent 1362bebfdc
commit 98a9959a44
758 changed files with 53177 additions and 3139 deletions

View file

@ -70,107 +70,107 @@ _evba:
ORG 0x000
// Unrecoverable Exception.
_handle_Unrecoverable_Exception:
rjmp _handle_Unrecoverable_Exception
rjmp $
ORG 0x004
// TLB Multiple Hit: UNUSED IN AVR32UC.
_handle_TLB_Multiple_Hit:
rjmp _handle_TLB_Multiple_Hit
rjmp $
ORG 0x008
// Bus Error Data Fetch.
_handle_Bus_Error_Data_Fetch:
rjmp _handle_Bus_Error_Data_Fetch
rjmp $
ORG 0x00C
// Bus Error Instruction Fetch.
_handle_Bus_Error_Instruction_Fetch:
rjmp _handle_Bus_Error_Instruction_Fetch
rjmp $
ORG 0x010
// NMI.
_handle_NMI:
rjmp _handle_NMI
rjmp $
ORG 0x014
// Instruction Address.
_handle_Instruction_Address:
rjmp _handle_Instruction_Address
rjmp $
ORG 0x018
// ITLB Protection.
_handle_ITLB_Protection:
rjmp _handle_ITLB_Protection
rjmp $
ORG 0x01C
// Breakpoint.
_handle_Breakpoint:
rjmp _handle_Breakpoint
rjmp $
ORG 0x020
// Illegal Opcode.
_handle_Illegal_Opcode:
rjmp _handle_Illegal_Opcode
rjmp $
ORG 0x024
// Unimplemented Instruction.
_handle_Unimplemented_Instruction:
rjmp _handle_Unimplemented_Instruction
rjmp $
ORG 0x028
// Privilege Violation.
_handle_Privilege_Violation:
rjmp _handle_Privilege_Violation
rjmp $
ORG 0x02C
// Floating-Point: UNUSED IN AVR32UC.
_handle_Floating_Point:
rjmp _handle_Floating_Point
rjmp $
ORG 0x030
// Coprocessor Absent: UNUSED IN AVR32UC.
_handle_Coprocessor_Absent:
rjmp _handle_Coprocessor_Absent
rjmp $
ORG 0x034
// Data Address (Read).
_handle_Data_Address_Read:
rjmp _handle_Data_Address_Read
rjmp $
ORG 0x038
// Data Address (Write).
_handle_Data_Address_Write:
rjmp _handle_Data_Address_Write
rjmp $
ORG 0x03C
// DTLB Protection (Read).
_handle_DTLB_Protection_Read:
rjmp _handle_DTLB_Protection_Read
rjmp $
ORG 0x040
// DTLB Protection (Write).
_handle_DTLB_Protection_Write:
rjmp _handle_DTLB_Protection_Write
rjmp $
ORG 0x044
// DTLB Modified: UNUSED IN AVR32UC.
_handle_DTLB_Modified:
rjmp _handle_DTLB_Modified
rjmp $
ORG 0x050
// ITLB Miss: UNUSED IN AVR32UC.
_handle_ITLB_Miss:
rjmp _handle_ITLB_Miss
rjmp $
ORG 0x060
// DTLB Miss (Read): UNUSED IN AVR32UC.
_handle_DTLB_Miss_Read:
rjmp _handle_DTLB_Miss_Read
rjmp $
ORG 0x070
// DTLB Miss (Write): UNUSED IN AVR32UC.
_handle_DTLB_Miss_Write:
rjmp _handle_DTLB_Miss_Write
rjmp $
ORG 0x100
// Supervisor Call.

View file

@ -13,7 +13,7 @@
*****************************************************************************/
/*
FreeRTOS.org V4.4.0 - Copyright (C) 2003-2007 Richard Barry.
FreeRTOS.org V4.5.0 - Copyright (C) 2003-2007 Richard Barry.
This file is part of the FreeRTOS.org distribution.
@ -76,6 +76,8 @@ volatile unsigned portLONG ulCriticalNesting = 9999UL;
#if( configTICK_USE_TC==0 )
static void prvScheduleNextTick( void );
#else
static void prvClearTcInt( void );
#endif
/* Setup the timer to generate the tick interrupts. */
@ -169,7 +171,7 @@ static void vTick( void )
#if( configTICK_USE_TC==1 )
/* Clear the interrupt flag. */
AVR32_TC.channel[configTICK_TC_CHANNEL].sr;
prvClearTcInt();
#else
/* Schedule the COUNT&COMPARE match interrupt in (configCPU_CLOCK_HZ/configTICK_RATE_HZ)
clock cycles from now. */
@ -201,6 +203,7 @@ void SCALLYield( void )
different optimisation levels. The interrupt flags can therefore not always
be saved to the stack. Instead the critical section nesting level is stored
in a variable, which is then saved as part of the stack context. */
#pragma optimize = no_inline
void vPortEnterCritical( void )
{
/* Disable interrupts */
@ -213,6 +216,7 @@ void vPortEnterCritical( void )
}
/*-----------------------------------------------------------*/
#pragma optimize = no_inline
void vPortExitCritical( void )
{
if(ulCriticalNesting > portNO_CRITICAL_NESTING)
@ -301,6 +305,7 @@ clock cycles from now. */
Set_system_register(AVR32_COMPARE, lCycles);
}
#pragma optimize = no_inline
static void prvScheduleNextTick(void)
{
unsigned long lCycles, lCount;
@ -320,6 +325,12 @@ clock cycles from now. */
}
Set_system_register(AVR32_COMPARE, lCycles);
}
#else
#pragma optimize = no_inline
static void prvClearTcInt(void)
{
AVR32_TC.channel[configTICK_TC_CHANNEL].sr;
}
#endif
/*-----------------------------------------------------------*/

View file

@ -13,7 +13,7 @@
*****************************************************************************/
/*
FreeRTOS.org V4.4.0 - Copyright (C) 2003-2007 Richard Barry.
FreeRTOS.org V4.5.0 - Copyright (C) 2003-2007 Richard Barry.
This file is part of the FreeRTOS.org distribution.