From: Dong Aisheng <aisheng.dong@nxp.com>
To: linux-gpio@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, linus.walleij@linaro.org,
shawnguo@kernel.org, aisheng.dong@nxp.com, dongas86@gmail.com,
stefan@agner.ch, ping.bai@nxp.com, fugang.duan@nxp.com,
kernel@pengutronix.de
Subject: [PATCH V4 RESEND 0/6] pinctrl: imx: add imx7ulp pinctrl support
Date: Tue, 25 Jul 2017 21:41:50 +0800 [thread overview]
Message-ID: <1500990116-3620-1-git-send-email-aisheng.dong@nxp.com> (raw)
This is a rebased V4 version against 4.13-rc2 with latest ACKs collected.
Linus,
I saw your tree still has not rebased to 4.13-rc2, so i generated the
patch series based on Linus 4.13-rc2 branch.
Supposed it should be easy to be merged into your branch once you done
the rebase.
i.MX 7ULP has three IOMUXC instances: IOMUXC0 for M4 ports,
IOMUXC1 for A7 ports and IOMUXC DDR for DDR interface.
This patch series adds the IOMUXC1 support for A7.
It only supports generic pin config.
ChangeLog:
v3->v4:
This patch series is a combine of the following patches per
Maintainer's request.
[PATCH V3 1/2] dt-bindings: pinctrl: add imx7ulp pinctrl binding doc
https://www.spinics.net/lists/arm-kernel/msg582995.html
[PATCH V3 2/2] pinctrl: imx: add imx7ulp driver
https://www.spinics.net/lists/arm-kernel/msg582996.html
[PATCH 0/2] pinctrl: pinctrl-imx: add gpio support for mx7ulp
https://www.spinics.net/lists/arm-kernel/msg580993.html
Detailed changes as follows:
* change pad name to IMX7ULP_PAD_X style
* switch to generic pinmux property
* remove input/output generic property decodes as the standard
input/out property name are still under discussing.
It does not affect the normal GPIO function as imx7ulp pinctrl
driver supports gpio_set_direction which will set input/output enable
automatically.
See: [PATCH V4 7/7] pinctrl: pinctrl-imx7ulp: add gpio_set_direction
It will be added back later for other pads once the standard property
is determined.
Dong Aisheng (7):
dt-bindings: pinctrl: extend the pinmux property to support integers
array
Dong Aisheng (6):
dt-bindings: pinctrl: add imx7ulp pinctrl binding doc
pinctrl: imx: switch to use the generic pinmux property
pinctrl: imx: add imx7ulp driver
pinctrl: imx: remove gpio_request_enable and gpio_disable_free
pinctrl: imx: make imx_pmx_ops.gpio_set_direction platform specific
callbacks
pinctrl: pinctrl-imx7ulp: add gpio_set_direction support
.../bindings/pinctrl/fsl,imx7ulp-pinctrl.txt | 61 +++
arch/arm/boot/dts/imx7ulp-pinfunc.h | 468 +++++++++++++++++++++
drivers/pinctrl/freescale/Kconfig | 7 +
drivers/pinctrl/freescale/Makefile | 1 +
drivers/pinctrl/freescale/pinctrl-imx.c | 123 +-----
drivers/pinctrl/freescale/pinctrl-imx.h | 20 +
drivers/pinctrl/freescale/pinctrl-imx7ulp.c | 364 ++++++++++++++++
drivers/pinctrl/freescale/pinctrl-vf610.c | 25 ++
8 files changed, 953 insertions(+), 116 deletions(-)
create mode 100644 Documentation/devicetree/bindings/pinctrl/fsl,imx7ulp-pinctrl.txt
create mode 100644 arch/arm/boot/dts/imx7ulp-pinfunc.h
create mode 100644 drivers/pinctrl/freescale/pinctrl-imx7ulp.c
--
2.7.4
next reply other threads:[~2017-07-25 13:42 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-25 13:41 Dong Aisheng [this message]
[not found] ` <1500990116-3620-1-git-send-email-aisheng.dong-3arQi8VN3Tc@public.gmane.org>
2017-07-25 13:41 ` [PATCH V4 RESEND 1/6] dt-bindings: pinctrl: add imx7ulp pinctrl binding doc Dong Aisheng
[not found] ` <1500990116-3620-2-git-send-email-aisheng.dong-3arQi8VN3Tc@public.gmane.org>
2017-08-01 11:50 ` Linus Walleij
2017-07-25 13:41 ` [PATCH V4 RESEND 2/6] pinctrl: imx: switch to use the generic pinmux property Dong Aisheng
2017-08-01 11:52 ` Linus Walleij
2017-07-25 13:41 ` [PATCH V4 RESEND 3/6] pinctrl: imx: add imx7ulp driver Dong Aisheng
2017-08-01 11:53 ` Linus Walleij
2017-07-25 13:41 ` [PATCH V4 RESEND 4/6] pinctrl: imx: remove gpio_request_enable and gpio_disable_free Dong Aisheng
2017-08-01 11:54 ` Linus Walleij
2017-07-25 13:41 ` [PATCH V4 RESEND 5/6] pinctrl: imx: make imx_pmx_ops.gpio_set_direction platform specific callbacks Dong Aisheng
2017-08-01 11:55 ` Linus Walleij
2017-07-25 13:41 ` [PATCH V4 RESEND 6/6] pinctrl: pinctrl-imx7ulp: add gpio_set_direction support Dong Aisheng
2017-08-01 11:56 ` Linus Walleij
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=1500990116-3620-1-git-send-email-aisheng.dong@nxp.com \
--to=aisheng.dong@nxp.com \
--cc=dongas86@gmail.com \
--cc=fugang.duan@nxp.com \
--cc=kernel@pengutronix.de \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-gpio@vger.kernel.org \
--cc=ping.bai@nxp.com \
--cc=shawnguo@kernel.org \
--cc=stefan@agner.ch \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).