linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names
@ 2023-01-23 15:16 Krzysztof Kozlowski
  2023-01-23 15:16 ` [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-23 15:16 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Matthias Brugger, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel
  Cc: Krzysztof Kozlowski

The serial node does not use clock-names:

  mt7622-bananapi-bpi-r64.dtb: serial@1100c000: Unevaluated properties are not allowed ('clock-names' was unexpected)

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/mediatek/mt7622.dtsi | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm64/boot/dts/mediatek/mt7622.dtsi b/arch/arm64/boot/dts/mediatek/mt7622.dtsi
index 146e18b5b1f4..62487a3c4db1 100644
--- a/arch/arm64/boot/dts/mediatek/mt7622.dtsi
+++ b/arch/arm64/boot/dts/mediatek/mt7622.dtsi
@@ -526,7 +526,6 @@ btif: serial@1100c000 {
 		reg = <0 0x1100c000 0 0x1000>;
 		interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_LOW>;
 		clocks = <&pericfg CLK_PERI_BTIF_PD>;
-		clock-names = "main";
 		reg-shift = <2>;
 		reg-io-width = <4>;
 		status = "disabled";
-- 
2.34.1


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

* [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts
  2023-01-23 15:16 [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names Krzysztof Kozlowski
@ 2023-01-23 15:16 ` Krzysztof Kozlowski
  2023-01-24 11:07   ` AngeloGioacchino Del Regno
  2023-01-24 11:07 ` [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names AngeloGioacchino Del Regno
  2023-01-25 14:32 ` Matthias Brugger
  2 siblings, 1 reply; 5+ messages in thread
From: Krzysztof Kozlowski @ 2023-01-23 15:16 UTC (permalink / raw)
  To: Rob Herring, Krzysztof Kozlowski, Matthias Brugger, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel
  Cc: Krzysztof Kozlowski

The DTSI comes with interrupts property, so it must be removed if
interrupts-extended are used:

  mt8183-kukui-jacuzzi-cozmo.dtb: serial@11003000: More than one condition true in oneOf schema:

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi b/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi
index 821a51e458c5..fbe14b13051a 100644
--- a/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi
+++ b/arch/arm64/boot/dts/mediatek/mt8183-kukui.dtsi
@@ -963,6 +963,7 @@ &uart1 {
 	pinctrl-0 = <&uart1_pins_default>;
 	pinctrl-1 = <&uart1_pins_sleep>;
 	status = "okay";
+	/delete-property/ interrupts;
 	interrupts-extended = <&sysirq GIC_SPI 92 IRQ_TYPE_LEVEL_LOW>,
 			      <&pio 121 IRQ_TYPE_EDGE_FALLING>;
 
-- 
2.34.1


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

* Re: [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names
  2023-01-23 15:16 [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names Krzysztof Kozlowski
  2023-01-23 15:16 ` [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts Krzysztof Kozlowski
@ 2023-01-24 11:07 ` AngeloGioacchino Del Regno
  2023-01-25 14:32 ` Matthias Brugger
  2 siblings, 0 replies; 5+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-01-24 11:07 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
	Matthias Brugger, devicetree, linux-arm-kernel, linux-mediatek,
	linux-kernel

Il 23/01/23 16:16, Krzysztof Kozlowski ha scritto:
> The serial node does not use clock-names:
> 
>    mt7622-bananapi-bpi-r64.dtb: serial@1100c000: Unevaluated properties are not allowed ('clock-names' was unexpected)
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>


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

* Re: [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts
  2023-01-23 15:16 ` [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts Krzysztof Kozlowski
@ 2023-01-24 11:07   ` AngeloGioacchino Del Regno
  0 siblings, 0 replies; 5+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-01-24 11:07 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
	Matthias Brugger, devicetree, linux-arm-kernel, linux-mediatek,
	linux-kernel

Il 23/01/23 16:16, Krzysztof Kozlowski ha scritto:
> The DTSI comes with interrupts property, so it must be removed if
> interrupts-extended are used:
> 
>    mt8183-kukui-jacuzzi-cozmo.dtb: serial@11003000: More than one condition true in oneOf schema:
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>



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

* Re: [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names
  2023-01-23 15:16 [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names Krzysztof Kozlowski
  2023-01-23 15:16 ` [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts Krzysztof Kozlowski
  2023-01-24 11:07 ` [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names AngeloGioacchino Del Regno
@ 2023-01-25 14:32 ` Matthias Brugger
  2 siblings, 0 replies; 5+ messages in thread
From: Matthias Brugger @ 2023-01-25 14:32 UTC (permalink / raw)
  To: Krzysztof Kozlowski, Rob Herring, Krzysztof Kozlowski,
	devicetree, linux-arm-kernel, linux-mediatek, linux-kernel



On 23/01/2023 16:16, Krzysztof Kozlowski wrote:
> The serial node does not use clock-names:
> 
>    mt7622-bananapi-bpi-r64.dtb: serial@1100c000: Unevaluated properties are not allowed ('clock-names' was unexpected)
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Both applied, thanks!

> ---
>   arch/arm64/boot/dts/mediatek/mt7622.dtsi | 1 -
>   1 file changed, 1 deletion(-)
> 
> diff --git a/arch/arm64/boot/dts/mediatek/mt7622.dtsi b/arch/arm64/boot/dts/mediatek/mt7622.dtsi
> index 146e18b5b1f4..62487a3c4db1 100644
> --- a/arch/arm64/boot/dts/mediatek/mt7622.dtsi
> +++ b/arch/arm64/boot/dts/mediatek/mt7622.dtsi
> @@ -526,7 +526,6 @@ btif: serial@1100c000 {
>   		reg = <0 0x1100c000 0 0x1000>;
>   		interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_LOW>;
>   		clocks = <&pericfg CLK_PERI_BTIF_PD>;
> -		clock-names = "main";
>   		reg-shift = <2>;
>   		reg-io-width = <4>;
>   		status = "disabled";

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

end of thread, other threads:[~2023-01-25 14:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-23 15:16 [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names Krzysztof Kozlowski
2023-01-23 15:16 ` [PATCH 2/2] arm64: dts: mediatek: mt8183: drop double interrupts Krzysztof Kozlowski
2023-01-24 11:07   ` AngeloGioacchino Del Regno
2023-01-24 11:07 ` [PATCH 1/2] arm64: dts: mediatek: mt7622: drop serial clock-names AngeloGioacchino Del Regno
2023-01-25 14:32 ` Matthias Brugger

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).