From patchwork Wed Oct 6 13:25:53 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Abel Vesa X-Patchwork-Id: 1537141 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=vger.kernel.org (client-ip=23.128.96.18; helo=vger.kernel.org; envelope-from=devicetree-owner@vger.kernel.org; receiver=) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by bilbo.ozlabs.org (Postfix) with ESMTP id 4HPZwl0drvz9t25 for ; Thu, 7 Oct 2021 00:26:31 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231596AbhJFN2U (ORCPT ); Wed, 6 Oct 2021 09:28:20 -0400 Received: from inva020.nxp.com ([92.121.34.13]:53612 "EHLO inva020.nxp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238569AbhJFN2U (ORCPT ); Wed, 6 Oct 2021 09:28:20 -0400 Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 8CA481A1093; Wed, 6 Oct 2021 15:26:25 +0200 (CEST) Received: from inva024.eu-rdc02.nxp.com (inva024.eu-rdc02.nxp.com [134.27.226.22]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 7BF3F1A0E0B; Wed, 6 Oct 2021 15:26:25 +0200 (CEST) Received: from fsr-ub1664-175.ea.freescale.net (fsr-ub1664-175.ea.freescale.net [10.171.82.40]) by inva024.eu-rdc02.nxp.com (Postfix) with ESMTP id E5FFD2029F; Wed, 6 Oct 2021 15:26:24 +0200 (CEST) From: Abel Vesa To: Rob Herring , Dong Aisheng , Shawn Guo , Sascha Hauer , Greg Kroah-Hartman , Fabio Estevam Cc: Pengutronix Kernel Team , linux-i2c@vger.kernel.org, linux-serial@vger.kernel.org, NXP Linux Team , Linux Kernel Mailing List , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Abel Vesa Subject: [PATCH v3 00/11] arm64: dts: Add i.MX8DXL initial support Date: Wed, 6 Oct 2021 16:25:53 +0300 Message-Id: <1633526764-30151-1-git-send-email-abel.vesa@nxp.com> X-Mailer: git-send-email 2.7.4 X-Virus-Scanned: ClamAV using ClamSMTP Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This allows i.MX8DXL EVK board to boot to prompt. Changes since v2: * Fixed i2c-imx-lpi2c schema (see the newly added patch 9) * Fixed dtbs_check warning by removing the leading "0x" from /reserved-memory/m4_reserved address, in imx8dxl-evk.dts (see patch 7) Abel Vesa (6): arm64: dts: imx8-ss-lsio: Add mu5a mailbox arm64: dts: freescale: Add adma subsystem dtsi for imx8dxl dt-bindings: fsl: scu: Add i.MX8DXL ocotp binding dt-bindings: i2c: i2c-imx-lpi2c: Fix dtbs_check compatible oneOf error dt-bindings: i2c: imx-lpi2c: Add i.MX8DXL compatible match dt-bindings: serial: fsl-lpuart: Add i.MX8DXL compatible Jacky Bai (5): arm64: dts: freescale: Add the top level dtsi support for imx8dxl arm64: dts: freescale: Add the imx8dxl connectivity subsys dtsi arm64: dts: freescale: Add ddr subsys dtsi for imx8dxl arm64: dts: freescale: Add lsio subsys dtsi for imx8dxl arm64: dts: imx8dxl: Add i.MX8DXL evk board support .../bindings/arm/freescale/fsl,scu.txt | 3 +- .../bindings/i2c/i2c-imx-lpi2c.yaml | 7 +- .../bindings/serial/fsl-lpuart.yaml | 1 + arch/arm64/boot/dts/freescale/Makefile | 1 + .../boot/dts/freescale/imx8-ss-lsio.dtsi | 7 + arch/arm64/boot/dts/freescale/imx8dxl-evk.dts | 266 ++++++++++++++++++ .../boot/dts/freescale/imx8dxl-ss-adma.dtsi | 53 ++++ .../boot/dts/freescale/imx8dxl-ss-conn.dtsi | 137 +++++++++ .../boot/dts/freescale/imx8dxl-ss-ddr.dtsi | 36 +++ .../boot/dts/freescale/imx8dxl-ss-lsio.dtsi | 78 +++++ arch/arm64/boot/dts/freescale/imx8dxl.dtsi | 245 ++++++++++++++++ 11 files changed, 832 insertions(+), 2 deletions(-) create mode 100644 arch/arm64/boot/dts/freescale/imx8dxl-evk.dts create mode 100644 arch/arm64/boot/dts/freescale/imx8dxl-ss-adma.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8dxl-ss-conn.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8dxl-ss-ddr.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8dxl-ss-lsio.dtsi create mode 100644 arch/arm64/boot/dts/freescale/imx8dxl.dtsi