From patchwork Wed Jul 25 21:22:17 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Brandt X-Patchwork-Id: 10544809 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 2EE0E157A for ; Wed, 25 Jul 2018 21:22:43 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1E853268AE for ; Wed, 25 Jul 2018 21:22:43 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 120A92984D; Wed, 25 Jul 2018 21:22:43 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 902DA28D5F for ; Wed, 25 Jul 2018 21:22:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730337AbeGYWgM (ORCPT ); Wed, 25 Jul 2018 18:36:12 -0400 Received: from relmlor3.renesas.com ([210.160.252.173]:47421 "EHLO relmlie2.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1731220AbeGYWgM (ORCPT ); Wed, 25 Jul 2018 18:36:12 -0400 Received: from unknown (HELO relmlir2.idc.renesas.com) ([10.200.68.152]) by relmlie2.idc.renesas.com with ESMTP; 26 Jul 2018 06:22:38 +0900 Received: from relmlii2.idc.renesas.com (relmlii2.idc.renesas.com [10.200.68.66]) by relmlir2.idc.renesas.com (Postfix) with ESMTP id 2256660A05; Thu, 26 Jul 2018 06:22:38 +0900 (JST) X-IronPort-AV: E=Sophos;i="5.51,401,1526310000"; d="scan'208";a="287891671" Received: from unknown (HELO rtamta01.rta.renesas.com) ([143.103.48.75]) by relmlii2.idc.renesas.com with ESMTP; 26 Jul 2018 06:22:36 +0900 Received: from ubuntu.localdomain (unknown [143.103.58.206]) by rtamta01.rta.renesas.com (Postfix) with ESMTP id A3F5FD5; Wed, 25 Jul 2018 21:22:30 +0000 (UTC) From: Chris Brandt To: Simon Horman , Magnus Damm , Rob Herring , Mark Rutland Cc: Geert Uytterhoeven , linux-renesas-soc@vger.kernel.org, devicetree@vger.kernel.org, Chris Brandt Subject: [PATCH v2 0/3] ARM: shmobile: Add support for RZ/A2 Date: Wed, 25 Jul 2018 16:22:17 -0500 Message-Id: <20180725212220.44525-1-chris.brandt@renesas.com> X-Mailer: git-send-email 2.16.1 Sender: linux-renesas-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Introduce RZ/A2 (R7S9210) as an SoC that can be selected. There is no DT mainlined yet, so this is what the entry would look like for the BSID register: bsid: chipid@fcfe8004 { compatible = "renesas,bsid"; reg = <0xfcfe8004 4>; }; Chris Brandt (3): ARM: shmobile: Add basic RZ/A2 SoC support soc: renesas: identify RZ/A2 dt-bindings: arm: Document RZ/A2 SoC DT bindings Documentation/devicetree/bindings/arm/shmobile.txt | 4 +- arch/arm/mach-shmobile/Kconfig | 6 +++ arch/arm/mach-shmobile/Makefile | 1 + arch/arm/mach-shmobile/setup-r7s9210.c | 27 ++++++++++ drivers/soc/renesas/renesas-soc.c | 60 +++++++++++++++++----- 5 files changed, 85 insertions(+), 13 deletions(-) create mode 100644 arch/arm/mach-shmobile/setup-r7s9210.c