[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <12f6d7cf-6af6-4f54-3188-65e73b703a72@gmail.com>
Date: Mon, 20 Apr 2020 15:33:38 +0200
From: Johan Jonker <jbx6244@...il.com>
To: heiko@...ech.de
Cc: ezequiel@...labora.com, devicetree@...r.kernel.org,
hverkuil@...all.nl, linux-kernel@...r.kernel.org,
linux-media@...r.kernel.org, linux-rockchip@...ts.infradead.org,
mark.rutland@....com, robh@...nel.org
Subject: Re: [PATCH v4] dt-bindings: rockchip-vpu: Convert bindings to
json-schema
Hi Heiko,
This patch was applied by the media people Hans and Ezequil without note
and test I think.
make ARCH=arm64 dtbs_check
DT_SCHEMA_FILES=Documentation/devicetree/bindings/media/rockchip-vpu.yaml
Errors for example:
DTC arch/arm64/boot/dts/rockchip/rk3328-evb.dt.yaml
CHECK arch/arm64/boot/dts/rockchip/rk3328-evb.dt.yaml
arch/arm64/boot/dts/rockchip/rk3328-evb.dt.yaml: video-codec@...50000:
interrupts: [[0, 9, 4]] is too short
arch/arm64/boot/dts/rockchip/rk3328-evb.dt.yaml: video-codec@...50000:
interrupt-names: ['vdpu'] is too short
arch/arm64/boot/dts/rockchip/rk3328-evb.dt.yaml: video-codec@...50000:
interrupt-names:0: 'vepu' was expected
See:
https://lore.kernel.org/lkml/20200403124316.5445-1-jbx6244@gmail.com/
+ interrupts:
+ minItems: 1
+ maxItems: 2
+
+ interrupt-names:
+ oneOf:
+ - const: vdpu
+ - items:
+ - const: vepu
+ - const: vdpu
Vs.:
+ interrupts:
+ maxItems: 2
+
+ interrupt-names:
+ items:
+ - const: vepu
+ - const: vdpu
Powered by blists - more mailing lists