All of lore.kernel.org
 help / color / mirror / Atom feed
From: luyulin <luyulin@eswincomputing.com>
To: linus.walleij@linaro.org, robh@kernel.org, krzk+dt@kernel.org,
	conor+dt@kernel.org, linux-gpio@vger.kernel.org,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
	kees@kernel.org, gustavoars@kernel.org, brgl@bgdev.pl,
	linux-hardening@vger.kernel.org
Cc: zhengyu@eswincomputing.com, ningyu@eswincomputing.com,
	huangyifeng@eswincomputing.com, linmin@eswincomputing.com,
	fenglin@eswincomputing.com, lianghujun@eswincomputing.com,
	luyulin <luyulin@eswincomputing.com>
Subject: [PATCH 0/2]
Date: Tue,  6 May 2025 17:08:44 +0800	[thread overview]
Message-ID: <20250506090844.1516-1-luyulin@eswincomputing.com> (raw)

  This patch introduces a driver for the Eswin eic7700 SoC pinctrl
  controller, adding support for the pinctrl functionality in the Linux
  kernel. The driver provides basic functionality to manage and control
  the pinctrl signals for the eic7700 SoC.

  The driver integrates with the Linux pinctrl subsystem, enabling kernel
  code to trigger pinctrl operations on hardware and ensuring support for
  pin multiplexing and pin configuration.

  Features:

    Implements support for the Eswin eic7700 SoC pinctrl controller.
    Provides API to manage pinctrl for the eic7700 SoC.
    Integration with the Linux pinctrl subsystem for consistency and
    scalability.

  Supported chips:
    Eswin eic7700 SoC.

  Test:
    I tested this patch on the Sifive HiFive Premier P550 (which uses
    the EIC7700 SoC), including system boot, networking, EMMC, display,
    and other peripherals. The drivers for these modules all use the
    pinctrl module, so this verifies that this pinctrl driver
    patch is working properly.

luyulin (2):
  dt-bindings: pinctrl: eswin: Document for eic7700 SoC
  pinctrl: eswin: Add eic7700 pinctrl driver

 .../pinctrl/eswin,eic7700-pinctrl.yaml        | 156 ++++
 drivers/pinctrl/Kconfig                       |  11 +
 drivers/pinctrl/Makefile                      |   1 +
 drivers/pinctrl/pinctrl-eic7700.c             | 701 ++++++++++++++++++
 4 files changed, 869 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/eswin,eic7700-pinctrl.yaml
 create mode 100644 drivers/pinctrl/pinctrl-eic7700.c

-- 
2.25.1


             reply	other threads:[~2025-05-06  9:09 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-06  9:08 luyulin [this message]
2025-05-06  9:11 ` [PATCH 1/2] dt-bindings: pinctrl: eswin: Document for eic7700 SoC luyulin
2025-05-06 11:06   ` Krzysztof Kozlowski
2025-05-06  9:12 ` [PATCH 2/2] pinctrl: eswin: Add eic7700 pinctrl driver luyulin
2025-05-06 11:08   ` Krzysztof Kozlowski
2025-05-08  5:42   ` kernel test robot
  -- strict thread matches above, loose matches on Subject: below --
2025-12-08 20:03 [PATCH 0/2] Sergey Shtylyov
2025-12-08 20:07 ` Sergey Shtylyov
2025-06-27  2:50 Rex Chen
2025-01-09 10:18 Patrice Chotard
2025-01-09 10:22 ` Patrice CHOTARD
2024-10-03  3:23 Finn Thain
2023-05-23 21:39 Pranav Prasad
2022-10-25  0:07 Thinh Nguyen
2022-03-17 14:36 Laurent Pinchart
2022-01-07  9:57 Zhenneng Li
2022-01-07  9:57 ` Zhenneng Li
2022-01-07  9:57 ` Zhenneng Li
2022-01-07 22:51 ` Rodrigo Siqueira Jordao
2022-01-07 22:51   ` Rodrigo Siqueira Jordao
2022-01-07 22:51   ` Rodrigo Siqueira Jordao
2021-10-26 15:27 Antoniu Miclaus
2017-12-18 22:12 Amanda Brindle
2018-01-14  9:09 ` Richard Purdie
2017-04-27 13:29 Benjamin Gaignard
2017-03-01  9:35 Jim Qu
2014-05-16 10:15 Vadim Suraev
2014-05-15 21:21 Vadim Suraev
     [not found] ` <1401830433-25071-1-git-send-email-vadim.suraev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2014-05-15 21:33   ` Thomas Monjalon
2013-08-27  6:02 [PATCH] ARM: i.MX6: dts: change iomuxc pinctrl config to match Rev. 0 IMX6DQRM Huang Shijie
2013-08-28  3:17 ` [PATCH 0/2] alison_chaiken at mentor.com
2013-08-28  3:17   ` alison_chaiken
2013-06-10 14:05 Dolev Raviv
2013-04-21  9:55 dmitry pervushin
2009-06-04 11:07 Pablo Neira Ayuso

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250506090844.1516-1-luyulin@eswincomputing.com \
    --to=luyulin@eswincomputing.com \
    --cc=brgl@bgdev.pl \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=fenglin@eswincomputing.com \
    --cc=gustavoars@kernel.org \
    --cc=huangyifeng@eswincomputing.com \
    --cc=kees@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=lianghujun@eswincomputing.com \
    --cc=linmin@eswincomputing.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@vger.kernel.org \
    --cc=linux-hardening@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ningyu@eswincomputing.com \
    --cc=robh@kernel.org \
    --cc=zhengyu@eswincomputing.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.