linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] Add Mailbox support for TI K3 AM64x SoCs
@ 2021-02-09 19:36 Suman Anna
  2021-02-09 19:36 ` [PATCH v2 1/2] dt-bindings: mailbox: omap: Update binding for " Suman Anna
  2021-02-09 19:36 ` [PATCH v2 2/2] mailbox: omap: Add support for K3 " Suman Anna
  0 siblings, 2 replies; 4+ messages in thread
From: Suman Anna @ 2021-02-09 19:36 UTC (permalink / raw)
  To: Jassi Brar, Rob Herring
  Cc: devicetree, linux-omap, linux-arm-kernel, linux-kernel, Suman Anna

Hi Jassi,

The following is a minor revision of the series [1] that extends the OMAP
Mailbox driver for the IP on TI K3 AM64x SoCs.

Only change is in patch 1 to drop the example in the dt-bindings patch.

regards
Suman

[1] https://patchwork.kernel.org/project/linux-arm-kernel/cover/20210127195600.23501-1-s-anna@ti.com/

Suman Anna (2):
  dt-bindings: mailbox: omap: Update binding for AM64x SoCs
  mailbox: omap: Add support for K3 AM64x SoCs

 Documentation/devicetree/bindings/mailbox/omap-mailbox.txt | 4 ++++
 drivers/mailbox/omap-mailbox.c                             | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

-- 
2.29.2


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

* [PATCH v2 1/2] dt-bindings: mailbox: omap: Update binding for AM64x SoCs
  2021-02-09 19:36 [PATCH v2 0/2] Add Mailbox support for TI K3 AM64x SoCs Suman Anna
@ 2021-02-09 19:36 ` Suman Anna
  2021-02-10 22:45   ` Rob Herring
  2021-02-09 19:36 ` [PATCH v2 2/2] mailbox: omap: Add support for K3 " Suman Anna
  1 sibling, 1 reply; 4+ messages in thread
From: Suman Anna @ 2021-02-09 19:36 UTC (permalink / raw)
  To: Jassi Brar, Rob Herring
  Cc: devicetree, linux-omap, linux-arm-kernel, linux-kernel, Suman Anna

Update the existing OMAP Mailbox binding to include the info for
AM64x SoCs. There are some minor IP integration differences between
the AM64x SoCs and the previous AM65x and J721E SoC families.

Signed-off-by: Suman Anna <s-anna@ti.com>
---
v2: Remove AM64x example as per Rob's comments
v1: https://patchwork.kernel.org/project/linux-arm-kernel/patch/20210127195600.23501-2-s-anna@ti.com/

 Documentation/devicetree/bindings/mailbox/omap-mailbox.txt | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Documentation/devicetree/bindings/mailbox/omap-mailbox.txt b/Documentation/devicetree/bindings/mailbox/omap-mailbox.txt
index 5fe80c1c19fc..12371f5c6cd9 100644
--- a/Documentation/devicetree/bindings/mailbox/omap-mailbox.txt
+++ b/Documentation/devicetree/bindings/mailbox/omap-mailbox.txt
@@ -28,6 +28,9 @@ SoCs has each of these instances form a cluster and combine multiple clusters
 into a single IP block present within the Main NavSS. The interrupt lines from
 all these clusters are multiplexed and routed to different processor subsystems
 over a limited number of common interrupt output lines of an Interrupt Router.
+The AM64x SoCS also uses a single IP block comprising of multiple clusters,
+but the number of clusters are smaller, and the interrupt output lines are
+connected directly to various processors.
 
 Mailbox Device Node:
 ====================
@@ -42,6 +45,7 @@ Required properties:
 			    "ti,omap4-mailbox" for OMAP44xx, OMAP54xx, AM33xx,
 						   AM43xx and DRA7xx SoCs
 			    "ti,am654-mailbox" for K3 AM65x and J721E SoCs
+			    "ti,am64-mailbox" for K3 AM64x SoCs
 - reg:			Contains the mailbox register address range (base
 			address and length)
 - interrupts:		Contains the interrupt information for the mailbox
-- 
2.29.2


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

* [PATCH v2 2/2] mailbox: omap: Add support for K3 AM64x SoCs
  2021-02-09 19:36 [PATCH v2 0/2] Add Mailbox support for TI K3 AM64x SoCs Suman Anna
  2021-02-09 19:36 ` [PATCH v2 1/2] dt-bindings: mailbox: omap: Update binding for " Suman Anna
@ 2021-02-09 19:36 ` Suman Anna
  1 sibling, 0 replies; 4+ messages in thread
From: Suman Anna @ 2021-02-09 19:36 UTC (permalink / raw)
  To: Jassi Brar, Rob Herring
  Cc: devicetree, linux-omap, linux-arm-kernel, linux-kernel, Suman Anna

The AM64x SoC contains a Mailbox IP instance with multiple clusters
in the MAIN domain, and is a variant of the IP on current AM65x and
J721E SoCs. The AM64x SoC has only 8 clusters with no interrupts
routed to the A53 core on the first 2 clusters. The interrupt outputs
from the IP do not go through any Interrupt Routers and are hard-wired
to each processor, with only couple of interrupts from each cluster
reaching the A53 core. The IP is also not built with the K3 safety
feature in hardware.

Add the support for this IP through a new compatible.

Signed-off-by: Suman Anna <s-anna@ti.com>
---
v2: No changes

 drivers/mailbox/omap-mailbox.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/mailbox/omap-mailbox.c b/drivers/mailbox/omap-mailbox.c
index 93fe08aef3ca..7295e3835e30 100644
--- a/drivers/mailbox/omap-mailbox.c
+++ b/drivers/mailbox/omap-mailbox.c
@@ -3,7 +3,7 @@
  * OMAP mailbox driver
  *
  * Copyright (C) 2006-2009 Nokia Corporation. All rights reserved.
- * Copyright (C) 2013-2019 Texas Instruments Incorporated - https://www.ti.com
+ * Copyright (C) 2013-2021 Texas Instruments Incorporated - https://www.ti.com
  *
  * Contact: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
  *          Suman Anna <s-anna@ti.com>
@@ -663,6 +663,10 @@ static const struct of_device_id omap_mailbox_of_match[] = {
 		.compatible	= "ti,am654-mailbox",
 		.data		= &omap4_data,
 	},
+	{
+		.compatible	= "ti,am64-mailbox",
+		.data		= &omap4_data,
+	},
 	{
 		/* end */
 	},
-- 
2.29.2


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

* Re: [PATCH v2 1/2] dt-bindings: mailbox: omap: Update binding for AM64x SoCs
  2021-02-09 19:36 ` [PATCH v2 1/2] dt-bindings: mailbox: omap: Update binding for " Suman Anna
@ 2021-02-10 22:45   ` Rob Herring
  0 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2021-02-10 22:45 UTC (permalink / raw)
  To: Suman Anna
  Cc: Jassi Brar, linux-arm-kernel, Rob Herring, devicetree,
	linux-kernel, linux-omap

On Tue, 09 Feb 2021 13:36:42 -0600, Suman Anna wrote:
> Update the existing OMAP Mailbox binding to include the info for
> AM64x SoCs. There are some minor IP integration differences between
> the AM64x SoCs and the previous AM65x and J721E SoC families.
> 
> Signed-off-by: Suman Anna <s-anna@ti.com>
> ---
> v2: Remove AM64x example as per Rob's comments
> v1: https://patchwork.kernel.org/project/linux-arm-kernel/patch/20210127195600.23501-2-s-anna@ti.com/
> 
>  Documentation/devicetree/bindings/mailbox/omap-mailbox.txt | 4 ++++
>  1 file changed, 4 insertions(+)
> 

Acked-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2021-02-10 22:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-09 19:36 [PATCH v2 0/2] Add Mailbox support for TI K3 AM64x SoCs Suman Anna
2021-02-09 19:36 ` [PATCH v2 1/2] dt-bindings: mailbox: omap: Update binding for " Suman Anna
2021-02-10 22:45   ` Rob Herring
2021-02-09 19:36 ` [PATCH v2 2/2] mailbox: omap: Add support for K3 " Suman Anna

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