]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
ufs: cadence: Rename CONFIG_CADENCE_UFS to CONFIG_UFS_CADENCE
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Thu, 30 Oct 2025 22:35:42 +0000 (23:35 +0100)
committerNeil Armstrong <neil.armstrong@linaro.org>
Tue, 25 Nov 2025 15:38:22 +0000 (16:38 +0100)
Align the Kconfig option with the rest of the subsystem, use
CONFIG_UFS_<vendor> format for the Kconfig option.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Link: https://patch.msgid.link/20251030223626.20005-1-marek.vasut+renesas@mailbox.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
configs/am69_sk_a72_defconfig
configs/j7200_evm_a72_defconfig
configs/j721e_evm_a72_defconfig
configs/j721s2_evm_a72_defconfig
configs/j784s4_evm_a72_defconfig
drivers/ufs/Kconfig
drivers/ufs/Makefile

index bd8aaf7f201368ad57e1c032f2823678a1781c51..d91cc71aacc434c06ef1aa9ffc7cbd5af0ffb179 100644 (file)
@@ -7,7 +7,7 @@ CONFIG_TARGET_J784S4_A72_EVM=y
 
 CONFIG_CMD_UFS=n
 CONFIG_UFS=n
-CONFIG_CADENCE_UFS=n
+CONFIG_UFS_CADENCE=n
 CONFIG_TI_J721E_UFS=n
 
 CONFIG_DEFAULT_DEVICE_TREE="ti/k3-am69-sk"
index 826a2db0805a023c8a3e24953aad2e27385e1463..75d7d332d30b061889e838793b4b8e1b91bdaff1 100644 (file)
@@ -196,5 +196,5 @@ CONFIG_USB_GADGET_VENDOR_NUM=0x0451
 CONFIG_USB_GADGET_PRODUCT_NUM=0x6164
 CONFIG_SPL_DFU=y
 CONFIG_UFS=y
-CONFIG_CADENCE_UFS=y
+CONFIG_UFS_CADENCE=y
 CONFIG_TI_J721E_UFS=y
index 42e1dd21d0b4f105d1266bc994a0708c0e19e92b..01faa33c042cca4e0b052f6df7558f7332543c10 100644 (file)
@@ -201,7 +201,7 @@ CONFIG_USB_GADGET_VENDOR_NUM=0x0451
 CONFIG_USB_GADGET_PRODUCT_NUM=0x6163
 CONFIG_SPL_DFU=y
 CONFIG_UFS=y
-CONFIG_CADENCE_UFS=y
+CONFIG_UFS_CADENCE=y
 CONFIG_TI_J721E_UFS=y
 CONFIG_EFI_SET_TIME=y
 CONFIG_TI_COMMON_CMD_OPTIONS=y
index e373a9f05b7147b5faf93b56f07c19cfcdfaa00a..a231c12d803f2888edfc6f48c5044bdde3f68855 100644 (file)
@@ -188,5 +188,5 @@ CONFIG_USB_GADGET_VENDOR_NUM=0x0451
 CONFIG_USB_GADGET_PRODUCT_NUM=0x6168
 CONFIG_SPL_DFU=y
 CONFIG_UFS=y
-CONFIG_CADENCE_UFS=y
+CONFIG_UFS_CADENCE=y
 CONFIG_TI_J721E_UFS=y
index fc7acbae694f27db5470e1a409cae3b5b26c9c7a..6314c8d8a4392c6cc21ef4ee1520dcab9f0ea781 100644 (file)
@@ -173,7 +173,7 @@ CONFIG_USB_GADGET_DOWNLOAD=y
 CONFIG_SPL_DFU=y
 CONFIG_CMD_UFS=y
 CONFIG_UFS=y
-CONFIG_CADENCE_UFS=y
+CONFIG_UFS_CADENCE=y
 CONFIG_TI_J721E_UFS=y
 
 #include <configs/k3_efi_capsule.config>
index 445270e8da132db21ca0ef0c9e7aed96a8ee3418..e77b144a470111bd2e4bfe5c683353a125536499 100644 (file)
@@ -8,13 +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
@@ -45,6 +38,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
index 6b2f2ccc9fc87f591e301174beb7a2eb192c201b..656988ef9ad77ad3687fe6193f3bb74245afda6d 100644 (file)
@@ -4,11 +4,11 @@
 #
 
 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_RENESAS) += ufs-renesas.o