drm/i915: Unify the FB and plane state view information into one struct
To allow the simplification of FB/plane view computation in the follow-up patches, unify the corresponding state in the intel_framebuffer and intel_plane_state structs into a new intel_fb_view struct. This adds some overhead to intel_framebuffer as the rotated view will have now space for 4 color planes instead of the required 2 and it'll also contain the unused offset for each color_plane info. Imo this is an acceptable trade-off to get a simplified way of the remap computation. Use the new intel_fb_view struct for the FB normal view as well, so (in the follow-up patches) we can remove the special casing for normal view calculation wrt. the calculation of remapped/rotated views. This also adds an overhead to the intel_framebuffer struct, as the gtt remap info and per-color plane offset/pitch is not required for the normal view, but imo this is an acceptable trade-off as above. The per-color plane pitch filed will be used by a follow-up patch, so we can retrieve the pitch for each view in the same way. No functional changes in this patch. v2: - Make the patch have _no functional change_. (fix skl_check_nv12_aux_surface() and skl_check_main_surface()). - s/i915_color_plane_view::pitch/stride/ (Ville) Suggested-by:Ville Syrjälä <ville.syrjala@linux.intel.com> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by:
Imre Deak <imre.deak@intel.com> Reviewed-by:
Ville Syrjälä <ville.syrjala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210325214808.2071517-17-imre.deak@intel.com
Showing
- drivers/gpu/drm/i915/display/i9xx_plane.c 10 additions, 10 deletionsdrivers/gpu/drm/i915/display/i9xx_plane.c
- drivers/gpu/drm/i915/display/intel_cursor.c 7 additions, 7 deletionsdrivers/gpu/drm/i915/display/intel_cursor.c
- drivers/gpu/drm/i915/display/intel_display.c 10 additions, 12 deletionsdrivers/gpu/drm/i915/display/intel_display.c
- drivers/gpu/drm/i915/display/intel_display_types.h 40 additions, 21 deletionsdrivers/gpu/drm/i915/display/intel_display_types.h
- drivers/gpu/drm/i915/display/intel_fb.c 33 additions, 33 deletionsdrivers/gpu/drm/i915/display/intel_fb.c
- drivers/gpu/drm/i915/display/intel_fbc.c 3 additions, 3 deletionsdrivers/gpu/drm/i915/display/intel_fbc.c
- drivers/gpu/drm/i915/display/intel_sprite.c 13 additions, 13 deletionsdrivers/gpu/drm/i915/display/intel_sprite.c
- drivers/gpu/drm/i915/display/skl_universal_plane.c 34 additions, 37 deletionsdrivers/gpu/drm/i915/display/skl_universal_plane.c
Loading
Please register or sign in to comment