mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
3c1d218a1d
LS2080A is the primary SoC, and LS2085A is a personality with AIOP and DPAA DDR. The RDB and QDS boards support both personality. By detecting the SVR at runtime, a single image per board can support both SoCs. It gives users flexibility to swtich SoC without the need to reprogram the board. Signed-off-by: York Sun <york.sun@nxp.com> CC: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com> Reviewed-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
30 lines
623 B
Makefile
30 lines
623 B
Makefile
#
|
|
# Copyright 2014-2015, Freescale Semiconductor
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += cpu.o
|
|
obj-y += lowlevel.o
|
|
obj-y += soc.o
|
|
obj-$(CONFIG_MP) += mp.o
|
|
obj-$(CONFIG_OF_LIBFDT) += fdt.o
|
|
obj-$(CONFIG_SPL) += spl.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_LS2080A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls2080a_serdes.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_LS1043A),)
|
|
obj-$(CONFIG_SYS_HAS_SERDES) += ls1043a_serdes.o
|
|
endif
|