linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/6] arm64: Initial support Texas Instrument's J721E Platform
@ 2019-05-22 16:19 Nishanth Menon
  2019-05-22 16:19 ` [PATCH 1/6] dt-bindings: arm: ti: Add bindings for J721E SoC Nishanth Menon
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Nishanth Menon @ 2019-05-22 16:19 UTC (permalink / raw)
  To: Arnd Bergmann, Olof Johansson, Santosh Shilimkar, Will Deacon,
	Catalin Marinas, Greg Kroah-Hartman, Mark Rutland, Rob Herring
  Cc: Nishanth Menon, devicetree, Tony Lindgren, linux-kernel,
	Russell King, Tero Kristo, linux-serial, linux-arm-kernel

Hi,

This series adds support for the latest new SoC, J721E, from Texas Instruments.

The series is an based off v5.2-rc1 and has the following driver
dependencies for a successful boot:
1.  https://lore.kernel.org/lkml/20190429131533.25122-1-afd@ti.com (for newer firmware)
2.  https://lore.kernel.org/linux-arm-kernel/1555093342-428-1-git-send-email-t-kristo@ti.com/
    - Clock IDs cannot be guarenteed to be sequential, has to be
      discovered from hardware description in dts
    - Clock IDs on this massive chip also exceeds 255, so, the support
      for the same is expected in follow on patches.

The full series is available here (including dependencies):
https://github.com/nmenon/linux-2.6-playground/commits/upstream/v5.2-rc1/j7es-base-v1

Boot Log: https://pastebin.ubuntu.com/p/j3NtfF8FQr/

NOTE:
 - If Greg is ok, we can pick up the uart compatibility via the k3 tree,
   else, I can spawn it off the series.
 - I will resubmit patch 6 (defconfig update) separately once again once
   patches 1-5 hit the next tree or for 5.3-rc2 which ever is convenient.

The J721E SoC belongs to the K3 Multicore SoC architecture platform
for automotive applications such as infotainment, cluster, premium
Audio, Gateway, industrial and a range of broad market applications.
This SoC is designed around reducing the system cost by eliminating
the need of an external system MCU and is targeted towards ASIL-B/C
certification/requirements in addition to allowing complex software
and system use-cases.

The Linux development follows AM654 in most of the configurations, but
adds new capabilities (details in follow on patches).

See J721E Technical Reference Manual (SPRUIL1, May 2019)
for further details: http://www.ti.com/lit/pdf/spruil1

Nishanth Menon (6):
  dt-bindings: arm: ti: Add bindings for J721E SoC
  dt-bindings: serial: 8250_omap: Add compatible for J721E UART
    controller
  arm64: dts: ti: Add Support for J721E SoC
  soc: ti: Add Support for J721E SoC config option
  arm64: dts: ti: Add support for J721E Common Processor Board
  arm64: defconfig: Enable TI's J721E SoC platform

 .../devicetree/bindings/arm/ti/k3.txt         |   3 +
 .../bindings/serial/omap_serial.txt           |   1 +
 arch/arm64/boot/dts/ti/Makefile               |   2 +
 .../dts/ti/k3-j721e-common-proc-board.dts     |  50 +++++
 arch/arm64/boot/dts/ti/k3-j721e-main.dtsi     | 202 ++++++++++++++++++
 .../boot/dts/ti/k3-j721e-mcu-wakeup.dtsi      |  72 +++++++
 arch/arm64/boot/dts/ti/k3-j721e-som-p0.dtsi   |  29 +++
 arch/arm64/boot/dts/ti/k3-j721e.dtsi          | 176 +++++++++++++++
 arch/arm64/configs/defconfig                  |   1 +
 drivers/soc/ti/Kconfig                        |   5 +
 10 files changed, 541 insertions(+)
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721e-common-proc-board.dts
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721e-mcu-wakeup.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721e-som-p0.dtsi
 create mode 100644 arch/arm64/boot/dts/ti/k3-j721e.dtsi

-- 
2.21.0.777.g83232e38648b


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

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

end of thread, other threads:[~2019-06-18 14:42 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-22 16:19 [PATCH 0/6] arm64: Initial support Texas Instrument's J721E Platform Nishanth Menon
2019-05-22 16:19 ` [PATCH 1/6] dt-bindings: arm: ti: Add bindings for J721E SoC Nishanth Menon
2019-06-14 16:45   ` Rob Herring
2019-06-17 15:46     ` Nishanth Menon
2019-06-14 16:45   ` Rob Herring
2019-05-22 16:19 ` [PATCH 2/6] dt-bindings: serial: 8250_omap: Add compatible for J721E UART controller Nishanth Menon
2019-06-14 16:45   ` Rob Herring
2019-05-22 16:19 ` [PATCH 3/6] arm64: dts: ti: Add Support for J721E SoC Nishanth Menon
2019-06-07 20:58   ` Suman Anna
2019-06-18 14:38     ` Tero Kristo
2019-06-18 14:37   ` Tero Kristo
2019-05-22 16:19 ` [PATCH 4/6] soc: ti: Add Support for J721E SoC config option Nishanth Menon
2019-05-22 16:19 ` [PATCH 5/6] arm64: dts: ti: Add support for J721E Common Processor Board Nishanth Menon
2019-05-22 16:19 ` [PATCH 6/6] arm64: defconfig: Enable TI's J721E SoC platform Nishanth Menon
2019-06-18 14:41 ` [PATCH 0/6] arm64: Initial support Texas Instrument's J721E Platform Tero Kristo

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).