Mesa (master): radv: add some new members to radv device and instance for secure compile

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Sat Oct 26 02:39:18 UTC 2019


Module: Mesa
Branch: master
Commit: d33f2165c97ba230b14c67f3c935dd312681129d
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d33f2165c97ba230b14c67f3c935dd312681129d

Author: Timothy Arceri <tarceri at itsqueeze.com>
Date:   Wed Jul 31 13:47:08 2019 +1000

radv: add some new members to radv device and instance for secure compile

These will be used by the following commits to hold information about
the forked secure compile processes.

Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>

---

 src/amd/vulkan/radv_private.h | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/src/amd/vulkan/radv_private.h b/src/amd/vulkan/radv_private.h
index ea0b3305b3a..17e6f35ba20 100644
--- a/src/amd/vulkan/radv_private.h
+++ b/src/amd/vulkan/radv_private.h
@@ -354,6 +354,7 @@ struct radv_instance {
 
 	uint64_t debug_flags;
 	uint64_t perftest_flags;
+	uint8_t num_sc_threads;
 
 	struct vk_debug_report_instance             debug_report_callbacks;
 
@@ -723,6 +724,24 @@ struct radv_bo_list {
 	pthread_mutex_t mutex;
 };
 
+struct radv_secure_compile_process {
+	/* Secure process file descriptors */
+	int fd_secure_input;
+	int fd_secure_output;
+
+	/* Secure compile process id */
+	pid_t sc_pid;
+
+	/* Is the secure compile process currently in use by a thread */
+	bool in_use;
+};
+
+struct radv_secure_compile_state {
+	struct radv_secure_compile_process *secure_compile_processes;
+	uint32_t secure_compile_thread_counter;
+	mtx_t secure_compile_mutex;
+};
+
 struct radv_device {
 	VK_LOADER_DATA                              _loader_data;
 
@@ -793,6 +812,8 @@ struct radv_device {
 
 	/* Whether anisotropy is forced with RADV_TEX_ANISO (-1 is disabled). */
 	int force_aniso;
+
+	struct radv_secure_compile_state *sc_state;
 };
 
 struct radv_device_memory {




More information about the mesa-commit mailing list