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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3B245C433F5 for ; Wed, 6 Oct 2021 11:10:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 28C5C610CC for ; Wed, 6 Oct 2021 11:10:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238231AbhJFLMS (ORCPT ); Wed, 6 Oct 2021 07:12:18 -0400 Received: from mx.socionext.com ([202.248.49.38]:59897 "EHLO mx.socionext.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S238267AbhJFLMA (ORCPT ); Wed, 6 Oct 2021 07:12:00 -0400 Received: from unknown (HELO kinkan2-ex.css.socionext.com) ([172.31.9.52]) by mx.socionext.com with ESMTP; 06 Oct 2021 20:10:07 +0900 Received: from mail.mfilter.local (m-filter-1 [10.213.24.61]) by kinkan2-ex.css.socionext.com (Postfix) with ESMTP id 4566F2059034; Wed, 6 Oct 2021 20:10:07 +0900 (JST) Received: from 172.31.9.51 (172.31.9.51) by m-FILTER with ESMTP; Wed, 6 Oct 2021 20:10:07 +0900 Received: from plum.e01.socionext.com (unknown [10.212.243.119]) by kinkan2.css.socionext.com (Postfix) with ESMTP id CD3E8B62B7; Wed, 6 Oct 2021 20:10:06 +0900 (JST) From: Kunihiko Hayashi To: Linus Walleij , Rob Herring , Masami Hiramatsu Cc: linux-gpio@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Kunihiko Hayashi Subject: [PATCH v2 0/3] pinctrl: uniphier: Introduce some features and NX1 support Date: Wed, 6 Oct 2021 20:10:03 +0900 Message-Id: <1633518606-8298-1-git-send-email-hayashi.kunihiko@socionext.com> X-Mailer: git-send-email 2.7.4 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This series includes the patches to add audio pinmux settings for LD11/LD20/PXs3 SoCs and basic pinmux settings for new UniPhier NX1 SoC. NX1 SoC also has the same kinds of pinmux settings as the other UniPhier SoCs. --- Change since v1: - Remove non-existent groups "usb2" and "usb3" in NX1 patch Kunihiko Hayashi (3): pinctrl: uniphier: Add extra audio pinmux settings for LD11, LD20 and PXs3 SoCs dt-bindings: pinctrl: uniphier: Add NX1 pinctrl binding pinctrl: uniphier: Add UniPhier NX1 pinctrl driver .../pinctrl/socionext,uniphier-pinctrl.yaml | 1 + drivers/pinctrl/uniphier/Kconfig | 4 + drivers/pinctrl/uniphier/Makefile | 1 + drivers/pinctrl/uniphier/pinctrl-uniphier-ld11.c | 18 + drivers/pinctrl/uniphier/pinctrl-uniphier-ld20.c | 35 ++ drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c | 489 +++++++++++++++++++++ drivers/pinctrl/uniphier/pinctrl-uniphier-pxs3.c | 40 ++ 7 files changed, 588 insertions(+) create mode 100644 drivers/pinctrl/uniphier/pinctrl-uniphier-nx1.c -- 2.7.4