initial commit
This commit is contained in:
parent
6419a29894
commit
6c13c37c69
5494
debian/changelog
vendored
5494
debian/changelog
vendored
File diff suppressed because it is too large
Load Diff
@ -1,42 +0,0 @@
|
|||||||
From add3b34c171821804049084cf9d252a72cc54e2b Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Tue, 11 Apr 2023 13:59:49 +0200
|
|
||||||
Subject: radv/amdgpu: Remove unnecessary assertions from chaining.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
These used to guard against chaining on GFX6 and on HW IP types
|
|
||||||
that don't support chaining, but these things are now guarded
|
|
||||||
elsewhere and these assertions are no longer necessary.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22406>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c | 2 --
|
|
||||||
1 file changed, 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
index 7107fc0b896..1b8f9b86c34 100644
|
|
||||||
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
@@ -482,7 +482,6 @@ radv_amdgpu_cs_unchain(struct radeon_cmdbuf *cs)
|
|
||||||
return;
|
|
||||||
|
|
||||||
assert(cs->cdw <= cs->max_dw + 4);
|
|
||||||
- assert(get_nop_packet(acs) == PKT3_NOP_PAD); /* Other shouldn't chain. */
|
|
||||||
|
|
||||||
acs->chained_to = NULL;
|
|
||||||
cs->buf[cs->cdw - 4] = PKT3_NOP_PAD;
|
|
||||||
@@ -511,7 +510,6 @@ radv_amdgpu_cs_chain(struct radeon_cmdbuf *cs, struct radeon_cmdbuf *next_cs, bo
|
|
||||||
return false;
|
|
||||||
|
|
||||||
assert(cs->cdw <= cs->max_dw + 4);
|
|
||||||
- assert(get_nop_packet(acs) == PKT3_NOP_PAD); /* Other shouldn't chain. */
|
|
||||||
|
|
||||||
acs->chained_to = next_acs;
|
|
||||||
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
From 0e7244ce1848978022cb6f24683eb2cfdfd7fbbb Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Tue, 11 Apr 2023 02:29:38 +0200
|
|
||||||
Subject: radv: Disallow IB2 on GFX6 when using draw_indirect_multi.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
GFX6 has the same problem as GFX7 here.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22406>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/radv_cmd_buffer.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
index 8eae45769ab..cb031b95173 100644
|
|
||||||
--- a/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
+++ b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
@@ -7498,7 +7498,7 @@ radv_CmdExecuteCommands(VkCommandBuffer commandBuffer, uint32_t commandBufferCou
|
|
||||||
RADV_FROM_HANDLE(radv_cmd_buffer, secondary, pCmdBuffers[i]);
|
|
||||||
bool allow_ib2 = true;
|
|
||||||
|
|
||||||
- if (secondary->device->physical_device->rad_info.gfx_level == GFX7 &&
|
|
||||||
+ if (secondary->device->physical_device->rad_info.gfx_level <= GFX7 &&
|
|
||||||
secondary->state.uses_draw_indirect_multi) {
|
|
||||||
/* Do not launch an IB2 for secondary command buffers that contain
|
|
||||||
* DRAW_{INDEX}_INDIRECT_MULTI on GFX7 because it's illegal and hang the GPU.
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,36 +0,0 @@
|
|||||||
From d6518fd3571e315a7a7e62af5e1abbfdb3a3b97b Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Tue, 11 Apr 2023 02:30:10 +0200
|
|
||||||
Subject: radv: Use IB BOs (chaining) by default on GFX6.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
GFX6 supports IB chaining since the PFP firmware version 20.
|
|
||||||
Note that the very first amdgpu firmware for GFX6 already had
|
|
||||||
version 29, so we can assume that all GPUs supported by RADV
|
|
||||||
have this feature.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22406>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
|
|
||||||
index ec85e7249c4..c944d2d422e 100644
|
|
||||||
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
|
|
||||||
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
|
|
||||||
@@ -62,7 +62,7 @@ do_winsys_init(struct radv_amdgpu_winsys *ws, int fd)
|
|
||||||
ws->info.ip[AMD_IP_SDMA].num_queues = MIN2(ws->info.ip[AMD_IP_SDMA].num_queues, MAX_RINGS_PER_TYPE);
|
|
||||||
ws->info.ip[AMD_IP_COMPUTE].num_queues = MIN2(ws->info.ip[AMD_IP_COMPUTE].num_queues, MAX_RINGS_PER_TYPE);
|
|
||||||
|
|
||||||
- ws->use_ib_bos = ws->info.gfx_level >= GFX7;
|
|
||||||
+ ws->use_ib_bos = true;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
|||||||
From 7ddac41f3f5919be748143d8a570cc3b1f4ed27c Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Tue, 11 Apr 2023 02:31:28 +0200
|
|
||||||
Subject: radv: Chain command buffers on GFX6 in radv_queue.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Also don't check whether chaining is enabled in radv_queue, the
|
|
||||||
winsys will take care of that anyway.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22406>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/radv_queue.c | 7 ++-----
|
|
||||||
1 file changed, 2 insertions(+), 5 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/radv_queue.c b/src/amd/vulkan/radv_queue.c
|
|
||||||
index 0823e545a19..e00d448ed18 100644
|
|
||||||
--- a/src/amd/vulkan/radv_queue.c
|
|
||||||
+++ b/src/amd/vulkan/radv_queue.c
|
|
||||||
@@ -1693,9 +1693,6 @@ radv_queue_submit_normal(struct radv_queue *queue, struct vk_queue_submit *submi
|
|
||||||
.uses_shadow_regs = queue->state.uses_shadow_regs,
|
|
||||||
};
|
|
||||||
|
|
||||||
- const bool chaining_en = !(queue->device->instance->debug_flags & RADV_DEBUG_NO_IBS) &&
|
|
||||||
- queue->device->physical_device->rad_info.gfx_level >= GFX7;
|
|
||||||
-
|
|
||||||
for (uint32_t j = 0, advance; j < cmd_buffer_count; j += advance) {
|
|
||||||
advance = MIN2(max_cs_submission, cmd_buffer_count - j);
|
|
||||||
const bool last_submit = j + advance == cmd_buffer_count;
|
|
||||||
@@ -1714,8 +1711,8 @@ radv_queue_submit_normal(struct radv_queue *queue, struct vk_queue_submit *submi
|
|
||||||
struct radv_cmd_buffer *cmd_buffer =
|
|
||||||
(struct radv_cmd_buffer *)submission->command_buffers[j + c];
|
|
||||||
assert(cmd_buffer->vk.level == VK_COMMAND_BUFFER_LEVEL_PRIMARY);
|
|
||||||
- const bool can_chain_next = chaining_en && !(cmd_buffer->usage_flags &
|
|
||||||
- VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT);
|
|
||||||
+ const bool can_chain_next =
|
|
||||||
+ !(cmd_buffer->usage_flags & VK_COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT);
|
|
||||||
|
|
||||||
/* ACE needs to be first because the last CS must match the queue's IP type. */
|
|
||||||
if (radv_cmd_buffer_needs_ace(cmd_buffer)) {
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,153 +0,0 @@
|
|||||||
From 948a122f300b3df036fea1a8e14301295062e360 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Thu, 13 Apr 2023 17:23:40 +0200
|
|
||||||
Subject: amd: Rename INDIRECT_BUFFER_CIK to just INDIRECT_BUFFER.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
This packet is supported on GFX6 too, its name should relect that.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22406>
|
|
||||||
---
|
|
||||||
src/amd/common/ac_debug.c | 2 +-
|
|
||||||
src/amd/common/sid.h | 2 +-
|
|
||||||
src/amd/vulkan/radv_cmd_buffer.c | 6 +++---
|
|
||||||
src/amd/vulkan/radv_cp_reg_shadowing.c | 2 +-
|
|
||||||
src/amd/vulkan/radv_queue.c | 2 +-
|
|
||||||
src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c | 6 +++---
|
|
||||||
src/gallium/winsys/amdgpu/drm/amdgpu_cs.c | 2 +-
|
|
||||||
7 files changed, 11 insertions(+), 11 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/common/ac_debug.c b/src/amd/common/ac_debug.c
|
|
||||||
index 9c0d9436f48..3503ff23f5c 100644
|
|
||||||
--- a/src/amd/common/ac_debug.c
|
|
||||||
+++ b/src/amd/common/ac_debug.c
|
|
||||||
@@ -449,7 +449,7 @@ static void ac_parse_packet3(FILE *f, uint32_t header, struct ac_ib_parser *ib,
|
|
||||||
break;
|
|
||||||
case PKT3_INDIRECT_BUFFER_SI:
|
|
||||||
case PKT3_INDIRECT_BUFFER_CONST:
|
|
||||||
- case PKT3_INDIRECT_BUFFER_CIK: {
|
|
||||||
+ case PKT3_INDIRECT_BUFFER: {
|
|
||||||
uint32_t base_lo_dw = ac_ib_get(ib);
|
|
||||||
ac_dump_reg(f, ib->gfx_level, ib->family, R_3F0_IB_BASE_LO, base_lo_dw, ~0);
|
|
||||||
uint32_t base_hi_dw = ac_ib_get(ib);
|
|
||||||
diff --git a/src/amd/common/sid.h b/src/amd/common/sid.h
|
|
||||||
index 5bc60316c82..0c860c1acbd 100644
|
|
||||||
--- a/src/amd/common/sid.h
|
|
||||||
+++ b/src/amd/common/sid.h
|
|
||||||
@@ -132,7 +132,7 @@
|
|
||||||
#define WAIT_REG_MEM_MEM_SPACE(x) (((unsigned)(x)&0x3) << 4)
|
|
||||||
#define WAIT_REG_MEM_PFP (1 << 8)
|
|
||||||
#define PKT3_MEM_WRITE 0x3D /* GFX6 only */
|
|
||||||
-#define PKT3_INDIRECT_BUFFER_CIK 0x3F /* GFX7+ */
|
|
||||||
+#define PKT3_INDIRECT_BUFFER 0x3F /* GFX6+ */
|
|
||||||
#define PKT3_COPY_DATA 0x40
|
|
||||||
#define COPY_DATA_SRC_SEL(x) ((x)&0xf)
|
|
||||||
#define COPY_DATA_REG 0
|
|
||||||
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
index cb031b95173..343cd6ca9f8 100644
|
|
||||||
--- a/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
+++ b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
@@ -9509,7 +9509,7 @@ radv_CmdExecuteGeneratedCommandsNV(VkCommandBuffer commandBuffer, VkBool32 isPre
|
|
||||||
return;
|
|
||||||
|
|
||||||
/* Secondary command buffers are needed for the full extension but can't use
|
|
||||||
- * PKT3_INDIRECT_BUFFER_CIK.
|
|
||||||
+ * PKT3_INDIRECT_BUFFER.
|
|
||||||
*/
|
|
||||||
assert(cmd_buffer->vk.level == VK_COMMAND_BUFFER_LEVEL_PRIMARY);
|
|
||||||
|
|
||||||
@@ -9539,7 +9539,7 @@ radv_CmdExecuteGeneratedCommandsNV(VkCommandBuffer commandBuffer, VkBool32 isPre
|
|
||||||
radeon_emit(cmd_buffer->cs, 0);
|
|
||||||
|
|
||||||
if (!view_mask) {
|
|
||||||
- radeon_emit(cmd_buffer->cs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(cmd_buffer->cs, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(cmd_buffer->cs, va);
|
|
||||||
radeon_emit(cmd_buffer->cs, va >> 32);
|
|
||||||
radeon_emit(cmd_buffer->cs, cmdbuf_size >> 2);
|
|
||||||
@@ -9547,7 +9547,7 @@ radv_CmdExecuteGeneratedCommandsNV(VkCommandBuffer commandBuffer, VkBool32 isPre
|
|
||||||
u_foreach_bit (view, view_mask) {
|
|
||||||
radv_emit_view_index(cmd_buffer, view);
|
|
||||||
|
|
||||||
- radeon_emit(cmd_buffer->cs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(cmd_buffer->cs, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(cmd_buffer->cs, va);
|
|
||||||
radeon_emit(cmd_buffer->cs, va >> 32);
|
|
||||||
radeon_emit(cmd_buffer->cs, cmdbuf_size >> 2);
|
|
||||||
diff --git a/src/amd/vulkan/radv_cp_reg_shadowing.c b/src/amd/vulkan/radv_cp_reg_shadowing.c
|
|
||||||
index 3f46b7c1619..dac9411c03b 100644
|
|
||||||
--- a/src/amd/vulkan/radv_cp_reg_shadowing.c
|
|
||||||
+++ b/src/amd/vulkan/radv_cp_reg_shadowing.c
|
|
||||||
@@ -112,7 +112,7 @@ radv_emit_shadow_regs_preamble(struct radeon_cmdbuf *cs, const struct radv_devic
|
|
||||||
struct radv_queue_state *queue_state)
|
|
||||||
{
|
|
||||||
uint64_t va = radv_buffer_get_va(queue_state->shadow_regs_ib);
|
|
||||||
- radeon_emit(cs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(cs, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(cs, va);
|
|
||||||
radeon_emit(cs, va >> 32);
|
|
||||||
radeon_emit(cs, queue_state->shadow_regs_ib_size_dw & 0xffff);
|
|
||||||
diff --git a/src/amd/vulkan/radv_queue.c b/src/amd/vulkan/radv_queue.c
|
|
||||||
index e00d448ed18..b28797547be 100644
|
|
||||||
--- a/src/amd/vulkan/radv_queue.c
|
|
||||||
+++ b/src/amd/vulkan/radv_queue.c
|
|
||||||
@@ -828,7 +828,7 @@ radv_init_graphics_state(struct radeon_cmdbuf *cs, struct radv_device *device)
|
|
||||||
if (device->gfx_init) {
|
|
||||||
uint64_t va = radv_buffer_get_va(device->gfx_init);
|
|
||||||
|
|
||||||
- radeon_emit(cs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(cs, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(cs, va);
|
|
||||||
radeon_emit(cs, va >> 32);
|
|
||||||
radeon_emit(cs, device->gfx_init_size_dw & 0xffff);
|
|
||||||
diff --git a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
index 1b8f9b86c34..1caa359ebe6 100644
|
|
||||||
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
@@ -372,7 +372,7 @@ radv_amdgpu_cs_grow(struct radeon_cmdbuf *_cs, size_t min_size)
|
|
||||||
cs->ws->base.cs_add_buffer(&cs->base, cs->ib_buffer);
|
|
||||||
|
|
||||||
if (cs->use_ib) {
|
|
||||||
- radeon_emit(&cs->base, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(&cs->base, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(&cs->base, radv_amdgpu_winsys_bo(cs->ib_buffer)->base.va);
|
|
||||||
radeon_emit(&cs->base, radv_amdgpu_winsys_bo(cs->ib_buffer)->base.va >> 32);
|
|
||||||
radeon_emit(&cs->base, S_3F2_CHAIN(1) | S_3F2_VALID(1));
|
|
||||||
@@ -513,7 +513,7 @@ radv_amdgpu_cs_chain(struct radeon_cmdbuf *cs, struct radeon_cmdbuf *next_cs, bo
|
|
||||||
|
|
||||||
acs->chained_to = next_acs;
|
|
||||||
|
|
||||||
- cs->buf[cs->cdw - 4] = PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0);
|
|
||||||
+ cs->buf[cs->cdw - 4] = PKT3(PKT3_INDIRECT_BUFFER, 2, 0);
|
|
||||||
cs->buf[cs->cdw - 3] = next_acs->ib.ib_mc_address;
|
|
||||||
cs->buf[cs->cdw - 2] = next_acs->ib.ib_mc_address >> 32;
|
|
||||||
cs->buf[cs->cdw - 1] =
|
|
||||||
@@ -667,7 +667,7 @@ radv_amdgpu_cs_execute_secondary(struct radeon_cmdbuf *_parent, struct radeon_cm
|
|
||||||
radv_amdgpu_cs_grow(&parent->base, 4);
|
|
||||||
|
|
||||||
/* Not setting the CHAIN bit will launch an IB2. */
|
|
||||||
- radeon_emit(&parent->base, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(&parent->base, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(&parent->base, child->ib.ib_mc_address);
|
|
||||||
radeon_emit(&parent->base, child->ib.ib_mc_address >> 32);
|
|
||||||
radeon_emit(&parent->base, child->ib.size);
|
|
||||||
diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
|
|
||||||
index 8ecd79df109..8916002cad4 100644
|
|
||||||
--- a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
|
|
||||||
+++ b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
|
|
||||||
@@ -1148,7 +1148,7 @@ static bool amdgpu_cs_check_space(struct radeon_cmdbuf *rcs, unsigned dw)
|
|
||||||
while ((rcs->current.cdw & ib_pad_dw_mask) != ib_pad_dw_mask - 3)
|
|
||||||
radeon_emit(rcs, PKT3_NOP_PAD);
|
|
||||||
|
|
||||||
- radeon_emit(rcs, PKT3(PKT3_INDIRECT_BUFFER_CIK, 2, 0));
|
|
||||||
+ radeon_emit(rcs, PKT3(PKT3_INDIRECT_BUFFER, 2, 0));
|
|
||||||
radeon_emit(rcs, va);
|
|
||||||
radeon_emit(rcs, va >> 32);
|
|
||||||
uint32_t *new_ptr_ib_size = &rcs->current.buf[rcs->current.cdw++];
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,69 +0,0 @@
|
|||||||
From d16d9ef34550da313bbb45e5782136d6bb3b5964 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Mon, 17 Apr 2023 16:13:16 +0200
|
|
||||||
Subject: radv: Simplify IB2 workaround.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
Move compute IB2 check to the winsys, because IB2 only works on
|
|
||||||
GFX queues and not any other queue types.
|
|
||||||
|
|
||||||
Then, simplify the workaround condition in the cmd buffer.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
|
|
||||||
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22533>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/radv_cmd_buffer.c | 19 ++++++-------------
|
|
||||||
src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c | 2 +-
|
|
||||||
2 files changed, 7 insertions(+), 14 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
index 5cc066e7e65..6de52df3ef7 100644
|
|
||||||
--- a/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
+++ b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
@@ -7503,20 +7503,13 @@ radv_CmdExecuteCommands(VkCommandBuffer commandBuffer, uint32_t commandBufferCou
|
|
||||||
|
|
||||||
for (uint32_t i = 0; i < commandBufferCount; i++) {
|
|
||||||
RADV_FROM_HANDLE(radv_cmd_buffer, secondary, pCmdBuffers[i]);
|
|
||||||
- bool allow_ib2 = true;
|
|
||||||
|
|
||||||
- if (secondary->device->physical_device->rad_info.gfx_level <= GFX7 &&
|
|
||||||
- secondary->state.uses_draw_indirect_multi) {
|
|
||||||
- /* Do not launch an IB2 for secondary command buffers that contain
|
|
||||||
- * DRAW_{INDEX}_INDIRECT_MULTI on GFX7 because it's illegal and hang the GPU.
|
|
||||||
- */
|
|
||||||
- allow_ib2 = false;
|
|
||||||
- }
|
|
||||||
-
|
|
||||||
- if (secondary->qf == RADV_QUEUE_COMPUTE) {
|
|
||||||
- /* IB2 packets are not supported on compute queues according to PAL. */
|
|
||||||
- allow_ib2 = false;
|
|
||||||
- }
|
|
||||||
+ /* Do not launch an IB2 for secondary command buffers that contain
|
|
||||||
+ * DRAW_{INDEX}_INDIRECT_MULTI on GFX7 because it's illegal and hang the GPU.
|
|
||||||
+ */
|
|
||||||
+ const bool allow_ib2 =
|
|
||||||
+ !secondary->state.uses_draw_indirect_multi ||
|
|
||||||
+ secondary->device->physical_device->rad_info.gfx_level >= GFX8;
|
|
||||||
|
|
||||||
primary->scratch_size_per_wave_needed =
|
|
||||||
MAX2(primary->scratch_size_per_wave_needed, secondary->scratch_size_per_wave_needed);
|
|
||||||
diff --git a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
index 1b007557571..ee2108bc4a4 100644
|
|
||||||
--- a/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
+++ b/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
|
|
||||||
@@ -648,7 +648,7 @@ radv_amdgpu_cs_execute_secondary(struct radeon_cmdbuf *_parent, struct radeon_cm
|
|
||||||
struct radv_amdgpu_cs *parent = radv_amdgpu_cs(_parent);
|
|
||||||
struct radv_amdgpu_cs *child = radv_amdgpu_cs(_child);
|
|
||||||
struct radv_amdgpu_winsys *ws = parent->ws;
|
|
||||||
- bool use_ib2 = parent->use_ib && allow_ib2;
|
|
||||||
+ const bool use_ib2 = parent->use_ib && allow_ib2 && parent->hw_ip == AMD_IP_GFX;
|
|
||||||
|
|
||||||
if (parent->status != VK_SUCCESS || child->status != VK_SUCCESS)
|
|
||||||
return;
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
|||||||
From 46a14390d8bcb7e91620f94f9d7bde2dc449190d Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Tue, 18 Apr 2023 12:56:04 +0200
|
|
||||||
Subject: radv: Remove IB2 workaround from mesh shader draws.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
The GPUs which need the workaround do not support mesh shaders.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
|
|
||||||
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22533>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/radv_cmd_buffer.c | 2 --
|
|
||||||
1 file changed, 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
index 6de52df3ef7..e85e1fd9544 100644
|
|
||||||
--- a/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
+++ b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
@@ -8115,8 +8115,6 @@ radv_cs_emit_indirect_mesh_draw_packet(struct radv_cmd_buffer *cmd_buffer, uint3
|
|
||||||
radeon_emit(cs, count_va >> 32);
|
|
||||||
radeon_emit(cs, stride);
|
|
||||||
radeon_emit(cs, V_0287F0_DI_SRC_SEL_AUTO_INDEX);
|
|
||||||
-
|
|
||||||
- cmd_buffer->state.uses_draw_indirect_multi = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
ALWAYS_INLINE static void
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
|||||||
From acce5c3fe1fa2930adb6cdc152f3c371b1d24290 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Timur=20Krist=C3=B3f?= <timur.kristof@gmail.com>
|
|
||||||
Date: Tue, 18 Apr 2023 12:59:33 +0200
|
|
||||||
Subject: radv: Enable IB2 workaround on all indirect draws.
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Type: text/plain; charset=UTF-8
|
|
||||||
Content-Transfer-Encoding: 8bit
|
|
||||||
|
|
||||||
IB2 packets hang GFX6 when they contain any indirect draws,
|
|
||||||
not just the MULTI versions.
|
|
||||||
|
|
||||||
Signed-off-by: Timur Kristóf <timur.kristof@gmail.com>
|
|
||||||
Reviewed-by: Tatsuyuki Ishi <ishitatsuyuki@gmail.com>
|
|
||||||
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22533>
|
|
||||||
---
|
|
||||||
src/amd/vulkan/radv_cmd_buffer.c | 8 ++++----
|
|
||||||
src/amd/vulkan/radv_private.h | 4 ++--
|
|
||||||
2 files changed, 6 insertions(+), 6 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
index e85e1fd9544..541454c8f2d 100644
|
|
||||||
--- a/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
+++ b/src/amd/vulkan/radv_cmd_buffer.c
|
|
||||||
@@ -7505,10 +7505,10 @@ radv_CmdExecuteCommands(VkCommandBuffer commandBuffer, uint32_t commandBufferCou
|
|
||||||
RADV_FROM_HANDLE(radv_cmd_buffer, secondary, pCmdBuffers[i]);
|
|
||||||
|
|
||||||
/* Do not launch an IB2 for secondary command buffers that contain
|
|
||||||
- * DRAW_{INDEX}_INDIRECT_MULTI on GFX7 because it's illegal and hang the GPU.
|
|
||||||
+ * DRAW_{INDEX}_INDIRECT_{MULTI} on GFX6-7 because it's illegal and hangs the GPU.
|
|
||||||
*/
|
|
||||||
const bool allow_ib2 =
|
|
||||||
- !secondary->state.uses_draw_indirect_multi ||
|
|
||||||
+ !secondary->state.uses_draw_indirect ||
|
|
||||||
secondary->device->physical_device->rad_info.gfx_level >= GFX8;
|
|
||||||
|
|
||||||
primary->scratch_size_per_wave_needed =
|
|
||||||
@@ -8073,9 +8073,9 @@ radv_cs_emit_indirect_draw_packet(struct radv_cmd_buffer *cmd_buffer, bool index
|
|
||||||
radeon_emit(cs, count_va >> 32);
|
|
||||||
radeon_emit(cs, stride); /* stride */
|
|
||||||
radeon_emit(cs, di_src_sel);
|
|
||||||
-
|
|
||||||
- cmd_buffer->state.uses_draw_indirect_multi = true;
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+ cmd_buffer->state.uses_draw_indirect = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
ALWAYS_INLINE static void
|
|
||||||
diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h
|
|
||||||
index f0fea917c91..981d6694254 100644
|
|
||||||
--- a/src/amd/vulkan/radv_private.h
|
|
||||||
+++ b/src/amd/vulkan/radv_private.h
|
|
||||||
@@ -1657,8 +1657,8 @@ struct radv_cmd_state {
|
|
||||||
|
|
||||||
uint8_t cb_mip[MAX_RTS];
|
|
||||||
|
|
||||||
- /* Whether DRAW_{INDEX}_INDIRECT_MULTI is emitted. */
|
|
||||||
- bool uses_draw_indirect_multi;
|
|
||||||
+ /* Whether DRAW_{INDEX}_INDIRECT_{MULTI} is emitted. */
|
|
||||||
+ bool uses_draw_indirect;
|
|
||||||
|
|
||||||
uint32_t rt_stack_size;
|
|
||||||
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,94 +0,0 @@
|
|||||||
From 5731ebac404a142fb1c1d1f0755d22beed40528a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Felix DeGrood <felix.j.degrood@intel.com>
|
|
||||||
Date: Mon, 15 May 2023 22:44:45 +0000
|
|
||||||
Subject: anv: override vendorID for Cyberpunk 2077
|
|
||||||
|
|
||||||
A recent update to Cyberpunk 2077 enables XeSS code for Intel GPUs
|
|
||||||
which is causing the game to crash in the XeSS libraries. As a
|
|
||||||
temporary work around, stop identifying as Intel for Cyberpunk so
|
|
||||||
XeSS falls back to the cross-vendor path.
|
|
||||||
|
|
||||||
References: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8860
|
|
||||||
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
|
|
||||||
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23271>
|
|
||||||
---
|
|
||||||
src/intel/vulkan/anv_device.c | 5 +++++
|
|
||||||
src/intel/vulkan/anv_private.h | 1 +
|
|
||||||
src/util/00-mesa-defaults.conf | 3 +++
|
|
||||||
src/util/driconf.h | 3 +++
|
|
||||||
4 files changed, 12 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
|
|
||||||
index 44a591531c0..da9e05b9ced 100644
|
|
||||||
--- a/src/intel/vulkan/anv_device.c
|
|
||||||
+++ b/src/intel/vulkan/anv_device.c
|
|
||||||
@@ -85,6 +85,7 @@ static const driOptionDescription anv_dri_options[] = {
|
|
||||||
DRI_CONF_VK_WSI_FORCE_BGRA8_UNORM_FIRST(false)
|
|
||||||
DRI_CONF_LIMIT_TRIG_INPUT_RANGE(false)
|
|
||||||
DRI_CONF_ANV_MESH_CONV_PRIM_ATTRS_TO_VERT_ATTRS(-2)
|
|
||||||
+ DRI_CONF_FORCE_VK_VENDOR(0)
|
|
||||||
DRI_CONF_SECTION_END
|
|
||||||
|
|
||||||
DRI_CONF_SECTION_QUALITY
|
|
||||||
@@ -1500,6 +1501,8 @@ anv_init_dri_options(struct anv_instance *instance)
|
|
||||||
driQueryOptioni(&instance->dri_options, "generated_indirect_threshold");
|
|
||||||
instance->query_clear_with_blorp_threshold =
|
|
||||||
driQueryOptioni(&instance->dri_options, "query_clear_with_blorp_threshold");
|
|
||||||
+ instance->force_vk_vendor =
|
|
||||||
+ driQueryOptioni(&instance->dri_options, "force_vk_vendor");
|
|
||||||
}
|
|
||||||
|
|
||||||
VkResult anv_CreateInstance(
|
|
||||||
@@ -1749,6 +1752,8 @@ void anv_GetPhysicalDeviceProperties(
|
|
||||||
.sparseProperties = {0}, /* Broadwell doesn't do sparse. */
|
|
||||||
};
|
|
||||||
|
|
||||||
+ if (unlikely(pdevice->instance->force_vk_vendor))
|
|
||||||
+ pProperties->vendorID = pdevice->instance->force_vk_vendor;
|
|
||||||
snprintf(pProperties->deviceName, sizeof(pProperties->deviceName),
|
|
||||||
"%s", pdevice->info.name);
|
|
||||||
memcpy(pProperties->pipelineCacheUUID,
|
|
||||||
diff --git a/src/intel/vulkan/anv_private.h b/src/intel/vulkan/anv_private.h
|
|
||||||
index 8c4099e3b7b..b6401c44782 100644
|
|
||||||
--- a/src/intel/vulkan/anv_private.h
|
|
||||||
+++ b/src/intel/vulkan/anv_private.h
|
|
||||||
@@ -1037,6 +1037,7 @@ struct anv_instance {
|
|
||||||
float lower_depth_range_rate;
|
|
||||||
unsigned generated_indirect_threshold;
|
|
||||||
unsigned query_clear_with_blorp_threshold;
|
|
||||||
+ unsigned force_vk_vendor;
|
|
||||||
|
|
||||||
/* HW workarounds */
|
|
||||||
bool no_16bit;
|
|
||||||
diff --git a/src/util/00-mesa-defaults.conf b/src/util/00-mesa-defaults.conf
|
|
||||||
index b5f8b233a7d..a58831bc304 100644
|
|
||||||
--- a/src/util/00-mesa-defaults.conf
|
|
||||||
+++ b/src/util/00-mesa-defaults.conf
|
|
||||||
@@ -1056,6 +1056,9 @@ TODO: document the other workarounds.
|
|
||||||
<application name="NieR:Automata" executable="NieRAutomata.exe">
|
|
||||||
<option name="limit_trig_input_range" value="true" />
|
|
||||||
</application>
|
|
||||||
+ <application name="Cyberpunk 2077" executable="Cyberpunk2077.exe">
|
|
||||||
+ <option name="force_vk_vendor" value="-1" />
|
|
||||||
+ </application>
|
|
||||||
<!--
|
|
||||||
Disable 16-bit feature on zink and angle so that GLES mediump doesn't
|
|
||||||
lower to our inefficent 16-bit shader support. No need to do so for
|
|
||||||
diff --git a/src/util/driconf.h b/src/util/driconf.h
|
|
||||||
index ac51622830d..108cc017c43 100644
|
|
||||||
--- a/src/util/driconf.h
|
|
||||||
+++ b/src/util/driconf.h
|
|
||||||
@@ -310,6 +310,9 @@
|
|
||||||
DRI_CONF_OPT_B(ignore_discard_framebuffer, def, \
|
|
||||||
"Ignore glDiscardFramebuffer/glInvalidateFramebuffer, workaround for games that use it incorrectly")
|
|
||||||
|
|
||||||
+#define DRI_CONF_FORCE_VK_VENDOR(def) \
|
|
||||||
+ DRI_CONF_OPT_I(force_vk_vendor, 0, -1, 2147483647, "Override GPU vendor id")
|
|
||||||
+
|
|
||||||
/**
|
|
||||||
* \brief Image quality-related options
|
|
||||||
*/
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
|||||||
From cb41ef0d3f537f8d1fb345cf5bdcc30070333c8b Mon Sep 17 00:00:00 2001
|
|
||||||
From: Gert Wollny <gert.wollny@collabora.com>
|
|
||||||
Date: Mon, 27 Feb 2023 09:56:41 +0100
|
|
||||||
Subject: util/driconf: pin minImageCount to three for "Path of Exile"
|
|
||||||
|
|
||||||
"Path of Exile" will fail with an error "unsupported backbuffer image count"
|
|
||||||
when vkGetPhysicalDeviceSurfaceCapabilitiesKHR reports more than 3 as
|
|
||||||
minImageCount.
|
|
||||||
|
|
||||||
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
|
|
||||||
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21547>
|
|
||||||
---
|
|
||||||
src/util/00-mesa-defaults.conf | 10 ++++++++++
|
|
||||||
1 file changed, 10 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/src/util/00-mesa-defaults.conf b/src/util/00-mesa-defaults.conf
|
|
||||||
index 554115cedfc..843beae6609 100644
|
|
||||||
--- a/src/util/00-mesa-defaults.conf
|
|
||||||
+++ b/src/util/00-mesa-defaults.conf
|
|
||||||
@@ -891,6 +891,16 @@ TODO: document the other workarounds.
|
|
||||||
<!-- https://gitlab.freedesktop.org/mesa/mesa/-/issues/5437 -->
|
|
||||||
<option name="vk_dont_care_as_load" value="true" />
|
|
||||||
</application>
|
|
||||||
+
|
|
||||||
+ <!-- Path of Exile stops with "unsupported backbuffer count" when more than
|
|
||||||
+ 3 swapchain image are reported. -->
|
|
||||||
+ <application name="Path of Exile" executable="PathOfExile_x64Steam.exe">
|
|
||||||
+ <option name="vk_x11_override_min_image_count" value="3" />
|
|
||||||
+ </application>
|
|
||||||
+ <application name="Path of Exile" executable="PathOfExileSteam.exe">
|
|
||||||
+ <option name="vk_x11_override_min_image_count" value="3" />
|
|
||||||
+ </application>
|
|
||||||
+
|
|
||||||
</device>
|
|
||||||
<!-- vmwgfx doesn't like full buffer swaps and can't sync to vertical retraces.-->
|
|
||||||
<device driver="vmwgfx">
|
|
||||||
--
|
|
||||||
cgit v1.2.1
|
|
||||||
|
|
@ -1,200 +0,0 @@
|
|||||||
From 4bf83d4b3ba578a244c38945d002d6d24f439b54 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
|
|
||||||
Date: Mon, 21 Feb 2022 18:43:54 +0100
|
|
||||||
Subject: [PATCH] STEAMOS: Dynamic swapchain override for gamescope limiter
|
|
||||||
|
|
||||||
---
|
|
||||||
src/loader/loader_dri3_helper.c | 42 +++++++++++++++++++++++++++++++--
|
|
||||||
src/loader/loader_dri3_helper.h | 1 +
|
|
||||||
src/loader/meson.build | 2 +-
|
|
||||||
src/vulkan/wsi/wsi_common_x11.c | 38 +++++++++++++++++++++++++++++
|
|
||||||
4 files changed, 80 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/loader/loader_dri3_helper.c b/src/loader/loader_dri3_helper.c
|
|
||||||
index 32135770e9d..abc79dda97e 100644
|
|
||||||
--- a/src/loader/loader_dri3_helper.c
|
|
||||||
+++ b/src/loader/loader_dri3_helper.c
|
|
||||||
@@ -289,6 +289,30 @@ dri3_update_max_num_back(struct loader_dri3_drawable *draw)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
+static unsigned
|
|
||||||
+gamescope_swapchain_override()
|
|
||||||
+{
|
|
||||||
+ const char *path = getenv("GAMESCOPE_LIMITER_FILE");
|
|
||||||
+ if (!path)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ static simple_mtx_t mtx = SIMPLE_MTX_INITIALIZER;
|
|
||||||
+ static int fd = -1;
|
|
||||||
+
|
|
||||||
+ simple_mtx_lock(&mtx);
|
|
||||||
+ if (fd < 0) {
|
|
||||||
+ fd = open(path, O_RDONLY);
|
|
||||||
+ }
|
|
||||||
+ simple_mtx_unlock(&mtx);
|
|
||||||
+
|
|
||||||
+ if (fd < 0)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ uint32_t override_value = 0;
|
|
||||||
+ pread(fd, &override_value, sizeof(override_value), 0);
|
|
||||||
+ return override_value;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
void
|
|
||||||
loader_dri3_set_swap_interval(struct loader_dri3_drawable *draw, int interval)
|
|
||||||
{
|
|
||||||
@@ -303,10 +327,12 @@ loader_dri3_set_swap_interval(struct loader_dri3_drawable *draw, int interval)
|
|
||||||
* PS. changing from value A to B and A < B won't cause swap out of order but
|
|
||||||
* may still gets wrong target_msc value at the beginning.
|
|
||||||
*/
|
|
||||||
- if (draw->swap_interval != interval)
|
|
||||||
+ if (draw->orig_swap_interval != interval)
|
|
||||||
loader_dri3_swapbuffer_barrier(draw);
|
|
||||||
|
|
||||||
- draw->swap_interval = interval;
|
|
||||||
+ draw->orig_swap_interval = interval;
|
|
||||||
+ if (gamescope_swapchain_override() != 1)
|
|
||||||
+ draw->swap_interval = interval;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
@@ -438,6 +464,12 @@ loader_dri3_drawable_init(xcb_connection_t *conn,
|
|
||||||
draw->swap_interval = dri_get_initial_swap_interval(draw->dri_screen_render_gpu,
|
|
||||||
draw->ext->config);
|
|
||||||
|
|
||||||
+ draw->orig_swap_interval = draw->swap_interval;
|
|
||||||
+
|
|
||||||
+ unsigned gamescope_override = gamescope_swapchain_override();
|
|
||||||
+ if (gamescope_override == 1)
|
|
||||||
+ draw->swap_interval = 1;
|
|
||||||
+
|
|
||||||
dri3_update_max_num_back(draw);
|
|
||||||
|
|
||||||
/* Create a new drawable */
|
|
||||||
@@ -1092,6 +1124,12 @@ loader_dri3_swap_buffers_msc(struct loader_dri3_drawable *draw,
|
|
||||||
if (draw->type == LOADER_DRI3_DRAWABLE_WINDOW) {
|
|
||||||
dri3_fence_reset(draw->conn, back);
|
|
||||||
|
|
||||||
+ unsigned gamescope_override = gamescope_swapchain_override();
|
|
||||||
+ if (gamescope_override == 1)
|
|
||||||
+ draw->swap_interval = 1;
|
|
||||||
+ else
|
|
||||||
+ draw->swap_interval = draw->orig_swap_interval;
|
|
||||||
+
|
|
||||||
/* Compute when we want the frame shown by taking the last known
|
|
||||||
* successful MSC and adding in a swap interval for each outstanding swap
|
|
||||||
* request. target_msc=divisor=remainder=0 means "Use glXSwapBuffers()
|
|
||||||
diff --git a/src/loader/loader_dri3_helper.h b/src/loader/loader_dri3_helper.h
|
|
||||||
index 1fd340bd145..b8f5eaaf190 100644
|
|
||||||
--- a/src/loader/loader_dri3_helper.h
|
|
||||||
+++ b/src/loader/loader_dri3_helper.h
|
|
||||||
@@ -178,6 +178,7 @@ struct loader_dri3_drawable {
|
|
||||||
bool block_on_depleted_buffers;
|
|
||||||
bool queries_buffer_age;
|
|
||||||
int swap_interval;
|
|
||||||
+ int orig_swap_interval;
|
|
||||||
|
|
||||||
struct loader_dri3_extensions *ext;
|
|
||||||
const struct loader_dri3_vtable *vtable;
|
|
||||||
diff --git a/src/loader/meson.build b/src/loader/meson.build
|
|
||||||
index 35f9991ba2f..154cf809a69 100644
|
|
||||||
--- a/src/loader/meson.build
|
|
||||||
+++ b/src/loader/meson.build
|
|
||||||
@@ -29,7 +29,7 @@ if with_platform_x11 and with_dri3
|
|
||||||
dependencies : [
|
|
||||||
idep_mesautil,
|
|
||||||
dep_libdrm, dep_xcb_dri3, dep_xcb_present, dep_xcb_sync, dep_xshmfence,
|
|
||||||
- dep_xcb_xfixes,
|
|
||||||
+ dep_xcb_xfixes, dep_xcb_xrandr, idep_mesautil
|
|
||||||
],
|
|
||||||
build_by_default : false,
|
|
||||||
)
|
|
||||||
diff --git a/src/vulkan/wsi/wsi_common_x11.c b/src/vulkan/wsi/wsi_common_x11.c
|
|
||||||
index a42355971a7..5ed89cba8d0 100644
|
|
||||||
--- a/src/vulkan/wsi/wsi_common_x11.c
|
|
||||||
+++ b/src/vulkan/wsi/wsi_common_x11.c
|
|
||||||
@@ -42,6 +42,7 @@
|
|
||||||
#include "util/hash_table.h"
|
|
||||||
#include "util/os_file.h"
|
|
||||||
#include "util/os_time.h"
|
|
||||||
+#include "util/simple_mtx.h"
|
|
||||||
#include "util/u_debug.h"
|
|
||||||
#include "util/u_thread.h"
|
|
||||||
#include "util/xmlconfig.h"
|
|
||||||
@@ -198,6 +199,30 @@ wsi_x11_detect_xwayland(xcb_connection_t *conn,
|
|
||||||
return is_xwayland;
|
|
||||||
}
|
|
||||||
|
|
||||||
+static unsigned
|
|
||||||
+gamescope_swapchain_override()
|
|
||||||
+{
|
|
||||||
+ const char *path = getenv("GAMESCOPE_LIMITER_FILE");
|
|
||||||
+ if (!path)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ static simple_mtx_t mtx = SIMPLE_MTX_INITIALIZER;
|
|
||||||
+ static int fd = -1;
|
|
||||||
+
|
|
||||||
+ simple_mtx_lock(&mtx);
|
|
||||||
+ if (fd < 0) {
|
|
||||||
+ fd = open(path, O_RDONLY);
|
|
||||||
+ }
|
|
||||||
+ simple_mtx_unlock(&mtx);
|
|
||||||
+
|
|
||||||
+ if (fd < 0)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ uint32_t override_value = 0;
|
|
||||||
+ pread(fd, &override_value, sizeof(override_value), 0);
|
|
||||||
+ return override_value;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static struct wsi_x11_connection *
|
|
||||||
wsi_x11_connection_create(struct wsi_device *wsi_dev,
|
|
||||||
xcb_connection_t *conn)
|
|
||||||
@@ -1074,6 +1099,8 @@ struct x11_swapchain {
|
|
||||||
/* Total number of images returned to application in AcquireNextImage. */
|
|
||||||
uint64_t present_poll_acquire_count;
|
|
||||||
|
|
||||||
+ VkPresentModeKHR orig_present_mode;
|
|
||||||
+
|
|
||||||
struct x11_image images[0];
|
|
||||||
};
|
|
||||||
VK_DEFINE_NONDISP_HANDLE_CASTS(x11_swapchain, base.base, VkSwapchainKHR,
|
|
||||||
@@ -1802,6 +1829,12 @@ x11_queue_present(struct wsi_swapchain *anv_chain,
|
|
||||||
if (chain->status < 0)
|
|
||||||
return chain->status;
|
|
||||||
|
|
||||||
+ unsigned gamescope_override = gamescope_swapchain_override();
|
|
||||||
+ if ((gamescope_override == 1 && chain->base.present_mode != VK_PRESENT_MODE_FIFO_KHR) ||
|
|
||||||
+ (gamescope_override != 1 && chain->base.present_mode != chain->orig_present_mode)) {
|
|
||||||
+ return x11_swapchain_result(chain, VK_ERROR_OUT_OF_DATE_KHR);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
if (damage && damage->pRectangles && damage->rectangleCount > 0 &&
|
|
||||||
damage->rectangleCount <= MAX_DAMAGE_RECTS) {
|
|
||||||
xcb_rectangle_t rects[MAX_DAMAGE_RECTS];
|
|
||||||
@@ -2554,6 +2587,10 @@ x11_surface_create_swapchain(VkIcdSurfaceBase *icd_surface,
|
|
||||||
xcb_void_cookie_t cookie;
|
|
||||||
VkResult result;
|
|
||||||
VkPresentModeKHR present_mode = wsi_swapchain_get_present_mode(wsi_device, pCreateInfo);
|
|
||||||
+ VkPresentModeKHR orig_present_mode = present_mode;
|
|
||||||
+
|
|
||||||
+ if (gamescope_swapchain_override() == 1)
|
|
||||||
+ present_mode = VK_PRESENT_MODE_FIFO_KHR;
|
|
||||||
|
|
||||||
assert(pCreateInfo->sType == VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR);
|
|
||||||
|
|
||||||
@@ -2666,6 +2703,7 @@ x11_surface_create_swapchain(VkIcdSurfaceBase *icd_surface,
|
|
||||||
chain->base.wait_for_present = x11_wait_for_present;
|
|
||||||
chain->base.release_images = x11_release_images;
|
|
||||||
chain->base.present_mode = present_mode;
|
|
||||||
+ chain->orig_present_mode = orig_present_mode;
|
|
||||||
chain->base.image_count = num_images;
|
|
||||||
chain->conn = conn;
|
|
||||||
chain->window = window;
|
|
||||||
--
|
|
||||||
GitLab
|
|
||||||
|
|
153
debian/patches/revert-af1ee8e01044.diff
vendored
Normal file
153
debian/patches/revert-af1ee8e01044.diff
vendored
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
From 0c3587a2f8e1b6cfadf9a4bbb6ae4b2c3e14a651 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Leandro Ribeiro <leandro.ribeiro@collabora.com>
|
||||||
|
Date: Sun, 10 Apr 2022 22:54:36 -0300
|
||||||
|
Subject: [PATCH] Revert "egl/wayland: deprecate drm_handle_format() and
|
||||||
|
drm_handle_capabilities()"
|
||||||
|
|
||||||
|
Commit af1ee8e010441f8f2ed8c77065b159652a4ac9fe dropped support to
|
||||||
|
wl_drm, as we thought that most compositors from active projects were
|
||||||
|
already supporting zwp_linux_dmabuf_v1.
|
||||||
|
|
||||||
|
But that's not true, so revert this commit in order to give these
|
||||||
|
projects a longer transition period.
|
||||||
|
|
||||||
|
Note that we didn't add back the support to GEM name API, and that was
|
||||||
|
on purpose.
|
||||||
|
|
||||||
|
Signed-off-by: Leandro Ribeiro <leandro.ribeiro@collabora.com>
|
||||||
|
---
|
||||||
|
src/egl/drivers/dri2/egl_dri2.h | 1 +
|
||||||
|
src/egl/drivers/dri2/platform_wayland.c | 59 +++++++++++++++++++------
|
||||||
|
2 files changed, 47 insertions(+), 13 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/egl/drivers/dri2/egl_dri2.h b/src/egl/drivers/dri2/egl_dri2.h
|
||||||
|
index 89158993efdd..1c840a966b3c 100644
|
||||||
|
--- a/src/egl/drivers/dri2/egl_dri2.h
|
||||||
|
+++ b/src/egl/drivers/dri2/egl_dri2.h
|
||||||
|
@@ -284,6 +284,7 @@ struct dri2_egl_display
|
||||||
|
struct zwp_linux_dmabuf_feedback_v1 *wl_dmabuf_feedback;
|
||||||
|
struct dmabuf_feedback_format_table format_table;
|
||||||
|
bool authenticated;
|
||||||
|
+ uint32_t capabilities;
|
||||||
|
char *device_name;
|
||||||
|
#endif
|
||||||
|
|
||||||
|
diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c
|
||||||
|
index e9ecf6d1e716..19fad8bfa08e 100644
|
||||||
|
--- a/src/egl/drivers/dri2/platform_wayland.c
|
||||||
|
+++ b/src/egl/drivers/dri2/platform_wayland.c
|
||||||
|
@@ -1344,7 +1344,7 @@ create_wl_buffer(struct dri2_egl_display *dri2_dpy,
|
||||||
|
struct dri2_egl_surface *dri2_surf,
|
||||||
|
__DRIimage *image)
|
||||||
|
{
|
||||||
|
- struct wl_buffer *ret;
|
||||||
|
+ struct wl_buffer *ret = NULL;
|
||||||
|
EGLBoolean query;
|
||||||
|
int width, height, fourcc, num_planes;
|
||||||
|
uint64_t modifier = DRM_FORMAT_MOD_INVALID;
|
||||||
|
@@ -1448,11 +1448,28 @@ create_wl_buffer(struct dri2_egl_display *dri2_dpy,
|
||||||
|
ret = zwp_linux_buffer_params_v1_create_immed(params, width, height,
|
||||||
|
fourcc, 0);
|
||||||
|
zwp_linux_buffer_params_v1_destroy(params);
|
||||||
|
+ } else {
|
||||||
|
+ struct wl_drm *wl_drm =
|
||||||
|
+ dri2_surf ? dri2_surf->wl_drm_wrapper : dri2_dpy->wl_drm;
|
||||||
|
+ int fd, stride;
|
||||||
|
+
|
||||||
|
+ if (num_planes > 1)
|
||||||
|
+ return NULL;
|
||||||
|
+
|
||||||
|
+ query = dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_FD, &fd);
|
||||||
|
+ query &= dri2_dpy->image->queryImage(image, __DRI_IMAGE_ATTRIB_STRIDE, &stride);
|
||||||
|
+ if (!query) {
|
||||||
|
+ if (fd >= 0)
|
||||||
|
+ close(fd);
|
||||||
|
+ return NULL;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
- return ret;
|
||||||
|
+ ret = wl_drm_create_prime_buffer(wl_drm, fd, width, height, fourcc, 0,
|
||||||
|
+ stride, 0, 0, 0, 0);
|
||||||
|
+ close(fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
- return NULL;
|
||||||
|
+ return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static EGLBoolean
|
||||||
|
@@ -1699,16 +1716,21 @@ drm_handle_device(void *data, struct wl_drm *drm, const char *device)
|
||||||
|
static void
|
||||||
|
drm_handle_format(void *data, struct wl_drm *drm, uint32_t format)
|
||||||
|
{
|
||||||
|
- /* deprecated, as compositors already support the dma-buf protocol extension
|
||||||
|
- * and so we can rely on dmabuf_handle_modifier() to receive formats and
|
||||||
|
- * modifiers */
|
||||||
|
+ struct dri2_egl_display *dri2_dpy = data;
|
||||||
|
+ int visual_idx = dri2_wl_visual_idx_from_fourcc(format);
|
||||||
|
+
|
||||||
|
+ if (visual_idx == -1)
|
||||||
|
+ return;
|
||||||
|
+
|
||||||
|
+ BITSET_SET(dri2_dpy->formats.formats_bitmap, visual_idx);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
drm_handle_capabilities(void *data, struct wl_drm *drm, uint32_t value)
|
||||||
|
{
|
||||||
|
- /* deprecated, as compositors already support the dma-buf protocol extension
|
||||||
|
- * and so we can rely on it to create wl_buffer's */
|
||||||
|
+ struct dri2_egl_display *dri2_dpy = data;
|
||||||
|
+
|
||||||
|
+ dri2_dpy->capabilities = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
@@ -2077,13 +2099,12 @@ dri2_initialize_wayland_drm(_EGLDisplay *disp)
|
||||||
|
wl_registry_add_listener(dri2_dpy->wl_registry,
|
||||||
|
®istry_listener_drm, dri2_dpy);
|
||||||
|
|
||||||
|
- /* The compositor must expose the dma-buf interface. */
|
||||||
|
- if (roundtrip(dri2_dpy) < 0 || dri2_dpy->wl_dmabuf == NULL)
|
||||||
|
+ if (roundtrip(dri2_dpy) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
/* Get default dma-buf feedback */
|
||||||
|
- if (zwp_linux_dmabuf_v1_get_version(dri2_dpy->wl_dmabuf) >=
|
||||||
|
- ZWP_LINUX_DMABUF_V1_GET_DEFAULT_FEEDBACK_SINCE_VERSION) {
|
||||||
|
+ if (dri2_dpy->wl_dmabuf && zwp_linux_dmabuf_v1_get_version(dri2_dpy->wl_dmabuf) >=
|
||||||
|
+ ZWP_LINUX_DMABUF_V1_GET_DEFAULT_FEEDBACK_SINCE_VERSION) {
|
||||||
|
dmabuf_feedback_format_table_init(&dri2_dpy->format_table);
|
||||||
|
dri2_dpy->wl_dmabuf_feedback =
|
||||||
|
zwp_linux_dmabuf_v1_get_default_feedback(dri2_dpy->wl_dmabuf);
|
||||||
|
@@ -2091,7 +2112,6 @@ dri2_initialize_wayland_drm(_EGLDisplay *disp)
|
||||||
|
&dmabuf_feedback_listener, dri2_dpy);
|
||||||
|
}
|
||||||
|
|
||||||
|
- /* Receive events from the interfaces */
|
||||||
|
if (roundtrip(dri2_dpy) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
@@ -2178,6 +2198,19 @@ dri2_initialize_wayland_drm(_EGLDisplay *disp)
|
||||||
|
|
||||||
|
dri2_wl_setup_swap_interval(disp);
|
||||||
|
|
||||||
|
+ if (dri2_dpy->wl_drm) {
|
||||||
|
+ /* To use Prime, we must have _DRI_IMAGE v7 at least. createImageFromFds
|
||||||
|
+ * support indicates that Prime export/import is supported by the driver.
|
||||||
|
+ * We deprecated the support to GEM names API, so we bail out if the
|
||||||
|
+ * driver does not suport Prime. */
|
||||||
|
+ if (!(dri2_dpy->capabilities & WL_DRM_CAPABILITY_PRIME) ||
|
||||||
|
+ (dri2_dpy->image->base.version < 7) ||
|
||||||
|
+ (dri2_dpy->image->createImageFromFds == NULL)) {
|
||||||
|
+ _eglLog(_EGL_WARNING, "wayland-egl: display does not support prime");
|
||||||
|
+ goto cleanup;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
if (dri2_dpy->is_different_gpu &&
|
||||||
|
(dri2_dpy->image->base.version < 9 ||
|
||||||
|
dri2_dpy->image->blitImage == NULL)) {
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
21
debian/patches/series
vendored
21
debian/patches/series
vendored
@ -1,18 +1,3 @@
|
|||||||
#4bf83d4b3ba578a244c38945d002d6d24f439b54.patch
|
#07_gallium-fix-build-failure-on-powerpcspe.diff
|
||||||
07_gallium-fix-build-failure-on-powerpcspe.diff
|
#path_max.diff
|
||||||
path_max.diff
|
#src_glx_dri_common.h.diff
|
||||||
src_glx_dri_common.h.diff
|
|
||||||
|
|
||||||
|
|
||||||
#kisak-mesa PPA Backports:
|
|
||||||
version
|
|
||||||
0001_radv_amdgpu:_Remove_unnecessary_assertions_from_chaining..patch
|
|
||||||
0002_radv:_Disallow_IB2_on_GFX6_when_using_draw_indirect_multi..patch
|
|
||||||
0003_radv:_Use_IB_BOs_(chaining)_by_default_on_GFX6..patch
|
|
||||||
0004_radv:_Chain_command_buffers_on_GFX6_in_radv_queue..patch
|
|
||||||
0005_amd:_Rename_INDIRECT_BUFFER_CIK_to_just_INDIRECT_BUFFER..patch
|
|
||||||
0006_radv:_Simplify_IB2_workaround..patch
|
|
||||||
0007_radv:_Remove_IB2_workaround_from_mesh_shader_draws..patch
|
|
||||||
0008_radv:_Enable_IB2_workaround_on_all_indirect_draws..patch
|
|
||||||
0009_anv:_override_vendorID_for_Cyberpunk_2077.patch
|
|
||||||
0010_util_driconf:_pin_minImageCount_to_three_for_Path_of_Exile.patch
|
|
||||||
|
5
debian/patches/version
vendored
5
debian/patches/version
vendored
@ -1,5 +0,0 @@
|
|||||||
--- a/VERSION
|
|
||||||
+++ b/VERSION
|
|
||||||
@@ -1 +1 @@
|
|
||||||
-23.1.5
|
|
||||||
+23.1.5 - kisak-mesa PPA
|
|
7
main.sh
7
main.sh
@ -2,17 +2,18 @@
|
|||||||
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-23.1.5
|
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-23.1.5
|
||||||
cp -rvf ./debian ./mesa/
|
cp -rvf ./debian ./mesa/
|
||||||
cd ./mesa
|
cd ./mesa
|
||||||
|
touch debian/changelog
|
||||||
|
#echo -e "linux-firmware ("$(date '+%Y%m%d')".git-99pika"$(date '+%M')") lunar; urgency=medium\n\n * New Upstream Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
||||||
|
echo -e "mesa (23.3-git.$(git rev-parse HEAD)-99pika"$(date '+%M')") lunar; urgency=medium\n\n * New Git Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
||||||
|
|
||||||
# Get build deps
|
# Get build deps
|
||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
|
|
||||||
LOGNAME=root dh_make --createorig -y -l -p mesa_23.1.5
|
|
||||||
|
|
||||||
dpkg-buildpackage --no-sign
|
dpkg-buildpackage --no-sign
|
||||||
|
|
||||||
# Move the debs to output
|
# Move the debs to output
|
||||||
cd ../
|
cd ../
|
||||||
mkdir -p ./output
|
mkdir -p ./output
|
||||||
mv ./*.deb ./output/
|
mv ./mesa-vulkan*.deb ./output/
|
||||||
|
@ -2,17 +2,18 @@
|
|||||||
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-23.1.5
|
git clone https://gitlab.freedesktop.org/mesa/mesa -b mesa-23.1.5
|
||||||
cp -rvf ./debian ./mesa/
|
cp -rvf ./debian ./mesa/
|
||||||
cd ./mesa
|
cd ./mesa
|
||||||
|
touch debian/changelog
|
||||||
|
#echo -e "linux-firmware ("$(date '+%Y%m%d')".git-99pika"$(date '+%M')") lunar; urgency=medium\n\n * New Upstream Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
||||||
|
echo -e "mesa (23.3-git.$(git rev-parse HEAD)-99pika"$(date '+%M')") lunar; urgency=medium\n\n * New Git Release\n\n -- Ward Nakchbandi <hotrod.master@hotmail.com> Sat, 01 Oct 2022 14:50:00 +0200" > debian/changelog
|
||||||
|
|
||||||
# Get build deps
|
# Get build deps
|
||||||
apt-get build-dep ./ -y
|
apt-get build-dep ./ -y
|
||||||
|
|
||||||
# Build package
|
# Build package
|
||||||
|
|
||||||
LOGNAME=root dh_make --createorig -y -l -p mesa_23.1.5
|
|
||||||
|
|
||||||
dpkg-buildpackage --no-sign
|
dpkg-buildpackage --no-sign
|
||||||
|
|
||||||
# Move the debs to output
|
# Move the debs to output
|
||||||
cd ../
|
cd ../
|
||||||
mkdir -p ./output
|
mkdir -p ./output
|
||||||
mv ./*.deb ./output/
|
mv ./mesa-vulkan*.deb ./output/
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# Sign the packages
|
# Sign the packages
|
||||||
rm -rf ./output/mesa-vulkan*.deb
|
|
||||||
dpkg-sig --sign builder ./output/*.deb
|
dpkg-sig --sign builder ./output/*.deb
|
||||||
|
|
||||||
# Pull down existing ppa repo db files etc
|
# Pull down existing ppa repo db files etc
|
||||||
|
Loading…
Reference in New Issue
Block a user