All of lore.kernel.org
 help / color / mirror / Atom feed
From: dirk.behme@de.bosch.com (Dirk Behme)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/9 v2] coresight: add CoreSight core layer framework
Date: Mon, 30 Jun 2014 12:53:45 +0200	[thread overview]
Message-ID: <53B141B9.2060401@de.bosch.com> (raw)
In-Reply-To: <1403892261-25026-2-git-send-email-mathieu.poirier@linaro.org>

On 27.06.2014 20:04, mathieu.poirier at linaro.org wrote:
> From: Pratik Patel <pratikp@codeaurora.org>
>
> CoreSight components are compliant with the ARM CoreSight
> architecture specification and can be connected in various
> topologies to suite a particular SoCs tracing needs. These trace
> components can generally be classified as sources, links and
> sinks. Trace data produced by one or more sources flows through
> the intermediate links connecting the source to the currently
> selected sink.
>
> CoreSight framework provides an interface for the CoreSight trace
> drivers to register themselves with. It's intended to build up a
> topological view of the CoreSight components and configure the
> right series of components on user input via debugfs.
>
> For eg., when enabling a source, framework builds up a path
> consisting of all the components connecting the source to the
> currently selected sink and enables all of them.
>
> Framework also supports switching between available sinks and
> also provides status information to user space applications
> through the debugfs interface.
>
> Signed-off-by: Pratik Patel <pratikp@codeaurora.org>
> Signed-off-by: Panchaxari Prasannamurthy <panchaxari.prasannamurthy@linaro.org>
> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
> ---
>   .../devicetree/bindings/arm/coresight.txt          | 141 +++++
>   drivers/Kconfig                                    |   2 +

I wonder if

arch/arm/Kconfig.debug

wouldn't be better place for this?

Best regards

Dirk

WARNING: multiple messages have this Message-ID (diff)
From: Dirk Behme <dirk.behme@de.bosch.com>
To: <mathieu.poirier@linaro.org>
Cc: <linus.walleij@linaro.org>, <will.deacon@arm.com>,
	<linux@arm.linux.org.uk>, <daniel.thompson@linaro.org>,
	<robherring2@gmail.com>, <robbelibobban@gmail.com>,
	<Al.Grant@arm.com>, <patches@linaro.org>,
	<marcin.jabrzyk@gmail.com>, <linux-kernel@vger.kernel.org>,
	<arnd@linaro.org>, <panchaxari.prasannamurthy@linaro.org>,
	<r.sengupta@samsung.com>, <arve@android.com>,
	<Tony.Armitstead@arm.com>, <john.stultz@linaro.org>,
	<linux-arm-kernel@lists.infradead.org>, <james.king@linaro.org>,
	<pratikp@codeaurora.org>, <varshney@ti.com>,
	<jonas.svennebring@avagotech.com>
Subject: Re: [PATCH 1/9 v2] coresight: add CoreSight core layer framework
Date: Mon, 30 Jun 2014 12:53:45 +0200	[thread overview]
Message-ID: <53B141B9.2060401@de.bosch.com> (raw)
In-Reply-To: <1403892261-25026-2-git-send-email-mathieu.poirier@linaro.org>

On 27.06.2014 20:04, mathieu.poirier@linaro.org wrote:
> From: Pratik Patel <pratikp@codeaurora.org>
>
> CoreSight components are compliant with the ARM CoreSight
> architecture specification and can be connected in various
> topologies to suite a particular SoCs tracing needs. These trace
> components can generally be classified as sources, links and
> sinks. Trace data produced by one or more sources flows through
> the intermediate links connecting the source to the currently
> selected sink.
>
> CoreSight framework provides an interface for the CoreSight trace
> drivers to register themselves with. It's intended to build up a
> topological view of the CoreSight components and configure the
> right series of components on user input via debugfs.
>
> For eg., when enabling a source, framework builds up a path
> consisting of all the components connecting the source to the
> currently selected sink and enables all of them.
>
> Framework also supports switching between available sinks and
> also provides status information to user space applications
> through the debugfs interface.
>
> Signed-off-by: Pratik Patel <pratikp@codeaurora.org>
> Signed-off-by: Panchaxari Prasannamurthy <panchaxari.prasannamurthy@linaro.org>
> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
> ---
>   .../devicetree/bindings/arm/coresight.txt          | 141 +++++
>   drivers/Kconfig                                    |   2 +

I wonder if

arch/arm/Kconfig.debug

wouldn't be better place for this?

Best regards

Dirk

  parent reply	other threads:[~2014-06-30 10:53 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-06-27 18:04 [PATCH 0/9 v2] Coresight framework and drivers mathieu.poirier at linaro.org
2014-06-27 18:04 ` mathieu.poirier
2014-06-27 18:04 ` [PATCH 1/9 v2] coresight: add CoreSight core layer framework mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-06-27 22:01   ` Rob Herring
2014-06-27 22:01     ` Rob Herring
2014-07-02 17:06     ` Mathieu Poirier
2014-07-02 17:06       ` Mathieu Poirier
2014-07-15 20:52     ` Mathieu Poirier
2014-07-15 20:52       ` Mathieu Poirier
2014-06-30 10:53   ` Dirk Behme [this message]
2014-06-30 10:53     ` Dirk Behme
2014-07-02 17:18     ` Mathieu Poirier
2014-07-02 17:18       ` Mathieu Poirier
2014-07-02  9:38   ` Daniel Thompson
2014-07-02  9:38     ` Daniel Thompson
2014-07-02 19:06     ` Mathieu Poirier
2014-07-02 19:06       ` Mathieu Poirier
2014-07-03  9:12       ` Daniel Thompson
2014-07-03  9:12         ` Daniel Thompson
2014-06-27 18:04 ` [PATCH 2/9 v2] coresight-tmc: add CoreSight TMC driver mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-07-02 15:47   ` Daniel Thompson
2014-07-02 15:47     ` Daniel Thompson
2014-06-27 18:04 ` [PATCH 3/9 v2] coresight-tpiu: add CoreSight TPIU driver mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-06-27 18:04 ` [PATCH 4/9 v2] coresight-etb: add CoreSight ETB driver mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-06-27 18:04 ` [PATCH 5/9 v2] coresight-funnel: add CoreSight Funnel driver mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-06-27 18:04 ` [PATCH 6/9 v2] coresight-etm: add CoreSight ETM/PTM driver mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-06-30 11:01   ` Dirk Behme
2014-06-30 11:01     ` Dirk Behme
2014-06-30 16:03     ` Mathieu Poirier
2014-06-30 16:03       ` Mathieu Poirier
2014-06-27 18:04 ` [PATCH 7/9 v2] coresight: adding support for beagle and beagleXM mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-06-27 18:04 ` [PATCH 8/9 v2] coresight: adding basic support for Vexpress TC2 mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-07-01  9:19   ` Dirk Behme
2014-07-01  9:19     ` Dirk Behme
2014-06-27 18:04 ` [PATCH 9/9 v2] ARM: removing support for etb/etm in "arch/arm/kernel/" mathieu.poirier at linaro.org
2014-06-27 18:04   ` mathieu.poirier
2014-07-01 10:32 ` [PATCH 0/9 v2] Coresight framework and drivers Al Grant
2014-07-01 10:32   ` Al Grant
2014-07-02 19:32   ` Mathieu Poirier

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=53B141B9.2060401@de.bosch.com \
    --to=dirk.behme@de.bosch.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.