git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@136 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
b797fc9591
commit
9aaaebf0e2
|
@ -24,6 +24,7 @@
|
||||||
//#include "lpc214x_serial.h"
|
//#include "lpc214x_serial.h"
|
||||||
//#include "lpc214x_ssp.h"
|
//#include "lpc214x_ssp.h"
|
||||||
//#include "mmcsd.h"
|
//#include "mmcsd.h"
|
||||||
|
|
||||||
//#include "buzzer.h"
|
//#include "buzzer.h"
|
||||||
|
|
||||||
extern void IrqHandler(void);
|
extern void IrqHandler(void);
|
||||||
|
@ -115,13 +116,11 @@ void hwinit(void) {
|
||||||
*/
|
*/
|
||||||
InitVIC();
|
InitVIC();
|
||||||
VICDefVectAddr = (IOREG32)IrqHandler;
|
VICDefVectAddr = (IOREG32)IrqHandler;
|
||||||
SetVICVector(T0IrqHandler, 0, SOURCE_Timer0);
|
|
||||||
// SetVICVector(UART0IrqHandler, 1, SOURCE_UART0);
|
|
||||||
// SetVICVector(UART1IrqHandler, 2, SOURCE_UART1);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System Timer initialization, 1ms intervals.
|
* System Timer initialization, 1ms intervals.
|
||||||
*/
|
*/
|
||||||
|
SetVICVector(T0IrqHandler, 0, SOURCE_Timer0);
|
||||||
VICIntEnable = INTMASK(SOURCE_Timer0);
|
VICIntEnable = INTMASK(SOURCE_Timer0);
|
||||||
TC *timer = T0Base;
|
TC *timer = T0Base;
|
||||||
timer->TC_PR = VAL_TC0_PRESCALER;
|
timer->TC_PR = VAL_TC0_PRESCALER;
|
||||||
|
@ -133,7 +132,7 @@ void hwinit(void) {
|
||||||
/*
|
/*
|
||||||
* Other subsystems.
|
* Other subsystems.
|
||||||
*/
|
*/
|
||||||
// InitSerial();
|
// InitSerial(1, 2);
|
||||||
// InitSSP();
|
// InitSSP();
|
||||||
// InitMMC();
|
// InitMMC();
|
||||||
// InitBuzzer();
|
// InitBuzzer();
|
||||||
|
@ -151,19 +150,6 @@ void _IdleThread(void *p) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* System halt.
|
|
||||||
* Yellow LED only.
|
|
||||||
*/
|
|
||||||
void chSysHalt(void) {
|
|
||||||
|
|
||||||
chSysLock();
|
|
||||||
IO0SET = 0x00000C00;
|
|
||||||
IO0CLR = 0x80000000;
|
|
||||||
while (TRUE)
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System console message (not implemented).
|
* System console message (not implemented).
|
||||||
*/
|
*/
|
||||||
|
@ -173,17 +159,45 @@ void chSysPuts(char *msg) {
|
||||||
/*
|
/*
|
||||||
* Non-vectored IRQs handling here.
|
* Non-vectored IRQs handling here.
|
||||||
*/
|
*/
|
||||||
void NonVectoredIrq(void) {
|
__attribute__((naked, weak))
|
||||||
|
void IrqHandler(void) {
|
||||||
|
|
||||||
|
asm(".code 32 \n\t" \
|
||||||
|
"stmfd sp!, {r0-r3, r12, lr} \n\t");
|
||||||
|
#ifdef THUMB
|
||||||
|
asm("add r0, pc, #1 \n\t" \
|
||||||
|
"bx r0 \n\t" \
|
||||||
|
".code 16 \n\t");
|
||||||
VICVectAddr = 0;
|
VICVectAddr = 0;
|
||||||
|
asm("ldr r0, =IrqCommon \n\t" \
|
||||||
|
"bx r0 \n\t");
|
||||||
|
#else
|
||||||
|
VICVectAddr = 0;
|
||||||
|
asm("b IrqCommon \n\t");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Timer 0 IRQ handling here.
|
* Timer 0 IRQ handling here.
|
||||||
*/
|
*/
|
||||||
void Timer0Irq(void) {
|
__attribute__((naked, weak))
|
||||||
|
void T0IrqHandler(void) {
|
||||||
|
|
||||||
|
asm(".code 32 \n\t" \
|
||||||
|
"stmfd sp!, {r0-r3, r12, lr} \n\t");
|
||||||
|
#ifdef THUMB
|
||||||
|
asm("add r0, pc, #1 \n\t" \
|
||||||
|
"bx r0 \n\t" \
|
||||||
|
".code 16 \n\t");
|
||||||
T0IR = 1; /* Clear interrupt on match MR0. */
|
T0IR = 1; /* Clear interrupt on match MR0. */
|
||||||
chSysTimerHandlerI();
|
chSysTimerHandlerI();
|
||||||
VICVectAddr = 0;
|
VICVectAddr = 0;
|
||||||
|
asm("ldr r0, =IrqCommon \n\t" \
|
||||||
|
"bx r0 \n\t");
|
||||||
|
#else
|
||||||
|
T0IR = 1; /* Clear interrupt on match MR0. */
|
||||||
|
chSysTimerHandlerI();
|
||||||
|
VICVectAddr = 0;
|
||||||
|
asm("b IrqCommon \n\t");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,26 +53,44 @@ jmpr4: bx r4
|
||||||
.code 32
|
.code 32
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
.weak UndHandler
|
||||||
.globl UndHandler
|
.globl UndHandler
|
||||||
UndHandler:
|
UndHandler:
|
||||||
|
|
||||||
|
.weak SwiHandler
|
||||||
.globl SwiHandler
|
.globl SwiHandler
|
||||||
SwiHandler:
|
SwiHandler:
|
||||||
|
|
||||||
|
.weak PrefetchHandler
|
||||||
.globl PrefetchHandler
|
.globl PrefetchHandler
|
||||||
PrefetchHandler:
|
PrefetchHandler:
|
||||||
|
|
||||||
|
.weak AbortHandler
|
||||||
.globl AbortHandler
|
.globl AbortHandler
|
||||||
AbortHandler:
|
AbortHandler:
|
||||||
|
|
||||||
|
.weak FiqHandler
|
||||||
.globl FiqHandler
|
.globl FiqHandler
|
||||||
FiqHandler:
|
FiqHandler:
|
||||||
|
b halt32
|
||||||
|
|
||||||
|
.weak chSysHalt
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
#ifdef THUMB_NO_INTERWORKING
|
||||||
ldr r0, =chSysHalt
|
.code 16
|
||||||
|
.globl chSysHalt
|
||||||
|
chSysHalt:
|
||||||
|
mov r0, pc
|
||||||
bx r0
|
bx r0
|
||||||
|
.code 32
|
||||||
#else
|
#else
|
||||||
b chSysHalt
|
.globl chSysHalt
|
||||||
|
chSysHalt:
|
||||||
#endif
|
#endif
|
||||||
|
halt32:
|
||||||
|
mrs r0, CPSR
|
||||||
|
orr r0, #I_BIT | F_BIT
|
||||||
|
msr CPSR_c, r0
|
||||||
|
.loop: b .loop
|
||||||
|
|
||||||
#ifdef THUMB
|
#ifdef THUMB
|
||||||
.globl chSysLock
|
.globl chSysLock
|
||||||
|
@ -111,6 +129,8 @@ chSysSwitchI:
|
||||||
#endif /* CH_CURRP_REGISTER_CACHE */
|
#endif /* CH_CURRP_REGISTER_CACHE */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
* Common exit point for all IRQ routines, it performs the rescheduling if
|
||||||
|
* required.
|
||||||
* System stack frame structure after a context switch in the
|
* System stack frame structure after a context switch in the
|
||||||
* interrupt handler:
|
* interrupt handler:
|
||||||
*
|
*
|
||||||
|
@ -135,70 +155,6 @@ chSysSwitchI:
|
||||||
* SP-> | R4 | -+
|
* SP-> | R4 | -+
|
||||||
* Low +------------+
|
* Low +------------+
|
||||||
*/
|
*/
|
||||||
.globl IrqHandler
|
|
||||||
IrqHandler:
|
|
||||||
stmfd sp!, {r0-r3, r12, lr}
|
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
|
||||||
add r0, pc, #1
|
|
||||||
bx r0
|
|
||||||
.code 16
|
|
||||||
bl NonVectoredIrq
|
|
||||||
b IrqCommon
|
|
||||||
.code 32
|
|
||||||
#else
|
|
||||||
bl NonVectoredIrq
|
|
||||||
b IrqCommon
|
|
||||||
#endif
|
|
||||||
|
|
||||||
.globl T0IrqHandler
|
|
||||||
T0IrqHandler:
|
|
||||||
stmfd sp!, {r0-r3, r12, lr}
|
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
|
||||||
add r0, pc, #1
|
|
||||||
bx r0
|
|
||||||
.code 16
|
|
||||||
bl Timer0Irq
|
|
||||||
b IrqCommon
|
|
||||||
.code 32
|
|
||||||
#else
|
|
||||||
bl Timer0Irq
|
|
||||||
b IrqCommon
|
|
||||||
#endif
|
|
||||||
/*
|
|
||||||
.globl UART0IrqHandler
|
|
||||||
UART0IrqHandler:
|
|
||||||
stmfd sp!, {r0-r3, r12, lr}
|
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
|
||||||
add r0, pc, #1
|
|
||||||
bx r0
|
|
||||||
.code 16
|
|
||||||
bl UART0Irq
|
|
||||||
b IrqCommon
|
|
||||||
.code 32
|
|
||||||
#else
|
|
||||||
bl UART0Irq
|
|
||||||
b IrqCommon
|
|
||||||
#endif
|
|
||||||
|
|
||||||
.globl UART1IrqHandler
|
|
||||||
UART1IrqHandler:
|
|
||||||
stmfd sp!, {r0-r3, r12, lr}
|
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
|
||||||
add r0, pc, #1
|
|
||||||
bx r0
|
|
||||||
.code 16
|
|
||||||
bl UART1Irq
|
|
||||||
b IrqCommon
|
|
||||||
.code 32
|
|
||||||
#else
|
|
||||||
bl UART1Irq
|
|
||||||
b IrqCommon
|
|
||||||
#endif
|
|
||||||
*/
|
|
||||||
/*
|
|
||||||
* Common exit point for all IRQ routines, it performs the rescheduling if
|
|
||||||
* required.
|
|
||||||
*/
|
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
#ifdef THUMB_NO_INTERWORKING
|
||||||
.code 16
|
.code 16
|
||||||
.globl IrqCommon
|
.globl IrqCommon
|
||||||
|
|
|
@ -150,19 +150,6 @@ void _IdleThread(void *p) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* System halt.
|
|
||||||
* Yellow LED only.
|
|
||||||
*/
|
|
||||||
void chSysHalt(void) {
|
|
||||||
|
|
||||||
chSysLock();
|
|
||||||
IO0SET = 0x00000C00;
|
|
||||||
IO0CLR = 0x80000000;
|
|
||||||
while (TRUE)
|
|
||||||
;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* System console message (not implemented).
|
* System console message (not implemented).
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -72,12 +72,25 @@ AbortHandler:
|
||||||
.weak FiqHandler
|
.weak FiqHandler
|
||||||
.globl FiqHandler
|
.globl FiqHandler
|
||||||
FiqHandler:
|
FiqHandler:
|
||||||
|
b halt32
|
||||||
|
|
||||||
|
.weak chSysHalt
|
||||||
#ifdef THUMB_NO_INTERWORKING
|
#ifdef THUMB_NO_INTERWORKING
|
||||||
ldr r0, =chSysHalt
|
.code 16
|
||||||
|
.globl chSysHalt
|
||||||
|
chSysHalt:
|
||||||
|
mov r0, pc
|
||||||
bx r0
|
bx r0
|
||||||
|
.code 32
|
||||||
#else
|
#else
|
||||||
b chSysHalt
|
.globl chSysHalt
|
||||||
|
chSysHalt:
|
||||||
#endif
|
#endif
|
||||||
|
halt32:
|
||||||
|
mrs r0, CPSR
|
||||||
|
orr r0, #I_BIT | F_BIT
|
||||||
|
msr CPSR_c, r0
|
||||||
|
.loop: b .loop
|
||||||
|
|
||||||
#ifdef THUMB
|
#ifdef THUMB
|
||||||
.globl chSysLock
|
.globl chSysLock
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
# Project related configuration options
|
# Project related configuration options
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
PROJECT_NAME = ChibiOS/RT
|
PROJECT_NAME = ChibiOS/RT
|
||||||
PROJECT_NUMBER = "0.4.4 beta"
|
PROJECT_NUMBER = "0.4.5 beta"
|
||||||
OUTPUT_DIRECTORY = .
|
OUTPUT_DIRECTORY = .
|
||||||
CREATE_SUBDIRS = NO
|
CREATE_SUBDIRS = NO
|
||||||
OUTPUT_LANGUAGE = English
|
OUTPUT_LANGUAGE = English
|
||||||
|
|
|
@ -13,7 +13,7 @@ Homepage</h2>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center; vertical-align: top; width: 150px;">Current
|
<td style="text-align: center; vertical-align: top; width: 150px;">Current
|
||||||
Version 0.4.4<br>
|
Version 0.4.5<br>
|
||||||
-<br>
|
-<br>
|
||||||
<a href="http://sourceforge.net/projects/chibios/" rel="me" target="_top">Project on SourceForge</a><br>
|
<a href="http://sourceforge.net/projects/chibios/" rel="me" target="_top">Project on SourceForge</a><br>
|
||||||
<a href="html/index.html" target="_top" rel="me">Documentation</a><br>
|
<a href="html/index.html" target="_top" rel="me">Documentation</a><br>
|
||||||
|
|
|
@ -45,6 +45,10 @@ AVR-AT90CANx-GCC - Port on AVR AT90CAN128, not complete yet.
|
||||||
- Moved all the other interrupt handlers from chcore2.s into chcore.c as
|
- Moved all the other interrupt handlers from chcore2.s into chcore.c as
|
||||||
inline asm code. The interrupt code now is faster because one less call
|
inline asm code. The interrupt code now is faster because one less call
|
||||||
level.
|
level.
|
||||||
|
- Fixed a minor problem in chSysHalt() now it disables FIQ too and makes sure
|
||||||
|
to keep the processor in the state it had when it was halted.
|
||||||
|
Note: This is not a kernel bug but something specific with the ARM port, the
|
||||||
|
other ports are not affected.
|
||||||
|
|
||||||
*** 0.4.4 ***
|
*** 0.4.4 ***
|
||||||
- Fixed a very important bug in the preemption ARM code, important enough to
|
- Fixed a very important bug in the preemption ARM code, important enough to
|
||||||
|
|
Loading…
Reference in New Issue