mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-03 18:10:13 +00:00
70b450b56c
In preparation for enabling ethernet for the am62ax family of SoCs, introduce the initial DMA channel settings for the am62ax Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com> [bb@ti.com: expanded on commit message] Signed-off-by: Bryan Brattlof <bb@ti.com> Signed-off-by: Nishanth Menon <nm@ti.com>
11 lines
483 B
Makefile
11 lines
483 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
obj-$(CONFIG_TI_K3_NAVSS_UDMA) += k3-udma.o
|
|
obj-$(CONFIG_TI_K3_PSIL) += k3-psil-data.o
|
|
k3-psil-data-y += k3-psil.o
|
|
k3-psil-data-$(CONFIG_SOC_K3_AM654) += k3-psil-am654.o
|
|
k3-psil-data-$(CONFIG_SOC_K3_J721E) += k3-psil-j721e.o
|
|
k3-psil-data-$(CONFIG_SOC_K3_J721S2) += k3-psil-j721s2.o
|
|
k3-psil-data-$(CONFIG_SOC_K3_AM642) += k3-psil-am64.o
|
|
k3-psil-data-$(CONFIG_SOC_K3_AM625) += k3-psil-am62.o
|
|
k3-psil-data-$(CONFIG_SOC_K3_AM62A7) += k3-psil-am62a.o
|