From patchwork Fri Jul 14 12:24:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Huqiang Qin X-Patchwork-Id: 703019 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 754B1C0015E for ; Fri, 14 Jul 2023 12:29:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235588AbjGNM3L (ORCPT ); Fri, 14 Jul 2023 08:29:11 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40874 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234655AbjGNM3I (ORCPT ); Fri, 14 Jul 2023 08:29:08 -0400 Received: from mail-sh.amlogic.com (mail-sh.amlogic.com [58.32.228.43]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5F9B43593; Fri, 14 Jul 2023 05:28:37 -0700 (PDT) Received: from rd02-sz.amlogic.software (10.28.11.83) by mail-sh.amlogic.com (10.18.11.5) with Microsoft SMTP Server id 15.1.2507.13; Fri, 14 Jul 2023 20:24:44 +0800 From: Huqiang Qin To: , , , , , , , , , CC: , , , , , Huqiang Qin Subject: [PATCH V3 0/2] Add pinctrl driver support for Amlogic C3 SoCs Date: Fri, 14 Jul 2023 20:24:39 +0800 Message-ID: <20230714122441.3098337-1-huqiang.qin@amlogic.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 X-Originating-IP: [10.28.11.83] Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org This patch adds pinctrl driver support for Amloigc C3 SoC (C308L and C302X) [PATCH 1/2]: V1 -> V2: Unchanged. V2 -> V3: Updated commit message, and compatible are sorted alphabetically. [PATCH 2/2]: V1 -> V2: Added a comma to the last item of the array and a period to the commit message. V2 -> V3: Ditto, and corrected license. Huqiang Qin (2): dt-bindings: pinctrl: Add compatibles for Amlogic C3 SoCs pinctrl: Add driver support for Amlogic C3 SoCs .../pinctrl/amlogic,meson-pinctrl-a1.yaml | 1 + drivers/pinctrl/meson/Kconfig | 6 + drivers/pinctrl/meson/Makefile | 1 + drivers/pinctrl/meson/pinctrl-amlogic-c3.c | 1108 +++++++++++++++++ include/dt-bindings/gpio/amlogic-c3-gpio.h | 72 ++ 5 files changed, 1188 insertions(+) create mode 100644 drivers/pinctrl/meson/pinctrl-amlogic-c3.c create mode 100644 include/dt-bindings/gpio/amlogic-c3-gpio.h base-commit: fe57d0d86f03a8b2afe2869a95477d0ed1824c96 Reviewed-by: Rob Herring