From patchwork Tue Sep 7 10:27:17 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bert Vermeulen X-Patchwork-Id: 507646 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-11.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 58618C433F5 for ; Tue, 7 Sep 2021 10:27:33 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4206F610E9 for ; Tue, 7 Sep 2021 10:27:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232704AbhIGK2i (ORCPT ); Tue, 7 Sep 2021 06:28:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43826 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S245240AbhIGK2g (ORCPT ); Tue, 7 Sep 2021 06:28:36 -0400 Received: from yawp.biot.com (yawp.biot.com [IPv6:2a01:4f8:10a:8e::fce2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8C3E2C061575 for ; Tue, 7 Sep 2021 03:27:30 -0700 (PDT) Received: from debian-spamd by yawp.biot.com with sa-checked (Exim 4.93) (envelope-from ) id 1mNYK7-00CGwh-Qv for devicetree@vger.kernel.org; Tue, 07 Sep 2021 12:27:28 +0200 Received: from [2a02:578:460c:1:ae1f:6bff:fed1:9ca8] (helo=sumner.biot.com) by yawp.biot.com with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1mNYK7-00CGwd-MI; Tue, 07 Sep 2021 12:27:27 +0200 Received: from bert by sumner.biot.com with local (Exim 4.93) (envelope-from ) id 1mNYK6-000COX-TH; Tue, 07 Sep 2021 12:27:26 +0200 From: Bert Vermeulen Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, John Crispin , Bert Vermeulen Subject: [PATCH v2 0/5] Add support for Airoha EN7523 SoC Date: Tue, 7 Sep 2021 12:27:17 +0200 Message-Id: <20210907102722.47543-1-bert@biot.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 To: unlisted-recipients:; (no To-header on input) Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This patchset adds support for the Airoha EN7523 SoC, intended primarily for xPON/xDSL routers. v2: - The company changed name from EcoNet to Airoha. - Removed Makefile text offset in lieu of /memreserve/ DTS node (see https://lists.infradead.org/pipermail/linux-arm-kernel/2021-September/681898.html) - DTS: Moved /memory node, fixed CPU compatible, removed GIC_CPU_MASK_SIMPLE from timer interrupts node, changed timer compatible, and minor fixes. John Crispin (5): dt-bindings: Add vendor prefix for Airoha dt-bindings: arm: airoha: Add binding for EN7523 SoC and EVB ARM: dts: Add basic support for Airoha EN7523 ARM: Add basic support for Airoha EN7523 SoC ARM: multi_v7_defconfig: Add support for Airoha EN7523 SoC .../devicetree/bindings/arm/airoha.yaml | 27 +++++ .../devicetree/bindings/vendor-prefixes.yaml | 2 + arch/arm/Kconfig | 14 +++ arch/arm/boot/dts/Makefile | 2 + arch/arm/boot/dts/en7523-evb.dts | 26 ++++ arch/arm/boot/dts/en7523.dtsi | 114 ++++++++++++++++++ arch/arm/configs/multi_v7_defconfig | 2 + 7 files changed, 187 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/airoha.yaml create mode 100644 arch/arm/boot/dts/en7523-evb.dts create mode 100644 arch/arm/boot/dts/en7523.dtsi