devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kishon Vijay Abraham I <kishon@ti.com>
To: Dave Gerlach <d-gerlach@ti.com>, Nishanth Menon <nm@ti.com>
Cc: <linux-arm-kernel@lists.infradead.org>,
	<devicetree@vger.kernel.org>, Rob Herring <robh+dt@kernel.org>,
	Tony Lindgren <tony@atomide.com>,
	Vignesh Raghavendra <vigneshr@ti.com>, Suman Anna <s-anna@ti.com>,
	Sekhar Nori <nsekhar@ti.com>, Lokesh Vutla <lokeshvutla@ti.com>,
	Aswath Govindraju <a-govindraju@ti.com>
Subject: Re: [PATCH v4 0/5] arm64: Initial support for Texas Instruments AM642 Platform
Date: Mon, 1 Mar 2021 20:26:01 +0530	[thread overview]
Message-ID: <3bc3cc02-fdbc-234e-f6dd-45a00b0cc566@ti.com> (raw)
In-Reply-To: <20210226144257.5470-1-d-gerlach@ti.com>



On 26/02/21 8:12 pm, Dave Gerlach wrote:
> Hi,
> This is v4 of the series to add initial support for the latest new SoC,
> AM642, from Texas Instruments. Additional detail can be found in the
> patch descriptions, also see AM64X Technical Reference Manual (SPRUIM2,
> Nov 2020) for further details: https://www.ti.com/lit/pdf/spruim2
> 
> This version contains a few minor fixes from v3:
> 
> * Add Rob's Ack to patch 2
> * Drop address-cells from interrupt controller node in patch 4 as [1] was dropped
> * Add Suman's Signed-off-by to patch 3
> * Fix date range in Makefile for TI dtbs in patch 5
> * Include Reviewed-by from several people from v3 for multiple patches
> 
> v3: https://lore.kernel.org/linux-arm-kernel/20210120202532.9011-1-d-gerlach@ti.com/
> v2: https://lore.kernel.org/linux-arm-kernel/20210119163927.774-1-d-gerlach@ti.com/
> v1: https://lore.kernel.org/linux-arm-kernel/20201125052004.17823-1-d-gerlach@ti.com/


Kernel Boot logs: https://pastebin.ubuntu.com/p/hFV56bM6Jx/

Tested-by: Kishon Vijay Abraham I <kishon@ti.com>

> 
> Regards,
> Dave
> 
> [1] https://lore.kernel.org/linux-arm-kernel/161131973654.21299.8023411678794984222.b4-ty@ti.com/
> 
> Dave Gerlach (4):
>   dt-bindings: arm: ti: Add bindings for AM642 SoC
>   dt-bindings: pinctrl: k3: Introduce pinmux definitions for AM64
>   arm64: dts: ti: Add support for AM642 SoC
>   arm64: dts: ti: Add support for AM642 EVM
> 
> Peter Ujfalusi (1):
>   arm64: dts: ti: k3-am64-main: Enable DMA support
> 
>  .../devicetree/bindings/arm/ti/k3.yaml        |   6 +
>  arch/arm64/boot/dts/ti/Makefile               |   4 +-
>  arch/arm64/boot/dts/ti/k3-am64-main.dtsi      | 405 ++++++++++++++++++
>  arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi       |  76 ++++
>  arch/arm64/boot/dts/ti/k3-am64.dtsi           | 103 +++++
>  arch/arm64/boot/dts/ti/k3-am642-evm.dts       | 246 +++++++++++
>  arch/arm64/boot/dts/ti/k3-am642.dtsi          |  65 +++
>  include/dt-bindings/pinctrl/k3.h              |   5 +-
>  8 files changed, 908 insertions(+), 2 deletions(-)
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am64-main.dtsi
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am64-mcu.dtsi
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am64.dtsi
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am642-evm.dts
>  create mode 100644 arch/arm64/boot/dts/ti/k3-am642.dtsi
> 

  parent reply	other threads:[~2021-03-01 14:57 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-26 14:42 [PATCH v4 0/5] arm64: Initial support for Texas Instruments AM642 Platform Dave Gerlach
2021-02-26 14:42 ` [PATCH v4 1/5] dt-bindings: arm: ti: Add bindings for AM642 SoC Dave Gerlach
2021-02-27 13:19   ` Nishanth Menon
2021-02-26 14:42 ` [PATCH v4 2/5] dt-bindings: pinctrl: k3: Introduce pinmux definitions for AM64 Dave Gerlach
2021-02-27 13:20   ` Nishanth Menon
2021-02-26 14:42 ` [PATCH v4 3/5] arm64: dts: ti: Add support for AM642 SoC Dave Gerlach
2021-02-26 14:42 ` [PATCH v4 4/5] arm64: dts: ti: k3-am64-main: Enable DMA support Dave Gerlach
2021-02-26 14:42 ` [PATCH v4 5/5] arm64: dts: ti: Add support for AM642 EVM Dave Gerlach
2021-02-27 14:55 ` [PATCH v4 0/5] arm64: Initial support for Texas Instruments AM642 Platform Nishanth Menon
2021-03-01 14:56 ` Kishon Vijay Abraham I [this message]
2021-03-01 15:12 ` Nishanth Menon

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=3bc3cc02-fdbc-234e-f6dd-45a00b0cc566@ti.com \
    --to=kishon@ti.com \
    --cc=a-govindraju@ti.com \
    --cc=d-gerlach@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=lokeshvutla@ti.com \
    --cc=nm@ti.com \
    --cc=nsekhar@ti.com \
    --cc=robh+dt@kernel.org \
    --cc=s-anna@ti.com \
    --cc=tony@atomide.com \
    --cc=vigneshr@ti.com \
    /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).