bsps/sparc: Use default bsp_pretasking_hook()

Move content to bsp_predriver_hook() functions of the BSPs.

Update #2408.
This commit is contained in:
Sebastian Huber
2015-12-09 06:46:24 +01:00
parent b318cb138f
commit 938ef78cc4
7 changed files with 9 additions and 29 deletions

View File

@@ -32,7 +32,7 @@ libbsp_a_SOURCES += ../../shared/bspclean.c
libbsp_a_SOURCES += ../../shared/bsplibc.c
libbsp_a_SOURCES += startup/bsppredriver.c
libbsp_a_SOURCES += ../../sparc/shared/startup/bspgetworkarea.c
libbsp_a_SOURCES += ../../sparc/shared/bsppretaskinghook.c
libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
libbsp_a_SOURCES += ../../shared/bsppost.c
libbsp_a_SOURCES += ../../shared/bspstart.c
libbsp_a_SOURCES += ../../shared/bootcard.c

View File

@@ -21,6 +21,8 @@
*/
void bsp_predriver_hook( void )
{
bsp_spurious_initialize();
/* Initialize shared interrupt handling, must be done after IRQ
* controller has been found and initialized.
*/

View File

@@ -34,7 +34,7 @@ libbsp_a_SOURCES += ../../shared/bsplibc.c
libbsp_a_SOURCES += ../../shared/bsppost.c
libbsp_a_SOURCES += startup/bsppredriver.c
libbsp_a_SOURCES += startup/bspstart.c
libbsp_a_SOURCES += ../../sparc/shared/bsppretaskinghook.c
libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
libbsp_a_SOURCES += ../../sparc/shared/startup/bspgetworkarea.c
libbsp_a_SOURCES += ../../shared/bootcard.c
libbsp_a_SOURCES += ../../shared/sbrk.c

View File

@@ -85,6 +85,8 @@ void bsp_driver_level_hook( int level )
*/
void bsp_predriver_hook( void )
{
bsp_spurious_initialize();
/* Initialize shared interrupt handling, must be done after IRQ
* controller has been found and initialized.
*/

View File

@@ -35,7 +35,7 @@ libbsp_a_SOURCES =
libbsp_a_SOURCES += startup/bspclean.c
libbsp_a_SOURCES += ../../shared/bsplibc.c \
../../shared/bsppost.c ../../shared/bootcard.c startup/bspstart.c \
../../sparc/shared/bsppretaskinghook.c startup/bsppredriver.c \
../../shared/bsppretaskinghook.c startup/bsppredriver.c \
../../sparc/shared/startup/bspgetworkarea.c ../../shared/sbrk.c \
startup/setvec.c \
startup/spurious.c startup/bspidle.S startup/bspdelay.c \

View File

@@ -32,6 +32,8 @@ static void leon3_interrupt_common_init( void )
*/
void bsp_predriver_hook( void )
{
bsp_spurious_initialize();
#ifndef RTEMS_DRVMGR_STARTUP
leon3_interrupt_common_init();
#endif

View File

@@ -1,26 +0,0 @@
/*
* This set of routines are the BSP specific initialization
* support routines.
*
* COPYRIGHT (c) 1989-2009.
* 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.
*
* Ported to ERC32 implementation of the SPARC by On-Line Applications
* Research Corporation (OAR) under contract to the European Space
* Agency (ESA).
*
* ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
* European Space Agency.
*/
#include <bsp.h>
#include <bsp/bootcard.h>
void bsp_pretasking_hook(void)
{
bsp_spurious_initialize();
}