devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] Try to fix DT schema problems for V3-series DTs
@ 2020-10-03 23:48 Icenowy Zheng
  2020-10-03 23:50 ` [PATCH 1/2] ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube Icenowy Zheng
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Icenowy Zheng @ 2020-10-03 23:48 UTC (permalink / raw)
  To: Rob Herring, Maxime Ripard, Chen-Yu Tsai, Clément Péron
  Cc: devicetree, linux-arm-kernel, linux-kernel, linux-sunxi, Icenowy Zheng

This patchset tries to fix DT schema verification errors that exist in
V3-series device trees.

The first patch drops bogus properties that is not needed in PineCube
DT, and the second one adds compatible to the binding.

Icenowy Zheng (2):
  ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube
  dt-bindings: sram: sunxi-sram: add V3s compatible string

 .../bindings/sram/allwinner,sun4i-a10-system-control.yaml      | 3 +++
 arch/arm/boot/dts/sun8i-s3-pinecube.dts                        | 3 ---
 2 files changed, 3 insertions(+), 3 deletions(-)

-- 
2.28.0

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

* [PATCH 1/2] ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube
  2020-10-03 23:48 [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Icenowy Zheng
@ 2020-10-03 23:50 ` Icenowy Zheng
  2020-10-03 23:50 ` [PATCH 2/2] dt-bindings: sram: sunxi-sram: add V3s compatible string Icenowy Zheng
  2020-10-05  8:22 ` [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Maxime Ripard
  2 siblings, 0 replies; 4+ messages in thread
From: Icenowy Zheng @ 2020-10-03 23:50 UTC (permalink / raw)
  To: Rob Herring, Maxime Ripard, Chen-Yu Tsai, Clément Péron
  Cc: devicetree, linux-arm-kernel, linux-kernel, linux-sunxi, Icenowy Zheng

The address and size cells infomation in CSI subnode is not necessary
(because the camera subnode has no reg property).

Drop them.

Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
---
 arch/arm/boot/dts/sun8i-s3-pinecube.dts | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/arch/arm/boot/dts/sun8i-s3-pinecube.dts b/arch/arm/boot/dts/sun8i-s3-pinecube.dts
index 9bab6b7f4014..76c8a29e355b 100644
--- a/arch/arm/boot/dts/sun8i-s3-pinecube.dts
+++ b/arch/arm/boot/dts/sun8i-s3-pinecube.dts
@@ -64,9 +64,6 @@ &csi1 {
 	status = "okay";
 
 	port {
-		#address-cells = <1>;
-		#size-cells = <0>;
-
 		csi1_ep: endpoint {
 			remote-endpoint = <&ov5640_ep>;
 			bus-width = <8>;
-- 
2.28.0

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

* [PATCH 2/2] dt-bindings: sram: sunxi-sram: add V3s compatible string
  2020-10-03 23:48 [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Icenowy Zheng
  2020-10-03 23:50 ` [PATCH 1/2] ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube Icenowy Zheng
@ 2020-10-03 23:50 ` Icenowy Zheng
  2020-10-05  8:22 ` [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Maxime Ripard
  2 siblings, 0 replies; 4+ messages in thread
From: Icenowy Zheng @ 2020-10-03 23:50 UTC (permalink / raw)
  To: Rob Herring, Maxime Ripard, Chen-Yu Tsai, Clément Péron
  Cc: devicetree, linux-arm-kernel, linux-kernel, linux-sunxi, Icenowy Zheng

Add compatible string for V3s, with H3 one as fallback.

This is used in device tree now, but not standardized in DT binding.

Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
---
 .../bindings/sram/allwinner,sun4i-a10-system-control.yaml      | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/sram/allwinner,sun4i-a10-system-control.yaml b/Documentation/devicetree/bindings/sram/allwinner,sun4i-a10-system-control.yaml
index 6ebcbc153691..b66a07e21d1e 100644
--- a/Documentation/devicetree/bindings/sram/allwinner,sun4i-a10-system-control.yaml
+++ b/Documentation/devicetree/bindings/sram/allwinner,sun4i-a10-system-control.yaml
@@ -33,6 +33,9 @@ properties:
           - const: allwinner,sun4i-a10-system-control
       - const: allwinner,sun8i-a23-system-control
       - const: allwinner,sun8i-h3-system-control
+      - items:
+          - const: allwinner,sun8i-v3s-system-control
+          - const: allwinner,sun8i-h3-system-control
       - items:
           - const: allwinner,sun8i-r40-system-control
           - const: allwinner,sun4i-a10-system-control
-- 
2.28.0

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

* Re: [PATCH 0/2] Try to fix DT schema problems for V3-series DTs
  2020-10-03 23:48 [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Icenowy Zheng
  2020-10-03 23:50 ` [PATCH 1/2] ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube Icenowy Zheng
  2020-10-03 23:50 ` [PATCH 2/2] dt-bindings: sram: sunxi-sram: add V3s compatible string Icenowy Zheng
@ 2020-10-05  8:22 ` Maxime Ripard
  2 siblings, 0 replies; 4+ messages in thread
From: Maxime Ripard @ 2020-10-05  8:22 UTC (permalink / raw)
  To: Icenowy Zheng
  Cc: Rob Herring, Chen-Yu Tsai, Clément Péron, devicetree,
	linux-arm-kernel, linux-kernel, linux-sunxi

[-- Attachment #1: Type: text/plain, Size: 525 bytes --]

On Sun, Oct 04, 2020 at 07:48:42AM +0800, Icenowy Zheng wrote:
> This patchset tries to fix DT schema verification errors that exist in
> V3-series device trees.
> 
> The first patch drops bogus properties that is not needed in PineCube
> DT, and the second one adds compatible to the binding.
> 
> Icenowy Zheng (2):
>   ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube
>   dt-bindings: sram: sunxi-sram: add V3s compatible string

Squashed the first one and applied the second, thanks!
Maxime

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

end of thread, other threads:[~2020-10-05  8:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-03 23:48 [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Icenowy Zheng
2020-10-03 23:50 ` [PATCH 1/2] ARM: dts: sun8i: s3: drop bogus cells for CSI subnode on PineCube Icenowy Zheng
2020-10-03 23:50 ` [PATCH 2/2] dt-bindings: sram: sunxi-sram: add V3s compatible string Icenowy Zheng
2020-10-05  8:22 ` [PATCH 0/2] Try to fix DT schema problems for V3-series DTs Maxime Ripard

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