linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host
@ 2022-11-17 10:58 Konrad Dybcio
  2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Konrad Dybcio @ 2022-11-17 10:58 UTC (permalink / raw)
  To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: patches, Konrad Dybcio, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, devicetree, linux-kernel

This is a device property, not a bus host one.

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
 arch/arm64/boot/dts/qcom/msm8994.dtsi | 2 --
 1 file changed, 2 deletions(-)

diff --git a/arch/arm64/boot/dts/qcom/msm8994.dtsi b/arch/arm64/boot/dts/qcom/msm8994.dtsi
index adcea31a0c68..9ff9d35496d2 100644
--- a/arch/arm64/boot/dts/qcom/msm8994.dtsi
+++ b/arch/arm64/boot/dts/qcom/msm8994.dtsi
@@ -554,7 +554,6 @@ blsp1_spi1: spi@f9923000 {
 			clocks = <&gcc GCC_BLSP1_QUP1_SPI_APPS_CLK>,
 				 <&gcc GCC_BLSP1_AHB_CLK>;
 			clock-names = "core", "iface";
-			spi-max-frequency = <19200000>;
 			dmas = <&blsp1_dma 12>, <&blsp1_dma 13>;
 			dma-names = "tx", "rx";
 			pinctrl-names = "default", "sleep";
@@ -692,7 +691,6 @@ blsp2_spi4: spi@f9966000 {
 			clocks = <&gcc GCC_BLSP2_QUP4_SPI_APPS_CLK>,
 				 <&gcc GCC_BLSP2_AHB_CLK>;
 			clock-names = "core", "iface";
-			spi-max-frequency = <19200000>;
 			dmas = <&blsp2_dma 18>, <&blsp2_dma 19>;
 			dma-names = "tx", "rx";
 			pinctrl-names = "default", "sleep";
-- 
2.38.1


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

* [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer
  2022-11-17 10:58 [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Konrad Dybcio
@ 2022-11-17 10:58 ` Konrad Dybcio
  2022-11-17 11:05   ` Krzysztof Kozlowski
                     ` (2 more replies)
  2022-11-17 11:05 ` [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Krzysztof Kozlowski
  2022-12-06 18:19 ` (subset) " Bjorn Andersson
  2 siblings, 3 replies; 8+ messages in thread
From: Konrad Dybcio @ 2022-11-17 10:58 UTC (permalink / raw)
  To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: patches, Konrad Dybcio, Konrad Dybcio, Rob Herring,
	Krzysztof Kozlowski, devicetree, linux-kernel, Wim Van Sebroeck,
	Guenter Roeck, Prakash Ranjan, linux-watchdog

Document the MSM8994 watchdog timer which is already used in DT.

Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
---
 Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
index d8ac0be36e6c..a1f17c9e02db 100644
--- a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
+++ b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
@@ -17,6 +17,7 @@ properties:
     oneOf:
       - items:
           - enum:
+              - qcom,apss-wdt-msm8994
               - qcom,apss-wdt-qcs404
               - qcom,apss-wdt-sc7180
               - qcom,apss-wdt-sc7280
-- 
2.38.1


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

* Re: [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host
  2022-11-17 10:58 [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Konrad Dybcio
  2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
@ 2022-11-17 11:05 ` Krzysztof Kozlowski
  2022-12-06 18:19 ` (subset) " Bjorn Andersson
  2 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2022-11-17 11:05 UTC (permalink / raw)
  To: Konrad Dybcio, linux-arm-msm, andersson, agross
  Cc: patches, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel

On 17/11/2022 11:58, Konrad Dybcio wrote:
> This is a device property, not a bus host one.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> ---


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

Best regards,
Krzysztof


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

* Re: [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer
  2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
@ 2022-11-17 11:05   ` Krzysztof Kozlowski
  2023-01-31 17:07   ` Guenter Roeck
  2023-02-17 11:30   ` Konrad Dybcio
  2 siblings, 0 replies; 8+ messages in thread
From: Krzysztof Kozlowski @ 2022-11-17 11:05 UTC (permalink / raw)
  To: Konrad Dybcio, linux-arm-msm, andersson, agross
  Cc: patches, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel, Wim Van Sebroeck, Guenter Roeck,
	Prakash Ranjan, linux-watchdog

On 17/11/2022 11:58, Konrad Dybcio wrote:
> Document the MSM8994 watchdog timer which is already used in DT.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> ---


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

Best regards,
Krzysztof


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

* Re: (subset) [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host
  2022-11-17 10:58 [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Konrad Dybcio
  2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
  2022-11-17 11:05 ` [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Krzysztof Kozlowski
@ 2022-12-06 18:19 ` Bjorn Andersson
  2 siblings, 0 replies; 8+ messages in thread
From: Bjorn Andersson @ 2022-12-06 18:19 UTC (permalink / raw)
  To: agross, linux-arm-msm, konrad.dybcio, krzysztof.kozlowski
  Cc: robh+dt, konrad.dybcio, krzysztof.kozlowski+dt, linux-kernel,
	devicetree, patches

On Thu, 17 Nov 2022 11:58:44 +0100, Konrad Dybcio wrote:
> This is a device property, not a bus host one.
> 
> 

Applied, thanks!

[1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host
      commit: d132d9e7c4e53a23d158a9ec3d59c372eb30e70e

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

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

* Re: [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer
  2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
  2022-11-17 11:05   ` Krzysztof Kozlowski
@ 2023-01-31 17:07   ` Guenter Roeck
  2023-02-17 11:30   ` Konrad Dybcio
  2 siblings, 0 replies; 8+ messages in thread
From: Guenter Roeck @ 2023-01-31 17:07 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: linux-arm-msm, andersson, agross, krzysztof.kozlowski, patches,
	Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, devicetree,
	linux-kernel, Wim Van Sebroeck, Prakash Ranjan, linux-watchdog

On Thu, Nov 17, 2022 at 11:58:45AM +0100, Konrad Dybcio wrote:
> Document the MSM8994 watchdog timer which is already used in DT.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: Guenter Roeck <linux@roeck-us.net>

> ---
>  Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> index d8ac0be36e6c..a1f17c9e02db 100644
> --- a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> @@ -17,6 +17,7 @@ properties:
>      oneOf:
>        - items:
>            - enum:
> +              - qcom,apss-wdt-msm8994
>                - qcom,apss-wdt-qcs404
>                - qcom,apss-wdt-sc7180
>                - qcom,apss-wdt-sc7280

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

* Re: [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer
  2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
  2022-11-17 11:05   ` Krzysztof Kozlowski
  2023-01-31 17:07   ` Guenter Roeck
@ 2023-02-17 11:30   ` Konrad Dybcio
  2023-02-18 15:00     ` Wim Van Sebroeck
  2 siblings, 1 reply; 8+ messages in thread
From: Konrad Dybcio @ 2023-02-17 11:30 UTC (permalink / raw)
  To: linux-arm-msm, andersson, agross, krzysztof.kozlowski
  Cc: patches, Konrad Dybcio, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-kernel, Wim Van Sebroeck, Guenter Roeck,
	Prakash Ranjan, linux-watchdog



On 17.11.2022 11:58, Konrad Dybcio wrote:
> Document the MSM8994 watchdog timer which is already used in DT.
> 
> Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> ---
Looks like this never got applied?

Konrad
>  Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> index d8ac0be36e6c..a1f17c9e02db 100644
> --- a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> +++ b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> @@ -17,6 +17,7 @@ properties:
>      oneOf:
>        - items:
>            - enum:
> +              - qcom,apss-wdt-msm8994
>                - qcom,apss-wdt-qcs404
>                - qcom,apss-wdt-sc7180
>                - qcom,apss-wdt-sc7280

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

* Re: [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer
  2023-02-17 11:30   ` Konrad Dybcio
@ 2023-02-18 15:00     ` Wim Van Sebroeck
  0 siblings, 0 replies; 8+ messages in thread
From: Wim Van Sebroeck @ 2023-02-18 15:00 UTC (permalink / raw)
  To: Konrad Dybcio
  Cc: linux-arm-msm, andersson, agross, krzysztof.kozlowski, patches,
	Konrad Dybcio, Rob Herring, Krzysztof Kozlowski, devicetree,
	linux-kernel, Wim Van Sebroeck, Guenter Roeck, Prakash Ranjan,
	linux-watchdog

Hi Konrad,

> On 17.11.2022 11:58, Konrad Dybcio wrote:
> > Document the MSM8994 watchdog timer which is already used in DT.
> > 
> > Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
> > ---
> Looks like this never got applied?

Patience is a beautiful virtue.
Since Guenter reviewed it and since it is in Guenter's tree, I picked it up.

> Konrad
> >  Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> > index d8ac0be36e6c..a1f17c9e02db 100644
> > --- a/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> > +++ b/Documentation/devicetree/bindings/watchdog/qcom-wdt.yaml
> > @@ -17,6 +17,7 @@ properties:
> >      oneOf:
> >        - items:
> >            - enum:
> > +              - qcom,apss-wdt-msm8994
> >                - qcom,apss-wdt-qcs404
> >                - qcom,apss-wdt-sc7180
> >                - qcom,apss-wdt-sc7280

Kind regards,
Wim.


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

end of thread, other threads:[~2023-02-18 17:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-17 10:58 [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Konrad Dybcio
2022-11-17 10:58 ` [PATCH 2/2] dt-bindings: watchdog: Add MSM8994 watchdog timer Konrad Dybcio
2022-11-17 11:05   ` Krzysztof Kozlowski
2023-01-31 17:07   ` Guenter Roeck
2023-02-17 11:30   ` Konrad Dybcio
2023-02-18 15:00     ` Wim Van Sebroeck
2022-11-17 11:05 ` [PATCH 1/2] arm64: dts: qcom: msm8994: Drop spi-max-frequency from SPI host Krzysztof Kozlowski
2022-12-06 18:19 ` (subset) " Bjorn Andersson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).