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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 25293C433FE for ; Thu, 25 Nov 2021 10:00:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1354406AbhKYKDJ (ORCPT ); Thu, 25 Nov 2021 05:03:09 -0500 Received: from mx.socionext.com ([202.248.49.38]:39795 "EHLO mx.socionext.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1348778AbhKYKBJ (ORCPT ); Thu, 25 Nov 2021 05:01:09 -0500 Received: from unknown (HELO kinkan2-ex.css.socionext.com) ([172.31.9.52]) by mx.socionext.com with ESMTP; 25 Nov 2021 18:57:57 +0900 Received: from mail.mfilter.local (m-filter-2 [10.213.24.62]) by kinkan2-ex.css.socionext.com (Postfix) with ESMTP id EA3E6205A544; Thu, 25 Nov 2021 18:57:56 +0900 (JST) Received: from 172.31.9.53 (172.31.9.53) by m-FILTER with ESMTP; Thu, 25 Nov 2021 18:57:56 +0900 Received: from yuzu2.css.socionext.com (yuzu2 [172.31.9.57]) by iyokan2.css.socionext.com (Postfix) with ESMTP id 8B3E2B62AB; Thu, 25 Nov 2021 18:57:56 +0900 (JST) Received: from scorpio.e01.socionext.com (aries.syh.socionext.com [10.213.112.88]) by yuzu2.css.socionext.com (Postfix) with ESMTP id 6E60D10D20; Thu, 25 Nov 2021 18:57:56 +0900 (JST) From: Sugaya Taichi To: Linus Walleij , Rob Herring Cc: devicetree@vger.kernel.org, linux-gpio@vger.kernel.org, linux-kernel@vger.kernel.org, orito.takao@socionext.com, sugaya.taichi@socionext.com, Masami Hiramatsu , Jassi Brar Subject: [PATCH v3 0/2] pinctrl: milbeaut: Add Milbeaut M10V pinctrl Date: Thu, 25 Nov 2021 18:57:54 +0900 Message-Id: <1637834276-10466-1-git-send-email-sugaya.taichi@socionext.com> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This third patch adds a pinctrl driver a part of basic support for Milbeaut M10V. At v2 patch, I tried to add basic pinctrl support and IRQs pin mapping additionally. Here v3, to be a pure basic pinctrl support patch, I dropped the function about IRQs pin mapping. v2: https://lkml.org/lkml/2019/2/8/301 Changes: v2 -> v3 - add bindings - change author - drop functions about IRQs mapping - refine whole of the code v1 -> v2 - none Jassi Brar (1): pinctrl: milbeaut: Add Milbeaut M10V pinctrl Sugaya Taichi (1): dt-bindings: pinctrl: add bindings for Milbeaut pin controller .../pinctrl/socionext,milbeaut-pinctrl.yaml | 51 +++ drivers/pinctrl/Kconfig | 8 + drivers/pinctrl/Makefile | 1 + drivers/pinctrl/pinctrl-milbeaut.c | 406 +++++++++++++++++++++ 4 files changed, 466 insertions(+) create mode 100644 Documentation/devicetree/bindings/pinctrl/socionext,milbeaut-pinctrl.yaml create mode 100644 drivers/pinctrl/pinctrl-milbeaut.c -- 2.7.4