|
@@ -179,7 +179,7 @@ static void intel_update_primary_plane(struct intel_crtc *crtc)
|
|
|
static void
|
|
|
skl_update_plane(struct drm_plane *drm_plane, struct drm_crtc *crtc,
|
|
|
struct drm_framebuffer *fb,
|
|
|
- struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
|
|
|
+ int crtc_x, int crtc_y,
|
|
|
unsigned int crtc_w, unsigned int crtc_h,
|
|
|
uint32_t x, uint32_t y,
|
|
|
uint32_t src_w, uint32_t src_h)
|
|
@@ -187,6 +187,7 @@ skl_update_plane(struct drm_plane *drm_plane, struct drm_crtc *crtc,
|
|
|
struct drm_device *dev = drm_plane->dev;
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
struct intel_plane *intel_plane = to_intel_plane(drm_plane);
|
|
|
+ struct drm_i915_gem_object *obj = intel_fb_obj(fb);
|
|
|
const int pipe = intel_plane->pipe;
|
|
|
const int plane = intel_plane->plane + 1;
|
|
|
u32 plane_ctl, stride_div;
|
|
@@ -407,7 +408,7 @@ chv_update_csc(struct intel_plane *intel_plane, uint32_t format)
|
|
|
static void
|
|
|
vlv_update_plane(struct drm_plane *dplane, struct drm_crtc *crtc,
|
|
|
struct drm_framebuffer *fb,
|
|
|
- struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
|
|
|
+ int crtc_x, int crtc_y,
|
|
|
unsigned int crtc_w, unsigned int crtc_h,
|
|
|
uint32_t x, uint32_t y,
|
|
|
uint32_t src_w, uint32_t src_h)
|
|
@@ -416,6 +417,7 @@ vlv_update_plane(struct drm_plane *dplane, struct drm_crtc *crtc,
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
struct intel_plane *intel_plane = to_intel_plane(dplane);
|
|
|
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
|
|
+ struct drm_i915_gem_object *obj = intel_fb_obj(fb);
|
|
|
int pipe = intel_plane->pipe;
|
|
|
int plane = intel_plane->plane;
|
|
|
u32 sprctl;
|
|
@@ -608,7 +610,7 @@ vlv_get_colorkey(struct drm_plane *dplane,
|
|
|
static void
|
|
|
ivb_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
|
|
|
struct drm_framebuffer *fb,
|
|
|
- struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
|
|
|
+ int crtc_x, int crtc_y,
|
|
|
unsigned int crtc_w, unsigned int crtc_h,
|
|
|
uint32_t x, uint32_t y,
|
|
|
uint32_t src_w, uint32_t src_h)
|
|
@@ -617,6 +619,7 @@ ivb_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
struct intel_plane *intel_plane = to_intel_plane(plane);
|
|
|
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
|
|
+ struct drm_i915_gem_object *obj = intel_fb_obj(fb);
|
|
|
int pipe = intel_plane->pipe;
|
|
|
u32 sprctl, sprscale = 0;
|
|
|
unsigned long sprsurf_offset, linear_offset;
|
|
@@ -813,7 +816,7 @@ ivb_get_colorkey(struct drm_plane *plane, struct drm_intel_sprite_colorkey *key)
|
|
|
static void
|
|
|
ilk_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
|
|
|
struct drm_framebuffer *fb,
|
|
|
- struct drm_i915_gem_object *obj, int crtc_x, int crtc_y,
|
|
|
+ int crtc_x, int crtc_y,
|
|
|
unsigned int crtc_w, unsigned int crtc_h,
|
|
|
uint32_t x, uint32_t y,
|
|
|
uint32_t src_w, uint32_t src_h)
|
|
@@ -822,6 +825,7 @@ ilk_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
|
|
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
|
|
struct intel_plane *intel_plane = to_intel_plane(plane);
|
|
|
struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
|
|
|
+ struct drm_i915_gem_object *obj = intel_fb_obj(fb);
|
|
|
int pipe = intel_plane->pipe;
|
|
|
unsigned long dvssurf_offset, linear_offset;
|
|
|
u32 dvscntr, dvsscale;
|
|
@@ -1275,7 +1279,6 @@ intel_commit_sprite_plane(struct drm_plane *plane,
|
|
|
struct intel_crtc *intel_crtc;
|
|
|
struct intel_plane *intel_plane = to_intel_plane(plane);
|
|
|
struct drm_framebuffer *fb = state->base.fb;
|
|
|
- struct drm_i915_gem_object *obj = intel_fb_obj(fb);
|
|
|
int crtc_x, crtc_y;
|
|
|
unsigned int crtc_w, crtc_h;
|
|
|
uint32_t src_x, src_y, src_w, src_h;
|
|
@@ -1283,8 +1286,7 @@ intel_commit_sprite_plane(struct drm_plane *plane,
|
|
|
crtc = crtc ? crtc : plane->crtc;
|
|
|
intel_crtc = to_intel_crtc(crtc);
|
|
|
|
|
|
- plane->fb = state->base.fb;
|
|
|
- intel_plane->obj = obj;
|
|
|
+ plane->fb = fb;
|
|
|
|
|
|
if (intel_crtc->active) {
|
|
|
intel_crtc->primary_enabled = !state->hides_primary;
|
|
@@ -1298,7 +1300,7 @@ intel_commit_sprite_plane(struct drm_plane *plane,
|
|
|
src_y = state->src.y1;
|
|
|
src_w = drm_rect_width(&state->src);
|
|
|
src_h = drm_rect_height(&state->src);
|
|
|
- intel_plane->update_plane(plane, crtc, fb, obj,
|
|
|
+ intel_plane->update_plane(plane, crtc, fb,
|
|
|
crtc_x, crtc_y, crtc_w, crtc_h,
|
|
|
src_x, src_y, src_w, src_h);
|
|
|
} else {
|