diff options
author | Chanho Park <chanho61.park@samsung.com> | 2021-07-09 18:45:24 +0900 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-07-20 16:43:10 +0530 |
commit | d64519249e1d5520e8420936d662ec2cfb155dfc (patch) | |
tree | 7ac07507e691c0f16332416d92cb7765f04bd391 /drivers/phy/samsung/phy-samsung-ufs.c | |
parent | b95637e2da155cb3111d008e3c5d641b4dcf5000 (diff) | |
download | lwn-d64519249e1d5520e8420936d662ec2cfb155dfc.tar.gz lwn-d64519249e1d5520e8420936d662ec2cfb155dfc.zip |
phy: samsung-ufs: support exynosauto ufs phy driver
This patch adds to support phy-exynosautov9-ufs driver for ExynosAuto v9
series SoCs. The patch adds "samsung,exynosautov9-ufs-phy" compatible.
Unlike previous exynos ufs phy, the chip uses 0x50 offset as
PHY_TRSV_REG_CFG_OFFSET.
Signed-off-by: Chanho Park <chanho61.park@samsung.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Link: https://lore.kernel.org/r/20210709094524.110193-3-chanho61.park@samsung.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy/samsung/phy-samsung-ufs.c')
-rw-r--r-- | drivers/phy/samsung/phy-samsung-ufs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/phy/samsung/phy-samsung-ufs.c b/drivers/phy/samsung/phy-samsung-ufs.c index dd9ab1519d83..602ddef259eb 100644 --- a/drivers/phy/samsung/phy-samsung-ufs.c +++ b/drivers/phy/samsung/phy-samsung-ufs.c @@ -347,6 +347,9 @@ static const struct of_device_id samsung_ufs_phy_match[] = { { .compatible = "samsung,exynos7-ufs-phy", .data = &exynos7_ufs_phy, + }, { + .compatible = "samsung,exynosautov9-ufs-phy", + .data = &exynosautov9_ufs_phy, }, {}, }; |