mbox series

[v2,0/7] Add support for Blaize BLZP1600 SoC

Message ID 20240424133032.19056-1-nikolaos.pasaloukos@blaize.com (mailing list archive)
Headers show
Series Add support for Blaize BLZP1600 SoC | expand

Message

Nikolaos Pasaloukos April 24, 2024, 1:31 p.m. UTC
Adds basic support for the Blaize BLZP1600 SoC.
This SoC contains two cores of Cortex-A53 CPUs, one Blaize
Graph Streaming Processor (GSP) and several other IPs.

V2 changes:
 * Update SoBs.
 * `make dtbs_check` has no warnings.
 * Fix dts names and removed dead code.
 * DTS is separated from anything else.

Nikolaos Pasaloukos (7):
  dt-bindings: Add Blaize vendor prefix
  dt-bindings: arm: blaize: Add Blaize BLZP1600 SoC
  dt-bindings: reset: Add binding constants for BLZP1600
  dt-bindings: clock: Add binding constants for BLZP1600
  arm64: Add Blaize BLZP1600 SoC family
  arm64: Add initial support for Blaize BLZP1600 CB2
  arm64: defconfig: Enable ARCH_BLAIZE_BLZP1600

 .../devicetree/bindings/arm/blaize.yaml       |  40 ++++
 .../devicetree/bindings/vendor-prefixes.yaml  |   2 +
 arch/arm64/Kconfig.platforms                  |   5 +
 arch/arm64/boot/dts/Makefile                  |   1 +
 arch/arm64/boot/dts/blaize/Makefile           |   2 +
 .../boot/dts/blaize/blaize-blzp1600-cb2.dts   |  84 +++++++
 .../boot/dts/blaize/blaize-blzp1600-som.dtsi  |  23 ++
 .../boot/dts/blaize/blaize-blzp1600.dtsi      | 211 ++++++++++++++++++
 arch/arm64/configs/defconfig                  |   1 +
 .../dt-bindings/clock/blaize,blzp1600-clk.h   |  77 +++++++
 .../dt-bindings/reset/blaize,blzp1600-reset.h |  84 +++++++
 11 files changed, 530 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/blaize.yaml
 create mode 100644 arch/arm64/boot/dts/blaize/Makefile
 create mode 100644 arch/arm64/boot/dts/blaize/blaize-blzp1600-cb2.dts
 create mode 100644 arch/arm64/boot/dts/blaize/blaize-blzp1600-som.dtsi
 create mode 100644 arch/arm64/boot/dts/blaize/blaize-blzp1600.dtsi
 create mode 100644 include/dt-bindings/clock/blaize,blzp1600-clk.h
 create mode 100644 include/dt-bindings/reset/blaize,blzp1600-reset.h

Comments

Krzysztof Kozlowski April 24, 2024, 2:12 p.m. UTC | #1
On 24/04/2024 15:31, Niko Pasaloukos wrote:
> Adds basic support for the Blaize BLZP1600 SoC.
> This SoC contains two cores of Cortex-A53 CPUs, one Blaize
> Graph Streaming Processor (GSP) and several other IPs.
> 
> V2 changes:
>  * Update SoBs.
>  * `make dtbs_check` has no warnings.
>  * Fix dts names and removed dead code.
>  * DTS is separated from anything else.

Your threading is totally broken.

I recommend using b4, if sending patches is tricky. b4 nicely solves
such (and many more) issues.

Best regards,
Krzysztof