From patchwork Thu Jul 20 18:20:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Brandt X-Patchwork-Id: 9855563 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 6FD9160393 for ; Thu, 20 Jul 2017 18:22:18 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6679E287FF for ; Thu, 20 Jul 2017 18:22:18 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 5AF5B28822; Thu, 20 Jul 2017 18:22:18 +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=-6.9 required=2.0 tests=BAYES_00,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 C27A2287FF for ; Thu, 20 Jul 2017 18:22:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935532AbdGTSWQ (ORCPT ); Thu, 20 Jul 2017 14:22:16 -0400 Received: from relmlor3.renesas.com ([210.160.252.173]:63705 "EHLO relmlie2.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S933267AbdGTSWQ (ORCPT ); Thu, 20 Jul 2017 14:22:16 -0400 Received: from unknown (HELO relmlir2.idc.renesas.com) ([10.200.68.152]) by relmlie2.idc.renesas.com with ESMTP; 21 Jul 2017 03:22:14 +0900 Received: from relmlii2.idc.renesas.com (relmlii2.idc.renesas.com [10.200.68.66]) by relmlir2.idc.renesas.com (Postfix) with ESMTP id 98B2D4B797; Fri, 21 Jul 2017 03:22:14 +0900 (JST) X-IronPort-AV: E=Sophos;i="5.40,384,1496070000"; d="scan'208";a="251766942" Received: from unknown (HELO rtamta01.rta.renesas.com) ([143.103.48.75]) by relmlii2.idc.renesas.com with ESMTP; 21 Jul 2017 03:22:13 +0900 Received: from localhost.localdomain (unknown [172.27.49.140]) by rtamta01.rta.renesas.com (Postfix) with ESMTP id 581E819A; Thu, 20 Jul 2017 18:22:09 +0000 (UTC) From: Chris Brandt To: Simon Horman , Geert Uytterhoeven , Rob Herring , Mark Rutland Cc: devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, Chris Brandt Subject: [PATCH 1/4] arm: dts: rskrza1: Add SCIF2 pin group Date: Thu, 20 Jul 2017 13:20:16 -0500 Message-Id: <20170720182019.85075-2-chris.brandt@renesas.com> X-Mailer: git-send-email 2.13.0 In-Reply-To: <20170720182019.85075-1-chris.brandt@renesas.com> References: <20170720182019.85075-1-chris.brandt@renesas.com> 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 Add pin configuration for SCIF2 serial console interface. Signed-off-by: Chris Brandt --- arch/arm/boot/dts/r7s72100-rskrza1.dts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/arch/arm/boot/dts/r7s72100-rskrza1.dts b/arch/arm/boot/dts/r7s72100-rskrza1.dts index 72df20a04320..5fac0f82d742 100644 --- a/arch/arm/boot/dts/r7s72100-rskrza1.dts +++ b/arch/arm/boot/dts/r7s72100-rskrza1.dts @@ -10,6 +10,7 @@ /dts-v1/; #include "r7s72100.dtsi" +#include / { model = "RSKRZA1"; @@ -47,6 +48,15 @@ clock-frequency = <32768>; }; +&pinctrl { + + /* Serial Console */ + scif2_pins: serial2 { + pinmux = , /* TxD2 */ + ; /* RxD2 */ + }; +}; + &mtu2 { status = "okay"; }; @@ -78,5 +88,7 @@ }; &scif2 { + pinctrl-names = "default"; + pinctrl-0 = <&scif2_pins>; status = "okay"; };