All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V4 0/7] pinctrl: imx: add imx7ulp pinctrl support
@ 2017-06-21 11:59 ` Dong Aisheng
  0 siblings, 0 replies; 48+ messages in thread
From: Dong Aisheng @ 2017-06-21 11:59 UTC (permalink / raw)
  To: linux-gpio
  Cc: linux-arm-kernel, linus.walleij, shawnguo, stefan, ping.bai,
	fugang.duan, kernel, Dong Aisheng

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
  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 +++
 .../bindings/pinctrl/pinctrl-bindings.txt          |   9 +-
 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 ++
 9 files changed, 958 insertions(+), 120 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


^ permalink raw reply	[flat|nested] 48+ messages in thread

end of thread, other threads:[~2017-07-13  8:46 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-21 11:59 [PATCH V4 0/7] pinctrl: imx: add imx7ulp pinctrl support Dong Aisheng
2017-06-21 11:59 ` Dong Aisheng
     [not found] ` <1498046395-30001-1-git-send-email-aisheng.dong-3arQi8VN3Tc@public.gmane.org>
2017-06-21 11:59   ` [PATCH V4 1/7] dt-bindings: pinctrl: extend the pinmux property to support integers array Dong Aisheng
2017-06-21 11:59     ` Dong Aisheng
     [not found]     ` <1498046395-30001-2-git-send-email-aisheng.dong-3arQi8VN3Tc@public.gmane.org>
2017-06-21 21:50       ` jmondi
2017-06-21 21:50         ` jmondi
2017-06-22 14:35         ` A.s. Dong
2017-06-22 14:35           ` A.s. Dong
2017-06-22 14:49     ` [PATCH V5 1/1] " Dong Aisheng
2017-06-22 14:49       ` Dong Aisheng
     [not found]       ` <1498142940-7982-1-git-send-email-aisheng.dong-3arQi8VN3Tc@public.gmane.org>
2017-06-26 18:49         ` Rob Herring
2017-06-26 18:49           ` Rob Herring
2017-06-29 12:35         ` Linus Walleij
2017-06-29 12:35           ` Linus Walleij
2017-06-21 11:59 ` [PATCH V4 2/7] dt-bindings: pinctrl: add imx7ulp pinctrl binding doc Dong Aisheng
2017-06-21 11:59   ` Dong Aisheng
     [not found]   ` <1498046395-30001-3-git-send-email-aisheng.dong-3arQi8VN3Tc@public.gmane.org>
2017-06-26 18:02     ` Rob Herring
2017-06-26 18:02       ` Rob Herring
2017-06-21 11:59 ` [PATCH V4 3/7] pinctrl: imx: switch to use the generic pinmux property Dong Aisheng
2017-06-21 11:59   ` Dong Aisheng
2017-07-12 13:57   ` A.s. Dong
2017-07-12 13:57     ` A.s. Dong
2017-07-13  8:43   ` Shawn Guo
2017-07-13  8:43     ` Shawn Guo
2017-06-21 11:59 ` [PATCH V4 4/7] pinctrl: imx: add imx7ulp driver Dong Aisheng
2017-06-21 11:59   ` Dong Aisheng
2017-06-21 11:59 ` [PATCH V4 5/7] pinctrl: imx: remove gpio_request_enable and gpio_disable_free Dong Aisheng
2017-06-21 11:59   ` Dong Aisheng
2017-06-27  3:47   ` Stefan Agner
2017-06-27  3:47     ` Stefan Agner
2017-06-27  5:27     ` A.s. Dong
2017-06-27  5:27       ` A.s. Dong
2017-06-21 11:59 ` [PATCH V4 6/7] pinctrl: imx: make imx_pmx_ops.gpio_set_direction platform specific callbacks Dong Aisheng
2017-06-21 11:59   ` Dong Aisheng
2017-06-27  3:53   ` Stefan Agner
2017-06-27  3:53     ` Stefan Agner
2017-06-21 11:59 ` [PATCH V4 7/7] pinctrl: pinctrl-imx7ulp: add gpio_set_direction support Dong Aisheng
2017-06-21 11:59   ` Dong Aisheng
2017-07-12 13:59   ` A.s. Dong
2017-07-12 13:59     ` A.s. Dong
2017-07-13  8:46   ` Shawn Guo
2017-07-13  8:46     ` Shawn Guo
2017-07-03 10:36 ` [PATCH V4 0/7] pinctrl: imx: add imx7ulp pinctrl support A.s. Dong
2017-07-03 10:36   ` A.s. Dong
2017-07-12 11:59   ` Linus Walleij
2017-07-12 11:59     ` Linus Walleij
2017-07-12 13:54     ` A.s. Dong
2017-07-12 13:54       ` A.s. Dong

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.