From mboxrd@z Thu Jan 1 00:00:00 1970 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 20F59CA0EEB for ; Tue, 19 Aug 2025 15:58: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:List-Subscribe:List-Help :List-Post:List-Archive:List-Unsubscribe:List-Id:Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Owner; bh=Wcn2XFRfayoF5/aa1f+pIf6NxtlRpXVYThAIGmFBBvA=; b=KCO+VrhMLGt89dDdbeAbhJSd0U Mp4x9YRxl9bw0pDZFiCH6AOVqqHkfAEEQRX3CO/254jpTNR6JGlrSs0yjKZY0wpRWxtLQ14jVR6EY V0+bitsacIvdCe+VChDQktmgTb/MYTq2pfwNPUTz33qFYOwYKhdrXOvaRmDvyva9pv8LOg2bfu7G8 yqbHr2prw2qqp8Q1Hf1D/x/Ke/R623es1cCRWn6mKkW6wl0xgp1Llkq/VoE9qt04GHHNx50smjbJ4 N0JtFGEDz42owJKG2RBBIx2hERIrornyAVuUj6o5+Dxd9dBkpn17CAvwZBYfdwMZN033dfJ5CYYge FK3Y4kzg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.98.2 #2 (Red Hat Linux)) id 1uoOja-0000000Ax8t-15IJ; Tue, 19 Aug 2025 15:58:50 +0000 Received: from mail.grinn-global.com ([77.55.128.204]) by bombadil.infradead.org with esmtps (Exim 4.98.2 #2 (Red Hat Linux)) id 1uoM0H-0000000AWM0-0wVj; Tue, 19 Aug 2025 13:03:55 +0000 X-Virus-Scanned: by amavisd-new using ClamAV (9) Received: from mateusz.int.grinn-global.com (f90-187.icpnet.pl [46.228.90.187]) by server220076.nazwa.pl (Postfix) with ESMTP id 7FA421BE387; Tue, 19 Aug 2025 15:03:45 +0200 (CEST) From: Mateusz Koza To: angelogioacchino.delregno@collabora.com, robh@kernel.org Cc: krzk+dt@kernel.org, conor+dt@kernel.org, matthias.bgg@gmail.com, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, devicetree@vger.kernel.org, marcin.czarnecki@grinn-global.com, b.bilas@grinn-global.com, Mateusz Koza Subject: [PATCH v2 0/4] Add support for Grinn GenioSBC-510/700 boards Date: Tue, 19 Aug 2025 15:02:27 +0200 Message-ID: <20250819130231.181571-1-mateusz.koza@grinn-global.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-NA-AI-Spam-Probability: 0.48 X-NA-AI-Is-Spam: no X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20250819_060353_443318_F67BCC6D X-CRM114-Status: GOOD ( 10.58 ) 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 This patch series adds support for Grinn GenioSBC-510 and GenioSBC-700 boards based on MediaTek MT8370 and MT8390 SoCs, respectively. It includes device tree files for both boards, updates to the device tree bindings, and necessary modifications to the Makefile. As far as I know, has access to the schematics for these boards, as we've shared them under NDA with Collabora. Signed-off-by: Mateusz Koza --- v2: Fixed the subject prefixes, Fixed alignment in dts files, Added missing SPDX-License-Identifier, Fixed the ordering in dt-bindings, Dropped redundant info from commit messages, Run checkpatch.pl on the patchset and fixed the issues, as suggested by Krzysztof Kozlowski . --- Bartosz Bilas (1): arm64: dts: mediatek: mt8370-grinn-genio-510-sbc: Add Grinn GenioSBC-510 Mateusz Koza (3): arm64: dts: mediatek: mt8390-genio-700-evk: Add Grinn GenioSBC-700 dt-bindings: arm: mediatek: Add grinn,genio-700-sbc dt-bindings: arm: mediatek: Add grinn,genio-510-sbc .../devicetree/bindings/arm/mediatek.yaml | 2 + arch/arm64/boot/dts/mediatek/Makefile | 2 + .../mediatek/mt8370-grinn-genio-510-sbc.dts | 19 + .../mediatek/mt8390-grinn-genio-700-sbc.dts | 19 + .../dts/mediatek/mt8390-grinn-genio-sbc.dtsi | 674 ++++++++++++++++++ .../dts/mediatek/mt8390-grinn-genio-som.dtsi | 209 ++++++ 6 files changed, 925 insertions(+) create mode 100644 arch/arm64/boot/dts/mediatek/mt8370-grinn-genio-510-sbc.dts create mode 100644 arch/arm64/boot/dts/mediatek/mt8390-grinn-genio-700-sbc.dts create mode 100644 arch/arm64/boot/dts/mediatek/mt8390-grinn-genio-sbc.dtsi create mode 100644 arch/arm64/boot/dts/mediatek/mt8390-grinn-genio-som.dtsi -- 2.43.0