* [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names
@ 2024-02-12 17:23 Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 2/5] arm64: dts: sm8450: " Krzysztof Kozlowski
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-12 17:23 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
Cc: Krzysztof Kozlowski
Correct the TLMM pin configuration and muxing node names used for DMIC2
and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
improves code readability and avoids any confusion when reading the DTS.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts | 2 +-
arch/arm64/boot/dts/qcom/sc8280xp.dtsi | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
index def3976bd5bb..8f2e9bed0679 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
+++ b/arch/arm64/boot/dts/qcom/sc8280xp-lenovo-thinkpad-x13s.dts
@@ -1202,7 +1202,7 @@ &usb_1_role_switch {
};
&vamacro {
- pinctrl-0 = <&dmic01_default>, <&dmic02_default>;
+ pinctrl-0 = <&dmic01_default>, <&dmic23_default>;
pinctrl-names = "default";
vdd-micb-supply = <&vreg_s10b>;
diff --git a/arch/arm64/boot/dts/qcom/sc8280xp.dtsi b/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
index febf28356ff8..38351e8ea8b3 100644
--- a/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc8280xp.dtsi
@@ -2978,7 +2978,7 @@ data-pins {
};
};
- dmic02_default: dmic02-default-state {
+ dmic23_default: dmic23-default-state {
clk-pins {
pins = "gpio8";
function = "dmic2_clk";
@@ -2994,7 +2994,7 @@ data-pins {
};
};
- dmic02_sleep: dmic02-sleep-state {
+ dmic23_sleep: dmic23-sleep-state {
clk-pins {
pins = "gpio8";
function = "dmic2_clk";
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/5] arm64: dts: sm8450: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names Krzysztof Kozlowski
@ 2024-02-12 17:23 ` Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 3/5] arm64: dts: sm8550: " Krzysztof Kozlowski
` (3 subsequent siblings)
4 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-12 17:23 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
Cc: Krzysztof Kozlowski
Correct the TLMM pin configuration and muxing node names used for DMIC2
and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
improves code readability and avoids any confusion when reading the DTS.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8450-hdk.dts | 2 +-
arch/arm64/boot/dts/qcom/sm8450.dtsi | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8450-hdk.dts b/arch/arm64/boot/dts/qcom/sm8450-hdk.dts
index a20d5d76af35..5a6e0b34934c 100644
--- a/arch/arm64/boot/dts/qcom/sm8450-hdk.dts
+++ b/arch/arm64/boot/dts/qcom/sm8450-hdk.dts
@@ -1147,7 +1147,7 @@ &usb_1_qmpphy_usb_ss_in {
};
&vamacro {
- pinctrl-0 = <&dmic01_default>, <&dmic02_default>;
+ pinctrl-0 = <&dmic01_default>, <&dmic23_default>;
pinctrl-names = "default";
vdd-micb-supply = <&vreg_s10b_1p8>;
qcom,dmic-sample-rate = <600000>;
diff --git a/arch/arm64/boot/dts/qcom/sm8450.dtsi b/arch/arm64/boot/dts/qcom/sm8450.dtsi
index 01e4dfc4babd..0a802c9a3c8f 100644
--- a/arch/arm64/boot/dts/qcom/sm8450.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8450.dtsi
@@ -3934,7 +3934,7 @@ data-pins {
};
};
- dmic02_default: dmic02-default-state {
+ dmic23_default: dmic23-default-state {
clk-pins {
pins = "gpio8";
function = "dmic2_clk";
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/5] arm64: dts: sm8550: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 2/5] arm64: dts: sm8450: " Krzysztof Kozlowski
@ 2024-02-12 17:23 ` Krzysztof Kozlowski
2024-02-12 17:27 ` neil.armstrong
2024-02-12 17:23 ` [PATCH 4/5] arm64: dts: sm8650: " Krzysztof Kozlowski
` (2 subsequent siblings)
4 siblings, 1 reply; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-12 17:23 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
Cc: Krzysztof Kozlowski
Correct the TLMM pin configuration and muxing node names used for DMIC2
and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
improves code readability and avoids any confusion when reading the DTS.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8550.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8550.dtsi b/arch/arm64/boot/dts/qcom/sm8550.dtsi
index ee1ba5a8c8fc..a6663eefd3a3 100644
--- a/arch/arm64/boot/dts/qcom/sm8550.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8550.dtsi
@@ -2507,7 +2507,7 @@ data-pins {
};
};
- dmic02_default: dmic02-default-state {
+ dmic23_default: dmic23-default-state {
clk-pins {
pins = "gpio8";
function = "dmic2_clk";
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 4/5] arm64: dts: sm8650: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 2/5] arm64: dts: sm8450: " Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 3/5] arm64: dts: sm8550: " Krzysztof Kozlowski
@ 2024-02-12 17:23 ` Krzysztof Kozlowski
2024-02-12 17:26 ` neil.armstrong
2024-02-12 17:23 ` [PATCH 5/5] arm64: dts: x1e80100: " Krzysztof Kozlowski
2024-02-14 17:57 ` (subset) [PATCH 1/5] arm64: dts: sc8280xp: " Bjorn Andersson
4 siblings, 1 reply; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-12 17:23 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
Cc: Krzysztof Kozlowski
Correct the TLMM pin configuration and muxing node names used for DMIC2
and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
improves code readability and avoids any confusion when reading the DTS.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/qcom/sm8650.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/sm8650.dtsi b/arch/arm64/boot/dts/qcom/sm8650.dtsi
index 2df77123a8c7..27b3917c1327 100644
--- a/arch/arm64/boot/dts/qcom/sm8650.dtsi
+++ b/arch/arm64/boot/dts/qcom/sm8650.dtsi
@@ -2919,7 +2919,7 @@ data-pins {
};
};
- dmic02_default: dmic02-default-state {
+ dmic23_default: dmic23-default-state {
clk-pins {
pins = "gpio8";
function = "dmic2_clk";
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 5/5] arm64: dts: x1e80100: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names Krzysztof Kozlowski
` (2 preceding siblings ...)
2024-02-12 17:23 ` [PATCH 4/5] arm64: dts: sm8650: " Krzysztof Kozlowski
@ 2024-02-12 17:23 ` Krzysztof Kozlowski
2024-02-14 17:57 ` (subset) [PATCH 1/5] arm64: dts: sc8280xp: " Bjorn Andersson
4 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2024-02-12 17:23 UTC (permalink / raw)
To: Bjorn Andersson, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, linux-arm-msm, devicetree, linux-kernel
Cc: Krzysztof Kozlowski
Correct the TLMM pin configuration and muxing node names used for DMIC2
and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
improves code readability and avoids any confusion when reading the DTS.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
arch/arm64/boot/dts/qcom/x1e80100.dtsi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm64/boot/dts/qcom/x1e80100.dtsi b/arch/arm64/boot/dts/qcom/x1e80100.dtsi
index c90c32f082d3..71cdc45db667 100644
--- a/arch/arm64/boot/dts/qcom/x1e80100.dtsi
+++ b/arch/arm64/boot/dts/qcom/x1e80100.dtsi
@@ -3483,7 +3483,7 @@ data-pins {
};
};
- dmic02_default: dmic02-default-state {
+ dmic23_default: dmic23-default-state {
clk-pins {
pins = "gpio8";
function = "dmic2_clk";
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 4/5] arm64: dts: sm8650: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 ` [PATCH 4/5] arm64: dts: sm8650: " Krzysztof Kozlowski
@ 2024-02-12 17:26 ` neil.armstrong
0 siblings, 0 replies; 8+ messages in thread
From: neil.armstrong @ 2024-02-12 17:26 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, devicetree,
linux-kernel
On 12/02/2024 18:23, Krzysztof Kozlowski wrote:
> Correct the TLMM pin configuration and muxing node names used for DMIC2
> and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
> improves code readability and avoids any confusion when reading the DTS.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> arch/arm64/boot/dts/qcom/sm8650.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/qcom/sm8650.dtsi b/arch/arm64/boot/dts/qcom/sm8650.dtsi
> index 2df77123a8c7..27b3917c1327 100644
> --- a/arch/arm64/boot/dts/qcom/sm8650.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8650.dtsi
> @@ -2919,7 +2919,7 @@ data-pins {
> };
> };
>
> - dmic02_default: dmic02-default-state {
> + dmic23_default: dmic23-default-state {
> clk-pins {
> pins = "gpio8";
> function = "dmic2_clk";
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 3/5] arm64: dts: sm8550: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 ` [PATCH 3/5] arm64: dts: sm8550: " Krzysztof Kozlowski
@ 2024-02-12 17:27 ` neil.armstrong
0 siblings, 0 replies; 8+ messages in thread
From: neil.armstrong @ 2024-02-12 17:27 UTC (permalink / raw)
To: Krzysztof Kozlowski, Bjorn Andersson, Konrad Dybcio, Rob Herring,
Krzysztof Kozlowski, Conor Dooley, linux-arm-msm, devicetree,
linux-kernel
On 12/02/2024 18:23, Krzysztof Kozlowski wrote:
> Correct the TLMM pin configuration and muxing node names used for DMIC2
> and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
> improves code readability and avoids any confusion when reading the DTS.
>
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> ---
> arch/arm64/boot/dts/qcom/sm8550.dtsi | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm64/boot/dts/qcom/sm8550.dtsi b/arch/arm64/boot/dts/qcom/sm8550.dtsi
> index ee1ba5a8c8fc..a6663eefd3a3 100644
> --- a/arch/arm64/boot/dts/qcom/sm8550.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8550.dtsi
> @@ -2507,7 +2507,7 @@ data-pins {
> };
> };
>
> - dmic02_default: dmic02-default-state {
> + dmic23_default: dmic23-default-state {
> clk-pins {
> pins = "gpio8";
> function = "dmic2_clk";
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: (subset) [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names
2024-02-12 17:23 [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names Krzysztof Kozlowski
` (3 preceding siblings ...)
2024-02-12 17:23 ` [PATCH 5/5] arm64: dts: x1e80100: " Krzysztof Kozlowski
@ 2024-02-14 17:57 ` Bjorn Andersson
4 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2024-02-14 17:57 UTC (permalink / raw)
To: Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
linux-arm-msm, devicetree, linux-kernel, Krzysztof Kozlowski
On Mon, 12 Feb 2024 18:23:31 +0100, Krzysztof Kozlowski wrote:
> Correct the TLMM pin configuration and muxing node names used for DMIC2
> and DMIC3 (dmic01 -> dmic23). This has no functional impact, but
> improves code readability and avoids any confusion when reading the DTS.
>
>
Applied, thanks!
[1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names
commit: 61474b18e762671a69b2df9665f3cec5c87a38af
[2/5] arm64: dts: sm8450: correct DMIC2 and DMIC3 pin config node names
commit: 0d3eb7ff1f3a994a5b3e49a9bd48f0c2f3c80ef5
[3/5] arm64: dts: sm8550: correct DMIC2 and DMIC3 pin config node names
commit: c6e5bf9278749eaa094dc944add747f10a15dceb
[4/5] arm64: dts: sm8650: correct DMIC2 and DMIC3 pin config node names
commit: 94c312767160f0d527da035b9080ff5675d17f4c
[5/5] arm64: dts: x1e80100: correct DMIC2 and DMIC3 pin config node names
commit: 8794916799d61f3593b87e946ed58338baebd097
Best regards,
--
Bjorn Andersson <andersson@kernel.org>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-02-14 17:57 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-12 17:23 [PATCH 1/5] arm64: dts: sc8280xp: correct DMIC2 and DMIC3 pin config node names Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 2/5] arm64: dts: sm8450: " Krzysztof Kozlowski
2024-02-12 17:23 ` [PATCH 3/5] arm64: dts: sm8550: " Krzysztof Kozlowski
2024-02-12 17:27 ` neil.armstrong
2024-02-12 17:23 ` [PATCH 4/5] arm64: dts: sm8650: " Krzysztof Kozlowski
2024-02-12 17:26 ` neil.armstrong
2024-02-12 17:23 ` [PATCH 5/5] arm64: dts: x1e80100: " Krzysztof Kozlowski
2024-02-14 17:57 ` (subset) [PATCH 1/5] arm64: dts: sc8280xp: " Bjorn Andersson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox