linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 0/7] Pinctrl support for Zynq
@ 2014-12-12 16:34 Soren Brinkmann
  2014-12-12 16:37 ` Sören Brinkmann
  0 siblings, 1 reply; 4+ messages in thread
From: Soren Brinkmann @ 2014-12-12 16:34 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

I made those few adjustments that came up in the v2 review. Other than
those, these are the same patches as before.
The series is based on pinctrl-v3.19-1, the current pinctrl/devel
branch.
A branch with these changes is available at
https://github.com/sorenb-xlnx/linux-xlnx/commits/pinctrl

	Thanks,
	S?ren

Soren Brinkmann (7):
  pinctrl: pinconf-generic: Infer map type from DT property
  pinctrl: pinconf-generic: Allow driver to specify DT params
  pinctrl: zynq: Document DT binding
  pinctrl: Add driver for Zynq
  ARM: zynq: Enable pinctrl
  ARM: zynq: DT: Add pinctrl information
  pinctrl: qcom-spmi-gpio: Migrate to pinconf-generic

 .../bindings/pinctrl/xlnx,zynq-pinctrl.txt         |  104 ++
 arch/arm/boot/dts/zynq-7000.dtsi                   |    8 +-
 arch/arm/boot/dts/zynq-zc702.dts                   |  181 +++
 arch/arm/boot/dts/zynq-zc706.dts                   |  152 +++
 arch/arm/mach-zynq/Kconfig                         |    2 +
 drivers/pinctrl/Kconfig                            |    8 +
 drivers/pinctrl/Makefile                           |    1 +
 drivers/pinctrl/nomadik/pinctrl-abx500.c           |    2 +-
 drivers/pinctrl/pinconf-generic.c                  |  199 ++--
 drivers/pinctrl/pinconf.c                          |    4 +-
 drivers/pinctrl/pinconf.h                          |   22 +-
 drivers/pinctrl/pinctrl-rockchip.c                 |    2 +-
 drivers/pinctrl/pinctrl-tz1090-pdc.c               |    2 +-
 drivers/pinctrl/pinctrl-tz1090.c                   |    2 +-
 drivers/pinctrl/pinctrl-zynq.c                     | 1176 ++++++++++++++++++++
 drivers/pinctrl/qcom/pinctrl-spmi-gpio.c           |  125 +--
 drivers/pinctrl/sh-pfc/pinctrl.c                   |    2 +-
 include/linux/pinctrl/pinconf-generic.h            |   29 +
 include/linux/pinctrl/pinctrl.h                    |    9 +
 19 files changed, 1808 insertions(+), 222 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/pinctrl/xlnx,zynq-pinctrl.txt
 create mode 100644 drivers/pinctrl/pinctrl-zynq.c

-- 
2.2.0.1.g9ee0458

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

* [PATCH v3 0/7] Pinctrl support for Zynq
  2014-12-12 16:34 [PATCH v3 0/7] Pinctrl support for Zynq Soren Brinkmann
@ 2014-12-12 16:37 ` Sören Brinkmann
  2015-01-09  8:45   ` Linus Walleij
  0 siblings, 1 reply; 4+ messages in thread
From: Sören Brinkmann @ 2014-12-12 16:37 UTC (permalink / raw)
  To: linux-arm-kernel

Argh, this went through the wrong SMTP. I suspect threading is broken
due to that. Let me know if you want me to resend this with intact
threading.
My apologies.

	Thanks,
	S?ren

On Fri, 2014-12-12 at 08:34AM -0800, Soren Brinkmann wrote:
> Hi,
> 
> I made those few adjustments that came up in the v2 review. Other than
> those, these are the same patches as before.
> The series is based on pinctrl-v3.19-1, the current pinctrl/devel
> branch.
> A branch with these changes is available at
> https://github.com/sorenb-xlnx/linux-xlnx/commits/pinctrl
> 
> 	Thanks,
> 	S?ren
> 
> Soren Brinkmann (7):
>   pinctrl: pinconf-generic: Infer map type from DT property
>   pinctrl: pinconf-generic: Allow driver to specify DT params
>   pinctrl: zynq: Document DT binding
>   pinctrl: Add driver for Zynq
>   ARM: zynq: Enable pinctrl
>   ARM: zynq: DT: Add pinctrl information
>   pinctrl: qcom-spmi-gpio: Migrate to pinconf-generic
> 
>  .../bindings/pinctrl/xlnx,zynq-pinctrl.txt         |  104 ++
>  arch/arm/boot/dts/zynq-7000.dtsi                   |    8 +-
>  arch/arm/boot/dts/zynq-zc702.dts                   |  181 +++
>  arch/arm/boot/dts/zynq-zc706.dts                   |  152 +++
>  arch/arm/mach-zynq/Kconfig                         |    2 +
>  drivers/pinctrl/Kconfig                            |    8 +
>  drivers/pinctrl/Makefile                           |    1 +
>  drivers/pinctrl/nomadik/pinctrl-abx500.c           |    2 +-
>  drivers/pinctrl/pinconf-generic.c                  |  199 ++--
>  drivers/pinctrl/pinconf.c                          |    4 +-
>  drivers/pinctrl/pinconf.h                          |   22 +-
>  drivers/pinctrl/pinctrl-rockchip.c                 |    2 +-
>  drivers/pinctrl/pinctrl-tz1090-pdc.c               |    2 +-
>  drivers/pinctrl/pinctrl-tz1090.c                   |    2 +-
>  drivers/pinctrl/pinctrl-zynq.c                     | 1176 ++++++++++++++++++++
>  drivers/pinctrl/qcom/pinctrl-spmi-gpio.c           |  125 +--
>  drivers/pinctrl/sh-pfc/pinctrl.c                   |    2 +-
>  include/linux/pinctrl/pinconf-generic.h            |   29 +
>  include/linux/pinctrl/pinctrl.h                    |    9 +
>  19 files changed, 1808 insertions(+), 222 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/pinctrl/xlnx,zynq-pinctrl.txt
>  create mode 100644 drivers/pinctrl/pinctrl-zynq.c
> 
> -- 
> 2.2.0.1.g9ee0458
> 
> --
> To unsubscribe from this list: send the line "unsubscribe devicetree" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH v3 0/7] Pinctrl support for Zynq
  2014-12-12 16:37 ` Sören Brinkmann
@ 2015-01-09  8:45   ` Linus Walleij
  2015-01-09 15:25     ` Sören Brinkmann
  0 siblings, 1 reply; 4+ messages in thread
From: Linus Walleij @ 2015-01-09  8:45 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Dec 12, 2014 at 5:37 PM, S?ren Brinkmann
<soren.brinkmann@xilinx.com> wrote:

> Argh, this went through the wrong SMTP. I suspect threading is broken
> due to that. Let me know if you want me to resend this with intact
> threading.

I don't care much about the threading, but all messages are quoted-printable
which doesn't apply :(

i.e.:

Content-Transfer-Encoding: quoted-printable
(...)

+ const char *subnode_target_type =3D "pins";
=20
(...)

Can you resent with more sane encoding? I don't know where this
comes from but suspect the Microsoft Exchange SMTP server
does this when you use diacritics and german letters...

Yours,
Linus Walleij

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

* [PATCH v3 0/7] Pinctrl support for Zynq
  2015-01-09  8:45   ` Linus Walleij
@ 2015-01-09 15:25     ` Sören Brinkmann
  0 siblings, 0 replies; 4+ messages in thread
From: Sören Brinkmann @ 2015-01-09 15:25 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, 2015-01-09 at 09:45AM +0100, Linus Walleij wrote:
> On Fri, Dec 12, 2014 at 5:37 PM, S?ren Brinkmann
> <soren.brinkmann@xilinx.com> wrote:
> 
> > Argh, this went through the wrong SMTP. I suspect threading is broken
> > due to that. Let me know if you want me to resend this with intact
> > threading.
> 
> I don't care much about the threading, but all messages are quoted-printable
> which doesn't apply :(
> 
> i.e.:
> 
> Content-Transfer-Encoding: quoted-printable
> (...)
> 
> + const char *subnode_target_type =3D "pins";
> =20
> (...)
> 
> Can you resent with more sane encoding? I don't know where this
> comes from but suspect the Microsoft Exchange SMTP server
> does this when you use diacritics and german letters...

Okay, I'll rebase to the latest pinctrl/devel branch (if needed) and
send an updated version bypassing exchange. I hope that works then.

	Thanks,
	S?ren

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

end of thread, other threads:[~2015-01-09 15:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-12 16:34 [PATCH v3 0/7] Pinctrl support for Zynq Soren Brinkmann
2014-12-12 16:37 ` Sören Brinkmann
2015-01-09  8:45   ` Linus Walleij
2015-01-09 15:25     ` Sören Brinkmann

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).