devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/7] add basic support for i.mx6 ul chip
@ 2015-07-09 18:09 Frank.Li-KZfg59tc24xl57MIdRCFDg
       [not found] ` <1436465387-5992-1-git-send-email-Frank.Li-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: Frank.Li-KZfg59tc24xl57MIdRCFDg @ 2015-07-09 18:09 UTC (permalink / raw)
  To: shawn.guo-QSEj5FYQhm4dnm+yROfE0A, lznuaa-Re5JQEeQqe8AvxtiuMwx3w,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	shawnguo-DgEjT+Ai2ygdnm+yROfE0A, robh+dt-DgEjT+Ai2ygdnm+yROfE0A,
	devicetree-u79uwXL29TY76Z2rM5mHXA
  Cc: Frank Li

From: Frank Li <Frank.Li-KZfg59tc24xl57MIdRCFDg@public.gmane.org>

Add basic function support i.mx6ul.
add simple dts.
add full pin function define
add clock support.
add low level debug

Change from v3 to v4
 - Fix typo MX7D, should be imx6uL

Change from v2 to v3:
 - Remove pinctrl patch in list because shawn already acked.
 - UPdate dts file according to shawn's feedback.
 - Update Document according to shawn's feedback.
 - update pinfun.h, change to low case. use space after define
 - add soc_id

Change from v1 to v2:
 - Remove unnecessary clk_register_clkdev for gpt
 - use fat iomux in dts
 - use macro GPIO_ACTIVE_LOW

Anson Huang (1):
  ARM: imx: add low-level debug support for i.mx6ul

Frank Li (6):
  ARM: imx: add i.mx6ul msl support
  ARM: imx: add imx6ul clk tree support
  Document: dt: binding: imx: update document for imx6ul support
  ARM: dts: add i.mx6ul pin function include file
  ARM: dts: imx: add imx6ul and imx6ul evk board support
  ARM: imx: imx_v6_v7_defconfig enable imx6ul support

 .../devicetree/bindings/clock/imx6ul-clock.txt     |  13 +
 .../bindings/pinctrl/fsl,imx6ul-pinctrl.txt        |  36 +
 arch/arm/Kconfig.debug                             |   9 +
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/imx6ul-14x14-evk.dts             | 278 ++++++
 arch/arm/boot/dts/imx6ul-pinfunc.h                 | 938 +++++++++++++++++++++
 arch/arm/boot/dts/imx6ul.dtsi                      | 607 +++++++++++++
 arch/arm/configs/imx_v6_v7_defconfig               |   1 +
 arch/arm/include/debug/imx-uart.h                  |  13 +
 arch/arm/mach-imx/Kconfig                          |   8 +
 arch/arm/mach-imx/Makefile                         |   1 +
 arch/arm/mach-imx/cpu.c                            |   3 +
 arch/arm/mach-imx/mach-imx6ul.c                    |  43 +
 arch/arm/mach-imx/mxc.h                            |   6 +
 drivers/clk/imx/Makefile                           |   1 +
 drivers/clk/imx/clk-imx6ul.c                       | 432 ++++++++++
 include/dt-bindings/clock/imx6ul-clock.h           | 240 ++++++
 17 files changed, 2631 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/imx6ul-clock.txt
 create mode 100644 Documentation/devicetree/bindings/pinctrl/fsl,imx6ul-pinctrl.txt
 create mode 100644 arch/arm/boot/dts/imx6ul-14x14-evk.dts
 create mode 100644 arch/arm/boot/dts/imx6ul-pinfunc.h
 create mode 100644 arch/arm/boot/dts/imx6ul.dtsi
 create mode 100644 arch/arm/mach-imx/mach-imx6ul.c
 create mode 100644 drivers/clk/imx/clk-imx6ul.c
 create mode 100644 include/dt-bindings/clock/imx6ul-clock.h

-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2015-07-14  7:16 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-09 18:09 [PATCH v4 0/7] add basic support for i.mx6 ul chip Frank.Li-KZfg59tc24xl57MIdRCFDg
     [not found] ` <1436465387-5992-1-git-send-email-Frank.Li-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2015-07-09 18:09   ` [PATCH v4 1/7] ARM: imx: add i.mx6ul msl support Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-09 18:09   ` [PATCH v4 2/7] ARM: imx: add imx6ul clk tree support Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-09 18:09   ` [PATCH v4 3/7] Document: dt: binding: imx: update document for imx6ul support Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-09 18:09   ` [PATCH v4 4/7] ARM: dts: add i.mx6ul pin function include file Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-09 18:09   ` [PATCH v4 5/7] ARM: dts: imx: add imx6ul and imx6ul evk board support Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-09 18:09   ` [PATCH v4 6/7] ARM: imx: imx_v6_v7_defconfig enable imx6ul support Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-09 18:09   ` [PATCH v4 7/7] ARM: imx: add low-level debug support for i.mx6ul Frank.Li-KZfg59tc24xl57MIdRCFDg
2015-07-14  7:16   ` [PATCH v4 0/7] add basic support for i.mx6 ul chip 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).