All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jani Nikula <jani.nikula@intel.com>
To: intel-gfx@lists.freedesktop.org
Cc: "Ankit Nautiyal" <ankit.k.nautiyal@intel.com>,
	"Ville Syrjälä" <ville.syrjala@linux.intel.com>
Subject: Re: [RFC 1/2] drm/i915/display: add improved crtc iterators
Date: Thu, 19 Sep 2024 23:19:49 +0300	[thread overview]
Message-ID: <87msk38kgq.fsf@intel.com> (raw)
In-Reply-To: <3566e03bd3e10402f980e0a623f2ce893032f107.1726776703.git.jani.nikula@intel.com>

On Thu, 19 Sep 2024, Jani Nikula <jani.nikula@intel.com> wrote:
> The macros for iterating crtcs have become unweildy. Add a more generic
> solution.
>
> This is extensible via new initialization functions, more pipe_masks,
> and dedicated .get_next() functions.
>
> Cc: Ankit Nautiyal <ankit.k.nautiyal@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
>  drivers/gpu/drm/i915/Makefile                 |  1 +
>  .../gpu/drm/i915/display/intel_crtc_iter.c    | 94 +++++++++++++++++++
>  .../gpu/drm/i915/display/intel_crtc_iter.h    | 87 +++++++++++++++++
>  drivers/gpu/drm/xe/Makefile                   |  1 +
>  4 files changed, 183 insertions(+)
>  create mode 100644 drivers/gpu/drm/i915/display/intel_crtc_iter.c
>  create mode 100644 drivers/gpu/drm/i915/display/intel_crtc_iter.h
>
> diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
> index bb67bad839ea..7a370cc91dcb 100644
> --- a/drivers/gpu/drm/i915/Makefile
> +++ b/drivers/gpu/drm/i915/Makefile
> @@ -232,6 +232,7 @@ i915-y += \
>  	display/intel_combo_phy.o \
>  	display/intel_connector.o \
>  	display/intel_crtc.o \
> +	display/intel_crtc_iter.o \
>  	display/intel_crtc_state_dump.o \
>  	display/intel_cursor.o \
>  	display/intel_display.o \
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc_iter.c b/drivers/gpu/drm/i915/display/intel_crtc_iter.c
> new file mode 100644
> index 000000000000..27f16b565a67
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/display/intel_crtc_iter.c
> @@ -0,0 +1,94 @@
> +// SPDX-License-Identifier: MIT
> +/* Copyright © 2024 Intel Corporation */
> +
> +#include <linux/list.h>
> +#include <linux/kernel.h>
> +
> +#include "intel_crtc_iter.h"
> +#include "intel_display.h"
> +#include "intel_display_core.h"
> +#include "intel_display_types.h"
> +
> +static void reset_pos(struct intel_crtc_iter *iter)
> +{
> +	if (iter->reverse)
> +		iter->pos = list_last_entry(iter->crtc_list, typeof(*iter->pos), base.head);
> +	else
> +		iter->pos = list_first_entry(iter->crtc_list, typeof(*iter->pos), base.head);
> +}
> +
> +static struct intel_crtc *get_next(struct intel_crtc_iter *iter)
> +{
> +	if (iter->reverse) {
> +		list_for_each_entry_from(iter->pos, iter->crtc_list, base.head) {
> +			if (iter->pipe_mask[iter->pipe_mask_index] & BIT(iter->pos->pipe))
> +				return iter->pos;
> +		}
> +	} else {
> +		list_for_each_entry_from_reverse(iter->pos, iter->crtc_list, base.head) {
> +			if (iter->pipe_mask[iter->pipe_mask_index] & BIT(iter->pos->pipe))
> +				return iter->pos;
> +		}
> +	}

It's getting late, the blocks for the above are the wrong way around.

> +
> +	/* List exhausted, start over with the next pipe mask, if any. */
> +	iter->pipe_mask_index++;
> +	if (iter->pipe_mask_index < ARRAY_SIZE(iter->pipe_mask) &&
> +	    iter->pipe_mask[iter->pipe_mask_index]) {
> +		reset_pos(iter);
> +		return get_next(iter);
> +	}
> +
> +	return NULL;
> +}
> +
> +/*
> + * Iterate all CRTCs in forward or reverse CRTC initialization order, depending
> + * on reverse parameter, first matching pipes in pipe_mask0, then the pipes in
> + * pipe_mask1.
> + */
> +void __intel_crtc_iter_begin(struct intel_display *display,
> +			     struct intel_crtc_iter *iter,
> +			     unsigned long pipe_mask0,
> +			     unsigned long pipe_mask1,
> +			     bool reverse)
> +{
> +	iter->crtc_list = &display->drm->mode_config.crtc_list;
> +	iter->reverse = reverse;
> +	reset_pos(iter);
> +	iter->get_next = get_next;
> +	iter->pipe_mask_index = 0;
> +	iter->pipe_mask[0] = pipe_mask0;
> +	iter->pipe_mask[1] = pipe_mask1;
> +
> +	/* It's an error to match the same pipe twice. */
> +	drm_WARN_ON(display->drm, pipe_mask0 & pipe_mask1);
> +}
> +
> +
> +void intel_crtc_iter_end(struct intel_crtc_iter *iter)
> +{
> +	memset(iter, 0, sizeof(*iter));
> +}
> +
> +void intel_crtc_iter_begin_modeset_enable(struct intel_display *display,
> +					  struct intel_crtc_iter *iter,
> +					  const struct intel_crtc_state *crtc_state)
> +{
> +	/* Enable secondary pipes first, then the primary pipes. */
> +	__intel_crtc_iter_begin(display, iter,
> +				_intel_modeset_secondary_pipes(crtc_state),
> +				_intel_modeset_primary_pipes(crtc_state),
> +				false);
> +}
> +
> +void intel_crtc_iter_begin_modeset_disable(struct intel_display *display,
> +					   struct intel_crtc_iter *iter,
> +					   const struct intel_crtc_state *crtc_state)
> +{
> +	/* Disable primary pipes first, then the secondary pipes. */
> +	__intel_crtc_iter_begin(display, iter,
> +				_intel_modeset_primary_pipes(crtc_state),
> +				_intel_modeset_secondary_pipes(crtc_state),
> +				true);
> +}
> diff --git a/drivers/gpu/drm/i915/display/intel_crtc_iter.h b/drivers/gpu/drm/i915/display/intel_crtc_iter.h
> new file mode 100644
> index 000000000000..ec8d7ea3d595
> --- /dev/null
> +++ b/drivers/gpu/drm/i915/display/intel_crtc_iter.h
> @@ -0,0 +1,87 @@
> +/* SPDX-License-Identifier: MIT */
> +/* Copyright © 2024 Intel Corporation */
> +
> +/*
> + * struct intel_crtc iterators for various needs.
> + *
> + * Usage:
> + *
> + *	struct intel_crtc *crtc;
> + *	struct intel_crtc_iter iter;
> + *
> + *	intel_crtc_iter_begin(display, &iter);
> + *	intel_crtc_iter_for_each(crtc, &iter) {
> + *		...
> + *	}
> + *	intel_crtc_iter_end(&iter);
> + *
> + * There are various alternatives to intel_crtc_iter_begin() that change the
> + * iteration behaviour, but the rest remains the same in all cases.
> + */
> +
> +#ifndef __INTEL_CRTC_ITER_H__
> +#define __INTEL_CRTC_ITER_H__
> +
> +#include <linux/types.h>
> +
> +struct intel_crtc;
> +struct intel_crtc_state;
> +struct intel_display;
> +struct list_head;
> +
> +/* This is private. Do not look insde. */
> +struct intel_crtc_iter {
> +	struct list_head *crtc_list;
> +	struct intel_crtc *pos;
> +	struct intel_crtc *(*get_next)(struct intel_crtc_iter *iter);
> +	int pipe_mask_index;
> +	u32 pipe_mask[2];
> +	bool reverse;
> +};
> +
> +void __intel_crtc_iter_begin(struct intel_display *display,
> +			     struct intel_crtc_iter *iter,
> +			     unsigned long pipe_mask0,
> +			     unsigned long pipe_mask1,
> +			     bool reverse);
> +
> +static inline void intel_crtc_iter_begin(struct intel_display *display,
> +					 struct intel_crtc_iter *iter)
> +{
> +	__intel_crtc_iter_begin(display, iter, ~0UL, 0, false);
> +}
> +
> +static inline void intel_crtc_iter_begin_reverse(struct intel_display *display,
> +						 struct intel_crtc_iter *iter)
> +{
> +	__intel_crtc_iter_begin(display, iter, ~0UL, 0, true);
> +}
> +
> +static inline void intel_crtc_iter_begin_pipe_mask(struct intel_display *display,
> +						   struct intel_crtc_iter *iter,
> +						   unsigned long pipe_mask)
> +{
> +	__intel_crtc_iter_begin(display, iter, pipe_mask, 0, false);
> +}
> +
> +static inline void intel_crtc_iter_begin_pipe_mask_reverse(struct intel_display *display,
> +							   struct intel_crtc_iter *iter,
> +							   unsigned long pipe_mask)
> +{
> +	__intel_crtc_iter_begin(display, iter, pipe_mask, 0, true);
> +}
> +
> +void intel_crtc_iter_begin_modeset_enable(struct intel_display *display,
> +					  struct intel_crtc_iter *iter,
> +					  const struct intel_crtc_state *crtc_state);
> +
> +void intel_crtc_iter_begin_modeset_disable(struct intel_display *display,
> +					   struct intel_crtc_iter *iter,
> +					   const struct intel_crtc_state *crtc_state);
> +
> +#define intel_crtc_iter_for_each(crtc, iter) \
> +	while (((crtc) = (iter)->get_next(iter)))
> +
> +void intel_crtc_iter_end(struct intel_crtc_iter *iter);
> +
> +#endif /* __INTEL_CRTC_ITER_H__ */
> diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile
> index ae245fbd91ee..e1c8111b2528 100644
> --- a/drivers/gpu/drm/xe/Makefile
> +++ b/drivers/gpu/drm/xe/Makefile
> @@ -198,6 +198,7 @@ xe-$(CONFIG_DRM_XE_DISPLAY) += \
>  	i915-display/intel_combo_phy.o \
>  	i915-display/intel_connector.o \
>  	i915-display/intel_crtc.o \
> +	i915-display/intel_crtc_iter.o \
>  	i915-display/intel_crtc_state_dump.o \
>  	i915-display/intel_cursor.o \
>  	i915-display/intel_cx0_phy.o \

-- 
Jani Nikula, Intel

  reply	other threads:[~2024-09-19 20:19 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-19 20:14 [RFC 0/2] drm/i915/display: revamped crtc iterators Jani Nikula
2024-09-19 20:14 ` [RFC 1/2] drm/i915/display: add improved " Jani Nikula
2024-09-19 20:19   ` Jani Nikula [this message]
2024-09-19 20:14 ` [RFC 2/2] drm/i915/display: try out the new " Jani Nikula
2024-09-20  6:43 ` ✗ Fi.CI.CHECKPATCH: warning for drm/i915/display: revamped " Patchwork
2024-09-20  6:44 ` ✗ Fi.CI.SPARSE: " Patchwork
2024-09-20  6:59 ` ✗ Fi.CI.BAT: failure " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87msk38kgq.fsf@intel.com \
    --to=jani.nikula@intel.com \
    --cc=ankit.k.nautiyal@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=ville.syrjala@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.