diff options
author | Scott D Phillips <[email protected]> | 2018-04-19 07:54:28 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2018-04-30 11:34:19 -0700 |
commit | 8ffc6ee251bdcf4a91916b73c1be71d58e680d34 (patch) | |
tree | 091d1ce053cd9ef6c35e4677b123187effd62816 /src/mesa | |
parent | 1c5f4f4e17f74d823d9e38c678e40e9f49e2c053 (diff) |
intel: fix check for 48b ppgtt support
The previous logic of the supports_48b_addresses wasn't actually
checking if i915.ko was running with full_48bit_ppgtt. The ENOENT
it was checking for was actually coming from the invalid context
id provided in the test execbuffer. There is no path in the
kernel driver where the presence of
EXEC_OBJECT_SUPPORTS_48B_ADDRESS leads to an error.
Instead, check the default context's GTT_SIZE param for a value
greater than 4 GiB
v2 (Ken): Fix in i965 as well.
v3 Check GTT_SIZE instead of HAS_ALIASING_PPGTT (Chris Wilson)
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_bufmgr.c | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_bufmgr.c b/src/mesa/drivers/dri/i965/brw_bufmgr.c index 8ba915b179a..7cb1f03cf07 100644 --- a/src/mesa/drivers/dri/i965/brw_bufmgr.c +++ b/src/mesa/drivers/dri/i965/brw_bufmgr.c @@ -1385,22 +1385,20 @@ gem_param(int fd, int name) return v; } -static bool -gem_supports_48b_addresses(int fd) +static int +gem_context_getparam(int fd, uint32_t context, uint64_t param, uint64_t *value) { - struct drm_i915_gem_exec_object2 obj = { - .flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS, + struct drm_i915_gem_context_param gp = { + .ctx_id = context, + .param = param, }; - struct drm_i915_gem_execbuffer2 execbuf = { - .buffers_ptr = (uintptr_t)&obj, - .buffer_count = 1, - .rsvd1 = 0xffffffu, - }; + if (drmIoctl(fd, DRM_IOCTL_I915_GEM_CONTEXT_GETPARAM, &gp)) + return -1; - int ret = drmIoctl(fd, DRM_IOCTL_I915_GEM_EXECBUFFER2, &execbuf); + *value = gp.value; - return ret == -1 && errno == ENOENT; + return 0; } /** @@ -1434,10 +1432,14 @@ brw_bufmgr_init(struct gen_device_info *devinfo, int fd) return NULL; } + uint64_t gtt_size; + if (gem_context_getparam(fd, 0, I915_CONTEXT_PARAM_GTT_SIZE, >t_size)) + gtt_size = 0; + bufmgr->has_llc = devinfo->has_llc; bufmgr->has_mmap_wc = gem_param(fd, I915_PARAM_MMAP_VERSION) > 0; - bufmgr->supports_48b_addresses = - devinfo->gen >= 8 && gem_supports_48b_addresses(fd); + bufmgr->supports_48b_addresses = devinfo->gen >= 8 && + gtt_size > (4ULL << 30 /* GiB */); init_cache_buckets(bufmgr); |