forked from OERV-BSP/u-boot
Introduce the basic functions and definitions needed to properly initialize TI J722S family of SoCs. Co-developed-by: Vaishnav Achath <vaishnav.a@ti.com> Signed-off-by: Vaishnav Achath <vaishnav.a@ti.com> Signed-off-by: Jayesh Choudhary <j-choudhary@ti.com>
19 lines
623 B
Makefile
19 lines
623 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2017-2018 Texas Instruments Incorporated - https://www.ti.com/
|
|
# Lokesh Vutla <lokeshvutla@ti.com>
|
|
|
|
obj-$(CONFIG_ARM64) += arm64/
|
|
obj-$(CONFIG_CPU_V7R) += r5/
|
|
obj-$(CONFIG_OF_LIBFDT) += common_fdt.o
|
|
obj-y += common.o security.o
|
|
obj-$(CONFIG_SOC_K3_AM62A7) += am62ax/
|
|
obj-$(CONFIG_SOC_K3_AM62P5) += am62px/
|
|
obj-$(CONFIG_SOC_K3_AM625) += am62x/
|
|
obj-$(CONFIG_SOC_K3_AM642) += am64x/
|
|
obj-$(CONFIG_SOC_K3_AM654) += am65x/
|
|
obj-$(CONFIG_SOC_K3_J721E) += j721e/
|
|
obj-$(CONFIG_SOC_K3_J721S2) += j721s2/
|
|
obj-$(CONFIG_SOC_K3_J722S) += j722s/
|
|
obj-$(CONFIG_SOC_K3_J784S4) += j784s4/
|