From 9054ce0d556233e62f0d56421948dec55642ce79 Mon Sep 17 00:00:00 2001 From: "Bao D. Nguyen" Date: Fri, 15 Apr 2022 09:54:55 +0800 Subject: [PATCH] phy: phy-qcom-ufs: Update min phy voltage limit per spec Currently ufs phy driver is voting for .8V as min range for phy regulator but spec says it should be .88V Update phy min phy voltage limit per spec. Change-Id: Ib1ce7830ec91ef388030ffc3358b26ae4ae6cea2 Signed-off-by: Ram Prakash Gupta Signed-off-by: Ziqi Chen Signed-off-by: Bao D. Nguyen --- drivers/phy/qualcomm/phy-qcom-ufs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/phy/qualcomm/phy-qcom-ufs.c b/drivers/phy/qualcomm/phy-qcom-ufs.c index 884494a00936..cd081b9d202a 100644 --- a/drivers/phy/qualcomm/phy-qcom-ufs.c +++ b/drivers/phy/qualcomm/phy-qcom-ufs.c @@ -1,12 +1,13 @@ // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2013-2021, Linux Foundation. All rights reserved. + * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved. */ #include "phy-qcom-ufs-i.h" #define MAX_PROP_NAME 32 -#define VDDA_PHY_MIN_UV 800000 +#define VDDA_PHY_MIN_UV 880000 #define VDDA_PHY_MAX_UV 925000 #define VDDA_PLL_MIN_UV 1200000 #define VDDA_PLL_MAX_UV 1800000