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.
136 lines
3.4 KiB
ArmAsm
136 lines
3.4 KiB
ArmAsm
/*
|
|
* This is based on the mvme-crt0.S file from libgloss/rs6000.
|
|
* crt0.S -- startup file for PowerPC systems.
|
|
*
|
|
* Copyright (c) 1995 Cygnus Support
|
|
*
|
|
* The authors hereby grant permission to use, copy, modify, distribute,
|
|
* and license this software and its documentation for any purpose, provided
|
|
* that existing copyright notices are retained in all copies and that this
|
|
* notice is included verbatim in any distributions. No written agreement,
|
|
* license, or royalty fee is required for any of the authorized uses.
|
|
* Modifications to this software may be copyrighted by their authors
|
|
* and need not follow the licensing terms described here, provided that
|
|
* the new terms are clearly indicated on the first page of each file where
|
|
* they apply.
|
|
*/
|
|
|
|
#include <rtems/asm.h>
|
|
#include <rtems/score/cpu.h>
|
|
#include <libcpu/io.h>
|
|
#include "ppc-asm.h"
|
|
|
|
.section ".got2","aw"
|
|
.align 2
|
|
|
|
.LCTOC1 = .+32768
|
|
|
|
.extern FUNC_NAME(atexit)
|
|
.globl FUNC_NAME(__atexit)
|
|
.section ".sdata","aw"
|
|
.align 2
|
|
FUNC_NAME(__atexit): /* tell C's eabi-ctor's we have an atexit function */
|
|
.long FUNC_NAME(atexit)@fixup /* and that it is to register __do_global_dtors */
|
|
|
|
.section ".fixup","aw"
|
|
.align 2
|
|
.long FUNC_NAME(__atexit)
|
|
|
|
.section ".got2","aw"
|
|
.Ltable = .-.LCTOC1
|
|
.long .LCTOC1 /* address we think .LCTOC1 is loaded at */
|
|
|
|
.Lbss_start = .-.LCTOC1
|
|
.long bsp_section_sbss_begin
|
|
|
|
.Lend = .-.LCTOC1
|
|
.long bsp_section_bss_end
|
|
|
|
.Lstack = .-.LCTOC1 /* stack address if set by user */
|
|
.long _Configuration_Interrupt_stack_area_end
|
|
|
|
.text
|
|
.Lptr:
|
|
.long .LCTOC1-.Laddr
|
|
|
|
.globl __rtems_entry_point
|
|
.type __rtems_entry_point,@function
|
|
__rtems_entry_point:
|
|
#if 1
|
|
.globl _start
|
|
.type _start,@function
|
|
_start:
|
|
#endif
|
|
bl .Laddr /* get current address */
|
|
.Laddr:
|
|
mflr r4 /* real address of .Laddr */
|
|
lwz r5,(.Lptr-.Laddr)(r4) /* linker generated address of .LCTOC1 */
|
|
add r5,r5,r4 /* correct to real pointer */
|
|
lwz r4,.Ltable(r5) /* get linker's idea of where .Laddr is */
|
|
subf r4,r4,r5 /* calculate difference between where linked and current */
|
|
|
|
/* clear bss */
|
|
lwz r6,.Lbss_start(r5) /* calculate beginning of the BSS */
|
|
lwz r7,.Lend(r5) /* calculate end of the BSS */
|
|
add r6,r6,r4 /* adjust pointers */
|
|
add r7,r7,r4
|
|
|
|
cmplw 1,r6,r7
|
|
bc 4,4,.Ldone
|
|
|
|
subf r8,r6,r7 /* number of bytes to zero */
|
|
srwi r9,r8,2 /* number of words to zero */
|
|
mtctr r9
|
|
li r0,0 /* zero to clear memory */
|
|
addi r6,r6,-4 /* adjust so we can use stwu */
|
|
.Lloop:
|
|
stwu r0,4(r6) /* zero bss */
|
|
bdnz .Lloop
|
|
|
|
.Ldone:
|
|
|
|
lwz r0,.Lstack(r5) /* stack area or 0 */
|
|
cmplwi 1,r0,0 /* equal to 0? */
|
|
bc 12,6,.Lnostack /* use default stack if == 0 */
|
|
mr sp,r0 /* use user defined stack */
|
|
|
|
.Lnostack:
|
|
#ifdef __ALTIVEC__
|
|
/* enable altivec; this requires the ALTIVEC user
|
|
* extension to be installed in the user extension
|
|
* slot 0!
|
|
*/
|
|
mfmsr r0
|
|
oris r0, r0, (1<<(31-16-6))
|
|
mtmsr r0
|
|
isync
|
|
/*
|
|
* set vscr and vrsave to known values
|
|
*/
|
|
li r0, 0
|
|
mtvrsave r0
|
|
vxor 0,0,0
|
|
mtvscr 0
|
|
#endif
|
|
/* set up initial stack frame */
|
|
addi sp,sp,-4 /* make sure we don't overwrite debug mem */
|
|
/* align */
|
|
li r3, CPU_STACK_ALIGNMENT-1
|
|
andc sp, sp, r3
|
|
lis r0,0
|
|
stw r0,0(sp) /* clear back chain */
|
|
stwu sp,-CPU_STACK_ALIGNMENT(sp) /* push another stack frame */
|
|
bl FUNC_NAME(__eabi)
|
|
|
|
/* Let her rip */
|
|
li r3, 0 /* command line */
|
|
bl FUNC_NAME(boot_card)
|
|
|
|
.globl FUNC_NAME(bsp_reset)
|
|
FUNC_NAME(bsp_reset):
|
|
li 10,99 /* 0x63 */
|
|
sc
|
|
|
|
.Lstart:
|
|
.size _start,.Lstart-_start
|