[igt-dev] [PATCH i-g-t 06/12] lib/intel_allocator: Add field to distinct underlying driver
Zbigniew Kempczyński
zbigniew.kempczynski at intel.com
Tue Jul 4 09:00:58 UTC 2023
Cache what driver is using on drm fd to avoid calling same code
in allocator functions.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski at intel.com>
---
lib/intel_allocator.c | 1 +
lib/intel_allocator.h | 3 +++
2 files changed, 4 insertions(+)
diff --git a/lib/intel_allocator.c b/lib/intel_allocator.c
index 8161221dbf..c98c410b3b 100644
--- a/lib/intel_allocator.c
+++ b/lib/intel_allocator.c
@@ -318,6 +318,7 @@ static struct intel_allocator *intel_allocator_create(int fd,
igt_assert(ial);
+ ial->driver = get_intel_driver(fd);
ial->type = allocator_type;
ial->strategy = allocator_strategy;
ial->default_alignment = default_alignment;
diff --git a/lib/intel_allocator.h b/lib/intel_allocator.h
index a6bf573e9d..ed3a78485d 100644
--- a/lib/intel_allocator.h
+++ b/lib/intel_allocator.h
@@ -141,6 +141,9 @@ struct intel_allocator {
/* allocator's private structure */
void *priv;
+ /* driver - i915 or Xe */
+ enum intel_driver driver;
+
void (*get_address_range)(struct intel_allocator *ial,
uint64_t *startp, uint64_t *endp);
uint64_t (*alloc)(struct intel_allocator *ial, uint32_t handle,
--
2.34.1
More information about the igt-dev
mailing list