This series adds basic support for NX1 SoC, and the boards for Pro5 and NX1 SoCs. Some of these boards have PCI endpoint. NX1 SoC follows the same architecture as the other UniPhier SoCs, except for the memory map. And this series also adds bindings to define compatible strings for the system controllers implemented in the SoCs. --- Changes since v1: - Add system controller bindings patch - Adjust some node names to recommended generic ones - Remove undefined compatible strings - Describe background for NX1 SoC and restrictions in the DT patch - Move clock-frequency of reference clock to the board's devicetree - Move status to last in the node - Fix aidet node to interrupt-controller - Add Acked-by: lines Kunihiko Hayashi (5): dt-bindings: arm: uniphier: Add system controller bindings dt-bindings: arm: uniphier: Add Pro5 boards ARM: dts: uniphier: Add Pro5 board support dt-bindings: arm: uniphier: Add NX1 boards arm64: dts: uniphier: Add NX1 SoC and boards support .../socionext/socionext,uniphier-sysctrl.yaml | 92 +++ .../bindings/arm/socionext/uniphier.yaml | 13 + arch/arm/boot/dts/Makefile | 2 + arch/arm/boot/dts/uniphier-pro5-epcore.dts | 76 ++ arch/arm/boot/dts/uniphier-pro5-proex.dts | 59 ++ arch/arm64/boot/dts/socionext/Makefile | 3 + .../boot/dts/socionext/uniphier-nx1-evb.dts | 87 +++ .../boot/dts/socionext/uniphier-nx1-ref.dts | 109 +++ .../boot/dts/socionext/uniphier-nx1-som.dts | 54 ++ .../boot/dts/socionext/uniphier-nx1.dtsi | 702 ++++++++++++++++++ 10 files changed, 1197 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/socionext/socionext,uniphier-sysctrl.yaml create mode 100644 arch/arm/boot/dts/uniphier-pro5-epcore.dts create mode 100644 arch/arm/boot/dts/uniphier-pro5-proex.dts create mode 100644 arch/arm64/boot/dts/socionext/uniphier-nx1-evb.dts create mode 100644 arch/arm64/boot/dts/socionext/uniphier-nx1-ref.dts create mode 100644 arch/arm64/boot/dts/socionext/uniphier-nx1-som.dts create mode 100644 arch/arm64/boot/dts/socionext/uniphier-nx1.dtsi -- 2.25.1