diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2018-05-25 14:50:40 -0400 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2018-06-11 13:22:44 -0400 |
commit | cd30fbca9713d225bc61ff9a2d5f1fbaff9df2f2 (patch) | |
tree | 1346e24f33a683c9201ffe558cd78f86c1ba8a63 | |
parent | 9e5c947cb7c11211bb5ca55bf209730c684fe43b (diff) |
drm/i915: Stop updating plane->fb/crtc
We want to get rid of plane->fb/crtc on atomic drivers. Stop setting
them.
v2: Fix up the comment in intel_crtc_active() and
nuke the rest of the stale comments (Daniel)
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> #v1
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20180525185045.29689-9-ville.syrjala@linux.intel.com
Reviewed-by: Sinclair Yeh <syeh@vmware.com>
-rw-r--r-- | drivers/gpu/drm/i915/intel_atomic_plane.c | 12 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/intel_display.c | 7 |
2 files changed, 3 insertions, 16 deletions
diff --git a/drivers/gpu/drm/i915/intel_atomic_plane.c b/drivers/gpu/drm/i915/intel_atomic_plane.c index 7481ce85746b..eb0579fb5e54 100644 --- a/drivers/gpu/drm/i915/intel_atomic_plane.c +++ b/drivers/gpu/drm/i915/intel_atomic_plane.c | |||
@@ -120,12 +120,6 @@ int intel_plane_atomic_check_with_state(const struct intel_crtc_state *old_crtc_ | |||
120 | &crtc_state->base.adjusted_mode; | 120 | &crtc_state->base.adjusted_mode; |
121 | int ret; | 121 | int ret; |
122 | 122 | ||
123 | /* | ||
124 | * Both crtc and plane->crtc could be NULL if we're updating a | ||
125 | * property while the plane is disabled. We don't actually have | ||
126 | * anything driver-specific we need to test in that case, so | ||
127 | * just return success. | ||
128 | */ | ||
129 | if (!intel_state->base.crtc && !old_plane_state->base.crtc) | 123 | if (!intel_state->base.crtc && !old_plane_state->base.crtc) |
130 | return 0; | 124 | return 0; |
131 | 125 | ||
@@ -204,12 +198,6 @@ static int intel_plane_atomic_check(struct drm_plane *plane, | |||
204 | const struct drm_crtc_state *old_crtc_state; | 198 | const struct drm_crtc_state *old_crtc_state; |
205 | struct drm_crtc_state *new_crtc_state; | 199 | struct drm_crtc_state *new_crtc_state; |
206 | 200 | ||
207 | /* | ||
208 | * Both crtc and plane->crtc could be NULL if we're updating a | ||
209 | * property while the plane is disabled. We don't actually have | ||
210 | * anything driver-specific we need to test in that case, so | ||
211 | * just return success. | ||
212 | */ | ||
213 | if (!crtc) | 201 | if (!crtc) |
214 | return 0; | 202 | return 0; |
215 | 203 | ||
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 00b030b08a6a..91eb47a1c922 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
@@ -994,7 +994,7 @@ bool intel_crtc_active(struct intel_crtc *crtc) | |||
994 | * We can ditch the adjusted_mode.crtc_clock check as soon | 994 | * We can ditch the adjusted_mode.crtc_clock check as soon |
995 | * as Haswell has gained clock readout/fastboot support. | 995 | * as Haswell has gained clock readout/fastboot support. |
996 | * | 996 | * |
997 | * We can ditch the crtc->primary->fb check as soon as we can | 997 | * We can ditch the crtc->primary->state->fb check as soon as we can |
998 | * properly reconstruct framebuffers. | 998 | * properly reconstruct framebuffers. |
999 | * | 999 | * |
1000 | * FIXME: The intel_crtc->active here should be switched to | 1000 | * FIXME: The intel_crtc->active here should be switched to |
@@ -2894,9 +2894,8 @@ valid_fb: | |||
2894 | if (i915_gem_object_is_tiled(obj)) | 2894 | if (i915_gem_object_is_tiled(obj)) |
2895 | dev_priv->preserve_bios_swizzle = true; | 2895 | dev_priv->preserve_bios_swizzle = true; |
2896 | 2896 | ||
2897 | drm_framebuffer_get(fb); | 2897 | plane_state->fb = fb; |
2898 | primary->fb = primary->state->fb = fb; | 2898 | plane_state->crtc = &intel_crtc->base; |
2899 | primary->crtc = primary->state->crtc = &intel_crtc->base; | ||
2900 | 2899 | ||
2901 | intel_set_plane_visible(to_intel_crtc_state(crtc_state), | 2900 | intel_set_plane_visible(to_intel_crtc_state(crtc_state), |
2902 | to_intel_plane_state(plane_state), | 2901 | to_intel_plane_state(plane_state), |