This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. For the original discussion see: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html Signed-off-by: Julius Bairaktaris <julius@bairaktaris.de> Link: https://github.com/openwrt/openwrt/pull/24031 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
33 lines
1.4 KiB
Diff
33 lines
1.4 KiB
Diff
From f6a4a55ae5d99f865e106916a9295548e381de47 Mon Sep 17 00:00:00 2001
|
|
From: George Moussalem <george.moussalem@outlook.com>
|
|
Date: Mon, 30 Jun 2025 16:35:00 +0400
|
|
Subject: clk: qcom: gcc-ipq5018: fix GE PHY reset
|
|
|
|
The MISC reset is supposed to trigger a resets across the MDC, DSP, and
|
|
RX & TX clocks of the IPQ5018 internal GE PHY. So let's set the bitmask
|
|
of the reset definition accordingly in the GCC as per the downstream
|
|
driver.
|
|
|
|
Link: https://git.codelinaro.org/clo/qsdk/oss/kernel/linux-ipq-5.4/-/commit/00743c3e82fa87cba4460e7a2ba32f473a9ce932
|
|
|
|
Reviewed-by: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
|
|
Signed-off-by: George Moussalem <george.moussalem@outlook.com>
|
|
Link: https://lore.kernel.org/r/20250630-ipq5018-ge-phy-v6-1-01be06378c15@outlook.com
|
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
|
---
|
|
drivers/clk/qcom/gcc-ipq5018.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
(limited to 'drivers/clk/qcom/gcc-ipq5018.c')
|
|
|
|
--- a/drivers/clk/qcom/gcc-ipq5018.c
|
|
+++ b/drivers/clk/qcom/gcc-ipq5018.c
|
|
@@ -3661,7 +3661,7 @@ static const struct qcom_reset_map gcc_i
|
|
[GCC_WCSS_AXI_S_ARES] = { 0x59008, 6 },
|
|
[GCC_WCSS_Q6_BCR] = { 0x18004, 0 },
|
|
[GCC_WCSSAON_RESET] = { 0x59010, 0},
|
|
- [GCC_GEPHY_MISC_ARES] = { 0x56004, 0 },
|
|
+ [GCC_GEPHY_MISC_ARES] = { 0x56004, .bitmask = GENMASK(3, 0) },
|
|
};
|
|
|
|
static const struct of_device_id gcc_ipq5018_match_table[] = {
|