|
@@ -441,6 +441,15 @@ intel_update_plane(struct drm_plane *plane, struct drm_crtc *crtc,
|
|
|
|
|
|
old_obj = intel_plane->obj;
|
|
|
|
|
|
+ intel_plane->crtc_x = crtc_x;
|
|
|
+ intel_plane->crtc_y = crtc_y;
|
|
|
+ intel_plane->crtc_w = crtc_w;
|
|
|
+ intel_plane->crtc_h = crtc_h;
|
|
|
+ intel_plane->src_x = src_x;
|
|
|
+ intel_plane->src_y = src_y;
|
|
|
+ intel_plane->src_w = src_w;
|
|
|
+ intel_plane->src_h = src_h;
|
|
|
+
|
|
|
src_w = src_w >> 16;
|
|
|
src_h = src_h >> 16;
|
|
|
|
|
@@ -647,6 +656,20 @@ out_unlock:
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+void intel_plane_restore(struct drm_plane *plane)
|
|
|
+{
|
|
|
+ struct intel_plane *intel_plane = to_intel_plane(plane);
|
|
|
+
|
|
|
+ if (!plane->crtc || !plane->fb)
|
|
|
+ return;
|
|
|
+
|
|
|
+ intel_update_plane(plane, plane->crtc, plane->fb,
|
|
|
+ intel_plane->crtc_x, intel_plane->crtc_y,
|
|
|
+ intel_plane->crtc_w, intel_plane->crtc_h,
|
|
|
+ intel_plane->src_x, intel_plane->src_y,
|
|
|
+ intel_plane->src_w, intel_plane->src_h);
|
|
|
+}
|
|
|
+
|
|
|
static const struct drm_plane_funcs intel_plane_funcs = {
|
|
|
.update_plane = intel_update_plane,
|
|
|
.disable_plane = intel_disable_plane,
|