From: Arun Siluvery <arun.siluvery@linux.intel.com>
To: "Yang, Rong R" <rong.r.yang@intel.com>,
"beignet@lists.freedesktop.org" <beignet@lists.freedesktop.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>
Cc: "intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
Daniel Vetter <daniel@ffwll.ch>,
Chris Wilson <chris@chris-wilson.co.uk>
Subject: Re: [Patch V3] intel: Export pooled EU and min no. of eus in a pool.
Date: Tue, 2 Aug 2016 11:38:34 +0100 [thread overview]
Message-ID: <57A0782A.7020602@linux.intel.com> (raw)
In-Reply-To: <7597C9376C272A4AB2D29E91550B7B09028C429D@shsmsx102.ccr.corp.intel.com>
On 02/08/2016 07:20, Yang, Rong R wrote:
> I sent a new version, could you check this and give comments/ACK?
>
Cc: Daniel, intel-gfx mailing list.
regards
Arun
> Thanks,
> Yang Rong
>
>> -----Original Message-----
>> From: Beignet [mailto:beignet-bounces@lists.freedesktop.org] On Behalf Of
>> Yang Rong
>> Sent: Tuesday, August 2, 2016 15:51
>> To: beignet@lists.freedesktop.org; dri-devel@lists.freedesktop.org
>> Cc: Yang, Rong R <rong.r.yang@intel.com>
>> Subject: [Beignet] [Patch V3] intel: Export pooled EU and min no. of eus in a
>> pool.
>>
>> Update kernel interface with new I915_GETPARAM ioctl entries for pooled
>> EU and min no. of eus in a pool. Add a wrapping function for each parameter.
>> Userspace drivers need these values when decide the thread count. This
>> kernel enabled pooled eu by default for BXT and for fused down 2x6 parts it
>> is advised to turn it off.
>>
>> But there is another HW issue in these parts (fused down 2x6 parts) before
>> C0 that requires Pooled EU to be enabled as a workaround. In this case the
>> pool configuration changes depending upon which subslice is disabled and
>> the no. of eus in a pool is different, So userspace need to know min no. of
>> eus in a pool.
>>
>> V2: use return value as the query results.
>> ret < 0 when error, ret = 0 when not support, and ret > 0 indicate
>> query results.(Chris)
>> V3: Correct V2 errors.
>>
>> Signed-off-by: Yang Rong <rong.r.yang@intel.com>
>> ---
>> include/drm/i915_drm.h | 2 ++
>> intel/intel_bufmgr.h | 3 +++
>> intel/intel_bufmgr_gem.c | 30 ++++++++++++++++++++++++++++++
>> 3 files changed, 35 insertions(+)
>>
>> diff --git a/include/drm/i915_drm.h b/include/drm/i915_drm.h index
>> c4ce6b2..eb611a7 100644
>> --- a/include/drm/i915_drm.h
>> +++ b/include/drm/i915_drm.h
>> @@ -357,6 +357,8 @@ typedef struct drm_i915_irq_wait {
>> #define I915_PARAM_HAS_GPU_RESET 35
>> #define I915_PARAM_HAS_RESOURCE_STREAMER 36
>> #define I915_PARAM_HAS_EXEC_SOFTPIN 37
>> +#define I915_PARAM_HAS_POOLED_EU 38
>> +#define I915_PARAM_MIN_EU_IN_POOL 39
>>
>> typedef struct drm_i915_getparam {
>> __s32 param;
>> diff --git a/intel/intel_bufmgr.h b/intel/intel_bufmgr.h index
>> a1abbcd..96a4d9d 100644
>> --- a/intel/intel_bufmgr.h
>> +++ b/intel/intel_bufmgr.h
>> @@ -273,6 +273,9 @@ int drm_intel_get_reset_stats(drm_intel_context
>> *ctx, int drm_intel_get_subslice_total(int fd, unsigned int *subslice_total);
>> int drm_intel_get_eu_total(int fd, unsigned int *eu_total);
>>
>> +int drm_intel_get_pooled_eu(int fd);
>> +int drm_intel_get_min_eu_in_pool(int fd);
>> +
>> /** @{ Compatibility defines to keep old code building despite the symbol
>> rename
>> * from dri_* to drm_intel_*
>> */
>> diff --git a/intel/intel_bufmgr_gem.c b/intel/intel_bufmgr_gem.c index
>> 0a4012b..b0a0eb9 100644
>> --- a/intel/intel_bufmgr_gem.c
>> +++ b/intel/intel_bufmgr_gem.c
>> @@ -3237,6 +3237,36 @@ drm_intel_get_eu_total(int fd, unsigned int
>> *eu_total)
>> return 0;
>> }
>>
>> +int
>> +drm_intel_get_pooled_eu(int fd)
>> +{
>> + drm_i915_getparam_t gp;
>> + int ret;
>> +
>> + memclear(gp);
>> + gp.param = I915_PARAM_HAS_POOLED_EU;
>> + gp.value = &ret;
>> + if (drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp))
>> + return -errno;
>> +
>> + return ret;
>> +}
>> +
>> +int
>> +drm_intel_get_min_eu_in_pool(int fd)
>> +{
>> + drm_i915_getparam_t gp;
>> + int ret;
>> +
>> + memclear(gp);
>> + gp.param = I915_PARAM_MIN_EU_IN_POOL;
>> + gp.value = &ret;
>> + if (drmIoctl(fd, DRM_IOCTL_I915_GETPARAM, &gp))
>> + return -errno;
>> +
>> + return ret;
>> +}
>> +
>> /**
>> * Annotate the given bo for use in aub dumping.
>> *
>> --
>> 2.1.4
>>
>> _______________________________________________
>> Beignet mailing list
>> Beignet@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/beignet
_______________________________________________
Beignet mailing list
Beignet@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/beignet
next prev parent reply other threads:[~2016-08-02 10:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-02 7:50 [Patch V3] intel: Export pooled EU and min no. of eus in a pool Yang Rong
2016-08-02 6:20 ` Yang, Rong R
2016-08-02 10:38 ` Arun Siluvery [this message]
2016-09-07 12:56 ` Arun Siluvery
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=57A0782A.7020602@linux.intel.com \
--to=arun.siluvery@linux.intel.com \
--cc=beignet@lists.freedesktop.org \
--cc=chris@chris-wilson.co.uk \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=rong.r.yang@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).