Bas Nieuwenhuizen
7262c743dc
radv: Determine memory type for import based on fd.
...
This would be necessary for an application to figure out if the
memory was allocated using a memory type with VK_MEMORY_PROPERTY_PROTECTED_BIT.
It also allows one to determine VRAM vs. GTT etc.
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4751 >
2020-04-28 15:45:03 +02:00
Bas Nieuwenhuizen
f30983be3a
radv/winsys: Add function to get domains/flags from fd.
...
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4751 >
2020-04-28 15:45:00 +02:00
Bas Nieuwenhuizen
bec9285027
radv: Stop using memory type indices.
...
Lots of extra coding was involved in managing them.
And for protected memory I was thinking of making a function that
goes from domain+flags to memory types, which can reuse this array.
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4751 >
2020-04-28 15:44:56 +02:00
Bas Nieuwenhuizen
4a8d172d3f
radv: Use actual memory type count for setting app-visible bitset.
...
Otherwise we might make a bitset that is too large.
Cc: <mesa-stable@lists.freedesktop.org >
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4751 >
2020-04-28 15:44:27 +02:00
Bas Nieuwenhuizen
8e03cf15f9
radeonsi: Count planes for imported textures.
...
For the DRI2 lowered YUV import separate pipe_resources get created
but in the end the first resource just gets asked for NPLANES.
Since
1) (Almost) everything uses the first resource + a plane index in the
Gallium interface.
2) This mirrors non-imported textures.
lets fix this in the driver.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4779 >
2020-04-28 11:16:03 +00:00
Gert Wollny
6747a984f5
r600: Enable tesselation for NIR
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
b6d4452661
r600/sfn: Add tesselation shaders
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
d77b81ce50
r600/sfn: Add lowering passes for Tesselation IO
...
Lower the input and output intrinsics to r600 specific LDS intrinsics
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
1b3e103d0b
r600/sfn: Move removing of unused variables
...
It doesn't make sense to do this in the optimization loop
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
74e0a0a723
r600/sfn: Handle LDS output in VS
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
f102301cc4
r600/sfn: derive the GS from the vertex stage for a common interface
...
The GS can also provide the primid
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
f7df2c57a2
r600/sfn: extract class to handle the VS export to different stages
...
This code can be shared with the TESS_EVAL shader
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
38038b369f
r600/sfn: Move some shader base methods to the public interface
...
This will be needed for handling the VS stage export better.
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
93f5f9e584
r600/sfn: Add methods to valuepool to get a vector of values
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
7cbca9cf64
r600/sfn: Move emission of barrier from compute shader to shader base
...
Tess shaders also use these barriers.
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
46a3033b43
r600/sfn: Emit some LDS instructions
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
a122303711
r600/sfn: Handle umul24 and umad24
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
7e064659cb
r600/sfn: Add IR instruction to fetch the TESS parameters
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
075ea32e48
r600/sfn: Add TF write instruction
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
230beac5f8
r600/sfn: Add LDS instruction to assembly conversion
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
b9d175bed2
r600/sfn: Add LDS IO instructions to r600 IR
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
172868167e
r600/sfn: Don't emit inline constants in the r600 IR
...
This can be handled when lowering to assembly, and it makes testing
for indirect buffer and sampler access easier.
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
9bc6c135ac
r600/sfn: simplify UBO lowering pass
...
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Gert Wollny
096a026354
r600: Handle texcoord semantics in LDS index evaluation
...
With NIR the texcoord semantic is enabled, and hence we have to handle
index evaluation differently here.
Signed-off-by: Gert Wollny <gert.wollny@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4714 >
2020-04-28 08:06:33 +00:00
Icecream95
b4cc116339
panfrost: Fix GL_EXT_vertex_array_bgra
...
Previously, attributes would always use an RGBA swizzle, even if the
format was BGRA.
Fixes piglit tests bgra-sec-color-pointer and bgra-vert-attrib-pointer.
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4752 >
2020-04-28 00:20:53 +00:00
Samuel Pitoiset
7a0a6a7180
radv: do not expose GTT as device local memory mostly for APUs
...
On APUs, the memory is unified (all heaps are equally fast) and
apps should count all memory heaps together. But some games like
Id Tech games (Youngblood and such) don't manage memory correctly
on APUs and they spill everything when one VRAM heap is full.
Instead of spilling buffers, they should just allocate new buffers
in the second heap but it seems like these games are confused if
two memory heaps have the DEVICE_LOCAL_BIT set.
This is probably a first step towards better memory management on
APUs but there is still some work to do if we want to run most apps
with a small dedicated VRAM (256MB or so).
This gives a huge boost for Id Tech games on APUs, and doesn't
seem to reduce Feral games performance.
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4771 >
2020-04-27 22:41:41 +00:00
Jan Zielinski
4a523baa00
gallium/swr: Fix LLVM 11 compilation issues
...
Changes needed to adapt to LLVM API changes in vector
and pointer types.
Reviewed-by: Krzysztof Raszkowski <krzysztof.raszkowski@intel.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4769 >
2020-04-27 22:29:52 +00:00
Eric Anholt
69c8dfd49f
freedreno: Fix calculation of the const buffer cmdstream size.
...
The HW packet requires padding the number of pointers you emit, and we
would assertion fail about running out of buffer space if the number of
UBOs to be uploaded was odd.
Fixes: b4df115d3f ("freedreno/a6xx: pre-calculate userconst stateobj size")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4621 >
2020-04-27 22:10:10 +00:00
Mike Blumenkrantz
acc56300dc
zink: explicitly unref old fb object when setting new one
...
this object has a ref from being created, and its lifetime is expected to
be a single frame, so remove that initial ref when we expect to stop
using it
Closes : #2648
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4768 >
2020-04-27 21:55:51 +00:00
Mike Blumenkrantz
d3f0022a43
zink: remove framebuffer cache
...
this can only match when re-rendering identical frames, which is not a
typical case. the lack of cache eviction also leads to memory ballooning.
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4768 >
2020-04-27 21:55:51 +00:00
Bas Nieuwenhuizen
afd9274d48
st/dri: Set next in template instead of after creation. (v2)
...
This should prevent horrors like Iris has with the delayed calls
to iris_resource_finish_aux_import just because info is not
available at allocation time.
AFAICT all drivers just copy the template except radeonsi/r600
which reset the next pointer.
AFAICT there is also no other place we get a state tracker setting
next ptrs on a resource.
v2: Updated Gallium docs.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3792 >
2020-04-27 21:08:01 +00:00
Erik Faye-Lund
a1e453f504
mesa/st: call _mesa_initialize() early
...
This allows drivers to reliably do things like using the GLSL
type-system during initialization.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4765 >
2020-04-27 20:40:01 +00:00
Erik Faye-Lund
57f4c66028
mesa/main: one_time_init() -> _mesa_initialize()
...
This exposes the logic inside one_time_init() as _mesa_initialize(), so
drivers who needs to use functionality initialized in one_time_init
earlier if they need.
This means we can reliably use the GLSL type-system when compiling
driver built-in shaders.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4765 >
2020-04-27 20:40:01 +00:00
Erik Faye-Lund
6ff94735c9
mesa/main: Do not pass context to one_time_init
...
There's no longer any reason to pass the context down to one_time_init,
because we always do the same thing regardless of the context, and we
don't change the context.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4765 >
2020-04-27 20:40:01 +00:00
Erik Faye-Lund
ac9d30431e
mesa/main: do not init remap-table per api
...
This hasn't really been nessecary since 8386088e3d ("dispatch: stop
using _mesa_create_exec_table_es1() for GLES1."), when we stopped
diverging the logic here based on the context-API. So let's simplify the
code a bit.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4765 >
2020-04-27 20:40:01 +00:00
Erik Faye-Lund
9bc98778a4
mesa/main: do not pass context to one-time extension init
...
_mesa_problem doesn't use the ctx argument for anything, so there's no
reason to pass it. This saves us from needing a context passed down this
code-path in the first place.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4765 >
2020-04-27 20:40:01 +00:00
Erik Faye-Lund
05c69752cf
mesa/main: do not store unrecognized extensions in context
...
We process extension overrides only when we initialize the first
context, which means that unrecognized extensions only appear in the
first context created.
Let's instead store them in a global array, so we can apply them to all
contexts. This has the added benefit of making the initialization of the
first context less special, which allows us to clean up code a bit more.
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4765 >
2020-04-27 20:40:01 +00:00
Dave Airlie
9bc5b2d169
vulkan: add initial device selection layer. (v6.1)
...
This is code Bas has out of tree but I think mesa should be shipping it, and I've improved it.
Initially-written-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
v2: add infinite recursion fix (Bas)
v3: Fix wayland/xcb barrier, whitespace
v4: use a macro for getting apis, shorten some lines, use outarray
v5: rewrite in C, use hash_table/mutex.
v6: use once_init to init the mutex, fix freeing ht
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/1766 >
2020-04-27 19:57:49 +00:00
Eric Anholt
4a42a50585
freedreno/ir3: Add support for disasm of cat2 float32 immediates.
...
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736 >
2020-04-27 19:35:00 +00:00
Eric Anholt
292231596b
freedreno/ir3: Refactor out print_reg_src().
...
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736 >
2020-04-27 19:35:00 +00:00
Eric Anholt
3bcf819b43
freedreno/ir3: Convert remaining disasm src prints to reginfo.
...
More lines of code, but they're much more intelligible.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736 >
2020-04-27 19:35:00 +00:00
Eric Anholt
1462b00391
freedreno/ir3: Add a unit test for our disassembler.
...
Makes sure that we can maintain consistent output from our disassembly as
we refactor. I've only included stuff that matches qcom's disasm so far.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736 >
2020-04-27 19:35:00 +00:00
Eric Anholt
90984ba853
freedreno/ir3: Print a space after nop counts, like qcom's disasm.
...
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736 >
2020-04-27 19:35:00 +00:00
Eric Anholt
916629f9d7
freedreno/ir3: Fix the disasm of half-float STG dests.
...
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4736 >
2020-04-27 19:35:00 +00:00
Eric Anholt
b34ee185f4
freedreno: Fix derivatives without texturing on a3xx-a5xx.
...
The shader variant tells us if we should set the PIXLODENABLE flag.
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4685 >
2020-04-27 19:06:57 +00:00
Jonathan Marek
065068c66a
freedreno/ir3: run nir_lower_pack
...
This lowers pack_32_2x16/unpack_32_2x16 into the scalar versions of those
instructions.
Signed-off-by: Jonathan Marek <jonathan@marek.ca >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4738 >
2020-04-27 18:40:03 +00:00
Jonathan Marek
42093bb694
nir: add pack_32_2x16_split/unpack_32_2x16_split lowering
...
The new option replaces the two other _split lowering options, since
there's no need for separate options.
Signed-off-by: Jonathan Marek <jonathan@marek.ca >
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com >
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com >
Reviewed-by: Rob Clark <robdclark@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4738 >
2020-04-27 18:40:03 +00:00
Bas Nieuwenhuizen
cbeda7f78e
radv: Add WSI buffers to BO list only if they can be used.
...
Also reverse the BO list removal loop. This way typical WSI usage
should find the entry in O(active swapchains) iterations, which
should not be a performance issues. Tested with Doom(2106) which
found the entry in 1 iteration every time.
Acked-by: Jason Ekstrand <jason@jlekstrand.net >
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4306 >
2020-04-27 18:01:24 +00:00
Bas Nieuwenhuizen
9a61f2a8a9
vulkan/wsi: Add callback to set ownership of buffer.
...
For radv BO list pruning.
Reviewed-by: Jason Ekstrand <jason@jlekstrand.net >
Acked-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4306 >
2020-04-27 18:01:24 +00:00
Samuel Pitoiset
42b1696ef6
ac,radeonsi: fix compilations issues with LLVM 11
...
Latest LLVM replaced LLVMVectorTypeKind.
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2826
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com >
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com >
Reviewed-by: Marek Olšák <marek.olsak@amd.com >
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4755 >
2020-04-27 17:13:36 +00:00