projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e965ab8
)
phy: qcom-qmp-combo: fix sc8180x reset
author
Johan Hovold
<johan+linaro@kernel.org>
Mon, 14 Nov 2022 08:13:43 +0000
(09:13 +0100)
committer
Vinod Koul
<vkoul@kernel.org>
Thu, 24 Nov 2022 15:32:59 +0000
(21:02 +0530)
The SC8180X has two resets but the DP configuration erroneously
described only one.
In case the DP part of the PHY is initialised before the USB part (e.g.
depending on probe order), then only the first reset would be asserted.
Fixes: 1633802cd4ac ("phy: qcom: qmp: Add SC8180x USB/DP combo")
Cc: stable@vger.kernel.org # 5.15
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Link:
https://lore.kernel.org/r/20221114081346.5116-4-johan+linaro@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/phy/qualcomm/phy-qcom-qmp-combo.c
patch
|
blob
|
history
diff --git
a/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
b/drivers/phy/qualcomm/phy-qcom-qmp-combo.c
index cc53e2f991218c33429e56284cde79a1694fb203..40c25a0ead239830f51ed046f13bdebbcec4b754 100644
(file)
--- a/
drivers/phy/qualcomm/phy-qcom-qmp-combo.c
+++ b/
drivers/phy/qualcomm/phy-qcom-qmp-combo.c
@@
-1177,8
+1177,8
@@
static const struct qmp_phy_cfg sc8180x_dpphy_cfg = {
.clk_list = qmp_v3_phy_clk_l,
.num_clks = ARRAY_SIZE(qmp_v3_phy_clk_l),
- .reset_list =
sc7180
_usb3phy_reset_l,
- .num_resets = ARRAY_SIZE(
sc7180
_usb3phy_reset_l),
+ .reset_list =
msm8996
_usb3phy_reset_l,
+ .num_resets = ARRAY_SIZE(
msm8996
_usb3phy_reset_l),
.vreg_list = qmp_phy_vreg_l,
.num_vregs = ARRAY_SIZE(qmp_phy_vreg_l),
.regs = qmp_v3_usb3phy_regs_layout,