diff options
author | Toni Lönnberg <[email protected]> | 2018-11-08 14:41:01 +0200 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2018-11-13 15:10:12 +0000 |
commit | a6aab7e4364709778652f11586607dfac7284c4e (patch) | |
tree | 206459c5f3455166c44f2b5b33d188a1c6c1bbc0 /src/intel/tools/aubinator.c | |
parent | b00bccd01201b4673ffd1414eb80bdc63d46105f (diff) |
intel/decoder: tools: gen_engine to drm_i915_gem_engine_class
Removed the gen_engine enum and changed the involved functions to use the
drm_i915_gem_engine_class enum from UAPI instead.
v3: Wrong engine was being used for blocks in video ring
v4: Fixed aubinator_viewer.cpp
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/tools/aubinator.c')
-rw-r--r-- | src/intel/tools/aubinator.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index 1458875a313..ed758a62503 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -40,7 +40,6 @@ #include "util/macros.h" -#include "common/gen_decoder.h" #include "aub_read.h" #include "aub_mem.h" @@ -131,7 +130,7 @@ aubinator_init(void *user_data, int aub_pci_id, const char *app_name) } static void -handle_execlist_write(void *user_data, enum gen_engine engine, uint64_t context_descriptor) +handle_execlist_write(void *user_data, enum drm_i915_gem_engine_class engine, uint64_t context_descriptor) { const uint32_t pphwsp_size = 4096; uint32_t pphwsp_addr = context_descriptor & 0xfffff000; @@ -165,7 +164,7 @@ handle_execlist_write(void *user_data, enum gen_engine engine, uint64_t context_ } static void -handle_ring_write(void *user_data, enum gen_engine engine, +handle_ring_write(void *user_data, enum drm_i915_gem_engine_class engine, const void *data, uint32_t data_len) { batch_ctx.user_data = &mem; |