From patchwork Fri Apr 22 11:33:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: sourab.gupta@intel.com X-Patchwork-Id: 8911081 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 1B0969F1D3 for ; Fri, 22 Apr 2016 11:33:47 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2F18F20212 for ; Fri, 22 Apr 2016 11:33:46 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id D035E20220 for ; Fri, 22 Apr 2016 11:33:44 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 278526EEB9; Fri, 22 Apr 2016 11:33:37 +0000 (UTC) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by gabe.freedesktop.org (Postfix) with ESMTP id 90C1C6EE9E for ; Fri, 22 Apr 2016 11:32:51 +0000 (UTC) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga103.jf.intel.com with ESMTP; 22 Apr 2016 04:32:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,517,1455004800"; d="scan'208";a="690445893" Received: from sourab-desktop.iind.intel.com ([10.223.82.63]) by FMSMGA003.fm.intel.com with ESMTP; 22 Apr 2016 04:32:48 -0700 From: sourab.gupta@intel.com To: intel-gfx@lists.freedesktop.org Date: Fri, 22 Apr 2016 17:03:58 +0530 Message-Id: <1461324845-25755-10-git-send-email-sourab.gupta@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1461324845-25755-1-git-send-email-sourab.gupta@intel.com> References: <1461324845-25755-1-git-send-email-sourab.gupta@intel.com> Cc: Daniel Vetter , Sourab Gupta , Deepak S Subject: [Intel-gfx] [PATCH 09/16] drm/i915: Populate ctx ID for periodic OA reports X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-5.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Sourab Gupta This adds support for populating the ctx id for the periodic OA reports when requested through the corresponding property. For Gen8, the OA reports itself have the ctx ID and it is the one programmed into HW while submitting workloads. Thus it's retrieved from reports itself. For Gen7, the OA reports don't have any such field, and we can populate this field with the last seen ctx ID while sending CS reports. Signed-off-by: Sourab Gupta --- drivers/gpu/drm/i915/i915_drv.h | 3 +++ drivers/gpu/drm/i915/i915_perf.c | 52 +++++++++++++++++++++++++++++++++++++--- 2 files changed, 52 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 6bea3bb..53bf148 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -1823,6 +1823,8 @@ struct i915_oa_ops { u32 ts, u32 max_records); int (*oa_buffer_num_samples)(struct drm_i915_private *dev_priv, u32 *last_ts); + u32 (*oa_buffer_get_ctx_id)(struct i915_perf_stream *stream, + const u8 *report); }; /* @@ -2174,6 +2176,7 @@ struct drm_i915_private { u32 status; } command_stream_buf; + u32 last_ctx_id; struct list_head node_list; spinlock_t node_list_lock; } perf; diff --git a/drivers/gpu/drm/i915/i915_perf.c b/drivers/gpu/drm/i915/i915_perf.c index 147f377..a112c20 100644 --- a/drivers/gpu/drm/i915/i915_perf.c +++ b/drivers/gpu/drm/i915/i915_perf.c @@ -476,6 +476,46 @@ gen7_oa_buffer_num_samples_fop_unlocked(struct drm_i915_private *dev_priv, return num_samples; } +static u32 gen7_oa_buffer_get_ctx_id(struct i915_perf_stream *stream, + const u8 *report) +{ + struct drm_i915_private *dev_priv = stream->dev_priv; + + if (!stream->cs_mode) + WARN_ONCE(1, + "CTX ID can't be retrieved if command stream mode not enabled"); + + /* + * OA reports generated in Gen7 don't have the ctx ID information. + * Therefore, just rely on the ctx ID information from the last CS + * sample forwarded + */ + return dev_priv->perf.last_ctx_id; +} + +static u32 gen8_oa_buffer_get_ctx_id(struct i915_perf_stream *stream, + const u8 *report) +{ + struct drm_i915_private *dev_priv = stream->dev_priv; + + /* The ctx ID present in the OA reports have intel_context::global_id + * present, since this is programmed into the ELSP in execlist mode. + * In non-execlist mode, fall back to retrieving the ctx ID from the + * last saved ctx ID from command stream mode. + */ + if (i915.enable_execlists) { + u32 ctx_id = *(u32 *)(report + 12); + ctx_id &= 0xfffff; + return ctx_id; + } else { + if (!stream->cs_mode) + WARN_ONCE(1, + "CTX ID can't be retrieved if command stream mode not enabled"); + + return dev_priv->perf.last_ctx_id; + } +} + /** * Appends a status record to a userspace read() buffer. */ @@ -571,9 +611,9 @@ static int append_oa_buffer_sample(struct i915_perf_stream *stream, data.source = source; } -#warning "FIXME: append_oa_buffer_sample: read ctx ID from report and map that to an intel_context::global_id" if (sample_flags & SAMPLE_CTX_ID) - data.ctx_id = 0; + data.ctx_id = dev_priv->perf.oa.ops.oa_buffer_get_ctx_id( + stream, report); if (sample_flags & SAMPLE_OA_REPORT) data.report = report; @@ -998,8 +1038,10 @@ static int append_oa_rcs_sample(struct i915_perf_stream *stream, if (sample_flags & SAMPLE_OA_SOURCE_INFO) data.source = I915_PERF_OA_EVENT_SOURCE_RCS; - if (sample_flags & SAMPLE_CTX_ID) + if (sample_flags & SAMPLE_CTX_ID) { data.ctx_id = node->ctx_id; + dev_priv->perf.last_ctx_id = node->ctx_id; + } if (sample_flags & SAMPLE_OA_REPORT) data.report = report; @@ -2717,6 +2759,8 @@ void i915_perf_init(struct drm_device *dev) dev_priv->perf.oa.ops.read = gen7_oa_read; dev_priv->perf.oa.ops.oa_buffer_num_samples = gen7_oa_buffer_num_samples_fop_unlocked; + dev_priv->perf.oa.ops.oa_buffer_get_ctx_id = + gen7_oa_buffer_get_ctx_id; dev_priv->perf.oa.oa_formats = hsw_oa_formats; @@ -2732,6 +2776,8 @@ void i915_perf_init(struct drm_device *dev) dev_priv->perf.oa.ops.read = gen8_oa_read; dev_priv->perf.oa.ops.oa_buffer_num_samples = gen8_oa_buffer_num_samples_fop_unlocked; + dev_priv->perf.oa.ops.oa_buffer_get_ctx_id = + gen8_oa_buffer_get_ctx_id; dev_priv->perf.oa.oa_formats = gen8_plus_oa_formats;