linux/drivers/gpu/drm/msm/disp/mdp4
Maxime Ripard 37418bf14c
drm: Use state helper instead of the plane state pointer
Many drivers reference the plane->state pointer in order to get the
current plane state in their atomic_update or atomic_disable hooks,
which would be the new plane state in the global atomic state since
_swap_state happened when those hooks are run.

Use the drm_atomic_get_new_plane_state helper to get that state to make it
more obvious.

This was made using the coccinelle script below:

@ plane_atomic_func @
identifier helpers;
identifier func;
@@

(
 static const struct drm_plane_helper_funcs helpers = {
 	...,
 	.atomic_disable = func,
	...,
 };
|
 static const struct drm_plane_helper_funcs helpers = {
 	...,
 	.atomic_update = func,
	...,
 };
)

@ adds_new_state @
identifier plane_atomic_func.func;
identifier plane, state;
identifier new_state;
@@

 func(struct drm_plane *plane, struct drm_atomic_state *state)
 {
 	...
-	struct drm_plane_state *new_state = plane->state;
+	struct drm_plane_state *new_state = drm_atomic_get_new_plane_state(state, plane);
	...
 }

@ include depends on adds_new_state @
@@

 #include <drm/drm_atomic.h>

@ no_include depends on !include && adds_new_state @
@@

+ #include <drm/drm_atomic.h>
  #include <drm/...>

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Acked-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20210219120032.260676-1-maxime@cerno.tech
2021-02-25 08:05:28 +01:00
..
mdp4_crtc.c Merge tag 'drm-msm-next-2020-12-07' of https://gitlab.freedesktop.org/drm/msm into drm-next 2020-12-10 09:42:47 +10:00
mdp4_dsi_encoder.c drm: msm: mdp4: Adjust indentation in mdp4_dsi_encoder_enable 2020-01-02 16:13:46 -08:00
mdp4_dtv_encoder.c drm/msm/mdp4: Remove unused downstream bus scaling apis 2020-09-04 12:15:29 -07:00
mdp4_irq.c drm/msm: drop use of drmP.h 2019-09-03 16:16:57 -07:00
mdp4_kms.c drm/msm/kms: Update msm_kms_init/destroy 2020-11-01 10:13:32 -08:00
mdp4_kms.h drm/msm/mdp4: Remove unused downstream bus scaling apis 2020-09-04 12:15:29 -07:00
mdp4_lcdc_encoder.c drm/msm/mdp4: Remove unused downstream bus scaling apis 2020-09-04 12:15:29 -07:00
mdp4_lvds_connector.c drm: Remove unnecessary drm_panel_attach and drm_panel_detach 2020-08-08 09:06:33 +02:00
mdp4_lvds_pll.c treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 234 2019-06-19 17:09:07 +02:00
mdp4_plane.c drm: Use state helper instead of the plane state pointer 2021-02-25 08:05:28 +01:00
mdp4.xml.h drm/msm: sync generated headers 2020-07-31 06:46:16 -07:00