virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH v2 09/11] drm/atomic: Pass the full state to planes atomic disable and update
       [not found] ` <20210121163537.1466118-9-maxime@cerno.tech>
@ 2021-01-21 23:03   ` Laurent Pinchart
  0 siblings, 0 replies; 2+ messages in thread
From: Laurent Pinchart @ 2021-01-21 23:03 UTC (permalink / raw)
  To: Maxime Ripard
  Cc: Heiko Stübner, Xinliang Liu, dri-devel, Anitha Chrisanthus,
	linux-stm32, Jerome Brunet, linux-samsung-soc, Vincent Abriou,
	Michal Simek, Ludovic Desroches, NXP Linux Team, VMware Graphics,
	Sascha Hauer, Roland Scheidegger, Inki Dae, Sean Paul, Hyun Kwon,
	Seung-Woo Kim, linux-kernel, Pengutronix Kernel Team, freedreno,
	Zack Rusin, Alexandre Belloni, David Airlie, Edmund Dea,
	virtualization, Eric Anholt, Thierry Reding, Daniel Vetter,
	Mihail Atanassov, Fabio Estevam, Alexey Brodkin, Jonathan Hunter,
	linux-rockchip, James (Qian) Wang, Dave Airlie, Alexandre Torgue,
	Martin Blumenstingl, linux-arm-msm, Maxime Ripard, John Stultz,
	linux-amlogic, linux-arm-kernel, Rodrigo Siqueira,
	Boris Brezillon, Sandy Huang, Yannick Fertre, Kyungmin Park,
	Maxime Coquelin, Kevin Hilman, Brian Starkey, Haneen Mohammed,
	Neil Armstrong, Stefan Agner, Melissa Wen, linux-tegra,
	Benjamin Gaignard, Sam Ravnborg, Xinwei Kong,
	Krzysztof Kozlowski, Chen-Yu Tsai, Chun-Kuang Hu, Chen Feng,
	Alison Wang, spice-devel, Daniel Vetter, Tomi Valkeinen,
	Philippe Cornu, Kieran Bingham, Tian Tao, Shawn Guo, Liviu Dudau,
	Nicolas Ferre, Paul Cercueil, Marek Vasut, linux-renesas-soc,
	Joonyoung Shim, Russell King, Thomas Zimmermann,
	Maarten Lankhorst, Hans de Goede, linux-mediatek,
	Laurentiu Palcu, Matthias Brugger, Jernej Skrabec, linux-mips,
	Rob Clark, Philipp Zabel, Jyri Sarha, Lucas Stach

Hi Maxime,

Thank you for the patch.

On Thu, Jan 21, 2021 at 05:35:34PM +0100, Maxime Ripard wrote:
> The current atomic helpers have either their object state being passed as
> an argument or the full atomic state.
> 
> The former is the pattern that was done at first, before switching to the
> latter for new hooks or when it was needed.
> 
> Let's convert the remaining helpers to provide a consistent interface,
> this time with the planes atomic_update and atomic_disable.
> 
> The conversion was done using the coccinelle script below, built tested on
> all the drivers.
> 
> @@
> identifier plane, plane_state;
> symbol state;
> @@
> 
>  struct drm_plane_helper_funcs {
>  	...
> 	void (*atomic_update)(struct drm_plane *plane,
> -			      struct drm_plane_state *plane_state);
> +			      struct drm_atomic_state *state);
>  	...
>  }
> 
> @@
> identifier plane, plane_state;
> symbol state;
> @@
> 
>  struct drm_plane_helper_funcs {
> 	...
> 	void (*atomic_disable)(struct drm_plane *plane,
> -			       struct drm_plane_state *plane_state);
> +			       struct drm_atomic_state *state);
> 	...
>  }
> 
> @ plane_atomic_func @
> identifier helpers;
> identifier func;
> @@
> 
> (
>  static const struct drm_plane_helper_funcs helpers = {
>  	...,
>  	.atomic_update = func,
> 	...,
>  };
> |
>  static const struct drm_plane_helper_funcs helpers = {
>  	...,
>  	.atomic_disable = func,
> 	...,
>  };
> )
> 
> @@
> struct drm_plane_helper_funcs *FUNCS;
> identifier f;
> identifier crtc_state;
> identifier plane, plane_state, state;
> expression e;
> @@
> 
>  f(struct drm_crtc_state *crtc_state)
>  {
>  	...
>  	struct drm_atomic_state *state = e;
>  	<+...
> (
> -	FUNCS->atomic_disable(plane, plane_state)
> +	FUNCS->atomic_disable(plane, state)
> |
> -	FUNCS->atomic_update(plane, plane_state)
> +	FUNCS->atomic_update(plane, state)
> )
>  	...+>
>  }
> 
> @@
> identifier plane_atomic_func.func;
> identifier plane;
> symbol state;
> @@
> 
>  func(struct drm_plane *plane,
> -    struct drm_plane_state *state)
> +    struct drm_plane_state *old_plane_state)
>  {
> 	<...
> -	state
> +	old_plane_state
> 	...>
>  }
> 
> @ ignores_old_state @
> identifier plane_atomic_func.func;
> identifier plane, old_state;
> @@
> 
>  func(struct drm_plane *plane, struct drm_plane_state *old_state)
>  {
> 	... when != old_state
>  }
> 
> @ adds_old_state depends on plane_atomic_func && !ignores_old_state @
> identifier plane_atomic_func.func;
> identifier plane, plane_state;
> @@
> 
>  func(struct drm_plane *plane, struct drm_plane_state *plane_state)
>  {
> +	struct drm_plane_state *plane_state = drm_atomic_get_old_plane_state(state, plane);
>  	...
>  }
> 
> @ depends on plane_atomic_func @
> identifier plane_atomic_func.func;
> identifier plane, plane_state;
> @@
> 
>  func(struct drm_plane *plane,
> -     struct drm_plane_state *plane_state
> +     struct drm_atomic_state *state
>      )
>  { ... }
> 
> @ include depends on adds_old_state @
> @@
> 
>  #include <drm/drm_atomic.h>
> 
> @ no_include depends on !include && adds_old_state @
> @@
> 
> + #include <drm/drm_atomic.h>
>   #include <drm/...>
> 
> @@
> identifier plane_atomic_func.func;
> identifier plane, state;
> identifier plane_state;
> @@
> 
>  func(struct drm_plane *plane, struct drm_atomic_state *state) {
>  	...
>  	struct drm_plane_state *plane_state = drm_atomic_get_old_plane_state(state, plane);
>  	<+...
> -	plane_state->state
> +	state
>  	...+>
>  }
> 
> Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> 
> ---
> 
> Changes from v1:
>   - Reintroduce the old_plane_state check in zynqmp_disp_crtc_atomic_disable
> ---
>  drivers/gpu/drm/drm_atomic_helper.c               |  8 ++++----
>  drivers/gpu/drm/drm_simple_kms_helper.c           |  4 +++-
>  drivers/gpu/drm/mxsfb/mxsfb_kms.c                 |  6 ++++--
>  drivers/gpu/drm/omapdrm/omap_plane.c              |  4 ++--
>  drivers/gpu/drm/rcar-du/rcar_du_plane.c           |  4 +++-
>  drivers/gpu/drm/rcar-du/rcar_du_vsp.c             |  4 +++-
>  drivers/gpu/drm/tidss/tidss_plane.c               |  4 ++--
>  drivers/gpu/drm/tilcdc/tilcdc_plane.c             |  2 +-
>  drivers/gpu/drm/xlnx/zynqmp_disp.c                | 15 ++++++++-------
>  include/drm/drm_modeset_helper_vtables.h          |  4 ++--

For these,

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

>  58 files changed, 211 insertions(+), 123 deletions(-)

-- 
Regards,

Laurent Pinchart
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH v2 10/11] drm: Use state helper instead of the plane state pointer
       [not found] ` <20210121163537.1466118-10-maxime@cerno.tech>
@ 2021-01-26 13:24   ` Ville Syrjälä
  0 siblings, 0 replies; 2+ messages in thread
From: Ville Syrjälä @ 2021-01-26 13:24 UTC (permalink / raw)
  To: Maxime Ripard
  Cc: Haneen Mohammed, Alexandre Belloni, Neil Armstrong, David Airlie,
	Liviu Dudau, dri-devel, Russell King, Paul Cercueil,
	Thierry Reding, Anitha Chrisanthus, Daniel Vetter, Sam Ravnborg,
	Jerome Brunet, Marek Vasut, linux-renesas-soc, linux-samsung-soc,
	Joonyoung Shim, linux-rockchip, Alexey Brodkin, Michal Simek,
	Krzysztof Kozlowski, Jonathan Hunter, Roland Scheidegger,
	Xinliang Liu, Chen-Yu Tsai, VMware Graphics, NXP Linux Team,
	Chen Feng, Dave Airlie, Xinwei Kong, Chun-Kuang Hu,
	Alexandre Torgue, Martin Blumenstingl, linux-arm-msm,
	Sascha Hauer, Alison Wang, Maarten Lankhorst, linux-mips,
	Hans de Goede, linux-tegra, virtualization, linux-mediatek,
	Hyun Kwon, Philippe Cornu, Sandy Huang, Yannick Fertre,
	Ludovic Desroches, Thomas Zimmermann, freedreno

On Thu, Jan 21, 2021 at 05:35:35PM +0100, Maxime Ripard wrote:
> 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/...>
> 
> Signed-off-by: Maxime Ripard <maxime@cerno.tech>

Looks great.

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

-- 
Ville Syrjälä
Intel
_______________________________________________
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-01-26 13:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20210121163537.1466118-1-maxime@cerno.tech>
     [not found] ` <20210121163537.1466118-9-maxime@cerno.tech>
2021-01-21 23:03   ` [PATCH v2 09/11] drm/atomic: Pass the full state to planes atomic disable and update Laurent Pinchart
     [not found] ` <20210121163537.1466118-10-maxime@cerno.tech>
2021-01-26 13:24   ` [PATCH v2 10/11] drm: Use state helper instead of the plane state pointer Ville Syrjälä

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).