From patchwork Thu Jun 14 11:00:16 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michel Pollet X-Patchwork-Id: 929352 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=linux-gpio-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=bp.renesas.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 41614M0N5lz9ry1 for ; Thu, 14 Jun 2018 21:05:22 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755000AbeFNLFV (ORCPT ); Thu, 14 Jun 2018 07:05:21 -0400 Received: from relmlor4.renesas.com ([210.160.252.174]:15754 "EHLO relmlie3.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1755180AbeFNLFU (ORCPT ); Thu, 14 Jun 2018 07:05:20 -0400 Received: from unknown (HELO relmlir1.idc.renesas.com) ([10.200.68.151]) by relmlie3.idc.renesas.com with ESMTP; 14 Jun 2018 20:05:19 +0900 Received: from relmlii1.idc.renesas.com (relmlii1.idc.renesas.com [10.200.68.65]) by relmlir1.idc.renesas.com (Postfix) with ESMTP id 106287549B; Thu, 14 Jun 2018 20:05:19 +0900 (JST) X-IronPort-AV: E=Sophos;i="5.51,222,1526310000"; d="scan'208";a="282525840" Received: from unknown (HELO be1yocto.ree.adwin.renesas.com) ([172.29.43.62]) by relmlii1.idc.renesas.com with ESMTP; 14 Jun 2018 20:05:16 +0900 From: Michel Pollet To: linux-renesas-soc@vger.kernel.org, Simon Horman Cc: phil.edworthy@renesas.com, Michel Pollet , Michel Pollet , Linus Walleij , Rob Herring , Mark Rutland , linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v1 0/5] Renesas R9A06G032 PINCTRL Driver Date: Thu, 14 Jun 2018 12:00:16 +0100 Message-Id: <1528974029-29617-1-git-send-email-michel.pollet@bp.renesas.com> X-Mailer: git-send-email 2.7.4 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org *WARNING* -- this requires: + R9A06G032 base patch v9 + R9A06G032 SMP patch v5 This implements the pinctrl driver for the R9A06G032. Apart from the file names, I had to keep using RZN1_ as the headers etc are already extensively in use -- u-boot, vmworks, cm3 code and threadx use these constants and the base support to implement pinmux on this SoC. Also, there is an existing pretty extensive webapp that allows configuring the pinmux externally that generates either source code (for non DT based OSes) or an included .dtsi file for board specific configs. Note, I used renesas,rzn1-pinmux node to specify the pinmux constants, and I also don't use some of the properties documented in pinctrl-bindings.txt on purpose, as they are too limited for my use (I need to be able to set, clear, ignore or reset level, pull up/down and function as the pinmux might be set by another OS/core running concurently). v1 + Just supports fhe UART0 on the DB board. Michel Pollet (5): dt-bindings: Add the r9a06g032-pinctrl.h file dt-bindings: clock: renesas,r9a06g032-pinctrl: documentation pinctrl: renesas: Renesas R9A06G032 pinctrl driver ARM: dts: Renesas R9A06G032 pinctrl node ARM: dts: Renesas RZN1D-DB Board: Add UART0 pinmux node .../bindings/pinctrl/renesas,r9a06g032-pinctrl.txt | 124 +++ arch/arm/boot/dts/r9a06g032-rzn1d400-db.dts | 13 + arch/arm/boot/dts/r9a06g032.dtsi | 8 + drivers/pinctrl/Kconfig | 10 + drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-r9a06g032.c | 890 +++++++++++++++++++++ include/dt-bindings/pinctrl/r9a06g032-pinctrl.h | 191 +++++ 7 files changed, 1237 insertions(+) create mode 100644 Documentation/devicetree/bindings/pinctrl/renesas,r9a06g032-pinctrl.txt create mode 100644 drivers/pinctrl/pinctrl-r9a06g032.c create mode 100644 include/dt-bindings/pinctrl/r9a06g032-pinctrl.h