SMP: Add per-CPU initialization logic
This commit is contained in:
parent
2b2f157569
commit
411cf0ba1f
@ -139,3 +139,7 @@ CHIP_ASRCS =
|
|||||||
CHIP_CSRCS = imx_boot.c imx_memorymap.c imx_clockconfig.c imx_irq.c
|
CHIP_CSRCS = imx_boot.c imx_memorymap.c imx_clockconfig.c imx_irq.c
|
||||||
CHIP_CSRCS += imx_timerisr.c imx_gpio.c imx_iomuxc.c
|
CHIP_CSRCS += imx_timerisr.c imx_gpio.c imx_iomuxc.c
|
||||||
CHIP_CSRCS += imx_serial.c imx_lowputc.c
|
CHIP_CSRCS += imx_serial.c imx_lowputc.c
|
||||||
|
|
||||||
|
ifeq ($(CONFIG_SMP),y)
|
||||||
|
CHIP_CSRCS += imx_cpuinit.c
|
||||||
|
endif
|
||||||
|
76
arch/arm/src/imx6/imx_cpuinit.c
Normal file
76
arch/arm/src/imx6/imx_cpuinit.c
Normal file
@ -0,0 +1,76 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
* arch/arm/src/imx6/imx_clockconfig.c
|
||||||
|
*
|
||||||
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
||||||
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions
|
||||||
|
* are met:
|
||||||
|
*
|
||||||
|
* 1. Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* 2. Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in
|
||||||
|
* the documentation and/or other materials provided with the
|
||||||
|
* distribution.
|
||||||
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
||||||
|
* used to endorse or promote products derived from this software
|
||||||
|
* without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
||||||
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
||||||
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
||||||
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
||||||
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
||||||
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
||||||
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
||||||
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
||||||
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||||
|
* POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Included Files
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include <nuttx/config.h>
|
||||||
|
|
||||||
|
#include <nuttx/arch.h>
|
||||||
|
|
||||||
|
#include "gic.h"
|
||||||
|
|
||||||
|
#ifdef CONFIG_SMP
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Public Functions
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: up_cpu_initialize
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* After the CPU has been started (via up_cpu_start()) the system will
|
||||||
|
* call back into the architecture-specific code with this function on the
|
||||||
|
* thread of execution of the newly started CPU. This gives the
|
||||||
|
* architecture-specific a chance to perform ny initial, CPU-specific
|
||||||
|
* initialize on that thread.
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* None
|
||||||
|
*
|
||||||
|
* Returned Value:
|
||||||
|
* Zero on success; a negated errno value on failure.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
int up_cpu_initialize(void)
|
||||||
|
{
|
||||||
|
/* Initialize the Generic Interrupt Controller (GIC) for CPU0 */
|
||||||
|
|
||||||
|
arm_gic_initialize();
|
||||||
|
return OK;
|
||||||
|
}
|
@ -103,7 +103,7 @@ void up_irqinitialize(void)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Initialize the Generic Interrupt Controller (GIC) for this CPU */
|
/* Initialize the Generic Interrupt Controller (GIC) for CPU0 */
|
||||||
|
|
||||||
arm_gic_initialize();
|
arm_gic_initialize();
|
||||||
|
|
||||||
|
@ -51,6 +51,29 @@
|
|||||||
* Public Functions
|
* Public Functions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
|
/****************************************************************************
|
||||||
|
* Name: up_cpu_initialize
|
||||||
|
*
|
||||||
|
* Description:
|
||||||
|
* After the CPU has been started (via up_cpu_start()) the system will
|
||||||
|
* call back into the architecture-specific code with this function on the
|
||||||
|
* thread of execution of the newly started CPU. This gives the
|
||||||
|
* architecture-specific a chance to perform ny initial, CPU-specific
|
||||||
|
* initialize on that thread.
|
||||||
|
*
|
||||||
|
* Input Parameters:
|
||||||
|
* None
|
||||||
|
*
|
||||||
|
* Returned Value:
|
||||||
|
* Zero on success; a negated errno value on failure.
|
||||||
|
*
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
int up_cpu_initialize(void)
|
||||||
|
{
|
||||||
|
return OK;
|
||||||
|
}
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Name: sim_smp_hook
|
* Name: sim_smp_hook
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user