From patchwork Tue Dec 5 18:46:02 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Francesco Dolcini X-Patchwork-Id: 13480637 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 35B17C4167B for ; Tue, 5 Dec 2023 18:46:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=bAah4t3qtDzM5ZgFh23AYmOwe1DhCTMeZOXj401QVpo=; b=RMXmNQb0+ggZq5 JjvLwAAEUS/ZexwlmYd6ltYoSxrDTZV0LK1rLDvr9Vrnww9v/8RWYCOmtYem+OT4/kdpzj/s+r80X aTqT1b4SJqhtTrEzHDSrhxK3Zsop/LpyP65EtqGG7VPNV9fwWbghSK3PJ7Ma74lVbyEU/o+pMwxhi BeUVvZQxgmy78cX+CMkRkaW77vfLQXEDTIW8HxRrlwLzpHV+nCF2+nSGBW/jaRWHalPqvx1Uug5kI 2V89ZOkxNmiFQYTUfJc7ax0sP8QaUbFpQGTKafV0r9x7KDiHGzqyCccoJTnNlO2mtAbe70BRrS837 SzWCkJuZ8vRDqMxwmF/g==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1rAaR9-008Bu7-0Z; Tue, 05 Dec 2023 18:46:27 +0000 Received: from mail11.truemail.it ([217.194.8.81]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1rAaR3-008Bp2-1c for linux-arm-kernel@lists.infradead.org; Tue, 05 Dec 2023 18:46:24 +0000 Received: from francesco-nb.corp.toradex.com (31-10-206-125.static.upc.ch [31.10.206.125]) by mail11.truemail.it (Postfix) with ESMTPA id 9C0781F8F7; Tue, 5 Dec 2023 19:46:12 +0100 (CET) From: Francesco Dolcini To: Nishanth Menon , Vignesh Raghavendra , Tero Kristo , Rob Herring , Krzysztof Kozlowski , Conor Dooley Cc: Francesco Dolcini , linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v3 0/3] arm64: dts: ti: add verdin am62 mallow board Date: Tue, 5 Dec 2023 19:46:02 +0100 Message-Id: <20231205184605.35225-1-francesco@dolcini.it> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231205_104621_707414_CFC815BF X-CRM114-Status: UNSURE ( 7.51 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Francesco Dolcini Add Toradex Verdin AM62 Mallow carrier board support. Mallow is a low-cost carrier board in the Verdin family with a small form factor and build for volume production making it ideal for industrial and embedded applications. https://www.toradex.com/products/carrier-board/mallow-carrier-board v1: - https://lore.kernel.org/all/20231123112826.16549-1-francesco@dolcini.it/ v2: - https://lore.kernel.org/all/20231201145551.23337-1-francesco@dolcini.it/ - fixed temperature sensor compatible (s/tmp75c/tmp1075) - add Acked-by: Krzysztof v3: - remove TPM node Joao Paulo Goncalves (3): arm64: dts: ti: verdin-am62: improve spi1 chip-select pinctrl dt-bindings: arm: ti: add verdin am62 mallow board arm64: dts: ti: add verdin am62 mallow board .../devicetree/bindings/arm/ti/k3.yaml | 2 + arch/arm64/boot/dts/ti/Makefile | 2 + .../boot/dts/ti/k3-am62-verdin-mallow.dtsi | 188 ++++++++++++++++++ arch/arm64/boot/dts/ti/k3-am62-verdin.dtsi | 17 +- .../dts/ti/k3-am625-verdin-nonwifi-mallow.dts | 22 ++ .../dts/ti/k3-am625-verdin-wifi-mallow.dts | 22 ++ 6 files changed, 251 insertions(+), 2 deletions(-) create mode 100644 arch/arm64/boot/dts/ti/k3-am62-verdin-mallow.dtsi create mode 100644 arch/arm64/boot/dts/ti/k3-am625-verdin-nonwifi-mallow.dts create mode 100644 arch/arm64/boot/dts/ti/k3-am625-verdin-wifi-mallow.dts