summaryrefslogtreecommitdiff
path: root/lib/xe/xe_ioctl.c
diff options
context:
space:
mode:
authorMatt Roper <matthew.d.roper@intel.com>2023-07-21 11:05:24 -0700
committerMatt Roper <matthew.d.roper@intel.com>2023-07-24 12:50:28 -0700
commit0c66a6560eda687effa9088659577a520d913908 (patch)
tree0358d52a50ce32e79cb79b3661cf4cf2f0aa9156 /lib/xe/xe_ioctl.c
parent86fa0e885f8d020eeb046f27fae5729d5962ebd7 (diff)
tests/xe: Boost command streamer prefetch size
The actual prefetch size variest by platform and by engine. MTL's RCS engine currently has the highest prefetch size of 2KB. Bspec: 45718 Signed-off-by: Matt Roper <matthew.d.roper@intel.com> Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Diffstat (limited to 'lib/xe/xe_ioctl.c')
-rw-r--r--lib/xe/xe_ioctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c
index 0b5c7a4fc..1f9240cd9 100644
--- a/lib/xe/xe_ioctl.c
+++ b/lib/xe/xe_ioctl.c
@@ -47,7 +47,7 @@
uint32_t xe_cs_prefetch_size(int fd)
{
- return 512;
+ return 2048;
}
uint32_t xe_vm_create(int fd, uint32_t flags, uint64_t ext)