summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-12-02 13:46:06 -0600
committerTom Rini <[email protected]>2025-12-02 13:46:06 -0600
commitdca19206acf2af2d339087bb62aa0b8ee1b0e326 (patch)
tree5dcf730af513c78fc435c4925660945a7a204e59 /drivers
parent94bda4068cb4a05f5975e6976a1d79fa1a9ca51b (diff)
parentb71967457883eddc022dc376251ad3c5c5d9c163 (diff)
Merge tag 'u-boot-ufs-20251202' of https://source.denx.de/u-boot/custodians/u-boot-ufs into next
- Second batch of UFS config renames for Cadence/Qcom/Rockchip/TI
Diffstat (limited to 'drivers')
-rw-r--r--drivers/ufs/Kconfig58
-rw-r--r--drivers/ufs/Makefile8
2 files changed, 33 insertions, 33 deletions
diff --git a/drivers/ufs/Kconfig b/drivers/ufs/Kconfig
index 445270e8da1..6c75bb2a079 100644
--- a/drivers/ufs/Kconfig
+++ b/drivers/ufs/Kconfig
@@ -8,35 +8,6 @@ config UFS
This selects support for Universal Flash Subsystem (UFS).
Say Y here if you want UFS Support.
-config CADENCE_UFS
- bool "Cadence platform driver for UFS"
- depends on UFS
- help
- This selects the platform driver for the Cadence UFS host
- controller present on present TI's J721e devices.
-
-config QCOM_UFS
- bool "Qualcomm Host Controller driver for UFS"
- depends on UFS && ARCH_SNAPDRAGON
- help
- This selects the platform driver for the UFS host
- controller present on Qualcomm Snapdragon SoCs.
-
-config ROCKCHIP_UFS
- bool "Rockchip specific hooks to UFS controller platform driver"
- depends on UFS
- help
- This selects the Rockchip specific additions to UFSHCD platform driver.
-
- Select this if you have UFS controller on Rockchip chipset.
- If unsure, say N.
-
-config TI_J721E_UFS
- bool "Glue Layer driver for UFS on TI J721E devices"
- help
- This selects the glue layer driver for Cadence controller
- present on TI's J721E devices.
-
config UFS_AMD_VERSAL2
bool "AMD Versal Gen 2 UFS controller platform driver"
depends on UFS && ZYNQMP_FIRMWARE
@@ -45,6 +16,13 @@ config UFS_AMD_VERSAL2
UFS host on AMD needs some vendor specific configuration before accessing
the hardware.
+config UFS_CADENCE
+ bool "Cadence platform driver for UFS"
+ depends on UFS
+ help
+ This selects the platform driver for the Cadence UFS host
+ controller present on present TI's J721e devices.
+
config UFS_MEDIATEK
tristate "MediaTek UFS Host Controller Driver"
depends on UFS && ARCH_MEDIATEK
@@ -70,6 +48,13 @@ config UFS_PCI
If unsure, say N.
+config UFS_QCOM
+ bool "Qualcomm Host Controller driver for UFS"
+ depends on UFS && ARCH_SNAPDRAGON
+ help
+ This selects the platform driver for the UFS host
+ controller present on Qualcomm Snapdragon SoCs.
+
config UFS_RENESAS
bool "Renesas R-Car S4 UFS Controller support"
depends on UFS
@@ -88,4 +73,19 @@ config UFS_RENESAS_GEN5
platform driver. UFS host on Renesas needs some vendor
specific configuration before accessing the hardware.
+config UFS_ROCKCHIP
+ bool "Rockchip specific hooks to UFS controller platform driver"
+ depends on UFS
+ help
+ This selects the Rockchip specific additions to UFSHCD platform driver.
+
+ Select this if you have UFS controller on Rockchip chipset.
+ If unsure, say N.
+
+config UFS_TI_J721E
+ bool "Glue Layer driver for UFS on TI J721E devices"
+ help
+ This selects the glue layer driver for Cadence controller
+ present on TI's J721E devices.
+
endmenu
diff --git a/drivers/ufs/Makefile b/drivers/ufs/Makefile
index 6b2f2ccc9fc..e7f3c1d30c4 100644
--- a/drivers/ufs/Makefile
+++ b/drivers/ufs/Makefile
@@ -4,12 +4,12 @@
#
obj-$(CONFIG_UFS) += ufs-uclass.o
-obj-$(CONFIG_CADENCE_UFS) += cdns-platform.o
-obj-$(CONFIG_QCOM_UFS) += ufs-qcom.o
-obj-$(CONFIG_ROCKCHIP_UFS) += ufs-rockchip.o
-obj-$(CONFIG_TI_J721E_UFS) += ti-j721e-ufs.o
obj-$(CONFIG_UFS_AMD_VERSAL2) += ufs-amd-versal2.o ufshcd-dwc.o
+obj-$(CONFIG_UFS_CADENCE) += cdns-platform.o
obj-$(CONFIG_UFS_MEDIATEK) += ufs-mediatek.o
obj-$(CONFIG_UFS_PCI) += ufs-pci.o
+obj-$(CONFIG_UFS_QCOM) += ufs-qcom.o
obj-$(CONFIG_UFS_RENESAS) += ufs-renesas.o
obj-$(CONFIG_UFS_RENESAS_GEN5) += ufs-renesas-rcar-gen5.o
+obj-$(CONFIG_UFS_ROCKCHIP) += ufs-rockchip.o
+obj-$(CONFIG_UFS_TI_J721E) += ti-j721e-ufs.o