drm/i915: Make for_each_engine_masked work on intel_gt
Medium term goal is to eliminate the i915->engine[] array and to get there we have recently introduced equivalent array in intel_gt. Now we need to migrate the code further towards this state. This next step is to eliminate usage of i915->engines[] from the for_each_engine_masked iterator. For this to work we also need to use engine->id as index when populating the gt->engine[] array and adjust the default engine set indexing to use engine->legacy_idx instead of assuming gt->engines[] indexing. v2: * Populate gt->engine[] earlier. * Check that we don't duplicate engine->legacy_idx v3: * Work around the initialization order issue between default_engines() and intel_engines_driver_register() which sets engine->legacy_idx for now. It will be fixed properly later. v4: * Merge with forgotten v2.5. Signed-off-by:Tvrtko Ursulin <tvrtko.ursulin@intel.com> Cc: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by:
Chris Wilson <chris@chris-wilson.co.uk> Signed-off-by:
Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20191017161852.8836-1-tvrtko.ursulin@linux.intel.com
Showing
- drivers/gpu/drm/i915/gem/i915_gem_context.c 10 additions, 3 deletionsdrivers/gpu/drm/i915/gem/i915_gem_context.c
- drivers/gpu/drm/i915/gt/intel_engine_cs.c 5 additions, 0 deletionsdrivers/gpu/drm/i915/gt/intel_engine_cs.c
- drivers/gpu/drm/i915/gt/intel_engine_types.h 1 addition, 0 deletionsdrivers/gpu/drm/i915/gt/intel_engine_types.h
- drivers/gpu/drm/i915/gt/intel_engine_user.c 5 additions, 13 deletionsdrivers/gpu/drm/i915/gt/intel_engine_user.c
- drivers/gpu/drm/i915/gt/intel_gt.c 1 addition, 1 deletiondrivers/gpu/drm/i915/gt/intel_gt.c
- drivers/gpu/drm/i915/gt/intel_hangcheck.c 1 addition, 1 deletiondrivers/gpu/drm/i915/gt/intel_hangcheck.c
- drivers/gpu/drm/i915/gt/intel_reset.c 6 additions, 6 deletionsdrivers/gpu/drm/i915/gt/intel_reset.c
- drivers/gpu/drm/i915/gvt/execlist.c 2 additions, 2 deletionsdrivers/gpu/drm/i915/gvt/execlist.c
- drivers/gpu/drm/i915/gvt/scheduler.c 1 addition, 1 deletiondrivers/gpu/drm/i915/gvt/scheduler.c
- drivers/gpu/drm/i915/i915_active.c 2 additions, 2 deletionsdrivers/gpu/drm/i915/i915_active.c
- drivers/gpu/drm/i915/i915_drv.h 3 additions, 3 deletionsdrivers/gpu/drm/i915/i915_drv.h
Loading
Please register or sign in to comment