drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2015-2016 Intel Corporation
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Robert Bragg <robert@sixbynine.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/anon_inodes.h>
|
2016-11-07 19:49:52 +00:00
|
|
|
#include <linux/sizes.h>
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
|
|
|
|
#include "i915_drv.h"
|
2016-11-07 19:49:52 +00:00
|
|
|
#include "i915_oa_hsw.h"
|
|
|
|
|
|
|
|
/* HW requires this to be a power of two, between 128k and 16M, though driver
|
|
|
|
* is currently generally designed assuming the largest 16M size is used such
|
|
|
|
* that the overflow cases are unlikely in normal operation.
|
|
|
|
*/
|
|
|
|
#define OA_BUFFER_SIZE SZ_16M
|
|
|
|
|
|
|
|
#define OA_TAKEN(tail, head) ((tail - head) & (OA_BUFFER_SIZE - 1))
|
|
|
|
|
|
|
|
/* There's a HW race condition between OA unit tail pointer register updates and
|
|
|
|
* writes to memory whereby the tail pointer can sometimes get ahead of what's
|
|
|
|
* been written out to the OA buffer so far.
|
|
|
|
*
|
|
|
|
* Although this can be observed explicitly by checking for a zeroed report-id
|
|
|
|
* field in tail reports, it seems preferable to account for this earlier e.g.
|
|
|
|
* as part of the _oa_buffer_is_empty checks to minimize -EAGAIN polling cycles
|
|
|
|
* in this situation.
|
|
|
|
*
|
|
|
|
* To give time for the most recent reports to land before they may be copied to
|
|
|
|
* userspace, the driver operates as if the tail pointer effectively lags behind
|
|
|
|
* the HW tail pointer by 'tail_margin' bytes. The margin in bytes is calculated
|
|
|
|
* based on this constant in nanoseconds, the current OA sampling exponent
|
|
|
|
* and current report size.
|
|
|
|
*
|
|
|
|
* There is also a fallback check while reading to simply skip over reports with
|
|
|
|
* a zeroed report-id.
|
|
|
|
*/
|
|
|
|
#define OA_TAIL_MARGIN_NSEC 100000ULL
|
|
|
|
|
|
|
|
/* frequency for checking whether the OA unit has written new reports to the
|
|
|
|
* circular OA buffer...
|
|
|
|
*/
|
|
|
|
#define POLL_FREQUENCY 200
|
|
|
|
#define POLL_PERIOD (NSEC_PER_SEC / POLL_FREQUENCY)
|
|
|
|
|
|
|
|
/* The maximum exponent the hardware accepts is 63 (essentially it selects one
|
|
|
|
* of the 64bit timestamp bits to trigger reports from) but there's currently
|
|
|
|
* no known use case for sampling as infrequently as once per 47 thousand years.
|
|
|
|
*
|
|
|
|
* Since the timestamps included in OA reports are only 32bits it seems
|
|
|
|
* reasonable to limit the OA exponent where it's still possible to account for
|
|
|
|
* overflow in OA report timestamps.
|
|
|
|
*/
|
|
|
|
#define OA_EXPONENT_MAX 31
|
|
|
|
|
|
|
|
#define INVALID_CTX_ID 0xffffffff
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX: beware if future OA HW adds new report formats that the current
|
|
|
|
* code assumes all reports have a power-of-two size and ~(size - 1) can
|
|
|
|
* be used as a mask to align the OA tail pointer.
|
|
|
|
*/
|
|
|
|
static struct i915_oa_format hsw_oa_formats[I915_OA_FORMAT_MAX] = {
|
|
|
|
[I915_OA_FORMAT_A13] = { 0, 64 },
|
|
|
|
[I915_OA_FORMAT_A29] = { 1, 128 },
|
|
|
|
[I915_OA_FORMAT_A13_B8_C8] = { 2, 128 },
|
|
|
|
/* A29_B8_C8 Disallowed as 192 bytes doesn't factor into buffer size */
|
|
|
|
[I915_OA_FORMAT_B4_C8] = { 4, 64 },
|
|
|
|
[I915_OA_FORMAT_A45_B8_C8] = { 5, 256 },
|
|
|
|
[I915_OA_FORMAT_B4_C8_A16] = { 6, 128 },
|
|
|
|
[I915_OA_FORMAT_C4_B8] = { 7, 64 },
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SAMPLE_OA_REPORT (1<<0)
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
|
|
|
|
struct perf_open_properties {
|
|
|
|
u32 sample_flags;
|
|
|
|
|
|
|
|
u64 single_context:1;
|
|
|
|
u64 ctx_handle;
|
2016-11-07 19:49:52 +00:00
|
|
|
|
|
|
|
/* OA sampling state */
|
|
|
|
int metrics_set;
|
|
|
|
int oa_format;
|
|
|
|
bool oa_periodic;
|
|
|
|
int oa_period_exponent;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* NB: This is either called via fops or the poll check hrtimer (atomic ctx)
|
|
|
|
*
|
|
|
|
* It's safe to read OA config state here unlocked, assuming that this is only
|
|
|
|
* called while the stream is enabled, while the global OA configuration can't
|
|
|
|
* be modified.
|
|
|
|
*
|
|
|
|
* Note: we don't lock around the head/tail reads even though there's the slim
|
|
|
|
* possibility of read() fop errors forcing a re-init of the OA buffer
|
|
|
|
* pointers. A race here could result in a false positive !empty status which
|
|
|
|
* is acceptable.
|
|
|
|
*/
|
|
|
|
static bool gen7_oa_buffer_is_empty_fop_unlocked(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
int report_size = dev_priv->perf.oa.oa_buffer.format_size;
|
|
|
|
u32 oastatus2 = I915_READ(GEN7_OASTATUS2);
|
|
|
|
u32 oastatus1 = I915_READ(GEN7_OASTATUS1);
|
|
|
|
u32 head = oastatus2 & GEN7_OASTATUS2_HEAD_MASK;
|
|
|
|
u32 tail = oastatus1 & GEN7_OASTATUS1_TAIL_MASK;
|
|
|
|
|
|
|
|
return OA_TAKEN(tail, head) <
|
|
|
|
dev_priv->perf.oa.tail_margin + report_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Appends a status record to a userspace read() buffer.
|
|
|
|
*/
|
|
|
|
static int append_oa_status(struct i915_perf_stream *stream,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
size_t *offset,
|
|
|
|
enum drm_i915_perf_record_type type)
|
|
|
|
{
|
|
|
|
struct drm_i915_perf_record_header header = { type, 0, sizeof(header) };
|
|
|
|
|
|
|
|
if ((count - *offset) < header.size)
|
|
|
|
return -ENOSPC;
|
|
|
|
|
|
|
|
if (copy_to_user(buf + *offset, &header, sizeof(header)))
|
|
|
|
return -EFAULT;
|
|
|
|
|
|
|
|
(*offset) += header.size;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies single OA report into userspace read() buffer.
|
|
|
|
*/
|
|
|
|
static int append_oa_sample(struct i915_perf_stream *stream,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
size_t *offset,
|
|
|
|
const u8 *report)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
int report_size = dev_priv->perf.oa.oa_buffer.format_size;
|
|
|
|
struct drm_i915_perf_record_header header;
|
|
|
|
u32 sample_flags = stream->sample_flags;
|
|
|
|
|
|
|
|
header.type = DRM_I915_PERF_RECORD_SAMPLE;
|
|
|
|
header.pad = 0;
|
|
|
|
header.size = stream->sample_size;
|
|
|
|
|
|
|
|
if ((count - *offset) < header.size)
|
|
|
|
return -ENOSPC;
|
|
|
|
|
|
|
|
buf += *offset;
|
|
|
|
if (copy_to_user(buf, &header, sizeof(header)))
|
|
|
|
return -EFAULT;
|
|
|
|
buf += sizeof(header);
|
|
|
|
|
|
|
|
if (sample_flags & SAMPLE_OA_REPORT) {
|
|
|
|
if (copy_to_user(buf, report, report_size))
|
|
|
|
return -EFAULT;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*offset) += header.size;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies all buffered OA reports into userspace read() buffer.
|
|
|
|
* @stream: An i915-perf stream opened for OA metrics
|
|
|
|
* @buf: destination buffer given by userspace
|
|
|
|
* @count: the number of bytes userspace wants to read
|
|
|
|
* @offset: (inout): the current position for writing into @buf
|
|
|
|
* @head_ptr: (inout): the current oa buffer cpu read position
|
|
|
|
* @tail: the current oa buffer gpu write position
|
|
|
|
*
|
|
|
|
* Returns 0 on success, negative error code on failure.
|
|
|
|
*
|
|
|
|
* Notably any error condition resulting in a short read (-ENOSPC or
|
|
|
|
* -EFAULT) will be returned even though one or more records may
|
|
|
|
* have been successfully copied. In this case it's up to the caller
|
|
|
|
* to decide if the error should be squashed before returning to
|
|
|
|
* userspace.
|
|
|
|
*
|
|
|
|
* Note: reports are consumed from the head, and appended to the
|
|
|
|
* tail, so the head chases the tail?... If you think that's mad
|
|
|
|
* and back-to-front you're not alone, but this follows the
|
|
|
|
* Gen PRM naming convention.
|
|
|
|
*/
|
|
|
|
static int gen7_append_oa_reports(struct i915_perf_stream *stream,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
size_t *offset,
|
|
|
|
u32 *head_ptr,
|
|
|
|
u32 tail)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
int report_size = dev_priv->perf.oa.oa_buffer.format_size;
|
|
|
|
u8 *oa_buf_base = dev_priv->perf.oa.oa_buffer.vaddr;
|
|
|
|
int tail_margin = dev_priv->perf.oa.tail_margin;
|
|
|
|
u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
|
|
|
|
u32 mask = (OA_BUFFER_SIZE - 1);
|
|
|
|
u32 head;
|
|
|
|
u32 taken;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
if (WARN_ON(!stream->enabled))
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
head = *head_ptr - gtt_offset;
|
|
|
|
tail -= gtt_offset;
|
|
|
|
|
|
|
|
/* The OA unit is expected to wrap the tail pointer according to the OA
|
|
|
|
* buffer size and since we should never write a misaligned head
|
|
|
|
* pointer we don't expect to read one back either...
|
|
|
|
*/
|
|
|
|
if (tail > OA_BUFFER_SIZE || head > OA_BUFFER_SIZE ||
|
|
|
|
head % report_size) {
|
|
|
|
DRM_ERROR("Inconsistent OA buffer pointer (head = %u, tail = %u): force restart\n",
|
|
|
|
head, tail);
|
|
|
|
dev_priv->perf.oa.ops.oa_disable(dev_priv);
|
|
|
|
dev_priv->perf.oa.ops.oa_enable(dev_priv);
|
|
|
|
*head_ptr = I915_READ(GEN7_OASTATUS2) &
|
|
|
|
GEN7_OASTATUS2_HEAD_MASK;
|
|
|
|
return -EIO;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* The tail pointer increases in 64 byte increments, not in report_size
|
|
|
|
* steps...
|
|
|
|
*/
|
|
|
|
tail &= ~(report_size - 1);
|
|
|
|
|
|
|
|
/* Move the tail pointer back by the current tail_margin to account for
|
|
|
|
* the possibility that the latest reports may not have really landed
|
|
|
|
* in memory yet...
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (OA_TAKEN(tail, head) < report_size + tail_margin)
|
|
|
|
return -EAGAIN;
|
|
|
|
|
|
|
|
tail -= tail_margin;
|
|
|
|
tail &= mask;
|
|
|
|
|
|
|
|
for (/* none */;
|
|
|
|
(taken = OA_TAKEN(tail, head));
|
|
|
|
head = (head + report_size) & mask) {
|
|
|
|
u8 *report = oa_buf_base + head;
|
|
|
|
u32 *report32 = (void *)report;
|
|
|
|
|
|
|
|
/* All the report sizes factor neatly into the buffer
|
|
|
|
* size so we never expect to see a report split
|
|
|
|
* between the beginning and end of the buffer.
|
|
|
|
*
|
|
|
|
* Given the initial alignment check a misalignment
|
|
|
|
* here would imply a driver bug that would result
|
|
|
|
* in an overrun.
|
|
|
|
*/
|
|
|
|
if (WARN_ON((OA_BUFFER_SIZE - head) < report_size)) {
|
|
|
|
DRM_ERROR("Spurious OA head ptr: non-integral report offset\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The report-ID field for periodic samples includes
|
|
|
|
* some undocumented flags related to what triggered
|
|
|
|
* the report and is never expected to be zero so we
|
|
|
|
* can check that the report isn't invalid before
|
|
|
|
* copying it to userspace...
|
|
|
|
*/
|
|
|
|
if (report32[0] == 0) {
|
|
|
|
DRM_ERROR("Skipping spurious, invalid OA report\n");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = append_oa_sample(stream, buf, count, offset, report);
|
|
|
|
if (ret)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* The above report-id field sanity check is based on
|
|
|
|
* the assumption that the OA buffer is initially
|
|
|
|
* zeroed and we reset the field after copying so the
|
|
|
|
* check is still meaningful once old reports start
|
|
|
|
* being overwritten.
|
|
|
|
*/
|
|
|
|
report32[0] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*head_ptr = gtt_offset + head;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int gen7_oa_read(struct i915_perf_stream *stream,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
size_t *offset)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
int report_size = dev_priv->perf.oa.oa_buffer.format_size;
|
|
|
|
u32 oastatus2;
|
|
|
|
u32 oastatus1;
|
|
|
|
u32 head;
|
|
|
|
u32 tail;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (WARN_ON(!dev_priv->perf.oa.oa_buffer.vaddr))
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
oastatus2 = I915_READ(GEN7_OASTATUS2);
|
|
|
|
oastatus1 = I915_READ(GEN7_OASTATUS1);
|
|
|
|
|
|
|
|
head = oastatus2 & GEN7_OASTATUS2_HEAD_MASK;
|
|
|
|
tail = oastatus1 & GEN7_OASTATUS1_TAIL_MASK;
|
|
|
|
|
|
|
|
/* XXX: On Haswell we don't have a safe way to clear oastatus1
|
|
|
|
* bits while the OA unit is enabled (while the tail pointer
|
|
|
|
* may be updated asynchronously) so we ignore status bits
|
|
|
|
* that have already been reported to userspace.
|
|
|
|
*/
|
|
|
|
oastatus1 &= ~dev_priv->perf.oa.gen7_latched_oastatus1;
|
|
|
|
|
|
|
|
/* We treat OABUFFER_OVERFLOW as a significant error:
|
|
|
|
*
|
|
|
|
* - The status can be interpreted to mean that the buffer is
|
|
|
|
* currently full (with a higher precedence than OA_TAKEN()
|
|
|
|
* which will start to report a near-empty buffer after an
|
|
|
|
* overflow) but it's awkward that we can't clear the status
|
|
|
|
* on Haswell, so without a reset we won't be able to catch
|
|
|
|
* the state again.
|
|
|
|
*
|
|
|
|
* - Since it also implies the HW has started overwriting old
|
|
|
|
* reports it may also affect our sanity checks for invalid
|
|
|
|
* reports when copying to userspace that assume new reports
|
|
|
|
* are being written to cleared memory.
|
|
|
|
*
|
|
|
|
* - In the future we may want to introduce a flight recorder
|
|
|
|
* mode where the driver will automatically maintain a safe
|
|
|
|
* guard band between head/tail, avoiding this overflow
|
|
|
|
* condition, but we avoid the added driver complexity for
|
|
|
|
* now.
|
|
|
|
*/
|
|
|
|
if (unlikely(oastatus1 & GEN7_OASTATUS1_OABUFFER_OVERFLOW)) {
|
|
|
|
ret = append_oa_status(stream, buf, count, offset,
|
|
|
|
DRM_I915_PERF_RECORD_OA_BUFFER_LOST);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
DRM_ERROR("OA buffer overflow: force restart\n");
|
|
|
|
|
|
|
|
dev_priv->perf.oa.ops.oa_disable(dev_priv);
|
|
|
|
dev_priv->perf.oa.ops.oa_enable(dev_priv);
|
|
|
|
|
|
|
|
oastatus2 = I915_READ(GEN7_OASTATUS2);
|
|
|
|
oastatus1 = I915_READ(GEN7_OASTATUS1);
|
|
|
|
|
|
|
|
head = oastatus2 & GEN7_OASTATUS2_HEAD_MASK;
|
|
|
|
tail = oastatus1 & GEN7_OASTATUS1_TAIL_MASK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (unlikely(oastatus1 & GEN7_OASTATUS1_REPORT_LOST)) {
|
|
|
|
ret = append_oa_status(stream, buf, count, offset,
|
|
|
|
DRM_I915_PERF_RECORD_OA_REPORT_LOST);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
dev_priv->perf.oa.gen7_latched_oastatus1 |=
|
|
|
|
GEN7_OASTATUS1_REPORT_LOST;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = gen7_append_oa_reports(stream, buf, count, offset,
|
|
|
|
&head, tail);
|
|
|
|
|
|
|
|
/* All the report sizes are a power of two and the
|
|
|
|
* head should always be incremented by some multiple
|
|
|
|
* of the report size.
|
|
|
|
*
|
|
|
|
* A warning here, but notably if we later read back a
|
|
|
|
* misaligned pointer we will treat that as a bug since
|
|
|
|
* it could lead to a buffer overrun.
|
|
|
|
*/
|
|
|
|
WARN_ONCE(head & (report_size - 1),
|
|
|
|
"i915: Writing misaligned OA head pointer");
|
|
|
|
|
|
|
|
/* Note: we update the head pointer here even if an error
|
|
|
|
* was returned since the error may represent a short read
|
|
|
|
* where some some reports were successfully copied.
|
|
|
|
*/
|
|
|
|
I915_WRITE(GEN7_OASTATUS2,
|
|
|
|
((head & GEN7_OASTATUS2_HEAD_MASK) |
|
|
|
|
OA_MEM_SELECT_GGTT));
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_oa_wait_unlocked(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
/* We would wait indefinitely if periodic sampling is not enabled */
|
|
|
|
if (!dev_priv->perf.oa.periodic)
|
|
|
|
return -EIO;
|
|
|
|
|
|
|
|
/* Note: the oa_buffer_is_empty() condition is ok to run unlocked as it
|
|
|
|
* just performs mmio reads of the OA buffer head + tail pointers and
|
|
|
|
* it's assumed we're handling some operation that implies the stream
|
|
|
|
* can't be destroyed until completion (such as a read()) that ensures
|
|
|
|
* the device + OA buffer can't disappear
|
|
|
|
*/
|
|
|
|
return wait_event_interruptible(dev_priv->perf.oa.poll_wq,
|
|
|
|
!dev_priv->perf.oa.ops.oa_buffer_is_empty(dev_priv));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_oa_poll_wait(struct i915_perf_stream *stream,
|
|
|
|
struct file *file,
|
|
|
|
poll_table *wait)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
poll_wait(file, &dev_priv->perf.oa.poll_wq, wait);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_oa_read(struct i915_perf_stream *stream,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
size_t *offset)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
return dev_priv->perf.oa.ops.read(stream, buf, count, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine the render context hw id, and ensure it remains fixed for the
|
|
|
|
* lifetime of the stream. This ensures that we don't have to worry about
|
|
|
|
* updating the context ID in OACONTROL on the fly.
|
|
|
|
*/
|
|
|
|
static int oa_get_render_ctx_id(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
struct i915_vma *vma;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = i915_mutex_lock_interruptible(&dev_priv->drm);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* As the ID is the gtt offset of the context's vma we pin
|
|
|
|
* the vma to ensure the ID remains fixed.
|
|
|
|
*
|
|
|
|
* NB: implied RCS engine...
|
|
|
|
*/
|
|
|
|
vma = i915_gem_context_pin_legacy(stream->ctx, 0);
|
|
|
|
if (IS_ERR(vma)) {
|
|
|
|
ret = PTR_ERR(vma);
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev_priv->perf.oa.pinned_rcs_vma = vma;
|
|
|
|
|
|
|
|
/* Explicitly track the ID (instead of calling i915_ggtt_offset()
|
|
|
|
* on the fly) considering the difference with gen8+ and
|
|
|
|
* execlists
|
|
|
|
*/
|
|
|
|
dev_priv->perf.oa.specific_ctx_id = i915_ggtt_offset(vma);
|
|
|
|
|
|
|
|
unlock:
|
|
|
|
mutex_unlock(&dev_priv->drm.struct_mutex);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void oa_put_render_ctx_id(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->drm.struct_mutex);
|
|
|
|
|
|
|
|
i915_vma_unpin(dev_priv->perf.oa.pinned_rcs_vma);
|
|
|
|
dev_priv->perf.oa.pinned_rcs_vma = NULL;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.specific_ctx_id = INVALID_CTX_ID;
|
|
|
|
|
|
|
|
mutex_unlock(&dev_priv->drm.struct_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_oa_buffer(struct drm_i915_private *i915)
|
|
|
|
{
|
|
|
|
mutex_lock(&i915->drm.struct_mutex);
|
|
|
|
|
|
|
|
i915_gem_object_unpin_map(i915->perf.oa.oa_buffer.vma->obj);
|
|
|
|
i915_vma_unpin(i915->perf.oa.oa_buffer.vma);
|
|
|
|
i915_gem_object_put(i915->perf.oa.oa_buffer.vma->obj);
|
|
|
|
|
|
|
|
i915->perf.oa.oa_buffer.vma = NULL;
|
|
|
|
i915->perf.oa.oa_buffer.vaddr = NULL;
|
|
|
|
|
|
|
|
mutex_unlock(&i915->drm.struct_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_oa_stream_destroy(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
BUG_ON(stream != dev_priv->perf.oa.exclusive_stream);
|
|
|
|
|
|
|
|
dev_priv->perf.oa.ops.disable_metric_set(dev_priv);
|
|
|
|
|
|
|
|
free_oa_buffer(dev_priv);
|
|
|
|
|
|
|
|
intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
|
|
|
|
if (stream->ctx)
|
|
|
|
oa_put_render_ctx_id(stream);
|
|
|
|
|
|
|
|
dev_priv->perf.oa.exclusive_stream = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gen7_init_oa_buffer(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
u32 gtt_offset = i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma);
|
|
|
|
|
|
|
|
/* Pre-DevBDW: OABUFFER must be set with counters off,
|
|
|
|
* before OASTATUS1, but after OASTATUS2
|
|
|
|
*/
|
|
|
|
I915_WRITE(GEN7_OASTATUS2, gtt_offset | OA_MEM_SELECT_GGTT); /* head */
|
|
|
|
I915_WRITE(GEN7_OABUFFER, gtt_offset);
|
|
|
|
I915_WRITE(GEN7_OASTATUS1, gtt_offset | OABUFFER_SIZE_16M); /* tail */
|
|
|
|
|
|
|
|
/* On Haswell we have to track which OASTATUS1 flags we've
|
|
|
|
* already seen since they can't be cleared while periodic
|
|
|
|
* sampling is enabled.
|
|
|
|
*/
|
|
|
|
dev_priv->perf.oa.gen7_latched_oastatus1 = 0;
|
|
|
|
|
|
|
|
/* NB: although the OA buffer will initially be allocated
|
|
|
|
* zeroed via shmfs (and so this memset is redundant when
|
|
|
|
* first allocating), we may re-init the OA buffer, either
|
|
|
|
* when re-enabling a stream or in error/reset paths.
|
|
|
|
*
|
|
|
|
* The reason we clear the buffer for each re-init is for the
|
|
|
|
* sanity check in gen7_append_oa_reports() that looks at the
|
|
|
|
* report-id field to make sure it's non-zero which relies on
|
|
|
|
* the assumption that new reports are being written to zeroed
|
|
|
|
* memory...
|
|
|
|
*/
|
|
|
|
memset(dev_priv->perf.oa.oa_buffer.vaddr, 0, OA_BUFFER_SIZE);
|
|
|
|
|
|
|
|
/* Maybe make ->pollin per-stream state if we support multiple
|
|
|
|
* concurrent streams in the future.
|
|
|
|
*/
|
|
|
|
dev_priv->perf.oa.pollin = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int alloc_oa_buffer(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
struct drm_i915_gem_object *bo;
|
|
|
|
struct i915_vma *vma;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (WARN_ON(dev_priv->perf.oa.oa_buffer.vma))
|
|
|
|
return -ENODEV;
|
|
|
|
|
|
|
|
ret = i915_mutex_lock_interruptible(&dev_priv->drm);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
BUILD_BUG_ON_NOT_POWER_OF_2(OA_BUFFER_SIZE);
|
|
|
|
BUILD_BUG_ON(OA_BUFFER_SIZE < SZ_128K || OA_BUFFER_SIZE > SZ_16M);
|
|
|
|
|
|
|
|
bo = i915_gem_object_create(&dev_priv->drm, OA_BUFFER_SIZE);
|
|
|
|
if (IS_ERR(bo)) {
|
|
|
|
DRM_ERROR("Failed to allocate OA buffer\n");
|
|
|
|
ret = PTR_ERR(bo);
|
|
|
|
goto unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = i915_gem_object_set_cache_level(bo, I915_CACHE_LLC);
|
|
|
|
if (ret)
|
|
|
|
goto err_unref;
|
|
|
|
|
|
|
|
/* PreHSW required 512K alignment, HSW requires 16M */
|
|
|
|
vma = i915_gem_object_ggtt_pin(bo, NULL, 0, SZ_16M, 0);
|
|
|
|
if (IS_ERR(vma)) {
|
|
|
|
ret = PTR_ERR(vma);
|
|
|
|
goto err_unref;
|
|
|
|
}
|
|
|
|
dev_priv->perf.oa.oa_buffer.vma = vma;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.oa_buffer.vaddr =
|
|
|
|
i915_gem_object_pin_map(bo, I915_MAP_WB);
|
|
|
|
if (IS_ERR(dev_priv->perf.oa.oa_buffer.vaddr)) {
|
|
|
|
ret = PTR_ERR(dev_priv->perf.oa.oa_buffer.vaddr);
|
|
|
|
goto err_unpin;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev_priv->perf.oa.ops.init_oa_buffer(dev_priv);
|
|
|
|
|
|
|
|
DRM_DEBUG_DRIVER("OA Buffer initialized, gtt offset = 0x%x, vaddr = %p\n",
|
|
|
|
i915_ggtt_offset(dev_priv->perf.oa.oa_buffer.vma),
|
|
|
|
dev_priv->perf.oa.oa_buffer.vaddr);
|
|
|
|
|
|
|
|
goto unlock;
|
|
|
|
|
|
|
|
err_unpin:
|
|
|
|
__i915_vma_unpin(vma);
|
|
|
|
|
|
|
|
err_unref:
|
|
|
|
i915_gem_object_put(bo);
|
|
|
|
|
|
|
|
dev_priv->perf.oa.oa_buffer.vaddr = NULL;
|
|
|
|
dev_priv->perf.oa.oa_buffer.vma = NULL;
|
|
|
|
|
|
|
|
unlock:
|
|
|
|
mutex_unlock(&dev_priv->drm.struct_mutex);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void config_oa_regs(struct drm_i915_private *dev_priv,
|
|
|
|
const struct i915_oa_reg *regs,
|
|
|
|
int n_regs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < n_regs; i++) {
|
|
|
|
const struct i915_oa_reg *reg = regs + i;
|
|
|
|
|
|
|
|
I915_WRITE(reg->addr, reg->value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int hsw_enable_metric_set(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
int ret = i915_oa_select_metric_set_hsw(dev_priv);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) |
|
|
|
|
GT_NOA_ENABLE));
|
|
|
|
|
|
|
|
/* PRM:
|
|
|
|
*
|
|
|
|
* OA unit is using “crclk” for its functionality. When trunk
|
|
|
|
* level clock gating takes place, OA clock would be gated,
|
|
|
|
* unable to count the events from non-render clock domain.
|
|
|
|
* Render clock gating must be disabled when OA is enabled to
|
|
|
|
* count the events from non-render domain. Unit level clock
|
|
|
|
* gating for RCS should also be disabled.
|
|
|
|
*/
|
|
|
|
I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &
|
|
|
|
~GEN7_DOP_CLOCK_GATE_ENABLE));
|
|
|
|
I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) |
|
|
|
|
GEN6_CSUNIT_CLOCK_GATE_DISABLE));
|
|
|
|
|
|
|
|
config_oa_regs(dev_priv, dev_priv->perf.oa.mux_regs,
|
|
|
|
dev_priv->perf.oa.mux_regs_len);
|
|
|
|
|
|
|
|
/* It apparently takes a fairly long time for a new MUX
|
|
|
|
* configuration to be be applied after these register writes.
|
|
|
|
* This delay duration was derived empirically based on the
|
|
|
|
* render_basic config but hopefully it covers the maximum
|
|
|
|
* configuration latency.
|
|
|
|
*
|
|
|
|
* As a fallback, the checks in _append_oa_reports() to skip
|
|
|
|
* invalid OA reports do also seem to work to discard reports
|
|
|
|
* generated before this config has completed - albeit not
|
|
|
|
* silently.
|
|
|
|
*
|
|
|
|
* Unfortunately this is essentially a magic number, since we
|
|
|
|
* don't currently know of a reliable mechanism for predicting
|
|
|
|
* how long the MUX config will take to apply and besides
|
|
|
|
* seeing invalid reports we don't know of a reliable way to
|
|
|
|
* explicitly check that the MUX config has landed.
|
|
|
|
*
|
|
|
|
* It's even possible we've miss characterized the underlying
|
|
|
|
* problem - it just seems like the simplest explanation why
|
|
|
|
* a delay at this location would mitigate any invalid reports.
|
|
|
|
*/
|
|
|
|
usleep_range(15000, 20000);
|
|
|
|
|
|
|
|
config_oa_regs(dev_priv, dev_priv->perf.oa.b_counter_regs,
|
|
|
|
dev_priv->perf.oa.b_counter_regs_len);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void hsw_disable_metric_set(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) &
|
|
|
|
~GEN6_CSUNIT_CLOCK_GATE_DISABLE));
|
|
|
|
I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) |
|
|
|
|
GEN7_DOP_CLOCK_GATE_ENABLE));
|
|
|
|
|
|
|
|
I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) &
|
|
|
|
~GT_NOA_ENABLE));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gen7_update_oacontrol_locked(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
assert_spin_locked(&dev_priv->perf.hook_lock);
|
|
|
|
|
|
|
|
if (dev_priv->perf.oa.exclusive_stream->enabled) {
|
|
|
|
struct i915_gem_context *ctx =
|
|
|
|
dev_priv->perf.oa.exclusive_stream->ctx;
|
|
|
|
u32 ctx_id = dev_priv->perf.oa.specific_ctx_id;
|
|
|
|
|
|
|
|
bool periodic = dev_priv->perf.oa.periodic;
|
|
|
|
u32 period_exponent = dev_priv->perf.oa.period_exponent;
|
|
|
|
u32 report_format = dev_priv->perf.oa.oa_buffer.format;
|
|
|
|
|
|
|
|
I915_WRITE(GEN7_OACONTROL,
|
|
|
|
(ctx_id & GEN7_OACONTROL_CTX_MASK) |
|
|
|
|
(period_exponent <<
|
|
|
|
GEN7_OACONTROL_TIMER_PERIOD_SHIFT) |
|
|
|
|
(periodic ? GEN7_OACONTROL_TIMER_ENABLE : 0) |
|
|
|
|
(report_format << GEN7_OACONTROL_FORMAT_SHIFT) |
|
|
|
|
(ctx ? GEN7_OACONTROL_PER_CTX_ENABLE : 0) |
|
|
|
|
GEN7_OACONTROL_ENABLE);
|
|
|
|
} else
|
|
|
|
I915_WRITE(GEN7_OACONTROL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gen7_oa_enable(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
/* Reset buf pointers so we don't forward reports from before now.
|
|
|
|
*
|
|
|
|
* Think carefully if considering trying to avoid this, since it
|
|
|
|
* also ensures status flags and the buffer itself are cleared
|
|
|
|
* in error paths, and we have checks for invalid reports based
|
|
|
|
* on the assumption that certain fields are written to zeroed
|
|
|
|
* memory which this helps maintains.
|
|
|
|
*/
|
|
|
|
gen7_init_oa_buffer(dev_priv);
|
|
|
|
|
|
|
|
spin_lock_irqsave(&dev_priv->perf.hook_lock, flags);
|
|
|
|
gen7_update_oacontrol_locked(dev_priv);
|
|
|
|
spin_unlock_irqrestore(&dev_priv->perf.hook_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_oa_stream_enable(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.ops.oa_enable(dev_priv);
|
|
|
|
|
|
|
|
if (dev_priv->perf.oa.periodic)
|
|
|
|
hrtimer_start(&dev_priv->perf.oa.poll_check_timer,
|
|
|
|
ns_to_ktime(POLL_PERIOD),
|
|
|
|
HRTIMER_MODE_REL_PINNED);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gen7_oa_disable(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
I915_WRITE(GEN7_OACONTROL, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_oa_stream_disable(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.ops.oa_disable(dev_priv);
|
|
|
|
|
|
|
|
if (dev_priv->perf.oa.periodic)
|
|
|
|
hrtimer_cancel(&dev_priv->perf.oa.poll_check_timer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static u64 oa_exponent_to_ns(struct drm_i915_private *dev_priv, int exponent)
|
|
|
|
{
|
|
|
|
return 1000000000ULL * (2ULL << exponent) /
|
|
|
|
dev_priv->perf.oa.timestamp_frequency;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct i915_perf_stream_ops i915_oa_stream_ops = {
|
|
|
|
.destroy = i915_oa_stream_destroy,
|
|
|
|
.enable = i915_oa_stream_enable,
|
|
|
|
.disable = i915_oa_stream_disable,
|
|
|
|
.wait_unlocked = i915_oa_wait_unlocked,
|
|
|
|
.poll_wait = i915_oa_poll_wait,
|
|
|
|
.read = i915_oa_read,
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
};
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
static int i915_oa_stream_init(struct i915_perf_stream *stream,
|
|
|
|
struct drm_i915_perf_open_param *param,
|
|
|
|
struct perf_open_properties *props)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
int format_size;
|
|
|
|
int ret;
|
|
|
|
|
2016-11-07 19:49:53 +00:00
|
|
|
/* If the sysfs metrics/ directory wasn't registered for some
|
|
|
|
* reason then don't let userspace try their luck with config
|
|
|
|
* IDs
|
|
|
|
*/
|
|
|
|
if (!dev_priv->perf.metrics_kobj) {
|
|
|
|
DRM_ERROR("OA metrics weren't advertised via sysfs\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
if (!(props->sample_flags & SAMPLE_OA_REPORT)) {
|
|
|
|
DRM_ERROR("Only OA report sampling supported\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dev_priv->perf.oa.ops.init_oa_buffer) {
|
|
|
|
DRM_ERROR("OA unit not supported\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* To avoid the complexity of having to accurately filter
|
|
|
|
* counter reports and marshal to the appropriate client
|
|
|
|
* we currently only allow exclusive access
|
|
|
|
*/
|
|
|
|
if (dev_priv->perf.oa.exclusive_stream) {
|
|
|
|
DRM_ERROR("OA unit already in use\n");
|
|
|
|
return -EBUSY;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!props->metrics_set) {
|
|
|
|
DRM_ERROR("OA metric set not specified\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!props->oa_format) {
|
|
|
|
DRM_ERROR("OA report format not specified\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->sample_size = sizeof(struct drm_i915_perf_record_header);
|
|
|
|
|
|
|
|
format_size = dev_priv->perf.oa.oa_formats[props->oa_format].size;
|
|
|
|
|
|
|
|
stream->sample_flags |= SAMPLE_OA_REPORT;
|
|
|
|
stream->sample_size += format_size;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.oa_buffer.format_size = format_size;
|
|
|
|
if (WARN_ON(dev_priv->perf.oa.oa_buffer.format_size == 0))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.oa_buffer.format =
|
|
|
|
dev_priv->perf.oa.oa_formats[props->oa_format].format;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.metrics_set = props->metrics_set;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.periodic = props->oa_periodic;
|
|
|
|
if (dev_priv->perf.oa.periodic) {
|
|
|
|
u64 period_ns = oa_exponent_to_ns(dev_priv,
|
|
|
|
props->oa_period_exponent);
|
|
|
|
|
|
|
|
dev_priv->perf.oa.period_exponent = props->oa_period_exponent;
|
|
|
|
|
|
|
|
/* See comment for OA_TAIL_MARGIN_NSEC for details
|
|
|
|
* about this tail_margin...
|
|
|
|
*/
|
|
|
|
dev_priv->perf.oa.tail_margin =
|
|
|
|
((OA_TAIL_MARGIN_NSEC / period_ns) + 1) * format_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (stream->ctx) {
|
|
|
|
ret = oa_get_render_ctx_id(stream);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = alloc_oa_buffer(dev_priv);
|
|
|
|
if (ret)
|
|
|
|
goto err_oa_buf_alloc;
|
|
|
|
|
|
|
|
/* PRM - observability performance counters:
|
|
|
|
*
|
|
|
|
* OACONTROL, performance counter enable, note:
|
|
|
|
*
|
|
|
|
* "When this bit is set, in order to have coherent counts,
|
|
|
|
* RC6 power state and trunk clock gating must be disabled.
|
|
|
|
* This can be achieved by programming MMIO registers as
|
|
|
|
* 0xA094=0 and 0xA090[31]=1"
|
|
|
|
*
|
|
|
|
* In our case we are expecting that taking pm + FORCEWAKE
|
|
|
|
* references will effectively disable RC6.
|
|
|
|
*/
|
|
|
|
intel_runtime_pm_get(dev_priv);
|
|
|
|
intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
|
|
|
|
|
|
|
|
ret = dev_priv->perf.oa.ops.enable_metric_set(dev_priv);
|
|
|
|
if (ret)
|
|
|
|
goto err_enable;
|
|
|
|
|
|
|
|
stream->ops = &i915_oa_stream_ops;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.exclusive_stream = stream;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_enable:
|
|
|
|
intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
|
|
|
|
intel_runtime_pm_put(dev_priv);
|
|
|
|
free_oa_buffer(dev_priv);
|
|
|
|
|
|
|
|
err_oa_buf_alloc:
|
|
|
|
if (stream->ctx)
|
|
|
|
oa_put_render_ctx_id(stream);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
static ssize_t i915_perf_read_locked(struct i915_perf_stream *stream,
|
|
|
|
struct file *file,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
loff_t *ppos)
|
|
|
|
{
|
|
|
|
/* Note we keep the offset (aka bytes read) separate from any
|
|
|
|
* error status so that the final check for whether we return
|
|
|
|
* the bytes read with a higher precedence than any error (see
|
|
|
|
* comment below) doesn't need to be handled/duplicated in
|
|
|
|
* stream->ops->read() implementations.
|
|
|
|
*/
|
|
|
|
size_t offset = 0;
|
|
|
|
int ret = stream->ops->read(stream, buf, count, &offset);
|
|
|
|
|
|
|
|
/* If we've successfully copied any data then reporting that
|
|
|
|
* takes precedence over any internal error status, so the
|
|
|
|
* data isn't lost.
|
|
|
|
*
|
|
|
|
* For example ret will be -ENOSPC whenever there is more
|
|
|
|
* buffered data than can be copied to userspace, but that's
|
|
|
|
* only interesting if we weren't able to copy some data
|
|
|
|
* because it implies the userspace buffer is too small to
|
|
|
|
* receive a single record (and we never split records).
|
|
|
|
*
|
|
|
|
* Another case with ret == -EFAULT is more of a grey area
|
|
|
|
* since it would seem like bad form for userspace to ask us
|
|
|
|
* to overrun its buffer, but the user knows best:
|
|
|
|
*
|
|
|
|
* http://yarchive.net/comp/linux/partial_reads_writes.html
|
|
|
|
*/
|
|
|
|
return offset ?: (ret ?: -EAGAIN);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t i915_perf_read(struct file *file,
|
|
|
|
char __user *buf,
|
|
|
|
size_t count,
|
|
|
|
loff_t *ppos)
|
|
|
|
{
|
|
|
|
struct i915_perf_stream *stream = file->private_data;
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
ssize_t ret;
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
/* To ensure it's handled consistently we simply treat all reads of a
|
|
|
|
* disabled stream as an error. In particular it might otherwise lead
|
|
|
|
* to a deadlock for blocking file descriptors...
|
|
|
|
*/
|
|
|
|
if (!stream->enabled)
|
|
|
|
return -EIO;
|
|
|
|
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
if (!(file->f_flags & O_NONBLOCK)) {
|
2016-11-07 19:49:52 +00:00
|
|
|
/* There's the small chance of false positives from
|
|
|
|
* stream->ops->wait_unlocked.
|
|
|
|
*
|
|
|
|
* E.g. with single context filtering since we only wait until
|
|
|
|
* oabuffer has >= 1 report we don't immediately know whether
|
|
|
|
* any reports really belong to the current context
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
*/
|
|
|
|
do {
|
|
|
|
ret = stream->ops->wait_unlocked(stream);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
|
|
|
ret = i915_perf_read_locked(stream, file,
|
|
|
|
buf, count, ppos);
|
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
} while (ret == -EAGAIN);
|
|
|
|
} else {
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
|
|
|
ret = i915_perf_read_locked(stream, file, buf, count, ppos);
|
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
}
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
if (ret >= 0) {
|
|
|
|
/* Maybe make ->pollin per-stream state if we support multiple
|
|
|
|
* concurrent streams in the future.
|
|
|
|
*/
|
|
|
|
dev_priv->perf.oa.pollin = false;
|
|
|
|
}
|
|
|
|
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
static enum hrtimer_restart oa_poll_check_timer_cb(struct hrtimer *hrtimer)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv =
|
|
|
|
container_of(hrtimer, typeof(*dev_priv),
|
|
|
|
perf.oa.poll_check_timer);
|
|
|
|
|
|
|
|
if (!dev_priv->perf.oa.ops.oa_buffer_is_empty(dev_priv)) {
|
|
|
|
dev_priv->perf.oa.pollin = true;
|
|
|
|
wake_up(&dev_priv->perf.oa.poll_wq);
|
|
|
|
}
|
|
|
|
|
|
|
|
hrtimer_forward_now(hrtimer, ns_to_ktime(POLL_PERIOD));
|
|
|
|
|
|
|
|
return HRTIMER_RESTART;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int i915_perf_poll_locked(struct drm_i915_private *dev_priv,
|
|
|
|
struct i915_perf_stream *stream,
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
struct file *file,
|
|
|
|
poll_table *wait)
|
|
|
|
{
|
2016-11-07 19:49:52 +00:00
|
|
|
unsigned int events = 0;
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
|
|
|
|
stream->ops->poll_wait(stream, file, wait);
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
/* Note: we don't explicitly check whether there's something to read
|
|
|
|
* here since this path may be very hot depending on what else
|
|
|
|
* userspace is polling, or on the timeout in use. We rely solely on
|
|
|
|
* the hrtimer/oa_poll_check_timer_cb to notify us when there are
|
|
|
|
* samples to read.
|
|
|
|
*/
|
|
|
|
if (dev_priv->perf.oa.pollin)
|
|
|
|
events |= POLLIN;
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
return events;
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int i915_perf_poll(struct file *file, poll_table *wait)
|
|
|
|
{
|
|
|
|
struct i915_perf_stream *stream = file->private_data;
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
2016-11-07 19:49:52 +00:00
|
|
|
ret = i915_perf_poll_locked(dev_priv, stream, file, wait);
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_perf_enable_locked(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
if (stream->enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Allow stream->ops->enable() to refer to this */
|
|
|
|
stream->enabled = true;
|
|
|
|
|
|
|
|
if (stream->ops->enable)
|
|
|
|
stream->ops->enable(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_perf_disable_locked(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
if (!stream->enabled)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Allow stream->ops->disable() to refer to this */
|
|
|
|
stream->enabled = false;
|
|
|
|
|
|
|
|
if (stream->ops->disable)
|
|
|
|
stream->ops->disable(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static long i915_perf_ioctl_locked(struct i915_perf_stream *stream,
|
|
|
|
unsigned int cmd,
|
|
|
|
unsigned long arg)
|
|
|
|
{
|
|
|
|
switch (cmd) {
|
|
|
|
case I915_PERF_IOCTL_ENABLE:
|
|
|
|
i915_perf_enable_locked(stream);
|
|
|
|
return 0;
|
|
|
|
case I915_PERF_IOCTL_DISABLE:
|
|
|
|
i915_perf_disable_locked(stream);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static long i915_perf_ioctl(struct file *file,
|
|
|
|
unsigned int cmd,
|
|
|
|
unsigned long arg)
|
|
|
|
{
|
|
|
|
struct i915_perf_stream *stream = file->private_data;
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
long ret;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
|
|
|
ret = i915_perf_ioctl_locked(stream, cmd, arg);
|
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void i915_perf_destroy_locked(struct i915_perf_stream *stream)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
if (stream->enabled)
|
|
|
|
i915_perf_disable_locked(stream);
|
|
|
|
|
|
|
|
if (stream->ops->destroy)
|
|
|
|
stream->ops->destroy(stream);
|
|
|
|
|
|
|
|
list_del(&stream->link);
|
|
|
|
|
|
|
|
if (stream->ctx) {
|
|
|
|
mutex_lock(&dev_priv->drm.struct_mutex);
|
|
|
|
i915_gem_context_put(stream->ctx);
|
|
|
|
mutex_unlock(&dev_priv->drm.struct_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
kfree(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int i915_perf_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
struct i915_perf_stream *stream = file->private_data;
|
|
|
|
struct drm_i915_private *dev_priv = stream->dev_priv;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
|
|
|
i915_perf_destroy_locked(stream);
|
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const struct file_operations fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.llseek = no_llseek,
|
|
|
|
.release = i915_perf_release,
|
|
|
|
.poll = i915_perf_poll,
|
|
|
|
.read = i915_perf_read,
|
|
|
|
.unlocked_ioctl = i915_perf_ioctl,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static struct i915_gem_context *
|
|
|
|
lookup_context(struct drm_i915_private *dev_priv,
|
|
|
|
struct drm_i915_file_private *file_priv,
|
|
|
|
u32 ctx_user_handle)
|
|
|
|
{
|
|
|
|
struct i915_gem_context *ctx;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = i915_mutex_lock_interruptible(&dev_priv->drm);
|
|
|
|
if (ret)
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
|
|
|
ctx = i915_gem_context_lookup(file_priv, ctx_user_handle);
|
|
|
|
if (!IS_ERR(ctx))
|
|
|
|
i915_gem_context_get(ctx);
|
|
|
|
|
|
|
|
mutex_unlock(&dev_priv->drm.struct_mutex);
|
|
|
|
|
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
i915_perf_open_ioctl_locked(struct drm_i915_private *dev_priv,
|
|
|
|
struct drm_i915_perf_open_param *param,
|
|
|
|
struct perf_open_properties *props,
|
|
|
|
struct drm_file *file)
|
|
|
|
{
|
|
|
|
struct i915_gem_context *specific_ctx = NULL;
|
|
|
|
struct i915_perf_stream *stream = NULL;
|
|
|
|
unsigned long f_flags = 0;
|
|
|
|
int stream_fd;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (props->single_context) {
|
|
|
|
u32 ctx_handle = props->ctx_handle;
|
|
|
|
struct drm_i915_file_private *file_priv = file->driver_priv;
|
|
|
|
|
|
|
|
specific_ctx = lookup_context(dev_priv, file_priv, ctx_handle);
|
|
|
|
if (IS_ERR(specific_ctx)) {
|
|
|
|
ret = PTR_ERR(specific_ctx);
|
|
|
|
if (ret != -EINTR)
|
|
|
|
DRM_ERROR("Failed to look up context with ID %u for opening perf stream\n",
|
|
|
|
ctx_handle);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!specific_ctx && !capable(CAP_SYS_ADMIN)) {
|
|
|
|
DRM_ERROR("Insufficient privileges to open system-wide i915 perf stream\n");
|
|
|
|
ret = -EACCES;
|
|
|
|
goto err_ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream = kzalloc(sizeof(*stream), GFP_KERNEL);
|
|
|
|
if (!stream) {
|
|
|
|
ret = -ENOMEM;
|
|
|
|
goto err_ctx;
|
|
|
|
}
|
|
|
|
|
|
|
|
stream->dev_priv = dev_priv;
|
|
|
|
stream->ctx = specific_ctx;
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
ret = i915_oa_stream_init(stream, param, props);
|
|
|
|
if (ret)
|
|
|
|
goto err_alloc;
|
|
|
|
|
|
|
|
/* we avoid simply assigning stream->sample_flags = props->sample_flags
|
|
|
|
* to have _stream_init check the combination of sample flags more
|
|
|
|
* thoroughly, but still this is the expected result at this point.
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
*/
|
2016-11-07 19:49:52 +00:00
|
|
|
if (WARN_ON(stream->sample_flags != props->sample_flags)) {
|
|
|
|
ret = -ENODEV;
|
|
|
|
goto err_alloc;
|
|
|
|
}
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
|
|
|
|
list_add(&stream->link, &dev_priv->perf.streams);
|
|
|
|
|
|
|
|
if (param->flags & I915_PERF_FLAG_FD_CLOEXEC)
|
|
|
|
f_flags |= O_CLOEXEC;
|
|
|
|
if (param->flags & I915_PERF_FLAG_FD_NONBLOCK)
|
|
|
|
f_flags |= O_NONBLOCK;
|
|
|
|
|
|
|
|
stream_fd = anon_inode_getfd("[i915_perf]", &fops, stream, f_flags);
|
|
|
|
if (stream_fd < 0) {
|
|
|
|
ret = stream_fd;
|
|
|
|
goto err_open;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(param->flags & I915_PERF_FLAG_DISABLED))
|
|
|
|
i915_perf_enable_locked(stream);
|
|
|
|
|
|
|
|
return stream_fd;
|
|
|
|
|
|
|
|
err_open:
|
|
|
|
list_del(&stream->link);
|
|
|
|
if (stream->ops->destroy)
|
|
|
|
stream->ops->destroy(stream);
|
|
|
|
err_alloc:
|
|
|
|
kfree(stream);
|
|
|
|
err_ctx:
|
|
|
|
if (specific_ctx) {
|
|
|
|
mutex_lock(&dev_priv->drm.struct_mutex);
|
|
|
|
i915_gem_context_put(specific_ctx);
|
|
|
|
mutex_unlock(&dev_priv->drm.struct_mutex);
|
|
|
|
}
|
|
|
|
err:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note we copy the properties from userspace outside of the i915 perf
|
|
|
|
* mutex to avoid an awkward lockdep with mmap_sem.
|
|
|
|
*
|
|
|
|
* Note this function only validates properties in isolation it doesn't
|
|
|
|
* validate that the combination of properties makes sense or that all
|
|
|
|
* properties necessary for a particular kind of stream have been set.
|
|
|
|
*/
|
|
|
|
static int read_properties_unlocked(struct drm_i915_private *dev_priv,
|
|
|
|
u64 __user *uprops,
|
|
|
|
u32 n_props,
|
|
|
|
struct perf_open_properties *props)
|
|
|
|
{
|
|
|
|
u64 __user *uprop = uprops;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
memset(props, 0, sizeof(struct perf_open_properties));
|
|
|
|
|
|
|
|
if (!n_props) {
|
|
|
|
DRM_ERROR("No i915 perf properties given");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Considering that ID = 0 is reserved and assuming that we don't
|
|
|
|
* (currently) expect any configurations to ever specify duplicate
|
|
|
|
* values for a particular property ID then the last _PROP_MAX value is
|
|
|
|
* one greater than the maximum number of properties we expect to get
|
|
|
|
* from userspace.
|
|
|
|
*/
|
|
|
|
if (n_props >= DRM_I915_PERF_PROP_MAX) {
|
|
|
|
DRM_ERROR("More i915 perf properties specified than exist");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < n_props; i++) {
|
|
|
|
u64 id, value;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = get_user(id, uprop);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = get_user(value, uprop + 1);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
switch ((enum drm_i915_perf_property_id)id) {
|
|
|
|
case DRM_I915_PERF_PROP_CTX_HANDLE:
|
|
|
|
props->single_context = 1;
|
|
|
|
props->ctx_handle = value;
|
|
|
|
break;
|
2016-11-07 19:49:52 +00:00
|
|
|
case DRM_I915_PERF_PROP_SAMPLE_OA:
|
|
|
|
props->sample_flags |= SAMPLE_OA_REPORT;
|
|
|
|
break;
|
|
|
|
case DRM_I915_PERF_PROP_OA_METRICS_SET:
|
|
|
|
if (value == 0 ||
|
|
|
|
value > dev_priv->perf.oa.n_builtin_sets) {
|
|
|
|
DRM_ERROR("Unknown OA metric set ID");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
props->metrics_set = value;
|
|
|
|
break;
|
|
|
|
case DRM_I915_PERF_PROP_OA_FORMAT:
|
|
|
|
if (value == 0 || value >= I915_OA_FORMAT_MAX) {
|
|
|
|
DRM_ERROR("Invalid OA report format\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
if (!dev_priv->perf.oa.oa_formats[value].size) {
|
|
|
|
DRM_ERROR("Invalid OA report format\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
props->oa_format = value;
|
|
|
|
break;
|
|
|
|
case DRM_I915_PERF_PROP_OA_EXPONENT:
|
|
|
|
if (value > OA_EXPONENT_MAX) {
|
|
|
|
DRM_ERROR("OA timer exponent too high (> %u)\n",
|
|
|
|
OA_EXPONENT_MAX);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* NB: The exponent represents a period as follows:
|
|
|
|
*
|
|
|
|
* 80ns * 2^(period_exponent + 1)
|
|
|
|
*
|
|
|
|
* Theoretically we can program the OA unit to sample
|
|
|
|
* every 160ns but don't allow that by default unless
|
|
|
|
* root.
|
|
|
|
*
|
|
|
|
* Referring to perf's
|
|
|
|
* kernel.perf_event_max_sample_rate for a precedent
|
|
|
|
* (100000 by default); with an OA exponent of 6 we get
|
|
|
|
* a period of 10.240 microseconds -just under 100000Hz
|
|
|
|
*/
|
|
|
|
if (value < 6 && !capable(CAP_SYS_ADMIN)) {
|
|
|
|
DRM_ERROR("Minimum OA sampling exponent is 6 without root privileges\n");
|
|
|
|
return -EACCES;
|
|
|
|
}
|
|
|
|
|
|
|
|
props->oa_periodic = true;
|
|
|
|
props->oa_period_exponent = value;
|
|
|
|
break;
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
default:
|
|
|
|
MISSING_CASE(id);
|
|
|
|
DRM_ERROR("Unknown i915 perf property ID");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
uprop += 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int i915_perf_open_ioctl(struct drm_device *dev, void *data,
|
|
|
|
struct drm_file *file)
|
|
|
|
{
|
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
|
struct drm_i915_perf_open_param *param = data;
|
|
|
|
struct perf_open_properties props;
|
|
|
|
u32 known_open_flags;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (!dev_priv->perf.initialized) {
|
|
|
|
DRM_ERROR("i915 perf interface not available for this system");
|
|
|
|
return -ENOTSUPP;
|
|
|
|
}
|
|
|
|
|
|
|
|
known_open_flags = I915_PERF_FLAG_FD_CLOEXEC |
|
|
|
|
I915_PERF_FLAG_FD_NONBLOCK |
|
|
|
|
I915_PERF_FLAG_DISABLED;
|
|
|
|
if (param->flags & ~known_open_flags) {
|
|
|
|
DRM_ERROR("Unknown drm_i915_perf_open_param flag\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = read_properties_unlocked(dev_priv,
|
|
|
|
u64_to_user_ptr(param->properties_ptr),
|
|
|
|
param->num_properties,
|
|
|
|
&props);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
|
|
|
ret = i915_perf_open_ioctl_locked(dev_priv, param, &props, file);
|
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-11-07 19:49:53 +00:00
|
|
|
void i915_perf_register(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
if (!IS_HASWELL(dev_priv))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!dev_priv->perf.initialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* To be sure we're synchronized with an attempted
|
|
|
|
* i915_perf_open_ioctl(); considering that we register after
|
|
|
|
* being exposed to userspace.
|
|
|
|
*/
|
|
|
|
mutex_lock(&dev_priv->perf.lock);
|
|
|
|
|
|
|
|
dev_priv->perf.metrics_kobj =
|
|
|
|
kobject_create_and_add("metrics",
|
|
|
|
&dev_priv->drm.primary->kdev->kobj);
|
|
|
|
if (!dev_priv->perf.metrics_kobj)
|
|
|
|
goto exit;
|
|
|
|
|
|
|
|
if (i915_perf_register_sysfs_hsw(dev_priv)) {
|
|
|
|
kobject_put(dev_priv->perf.metrics_kobj);
|
|
|
|
dev_priv->perf.metrics_kobj = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
mutex_unlock(&dev_priv->perf.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
void i915_perf_unregister(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
if (!IS_HASWELL(dev_priv))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!dev_priv->perf.metrics_kobj)
|
|
|
|
return;
|
|
|
|
|
|
|
|
i915_perf_unregister_sysfs_hsw(dev_priv);
|
|
|
|
|
|
|
|
kobject_put(dev_priv->perf.metrics_kobj);
|
|
|
|
dev_priv->perf.metrics_kobj = NULL;
|
|
|
|
}
|
|
|
|
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
void i915_perf_init(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
2016-11-07 19:49:52 +00:00
|
|
|
if (!IS_HASWELL(dev_priv))
|
|
|
|
return;
|
|
|
|
|
|
|
|
hrtimer_init(&dev_priv->perf.oa.poll_check_timer,
|
|
|
|
CLOCK_MONOTONIC, HRTIMER_MODE_REL);
|
|
|
|
dev_priv->perf.oa.poll_check_timer.function = oa_poll_check_timer_cb;
|
|
|
|
init_waitqueue_head(&dev_priv->perf.oa.poll_wq);
|
|
|
|
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
INIT_LIST_HEAD(&dev_priv->perf.streams);
|
|
|
|
mutex_init(&dev_priv->perf.lock);
|
2016-11-07 19:49:52 +00:00
|
|
|
spin_lock_init(&dev_priv->perf.hook_lock);
|
|
|
|
|
|
|
|
dev_priv->perf.oa.ops.init_oa_buffer = gen7_init_oa_buffer;
|
|
|
|
dev_priv->perf.oa.ops.enable_metric_set = hsw_enable_metric_set;
|
|
|
|
dev_priv->perf.oa.ops.disable_metric_set = hsw_disable_metric_set;
|
|
|
|
dev_priv->perf.oa.ops.oa_enable = gen7_oa_enable;
|
|
|
|
dev_priv->perf.oa.ops.oa_disable = gen7_oa_disable;
|
|
|
|
dev_priv->perf.oa.ops.read = gen7_oa_read;
|
|
|
|
dev_priv->perf.oa.ops.oa_buffer_is_empty =
|
|
|
|
gen7_oa_buffer_is_empty_fop_unlocked;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.timestamp_frequency = 12500000;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.oa_formats = hsw_oa_formats;
|
|
|
|
|
|
|
|
dev_priv->perf.oa.n_builtin_sets =
|
|
|
|
i915_oa_n_builtin_metric_sets_hsw;
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
|
|
|
|
dev_priv->perf.initialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void i915_perf_fini(struct drm_i915_private *dev_priv)
|
|
|
|
{
|
|
|
|
if (!dev_priv->perf.initialized)
|
|
|
|
return;
|
|
|
|
|
2016-11-07 19:49:52 +00:00
|
|
|
memset(&dev_priv->perf.oa.ops, 0, sizeof(dev_priv->perf.oa.ops));
|
drm/i915: Add i915 perf infrastructure
Adds base i915 perf infrastructure for Gen performance metrics.
This adds a DRM_IOCTL_I915_PERF_OPEN ioctl that takes an array of uint64
properties to configure a stream of metrics and returns a new fd usable
with standard VFS system calls including read() to read typed and sized
records; ioctl() to enable or disable capture and poll() to wait for
data.
A stream is opened something like:
uint64_t properties[] = {
/* Single context sampling */
DRM_I915_PERF_PROP_CTX_HANDLE, ctx_handle,
/* Include OA reports in samples */
DRM_I915_PERF_PROP_SAMPLE_OA, true,
/* OA unit configuration */
DRM_I915_PERF_PROP_OA_METRICS_SET, metrics_set_id,
DRM_I915_PERF_PROP_OA_FORMAT, report_format,
DRM_I915_PERF_PROP_OA_EXPONENT, period_exponent,
};
struct drm_i915_perf_open_param parm = {
.flags = I915_PERF_FLAG_FD_CLOEXEC |
I915_PERF_FLAG_FD_NONBLOCK |
I915_PERF_FLAG_DISABLED,
.properties_ptr = (uint64_t)properties,
.num_properties = sizeof(properties) / 16,
};
int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, ¶m);
Records read all start with a common { type, size } header with
DRM_I915_PERF_RECORD_SAMPLE being of most interest. Sample records
contain an extensible number of fields and it's the
DRM_I915_PERF_PROP_SAMPLE_xyz properties given when opening that
determine what's included in every sample.
No specific streams are supported yet so any attempt to open a stream
will return an error.
v2:
use i915_gem_context_get() - Chris Wilson
v3:
update read() interface to avoid passing state struct - Chris Wilson
fix some rebase fallout, with i915-perf init/deinit
v4:
s/DRM_IORW/DRM_IOW/ - Emil Velikov
Signed-off-by: Robert Bragg <robert@sixbynine.org>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Reviewed-by: Sourab Gupta <sourab.gupta@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20161107194957.3385-2-robert@sixbynine.org
2016-11-07 19:49:47 +00:00
|
|
|
dev_priv->perf.initialized = false;
|
|
|
|
}
|