mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-27 23:35:10 +00:00
feat(intel): cold/warm reset and smp support for Agilex5 SoC FPGA
This patch is used to implement 1. Cold/Warm reset and SMP support for Agilex5 SoC FPGA 2. Updated product name -> Agilex5 Signed-off-by: Jit Loon Lim <jit.loon.lim@intel.com> Change-Id: I2c0645bcbf3a5907a4c79f35cffe674920b48f9d
This commit is contained in:
parent
9b8d813cc9
commit
79626f460f
3 changed files with 78 additions and 10 deletions
|
@ -1,12 +1,14 @@
|
|||
/*
|
||||
* Copyright (c) 2019-2023, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2019-2023, Intel Corporation. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <arch_helpers.h>
|
||||
#include <common/debug.h>
|
||||
#ifndef SOCFPGA_GIC_V3
|
||||
|
||||
#ifndef GICV3_SUPPORT_GIC600
|
||||
#include <drivers/arm/gicv2.h>
|
||||
#else
|
||||
#include <drivers/arm/gicv3.h>
|
||||
|
@ -14,13 +16,16 @@
|
|||
#include <lib/mmio.h>
|
||||
#include <lib/psci/psci.h>
|
||||
#include <plat/common/platform.h>
|
||||
|
||||
#include "socfpga_mailbox.h"
|
||||
#include "socfpga_plat_def.h"
|
||||
#include "socfpga_reset_manager.h"
|
||||
#include "socfpga_sip_svc.h"
|
||||
#include "socfpga_system_manager.h"
|
||||
|
||||
#if PLATFORM_MODEL == PLAT_SOCFPGA_AGILEX5
|
||||
void socfpga_wakeup_secondary_cpu(unsigned int cpu_id);
|
||||
extern void plat_secondary_cold_boot_setup(void);
|
||||
#endif
|
||||
|
||||
/*******************************************************************************
|
||||
* plat handler called when a CPU is about to enter standby.
|
||||
|
@ -43,13 +48,18 @@ void socfpga_cpu_standby(plat_local_state_t cpu_state)
|
|||
int socfpga_pwr_domain_on(u_register_t mpidr)
|
||||
{
|
||||
unsigned int cpu_id = plat_core_pos_by_mpidr(mpidr);
|
||||
#if PLATFORM_MODEL == PLAT_SOCFPGA_AGILEX5
|
||||
/* TODO: Add in CPU FUSE from SDM */
|
||||
#else
|
||||
uint32_t psci_boot = 0x00;
|
||||
|
||||
VERBOSE("%s: mpidr: 0x%lx\n", __func__, mpidr);
|
||||
#endif
|
||||
|
||||
if (cpu_id == -1)
|
||||
return PSCI_E_INTERN_FAIL;
|
||||
|
||||
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
|
||||
if (cpu_id == 0x00) {
|
||||
psci_boot = mmio_read_32(SOCFPGA_SYSMGR(BOOT_SCRATCH_COLD_8));
|
||||
psci_boot |= 0x20000; /* bit 17 */
|
||||
|
@ -57,9 +67,16 @@ int socfpga_pwr_domain_on(u_register_t mpidr)
|
|||
}
|
||||
|
||||
mmio_write_64(PLAT_CPUID_RELEASE, cpu_id);
|
||||
#endif
|
||||
|
||||
/* release core reset */
|
||||
#if PLATFORM_MODEL == PLAT_SOCFPGA_AGILEX5
|
||||
bl31_plat_set_secondary_cpu_entrypoint(cpu_id);
|
||||
#else
|
||||
mmio_setbits_32(SOCFPGA_RSTMGR(MPUMODRST), 1 << cpu_id);
|
||||
mmio_write_64(PLAT_CPUID_RELEASE, cpu_id);
|
||||
#endif
|
||||
|
||||
return PSCI_E_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -74,7 +91,12 @@ void socfpga_pwr_domain_off(const psci_power_state_t *target_state)
|
|||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
|
||||
/* Prevent interrupts from spuriously waking up this cpu */
|
||||
#ifdef GICV3_SUPPORT_GIC600
|
||||
gicv3_cpuif_disable(plat_my_core_pos());
|
||||
#else
|
||||
gicv2_cpuif_disable();
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
|
@ -83,15 +105,18 @@ void socfpga_pwr_domain_off(const psci_power_state_t *target_state)
|
|||
******************************************************************************/
|
||||
void socfpga_pwr_domain_suspend(const psci_power_state_t *target_state)
|
||||
{
|
||||
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
|
||||
unsigned int cpu_id = plat_my_core_pos();
|
||||
#endif
|
||||
|
||||
for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++)
|
||||
VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
|
||||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
|
||||
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
|
||||
/* assert core reset */
|
||||
mmio_setbits_32(SOCFPGA_RSTMGR(MPUMODRST), 1 << cpu_id);
|
||||
|
||||
#endif
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
|
@ -105,12 +130,18 @@ void socfpga_pwr_domain_on_finish(const psci_power_state_t *target_state)
|
|||
VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
|
||||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
|
||||
/* Enable the gic cpu interface */
|
||||
#ifdef GICV3_SUPPORT_GIC600
|
||||
gicv3_rdistif_init(plat_my_core_pos());
|
||||
gicv3_cpuif_enable(plat_my_core_pos());
|
||||
#else
|
||||
/* Program the gic per-cpu distributor or re-distributor interface */
|
||||
gicv2_pcpu_distif_init();
|
||||
gicv2_set_pe_target_mask(plat_my_core_pos());
|
||||
|
||||
/* Enable the gic cpu interface */
|
||||
gicv2_cpuif_enable();
|
||||
#endif
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
|
@ -122,14 +153,18 @@ void socfpga_pwr_domain_on_finish(const psci_power_state_t *target_state)
|
|||
******************************************************************************/
|
||||
void socfpga_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
|
||||
{
|
||||
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
|
||||
unsigned int cpu_id = plat_my_core_pos();
|
||||
#endif
|
||||
|
||||
for (size_t i = 0; i <= PLAT_MAX_PWR_LVL; i++)
|
||||
VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
|
||||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
|
||||
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
|
||||
/* release core reset */
|
||||
mmio_clrbits_32(SOCFPGA_RSTMGR(MPUMODRST), 1 << cpu_id);
|
||||
#endif
|
||||
}
|
||||
|
||||
/*******************************************************************************
|
||||
|
@ -163,11 +198,20 @@ static void __dead2 socfpga_system_reset(void)
|
|||
static int socfpga_system_reset2(int is_vendor, int reset_type,
|
||||
u_register_t cookie)
|
||||
{
|
||||
#if PLATFORM_MODEL == PLAT_SOCFPGA_AGILEX5
|
||||
mailbox_reset_warm(reset_type);
|
||||
#else
|
||||
if (cold_reset_for_ecc_dbe()) {
|
||||
mailbox_reset_cold();
|
||||
}
|
||||
#endif
|
||||
|
||||
/* disable cpuif */
|
||||
#ifdef GICV3_SUPPORT_GIC600
|
||||
gicv3_cpuif_disable(plat_my_core_pos());
|
||||
#else
|
||||
gicv2_cpuif_disable();
|
||||
#endif
|
||||
|
||||
/* Store magic number */
|
||||
mmio_write_32(L2_RESET_DONE_REG, L2_RESET_DONE_STATUS);
|
||||
|
@ -178,8 +222,10 @@ static int socfpga_system_reset2(int is_vendor, int reset_type,
|
|||
/* Enable handshakes */
|
||||
mmio_setbits_32(SOCFPGA_RSTMGR(HDSKEN), RSTMGR_HDSKEN_SET);
|
||||
|
||||
#if PLATFORM_MODEL != PLAT_SOCFPGA_AGILEX5
|
||||
/* Reset L2 module */
|
||||
mmio_setbits_32(SOCFPGA_RSTMGR(COLDMODRST), 0x100);
|
||||
#endif
|
||||
|
||||
while (1)
|
||||
wfi();
|
||||
|
|
|
@ -9,10 +9,13 @@
|
|||
#include <assert.h>
|
||||
#include <common/debug.h>
|
||||
#include <common/tbbr/tbbr_img_def.h>
|
||||
#include <drivers/cadence/cdns_nand.h>
|
||||
#include <drivers/cadence/cdns_sdmmc.h>
|
||||
#include <drivers/io/io_block.h>
|
||||
#include <drivers/io/io_driver.h>
|
||||
#include <drivers/io/io_fip.h>
|
||||
#include <drivers/io/io_memmap.h>
|
||||
#include <drivers/io/io_mtd.h>
|
||||
#include <drivers/io/io_storage.h>
|
||||
#include <drivers/mmc.h>
|
||||
#include <drivers/partition/partition.h>
|
||||
|
@ -21,17 +24,21 @@
|
|||
|
||||
#include "socfpga_private.h"
|
||||
|
||||
|
||||
#define PLAT_FIP_BASE (0)
|
||||
#define PLAT_FIP_MAX_SIZE (0x1000000)
|
||||
#define PLAT_MMC_DATA_BASE (0xffe3c000)
|
||||
#define PLAT_MMC_DATA_SIZE (0x2000)
|
||||
#define PLAT_QSPI_DATA_BASE (0x3C00000)
|
||||
#define PLAT_QSPI_DATA_SIZE (0x1000000)
|
||||
|
||||
#define PLAT_NAND_DATA_BASE (0x0200000)
|
||||
#define PLAT_NAND_DATA_SIZE (0x1000000)
|
||||
|
||||
static const io_dev_connector_t *fip_dev_con;
|
||||
static const io_dev_connector_t *boot_dev_con;
|
||||
|
||||
static io_mtd_dev_spec_t nand_dev_spec;
|
||||
|
||||
static uintptr_t fip_dev_handle;
|
||||
static uintptr_t boot_dev_handle;
|
||||
|
||||
|
@ -136,7 +143,7 @@ void socfpga_io_setup(int boot_source)
|
|||
case BOOT_SOURCE_SDMMC:
|
||||
register_io_dev = ®ister_io_dev_block;
|
||||
boot_dev_spec.buffer.offset = PLAT_MMC_DATA_BASE;
|
||||
boot_dev_spec.buffer.length = MMC_BLOCK_SIZE;
|
||||
boot_dev_spec.buffer.length = SOCFPGA_MMC_BLOCK_SIZE;
|
||||
boot_dev_spec.ops.read = mmc_read_blocks;
|
||||
boot_dev_spec.ops.write = mmc_write_blocks;
|
||||
boot_dev_spec.block_size = MMC_BLOCK_SIZE;
|
||||
|
@ -144,9 +151,19 @@ void socfpga_io_setup(int boot_source)
|
|||
|
||||
case BOOT_SOURCE_QSPI:
|
||||
register_io_dev = ®ister_io_dev_memmap;
|
||||
fip_spec.offset = fip_spec.offset + PLAT_QSPI_DATA_BASE;
|
||||
fip_spec.offset = PLAT_QSPI_DATA_BASE;
|
||||
break;
|
||||
|
||||
#if PLATFORM_MODEL == PLAT_SOCFPGA_AGILEX5
|
||||
case BOOT_SOURCE_NAND:
|
||||
register_io_dev = ®ister_io_dev_mtd;
|
||||
nand_dev_spec.ops.init = cdns_nand_init_mtd;
|
||||
nand_dev_spec.ops.read = cdns_nand_read;
|
||||
nand_dev_spec.ops.write = NULL;
|
||||
fip_spec.offset = PLAT_NAND_DATA_BASE;
|
||||
break;
|
||||
#endif
|
||||
|
||||
default:
|
||||
ERROR("Unsupported boot source\n");
|
||||
panic();
|
||||
|
@ -159,8 +176,13 @@ void socfpga_io_setup(int boot_source)
|
|||
result = register_io_dev_fip(&fip_dev_con);
|
||||
assert(result == 0);
|
||||
|
||||
if (boot_source == BOOT_SOURCE_NAND) {
|
||||
result = io_dev_open(boot_dev_con, (uintptr_t)&nand_dev_spec,
|
||||
&boot_dev_handle);
|
||||
} else {
|
||||
result = io_dev_open(boot_dev_con, (uintptr_t)&boot_dev_spec,
|
||||
&boot_dev_handle);
|
||||
}
|
||||
assert(result == 0);
|
||||
|
||||
result = io_dev_open(fip_dev_con, (uintptr_t)NULL, &fip_dev_handle);
|
||||
|
|
|
@ -33,8 +33,8 @@ int plat_core_pos_by_mpidr(u_register_t mpidr)
|
|||
if (mpidr & ~(MPIDR_CLUSTER_MASK | MPIDR_CPU_MASK))
|
||||
return -1;
|
||||
|
||||
cluster_id = (mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK;
|
||||
cpu_id = (mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK;
|
||||
cluster_id = (mpidr >> PLAT_CLUSTER_ID_MPIDR_AFF_SHIFT) & MPIDR_AFFLVL_MASK;
|
||||
cpu_id = (mpidr >> PLAT_CPU_ID_MPIDR_AFF_SHIFT) & MPIDR_AFFLVL_MASK;
|
||||
|
||||
if (cluster_id >= PLATFORM_CLUSTER_COUNT)
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Reference in a new issue