forked from Imagelibrary/rtems
Statically initialize the interrupt stack area
(_Configuration_Interrupt_stack_area_begin,
_Configuration_Interrupt_stack_area_end, and
_Configuration_Interrupt_stack_size) via <rtems/confdefs.h>. Place the
interrupt stack area in a special section ".rtemsstack.interrupt". Let
BSPs define the optimal placement of this section in their linker
command files (e.g. in a fast on-chip memory).
This change makes makes the CPU_HAS_SOFTWARE_INTERRUPT_STACK and
CPU_HAS_HARDWARE_INTERRUPT_STACK CPU port defines superfluous, since the
low level initialization code has all information available via global
symbols.
This change makes the CPU_ALLOCATE_INTERRUPT_STACK CPU port define
superfluous, since the interrupt stacks are allocated by confdefs.h for
all architectures. There is no need for BSP-specific linker command
file magic (except the section placement), see previous ARM linker
command file as a bad example.
Remove _CPU_Install_interrupt_stack(). Initialize the hardware
interrupt stack in _CPU_Initialize() if necessary (e.g.
m68k_install_interrupt_stack()).
The optional _CPU_Interrupt_stack_setup() is still useful to customize
the registration of the interrupt stack area in the per-CPU information.
The initialization stack can reuse the interrupt stack, since
* interrupts are disabled during the sequential system initialization,
and
* the boot_card() function does not return.
This stack resuse saves memory.
Changes per architecture:
arm:
* Mostly replace the linker symbol based configuration of stacks with
the standard <rtems/confdefs.h> configuration via
CONFIGURE_INTERRUPT_STACK_SIZE. The size of the FIQ, ABT and UND
mode stack is still defined via linker symbols. These modes are
rarely used in applications and the default values provided by the
BSP should be sufficient in most cases.
* Remove the bsp_processor_count linker symbol hack used for the SMP
support. This is possible since the interrupt stack area is now
allocated by the linker and not allocated from the heap. This makes
some configure.ac stuff obsolete. Remove the now superfluous BSP
variants altcycv_devkit_smp and realview_pbx_a9_qemu_smp.
bfin:
* Remove unused magic linker command file allocation of initialization
stack. Maybe a previous linker command file copy and paste problem?
In the start.S the initialization stack is set to a hard coded value.
lm32, m32c, mips, nios2, riscv, sh, v850:
* Remove magic linker command file allocation of initialization stack.
Reuse interrupt stack for initialization stack.
m68k:
* Remove magic linker command file allocation of initialization stack.
Reuse interrupt stack for initialization stack.
powerpc:
* Remove magic linker command file allocation of initialization stack.
Reuse interrupt stack for initialization stack.
* Used dedicated memory region (REGION_RTEMSSTACK) for the interrupt
stack on BSPs using the shared linkcmds.base (replacement for
REGION_RWEXTRA).
sparc:
* Remove the hard coded initialization stack. Use the interrupt stack
for the initialization stack on the boot processor. This saves
16KiB of RAM.
Update #3459.
141 lines
3.9 KiB
ArmAsm
141 lines
3.9 KiB
ArmAsm
/* entry.s
|
|
*
|
|
* This file contains the entry point for the application.
|
|
* The name of this entry point is compiler dependent.
|
|
* It jumps to the BSP which is responsible for performing
|
|
* all initialization.
|
|
*
|
|
* COPYRIGHT (c) 1989-1999.
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* The license and distribution terms for this file may be
|
|
* found in the file LICENSE in this distribution or at
|
|
* http://www.rtems.org/license/LICENSE.
|
|
*/
|
|
|
|
#include <rtems/asm.h>
|
|
|
|
#if (M68K_COLDFIRE_ARCH == 0) /* All ColdFire BSPs must provide their own start vector */
|
|
|
|
BEGIN_CODE
|
|
| Default entry points for:
|
|
PUBLIC (start) | GNU
|
|
PUBLIC (M68Kvec) | Vector Table
|
|
|
|
SYM (start):
|
|
SYM (M68Kvec): | standard location for vectors
|
|
nop | for linkers with problem
|
|
| location zero
|
|
jmp SYM (start_around)
|
|
|
|
/*
|
|
* We can use the following space as our vector table
|
|
* if the CPU has a VBR or we can save vector table in it
|
|
* if the CPU does not.
|
|
*/
|
|
|
|
.space 4088 | to avoid initial intr stack
|
|
| from 135BUG on MVME13?
|
|
| and start code at 0x4000
|
|
SYM (vectors):
|
|
.space 1016 | reserve space for rest of vectors
|
|
|
|
#if ( M68K_HAS_SEPARATE_STACKS == 1 )
|
|
SYM (lowintstack):
|
|
.space 4092 | reserve for interrupt stack
|
|
SYM (hiintstack):
|
|
.space 4 | end of interrupt stack
|
|
#endif
|
|
|
|
PUBLIC (start_around)
|
|
SYM (start_around):
|
|
move.w sr, SYM (initial_sr)
|
|
oriw #0x3700,sr | SUPV MODE,INTERRUPTS OFF!!!
|
|
#if ( M68K_HAS_SEPARATE_STACKS == 1 )
|
|
movec isp,a0
|
|
move.l a0, SYM (initial_isp)
|
|
movec usp,a0
|
|
move.l a0, SYM (initial_usp)
|
|
movec msp,a0
|
|
move.l a0, SYM (initial_msp)
|
|
#else
|
|
move.l a7, SYM (initial_msp)
|
|
#endif
|
|
|
|
|
|
|
| zero out uninitialized data area
|
|
|
|
|
zerobss:
|
|
moveal # SYM (bsp_section_bss_end),a0 | find end of .bss
|
|
moveal # SYM (bsp_section_bss_begin),a1 | find beginning of .bss
|
|
movel #0,d0
|
|
|
|
loop: movel #0,a1@+ | to zero out uninitialized
|
|
cmpal a0,a1
|
|
jlt loop | loop until _end reached
|
|
|
|
movel # SYM (_Configuration_Interrupt_stack_area_end),d0 | d0 = stop of stack
|
|
movw #0x3700,sr | SUPV MODE,INTERRUPTS OFF!!!
|
|
movel d0,a7 | set master stack pointer
|
|
movel d0,a6 | set base pointer
|
|
|
|
/*
|
|
* RTEMS should maintain a separate interrupt stack on CPUs
|
|
* without one in hardware. This is currently not supported
|
|
* on versions of the m68k without a HW intr stack.
|
|
*/
|
|
|
|
#if ( M68K_HAS_SEPARATE_STACKS == 1 )
|
|
lea SYM (hiintstack),a0 | a0 = high end of intr stack
|
|
movec a0,isp | set interrupt stack
|
|
#endif
|
|
|
|
movel #0,a7@- | push command line
|
|
jsr SYM (boot_card)
|
|
addl #12,a7
|
|
|
|
#if ( M68K_HAS_SEPARATE_STACKS == 1 )
|
|
move.l SYM (initial_isp),a0
|
|
movec a0,isp
|
|
move.l SYM (initial_usp),a0
|
|
movec a0,usp
|
|
move.l SYM (initial_msp),a0
|
|
movec a0,msp
|
|
#else
|
|
movea.l SYM (initial_msp),a7
|
|
#endif
|
|
move.w SYM (initial_sr),sr
|
|
rts
|
|
|
|
END_CODE
|
|
|
|
BEGIN_DATA
|
|
|
|
PUBLIC (start_frame)
|
|
SYM (start_frame):
|
|
.space 4,0
|
|
|
|
END_DATA
|
|
|
|
BEGIN_BSS
|
|
|
|
PUBLIC (initial_isp)
|
|
SYM (initial_isp):
|
|
.space 4
|
|
|
|
PUBLIC (initial_msp)
|
|
SYM (initial_msp):
|
|
.space 4
|
|
|
|
PUBLIC (initial_usp)
|
|
SYM (initial_usp):
|
|
.space 4
|
|
|
|
PUBLIC (initial_sr)
|
|
SYM (initial_sr):
|
|
.space 2
|
|
|
|
END_DATA
|
|
#endif
|
|
END
|