linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* coresight: ACPI hook for funnel on ThunderX2
@ 2019-08-15 13:58 Tanmay Vilas Kumar Jagdale
  2019-08-19 20:06 ` Mathieu Poirier
  0 siblings, 1 reply; 3+ messages in thread
From: Tanmay Vilas Kumar Jagdale @ 2019-08-15 13:58 UTC (permalink / raw)
  To: mathieu.poirier@linaro.org
  Cc: Ganapatrao Kulkarni, Tomasz Nowicki, suzuki.poulose@arm.com,
	Jayachandran Chandrasekharan Nair, Tanmay Vilas Kumar Jagdale,
	linux-arm-kernel@lists.infradead.org

Coresight topology on Marvell's ThunderX2 Processor is as follows:

 ETM0 _                                                   _ TPIU
 ...   \    Static      Dynamic                          /
 ...    --> FUNNEL0 --> FUNNEL1 --> ETF --> REPLICATOR --
ETM127_/            |                                    \_ ETR
                    |
            ETM128--|
                    /
           Others--/

To support this topology add ACPI hook for Static Funnel0.

Signed-off-by: Tanmay Jagdale <tanmay@marvell.com>
---
 drivers/hwtracing/coresight/coresight-funnel.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/hwtracing/coresight/coresight-funnel.c b/drivers/hwtracing/coresight/coresight-funnel.c
index fa97cb9ab4f9..315691fd6f4b 100644
--- a/drivers/hwtracing/coresight/coresight-funnel.c
+++ b/drivers/hwtracing/coresight/coresight-funnel.c
@@ -5,6 +5,7 @@
  * Description: CoreSight Funnel driver
  */
 
+#include <linux/acpi.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
 #include <linux/types.h>
@@ -297,6 +298,11 @@ static int static_funnel_probe(struct platform_device *pdev)
 	return ret;
 }
 
+static const struct acpi_device_id static_funnel_acpi_ids[] = {
+	{ "CAV901A" },
+	{},
+};
+
 static const struct of_device_id static_funnel_match[] = {
 	{.compatible = "arm,coresight-static-funnel"},
 	{}
@@ -306,6 +312,7 @@ static struct platform_driver static_funnel_driver = {
 	.probe          = static_funnel_probe,
 	.driver         = {
 		.name   = "coresight-static-funnel",
+		.acpi_match_table = ACPI_PTR(static_funnel_acpi_ids),
 		.of_match_table = static_funnel_match,
 		.pm	= &funnel_dev_pm_ops,
 		.suppress_bind_attrs = true,
-- 
2.17.1


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

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

end of thread, other threads:[~2019-08-20 17:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-15 13:58 coresight: ACPI hook for funnel on ThunderX2 Tanmay Vilas Kumar Jagdale
2019-08-19 20:06 ` Mathieu Poirier
2019-08-20 17:08   ` [EXT] " Tanmay Vilas Kumar Jagdale

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