linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/17] ARM: imx: add pinctrl settings for DT boot
@ 2012-08-13 13:05 Shawn Guo
  2012-08-13 13:05 ` [PATCH 01/17] ARM: dts: imx6q: improve indentation for fsl,pins Shawn Guo
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: Shawn Guo @ 2012-08-13 13:05 UTC (permalink / raw)
  To: linux-arm-kernel

The series adds pinctrl settings for imx6q, imx53 and imx51 booting
from DT.  As the results, the dummy pinctrl state gets removed from
these DT images, and all imx53 board files get removed from the tree.
Therefore, imx53 becomes the second DT only i.MX SoC besides imx6q.

Shawn Guo (17):
  ARM: dts: imx6q: improve indentation for fsl,pins
  ARM: dts: imx6q: name iomuxc sub-nodes following pin function
  ARM: dts: imx6q: sort iomuxc sub-nodes in name
  ARM: dts: imx6q-sabrelite: add pinctrl for usdhc and enet
  ARM: dts: imx6q-arm2: add pinctrl for uart and enet
  ARM: dts: imx6q-sabresd: add pinctrl settings
  ARM: imx6q: remove dummy pinctrl state
  ARM: dts: imx53-qsb: add pinctrl settings
  ARM: dts: imx53-ard: add pinctrl settings
  ARM: dts: imx53-evk: add pinctrl settings
  ARM: dts: imx53-smd: add pinctrl settings
  ARM: imx53: build in pinctrl support
  ARM: imx53: decouple device tree boot from board files
  ARM: imx53: support device tree boot only
  ARM: imx53: remove unneeded files and functions
  ARM: dts: imx51-babbage: add pinctrl settings
  ARM: imx51: build in pinctrl support

 arch/arm/boot/dts/imx51-babbage.dts            |   36 +-
 arch/arm/boot/dts/imx51.dtsi                   |  116 +++
 arch/arm/boot/dts/imx53-ard.dts                |   49 +-
 arch/arm/boot/dts/imx53-evk.dts                |   31 +-
 arch/arm/boot/dts/imx53-qsb.dts                |   34 +-
 arch/arm/boot/dts/imx53-smd.dts                |   38 +-
 arch/arm/boot/dts/imx53.dtsi                   |  155 +++
 arch/arm/boot/dts/imx6q-arm2.dts               |   21 +
 arch/arm/boot/dts/imx6q-sabrelite.dts          |   19 +-
 arch/arm/boot/dts/imx6q-sabresd.dts            |   25 +-
 arch/arm/boot/dts/imx6q.dtsi                   |  223 ++++--
 arch/arm/configs/imx_v6_v7_defconfig           |    2 +-
 arch/arm/mach-imx/Kconfig                      |   79 +--
 arch/arm/mach-imx/Makefile                     |    6 +-
 arch/arm/mach-imx/Makefile.boot                |    8 +-
 arch/arm/mach-imx/devices-imx53.h              |   48 -
 arch/arm/mach-imx/imx51-dt.c                   |    3 -
 arch/arm/mach-imx/{imx53-dt.c => mach-imx53.c} |   23 -
 arch/arm/mach-imx/mach-imx6q.c                 |    7 -
 arch/arm/mach-imx/mach-mx53_ard.c              |  272 ------
 arch/arm/mach-imx/mach-mx53_evk.c              |  179 ----
 arch/arm/mach-imx/mach-mx53_loco.c             |  321 -------
 arch/arm/mach-imx/mach-mx53_smd.c              |  168 ----
 arch/arm/mach-imx/mm-imx5.c                    |   47 -
 arch/arm/plat-mxc/include/mach/common.h        |    5 -
 arch/arm/plat-mxc/include/mach/iomux-mx53.h    | 1219 ------------------------
 26 files changed, 697 insertions(+), 2437 deletions(-)
 delete mode 100644 arch/arm/mach-imx/devices-imx53.h
 rename arch/arm/mach-imx/{imx53-dt.c => mach-imx53.c} (82%)
 delete mode 100644 arch/arm/mach-imx/mach-mx53_ard.c
 delete mode 100644 arch/arm/mach-imx/mach-mx53_evk.c
 delete mode 100644 arch/arm/mach-imx/mach-mx53_loco.c
 delete mode 100644 arch/arm/mach-imx/mach-mx53_smd.c
 delete mode 100644 arch/arm/plat-mxc/include/mach/iomux-mx53.h

-- 
1.7.5.4

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

end of thread, other threads:[~2012-08-13 13:17 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-13 13:05 [PATCH 00/17] ARM: imx: add pinctrl settings for DT boot Shawn Guo
2012-08-13 13:05 ` [PATCH 01/17] ARM: dts: imx6q: improve indentation for fsl,pins Shawn Guo
2012-08-13 13:05 ` [PATCH 02/17] ARM: dts: imx6q: name iomuxc sub-nodes following pin function Shawn Guo
2012-08-13 13:05 ` [PATCH 03/17] ARM: dts: imx6q: sort iomuxc sub-nodes in name Shawn Guo
2012-08-13 13:05 ` [PATCH 04/17] ARM: dts: imx6q-sabrelite: add pinctrl for usdhc and enet Shawn Guo
2012-08-13 13:05 ` [PATCH 05/17] ARM: dts: imx6q-arm2: add pinctrl for uart " Shawn Guo
2012-08-13 13:05 ` [PATCH 06/17] ARM: dts: imx6q-sabresd: add pinctrl settings Shawn Guo
2012-08-13 13:05 ` [PATCH 07/17] ARM: imx6q: remove dummy pinctrl state Shawn Guo
2012-08-13 13:05 ` [PATCH 08/17] ARM: dts: imx53-qsb: add pinctrl settings Shawn Guo
2012-08-13 13:05 ` [PATCH 09/17] ARM: dts: imx53-ard: " Shawn Guo
2012-08-13 13:05 ` [PATCH 10/17] ARM: dts: imx53-evk: " Shawn Guo
2012-08-13 13:05 ` [PATCH 11/17] ARM: dts: imx53-smd: " Shawn Guo
2012-08-13 13:05 ` [PATCH 12/17] ARM: imx53: build in pinctrl support Shawn Guo
2012-08-13 13:05 ` [PATCH 13/17] ARM: imx53: decouple device tree boot from board files Shawn Guo
2012-08-13 13:05 ` [PATCH 14/17] ARM: imx53: support device tree boot only Shawn Guo
2012-08-13 13:05 ` [PATCH 16/17] ARM: dts: imx51-babbage: add pinctrl settings Shawn Guo
2012-08-13 13:05 ` [PATCH 17/17] ARM: imx51: build in pinctrl support Shawn Guo
2012-08-13 13:06 ` [PATCH 15/17] ARM: imx53: remove unneeded files and functions Shawn Guo
2012-08-13 13:17 ` [PATCH 18/18] ARM: imx51: decouple device tree boot from board files Shawn Guo

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