score: Rename rtems_smp_secondary_cpu_initialize()

Rename rtems_smp_secondary_cpu_initialize() into
_SMP_Start_multitasking_on_secondary_processor().  Move declaration to
<rtems/score/smpimpl.h>.
This commit is contained in:
Sebastian Huber
2014-02-17 15:02:54 +01:00
parent 6ca4f6af8a
commit 911b1d228b
7 changed files with 36 additions and 30 deletions

View File

@@ -24,6 +24,7 @@
#define LIBBSP_ARM_SHARED_ARM_A9MPCORE_START_H
#include <rtems/bspsmp.h>
#include <rtems/score/smpimpl.h>
#include <libcpu/arm-cp15.h>
@@ -109,7 +110,7 @@ BSP_START_TEXT_SECTION static inline arm_a9mpcore_start_hook_0(void)
ctrl |= ARM_CP15_CTRL_I | ARM_CP15_CTRL_C | ARM_CP15_CTRL_M;
arm_cp15_set_control(ctrl);
rtems_smp_secondary_cpu_initialize();
_SMP_Start_multitasking_on_secondary_processor();
} else {
/* FIXME: Shutdown processor */
while (1) {

View File

@@ -56,6 +56,7 @@
#include <bsp/apic.h>
#include <bsp/smp-imps.h>
#include <bsp/irq.h>
#include <rtems/score/smpimpl.h>
/*
* XXXXX The following absolutely must be defined!!!
@@ -783,7 +784,7 @@ static void secondary_cpu_initialize(void)
enable_sse();
#endif
rtems_smp_secondary_cpu_initialize();
_SMP_Start_multitasking_on_secondary_processor();
}
#include <rtems/bspsmp.h>

View File

@@ -15,6 +15,7 @@
#include <assert.h>
#include <rtems/bspsmp.h>
#include <rtems/score/smpimpl.h>
#include <libcpu/powerpc-utility.h>
@@ -133,7 +134,7 @@ void qoriq_secondary_cpu_initialize(void)
bsp_interrupt_vector_enable(QORIQ_IRQ_IPI_0);
rtems_smp_secondary_cpu_initialize();
_SMP_Start_multitasking_on_secondary_processor();
}
static void ipi_handler(void *arg)

View File

@@ -17,6 +17,7 @@
#include <leon.h>
#include <rtems/bspIo.h>
#include <rtems/bspsmp.h>
#include <rtems/score/smpimpl.h>
#include <stdlib.h>
static inline void sparc_leon3_set_cctrl( unsigned int val )
@@ -44,7 +45,7 @@ void leon3_secondary_cpu_initialize(uint32_t cpu)
LEON_Unmask_interrupt(LEON3_MP_IRQ);
LEON3_IrqCtrl_Regs->mask[cpu] |= 1 << LEON3_MP_IRQ;
rtems_smp_secondary_cpu_initialize();
_SMP_Start_multitasking_on_secondary_processor();
}
uint32_t _CPU_SMP_Initialize( uint32_t configured_cpu_count )