From patchwork Thu Mar 19 05:38:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zhiqiang Hou X-Patchwork-Id: 243893 List-Id: U-Boot discussion From: Zhiqiang.Hou at nxp.com (Zhiqiang Hou) Date: Thu, 19 Mar 2020 13:38:34 +0800 Subject: [PATCH 00/12] fsl: layerscape: Initialize the GIC redistributor Message-ID: <20200319053846.2304-1-Zhiqiang.Hou@nxp.com> From: Hou Zhiqiang This patch set is to initialize the GIC redistributor tables and add the tables to kernel DT's reserved memeory node. Hou Zhiqiang (12): board: lx2160a: Add header file cpu_func.h arm64: fsl-layerscape: Assign addr to resv_ram if enabled RESV_RAM config arm64: layerscape: Move the GIC tables reserve memory function to soc.c board: lx2160a: Don't program the GIC RD tables if failed to reserve memory board: lx2160a: Make sure the RD tables address align to 64KB fsl-layerscape: Kconfig: Select RESV_RAM config if GIC_V3_ITS is enabled board: fsl: ls1088a: Initialize the GIC redistributor tables configs: ls1088a: Enable GIC_V3_ITS config board: fsl: ls1028a: Initialize the GIC redistributor tables configs: ls1028a: Enable GIC_V3_ITS config board: fsl: ls2080a: Initialize the GIC redistributor tables configs: ls208xa: Enable GIC_V3_ITS config Depends on: https://patchwork.ozlabs.org/project/uboot/list/?series=158486 arch/arm/cpu/armv8/fsl-layerscape/Kconfig | 4 +++ arch/arm/cpu/armv8/fsl-layerscape/cpu.c | 8 +++--- arch/arm/cpu/armv8/fsl-layerscape/soc.c | 18 +++++++++++++ .../arm/include/asm/arch-fsl-layerscape/soc.h | 4 +++ board/freescale/ls1028a/ls1028a.c | 14 ++++++++++ board/freescale/ls1088a/ls1088a.c | 15 +++++++++++ board/freescale/ls2080aqds/ls2080aqds.c | 14 ++++++++++ board/freescale/ls2080ardb/ls2080ardb.c | 14 ++++++++++ board/freescale/lx2160a/lx2160a.c | 27 +++++++------------ configs/ls1028aqds_tfa_SECURE_BOOT_defconfig | 1 + configs/ls1028aqds_tfa_defconfig | 1 + configs/ls1028ardb_tfa_SECURE_BOOT_defconfig | 1 + configs/ls1028ardb_tfa_defconfig | 1 + configs/ls1088aqds_defconfig | 1 + configs/ls1088aqds_qspi_SECURE_BOOT_defconfig | 1 + configs/ls1088aqds_qspi_defconfig | 1 + configs/ls1088aqds_sdcard_ifc_defconfig | 1 + configs/ls1088aqds_sdcard_qspi_defconfig | 1 + configs/ls1088aqds_tfa_defconfig | 1 + configs/ls1088ardb_qspi_SECURE_BOOT_defconfig | 1 + configs/ls1088ardb_qspi_defconfig | 1 + ...1088ardb_sdcard_qspi_SECURE_BOOT_defconfig | 1 + configs/ls1088ardb_sdcard_qspi_defconfig | 1 + configs/ls1088ardb_tfa_SECURE_BOOT_defconfig | 1 + configs/ls1088ardb_tfa_defconfig | 1 + configs/ls2080aqds_SECURE_BOOT_defconfig | 1 + configs/ls2080aqds_defconfig | 1 + configs/ls2080aqds_nand_defconfig | 1 + configs/ls2080aqds_qspi_defconfig | 1 + configs/ls2080aqds_sdcard_defconfig | 1 + configs/ls2080ardb_SECURE_BOOT_defconfig | 1 + configs/ls2080ardb_defconfig | 1 + configs/ls2080ardb_nand_defconfig | 1 + configs/ls2081ardb_defconfig | 1 + configs/ls2088aqds_tfa_defconfig | 1 + configs/ls2088ardb_qspi_SECURE_BOOT_defconfig | 1 + configs/ls2088ardb_qspi_defconfig | 1 + configs/ls2088ardb_tfa_SECURE_BOOT_defconfig | 1 + configs/ls2088ardb_tfa_defconfig | 1 + 39 files changed, 126 insertions(+), 22 deletions(-)