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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B2594C433EF for ; Thu, 14 Oct 2021 07:50:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 8DF0B610E8 for ; Thu, 14 Oct 2021 07:50:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229970AbhJNHwr (ORCPT ); Thu, 14 Oct 2021 03:52:47 -0400 Received: from mailgw01.mediatek.com ([216.200.240.184]:7858 "EHLO mailgw01.mediatek.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229551AbhJNHwq (ORCPT ); Thu, 14 Oct 2021 03:52:46 -0400 X-UUID: 8eb9142d485d40af8b914cd202cf3110-20211014 X-UUID: 8eb9142d485d40af8b914cd202cf3110-20211014 Received: from mtkcas66.mediatek.inc [(172.29.193.44)] by mailgw01.mediatek.com (envelope-from ) (musrelay.mediatek.com ESMTP with TLSv1.2 ECDHE-RSA-AES256-SHA384 256/256) with ESMTP id 679964822; Thu, 14 Oct 2021 00:46:32 -0700 Received: from mtkcas10.mediatek.inc (172.21.101.39) by MTKMBS62DR.mediatek.inc (172.29.94.18) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Thu, 14 Oct 2021 00:44:25 -0700 Received: from mtksdccf07.mediatek.inc (172.21.84.99) by mtkcas10.mediatek.inc (172.21.101.73) with Microsoft SMTP Server id 15.0.1497.2 via Frontend Transport; Thu, 14 Oct 2021 15:44:18 +0800 From: Sam Shih To: Rob Herring , Matthias Brugger , Hsin-Yi Wang , Enric Balletbo i Serra , Fabien Parent , Seiya Wang , Sean Wang , , , , CC: John Crispin , Ryder Lee , Sam Shih Subject: [PATCH v6 0/3] Add basic SoC support for mediatek mt7986 Date: Thu, 14 Oct 2021 15:44:00 +0800 Message-ID: <20211014074403.17346-1-sam.shih@mediatek.com> X-Mailer: git-send-email 2.18.0 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit X-MTK: N Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This patch adds basic SoC support for Mediatek's new 4-core SoC, MT7986, which is mainly for wifi-router application. --- v6: separate basic part into a single patch series According to the maintainer’s suggestion, this patch splits the previous thread into independent patch series. This patch include basic device support. Original thread: https://lore.kernel.org/all/20210914085137.31761-1-sam.shih@mediatek.com/ --- Sam Shih (3): dt-bindings: arm64: dts: mediatek: Add mt7986 series arm64: dts: mediatek: add basic mt7986a support arm64: dts: mediatek: add basic mt7986b support .../devicetree/bindings/arm/mediatek.yaml | 8 + arch/arm64/boot/dts/mediatek/Makefile | 2 + arch/arm64/boot/dts/mediatek/mt7986a-rfb.dts | 34 ++++ arch/arm64/boot/dts/mediatek/mt7986a.dtsi | 149 ++++++++++++++++++ arch/arm64/boot/dts/mediatek/mt7986b-rfb.dts | 26 +++ arch/arm64/boot/dts/mediatek/mt7986b.dtsi | 149 ++++++++++++++++++ 6 files changed, 368 insertions(+) create mode 100644 arch/arm64/boot/dts/mediatek/mt7986a-rfb.dts create mode 100644 arch/arm64/boot/dts/mediatek/mt7986a.dtsi create mode 100644 arch/arm64/boot/dts/mediatek/mt7986b-rfb.dts create mode 100644 arch/arm64/boot/dts/mediatek/mt7986b.dtsi -- 2.29.2