linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Shawn Guo <shawnguo@kernel.org>
To: arm@kernel.org
Cc: Shawn Guo <shawnguo@kernel.org>, Stefan Agner <stefan@agner.ch>,
	Li Yang <leoyang.li@nxp.com>,
	linux-imx@nxp.com, kernel@pengutronix.de,
	Fabio Estevam <festevam@gmail.com>,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 6/7] i.MX arm64 DT changes for 5.3
Date: Tue, 25 Jun 2019 15:53:04 +0800	[thread overview]
Message-ID: <20190625075305.29082-6-shawnguo@kernel.org> (raw)
In-Reply-To: <20190625075305.29082-1-shawnguo@kernel.org>

The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9:

  Linux 5.2-rc1 (2019-05-19 15:47:09 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git tags/imx-dt64-5.3

for you to fetch changes up to 01407158e4c7a6ac646901b7b034b5a7d605b480:

  arm64: dts: librem5: enable the SNVS power key (2019-06-24 10:07:00 +0800)

----------------------------------------------------------------
i.MX arm64 device tree changes for 5.3:
 - Add i.MX8MQ based Librem5 devkit support.
 - Add SNVS power key support for i.MX8MQ and i.MX8MM.
 - Add GPIO alias for imx8mq and i.MX8QXP.
 - A series from Daniel Baluta to add SAI devices and enable audio
   support for imx8mm-evk board.
 - Add DDR performance monitor unit support for i.MX8QXP.
 - Add irqsteer interrupt controller device for i.MX8MQ SoC.
 - Add CPU speed grading and all OPPs for i.MX8MM and i.MX8MQ.
 - Add OCOTP device node for i.MX8QXP.
 - Various device addition for LS1028A: SATA, qDMA, USB, Mali DP500 and
   temperature sensor.
 - Random minor coding style improvements.

----------------------------------------------------------------
Angus Ainslie (Purism) (4):
      arm64: dts: fsl: imx8mq: add the snvs power key node
      arm64: dts: fsl: librem5: Add a device tree for the Librem5 devkit
      arm64: dts: librem5: Limit the USB to 5V
      arm64: dts: librem5: enable the SNVS power key

Anson Huang (7):
      arm64: dts: imx8mq: Remove unnecessary blank lines
      arm64: dts: imx8mq: Add gpio alias
      arm64: dts: imx8qxp: Add gpio alias
      arm64: dts: imx8qxp: Move watchdog node into scu node
      arm64: dts: imx8mm: Move gic node into soc node
      arm64: dts: imx8mq-evk: Enable SNVS power key
      arm64: dts: imx8mm: Enable SNVS power key according to board design

Chuanhua Han (1):
      arm64: dts: ls1028a: fix watchdog device node

Daniel Baluta (3):
      arm64: dts: imx8mm: Add SAI nodes
      arm64: dts: imx8mm-evk: Enable audio codec wm8524
      arm64: dts: imx8qxp: Add lsio_mu13 node

Fabio Estevam (3):
      arm64: dts: imx8mm: Pass a unit name for the 'soc' node
      arm64: dts: imx8mm: Pass the 'ranges' property
      arm64: dts: imx8mm: Move usbphy out of soc node

Frank Li (1):
      arm64: dts: imx8qxp: added ddr performance monitor nodes

Guido Günther (1):
      arm64: dts: imx8mq: Add a node for irqsteer

Horia Geantă (1):
      arm64: dts: ls1028a: add crypto node

Leonard Crestez (3):
      arm64: dts: imx8mm-evk: Add BD71847 PMIC
      arm64: dts: imx8mm: Add cpu speed grading and all OPPs
      arm64: dts: imx8mq: Add cpu speed grading and all OPPs

Peng Fan (1):
      arm64: dts: imx: add i.MX8QXP ocotp support

Peng Ma (2):
      arm64: dts: ls1028a: Enable sata.
      arm64: dts: fsl: ls1028a: Add qDMA node

Ran Wang (1):
      arm64: dts: ls1028a: Add USB dt nodes

Shawn Guo (2):
      arm64: dts: imx8qxp: sort alias alphabetically
      arm64: dts: imx8qxp: sort LSIO subsystem devices

Wen He (1):
      arm64: dts: ls1028a: Add properties for Mali DP500 node

Yuantian Tang (1):
      arm64: dts: ls1028a: Add temperature sensor node

 arch/arm64/boot/dts/freescale/Makefile             |   1 +
 arch/arm64/boot/dts/freescale/fsl-ls1028a-qds.dts  |  20 +
 arch/arm64/boot/dts/freescale/fsl-ls1028a-rdb.dts  |  20 +
 arch/arm64/boot/dts/freescale/fsl-ls1028a.dtsi     | 136 +++-
 arch/arm64/boot/dts/freescale/imx8mm-evk.dts       | 190 +++++
 arch/arm64/boot/dts/freescale/imx8mm.dtsi          | 144 +++-
 arch/arm64/boot/dts/freescale/imx8mq-evk.dts       |   4 +
 .../boot/dts/freescale/imx8mq-librem5-devkit.dts   | 809 +++++++++++++++++++++
 arch/arm64/boot/dts/freescale/imx8mq.dtsi          |  60 +-
 arch/arm64/boot/dts/freescale/imx8qxp.dtsi         | 134 ++--
 10 files changed, 1429 insertions(+), 89 deletions(-)
 create mode 100644 arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2019-06-25  7:55 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-25  7:52 [GIT PULL 1/7] i.MX drivers change for 5.3 Shawn Guo
2019-06-25  7:53 ` [GIT PULL 2/7] i.MX SoC changes " Shawn Guo
2019-06-25 12:52   ` Olof Johansson
2019-06-25  7:53 ` [GIT PULL 3/7] i.MX DT bindings update " Shawn Guo
2019-06-25 11:51   ` Olof Johansson
2019-06-25  7:53 ` [GIT PULL 4/7] i.MX DT changes with new clock " Shawn Guo
2019-06-25 11:52   ` Olof Johansson
2019-06-25  7:53 ` [GIT PULL 5/7] i.MX arm32 DT changes " Shawn Guo
2019-06-25 11:52   ` Olof Johansson
2019-06-25  7:53 ` Shawn Guo [this message]
2019-06-25 11:53   ` [GIT PULL 6/7] i.MX arm64 " Olof Johansson
2019-06-25  7:53 ` [GIT PULL 7/7] i.MX defconfig " Shawn Guo
2019-06-25 12:32   ` Olof Johansson
2019-06-26  2:02     ` Shawn Guo
2019-06-27  2:14       ` Olof Johansson
2019-06-27 13:25         ` Shawn Guo
2019-06-25 12:45 ` [GIT PULL 1/7] i.MX drivers change " Olof Johansson
2019-06-26  1:48   ` Shawn Guo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190625075305.29082-6-shawnguo@kernel.org \
    --to=shawnguo@kernel.org \
    --cc=arm@kernel.org \
    --cc=festevam@gmail.com \
    --cc=kernel@pengutronix.de \
    --cc=leoyang.li@nxp.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=stefan@agner.ch \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).