All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] arm64: tegra: Initial Tegra234 VDK support
@ 2020-07-16 14:18 ` Thierry Reding
  0 siblings, 0 replies; 44+ messages in thread
From: Thierry Reding @ 2020-07-16 14:18 UTC (permalink / raw)
  To: Thierry Reding
  Cc: Jon Hunter, linux-tegra-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

From: Thierry Reding <treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

This set of patches introduces support for the new Tegra234 SoC, also
known as Orin. Currently no silicon of this chip is available, so the
support added here is for a simulation platform known as VDK.

Note that this simulation platform is not available publicly. However
the goal is to use the simulation platform as a way of upstreaming as
much support as possible ahead of tapeout.

Once actual silicon becomes available, the plan is to stop supporting
the simulation platform and shift focus to real hardware.

Thierry

Sandipan Patra (1):
  soc/tegra: fuse: Add Tegra186 and Tegra194 SoC IDs

Thierry Reding (8):
  dt-bindings: tegra: Add Tegra234 VDK compatible
  dt-bindings: fuse: tegra: Add missing compatible strings
  dt-bindings: fuse: tegra: Document Tegra234 compatible string
  soc/tegra: fuse: Extract tegra_get_platform()
  soc/tegra: fuse: Implement tegra_is_silicon()
  soc/tegra: fuse: Add Tegra234 support
  firmware: tegra: Enable BPMP support on Tegra234
  arm64: tegra: Initial Tegra234 VDK support

 .../devicetree/bindings/arm/tegra.yaml        |   4 +
 .../bindings/fuse/nvidia,tegra20-fuse.txt     |   6 +-
 arch/arm64/boot/dts/nvidia/Makefile           |   1 +
 .../boot/dts/nvidia/tegra234-sim-vdk.dts      |  40 ++++
 arch/arm64/boot/dts/nvidia/tegra234.dtsi      | 191 ++++++++++++++++++
 drivers/firmware/tegra/bpmp.c                 |   3 +-
 drivers/mailbox/tegra-hsp.c                   |   9 +-
 drivers/soc/tegra/Kconfig                     |  10 +
 drivers/soc/tegra/fuse/fuse-tegra.c           |   8 +-
 drivers/soc/tegra/fuse/fuse-tegra30.c         |  30 +++
 drivers/soc/tegra/fuse/fuse.h                 |  10 +-
 drivers/soc/tegra/fuse/tegra-apbmisc.c        |  19 ++
 include/dt-bindings/clock/tegra234-clock.h    |  14 ++
 include/dt-bindings/reset/tegra234-reset.h    |  10 +
 include/soc/tegra/fuse.h                      |   5 +
 15 files changed, 353 insertions(+), 7 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

-- 
2.27.0

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

end of thread, other threads:[~2020-09-16  0:37 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-16 14:18 [PATCH 0/9] arm64: tegra: Initial Tegra234 VDK support Thierry Reding
2020-07-16 14:18 ` Thierry Reding
     [not found] ` <20200716141856.544718-1-thierry.reding-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2020-07-16 14:18   ` [PATCH 1/9] dt-bindings: tegra: Add Tegra234 VDK compatible Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:29     ` Jon Hunter
2020-09-07 19:29       ` Jon Hunter
2020-07-16 14:18   ` [PATCH 2/9] dt-bindings: fuse: tegra: Add missing compatible strings Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:29     ` Jon Hunter
2020-09-07 19:29       ` Jon Hunter
2020-07-16 14:18   ` [PATCH 3/9] dt-bindings: fuse: tegra: Document Tegra234 compatible string Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:30     ` Jon Hunter
2020-09-07 19:30       ` Jon Hunter
2020-07-16 14:18   ` [PATCH 4/9] soc/tegra: fuse: Add Tegra186 and Tegra194 SoC IDs Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-07-16 14:18   ` [PATCH 5/9] soc/tegra: fuse: Extract tegra_get_platform() Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:30     ` Jon Hunter
2020-09-07 19:30       ` Jon Hunter
2020-07-16 14:18   ` [PATCH 6/9] soc/tegra: fuse: Implement tegra_is_silicon() Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:32     ` Jon Hunter
2020-09-07 19:32       ` Jon Hunter
2020-09-15 12:38       ` Thierry Reding
2020-09-15 12:38         ` Thierry Reding
2020-07-16 14:18   ` [PATCH 7/9] soc/tegra: fuse: Add Tegra234 support Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:39     ` Jon Hunter
2020-09-07 19:39       ` Jon Hunter
2020-07-16 14:18   ` [PATCH 8/9] firmware: tegra: Enable BPMP support on Tegra234 Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:43     ` Jon Hunter
2020-09-07 19:43       ` Jon Hunter
2020-07-16 14:18   ` [PATCH 9/9] arm64: tegra: Initial Tegra234 VDK support Thierry Reding
2020-07-16 14:18     ` Thierry Reding
2020-09-07 19:46     ` Jon Hunter
2020-09-07 19:46       ` Jon Hunter
2020-09-15 12:44       ` Thierry Reding
2020-09-15 12:44         ` Thierry Reding
2020-09-15 13:17         ` Jon Hunter
2020-09-15 13:17           ` Jon Hunter
2020-09-15 13:49           ` Thierry Reding
2020-09-15 13:49             ` Thierry Reding

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.