mbox series

[v2,0/4] Add LBA3368 board

Message ID 20240623090116.670607-1-knaerzche@gmail.com (mailing list archive)
Headers show
Series Add LBA3368 board | expand

Message

Alex Bee June 23, 2024, 9:01 a.m. UTC
This series aims to add support for RK3368 based LBA3368 industrial board
form Neardi. The device tree currently only contains entries for which both
bindings and linux driver exists and is expected to be exended in future.

NB: checkpatch throws me a warning that no venddor-prefix for "usb5e3"
exists - which is true - but "usb5e3,610" has a valid binding.

Changes in v2:
 - board DT property re-ordering / fixes

Link to v1:
 https://lore.kernel.org/all/20240621134030.243646-1-knaerzche@gmail.com/

Alex Bee (4):
  dt-bindings: vendor-prefixes: Add Neardi Technology
  dt-bindings: arm: rockchip: Add Neardi LBA3368
  arm64: dts: rockchip: Add sound-dai-cells for RK3368
  arm64: dts: rockchip: Add Neardi LBA3368 board

 .../devicetree/bindings/arm/rockchip.yaml     |   5 +
 .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
 arch/arm64/boot/dts/rockchip/Makefile         |   1 +
 .../boot/dts/rockchip/rk3368-lba3368.dts      | 661 ++++++++++++++++++
 arch/arm64/boot/dts/rockchip/rk3368.dtsi      |   3 +
 5 files changed, 672 insertions(+)
 create mode 100644 arch/arm64/boot/dts/rockchip/rk3368-lba3368.dts

Comments

Heiko Stübner June 24, 2024, 4:20 p.m. UTC | #1
On Sun, 23 Jun 2024 11:01:12 +0200, Alex Bee wrote:
> This series aims to add support for RK3368 based LBA3368 industrial board
> form Neardi. The device tree currently only contains entries for which both
> bindings and linux driver exists and is expected to be exended in future.
> 
> NB: checkpatch throws me a warning that no venddor-prefix for "usb5e3"
> exists - which is true - but "usb5e3,610" has a valid binding.
> 
> [...]

Applied, thanks!

[1/4] dt-bindings: vendor-prefixes: Add Neardi Technology
      commit: 79cba74263d96ab1848eb04862f72f8988eb0486
[2/4] dt-bindings: arm: rockchip: Add Neardi LBA3368
      commit: a30a6386ecc1f6ff71d4f7606bed25b7075476ab
[3/4] arm64: dts: rockchip: Add sound-dai-cells for RK3368
      commit: 8d7ec44aa5d1eb94a30319074762a1740440cdc8
[4/4] arm64: dts: rockchip: Add Neardi LBA3368 board
      commit: 7b4a8097e58b608638d416bd57469f8a9ab70e7b

Best regards,
Rob Herring June 26, 2024, 1:25 p.m. UTC | #2
On Sun, 23 Jun 2024 11:01:12 +0200, Alex Bee wrote:
> This series aims to add support for RK3368 based LBA3368 industrial board
> form Neardi. The device tree currently only contains entries for which both
> bindings and linux driver exists and is expected to be exended in future.
> 
> NB: checkpatch throws me a warning that no venddor-prefix for "usb5e3"
> exists - which is true - but "usb5e3,610" has a valid binding.
> 
> Changes in v2:
>  - board DT property re-ordering / fixes
> 
> Link to v1:
>  https://lore.kernel.org/all/20240621134030.243646-1-knaerzche@gmail.com/
> 
> Alex Bee (4):
>   dt-bindings: vendor-prefixes: Add Neardi Technology
>   dt-bindings: arm: rockchip: Add Neardi LBA3368
>   arm64: dts: rockchip: Add sound-dai-cells for RK3368
>   arm64: dts: rockchip: Add Neardi LBA3368 board
> 
>  .../devicetree/bindings/arm/rockchip.yaml     |   5 +
>  .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
>  arch/arm64/boot/dts/rockchip/Makefile         |   1 +
>  .../boot/dts/rockchip/rk3368-lba3368.dts      | 661 ++++++++++++++++++
>  arch/arm64/boot/dts/rockchip/rk3368.dtsi      |   3 +
>  5 files changed, 672 insertions(+)
>  create mode 100644 arch/arm64/boot/dts/rockchip/rk3368-lba3368.dts
> 
> --
> 2.45.2
> 
> 
> 


My bot found new DTB warnings on the .dts files added or changed in this
series.

Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
are fixed by another series. Ultimately, it is up to the platform
maintainer whether these warnings are acceptable or not. No need to reply
unless the platform maintainer has comments.

If you already ran DT checks and didn't see these error(s), then
make sure dt-schema is up to date:

  pip3 install dtschema --upgrade


New warnings running 'make CHECK_DTBS=y rockchip/rk3368-lba3368.dtb' for 20240623090116.670607-1-knaerzche@gmail.com:

arch/arm64/boot/dts/rockchip/rk3368-lba3368.dtb: /i2c@ff660000/codec@1c: failed to match any schema with compatible: ['realtek,rt5640']
arch/arm64/boot/dts/rockchip/rk3368-lba3368.dtb: /mbox@ff6b0000: failed to match any schema with compatible: ['rockchip,rk3368-mailbox']
Heiko Stübner June 26, 2024, 2:28 p.m. UTC | #3
Am Mittwoch, 26. Juni 2024, 15:25:12 CEST schrieb Rob Herring (Arm):
> 
> On Sun, 23 Jun 2024 11:01:12 +0200, Alex Bee wrote:
> > This series aims to add support for RK3368 based LBA3368 industrial board
> > form Neardi. The device tree currently only contains entries for which both
> > bindings and linux driver exists and is expected to be exended in future.
> > 
> > NB: checkpatch throws me a warning that no venddor-prefix for "usb5e3"
> > exists - which is true - but "usb5e3,610" has a valid binding.
> > 
> > Changes in v2:
> >  - board DT property re-ordering / fixes
> > 
> > Link to v1:
> >  https://lore.kernel.org/all/20240621134030.243646-1-knaerzche@gmail.com/
> > 
> > Alex Bee (4):
> >   dt-bindings: vendor-prefixes: Add Neardi Technology
> >   dt-bindings: arm: rockchip: Add Neardi LBA3368
> >   arm64: dts: rockchip: Add sound-dai-cells for RK3368
> >   arm64: dts: rockchip: Add Neardi LBA3368 board
> > 
> >  .../devicetree/bindings/arm/rockchip.yaml     |   5 +
> >  .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
> >  arch/arm64/boot/dts/rockchip/Makefile         |   1 +
> >  .../boot/dts/rockchip/rk3368-lba3368.dts      | 661 ++++++++++++++++++
> >  arch/arm64/boot/dts/rockchip/rk3368.dtsi      |   3 +
> >  5 files changed, 672 insertions(+)
> >  create mode 100644 arch/arm64/boot/dts/rockchip/rk3368-lba3368.dts
> > 
> > --
> > 2.45.2
> > 
> > 
> > 
> 
> 
> My bot found new DTB warnings on the .dts files added or changed in this
> series.
> 
> Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings
> are fixed by another series. Ultimately, it is up to the platform
> maintainer whether these warnings are acceptable or not. No need to reply
> unless the platform maintainer has comments.
> 
> If you already ran DT checks and didn't see these error(s), then
> make sure dt-schema is up to date:
> 
>   pip3 install dtschema --upgrade
> 
> 
> New warnings running 'make CHECK_DTBS=y rockchip/rk3368-lba3368.dtb' for 20240623090116.670607-1-knaerzche@gmail.com:
> 
> arch/arm64/boot/dts/rockchip/rk3368-lba3368.dtb: /i2c@ff660000/codec@1c: failed to match any schema with compatible: ['realtek,rt5640']
> arch/arm64/boot/dts/rockchip/rk3368-lba3368.dtb: /mbox@ff6b0000: failed to match any schema with compatible: ['rockchip,rk3368-mailbox']

both of those are still in their .txt format, so not yet converted
to yaml.