All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2 0/8] ARM: imx: add imx7ulp support
@ 2018-10-23 11:48 A.s. Dong
  2018-10-23 11:49   ` A.s. Dong
                   ` (7 more replies)
  0 siblings, 8 replies; 57+ messages in thread
From: A.s. Dong @ 2018-10-23 11:48 UTC (permalink / raw)
  To: linux-arm-kernel

The i.MX 7ULP family of processors represents NXP?s latest achievement
in ultra-low-power processing for use cases demanding long battery life.
Targeted towards the growing market of portable devices, the i.MX 7ULP
family of processors features NXP's advanced implementation of the Arm?
Cortex?-A7 core, the Arm Cortex-M4 core, as well as a 3D and 2D Graphics
Processing Units (GPUs). The i.MX 7ULP family provides up to 32-bit
LPDDR2/LPDDR3 memory interface and a number of other interfaces for
connecting peripherals, such as WLAN, Bluetooth, GPS, displays, and
camera sensors.

This patch series adds the basic support for imx7ulp. It includes machine
level support code and device tree.
Note: it depends on clk driver which is still under review.

v1->v2:
 * switch to SPDX license
 * rebase to latest tree
 * pad name update
 * add gpio clk support
 * minor fix

Dong Aisheng (8):
  dt-bindings: fsl: add compatible for imx7ulp evk
  dt-bindings: fsl: add imx7ulp pm related components bindings
  dt-bindings: gpio: vf610: add optional clocks property
  gpio: vf610: add optional clock support
  ARM: imx: add initial support for imx7ulp
  dts: imx: add common imx7ulp dtsi support
  dts: fsl: add imx7ulp evk support
  ARM: imx_v6_v7_defconfig: add imx7ulp support

 .../bindings/arm/freescale/fsl,imx7ulp-pm.txt      |  23 ++
 Documentation/devicetree/bindings/arm/fsl.txt      |   8 +
 .../devicetree/bindings/gpio/gpio-vf610.txt        |   6 +
 arch/arm/boot/dts/Makefile                         |   2 +
 arch/arm/boot/dts/imx7ulp-evk.dts                  |  94 ++++++
 arch/arm/boot/dts/imx7ulp.dtsi                     | 323 +++++++++++++++++++++
 arch/arm/configs/imx_v6_v7_defconfig               |   1 +
 arch/arm/mach-imx/Kconfig                          |   9 +
 arch/arm/mach-imx/Makefile                         |   1 +
 arch/arm/mach-imx/common.h                         |   1 +
 arch/arm/mach-imx/cpu.c                            |   3 +
 arch/arm/mach-imx/mach-imx7ulp.c                   |  32 ++
 arch/arm/mach-imx/mxc.h                            |   1 +
 arch/arm/mach-imx/pm-imx7ulp.c                     |  28 ++
 drivers/gpio/gpio-vf610.c                          |  20 ++
 15 files changed, 552 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/arm/freescale/fsl,imx7ulp-pm.txt
 create mode 100644 arch/arm/boot/dts/imx7ulp-evk.dts
 create mode 100644 arch/arm/boot/dts/imx7ulp.dtsi
 create mode 100644 arch/arm/mach-imx/mach-imx7ulp.c
 create mode 100644 arch/arm/mach-imx/pm-imx7ulp.c

-- 
2.7.4

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

end of thread, other threads:[~2018-10-30 15:34 UTC | newest]

Thread overview: 57+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-23 11:48 [PATCH V2 0/8] ARM: imx: add imx7ulp support A.s. Dong
2018-10-23 11:49 ` [PATCH V2 1/8] dt-bindings: fsl: add compatible for imx7ulp evk A.s. Dong
2018-10-23 11:49   ` A.s. Dong
2018-10-23 11:49 ` [PATCH V2 2/8] dt-bindings: fsl: add imx7ulp pm related components bindings A.s. Dong
2018-10-23 11:49   ` A.s. Dong
2018-10-24 21:54   ` Rob Herring
2018-10-24 21:54     ` Rob Herring
2018-10-23 11:49 ` [PATCH V2 3/8] dt-bindings: gpio: vf610: add optional clocks property A.s. Dong
2018-10-23 11:49   ` A.s. Dong
2018-10-24 21:55   ` Rob Herring
2018-10-24 21:55     ` Rob Herring
2018-10-23 11:49 ` [PATCH V2 4/8] gpio: vf610: add optional clock support A.s. Dong
2018-10-23 11:49   ` A.s. Dong
2018-10-23 12:04   ` Russell King - ARM Linux
2018-10-23 12:04     ` Russell King - ARM Linux
2018-10-23 12:23     ` A.s. Dong
2018-10-23 12:23       ` A.s. Dong
2018-10-23 12:41       ` Uwe Kleine-König
2018-10-23 12:41         ` Uwe Kleine-König
2018-10-23 13:39         ` A.s. Dong
2018-10-23 13:39           ` A.s. Dong
2018-10-25 17:58   ` Stefan Agner
2018-10-25 17:58     ` Stefan Agner
2018-10-26  3:49     ` A.s. Dong
2018-10-26  3:49       ` A.s. Dong
2018-10-26  8:15       ` Stefan Agner
2018-10-26  8:15         ` Stefan Agner
2018-10-30 15:34         ` A.s. Dong
2018-10-30 15:34           ` A.s. Dong
2018-10-23 11:49 ` [PATCH V2 5/8] ARM: imx: add initial support for imx7ulp A.s. Dong
2018-10-23 11:49 ` [PATCH V2 6/8] dts: imx: add common imx7ulp dtsi support A.s. Dong
2018-10-23 11:49   ` A.s. Dong
2018-10-24 22:02   ` Rob Herring
2018-10-24 22:02     ` Rob Herring
2018-10-25 11:53     ` A.s. Dong
2018-10-25 11:53       ` A.s. Dong
2018-10-25 16:44   ` Fabio Estevam
2018-10-25 16:44     ` Fabio Estevam
2018-10-25 16:54     ` A.s. Dong
2018-10-25 16:54       ` A.s. Dong
2018-10-23 11:49 ` [PATCH V2 7/8] dts: fsl: add imx7ulp evk support A.s. Dong
2018-10-23 11:49   ` A.s. Dong
2018-10-23 12:28   ` Fabio Estevam
2018-10-23 12:28     ` Fabio Estevam
2018-10-23 14:42     ` A.s. Dong
2018-10-23 14:42       ` A.s. Dong
2018-10-23 16:25       ` Fabio Estevam
2018-10-23 16:25         ` Fabio Estevam
2018-10-24  8:14         ` A.s. Dong
2018-10-24  8:14           ` A.s. Dong
2018-10-25 11:36           ` A.s. Dong
2018-10-25 11:36             ` A.s. Dong
2018-10-26 10:56           ` Sascha Hauer
2018-10-26 10:56             ` Sascha Hauer
2018-10-26 13:52             ` A.s. Dong
2018-10-26 13:52               ` A.s. Dong
2018-10-23 11:49 ` [PATCH V2 8/8] ARM: imx_v6_v7_defconfig: add imx7ulp support 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.