glodfish: add SMP boot support

Signed-off-by: ligd <liguiding1@xiaomi.com>
This commit is contained in:
ligd
2023-12-26 15:44:36 +08:00
committed by Xiang Xiao
parent d1bcc1f504
commit 4818707870
3 changed files with 148 additions and 6 deletions
+3 -2
View File
@@ -21,6 +21,7 @@
include armv7-a/Make.defs
# goldfish-specific C source files
CHIP_CSRCS = goldfish_boot.c goldfish_serial.c goldfish_irq.c goldfish_timer.c goldfish_memorymap.c
CHIP_CSRCS += goldfish_pgalloc.c
CHIP_CSRCS = goldfish_boot.c goldfish_cpuboot.c goldfish_irq.c
CHIP_CSRCS += goldfish_memorymap.c goldfish_serial.c goldfish_timer.c
CHIP_CSRCS += goldfish_pgalloc.c
+20 -4
View File
@@ -25,9 +25,12 @@
#include <nuttx/config.h>
#include "arm_internal.h"
#include "arm_cpu_psci.h"
#include "goldfish_irq.h"
#include "goldfish_memorymap.h"
#include "smp.h"
#include "gic.h"
#ifdef CONFIG_DEVICE_TREE
# include <nuttx/fdt.h>
@@ -57,12 +60,12 @@ void arm_boot(void)
arm_fpuconfig();
#ifdef CONFIG_DEVICE_TREE
fdt_register((const char *)0x40000000);
#ifdef CONFIG_ARCH_HAVE_PSCI
arm_psci_init("smc");
#endif
#if defined(CONFIG_ARCH_HAVE_PSCI)
arm_psci_init("smc");
#ifdef CONFIG_DEVICE_TREE
fdt_register((const char *)0x40000000);
#endif
#ifdef USE_EARLYSERIALINIT
@@ -73,3 +76,16 @@ void arm_boot(void)
arm_earlyserialinit();
#endif
}
#if defined(CONFIG_ARCH_HAVE_PSCI) && defined(CONFIG_SMP)
int up_cpu_start(int cpu)
{
#ifdef CONFIG_SCHED_INSTRUMENTATION
/* Notify of the start event */
sched_note_cpu_start(this_task_inirq(), cpu);
#endif
return psci_cpu_on(cpu, (uintptr_t)__start);
}
#endif
+125
View File
@@ -0,0 +1,125 @@
/****************************************************************************
* arch/arm/src/goldfish/goldfish_cpuboot.c
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
****************************************************************************/
/****************************************************************************
* Included Files
****************************************************************************/
#include <nuttx/config.h>
#include <stdint.h>
#include <assert.h>
#include <nuttx/arch.h>
#include <nuttx/sched.h>
#include <arch/irq.h>
#include <debug.h>
#include "arm_internal.h"
#include "sctlr.h"
#include "scu.h"
#include "gic.h"
/****************************************************************************
* Public Data
****************************************************************************/
/* Symbols defined via the linker script */
#ifdef CONFIG_ARCH_LOWVECTORS
extern uint8_t _vector_start[]; /* Beginning of vector block */
#endif
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: arm_cpu_boot
*
* Description:
* Continues the C-level initialization started by the assembly language
* __cpu[n]_start function. At a minimum, this function needs to
* initialize interrupt handling and, perhaps, wait on WFI for
* arm_cpu_start() to issue an SGI.
*
* This function must be provided by the each ARMv7-A MCU and implement
* MCU-specific initialization logic.
*
* Input Parameters:
* cpu - The CPU index. This is the same value that would be obtained by
* calling up_cpu_index();
*
* Returned Value:
* Does not return.
*
****************************************************************************/
void arm_cpu_boot(int cpu)
{
/* Enable SMP cache coherency for the CPU */
arm_enable_smp(cpu);
/* Initialize the FPU */
arm_fpuconfig();
/* Initialize the Generic Interrupt Controller (GIC) for CPUn (n != 0) */
arm_gic_initialize();
#ifdef CONFIG_ARCH_LOWVECTORS
/* If CONFIG_ARCH_LOWVECTORS is defined, then the vectors located at the
* beginning of the .text region must appear at address at the address
* specified in the VBAR. There are two ways to accomplish this:
*
* 1. By explicitly mapping the beginning of .text region with a page
* table entry so that the virtual address zero maps to the beginning
* of the .text region. VBAR == 0x0000:0000.
*
* 2. Set the Cortex-A5 VBAR register so that the vector table address
* is moved to a location other than 0x0000:0000.
*
* The second method is used by this logic.
*/
/* Set the VBAR register to the address of the vector table */
DEBUGASSERT((((uintptr_t)_vector_start) & ~VBAR_MASK) == 0);
cp15_wrvbar((uint32_t)_vector_start);
#endif /* CONFIG_ARCH_LOWVECTORS */
#ifndef CONFIG_SUPPRESS_INTERRUPTS
/* And finally, enable interrupts */
up_irq_enable();
#endif
/* The next thing that we expect to happen is for logic running on CPU0
* to call up_cpu_start() which generate an SGI and a context switch to
* the configured NuttX IDLE task.
*/
for (; ; )
{
asm("WFI");
}
}