mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-17 02:15:02 +00:00

Add Support for the Host Controller driver for UFS HC present on Qualcomm Snapdragon SoCs. It has been successfully tested on SDM845, SM8250, SM8550 ant SM8650 SoCs. Signed-off-by: Bhupesh Sharma <bhupesh.sharma@linaro.org> Tested-by: Julius Lehmann <lehmanju@devpi.de> Tested-by: Caleb Connolly <caleb.connolly@linaro.org> #rb3gen2 Link: https://lore.kernel.org/r/20240910-topic-ufs-qcom-controller-v1-4-54c0d2231b10@linaro.org Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
12 lines
422 B
Makefile
12 lines
422 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com
|
|
#
|
|
|
|
obj-$(CONFIG_UFS) += ufs.o ufs-uclass.o
|
|
obj-$(CONFIG_CADENCE_UFS) += cdns-platform.o
|
|
obj-$(CONFIG_QCOM_UFS) += ufs-qcom.o
|
|
obj-$(CONFIG_TI_J721E_UFS) += ti-j721e-ufs.o
|
|
obj-$(CONFIG_UFS_PCI) += ufs-pci.o
|
|
obj-$(CONFIG_UFS_RENESAS) += ufs-renesas.o
|
|
obj-$(CONFIG_UFS_AMD_VERSAL2) += ufs-amd-versal2.o ufshcd-dwc.o
|