All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thierry Reding <thierry.reding@gmail.com>
To: arm@kernel.org, soc@kernel.org
Cc: Thierry Reding <thierry.reding@gmail.com>,
	Jon Hunter <jonathanh@nvidia.com>,
	linux-tegra@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL 5/6] arm64: tegra: Changes for v5.10-rc1
Date: Fri, 18 Sep 2020 17:03:02 +0200	[thread overview]
Message-ID: <20200918150303.3938852-5-thierry.reding@gmail.com> (raw)
In-Reply-To: <20200918150303.3938852-1-thierry.reding@gmail.com>

Hi ARM SoC maintainers,

The following changes since commit 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5:

  Linux 5.9-rc1 (2020-08-16 13:04:57 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.10-arm64-dt

for you to fetch changes up to 639448912ba17a9af9e759efbab37d36c6e29dea:

  arm64: tegra: Initial Tegra234 VDK support (2020-09-18 15:58:07 +0200)

Thanks,
Thierry

----------------------------------------------------------------
arm64: tegra: Changes for v5.10-rc1

This set of changes fixes some minor issues in existing device trees and
adds ID EEPROMs on the Jetson Xavier NX. All ID EEPROMs are now labelled
to allow them to be detected by software.

It also adds support for the Tegra234 VDK board, which is a pre-silicon
platform for the upcoming Orin SoC.

----------------------------------------------------------------
Jon Hunter (2):
      arm64: tegra: Add label properties for EEPROMs
      arm64: tegra: Populate EEPROMs for Jetson Xavier NX

Sameer Pujar (2):
      arm64: tegra: Enable ACONNECT, ADMA and AGIC on Jetson Nano
      arm64: tegra: Add DT binding for AHUB components

Thierry Reding (8):
      arm64: tegra: Add ID EEPROMs on Jetson AGX Xavier
      arm64: tegra: Wire up pinctrl states for all DPAUX controllers
      arm64: tegra: Add VBUS supply for micro USB port on Jetson Nano
      arm64: tegra: Disable SD card write-protection on Jetson Nano
      arm64: tegra: Describe display controller outputs for Tegra210
      arm64: tegra: Use valid PWM period for VDD_GPU on Tegra210
      arm64: tegra: Properly size register regions for GPU on Tegra194
      arm64: tegra: Initial Tegra234 VDK support

 arch/arm64/boot/dts/nvidia/Makefile                |   1 +
 arch/arm64/boot/dts/nvidia/tegra186-p2771-0000.dts |   1 +
 arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi     |   1 +
 arch/arm64/boot/dts/nvidia/tegra186.dtsi           | 217 +++++++++++++++++-
 arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi     |  16 ++
 arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dts |  14 ++
 .../dts/nvidia/tegra194-p3509-0000+p3668-0000.dts  |  14 ++
 .../arm64/boot/dts/nvidia/tegra194-p3668-0000.dtsi |  16 ++
 arch/arm64/boot/dts/nvidia/tegra194.dtsi           | 247 ++++++++++++++++++++-
 arch/arm64/boot/dts/nvidia/tegra210-p2180.dtsi     |   3 +-
 arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dts |   1 +
 arch/arm64/boot/dts/nvidia/tegra210-p3450-0000.dts |  29 ++-
 arch/arm64/boot/dts/nvidia/tegra210.dtsi           | 150 ++++++++++++-
 arch/arm64/boot/dts/nvidia/tegra234-sim-vdk.dts    |  40 ++++
 arch/arm64/boot/dts/nvidia/tegra234.dtsi           | 189 ++++++++++++++++
 drivers/soc/tegra/Kconfig                          |  10 +
 include/dt-bindings/clock/tegra234-clock.h         |  14 ++
 include/dt-bindings/reset/tegra234-reset.h         |  10 +
 18 files changed, 961 insertions(+), 12 deletions(-)
 create mode 100644 arch/arm64/boot/dts/nvidia/tegra234-sim-vdk.dts
 create mode 100644 arch/arm64/boot/dts/nvidia/tegra234.dtsi
 create mode 100644 include/dt-bindings/clock/tegra234-clock.h
 create mode 100644 include/dt-bindings/reset/tegra234-reset.h

WARNING: multiple messages have this Message-ID (diff)
From: Thierry Reding <thierry.reding@gmail.com>
To: arm@kernel.org, soc@kernel.org
Cc: linux-tegra@vger.kernel.org,
	Thierry Reding <thierry.reding@gmail.com>,
	linux-arm-kernel@lists.infradead.org,
	Jon Hunter <jonathanh@nvidia.com>
Subject: [GIT PULL 5/6] arm64: tegra: Changes for v5.10-rc1
Date: Fri, 18 Sep 2020 17:03:02 +0200	[thread overview]
Message-ID: <20200918150303.3938852-5-thierry.reding@gmail.com> (raw)
In-Reply-To: <20200918150303.3938852-1-thierry.reding@gmail.com>

Hi ARM SoC maintainers,

The following changes since commit 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5:

  Linux 5.9-rc1 (2020-08-16 13:04:57 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git tags/tegra-for-5.10-arm64-dt

for you to fetch changes up to 639448912ba17a9af9e759efbab37d36c6e29dea:

  arm64: tegra: Initial Tegra234 VDK support (2020-09-18 15:58:07 +0200)

Thanks,
Thierry

----------------------------------------------------------------
arm64: tegra: Changes for v5.10-rc1

This set of changes fixes some minor issues in existing device trees and
adds ID EEPROMs on the Jetson Xavier NX. All ID EEPROMs are now labelled
to allow them to be detected by software.

It also adds support for the Tegra234 VDK board, which is a pre-silicon
platform for the upcoming Orin SoC.

----------------------------------------------------------------
Jon Hunter (2):
      arm64: tegra: Add label properties for EEPROMs
      arm64: tegra: Populate EEPROMs for Jetson Xavier NX

Sameer Pujar (2):
      arm64: tegra: Enable ACONNECT, ADMA and AGIC on Jetson Nano
      arm64: tegra: Add DT binding for AHUB components

Thierry Reding (8):
      arm64: tegra: Add ID EEPROMs on Jetson AGX Xavier
      arm64: tegra: Wire up pinctrl states for all DPAUX controllers
      arm64: tegra: Add VBUS supply for micro USB port on Jetson Nano
      arm64: tegra: Disable SD card write-protection on Jetson Nano
      arm64: tegra: Describe display controller outputs for Tegra210
      arm64: tegra: Use valid PWM period for VDD_GPU on Tegra210
      arm64: tegra: Properly size register regions for GPU on Tegra194
      arm64: tegra: Initial Tegra234 VDK support

 arch/arm64/boot/dts/nvidia/Makefile                |   1 +
 arch/arm64/boot/dts/nvidia/tegra186-p2771-0000.dts |   1 +
 arch/arm64/boot/dts/nvidia/tegra186-p3310.dtsi     |   1 +
 arch/arm64/boot/dts/nvidia/tegra186.dtsi           | 217 +++++++++++++++++-
 arch/arm64/boot/dts/nvidia/tegra194-p2888.dtsi     |  16 ++
 arch/arm64/boot/dts/nvidia/tegra194-p2972-0000.dts |  14 ++
 .../dts/nvidia/tegra194-p3509-0000+p3668-0000.dts  |  14 ++
 .../arm64/boot/dts/nvidia/tegra194-p3668-0000.dtsi |  16 ++
 arch/arm64/boot/dts/nvidia/tegra194.dtsi           | 247 ++++++++++++++++++++-
 arch/arm64/boot/dts/nvidia/tegra210-p2180.dtsi     |   3 +-
 arch/arm64/boot/dts/nvidia/tegra210-p2371-2180.dts |   1 +
 arch/arm64/boot/dts/nvidia/tegra210-p3450-0000.dts |  29 ++-
 arch/arm64/boot/dts/nvidia/tegra210.dtsi           | 150 ++++++++++++-
 arch/arm64/boot/dts/nvidia/tegra234-sim-vdk.dts    |  40 ++++
 arch/arm64/boot/dts/nvidia/tegra234.dtsi           | 189 ++++++++++++++++
 drivers/soc/tegra/Kconfig                          |  10 +
 include/dt-bindings/clock/tegra234-clock.h         |  14 ++
 include/dt-bindings/reset/tegra234-reset.h         |  10 +
 18 files changed, 961 insertions(+), 12 deletions(-)
 create mode 100644 arch/arm64/boot/dts/nvidia/tegra234-sim-vdk.dts
 create mode 100644 arch/arm64/boot/dts/nvidia/tegra234.dtsi
 create mode 100644 include/dt-bindings/clock/tegra234-clock.h
 create mode 100644 include/dt-bindings/reset/tegra234-reset.h

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

  parent reply	other threads:[~2020-09-18 15:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-18 15:02 [GIT PULL 1/6] dt-bindings: Changes for v5.10-rc1 Thierry Reding
2020-09-18 15:02 ` Thierry Reding
2020-09-18 15:02 ` [GIT PULL 2/6] soc/tegra: " Thierry Reding
2020-09-18 15:02   ` Thierry Reding
2020-09-18 15:03 ` [GIT PULL 3/6] firmware: tegra: " Thierry Reding
2020-09-18 15:03   ` Thierry Reding
2020-09-18 15:03 ` [GIT PULL 4/6] ARM: " Thierry Reding
2020-09-18 15:03   ` Thierry Reding
2020-09-18 15:03 ` Thierry Reding [this message]
2020-09-18 15:03   ` [GIT PULL 5/6] arm64: " Thierry Reding
2020-09-18 15:03 ` [GIT PULL 6/6] arm64: tegra: Default configuration updates " Thierry Reding
2020-09-18 15:03   ` Thierry Reding

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=20200918150303.3938852-5-thierry.reding@gmail.com \
    --to=thierry.reding@gmail.com \
    --cc=arm@kernel.org \
    --cc=jonathanh@nvidia.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-tegra@vger.kernel.org \
    --cc=soc@kernel.org \
    /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 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.