drm-uapi: Sync i915_drm.h with a78313bb206e

Sync i915_drm.h with a78313bb206e
commit a78313bb206e0c456a989f380c4cbd8af8af7c76
Author: Dave Airlie <airlied@redhat.com>
Date:   Thu Jun 27 17:21:43 2024 +1000

    Merge tag 'drm-intel-gt-next-2024-06-12' of https://gitlab.freedesktop.org/drm/i915/kernel into drm-next

Fixes: a9f1151de2 ("intel/hang_replay: use hw image param")

Signed-off-by: Sushma Venkatesh Reddy <sushma.venkatesh.reddy@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29885>
This commit is contained in:
Sushma Venkatesh Reddy
2024-06-24 16:56:39 -07:00
committed by Marge Bot
parent 35298e84f1
commit d8c2930da0

View File

@@ -806,6 +806,12 @@ typedef struct drm_i915_irq_wait {
*/ */
#define I915_PARAM_PXP_STATUS 58 #define I915_PARAM_PXP_STATUS 58
/*
* Query if kernel allows marking a context to send a Freq hint to SLPC. This
* will enable use of the strategies allowed by the SLPC algorithm.
*/
#define I915_PARAM_HAS_CONTEXT_FREQ_HINT 59
/* Must be kept compact -- no holes and well documented */ /* Must be kept compact -- no holes and well documented */
/** /**
@@ -2148,18 +2154,29 @@ struct drm_i915_gem_context_param {
* -EIO: The firmware did not succeed in creating the protected context. * -EIO: The firmware did not succeed in creating the protected context.
*/ */
#define I915_CONTEXT_PARAM_PROTECTED_CONTENT 0xd #define I915_CONTEXT_PARAM_PROTECTED_CONTENT 0xd
/* Must be kept compact -- no holes and well documented */
/** @value: Context parameter value to be set or queried */ /*
__u64 value; * I915_CONTEXT_PARAM_LOW_LATENCY:
}; *
* Mark this context as a low latency workload which requires aggressive GT
* frequency scaling. Use I915_PARAM_HAS_CONTEXT_FREQ_HINT to check if the kernel
* supports this per context flag.
*/
#define I915_CONTEXT_PARAM_LOW_LATENCY 0xe
/* /*
* I915_CONTEXT_PARAM_CONTEXT_IMAGE: * I915_CONTEXT_PARAM_CONTEXT_IMAGE:
* *
* Allows userspace to provide own context images. * Allows userspace to provide own context images.
*
* Note that this is a debug API not available on production kernel builds.
*/ */
#define I915_CONTEXT_PARAM_CONTEXT_IMAGE 0xe #define I915_CONTEXT_PARAM_CONTEXT_IMAGE 0xf
/* Must be kept compact -- no holes and well documented */
/** @value: Context parameter value to be set or queried */
__u64 value;
};
/* /*
* Context SSEU programming * Context SSEU programming
@@ -2648,19 +2665,29 @@ struct drm_i915_reg_read {
* *
*/ */
/*
* struct drm_i915_reset_stats - Return global reset and other context stats
*
* Driver keeps few stats for each contexts and also global reset count.
* This struct can be used to query those stats.
*/
struct drm_i915_reset_stats { struct drm_i915_reset_stats {
/** @ctx_id: ID of the requested context */
__u32 ctx_id; __u32 ctx_id;
/** @flags: MBZ */
__u32 flags; __u32 flags;
/* All resets since boot/module reload, for all contexts */ /** @reset_count: All resets since boot/module reload, for all contexts */
__u32 reset_count; __u32 reset_count;
/* Number of batches lost when active in GPU, for this context */ /** @batch_active: Number of batches lost when active in GPU, for this context */
__u32 batch_active; __u32 batch_active;
/* Number of batches lost pending for execution, for this context */ /** @batch_pending: Number of batches lost pending for execution, for this context */
__u32 batch_pending; __u32 batch_pending;
/** @pad: MBZ */
__u32 pad; __u32 pad;
}; };
@@ -3597,9 +3624,13 @@ struct drm_i915_query_memory_regions {
* struct drm_i915_query_guc_submission_version - query GuC submission interface version * struct drm_i915_query_guc_submission_version - query GuC submission interface version
*/ */
struct drm_i915_query_guc_submission_version { struct drm_i915_query_guc_submission_version {
/** @branch: Firmware branch version. */
__u32 branch; __u32 branch;
/** @major: Firmware major version. */
__u32 major; __u32 major;
/** @minor: Firmware minor version. */
__u32 minor; __u32 minor;
/** @patch: Firmware patch version. */
__u32 patch; __u32 patch;
}; };