All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Sam Ravnborg <sam@ravnborg.org>, Dan.Sneddon@microchip.com
Cc: daniel@ffwll.ch, airlied@linux.ie, alexander.deucher@amd.com,
	christian.koenig@amd.com, liviu.dudau@arm.com,
	brian.starkey@arm.com, bbrezillon@kernel.org,
	Nicolas.Ferre@microchip.com, maarten.lankhorst@linux.intel.com,
	mripard@kernel.org, stefan@agner.ch, alison.wang@nxp.com,
	patrik.r.jakobsson@gmail.com, anitha.chrisanthus@intel.com,
	robdclark@gmail.com, edmund.j.dea@intel.com, sean@poorly.run,
	shawnguo@kernel.org, s.hauer@pengutronix.de,
	kernel@pengutronix.de, jyri.sarha@iki.fi, tomba@kernel.org,
	amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
	linux-arm-kernel@lists.infradead.org,
	linux-arm-msm@vger.kernel.org, freedreno@lists.freedesktop.org
Subject: Re: [PATCH 03/14] drm/atmel-hlcdc: Convert to Linux IRQ interfaces
Date: Thu, 29 Jul 2021 21:21:14 +0200	[thread overview]
Message-ID: <7067cca1-c8a4-347c-829a-accdce8c6aef@suse.de> (raw)
In-Reply-To: <1df22406-2e91-c15a-49dc-1cf33522a142@suse.de>


[-- Attachment #1.1: Type: text/plain, Size: 2298 bytes --]

Hi

Am 29.07.21 um 21:18 schrieb Thomas Zimmermann:
> Hi
> 
> Am 28.07.21 um 22:11 schrieb Sam Ravnborg:
>> Hi Dan,
>>
>>>>
>>>> I think I got it - we need to set irq_enabled to true.
>>>> The documentation says so:
>>>> "
>>>>            * @irq_enabled:
>>>>            *
>>>>            * Indicates that interrupt handling is enabled, 
>>>> specifically vblank
>>>>            * handling. Drivers which don't use drm_irq_install() 
>>>> need to set this
>>>>            * to true manually.
>>>> "
>>>>
>>>> Can you try to add the following line:
>>>>
>>>>
>>>> +static int atmel_hlcdc_dc_irq_install(struct drm_device *dev, 
>>>> unsigned int irq)
>>>> +{
>>>> +       int ret;
>>>> +
>>>> +       if (irq == IRQ_NOTCONNECTED)
>>>> +               return -ENOTCONN;
>>>> +
>>>>
>>>>           dev->irq_enabled = true;                <= THIS LINE
>>>>
>>>>
>>>> +       atmel_hlcdc_dc_irq_disable(dev);
>>>> +
>>>> +       ret = request_irq(irq, atmel_hlcdc_dc_irq_handler, 0, 
>>>> dev->driver->name, dev);
>>>> +       if (ret)
>>>> +               return ret;
>>>>
>>>> I hope this fixes it.
>>>
>>> It does!  With the irq_enabled line added everything is looking good.
> 
> Are you sure, you're testing with the latest drm-misc-next or drm-tip? 
> Because using irq_enabled is deprecated and the flag was recently 
> replaced by commit 1e4cd78ed493 ("drm: Don't test for IRQ support in 
> VBLANK ioctls").

For reference, the cover letter lists

base-commit: 2bda1ca4d4acb4892556fec3a7ea1f02afcd40bb

which is a recent drm-tip created on July 25.

Best regards
Thomas

> 
> Best regards
> Thomas
> 
>>
>> Great, thanks for testing.
>>
>> Thomas - I assume you will do a re-spin and there is likely some fixes
>> for the applied IRQ conversions too.
>>
>> Note - irq_enabled must be cleared if request_irq fails. I did not
>> include this in the testing here.
>>
>>     Sam
>>
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Sam Ravnborg <sam@ravnborg.org>, Dan.Sneddon@microchip.com
Cc: airlied@linux.ie, liviu.dudau@arm.com, stefan@agner.ch,
	amd-gfx@lists.freedesktop.org, anitha.chrisanthus@intel.com,
	patrik.r.jakobsson@gmail.com, linux-arm-msm@vger.kernel.org,
	freedreno@lists.freedesktop.org, daniel@ffwll.ch,
	edmund.j.dea@intel.com, s.hauer@pengutronix.de,
	alison.wang@nxp.com, maarten.lankhorst@linux.intel.com,
	mripard@kernel.org, dri-devel@lists.freedesktop.org,
	sean@poorly.run, linux-arm-kernel@lists.infradead.org,
	tomba@kernel.org, bbrezillon@kernel.org, jyri.sarha@iki.fi,
	christian.koenig@amd.com, robdclark@gmail.com,
	kernel@pengutronix.de, alexander.deucher@amd.com,
	shawnguo@kernel.org, brian.starkey@arm.com
Subject: Re: [PATCH 03/14] drm/atmel-hlcdc: Convert to Linux IRQ interfaces
Date: Thu, 29 Jul 2021 21:21:14 +0200	[thread overview]
Message-ID: <7067cca1-c8a4-347c-829a-accdce8c6aef@suse.de> (raw)
In-Reply-To: <1df22406-2e91-c15a-49dc-1cf33522a142@suse.de>


[-- Attachment #1.1.1: Type: text/plain, Size: 2298 bytes --]

Hi

Am 29.07.21 um 21:18 schrieb Thomas Zimmermann:
> Hi
> 
> Am 28.07.21 um 22:11 schrieb Sam Ravnborg:
>> Hi Dan,
>>
>>>>
>>>> I think I got it - we need to set irq_enabled to true.
>>>> The documentation says so:
>>>> "
>>>>            * @irq_enabled:
>>>>            *
>>>>            * Indicates that interrupt handling is enabled, 
>>>> specifically vblank
>>>>            * handling. Drivers which don't use drm_irq_install() 
>>>> need to set this
>>>>            * to true manually.
>>>> "
>>>>
>>>> Can you try to add the following line:
>>>>
>>>>
>>>> +static int atmel_hlcdc_dc_irq_install(struct drm_device *dev, 
>>>> unsigned int irq)
>>>> +{
>>>> +       int ret;
>>>> +
>>>> +       if (irq == IRQ_NOTCONNECTED)
>>>> +               return -ENOTCONN;
>>>> +
>>>>
>>>>           dev->irq_enabled = true;                <= THIS LINE
>>>>
>>>>
>>>> +       atmel_hlcdc_dc_irq_disable(dev);
>>>> +
>>>> +       ret = request_irq(irq, atmel_hlcdc_dc_irq_handler, 0, 
>>>> dev->driver->name, dev);
>>>> +       if (ret)
>>>> +               return ret;
>>>>
>>>> I hope this fixes it.
>>>
>>> It does!  With the irq_enabled line added everything is looking good.
> 
> Are you sure, you're testing with the latest drm-misc-next or drm-tip? 
> Because using irq_enabled is deprecated and the flag was recently 
> replaced by commit 1e4cd78ed493 ("drm: Don't test for IRQ support in 
> VBLANK ioctls").

For reference, the cover letter lists

base-commit: 2bda1ca4d4acb4892556fec3a7ea1f02afcd40bb

which is a recent drm-tip created on July 25.

Best regards
Thomas

> 
> Best regards
> Thomas
> 
>>
>> Great, thanks for testing.
>>
>> Thomas - I assume you will do a re-spin and there is likely some fixes
>> for the applied IRQ conversions too.
>>
>> Note - irq_enabled must be cleared if request_irq fails. I did not
>> include this in the testing here.
>>
>>     Sam
>>
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

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

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Sam Ravnborg <sam@ravnborg.org>, Dan.Sneddon@microchip.com
Cc: airlied@linux.ie, liviu.dudau@arm.com,
	amd-gfx@lists.freedesktop.org, anitha.chrisanthus@intel.com,
	linux-arm-msm@vger.kernel.org, freedreno@lists.freedesktop.org,
	edmund.j.dea@intel.com, s.hauer@pengutronix.de,
	alison.wang@nxp.com, dri-devel@lists.freedesktop.org,
	sean@poorly.run, linux-arm-kernel@lists.infradead.org,
	tomba@kernel.org, bbrezillon@kernel.org, jyri.sarha@iki.fi,
	Nicolas.Ferre@microchip.com, christian.koenig@amd.com,
	kernel@pengutronix.de, alexander.deucher@amd.com,
	shawnguo@kernel.org
Subject: Re: [PATCH 03/14] drm/atmel-hlcdc: Convert to Linux IRQ interfaces
Date: Thu, 29 Jul 2021 21:21:14 +0200	[thread overview]
Message-ID: <7067cca1-c8a4-347c-829a-accdce8c6aef@suse.de> (raw)
In-Reply-To: <1df22406-2e91-c15a-49dc-1cf33522a142@suse.de>


[-- Attachment #1.1: Type: text/plain, Size: 2298 bytes --]

Hi

Am 29.07.21 um 21:18 schrieb Thomas Zimmermann:
> Hi
> 
> Am 28.07.21 um 22:11 schrieb Sam Ravnborg:
>> Hi Dan,
>>
>>>>
>>>> I think I got it - we need to set irq_enabled to true.
>>>> The documentation says so:
>>>> "
>>>>            * @irq_enabled:
>>>>            *
>>>>            * Indicates that interrupt handling is enabled, 
>>>> specifically vblank
>>>>            * handling. Drivers which don't use drm_irq_install() 
>>>> need to set this
>>>>            * to true manually.
>>>> "
>>>>
>>>> Can you try to add the following line:
>>>>
>>>>
>>>> +static int atmel_hlcdc_dc_irq_install(struct drm_device *dev, 
>>>> unsigned int irq)
>>>> +{
>>>> +       int ret;
>>>> +
>>>> +       if (irq == IRQ_NOTCONNECTED)
>>>> +               return -ENOTCONN;
>>>> +
>>>>
>>>>           dev->irq_enabled = true;                <= THIS LINE
>>>>
>>>>
>>>> +       atmel_hlcdc_dc_irq_disable(dev);
>>>> +
>>>> +       ret = request_irq(irq, atmel_hlcdc_dc_irq_handler, 0, 
>>>> dev->driver->name, dev);
>>>> +       if (ret)
>>>> +               return ret;
>>>>
>>>> I hope this fixes it.
>>>
>>> It does!  With the irq_enabled line added everything is looking good.
> 
> Are you sure, you're testing with the latest drm-misc-next or drm-tip? 
> Because using irq_enabled is deprecated and the flag was recently 
> replaced by commit 1e4cd78ed493 ("drm: Don't test for IRQ support in 
> VBLANK ioctls").

For reference, the cover letter lists

base-commit: 2bda1ca4d4acb4892556fec3a7ea1f02afcd40bb

which is a recent drm-tip created on July 25.

Best regards
Thomas

> 
> Best regards
> Thomas
> 
>>
>> Great, thanks for testing.
>>
>> Thomas - I assume you will do a re-spin and there is likely some fixes
>> for the applied IRQ conversions too.
>>
>> Note - irq_enabled must be cleared if request_irq fails. I did not
>> include this in the testing here.
>>
>>     Sam
>>
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

WARNING: multiple messages have this Message-ID (diff)
From: Thomas Zimmermann <tzimmermann@suse.de>
To: Sam Ravnborg <sam@ravnborg.org>, Dan.Sneddon@microchip.com
Cc: airlied@linux.ie, liviu.dudau@arm.com, stefan@agner.ch,
	amd-gfx@lists.freedesktop.org, anitha.chrisanthus@intel.com,
	patrik.r.jakobsson@gmail.com, linux-arm-msm@vger.kernel.org,
	freedreno@lists.freedesktop.org, daniel@ffwll.ch,
	edmund.j.dea@intel.com, s.hauer@pengutronix.de,
	alison.wang@nxp.com, maarten.lankhorst@linux.intel.com,
	mripard@kernel.org, dri-devel@lists.freedesktop.org,
	sean@poorly.run, linux-arm-kernel@lists.infradead.org,
	tomba@kernel.org, bbrezillon@kernel.org, jyri.sarha@iki.fi,
	Nicolas.Ferre@microchip.com, christian.koenig@amd.com,
	robdclark@gmail.com, kernel@pengutronix.de,
	alexander.deucher@amd.com, shawnguo@kernel.org,
	brian.starkey@arm.com
Subject: Re: [PATCH 03/14] drm/atmel-hlcdc: Convert to Linux IRQ interfaces
Date: Thu, 29 Jul 2021 21:21:14 +0200	[thread overview]
Message-ID: <7067cca1-c8a4-347c-829a-accdce8c6aef@suse.de> (raw)
In-Reply-To: <1df22406-2e91-c15a-49dc-1cf33522a142@suse.de>


[-- Attachment #1.1.1: Type: text/plain, Size: 2298 bytes --]

Hi

Am 29.07.21 um 21:18 schrieb Thomas Zimmermann:
> Hi
> 
> Am 28.07.21 um 22:11 schrieb Sam Ravnborg:
>> Hi Dan,
>>
>>>>
>>>> I think I got it - we need to set irq_enabled to true.
>>>> The documentation says so:
>>>> "
>>>>            * @irq_enabled:
>>>>            *
>>>>            * Indicates that interrupt handling is enabled, 
>>>> specifically vblank
>>>>            * handling. Drivers which don't use drm_irq_install() 
>>>> need to set this
>>>>            * to true manually.
>>>> "
>>>>
>>>> Can you try to add the following line:
>>>>
>>>>
>>>> +static int atmel_hlcdc_dc_irq_install(struct drm_device *dev, 
>>>> unsigned int irq)
>>>> +{
>>>> +       int ret;
>>>> +
>>>> +       if (irq == IRQ_NOTCONNECTED)
>>>> +               return -ENOTCONN;
>>>> +
>>>>
>>>>           dev->irq_enabled = true;                <= THIS LINE
>>>>
>>>>
>>>> +       atmel_hlcdc_dc_irq_disable(dev);
>>>> +
>>>> +       ret = request_irq(irq, atmel_hlcdc_dc_irq_handler, 0, 
>>>> dev->driver->name, dev);
>>>> +       if (ret)
>>>> +               return ret;
>>>>
>>>> I hope this fixes it.
>>>
>>> It does!  With the irq_enabled line added everything is looking good.
> 
> Are you sure, you're testing with the latest drm-misc-next or drm-tip? 
> Because using irq_enabled is deprecated and the flag was recently 
> replaced by commit 1e4cd78ed493 ("drm: Don't test for IRQ support in 
> VBLANK ioctls").

For reference, the cover letter lists

base-commit: 2bda1ca4d4acb4892556fec3a7ea1f02afcd40bb

which is a recent drm-tip created on July 25.

Best regards
Thomas

> 
> Best regards
> Thomas
> 
>>
>> Great, thanks for testing.
>>
>> Thomas - I assume you will do a re-spin and there is likely some fixes
>> for the applied IRQ conversions too.
>>
>> Note - irq_enabled must be cleared if request_irq fails. I did not
>> include this in the testing here.
>>
>>     Sam
>>
> 

-- 
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Maxfeldstr. 5, 90409 Nürnberg, Germany
(HRB 36809, AG Nürnberg)
Geschäftsführer: Felix Imendörffer


[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]

[-- Attachment #2: Type: text/plain, Size: 154 bytes --]

_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

  reply	other threads:[~2021-07-29 19:21 UTC|newest]

Thread overview: 172+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-27 18:27 [PATCH 00/14] drm: Make DRM's IRQ helpers legacy Thomas Zimmermann
2021-07-27 18:27 ` Thomas Zimmermann
2021-07-27 18:27 ` Thomas Zimmermann
2021-07-27 18:27 ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 01/14] drm/amdgpu: Convert to Linux IRQ interfaces Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-28 10:27   ` Christian König
2021-07-28 10:27     ` Christian König
2021-07-28 10:27     ` Christian König
2021-07-28 10:27     ` Christian König
2021-07-28 14:03     ` Alex Deucher
2021-07-28 14:03       ` Alex Deucher
2021-07-28 14:03       ` Alex Deucher
2021-07-28 14:03       ` Alex Deucher
2021-08-02  8:43       ` Thomas Zimmermann
2021-08-02  8:43         ` Thomas Zimmermann
2021-08-02  8:43         ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 02/14] drm/arm/hdlcd: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-28 13:31   ` Sam Ravnborg
2021-07-28 13:31     ` Sam Ravnborg
2021-07-28 13:31     ` Sam Ravnborg
2021-07-28 18:15     ` Thomas Zimmermann
2021-07-28 18:15       ` Thomas Zimmermann
2021-07-28 18:15       ` Thomas Zimmermann
2021-07-28 18:15       ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 03/14] drm/atmel-hlcdc: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-28 14:00   ` Sam Ravnborg
2021-07-28 14:00     ` Sam Ravnborg
2021-07-28 14:00     ` Sam Ravnborg
2021-07-28 15:11     ` Dan.Sneddon
2021-07-28 15:11       ` Dan.Sneddon
2021-07-28 15:11       ` Dan.Sneddon
2021-07-28 15:11       ` Dan.Sneddon
2021-07-28 15:44       ` Sam Ravnborg
2021-07-28 15:44         ` Sam Ravnborg
2021-07-28 15:44         ` Sam Ravnborg
2021-07-28 17:50         ` Dan.Sneddon
2021-07-28 17:50           ` Dan.Sneddon
2021-07-28 17:50           ` Dan.Sneddon
2021-07-28 17:50           ` Dan.Sneddon
2021-07-28 18:11           ` Sam Ravnborg
2021-07-28 18:11             ` Sam Ravnborg
2021-07-28 18:11             ` Sam Ravnborg
2021-07-28 18:17             ` Thomas Zimmermann
2021-07-28 18:17               ` Thomas Zimmermann
2021-07-28 18:17               ` Thomas Zimmermann
2021-07-28 18:17               ` Thomas Zimmermann
2021-07-28 18:46               ` Dan.Sneddon
2021-07-28 18:46                 ` Dan.Sneddon
2021-07-28 18:46                 ` Dan.Sneddon
2021-07-28 18:46                 ` Dan.Sneddon
2021-07-28 19:08                 ` Sam Ravnborg
2021-07-28 19:08                   ` Sam Ravnborg
2021-07-28 19:08                   ` Sam Ravnborg
2021-07-28 19:19                   ` Dan.Sneddon
2021-07-28 19:19                     ` Dan.Sneddon
2021-07-28 19:19                     ` Dan.Sneddon
2021-07-28 19:19                     ` Dan.Sneddon
2021-07-28 20:11                     ` Sam Ravnborg
2021-07-28 20:11                       ` Sam Ravnborg
2021-07-28 20:11                       ` Sam Ravnborg
2021-07-29 19:18                       ` Thomas Zimmermann
2021-07-29 19:18                         ` Thomas Zimmermann
2021-07-29 19:18                         ` Thomas Zimmermann
2021-07-29 19:18                         ` Thomas Zimmermann
2021-07-29 19:21                         ` Thomas Zimmermann [this message]
2021-07-29 19:21                           ` Thomas Zimmermann
2021-07-29 19:21                           ` Thomas Zimmermann
2021-07-29 19:21                           ` Thomas Zimmermann
2021-07-29 19:24                         ` Dan.Sneddon
2021-07-29 19:24                           ` Dan.Sneddon
2021-07-29 19:24                           ` Dan.Sneddon
2021-07-29 19:24                           ` Dan.Sneddon
2021-07-29 19:32                           ` Thomas Zimmermann
2021-07-29 19:32                             ` Thomas Zimmermann
2021-07-29 19:32                             ` Thomas Zimmermann
2021-07-29 19:32                             ` Thomas Zimmermann
2021-07-29 19:48                         ` Sam Ravnborg
2021-07-29 19:48                           ` Sam Ravnborg
2021-07-29 19:48                           ` Sam Ravnborg
2021-07-29 19:55                           ` Dan.Sneddon
2021-07-29 19:55                             ` Dan.Sneddon
2021-07-29 19:55                             ` Dan.Sneddon
2021-07-29 19:55                             ` Dan.Sneddon
2021-07-30  8:31                             ` Thomas Zimmermann
2021-07-30  8:31                               ` Thomas Zimmermann
2021-07-30  8:31                               ` Thomas Zimmermann
2021-07-30  8:31                               ` Thomas Zimmermann
2021-07-30 18:10                               ` Dan.Sneddon
2021-07-30 18:10                                 ` Dan.Sneddon
2021-07-30 18:10                                 ` Dan.Sneddon
2021-07-28 18:19             ` Dan.Sneddon
2021-07-28 18:19               ` Dan.Sneddon
2021-07-28 18:19               ` Dan.Sneddon
2021-07-28 18:19               ` Dan.Sneddon
2021-07-27 18:27 ` [PATCH 04/14] drm/fsl-dcu: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 05/14] drm/gma500: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 06/14] drm/kmb: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 07/14] drm/msm: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 08/14] drm/mxsfb: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 09/14] drm/radeon: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-08-02 15:27   ` Alex Deucher
2021-08-02 15:27     ` Alex Deucher
2021-08-02 15:27     ` Alex Deucher
2021-07-27 18:27 ` [PATCH 10/14] drm/tidss: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-29  7:02   ` Tomi Valkeinen
2021-07-29  7:02     ` Tomi Valkeinen
2021-07-29  7:02     ` Tomi Valkeinen
2021-07-29  7:02     ` Tomi Valkeinen
2021-07-27 18:27 ` [PATCH 11/14] drm/tilcdc: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 12/14] drm/vc4: " Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 13/14] drm: Remove unused devm_drm_irq_install() Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27 ` [PATCH 14/14] drm: IRQ midlayer is now legacy Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-27 18:27   ` Thomas Zimmermann
2021-07-28 14:10   ` Sam Ravnborg
2021-07-28 14:10     ` Sam Ravnborg
2021-07-28 14:10     ` Sam Ravnborg
2021-07-27 18:51 ` [PATCH 00/14] drm: Make DRM's IRQ helpers legacy Sam Ravnborg
2021-07-27 18:51   ` Sam Ravnborg
2021-07-27 18:51   ` Sam Ravnborg
2021-07-28  5:19   ` Thomas Zimmermann
2021-07-28  5:19     ` Thomas Zimmermann
2021-07-28  5:19     ` Thomas Zimmermann
2021-07-28  5:19     ` Thomas Zimmermann
2021-07-31 18:50 ` Sam Ravnborg
2021-07-31 18:50   ` Sam Ravnborg
2021-08-01 19:56   ` Thomas Zimmermann
2021-08-01 19:56     ` Thomas Zimmermann
2021-08-01 20:24     ` Sam Ravnborg
2021-08-01 20:24       ` Sam Ravnborg
2021-08-02  8:42       ` Thomas Zimmermann
2021-08-02  8:42         ` Thomas Zimmermann

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=7067cca1-c8a4-347c-829a-accdce8c6aef@suse.de \
    --to=tzimmermann@suse.de \
    --cc=Dan.Sneddon@microchip.com \
    --cc=Nicolas.Ferre@microchip.com \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=alison.wang@nxp.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=anitha.chrisanthus@intel.com \
    --cc=bbrezillon@kernel.org \
    --cc=brian.starkey@arm.com \
    --cc=christian.koenig@amd.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=edmund.j.dea@intel.com \
    --cc=freedreno@lists.freedesktop.org \
    --cc=jyri.sarha@iki.fi \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=liviu.dudau@arm.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=patrik.r.jakobsson@gmail.com \
    --cc=robdclark@gmail.com \
    --cc=s.hauer@pengutronix.de \
    --cc=sam@ravnborg.org \
    --cc=sean@poorly.run \
    --cc=shawnguo@kernel.org \
    --cc=stefan@agner.ch \
    --cc=tomba@kernel.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.