linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v6 00/11] Add Freescale i.mx7d support
@ 2015-04-21 21:43 Frank.Li
  2015-04-21 21:43 ` [PATCH v6 01/11] ARM: dts: add pinfunc include file to support imx7d Frank.Li
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Frank.Li @ 2015-04-21 21:43 UTC (permalink / raw)
  To: lznuaa, shawn.guo, linus.walleij, robh+dt
  Cc: linux-arm-kernel, linux-gpio, devicetree, Frank Li

From: Frank Li <Frank.Li@freescale.com>

add basic support for chip imx7d.
 - MSL
 - Clock support. All clock enabled.
 - pinctrl support
 - SD Card support

Change from v5 to v6
 - dual license for dts
 - fix typo statue
 - Remove smp_operations
 - Remove GPT check cpu_is_mx7() by use old compatible mode
 - Remove dts arch_timer part, which not used in this patch series
 - correct GIC reg map

Change from v4 to v5
 - Remove imx7d_map_io()
 - Remove  clk_register_clkdev(clks[IMX7D_GPT1_ROOT_CLK], "ipg", "imx-gpt.0");
 - Remove  clk_register_clkdev(clks[IMX7D_GPT_3M_CLK], "gpt_3m", "imx-gpt.0");
 - Add comment about enable all clock
 - Add Type IMX_PLLV3_ENET_IMX7 and remove cpu_is_imx7d()

Change from v3 to v4
 - Fixed the problem review by Russel king.
   Remove __mxc_arch_type
   Remove MXC_ARCH_CA7
   use new smp_operation for ca7 platform
 - imx7d.dtsi remove unecessary part for bring up
 - imx7d-sdb.dsi, just enable uart i2c and sd card
 - Add device tree binding document for timer, clock and pinctrl

Change from v2 to v3
  - remove unsupport part in imx7d-sdb.dtb

Change from V1 to V2:
  - split patch1 to three small one to avoid 100k maillist limitation.
  - fix imx7d.dtsi code style problem

Anson Huang (1):
  ARM: imx: add msl support for imx7d

Frank Li (10):
  ARM: dts: add pinfunc include file to support imx7d
  ARM: dts: add pinfunc include file gpio1 to support imx7d
  ARM: dts: add clock include file to support imx7d
  Document: dt: binding: imx: update document for imx7d support
  ARM: dts: add imx7d soc dtsi file
  pinctrl: add imx7d support
  ARM: imx: add gpt system timer support for imx7d
  ARM: imx: add imx7d clk tree support
  arm: dts: add imx7d-sdb support
  ARM: config: imx_v6_v7_defconfig add imx7d support

 .../devicetree/bindings/clock/imx7d-clock.txt      |   13 +
 .../bindings/pinctrl/fsl,imx-pinctrl.txt           |    3 +
 .../bindings/pinctrl/fsl,imx7d-pinctrl.txt         |   27 +
 .../devicetree/bindings/timer/fsl,imxgpt.txt       |    3 +
 arch/arm/boot/dts/Makefile                         |    2 +
 arch/arm/boot/dts/imx7d-pinfunc.h                  | 1153 ++++++++++++++++++++
 arch/arm/boot/dts/imx7d-sdb.dts                    |  444 ++++++++
 arch/arm/boot/dts/imx7d.dtsi                       |  513 +++++++++
 arch/arm/configs/imx_v6_v7_defconfig               |    1 +
 arch/arm/mach-imx/Kconfig                          |   11 +
 arch/arm/mach-imx/Makefile                         |    1 +
 arch/arm/mach-imx/anatop.c                         |    5 +-
 arch/arm/mach-imx/clk-imx7d.c                      |  887 +++++++++++++++
 arch/arm/mach-imx/clk-pllv3.c                      |   16 +-
 arch/arm/mach-imx/clk.h                            |    9 +
 arch/arm/mach-imx/cpu.c                            |    3 +
 arch/arm/mach-imx/hardware.h                       |    7 +-
 arch/arm/mach-imx/mach-imx7d.c                     |   46 +
 arch/arm/mach-imx/mx7.h                            |   38 +
 arch/arm/mach-imx/mxc.h                            |    8 +-
 arch/arm/mach-imx/time.c                           |    1 +
 drivers/pinctrl/freescale/Kconfig                  |    7 +
 drivers/pinctrl/freescale/Makefile                 |    1 +
 drivers/pinctrl/freescale/pinctrl-imx.c            |    3 +-
 drivers/pinctrl/freescale/pinctrl-imx.h            |    1 +
 drivers/pinctrl/freescale/pinctrl-imx7d.c          |  411 +++++++
 include/dt-bindings/clock/imx7d-clock.h            |  450 ++++++++
 27 files changed, 4058 insertions(+), 6 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/clock/imx7d-clock.txt
 create mode 100644 Documentation/devicetree/bindings/pinctrl/fsl,imx7d-pinctrl.txt
 create mode 100644 arch/arm/boot/dts/imx7d-pinfunc.h
 create mode 100644 arch/arm/boot/dts/imx7d-sdb.dts
 create mode 100644 arch/arm/boot/dts/imx7d.dtsi
 create mode 100644 arch/arm/mach-imx/clk-imx7d.c
 create mode 100644 arch/arm/mach-imx/mach-imx7d.c
 create mode 100644 arch/arm/mach-imx/mx7.h
 create mode 100644 drivers/pinctrl/freescale/pinctrl-imx7d.c
 create mode 100644 include/dt-bindings/clock/imx7d-clock.h

-- 
1.9.1


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

end of thread, other threads:[~2015-04-21 21:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-21 21:43 [PATCH v6 00/11] Add Freescale i.mx7d support Frank.Li
2015-04-21 21:43 ` [PATCH v6 01/11] ARM: dts: add pinfunc include file to support imx7d Frank.Li
2015-04-21 21:43 ` [PATCH v6 02/11] ARM: dts: add pinfunc include file gpio1 " Frank.Li
2015-04-21 21:43 ` [PATCH v6 03/11] ARM: dts: add clock include file " Frank.Li
2015-04-21 21:43 ` [PATCH v6 04/11] Document: dt: binding: imx: update document for imx7d support Frank.Li
2015-04-21 21:43 ` [PATCH v6 05/11] ARM: dts: add imx7d soc dtsi file Frank.Li
2015-04-21 21:43 ` [PATCH v6 06/11] pinctrl: add imx7d support Frank.Li
     [not found] ` <1429652610-25265-1-git-send-email-Frank.Li-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-04-21 21:43   ` [PATCH v6 07/11] ARM: imx: add msl support for imx7d Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-04-21 21:43   ` [PATCH v6 08/11] ARM: imx: add gpt system timer " Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-04-21 21:43 ` [PATCH v6 09/11] ARM: imx: add imx7d clk tree support Frank.Li
2015-04-21 21:43 ` [PATCH v6 10/11] arm: dts: add imx7d-sdb support Frank.Li
2015-04-21 21:43 ` [PATCH v6 11/11] ARM: config: imx_v6_v7_defconfig add imx7d support Frank.Li

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