mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
4909b89ec7
LX2160A Soc is based on Layerscape Chassis Generation 3.2 architecture with features: 16 ARM v8 Cortex-A72 cores in 8 cluster, CCN508, SEC, 2 64-bit DDR4 memory controller, RGMII, 8 I2C controllers, 3 serdes modules, USB 3.0, SATA, 4 PL011 SBSA UARTs, 4 TZASC instances, etc. SoC personalites: LX2120A is SoC with Twelve 64-bit ARM v8 Cortex-A72 CPUs LX2080A is SoC with Eight 64-bit ARM v8 Cortex-A72 CPUs Signed-off-by: Bao Xiaowei <xiaowei.bao@nxp.com> Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Signed-off-by: Meenakshi Aggarwal <meenakshi.aggarwal@nxp.com> Signed-off-by: Vabhav Sharma <vabhav.sharma@nxp.com> Signed-off-by: Sriram Dash <sriram.dash@nxp.com> Signed-off-by: Priyanka Jain <priyanka.jain@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
# Copyright 2016-2018 NXP
|
|
# Copyright 2014-2015, Freescale Semiconductor
|
|
|
|
obj-y += cpu.o
|
|
obj-y += lowlevel.o
|
|
obj-y += soc.o
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
endif
|
|
obj-$(CONFIG_SPL) += spl.o
|
|
obj-$(CONFIG_$(SPL_)FSL_LS_PPA) += ppa.o
|
|
|
|
ifneq ($(CONFIG_FSL_LSCH3),)
|
|
obj-y += fsl_lsch3_speed.o
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += fsl_lsch3_serdes.o
|
|
else
|
|
ifneq ($(CONFIG_FSL_LSCH2),)
|
|
obj-y += fsl_lsch2_speed.o
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += fsl_lsch2_serdes.o
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ARCH_LX2160A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += lx2160a_serdes.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ARCH_LS2080A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls2080a_serdes.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ARCH_LS1043A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls1043a_serdes.o
|
|
obj-$(CONFIG_ARMV8_PSCI) += ls1043a_psci.o
|
|
obj-y += icid.o ls1043_ids.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ARCH_LS1012A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls1012a_serdes.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ARCH_LS1046A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls1046a_serdes.o
|
|
obj-y += icid.o ls1046_ids.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_ARCH_LS1088A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls1088a_serdes.o
|
|
endif
|