From c6dafb5c1a23a62e37620c99d5d99b00bf9540d6 Mon Sep 17 00:00:00 2001 From: Icenowy Zheng Date: Thu, 18 Jul 2024 17:14:46 +0800 Subject: [PATCH] pvr: enlarge transfer fw_stream buffer for multicore The currently allocated transfer fw_stream buffer lacks the space for a field that exists conditionally for multicore GPUs, frag_screen. Enlarge the transfer fw_stream buffer for this field. Signed-off-by: Icenowy Zheng Signed-off-by: Frank Binns Part-of: --- src/imagination/vulkan/winsys/pvr_winsys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/vulkan/winsys/pvr_winsys.h b/src/imagination/vulkan/winsys/pvr_winsys.h index 92f6538234e..9315efb90f9 100644 --- a/src/imagination/vulkan/winsys/pvr_winsys.h +++ b/src/imagination/vulkan/winsys/pvr_winsys.h @@ -267,7 +267,7 @@ struct pvr_winsys_transfer_cmd { /* Firmware stream buffer. This is the maximum possible size taking into * consideration all HW features, quirks and enhancements. */ - uint8_t fw_stream[172]; + uint8_t fw_stream[176]; uint32_t fw_stream_len; struct pvr_winsys_transfer_cmd_flags {