mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-17 01:47:00 +02:00
This patch introduce TF-A support for NXP's ls1043a platform. more details information of ls1043a chip and ls1043ardb board can be found at docs/plat/ls1043a.rst. Boot sequence on ls1043a is: bootrom loads bl1 firstly, then bl1 loads bl2, bl2 will load bl31, bl32 and bl33, bl31 will boot bl32(tee os) and bl33(u-boot or uefi), bl33 boot Linux kernel. Now TF-A on ls1043ardb platform has the following features in this patch: * Support boot from Nor flash. * TF-A can boot bl33 which runs in el2 of non-secure world. * TF-A boot OPTee OS. * Support PSCI Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com> Signed-off-by: Chenyin.Ha <Chenyin.Ha@nxp.com> Signed-off-by: Chenhui Zhao <chenhui.zhao@nxp.com> Signed-off-by: jiaheng.fan <jiaheng.fan@nxp.com> Signed-off-by: Wen He <wen.he_1@nxp.com>
57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <cci.h>
|
|
#include <debug.h>
|
|
#include <mmio.h>
|
|
#include "plat_ls.h"
|
|
|
|
static const int cci_map[] = {
|
|
PLAT_LS1043_CCI_CLUSTER0_SL_IFACE_IX
|
|
};
|
|
|
|
void bl1_platform_setup(void)
|
|
{
|
|
NOTICE(FIRMWARE_WELCOME_STR_LS1043);
|
|
|
|
ls_bl1_platform_setup();
|
|
|
|
/*
|
|
* Initialize system level generic timer for Layerscape Socs.
|
|
*/
|
|
ls_delay_timer_init();
|
|
|
|
/* TODO: remove these DDR code */
|
|
VERBOSE("CS0_BNDS = %x\n", mmio_read_32(0x1080000 + 0x000));
|
|
mmio_write_32(0x1080000 + 0x000, 0x7f000000);
|
|
VERBOSE("CS0_BNDS = %x\n", mmio_read_32(0x1080000 + 0x000));
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* Perform any BL1 specific platform actions.
|
|
******************************************************************************/
|
|
void bl1_early_platform_setup(void)
|
|
{
|
|
ls_bl1_early_platform_setup();
|
|
|
|
/*
|
|
* Initialize Interconnect for this cluster during cold boot.
|
|
* No need for locks as no other CPU is active.
|
|
*/
|
|
cci_init(PLAT_LS1043_CCI_BASE, cci_map, ARRAY_SIZE(cci_map));
|
|
|
|
/*
|
|
* Enable coherency in Interconnect for the primary CPU's cluster.
|
|
*/
|
|
cci_enable_snoop_dvm_reqs(MPIDR_AFFLVL1_VAL(read_mpidr()));
|
|
|
|
}
|
|
|
|
unsigned int bl1_plat_get_next_image_id(void)
|
|
{
|
|
return BL2_IMAGE_ID;
|
|
}
|