mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 07:12:09 +00:00
coresight: associating path with session rather than tracer
When using the Coresight framework from the sysFS interface a tracer is always handling a single session and as such, a path can be associated with a tracer. But when supporting multiple session per tracer there is no guarantee that sessions will always have the same path from source to sink. This patch is removing the automatic association between path and tracers. The building of a path and enablement of the components in the path are decoupled, allowing for the association of a path with a session rather than a tracer. To keep backward functionality with the current sysFS access methods a per-cpu place holder is used to keep a handle on the path built when tracers are enabled. Lastly APIs to build paths and enable tracers are made public so that other subsystem can interact with the Coresight framework. Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
61390593f7
commit
b3e9440594
3 changed files with 213 additions and 104 deletions
|
@ -152,7 +152,6 @@ struct coresight_connection {
|
|||
by @coresight_ops.
|
||||
* @dev: The device entity associated to this component.
|
||||
* @refcnt: keep track of what is in use.
|
||||
* @path_link: link of current component into the path being enabled.
|
||||
* @orphan: true if the component has connections that haven't been linked.
|
||||
* @enable: 'true' if component is currently part of an active path.
|
||||
* @activated: 'true' only if a _sink_ has been activated. A sink can be
|
||||
|
@ -168,7 +167,6 @@ struct coresight_device {
|
|||
const struct coresight_ops *ops;
|
||||
struct device dev;
|
||||
atomic_t *refcnt;
|
||||
struct list_head path_link;
|
||||
bool orphan;
|
||||
bool enable; /* true only if configured as part of a path */
|
||||
bool activated; /* true only if a sink is part of a path */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue