diff options
| author | Vignesh Raghavendra <vigneshr@ti.com> | 2020-07-07 13:43:33 +0530 |
|---|---|---|
| committer | Lokesh Vutla <lokeshvutla@ti.com> | 2020-07-13 20:58:34 +0530 |
| commit | 53b04c6c092ccf65734924a1e094ebebd633796a (patch) | |
| tree | 96e67256a38f77e63e5eb07194998f031d0c2ca1 /drivers/dma/ti/Makefile | |
| parent | 497c7598c4e713eb9ad88fd7963e57b21b8b35e1 (diff) | |
| download | u-boot-53b04c6c092ccf65734924a1e094ebebd633796a.tar.gz u-boot-53b04c6c092ccf65734924a1e094ebebd633796a.tar.xz u-boot-53b04c6c092ccf65734924a1e094ebebd633796a.zip | |
dma: ti: Add static PSIL endpoint information
Much of PSIL endpoint configuration for a given SoC can be known at
compile time, therefore pass them for platform specific data instead of
DT.
Add per SoC's specific PSIL endpoint data. This is to bring driver in
sync with upstream DT.
Signed-off-by: Vignesh Raghavendra <vigneshr@ti.com>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Diffstat (limited to 'drivers/dma/ti/Makefile')
| -rw-r--r-- | drivers/dma/ti/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/dma/ti/Makefile b/drivers/dma/ti/Makefile index de2f9ac91a..4ea9c626cc 100644 --- a/drivers/dma/ti/Makefile +++ b/drivers/dma/ti/Makefile @@ -1,3 +1,7 @@ # 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_AM6) += k3-psil-am654.o +k3-psil-data-$(CONFIG_SOC_K3_J721E) += k3-psil-j721e.o |
