Hi Alex, On Tue, 18 Dec 2018 at 08:21, Alexander Shishkin <alexander.shishkin@xxxxxxxxxxxxxxx> wrote: > > Suzuki K Poulose <suzuki.poulose@xxxxxxx> writes: > > >> + /* > >> + * The HW mapping of a component is unique. If the value we've been > >> + * given matches the component's start address, then we must have found > >> + * the device we are looking for. > >> + */ > > > > To be frank, I don't quite like the idea of passing the base address of the > > component as the key to locate a device, (even though that is unique and readily > > available). I would rather prefer a programmable way to map the keys to the > > "sink" devices, which works platform agnostic (e.g, ACPI support, where the base > > address is not obvious from the name). Also if we decide to use a platform > > agnostic naming scheme, it becomes even more complex. > > > > We could assign a static "id/key" exported either via the device sysfs dir or > > the "pmu" dir. I prefer the latter. > > > > Thoughts ? > > So, my understanding is that we have a bunch of trace sources and a > bunch of trace sinks to choose from when we set up the perf event. The > current model basically treats trace sources as PMUs and relies on the > sink configuration process to be done via sysfs, which is not ideal as > an API. That is correct. Most of the grief comes from the fact that when tracing CPU-wide session sinks are concurrently used by more than one CPU. > > The first thing that comes to mind is: can then the sinks be made their > own PMUs, so the above can be done via the existing SET_OUTPUT ioctl? I had a serious look at the SET_OUTPUT function as part of the research that pre-dated implementing CPU-wide support for coresight. The core does not allow events assigned to different CPUs to use the same mmap'ed area, which is perfectly understandable. To me the problem of sharing a sink between CPUs is inherent to coresight and should be fixed within that framework (see full work here [1] if interested). The implementation associates a sink with an mmap'ed area, just like PT and coresight --per-thread. Where things differ is that for coresight CPU-wide the sink is kept in function for as long as a CPU is using it, ignoring other request for updates or to switch it off. So the first CPU to use it turns the sink on and the last turns it off after collecting trace data from it. Thanks, Mathieu [1]. https://git.linaro.org/people/mathieu.poirier/coresight.git/log/?h=cpu-wide-coresight > > Regards, > -- > Alex