ufs: ti: Rename CONFIG_TI_J721E_UFS to CONFIG_UFS_TI_J721E

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-4-marek.vasut+renesas@mailbox.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
This commit is contained in:
Marek Vasut
2025-10-30 23:35:45 +01:00
committed by Neil Armstrong
parent ddeb78b022
commit b719674578
7 changed files with 12 additions and 12 deletions

View File

@@ -8,7 +8,7 @@ CONFIG_TARGET_J784S4_A72_EVM=y
CONFIG_CMD_UFS=n
CONFIG_UFS=n
CONFIG_UFS_CADENCE=n
CONFIG_TI_J721E_UFS=n
CONFIG_UFS_TI_J721E=n
CONFIG_DEFAULT_DEVICE_TREE="ti/k3-am69-sk"
CONFIG_OF_LIST="ti/k3-am69-sk"

View File

@@ -197,4 +197,4 @@ CONFIG_USB_GADGET_PRODUCT_NUM=0x6164
CONFIG_SPL_DFU=y
CONFIG_UFS=y
CONFIG_UFS_CADENCE=y
CONFIG_TI_J721E_UFS=y
CONFIG_UFS_TI_J721E=y

View File

@@ -202,7 +202,7 @@ CONFIG_USB_GADGET_PRODUCT_NUM=0x6163
CONFIG_SPL_DFU=y
CONFIG_UFS=y
CONFIG_UFS_CADENCE=y
CONFIG_TI_J721E_UFS=y
CONFIG_UFS_TI_J721E=y
CONFIG_EFI_SET_TIME=y
CONFIG_TI_COMMON_CMD_OPTIONS=y

View File

@@ -189,4 +189,4 @@ CONFIG_USB_GADGET_PRODUCT_NUM=0x6168
CONFIG_SPL_DFU=y
CONFIG_UFS=y
CONFIG_UFS_CADENCE=y
CONFIG_TI_J721E_UFS=y
CONFIG_UFS_TI_J721E=y

View File

@@ -174,6 +174,6 @@ CONFIG_SPL_DFU=y
CONFIG_CMD_UFS=y
CONFIG_UFS=y
CONFIG_UFS_CADENCE=y
CONFIG_TI_J721E_UFS=y
CONFIG_UFS_TI_J721E=y
#include <configs/k3_efi_capsule.config>

View File

@@ -8,12 +8,6 @@ config UFS
This selects support for Universal Flash Subsystem (UFS).
Say Y here if you want UFS Support.
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
@@ -88,4 +82,10 @@ config UFS_ROCKCHIP
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

View File

@@ -4,7 +4,6 @@
#
obj-$(CONFIG_UFS) += ufs-uclass.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
@@ -13,3 +12,4 @@ 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