mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +00:00
e8e7b3c106
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. See: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html for the original discussion. Signed-off-by: Robert Marko <robimarko@gmail.com>
33 lines
1.7 KiB
Diff
33 lines
1.7 KiB
Diff
From c3dc3d079d191c9149496b3c7fe1ece909386d93 Mon Sep 17 00:00:00 2001
|
|
From: Vignesh Viswanathan <quic_viswanat@quicinc.com>
|
|
Date: Tue, 5 Sep 2023 15:25:35 +0530
|
|
Subject: [PATCH] hwspinlock: qcom: Remove IPQ6018 SOC specific compatible
|
|
|
|
IPQ6018 has 32 tcsr_mutex hwlock registers with stride 0x1000.
|
|
The compatible string qcom,ipq6018-tcsr-mutex is mapped to
|
|
of_msm8226_tcsr_mutex which has 32 locks configured with stride of 0x80
|
|
and doesn't match the HW present in IPQ6018.
|
|
|
|
Remove IPQ6018 specific compatible string so that it fallsback to
|
|
of_tcsr_mutex data which maps to the correct configuration for IPQ6018.
|
|
|
|
Fixes: 5d4753f741d8 ("hwspinlock: qcom: add support for MMIO on older SoCs")
|
|
Signed-off-by: Vignesh Viswanathan <quic_viswanat@quicinc.com>
|
|
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
|
|
Link: https://lore.kernel.org/r/20230905095535.1263113-3-quic_viswanat@quicinc.com
|
|
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
|
|
---
|
|
drivers/hwspinlock/qcom_hwspinlock.c | 1 -
|
|
1 file changed, 1 deletion(-)
|
|
|
|
--- a/drivers/hwspinlock/qcom_hwspinlock.c
|
|
+++ b/drivers/hwspinlock/qcom_hwspinlock.c
|
|
@@ -115,7 +115,6 @@ static const struct of_device_id qcom_hw
|
|
{ .compatible = "qcom,sfpb-mutex", .data = &of_sfpb_mutex },
|
|
{ .compatible = "qcom,tcsr-mutex", .data = &of_tcsr_mutex },
|
|
{ .compatible = "qcom,apq8084-tcsr-mutex", .data = &of_msm8226_tcsr_mutex },
|
|
- { .compatible = "qcom,ipq6018-tcsr-mutex", .data = &of_msm8226_tcsr_mutex },
|
|
{ .compatible = "qcom,msm8226-tcsr-mutex", .data = &of_msm8226_tcsr_mutex },
|
|
{ .compatible = "qcom,msm8974-tcsr-mutex", .data = &of_msm8226_tcsr_mutex },
|
|
{ .compatible = "qcom,msm8994-tcsr-mutex", .data = &of_msm8226_tcsr_mutex },
|