From patchwork Mon Jul 10 04:28:10 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Huqiang Qin X-Patchwork-Id: 13306233 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 313D0EB64DC for ; Mon, 10 Jul 2023 04:29:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Date:Subject:CC :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=/P/lyFE0V5daiUPkRf6QosNHHjNiujHMLOpWxY+Fpa0=; b=tSLB6IKTqT2sbA MHxDztaltQttTHx09cDhS9V6FUO5tDVfEjgDjVSpE4ncpU/Wn3SuU0AXsYCzrt2Ja8K7aPtQrFet/ 14AVU8ixbG3gECOozCZhIsaiiTcfyIfUM9YOdiKQmzKQxeVmAXCrJ+y8RelIN/63zZ2twI5XwGjhk fgZH7bEv2o12vo2KGnx54WPu9Qanqik/L7T0WJTHl12pk6KuBxUuKOwbgLs6R3iW7VeHQ2WmLdu4N wJSbf788rxkJukZt7Wm11Mx9Tdj4O2Rf8WBqz0d5UjUDAefSJdOze3sP8CsIILGJrA9wO+ibi9OkU vx+jRvsOlRyuN6YSk91w==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qIiVv-00ANeM-1R; Mon, 10 Jul 2023 04:28:43 +0000 Received: from mail-sh.amlogic.com ([58.32.228.43]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1qIiVs-00ANbm-2R; Mon, 10 Jul 2023 04:28:41 +0000 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; Mon, 10 Jul 2023 12:28:23 +0800 From: Huqiang Qin To: , , , , , , , , , CC: , , , , , Huqiang Qin Subject: [PATCH V2 0/2] Add pinctrl driver support for Amlogic C3 SoCs Date: Mon, 10 Jul 2023 12:28:10 +0800 Message-ID: <20230710042812.2007928-1-huqiang.qin@amlogic.com> X-Mailer: git-send-email 2.37.1 MIME-Version: 1.0 X-Originating-IP: [10.28.11.83] X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230709_212840_819123_484FA190 X-CRM114-Status: UNSURE ( 6.78 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org This patch adds pinctrl driver support for Amloigc C3 SoC (C308L and C302X) Huqiang Qin (2): dt-bindings: gpio: Add a header file 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