mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
d926695cc5
Display Port (DP) has own dma driver that's why add this skeleton driver only for handling power domain setting and send configuration object to PMUFW to enable it. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Link: https://lore.kernel.org/r/fe8bc313bcd430b04e9fa6fb770d5799ef28b350.1645627920.git.michal.simek@xilinx.com
18 lines
585 B
Makefile
18 lines
585 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2006
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
obj-$(CONFIG_DMA) += dma-uclass.o
|
|
|
|
obj-$(CONFIG_FSLDMAFEC) += MCD_tasksInit.o MCD_dmaApi.o MCD_tasks.o
|
|
obj-$(CONFIG_APBH_DMA) += apbh_dma.o
|
|
obj-$(CONFIG_BCM6348_IUDMA) += bcm6348-iudma.o
|
|
obj-$(CONFIG_FSL_DMA) += fsl_dma.o
|
|
obj-$(CONFIG_SANDBOX_DMA) += sandbox-dma-test.o
|
|
obj-$(CONFIG_TI_KSNAV) += keystone_nav.o keystone_nav_cfg.o
|
|
obj-$(CONFIG_TI_EDMA3) += ti-edma3.o
|
|
obj-$(CONFIG_DMA_LPC32XX) += lpc32xx_dma.o
|
|
obj-$(CONFIG_XILINX_DPDMA) += xilinx_dpdma.o
|
|
|
|
obj-y += ti/
|