All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maxime Ripard <maxime@cerno.tech>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: Jani Nikula <jani.nikula@linux.intel.com>,
	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>,
	Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
	Ben Skeggs <bskeggs@redhat.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	Samuel Holland <samuel@sholland.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Emma Anholt <emma@anholt.net>, Karol Herbst <kherbst@redhat.com>,
	Daniel Vetter <daniel@ffwll.ch>, Chen-Yu Tsai <wens@csie.org>,
	Lyude Paul <lyude@redhat.com>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@linux.ie>,
	Phil Elwell <phil@raspberrypi.com>,
	Hans de Goede <hdegoede@redhat.com>,
	linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	linux-arm-kernel@lists.infradead.org,
	Dom Cobley <dom@raspberrypi.com>,
	Mateusz Kwiatkowski <kfyatek+publicgit@gmail.com>,
	dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
	nouveau@lists.freedesktop.org
Subject: Re: [PATCH v7 16/23] drm/probe-helper: Provide a TV get_modes helper
Date: Wed, 9 Nov 2022 16:41:33 +0100	[thread overview]
Message-ID: <20221109154133.koqhn6upwz6jd2oe@houat> (raw)
In-Reply-To: <a9c0380a-f538-1a19-fd27-983eea42b1b2@tronnes.org>

Hi Noralf,

On Mon, Nov 07, 2022 at 07:11:27PM +0100, Noralf Trønnes wrote:
> 
> 
> Den 07.11.2022 15.16, skrev Maxime Ripard:
> > From: Noralf Trønnes <noralf@tronnes.org>
> > 
> > Most of the TV connectors will need a similar get_modes implementation
> > that will, depending on the drivers' capabilities, register the 480i and
> > 576i modes.
> > 
> > That implementation will also need to set the preferred flag and order
> > the modes based on the driver and users preferrence.
> > 
> > This is especially important to guarantee that a userspace stack such as
> > Xorg can start and pick up the preferred mode while maintaining a
> > working output.
> > 
> > Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> > Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> > 
> > ---
> > Changes in v7:
> > - Used Noralf's implementation
> > 
> > Changes in v6:
> > - New patch
> > ---
> >  drivers/gpu/drm/drm_probe_helper.c | 97 ++++++++++++++++++++++++++++++++++++++
> >  include/drm/drm_probe_helper.h     |  1 +
> >  2 files changed, 98 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
> > index 2fc21df709bc..edb2e4c4530a 100644
> > --- a/drivers/gpu/drm/drm_probe_helper.c
> > +++ b/drivers/gpu/drm/drm_probe_helper.c
> > @@ -1147,3 +1147,100 @@ int drm_connector_helper_get_modes(struct drm_connector *connector)
> >  	return count;
> >  }
> >  EXPORT_SYMBOL(drm_connector_helper_get_modes);
> > +
> > +static bool tv_mode_supported(struct drm_connector *connector,
> > +			      enum drm_connector_tv_mode mode)
> > +{
> > +	struct drm_device *dev = connector->dev;
> > +	struct drm_property *property = dev->mode_config.tv_mode_property;
> > +
> > +	unsigned int i;
> > +
> > +	for (i = 0; i < property->num_values; i++)
> > +		if (property->values[i] == mode)
> > +			return true;
> > +
> > +	return false;
> > +}
> 
> This function is not used in the new implementation.
>
> I hope you have tested this patch since I didn't even compile test my
> implementation (probably should have said so...)

You nailed it ;)

I had tested it (but missed the warning), and added unit tests to make
sure it was behaving properly, and it did. I'll send the unit tests in
my next version.

Thanks
Maxime

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: David Airlie <airlied@linux.ie>,
	nouveau@lists.freedesktop.org,
	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>,
	dri-devel@lists.freedesktop.org,
	Phil Elwell <phil@raspberrypi.com>, Emma Anholt <emma@anholt.net>,
	Samuel Holland <samuel@sholland.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Chen-Yu Tsai <wens@csie.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Ben Skeggs <bskeggs@redhat.com>,
	linux-sunxi@lists.linux.dev, Daniel Vetter <daniel@ffwll.ch>,
	intel-gfx@lists.freedesktop.org,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Jani Nikula <jani.nikula@linux.intel.com>,
	Hans de Goede <hdegoede@redhat.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	linux-arm-kernel@lists.infradead.org,
	Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
	Dom Cobley <dom@raspberrypi.com>,
	linux-kernel@vger.kernel.org,
	Mateusz Kwiatkowski <kfyatek+publicgit@gmail.com>
Subject: Re: [Nouveau] [PATCH v7 16/23] drm/probe-helper: Provide a TV get_modes helper
Date: Wed, 9 Nov 2022 16:41:33 +0100	[thread overview]
Message-ID: <20221109154133.koqhn6upwz6jd2oe@houat> (raw)
In-Reply-To: <a9c0380a-f538-1a19-fd27-983eea42b1b2@tronnes.org>

Hi Noralf,

On Mon, Nov 07, 2022 at 07:11:27PM +0100, Noralf Trønnes wrote:
> 
> 
> Den 07.11.2022 15.16, skrev Maxime Ripard:
> > From: Noralf Trønnes <noralf@tronnes.org>
> > 
> > Most of the TV connectors will need a similar get_modes implementation
> > that will, depending on the drivers' capabilities, register the 480i and
> > 576i modes.
> > 
> > That implementation will also need to set the preferred flag and order
> > the modes based on the driver and users preferrence.
> > 
> > This is especially important to guarantee that a userspace stack such as
> > Xorg can start and pick up the preferred mode while maintaining a
> > working output.
> > 
> > Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> > Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> > 
> > ---
> > Changes in v7:
> > - Used Noralf's implementation
> > 
> > Changes in v6:
> > - New patch
> > ---
> >  drivers/gpu/drm/drm_probe_helper.c | 97 ++++++++++++++++++++++++++++++++++++++
> >  include/drm/drm_probe_helper.h     |  1 +
> >  2 files changed, 98 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
> > index 2fc21df709bc..edb2e4c4530a 100644
> > --- a/drivers/gpu/drm/drm_probe_helper.c
> > +++ b/drivers/gpu/drm/drm_probe_helper.c
> > @@ -1147,3 +1147,100 @@ int drm_connector_helper_get_modes(struct drm_connector *connector)
> >  	return count;
> >  }
> >  EXPORT_SYMBOL(drm_connector_helper_get_modes);
> > +
> > +static bool tv_mode_supported(struct drm_connector *connector,
> > +			      enum drm_connector_tv_mode mode)
> > +{
> > +	struct drm_device *dev = connector->dev;
> > +	struct drm_property *property = dev->mode_config.tv_mode_property;
> > +
> > +	unsigned int i;
> > +
> > +	for (i = 0; i < property->num_values; i++)
> > +		if (property->values[i] == mode)
> > +			return true;
> > +
> > +	return false;
> > +}
> 
> This function is not used in the new implementation.
>
> I hope you have tested this patch since I didn't even compile test my
> implementation (probably should have said so...)

You nailed it ;)

I had tested it (but missed the warning), and added unit tests to make
sure it was behaving properly, and it did. I'll send the unit tests in
my next version.

Thanks
Maxime

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: Karol Herbst <kherbst@redhat.com>,
	David Airlie <airlied@linux.ie>,
	nouveau@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	Phil Elwell <phil@raspberrypi.com>, Emma Anholt <emma@anholt.net>,
	Samuel Holland <samuel@sholland.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Chen-Yu Tsai <wens@csie.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Ben Skeggs <bskeggs@redhat.com>,
	linux-sunxi@lists.linux.dev, intel-gfx@lists.freedesktop.org,
	Hans de Goede <hdegoede@redhat.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	linux-arm-kernel@lists.infradead.org,
	Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
	Dom Cobley <dom@raspberrypi.com>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	linux-kernel@vger.kernel.org,
	Mateusz Kwiatkowski <kfyatek+publicgit@gmail.com>,
	Thomas Zimmermann <tzimmermann@suse.de>
Subject: Re: [PATCH v7 16/23] drm/probe-helper: Provide a TV get_modes helper
Date: Wed, 9 Nov 2022 16:41:33 +0100	[thread overview]
Message-ID: <20221109154133.koqhn6upwz6jd2oe@houat> (raw)
In-Reply-To: <a9c0380a-f538-1a19-fd27-983eea42b1b2@tronnes.org>

Hi Noralf,

On Mon, Nov 07, 2022 at 07:11:27PM +0100, Noralf Trønnes wrote:
> 
> 
> Den 07.11.2022 15.16, skrev Maxime Ripard:
> > From: Noralf Trønnes <noralf@tronnes.org>
> > 
> > Most of the TV connectors will need a similar get_modes implementation
> > that will, depending on the drivers' capabilities, register the 480i and
> > 576i modes.
> > 
> > That implementation will also need to set the preferred flag and order
> > the modes based on the driver and users preferrence.
> > 
> > This is especially important to guarantee that a userspace stack such as
> > Xorg can start and pick up the preferred mode while maintaining a
> > working output.
> > 
> > Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> > Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> > 
> > ---
> > Changes in v7:
> > - Used Noralf's implementation
> > 
> > Changes in v6:
> > - New patch
> > ---
> >  drivers/gpu/drm/drm_probe_helper.c | 97 ++++++++++++++++++++++++++++++++++++++
> >  include/drm/drm_probe_helper.h     |  1 +
> >  2 files changed, 98 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
> > index 2fc21df709bc..edb2e4c4530a 100644
> > --- a/drivers/gpu/drm/drm_probe_helper.c
> > +++ b/drivers/gpu/drm/drm_probe_helper.c
> > @@ -1147,3 +1147,100 @@ int drm_connector_helper_get_modes(struct drm_connector *connector)
> >  	return count;
> >  }
> >  EXPORT_SYMBOL(drm_connector_helper_get_modes);
> > +
> > +static bool tv_mode_supported(struct drm_connector *connector,
> > +			      enum drm_connector_tv_mode mode)
> > +{
> > +	struct drm_device *dev = connector->dev;
> > +	struct drm_property *property = dev->mode_config.tv_mode_property;
> > +
> > +	unsigned int i;
> > +
> > +	for (i = 0; i < property->num_values; i++)
> > +		if (property->values[i] == mode)
> > +			return true;
> > +
> > +	return false;
> > +}
> 
> This function is not used in the new implementation.
>
> I hope you have tested this patch since I didn't even compile test my
> implementation (probably should have said so...)

You nailed it ;)

I had tested it (but missed the warning), and added unit tests to make
sure it was behaving properly, and it did. I'll send the unit tests in
my next version.

Thanks
Maxime

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: Karol Herbst <kherbst@redhat.com>,
	David Airlie <airlied@linux.ie>,
	nouveau@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	Phil Elwell <phil@raspberrypi.com>, Emma Anholt <emma@anholt.net>,
	Samuel Holland <samuel@sholland.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Chen-Yu Tsai <wens@csie.org>,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Ben Skeggs <bskeggs@redhat.com>,
	linux-sunxi@lists.linux.dev, Daniel Vetter <daniel@ffwll.ch>,
	intel-gfx@lists.freedesktop.org,
	Hans de Goede <hdegoede@redhat.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	linux-arm-kernel@lists.infradead.org,
	Dom Cobley <dom@raspberrypi.com>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	linux-kernel@vger.kernel.org,
	Mateusz Kwiatkowski <kfyatek+publicgit@gmail.com>,
	Thomas Zimmermann <tzimmermann@suse.de>
Subject: Re: [Intel-gfx] [PATCH v7 16/23] drm/probe-helper: Provide a TV get_modes helper
Date: Wed, 9 Nov 2022 16:41:33 +0100	[thread overview]
Message-ID: <20221109154133.koqhn6upwz6jd2oe@houat> (raw)
In-Reply-To: <a9c0380a-f538-1a19-fd27-983eea42b1b2@tronnes.org>

Hi Noralf,

On Mon, Nov 07, 2022 at 07:11:27PM +0100, Noralf Trønnes wrote:
> 
> 
> Den 07.11.2022 15.16, skrev Maxime Ripard:
> > From: Noralf Trønnes <noralf@tronnes.org>
> > 
> > Most of the TV connectors will need a similar get_modes implementation
> > that will, depending on the drivers' capabilities, register the 480i and
> > 576i modes.
> > 
> > That implementation will also need to set the preferred flag and order
> > the modes based on the driver and users preferrence.
> > 
> > This is especially important to guarantee that a userspace stack such as
> > Xorg can start and pick up the preferred mode while maintaining a
> > working output.
> > 
> > Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> > Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> > 
> > ---
> > Changes in v7:
> > - Used Noralf's implementation
> > 
> > Changes in v6:
> > - New patch
> > ---
> >  drivers/gpu/drm/drm_probe_helper.c | 97 ++++++++++++++++++++++++++++++++++++++
> >  include/drm/drm_probe_helper.h     |  1 +
> >  2 files changed, 98 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
> > index 2fc21df709bc..edb2e4c4530a 100644
> > --- a/drivers/gpu/drm/drm_probe_helper.c
> > +++ b/drivers/gpu/drm/drm_probe_helper.c
> > @@ -1147,3 +1147,100 @@ int drm_connector_helper_get_modes(struct drm_connector *connector)
> >  	return count;
> >  }
> >  EXPORT_SYMBOL(drm_connector_helper_get_modes);
> > +
> > +static bool tv_mode_supported(struct drm_connector *connector,
> > +			      enum drm_connector_tv_mode mode)
> > +{
> > +	struct drm_device *dev = connector->dev;
> > +	struct drm_property *property = dev->mode_config.tv_mode_property;
> > +
> > +	unsigned int i;
> > +
> > +	for (i = 0; i < property->num_values; i++)
> > +		if (property->values[i] == mode)
> > +			return true;
> > +
> > +	return false;
> > +}
> 
> This function is not used in the new implementation.
>
> I hope you have tested this patch since I didn't even compile test my
> implementation (probably should have said so...)

You nailed it ;)

I had tested it (but missed the warning), and added unit tests to make
sure it was behaving properly, and it did. I'll send the unit tests in
my next version.

Thanks
Maxime

WARNING: multiple messages have this Message-ID (diff)
From: Maxime Ripard <maxime@cerno.tech>
To: "Noralf Trønnes" <noralf@tronnes.org>
Cc: Jani Nikula <jani.nikula@linux.intel.com>,
	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>,
	Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>,
	Ben Skeggs <bskeggs@redhat.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	Samuel Holland <samuel@sholland.org>,
	Jernej Skrabec <jernej.skrabec@gmail.com>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Emma Anholt <emma@anholt.net>, Karol Herbst <kherbst@redhat.com>,
	Daniel Vetter <daniel@ffwll.ch>, Chen-Yu Tsai <wens@csie.org>,
	Lyude Paul <lyude@redhat.com>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@linux.ie>,
	Phil Elwell <phil@raspberrypi.com>,
	Hans de Goede <hdegoede@redhat.com>,
	linux-sunxi@lists.linux.dev, linux-kernel@vger.kernel.org,
	Geert Uytterhoeven <geert@linux-m68k.org>,
	Dave Stevenson <dave.stevenson@raspberrypi.com>,
	linux-arm-kernel@lists.infradead.org,
	Dom Cobley <dom@raspberrypi.com>,
	Mateusz Kwiatkowski <kfyatek+publicgit@gmail.com>,
	dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
	nouveau@lists.freedesktop.org
Subject: Re: [PATCH v7 16/23] drm/probe-helper: Provide a TV get_modes helper
Date: Wed, 9 Nov 2022 16:41:33 +0100	[thread overview]
Message-ID: <20221109154133.koqhn6upwz6jd2oe@houat> (raw)
In-Reply-To: <a9c0380a-f538-1a19-fd27-983eea42b1b2@tronnes.org>

Hi Noralf,

On Mon, Nov 07, 2022 at 07:11:27PM +0100, Noralf Trønnes wrote:
> 
> 
> Den 07.11.2022 15.16, skrev Maxime Ripard:
> > From: Noralf Trønnes <noralf@tronnes.org>
> > 
> > Most of the TV connectors will need a similar get_modes implementation
> > that will, depending on the drivers' capabilities, register the 480i and
> > 576i modes.
> > 
> > That implementation will also need to set the preferred flag and order
> > the modes based on the driver and users preferrence.
> > 
> > This is especially important to guarantee that a userspace stack such as
> > Xorg can start and pick up the preferred mode while maintaining a
> > working output.
> > 
> > Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
> > Signed-off-by: Maxime Ripard <maxime@cerno.tech>
> > 
> > ---
> > Changes in v7:
> > - Used Noralf's implementation
> > 
> > Changes in v6:
> > - New patch
> > ---
> >  drivers/gpu/drm/drm_probe_helper.c | 97 ++++++++++++++++++++++++++++++++++++++
> >  include/drm/drm_probe_helper.h     |  1 +
> >  2 files changed, 98 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/drm_probe_helper.c b/drivers/gpu/drm/drm_probe_helper.c
> > index 2fc21df709bc..edb2e4c4530a 100644
> > --- a/drivers/gpu/drm/drm_probe_helper.c
> > +++ b/drivers/gpu/drm/drm_probe_helper.c
> > @@ -1147,3 +1147,100 @@ int drm_connector_helper_get_modes(struct drm_connector *connector)
> >  	return count;
> >  }
> >  EXPORT_SYMBOL(drm_connector_helper_get_modes);
> > +
> > +static bool tv_mode_supported(struct drm_connector *connector,
> > +			      enum drm_connector_tv_mode mode)
> > +{
> > +	struct drm_device *dev = connector->dev;
> > +	struct drm_property *property = dev->mode_config.tv_mode_property;
> > +
> > +	unsigned int i;
> > +
> > +	for (i = 0; i < property->num_values; i++)
> > +		if (property->values[i] == mode)
> > +			return true;
> > +
> > +	return false;
> > +}
> 
> This function is not used in the new implementation.
>
> I hope you have tested this patch since I didn't even compile test my
> implementation (probably should have said so...)

You nailed it ;)

I had tested it (but missed the warning), and added unit tests to make
sure it was behaving properly, and it did. I'll send the unit tests in
my next version.

Thanks
Maxime

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2022-11-09 15:41 UTC|newest]

Thread overview: 219+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-07 14:16 [PATCH v7 00/23] drm: Analog TV Improvements Maxime Ripard
2022-11-07 14:16 ` Maxime Ripard
2022-11-07 14:16 ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16 ` Maxime Ripard
2022-11-07 14:16 ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 01/23] drm/tests: Add Kunit Helpers Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 02/23] drm/connector: Rename legacy TV property Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 03/23] drm/connector: Only register TV mode property if present Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 04/23] drm/connector: Rename drm_mode_create_tv_properties Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 05/23] drm/connector: Add TV standard property Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 06/23] drm/modes: Add a function to generate analog display modes Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-08 13:28   ` Lukas Satin
2022-11-08 13:28     ` [Intel-gfx] " Lukas Satin
2022-11-08 13:28     ` Lukas Satin
2022-11-08 21:51     ` Mateusz Kwiatkowski
2022-11-08 21:51       ` Mateusz Kwiatkowski
2022-11-08 21:51       ` [Intel-gfx] " Mateusz Kwiatkowski
2022-11-08 21:51       ` Mateusz Kwiatkowski
2022-11-08 21:51       ` Mateusz Kwiatkowski
2022-11-07 14:16 ` [PATCH v7 07/23] drm/client: Add some tests for drm_connector_pick_cmdline_mode() Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 08/23] drm/modes: Move named modes parsing to a separate function Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 09/23] drm/modes: Switch to named mode descriptors Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 10/23] drm/modes: Fill drm_cmdline mode from named modes Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 11/23] drm/connector: Add pixel clock to cmdline mode Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 12/23] drm/connector: Add a function to lookup a TV mode by its name Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 13/23] drm/modes: Introduce the tv_mode property as a command-line option Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 14/23] drm/modes: Properly generate a drm_display_mode from a named mode Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 17:49   ` Noralf Trønnes
2022-11-07 17:49     ` Noralf Trønnes
2022-11-07 17:49     ` [Nouveau] " Noralf Trønnes
2022-11-07 17:49     ` [Intel-gfx] " Noralf Trønnes
2022-11-07 17:49     ` Noralf Trønnes
2022-11-08  9:40     ` Noralf Trønnes
2022-11-08  9:40       ` Noralf Trønnes
2022-11-08  9:40       ` [Intel-gfx] " Noralf Trønnes
2022-11-08  9:40       ` Noralf Trønnes
2022-11-08  9:40       ` [Nouveau] " Noralf Trønnes
2022-11-10 10:36       ` Maxime Ripard
2022-11-10 10:36         ` Maxime Ripard
2022-11-10 10:36         ` [Intel-gfx] " Maxime Ripard
2022-11-10 10:36         ` Maxime Ripard
2022-11-10 10:36         ` [Nouveau] " Maxime Ripard
2022-11-10  9:31     ` Maxime Ripard
2022-11-10  9:31       ` Maxime Ripard
2022-11-10  9:31       ` [Intel-gfx] " Maxime Ripard
2022-11-10  9:31       ` Maxime Ripard
2022-11-10  9:31       ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 15/23] drm/modes: Introduce more named modes Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 18:03   ` Noralf Trønnes
2022-11-07 18:03     ` Noralf Trønnes
2022-11-07 18:03     ` Noralf Trønnes
2022-11-07 18:03     ` [Intel-gfx] " Noralf Trønnes
2022-11-07 18:03     ` Noralf Trønnes
2022-11-08  9:38     ` Noralf Trønnes
2022-11-08  9:38       ` [Intel-gfx] " Noralf Trønnes
2022-11-08  9:38       ` Noralf Trønnes
2022-11-08  9:38       ` Noralf Trønnes
2022-11-08  9:38       ` [Nouveau] " Noralf Trønnes
2022-11-08 21:27       ` Mateusz Kwiatkowski
2022-11-08 21:27         ` Mateusz Kwiatkowski
2022-11-08 21:27         ` [Intel-gfx] " Mateusz Kwiatkowski
2022-11-08 21:27         ` Mateusz Kwiatkowski
2022-11-08 21:27         ` [Nouveau] " Mateusz Kwiatkowski
2022-11-09 11:18         ` Maxime Ripard
2022-11-09 11:18           ` Maxime Ripard
2022-11-09 11:18           ` [Intel-gfx] " Maxime Ripard
2022-11-09 11:18           ` Maxime Ripard
2022-11-09 11:18           ` [Nouveau] " Maxime Ripard
2022-11-09 14:09   ` Noralf Trønnes
2022-11-09 14:09     ` Noralf Trønnes
2022-11-09 14:09     ` [Intel-gfx] " Noralf Trønnes
2022-11-09 14:09     ` Noralf Trønnes
2022-11-09 14:09     ` [Nouveau] " Noralf Trønnes
2022-11-07 14:16 ` [PATCH v7 16/23] drm/probe-helper: Provide a TV get_modes helper Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 18:11   ` Noralf Trønnes
2022-11-07 18:11     ` Noralf Trønnes
2022-11-07 18:11     ` [Intel-gfx] " Noralf Trønnes
2022-11-07 18:11     ` Noralf Trønnes
2022-11-07 18:11     ` [Nouveau] " Noralf Trønnes
2022-11-09 15:41     ` Maxime Ripard [this message]
2022-11-09 15:41       ` Maxime Ripard
2022-11-09 15:41       ` [Intel-gfx] " Maxime Ripard
2022-11-09 15:41       ` Maxime Ripard
2022-11-09 15:41       ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 17/23] drm/atomic-helper: Add a TV properties reset helper Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 18/23] drm/atomic-helper: Add an analog TV atomic_check implementation Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 19/23] drm/vc4: vec: Use TV Reset implementation Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 20/23] drm/vc4: vec: Check for VEC output constraints Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 21/23] drm/vc4: vec: Convert to the new TV mode property Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 22/23] drm/vc4: vec: Add support for more analog TV standards Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-08 13:17   ` [Nouveau] " Lukas Satin
2022-11-08 13:17     ` [Intel-gfx] " Lukas Satin
2022-11-08 13:17     ` Lukas Satin
2022-11-08 22:16     ` Mateusz Kwiatkowski
2022-11-08 22:16       ` Mateusz Kwiatkowski
2022-11-08 22:16       ` [Intel-gfx] " Mateusz Kwiatkowski
2022-11-08 22:16       ` Mateusz Kwiatkowski
2022-11-08 22:16       ` Mateusz Kwiatkowski
2022-11-09  1:15   ` Mateusz Kwiatkowski
2022-11-09  1:15     ` Mateusz Kwiatkowski
2022-11-09  1:15     ` [Intel-gfx] " Mateusz Kwiatkowski
2022-11-09  1:15     ` Mateusz Kwiatkowski
2022-11-09  1:15     ` [Nouveau] " Mateusz Kwiatkowski
2022-11-09 16:55     ` Lukas Satin
2022-11-09 16:55       ` [Intel-gfx] " Lukas Satin
2022-11-09 16:55       ` Lukas Satin
2022-11-10 10:39       ` Maxime Ripard
2022-11-10 10:39         ` Maxime Ripard
2022-11-10 10:39         ` Maxime Ripard
2022-11-10 10:39         ` [Intel-gfx] " Maxime Ripard
2022-11-10 10:39         ` Maxime Ripard
2022-11-10 10:57     ` Maxime Ripard
2022-11-10 10:57       ` [Intel-gfx] " Maxime Ripard
2022-11-10 10:57       ` Maxime Ripard
2022-11-10 10:57       ` Maxime Ripard
2022-11-10 10:57       ` [Nouveau] " Maxime Ripard
2022-11-07 14:16 ` [PATCH v7 23/23] drm/sun4i: tv: Convert to the new TV mode property Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Intel-gfx] " Maxime Ripard
2022-11-07 14:16   ` Maxime Ripard
2022-11-07 14:16   ` [Nouveau] " Maxime Ripard
2022-11-07 18:57 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm: Analog TV Improvements (rev7) Patchwork
2022-11-08 13:20 ` [Nouveau] [PATCH v7 00/23] drm: Analog TV Improvements Lukas Satin
2022-11-08 13:20   ` [Intel-gfx] " Lukas Satin
2022-11-08 13:20   ` Lukas Satin
2022-11-08 13:42   ` Geert Uytterhoeven
2022-11-08 13:42     ` Geert Uytterhoeven
2022-11-08 13:42     ` Geert Uytterhoeven
2022-11-08 13:42     ` Geert Uytterhoeven
2022-11-08 13:42     ` [Intel-gfx] " Geert Uytterhoeven
2022-11-08 22:27 ` [Intel-gfx] ✗ Fi.CI.BUILD: failure for drm: Analog TV Improvements (rev8) 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=20221109154133.koqhn6upwz6jd2oe@houat \
    --to=maxime@cerno.tech \
    --cc=airlied@linux.ie \
    --cc=bskeggs@redhat.com \
    --cc=daniel@ffwll.ch \
    --cc=dave.stevenson@raspberrypi.com \
    --cc=dom@raspberrypi.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=emma@anholt.net \
    --cc=geert@linux-m68k.org \
    --cc=hdegoede@redhat.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=jernej.skrabec@gmail.com \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=kfyatek+publicgit@gmail.com \
    --cc=kherbst@redhat.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sunxi@lists.linux.dev \
    --cc=lyude@redhat.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=noralf@tronnes.org \
    --cc=nouveau@lists.freedesktop.org \
    --cc=phil@raspberrypi.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=samuel@sholland.org \
    --cc=tvrtko.ursulin@linux.intel.com \
    --cc=tzimmermann@suse.de \
    --cc=wens@csie.org \
    /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.