All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity
@ 2022-10-27  7:46 Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Dmitry Torokhov
                   ` (6 more replies)
  0 siblings, 7 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-27  7:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

When resetting the block, the reset line is being driven low and then
high, which means that the line in DTS should be annotated as "active
low". It will become important when wcd9335 driver will be converted
to gpiod API that respects declared line polarities.

Fixes: f3eb39a55a1f ("arm64: dts: db820c: Add sound card support")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 arch/arm64/boot/dts/qcom/msm8996.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8996.dtsi b/arch/arm64/boot/dts/qcom/msm8996.dtsi
index 5ff8de3e3de7..d5271718d03c 100644
--- a/arch/arm64/boot/dts/qcom/msm8996.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8996.dtsi
@@ -3354,7 +3354,7 @@ wcd9335: codec@1,0 {
 					interrupt-names = "intr1", "intr2";
 					interrupt-controller;
 					#interrupt-cells = <1>;
-					reset-gpios = <&tlmm 64 GPIO_ACTIVE_HIGH>;
+					reset-gpios = <&tlmm 64 GPIO_ACTIVE_LOW>;
 
 					slim-ifc-dev = <&tasha_ifd>;
 
-- 
2.38.0.135.g90850a2211-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
@ 2022-10-27  7:46 ` Dmitry Torokhov
  2022-10-27 13:44   ` Krzysztof Kozlowski
  2022-10-27  7:46 ` [PATCH 3/6] arm64: dts: qcom: sm8250-mtp: fix reset line polarity Dmitry Torokhov
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-27  7:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

When resetting the block, the reset line is being driven low and then
high, which means that the line in DTS should be annotated as "active
low".

Fixes: 1877c9fda1b7 ("ASoC: dt-bindings: add dt bindings for wcd9335 audio codec")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 Documentation/devicetree/bindings/sound/qcom,wcd9335.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/qcom,wcd9335.txt b/Documentation/devicetree/bindings/sound/qcom,wcd9335.txt
index 5d6ea66a863f..1f75feec3dec 100644
--- a/Documentation/devicetree/bindings/sound/qcom,wcd9335.txt
+++ b/Documentation/devicetree/bindings/sound/qcom,wcd9335.txt
@@ -109,7 +109,7 @@ audio-codec@1{
 	reg  = <1 0>;
 	interrupts = <&msmgpio 54 IRQ_TYPE_LEVEL_HIGH>;
 	interrupt-names = "intr2"
-	reset-gpios = <&msmgpio 64 0>;
+	reset-gpios = <&msmgpio 64 GPIO_ACTIVE_LOW>;
 	slim-ifc-dev  = <&wc9335_ifd>;
 	clock-names = "mclk", "native";
 	clocks = <&rpmcc RPM_SMD_DIV_CLK1>,
-- 
2.38.0.135.g90850a2211-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 3/6] arm64: dts: qcom: sm8250-mtp: fix reset line polarity
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Dmitry Torokhov
@ 2022-10-27  7:46 ` Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 4/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 3.0/3.1 Dmitry Torokhov
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-27  7:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

The driver for the codec, when resetting the chip, first drives the line
low, and then high. This means that the line is active low. Change the
annotation in the DTS accordingly.

Fixes: 36c9d012f193 ("arm64: dts: qcom: use GPIO flags for tlmm")
Fixes: 5a263cf629a8 ("arm64: dts: qcom: sm8250-mtp: Add wcd9380 audio codec node")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 arch/arm64/boot/dts/qcom/sm8250-mtp.dts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sm8250-mtp.dts b/arch/arm64/boot/dts/qcom/sm8250-mtp.dts
index 9db6136321b4..391806c62ccc 100644
--- a/arch/arm64/boot/dts/qcom/sm8250-mtp.dts
+++ b/arch/arm64/boot/dts/qcom/sm8250-mtp.dts
@@ -635,7 +635,7 @@ &soc {
 	wcd938x: codec {
 		compatible = "qcom,wcd9380-codec";
 		#sound-dai-cells = <1>;
-		reset-gpios = <&tlmm 32 GPIO_ACTIVE_HIGH>;
+		reset-gpios = <&tlmm 32 GPIO_ACTIVE_LOW>;
 		vdd-buck-supply = <&vreg_s4a_1p8>;
 		vdd-rxtx-supply = <&vreg_s4a_1p8>;
 		vdd-io-supply = <&vreg_s4a_1p8>;
-- 
2.38.0.135.g90850a2211-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 4/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 3.0/3.1
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 3/6] arm64: dts: qcom: sm8250-mtp: fix reset line polarity Dmitry Torokhov
@ 2022-10-27  7:46 ` Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 5/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 1.0/2.0 Dmitry Torokhov
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-27  7:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

The driver for the codec, when resetting the chip, first drives the line
low, and then high. This means that the line is active low. Change the
annotation in the DTS accordingly.

Fixes: 0a3a56a93fd9 ("arm64: dts: qcom: sc7280: Add wcd9385 codec node for CRD 3.0/3.1")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi b/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi
index a42b5878a75f..df49564ae6dc 100644
--- a/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7280-qcard.dtsi
@@ -37,7 +37,7 @@ wcd9385: audio-codec-1 {
 		pinctrl-0 = <&wcd_reset_n>, <&us_euro_hs_sel>;
 		pinctrl-1 = <&wcd_reset_n_sleep>, <&us_euro_hs_sel>;
 
-		reset-gpios = <&tlmm 83 GPIO_ACTIVE_HIGH>;
+		reset-gpios = <&tlmm 83 GPIO_ACTIVE_LOW>;
 		us-euro-gpios = <&tlmm 81 GPIO_ACTIVE_HIGH>;
 
 		qcom,rx-device = <&wcd_rx>;
-- 
2.38.0.135.g90850a2211-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 5/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 1.0/2.0
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
                   ` (2 preceding siblings ...)
  2022-10-27  7:46 ` [PATCH 4/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 3.0/3.1 Dmitry Torokhov
@ 2022-10-27  7:46 ` Dmitry Torokhov
  2022-10-27  7:46 ` [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example Dmitry Torokhov
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-27  7:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

The driver for the codec, when resetting the chip, first drives the line
low, and then high. This means that the line is active low. Change the
annotation in the DTS accordingly.

Fixes: f8b4eb64f200 ("arm64: dts: qcom: sc7280: Add wcd9385 codec node for CRD 1.0/2.0 and IDP boards")
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 arch/arm64/boot/dts/qcom/sc7280-idp.dtsi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/boot/dts/qcom/sc7280-idp.dtsi b/arch/arm64/boot/dts/qcom/sc7280-idp.dtsi
index 4884647a8a95..1ac7c091e03f 100644
--- a/arch/arm64/boot/dts/qcom/sc7280-idp.dtsi
+++ b/arch/arm64/boot/dts/qcom/sc7280-idp.dtsi
@@ -34,7 +34,7 @@ wcd9385: audio-codec-1 {
 		pinctrl-0 = <&wcd_reset_n>;
 		pinctrl-1 = <&wcd_reset_n_sleep>;
 
-		reset-gpios = <&tlmm 83 GPIO_ACTIVE_HIGH>;
+		reset-gpios = <&tlmm 83 GPIO_ACTIVE_LOW>;
 
 		qcom,rx-device = <&wcd_rx>;
 		qcom,tx-device = <&wcd_tx>;
-- 
2.38.0.135.g90850a2211-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
                   ` (3 preceding siblings ...)
  2022-10-27  7:46 ` [PATCH 5/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 1.0/2.0 Dmitry Torokhov
@ 2022-10-27  7:46 ` Dmitry Torokhov
  2022-10-27 13:44   ` Krzysztof Kozlowski
  2022-10-28 19:39   ` Rob Herring
  2022-11-07  3:12 ` (subset) [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Bjorn Andersson
  2022-11-25 21:28 ` Mark Brown
  6 siblings, 2 replies; 11+ messages in thread
From: Dmitry Torokhov @ 2022-10-27  7:46 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

The driver for the codec, when resetting the chip, first drives the line
low, and then high. This means that the line is active low. Change the
annotation in the example DTS accordingly.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml b/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml
index 51547190f709..2f5e0df93872 100644
--- a/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml
+++ b/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml
@@ -112,7 +112,7 @@ examples:
   - |
     codec {
         compatible = "qcom,wcd9380-codec";
-        reset-gpios = <&tlmm 32 0>;
+        reset-gpios = <&tlmm 32 GPIO_ACTIVE_LOW>;
         #sound-dai-cells = <1>;
         qcom,tx-device = <&wcd938x_tx>;
         qcom,rx-device = <&wcd938x_rx>;
-- 
2.38.0.135.g90850a2211-goog


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example
  2022-10-27  7:46 ` [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example Dmitry Torokhov
@ 2022-10-27 13:44   ` Krzysztof Kozlowski
  2022-10-28 19:39   ` Rob Herring
  1 sibling, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-27 13:44 UTC (permalink / raw)
  To: Dmitry Torokhov, Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On 27/10/2022 03:46, Dmitry Torokhov wrote:
> The driver for the codec, when resetting the chip, first drives the line
> low, and then high. This means that the line is active low. Change the
> annotation in the example DTS accordingly.
> 
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---


Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example
  2022-10-27  7:46 ` [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Dmitry Torokhov
@ 2022-10-27 13:44   ` Krzysztof Kozlowski
  0 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2022-10-27 13:44 UTC (permalink / raw)
  To: Dmitry Torokhov, Andy Gross, Bjorn Andersson, Mark Brown
  Cc: Srinivas Kandagatla, Banajit Goswami, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, linux-arm-msm, devicetree, linux-kernel

On 27/10/2022 03:46, Dmitry Torokhov wrote:
> When resetting the block, the reset line is being driven low and then
> high, which means that the line in DTS should be annotated as "active
> low".
> 
> Fixes: 1877c9fda1b7 ("ASoC: dt-bindings: add dt bindings for wcd9335 audio codec")
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---


Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example
  2022-10-27  7:46 ` [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example Dmitry Torokhov
  2022-10-27 13:44   ` Krzysztof Kozlowski
@ 2022-10-28 19:39   ` Rob Herring
  1 sibling, 0 replies; 11+ messages in thread
From: Rob Herring @ 2022-10-28 19:39 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Andy Gross, Bjorn Andersson, Mark Brown, Srinivas Kandagatla,
	Banajit Goswami, Konrad Dybcio, Krzysztof Kozlowski,
	linux-arm-msm, devicetree, linux-kernel

On Thu, Oct 27, 2022 at 12:46:52AM -0700, Dmitry Torokhov wrote:
> The driver for the codec, when resetting the chip, first drives the line
> low, and then high. This means that the line is active low. Change the
> annotation in the example DTS accordingly.
> 
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
>  Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml b/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml
> index 51547190f709..2f5e0df93872 100644
> --- a/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml
> +++ b/Documentation/devicetree/bindings/sound/qcom,wcd938x.yaml
> @@ -112,7 +112,7 @@ examples:
>    - |
>      codec {
>          compatible = "qcom,wcd9380-codec";
> -        reset-gpios = <&tlmm 32 0>;
> +        reset-gpios = <&tlmm 32 GPIO_ACTIVE_LOW>;

Missing a header for this.

>          #sound-dai-cells = <1>;
>          qcom,tx-device = <&wcd938x_tx>;
>          qcom,rx-device = <&wcd938x_rx>;
> -- 
> 2.38.0.135.g90850a2211-goog
> 
> 

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: (subset) [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
                   ` (4 preceding siblings ...)
  2022-10-27  7:46 ` [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example Dmitry Torokhov
@ 2022-11-07  3:12 ` Bjorn Andersson
  2022-11-25 21:28 ` Mark Brown
  6 siblings, 0 replies; 11+ messages in thread
From: Bjorn Andersson @ 2022-11-07  3:12 UTC (permalink / raw)
  To: dmitry.torokhov, broonie, Andy Gross
  Cc: krzysztof.kozlowski+dt, devicetree, Rob Herring, linux-arm-msm,
	konrad.dybcio, linux-kernel, bgoswami, srinivas.kandagatla

On Thu, 27 Oct 2022 00:46:47 -0700, Dmitry Torokhov wrote:
> When resetting the block, the reset line is being driven low and then
> high, which means that the line in DTS should be annotated as "active
> low". It will become important when wcd9335 driver will be converted
> to gpiod API that respects declared line polarities.
> 
> 

Applied, thanks!

[1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity
      commit: 76d21ffc5d425bf7ea9888652c49d7dbda15f356
[3/6] arm64: dts: qcom: sm8250-mtp: fix reset line polarity
      commit: 15d9fcbb3e6e8420c7d1ae331405780c5d9c1c25
[4/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 3.0/3.1
      commit: 1caf66104c02d327a2467a69ab18fb24b44e9715
[5/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 1.0/2.0
      commit: b8f298d4f69d82119ac0d22809a17c80b1f188d1

Best regards,
-- 
Bjorn Andersson <andersson@kernel.org>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: (subset) [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity
  2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
                   ` (5 preceding siblings ...)
  2022-11-07  3:12 ` (subset) [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Bjorn Andersson
@ 2022-11-25 21:28 ` Mark Brown
  6 siblings, 0 replies; 11+ messages in thread
From: Mark Brown @ 2022-11-25 21:28 UTC (permalink / raw)
  To: Bjorn Andersson, Dmitry Torokhov, Andy Gross
  Cc: Konrad Dybcio, Srinivas Kandagatla, linux-arm-msm,
	Krzysztof Kozlowski, Banajit Goswami, Rob Herring, linux-kernel,
	devicetree

On Thu, 27 Oct 2022 00:46:47 -0700, Dmitry Torokhov wrote:
> When resetting the block, the reset line is being driven low and then
> high, which means that the line in DTS should be annotated as "active
> low". It will become important when wcd9335 driver will be converted
> to gpiod API that respects declared line polarities.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example
      commit: 34cb111f8a7b98b5fec809dd194003bca20ef1b2

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2022-11-25 21:28 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-27  7:46 [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Dmitry Torokhov
2022-10-27  7:46 ` [PATCH 2/6] ASoC: dt-bindings: wcd9335: fix reset line polarity in example Dmitry Torokhov
2022-10-27 13:44   ` Krzysztof Kozlowski
2022-10-27  7:46 ` [PATCH 3/6] arm64: dts: qcom: sm8250-mtp: fix reset line polarity Dmitry Torokhov
2022-10-27  7:46 ` [PATCH 4/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 3.0/3.1 Dmitry Torokhov
2022-10-27  7:46 ` [PATCH 5/6] arm64: dts: qcom: sc7280: fix codec reset line polarity for CRD 1.0/2.0 Dmitry Torokhov
2022-10-27  7:46 ` [PATCH 6/6] ASoC: dt-bindings: wcd938x: fix codec reset line polarity in example Dmitry Torokhov
2022-10-27 13:44   ` Krzysztof Kozlowski
2022-10-28 19:39   ` Rob Herring
2022-11-07  3:12 ` (subset) [PATCH 1/6] arm64: dts: qcom: msm8996: fix sound card reset line polarity Bjorn Andersson
2022-11-25 21:28 ` Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.