Hung-Te Lin has submitted this change. ( https://review.coreboot.org/c/coreboot/+/52534 )
Change subject: soc/mediatek: Move mt8192 ufs driver to common ......................................................................
soc/mediatek: Move mt8192 ufs driver to common
Signed-off-by: Yidi Lin yidi.lin@mediatek.com Change-Id: I28eb13edcded95a9a4c17bdf92da9f792883a613 Reviewed-on: https://review.coreboot.org/c/coreboot/+/52534 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Yu-Ping Wu yupingso@google.com --- R src/soc/mediatek/common/include/soc/ufs.h R src/soc/mediatek/common/ufs.c M src/soc/mediatek/mt8192/Makefile.inc 3 files changed, 4 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Yu-Ping Wu: Looks good to me, approved
diff --git a/src/soc/mediatek/mt8192/include/soc/ufs.h b/src/soc/mediatek/common/include/soc/ufs.h similarity index 69% rename from src/soc/mediatek/mt8192/include/soc/ufs.h rename to src/soc/mediatek/common/include/soc/ufs.h index 70a30a9..98bba9d 100644 --- a/src/soc/mediatek/mt8192/include/soc/ufs.h +++ b/src/soc/mediatek/common/include/soc/ufs.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
-#ifndef SOC_MEDIATEK_MT8192_UFS_H -#define SOC_MEDIATEK_MT8192_UFS_H +#ifndef SOC_MEDIATEK_COMMON_UFS_H +#define SOC_MEDIATEK_COMMON_UFS_H
#include <device/mmio.h> #include <soc/addressmap.h> @@ -14,4 +14,4 @@
#define UFS_REFCLK_CTRL (UFSHCI_BASE + REG_UFS_REFCLK_CTRL)
-#endif /* SOC_MEDIATEK_MT8192_UFS_H */ +#endif /* SOC_MEDIATEK_COMMON_UFS_H */ diff --git a/src/soc/mediatek/mt8192/ufs.c b/src/soc/mediatek/common/ufs.c similarity index 100% rename from src/soc/mediatek/mt8192/ufs.c rename to src/soc/mediatek/common/ufs.c diff --git a/src/soc/mediatek/mt8192/Makefile.inc b/src/soc/mediatek/mt8192/Makefile.inc index 0181bfc..9512346 100644 --- a/src/soc/mediatek/mt8192/Makefile.inc +++ b/src/soc/mediatek/mt8192/Makefile.inc @@ -61,7 +61,7 @@ ramstage-y += sspm.c ramstage-y += ../common/timer.c ramstage-y += ../common/uart.c -ramstage-y += ufs.c +ramstage-y += ../common/ufs.c ramstage-y += ../common/usb.c usb.c
MT8192_BLOB_DIR := 3rdparty/blobs/soc/mediatek/mt8192