Eric Engestrom
e60a00a356
VERSION: bump to release 20.1.8
mesa-20.1.8
2020-09-16 19:27:48 +02:00
Eric Engestrom
fcab33fce7
docs: add release notes for 20.1.8
2020-09-16 19:24:14 +02:00
Pierre-Eric Pelloux-Prayer
6a766857a4
radeon/vcn: set dec->bs_ptr = NULL on unmap
...
To avoid using a dangling pointer.
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/1308
Cc: mesa-stable
Reviewed-by: Boyuan Zhang <boyuan.zhang@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6556 >
(cherry picked from commit 7d853966df )
2020-09-16 19:23:28 +02:00
Pierre-Eric Pelloux-Prayer
2dc3d4c648
r600/uvd: set dec->bs_ptr = NULL on unmap
...
To avoid using a dangling pointer.
See https://gitlab.freedesktop.org/mesa/mesa/-/issues/1308
Cc: mesa-stable
Reviewed-by: Boyuan Zhang <boyuan.zhang@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6556 >
(cherry picked from commit eb60849ea2 )
2020-09-16 19:23:28 +02:00
Pierre-Eric Pelloux-Prayer
d0634a167c
mesa/st: release debug_output after destroying the context
...
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3230
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2218
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5789 >
(cherry picked from commit 25baceafd3 )
2020-09-16 19:23:28 +02:00
Pierre-Eric Pelloux-Prayer
94047baebe
mesa: add bool param to _mesa_free_context_data
...
The param controls whether _mesa_destroy_debug_output should be called or not.
No functional changes; this will be used by the next commit.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5789 >
(cherry picked from commit 7f0b6a5df8 )
2020-09-16 19:23:28 +02:00
Pierre-Eric Pelloux-Prayer
0831f06c2d
mesa: rename _mesa_free_errors_data
...
Use the _mesa_init_XXX / _mesa_destroy_XXX pattern to clearly associate
the 2 functions.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5789 >
(cherry picked from commit e6f7b4312f )
2020-09-16 19:23:28 +02:00
Timur Kristóf
0e1aa8daa3
aco: Fix emit_boolean_exclusive_scan in wave32 mode.
...
Use the lane mask instead of s2 for the register class.
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com >
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6699 >
(cherry picked from commit efa1c760d1 )
2020-09-16 19:23:27 +02:00
Jordan Justen
94faf66ad2
anv, iris: Set MediaSamplerDOPClockGateEnable for gen12+
...
This has been shown to help performance on TGL and DG1. This could be
applied to gen9+, but we still need to show if it helps with those
platforms.
Rework:
* Make change in src/intel/vulkan/genX_cmd_buffer.c too. (Ken)
* Keep mask as 3 for gen < 12
Cc: mesa-stable@lists.freedesktop.org
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com >
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6684 >
(cherry picked from commit 20a4235c4c )
2020-09-16 19:23:27 +02:00
Qiang Yu
e3fe502bfe
radeonsi: fix max syncobj wait timeout
...
syncobj wait takes int64_t timeout and won't clamp it
in kernel code, so we have to pass in INT64_MAX instead
of OS_TIMEOUT_INFINITE which is UINT64_MAX. Otherwise
syncobj wait with OS_TIMEOUT_INFINITE case just return
fail.
Fixes: c638301b42 "radeonsi: fix syncobj wait timeout"
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Signed-off-by: Qiang Yu <yuq825@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6676 >
(cherry picked from commit ef980ac0c1 )
2020-09-16 19:23:27 +02:00
Nanley Chery
8e6f14e611
blorp: Fix alignment test for HIZ_CCS_WT fast-clears
...
Remove the extra logical ORs in the ternary operation.
Fixes: 5425fcf2cb ("intel/blorp: Satisfy HIZ_CCS fast-clear alignments")
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6650 >
(cherry picked from commit 1eff389bd3 )
2020-09-16 19:23:27 +02:00
Dave Airlie
1cd618104a
gallivm: disable brilinear for lod bias and explicit lod.
...
This allows GL 4.5 CTS to pass in full with no flags, other than
that I'm not sure if it's a good or bad idea.
Reviewed-by: Roland Scheidegger <sroland@vmware.com >
Cc: mesa-stable@lists.freedesktop.org
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6638 >
(cherry picked from commit b0722cb670 )
2020-09-16 19:23:27 +02:00
Icecream95
b5531f571b
pan/mdg: Fix spilling of non-32-bit types
...
The source argument for mov has index 1, not 0.
Fixes a vertex shader in SuperTuxKart.
Fixes: b4de9e035a ("pan/mdg: Mask spills from texture write")
Reported-by: macc24
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com >~
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6659 >
(cherry picked from commit a4885d2691 )
2020-09-16 19:23:26 +02:00
Jason Ekstrand
a57ecd7fe7
nir: More NIR_MAX_VEC_COMPONENTS fixes
...
A couple of these probably aren't strictly necessary but they won't
hurt. The one that's particularly tricky is a fixed-length array in
nir_search.h. However, to avoid blowing up the binary size of
nir_opt_algebraic by about 2x, we just assert that only small ops are
used.
Cc: mesa-stable@lists.freedesktop.org
Reviewed-by: Jesse Natalie <jenatali@microsoft.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6655 >
(cherry picked from commit d86e38af2c )
2020-09-16 19:23:26 +02:00
Eric Anholt
dfdefc9422
freedreno: Make the pack struct have a .qword for wide addresses.
...
Storing a precomputed iova in reg packing wasn't possible because you'd
truncate to 32 bits. Making it be .qword makes it possible.
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6592 >
(cherry picked from commit 3b3772d6e6 )
2020-09-16 19:23:26 +02:00
Jason Ekstrand
76bb05414f
spirv: Run repair_ssa if there are discard instructions
...
SPIR-V's OpKill is a control-flow instruction but NIR's discard is not.
Therefore, it can be valid SPIR-V to have
if (...) {
foo = /* something */
} else {
discard;
}
use(foo);
without any phi between the definition of foo and its use. This is not
true in NIR, however, because NIR's discard isn't considered
control-flow. Arguably, this is a NIR bug but making discard control-
flow is a very deep change that can have serious ans subtle
side-effects. The easier thing to do is just fix up the SSA in case we
have an OpKill which might have gotten us into the above case.
Fixes dEQP-VK.graphicsfuzz.vectors-and-discard-in-function with the new
NIR dominance validation pass enabled.
Cc: mesa-stable@lists.freedesktop.org
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5288 >
(cherry picked from commit 7cedc4128a )
2020-09-16 19:23:26 +02:00
Rhys Perry
f524454b02
nir/opt_if: fix opt_if_merge when destination branch has a jump
...
Fixes a case where opt_if_merge created code like:
if (...) {
break;
loop {
...
}
}
which caused opt_peel_loop_initial_if to complain that the loop pre-header
wasn't a predecessor of the loop header. This patch prevents this
(invalid, I think) unreachable code from being created.
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com >
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com >
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3496
Fixes: 4d3f6cb973 ('nir: merge some basic consecutive ifs')
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6633 >
(cherry picked from commit 6cef804067 )
2020-09-16 19:23:25 +02:00
Bas Nieuwenhuizen
e0987370f2
radeonsi: Work around Wasteland 2 bug.
...
Confirmed by an user on AMD HW that this driconf flag works
around the issue.
Gitlab: https://gitlab.freedesktop.org/mesa/mesa/-/issues/1535
CC: mesa-stable
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6637 >
(cherry picked from commit 9b3491870f )
2020-09-16 19:23:25 +02:00
Michel Zou
a7a64ae923
swr: fix build with mingw
...
Reviewed-by: Jan Zielinski <jan.zielinski@intel.com >
Tested-by: Prodea Alexandru-Liviu <liviuprodea@yahoo.com >
Cc: mesa-stable
closes #3454
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6532 >
(cherry picked from commit 2c94a9788e )
2020-09-16 19:23:25 +02:00
Qiang Yu
8a3404c547
radeonsi: fix syncobj wait timeout
...
syncobj wait takes absolute timeout value.
Fixes: 162502370c "winsys/amdgpu: implement sync_file import/export"
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Signed-off-by: Qiang Yu <yuq825@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6579 >
(cherry picked from commit c638301b42 )
2020-09-16 19:23:25 +02:00
Marek Olšák
b8127c7cfb
Revert "ac: generate FMA for inexact instructions for radeonsi"
...
This reverts commit 4b9370cb0f .
Fixes: 4b9370cb0f
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3429
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com >
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6284 >
(cherry picked from commit f85294207f )
2020-09-16 19:23:24 +02:00
Andrey Vostrikov
6781cc30cb
egl/x11: Free memory allocated for reply structures on error
...
This patch fixes memory leaks when reply is allocated and is not freed
on error execution path.
Found by enabling address sanitizer on simple EGL app.
```c
int main()
{
EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
EGLint major;
EGLint minor;
if (!eglInitialize(display, &major, &minor))
{
return 1;
}
eglTerminate(display);
return 0;
}
```
Compiled with: `gcc testme.c -o testme -fsanitize=address -lasan -lEGL`
Execution environment:
- Windows 10, VMWare Player 15.5.2 build-15785246 without 3D accelaration
- Guest OS: OpenSUSE Leap 15.2
- Mesa 19.3.4
Program output:
```sh
ASAN_OPTIONS=fast_unwind_on_malloc=0 ./testme
libEGL warning: DRI2: failed to authenticate
==52510==ERROR: LeakSanitizer: detected memory leaks
Direct leak of 32 byte(s) in 1 object(s) allocated from:
#0 0x7fa62315f500 in malloc (/usr/lib64/libasan.so.4+0xdc500)
#1 0x7fa61e12d86b (/usr/lib64/libxcb.so.1+0xf86b)
#2 0x7fa61e12b5c7 (/usr/lib64/libxcb.so.1+0xd5c7)
#3 0x7fa61e12cc3e (/usr/lib64/libxcb.so.1+0xec3e)
#4 0x7fa61e12cd4f in xcb_wait_for_reply (/usr/lib64/libxcb.so.1+0xed4f)
#5 0x7fa61ebe02a5 (/usr/lib64/libEGL_mesa.so.0+0x202a5)
#6 0x7fa61ebdb5ca (/usr/lib64/libEGL_mesa.so.0+0x1b5ca)
#7 0x7fa61ebd750c (/usr/lib64/libEGL_mesa.so.0+0x1750c)
#8 0x7fa61ebd7554 (/usr/lib64/libEGL_mesa.so.0+0x17554)
#9 0x7fa61ebd1107 (/usr/lib64/libEGL_mesa.so.0+0x11107)
#10 0x400856 in main (/home/user/testme+0x400856)
#11 0x7fa622ad8349 in __libc_start_main (/lib64/libc.so.6+0x24349)
#12 0x4006e9 in _start (/home/user/testme+0x4006e9)
SUMMARY: AddressSanitizer: 32 byte(s) leaked in 1 allocation(s).
```
Signed-off-by: Andrey Vostrikov <av.linux.dev@gmail.com >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Reviewed-by: Eric Engestrom <eric@engestrom.ch >
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6611 >
(cherry picked from commit 42420730d1 )
2020-09-16 19:23:24 +02:00
Rhys Perry
7c6bff5523
aco: fix byte_align_scalar for 3 dword vectors
...
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com >
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev >
Fixes: fe08f0ccf9
('aco: add byte_align_scalar() & trim_subdword_vector() helper functions')
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4710 >
(cherry picked from commit 8faf85f687 )
2020-09-16 19:23:24 +02:00
Eric Engestrom
b1433c1b1e
meson: drop leftover PTHREAD_SETAFFINITY_IN_NP_HEADER
...
55765f80 replaced this with a check for the header itself.
Fixes: 55765f80b9 ("util/u_thread: include pthread_np.h if found")
Signed-off-by: Eric Engestrom <eric@engestrom.ch >
Reviewed-by: Jonathan Gray <jsg@jsg.id.au >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6548 >
(cherry picked from commit 0f4d09443e )
2020-09-16 19:23:24 +02:00
Nanley Chery
59bd16ee86
iris: Fix aux assertion in resource_get_handle
...
iris_resource_get_handle currently asserts that the resource has an aux
state that is suitable for sharing. However, the caller of this function
can pass a flag to specify that it will handle flushing/resolving the
resource as needed for sharing. Take this flag into account when
asserting the state of the aux buffer.
Fixes: e81392868e ("iris/resource: Drop redundant checks for aux support")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/128
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/1371 >
(cherry picked from commit 3cf6325e72 )
2020-09-16 19:23:24 +02:00
Tony Wasserka
db89c57209
amd/common: Fix various non-critical integer overflows
...
The result of 0xf << 28 is a signed integer and hence overflows into the sign
bit. In practice compilers did the right thing here, since the intent of the
code was unsigned arithmetic anyway.
Cc: mesa-stable
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6568 >
(cherry picked from commit 93c8777ace )
2020-09-16 19:23:24 +02:00
Tony Wasserka
3c19a2cfda
aco: Fix integer overflows when emitting parallel copies during RA
...
32-bit shifts were accidentally used before this change despite the intended
output being 64 bits.
This was observed when compiling Dolphin's ubershaders.
Cc: mesa-stable
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6568 >
(cherry picked from commit 2182bbf84f )
2020-09-16 19:23:24 +02:00
Tony Wasserka
489e07d86d
radv: Fix various non-critical integer overflows
...
The result of 0xf << 28 is a signed integer and hence overflows into the sign
bit. In practice compilers did the right thing here, since the intent of the
code was unsigned arithmetic anyway.
These conditions were observed in:
* dEQP-VK.pipeline.image.suballocation.sampling_type.combined.view_type.1d.format.r4g4b4a4_unorm_pack16.count_8.size.512x1
* dEQP-VK.binding_model.descriptorset_random.sets32.noarray.ubolimitlow.sbolimitlow.sampledimglow.outimgonly.noiub.nouab.frag.ialimithigh.0
Cc: mesa-stable
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6568 >
(cherry picked from commit f18fc34c4d )
2020-09-16 19:23:23 +02:00
Bas Nieuwenhuizen
c4089181e3
radv: Fix threading issue with submission refcounts.
...
If decrement == 0 then:
- it isn't safe to access the submission
- even if it is, checking that the result of the atomic_sub is 0
doesn't given an unique owner anymore.
So skip it. The submission always starts out with refcount >= 1,
so first one to decrement to 0 still get dibs on executing it.
Fixes: 4aa75bb3bd "radv: Add wait-before-submit support for timelines."
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6478 >
(cherry picked from commit 6b75262941 )
2020-09-16 19:23:23 +02:00
Jason Ekstrand
361de93f4f
intel/fs: Don't copy-propagate stride=0 sources into ddx/ddy
...
This can come up if, for instance, the shader does a derivative of a
uniform or flat input. Ideally, NIR would use divergence analysis to
get rid of the derivative in this case but it doesn't right now. This
fixes a crash in F1 2017.
Cc: mesa-stable@lists.freedesktop.org
Reported-by: Marcin Ślusarz <marcin.slusarz@intel.com >
Tested-by: Marcin Ślusarz <marcin.slusarz@intel.com >
Reviewed-by: Matt Turner <mattst88@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6564 >
(cherry picked from commit 8e8701b43a )
2020-09-16 19:23:23 +02:00
Eric Anholt
022c22d1cb
gallium/tgsi_exec: Fix up NumOutputs counting
...
We can get duplicate declarations for an index (for example dvec3 + float
packed into 2 vec4s, the second one won't pack into the first's array
decl), and we'd end up stepping by the wrong amount in GS vtx/prim emit.
Fixes vs-gs-fs-double, sso-vs-gs-fs-array-interleave piglit tests.
Fixes: 49155c3264 ("draw/tgsi: fix geometry shader input/output swizzling")
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6567 >
(cherry picked from commit 329dee1455 )
2020-09-16 19:23:23 +02:00
Danylo Piliaiev
2f6cd0afa2
intel/compiler: Fix pointer arithmetic when reading shader assembly
...
start_offset is a byte offset.
Fixes: 04a9951580
Signed-off-by: Danylo Piliaiev <danylo.piliaiev@globallogic.com >
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6557 >
(cherry picked from commit 87fa645b94 )
2020-09-16 19:23:23 +02:00
Eric Engestrom
3f55b4c50a
.pick_status.json: Mark c8ac01af33 as denominated
2020-09-16 19:23:23 +02:00
Eric Engestrom
60eaaf7fb5
.pick_status.json: Update to 123bdb61cc
2020-09-16 19:23:18 +02:00
Eric Engestrom
ce21088ed1
docs/relnotes: add sha256 sums to 20.1.7
2020-09-02 22:35:27 +02:00
Eric Engestrom
c0e5cf9a87
VERSION: bump to release 20.1.7
mesa-20.1.7
2020-09-02 21:53:06 +02:00
Eric Engestrom
c7fe43b890
docs: add release notes for 20.1.7
2020-09-02 21:51:56 +02:00
Pierre-Eric Pelloux-Prayer
beb03cfcd1
radeonsi: use radeonsi_clamp_div_by_zero for SPECviewperf13, Road Redemption
...
Fixes SPECviewperf 13 creo rendering.
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2639
Cc: mesa-stable
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6259 >
(cherry picked from commit a1c2bd6ce8 )
2020-09-02 21:50:50 +02:00
Pierre-Eric Pelloux-Prayer
9fd8d60220
radeonsi,driconf: add clamp_div_by_zero option
...
Cc: mesa-stable
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6259 >
(cherry picked from commit b8445520cb )
2020-09-02 21:50:50 +02:00
Pierre-Eric Pelloux-Prayer
0c96f0c600
ac/llvm: add option to clamp division by zero
...
Replace div(x) by min(div(x), FLT_MAX)) to avoid getting a NaN result
when x is 0.
A cheaper alternative would be to use legacy mult instructions but they're
not exposed by LLVM.
Cc: mesa-stable
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6259 >
(cherry picked from commit 32f46a55c8 )
2020-09-02 21:50:49 +02:00
Pierre-Eric Pelloux-Prayer
7f57ac625e
radeonsi: enable PIPE_CAP_NO_CLIP_ON_COPY_TEX
...
This fixes specviewperf13 catia test rendering.
Cc: mesa-stable
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6259 >
(cherry picked from commit f8c0e20152 )
2020-09-02 21:50:49 +02:00
Pierre-Eric Pelloux-Prayer
73c77885de
mesa/st: introduce PIPE_CAP_NO_CLIP_ON_COPY_TEX
...
If supported this means that src_x/src_y/width/height parameters of
CopyTex functions will not be clipped using the read framebuffer's dimensions.
Cc: mesa-stable
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6259 >
(cherry picked from commit d94bec5c49 )
2020-09-02 21:50:49 +02:00
Jonathan Gray
321f645126
vulkan: make VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT conditional
...
Only advertise VK_TIME_DOMAIN_CLOCK_MONOTONIC_RAW_EXT if CLOCK_MONOTONIC_RAW
is defined. Fixes the build on OpenBSD which has CLOCK_MONOTONIC but not
CLOCK_MONOTONIC_RAW.
Fixes: 67a2c1493c ("vulkan: Add VK_EXT_calibrated_timestamps extension (radv and anv) [v5]")
Signed-off-by: Jonathan Gray <jsg@jsg.id.au >
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6517 >
(cherry picked from commit 4500e6e460 )
2020-09-02 21:50:49 +02:00
Jonathan Gray
25dae81b3a
util/os_misc: os_get_available_system_memory() for OpenBSD
...
Return the smallest value of available non-kernel physical memory and
the static per process data size limit as the amount of available
system memory on OpenBSD.
Fixes: b80930a6fe ("anv: add support for VK_EXT_memory_budget")
Signed-off-by: Jonathan Gray <jsg@jsg.id.au >
Acked-by: Jason Ekstrand <jason@jlekstrand.net >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6517 >
(cherry picked from commit b30bd6fe5f )
2020-09-02 21:50:49 +02:00
Jonathan Gray
730e3d51b3
anv: use os_get_available_system_memory()
...
Replace local get_available_system_memory() function with
os_get_available_system_memory().
Fixes: b80930a6fe ("anv: add support for VK_EXT_memory_budget")
Signed-off-by: Jonathan Gray <jsg@jsg.id.au >
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6517 >
(cherry picked from commit 5b1ed09ff0 )
2020-09-02 21:50:49 +02:00
Jonathan Gray
b28d1178aa
util/os_misc: add os_get_available_system_memory()
...
Add os_get_available_system_memory() derived from
src/intel/vulkan/anv_device.c get_available_system_memory()
Fixes: b80930a6fe ("anv: add support for VK_EXT_memory_budget")
Signed-off-by: Jonathan Gray <jsg@jsg.id.au >
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6517 >
(cherry picked from commit 033dcb2978 )
2020-09-02 21:50:48 +02:00
Jonathan Gray
f08f211cd0
anv: use os_get_total_physical_memory()
...
Replace non-portable sysinfo() use with Mesa's
os_get_total_physical_memory()
Fixes: 060a6434ec ("anv: Advertise larger heap sizes")
Signed-off-by: Jonathan Gray <jsg@jsg.id.au >
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6517 >
(cherry picked from commit 81b163fb73 )
2020-09-02 21:50:48 +02:00
Lionel Landwerlin
65e52c4a01
intel/perf: fix raw query kernel metric selection
...
The raw query is meant to be used with MDAPI [1]. When using this
metric without this library, we usually selected the TestOa metric to
provide some default sensible values (instead of undefined).
Historically this TestOa metric lived in the kernel at ID=1. We
removed all metrics from the kernel in kernel commit 9aba9c188da136
("drm/i915/perf: remove generated code").
This fixes the Mesa code to use a valid metric set ID (1 could work
some of the time, but not guaranteed).
[1] : https://github.com/intel/metrics-discovery
v2: Store fallback metric at init time
v3: Drop TestOa lookout
v4: Skip the existing queries (Marcin)
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com >
CC: <mesa-stable@lists.freedesktop.org >
Tested-by: Marcin Ślusarz <marcin.slusarz@intel.com > (v1)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6438 >
(cherry-picked from commit ec1fa1d51f )
2020-09-02 21:50:48 +02:00
Lionel Landwerlin
62917dade9
intel/perf: store query symbol name
...
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com >
Reviewed-by: Kenneth Graunke's avatarKenneth Graunke <kenneth@whitecape.org >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6438 >
(cherry-picked from commit f1da3bb3d5 )
2020-09-02 21:50:48 +02:00
Jason Ekstrand
c9c84f5421
intel/fs: Fix MOV_INDIRECT and BROADCAST of Q types on Gen11+
...
The immediate case is pretty uncommon to see but it can happen, in
theory. BROADCAST is typically used to uniformize values and those are
usually 32-bit. However, it does come up in some subgroup ops.
Fixes: 49c21802cb "intel/compiler: Split has_64bit_types into float/int"
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6211 >
(cherry picked from commit cccb497d3c )
2020-09-02 21:50:48 +02:00