linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: mathieu.poirier@linaro.org (mathieu.poirier at linaro.org)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 09/11] coresight: adding support for beagle and beagleXM
Date: Tue, 30 Sep 2014 10:58:53 -0600	[thread overview]
Message-ID: <1412096335-18672-10-git-send-email-mathieu.poirier@linaro.org> (raw)
In-Reply-To: <1412096335-18672-1-git-send-email-mathieu.poirier@linaro.org>

From: Mathieu Poirier <mathieu.poirier@linaro.org>

Currently supporting ETM and ETB.  Support for TPIU
and SDTI are yet to be added.

Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
---
 arch/arm/boot/dts/omap3-beagle-xm.dts | 28 ++++++++++++++++++++++++++++
 arch/arm/boot/dts/omap3-beagle.dts    | 28 ++++++++++++++++++++++++++++
 2 files changed, 56 insertions(+)

diff --git a/arch/arm/boot/dts/omap3-beagle-xm.dts b/arch/arm/boot/dts/omap3-beagle-xm.dts
index 1becefc..eec73d8 100644
--- a/arch/arm/boot/dts/omap3-beagle-xm.dts
+++ b/arch/arm/boot/dts/omap3-beagle-xm.dts
@@ -145,6 +145,34 @@
 			};
 		};
 	};
+
+	etb at 5401b000 {
+		compatible = "arm,coresight-etb10", "arm,primecell";
+		reg = <0x5401b000 0x1000>;
+
+		coresight-default-sink;
+		clocks = <&emu_src_ck>;
+		clock-names = "apb_pclk";
+		port {
+			etb_in: endpoint {
+				slave-mode;
+				remote-endpoint = <&etm_out>;
+			};
+		};
+	};
+
+	etm at 54010000 {
+		compatible = "arm,coresight-etm3x", "arm,primecell";
+		reg = <0x54010000 0x1000>;
+
+		clocks = <&emu_src_ck>;
+		clock-names = "apb_pclk";
+		port {
+			etm_out: endpoint {
+				remote-endpoint = <&etb_in>;
+			};
+		};
+	};
 };
 
 &omap3_pmx_wkup {
diff --git a/arch/arm/boot/dts/omap3-beagle.dts b/arch/arm/boot/dts/omap3-beagle.dts
index a9aae88..c792391 100644
--- a/arch/arm/boot/dts/omap3-beagle.dts
+++ b/arch/arm/boot/dts/omap3-beagle.dts
@@ -140,6 +140,34 @@
 			};
 		};
 	};
+
+	etb at 540000000 {
+		compatible = "arm,coresight-etb10", "arm,primecell";
+		reg = <0x5401b000 0x1000>;
+
+		coresight-default-sink;
+		clocks = <&emu_src_ck>;
+		clock-names = "apb_pclk";
+		port {
+			etb_in: endpoint {
+				slave-mode;
+				remote-endpoint = <&etm_out>;
+			};
+		};
+	};
+
+	etm at 54010000 {
+		compatible = "arm,coresight-etm3x", "arm,primecell";
+		reg = <0x54010000 0x1000>;
+
+		clocks = <&emu_src_ck>;
+		clock-names = "apb_pclk";
+		port {
+			etm_out: endpoint {
+				remote-endpoint = <&etb_in>;
+			};
+		};
+	};
 };
 
 &omap3_pmx_wkup {
-- 
1.9.1

  parent reply	other threads:[~2014-09-30 16:58 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-30 16:58 [PATCH v7 00/11] Coresight framework and drivers mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 01/11] coresight: add CoreSight core layer framework mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 02/11] coresight-tmc: add CoreSight TMC driver mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 03/11] coresight-tpiu: add CoreSight TPIU driver mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 04/11] coresight-etb: add CoreSight ETB driver mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 05/11] coresight-funnel: add CoreSight Funnel driver mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 06/11] coresight-replicator: add CoreSight Replicator driver mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 07/11] coresight-etm: add CoreSight ETM/PTM driver mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 08/11] coresight: adding documentation for coresight mathieu.poirier at linaro.org
2014-09-30 16:58 ` mathieu.poirier at linaro.org [this message]
2014-09-30 16:58 ` [PATCH v7 10/11] coresight: adding basic support for Vexpress TC2 mathieu.poirier at linaro.org
2014-09-30 16:58 ` [PATCH v7 11/11] ARM: removing support for etb/etm in "arch/arm/kernel/" mathieu.poirier at linaro.org

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=1412096335-18672-10-git-send-email-mathieu.poirier@linaro.org \
    --to=mathieu.poirier@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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).