All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sam Ravnborg <sam@ravnborg.org>
To: Thomas Zimmermann <tzimmermann@suse.de>
Cc: airlied@linux.ie, tomi.valkeinen@ideasonboard.com,
	liviu.dudau@arm.com, stefan@agner.ch,
	amd-gfx@lists.freedesktop.org, anitha.chrisanthus@intel.com,
	Dan.Sneddon@microchip.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 v2 11/14] drm/tilcdc: Convert to Linux IRQ interfaces
Date: Wed, 4 Aug 2021 20:33:30 +0200	[thread overview]
Message-ID: <YQrdelvqiiv6On8r@ravnborg.org> (raw)
In-Reply-To: <896793e5-f5a8-fe74-1d8f-3dd1450d3fae@suse.de>

Hi Thomas,
On Wed, Aug 04, 2021 at 08:30:41PM +0200, Thomas Zimmermann wrote:
> Hi
> 
> Am 03.08.21 um 17:00 schrieb Sam Ravnborg:
> > Hi Thomas,
> > 
> > On Tue, Aug 03, 2021 at 11:07:01AM +0200, Thomas Zimmermann wrote:
> > > Drop the DRM IRQ midlayer in favor of Linux IRQ interfaces. DRM's
> > > IRQ helpers are mostly useful for UMS drivers. Modern KMS drivers
> > > don't benefit from using it.
> > > 
> > > DRM IRQ callbacks are now being called directly or inlined.
> > > 
> > > Calls to platform_get_irq() can fail with a negative errno code.
> > > Abort initialization in this case. The DRM IRQ midlayer does not
> > > handle this case correctly.
> > 
> > I cannot see why the irq_enabled flag is needed here, and the changelog
> > do not help me.
> > What do I miss?
> 
> That's a good point. Usually, only the DRM IRQ helpers use irq_enabled in
> struct drm_device. It'll become legacy and we can ignore it for the driver
> conversion.
> 
> The exception is tilcdc, which also uses irq_enabled to make its error
> rollback work correctly. So I duplicated the state in the local private
> structure.
> 
> I'll add this explanation to the commit message.
With this added:
Acked-by: Sam Ravnborg <sam@ravnborg.org>

_______________________________________________
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: Sam Ravnborg <sam@ravnborg.org>
To: Thomas Zimmermann <tzimmermann@suse.de>
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,
	Dan.Sneddon@microchip.com, tomi.valkeinen@ideasonboard.com,
	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 v2 11/14] drm/tilcdc: Convert to Linux IRQ interfaces
Date: Wed, 4 Aug 2021 20:33:30 +0200	[thread overview]
Message-ID: <YQrdelvqiiv6On8r@ravnborg.org> (raw)
In-Reply-To: <896793e5-f5a8-fe74-1d8f-3dd1450d3fae@suse.de>

Hi Thomas,
On Wed, Aug 04, 2021 at 08:30:41PM +0200, Thomas Zimmermann wrote:
> Hi
> 
> Am 03.08.21 um 17:00 schrieb Sam Ravnborg:
> > Hi Thomas,
> > 
> > On Tue, Aug 03, 2021 at 11:07:01AM +0200, Thomas Zimmermann wrote:
> > > Drop the DRM IRQ midlayer in favor of Linux IRQ interfaces. DRM's
> > > IRQ helpers are mostly useful for UMS drivers. Modern KMS drivers
> > > don't benefit from using it.
> > > 
> > > DRM IRQ callbacks are now being called directly or inlined.
> > > 
> > > Calls to platform_get_irq() can fail with a negative errno code.
> > > Abort initialization in this case. The DRM IRQ midlayer does not
> > > handle this case correctly.
> > 
> > I cannot see why the irq_enabled flag is needed here, and the changelog
> > do not help me.
> > What do I miss?
> 
> That's a good point. Usually, only the DRM IRQ helpers use irq_enabled in
> struct drm_device. It'll become legacy and we can ignore it for the driver
> conversion.
> 
> The exception is tilcdc, which also uses irq_enabled to make its error
> rollback work correctly. So I duplicated the state in the local private
> structure.
> 
> I'll add this explanation to the commit message.
With this added:
Acked-by: Sam Ravnborg <sam@ravnborg.org>

  reply	other threads:[~2021-08-04 18:35 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-03  9:06 [PATCH v2 00/14] drm: Make DRM's IRQ helpers legacy Thomas Zimmermann
2021-08-03  9:06 ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 01/14] drm/amdgpu: Convert to Linux IRQ interfaces Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 02/14] drm/arm/hdlcd: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-20 16:05   ` Liviu Dudau
2021-08-20 16:05     ` Liviu Dudau
2021-08-03  9:06 ` [PATCH v2 03/14] drm/atmel-hlcdc: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 04/14] drm/fsl-dcu: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 05/14] drm/gma500: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 06/14] drm/kmb: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 07/14] drm/msm: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:37   ` Dmitry Baryshkov
2021-08-03  9:37     ` Dmitry Baryshkov
2021-08-03 15:04     ` Rob Clark
2021-08-03 15:04       ` Rob Clark
2021-08-07 17:08     ` Rob Clark
2021-08-07 17:08       ` Rob Clark
2021-08-07 18:40       ` Thomas Zimmermann
2021-08-07 18:40         ` Thomas Zimmermann
2021-08-07 18:50         ` Rob Clark
2021-08-07 18:50           ` Rob Clark
2021-08-03 17:20   ` [Freedreno] " abhinavk
2021-08-03  9:06 ` [PATCH v2 08/14] drm/mxsfb: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:06 ` [PATCH v2 09/14] drm/radeon: " Thomas Zimmermann
2021-08-03  9:06   ` Thomas Zimmermann
2021-08-03  9:07 ` [PATCH v2 10/14] drm/tidss: " Thomas Zimmermann
2021-08-03  9:07   ` Thomas Zimmermann
2021-08-03  9:07 ` [PATCH v2 11/14] drm/tilcdc: " Thomas Zimmermann
2021-08-03  9:07   ` Thomas Zimmermann
2021-08-03 15:00   ` Sam Ravnborg
2021-08-03 15:00     ` Sam Ravnborg
2021-08-04 18:30     ` Thomas Zimmermann
2021-08-04 18:30       ` Thomas Zimmermann
2021-08-04 18:33       ` Sam Ravnborg [this message]
2021-08-04 18:33         ` Sam Ravnborg
2021-08-03  9:07 ` [PATCH v2 12/14] drm/vc4: " Thomas Zimmermann
2021-08-03  9:07   ` Thomas Zimmermann
2021-08-03  9:07 ` [PATCH v2 13/14] drm: Remove unused devm_drm_irq_install() Thomas Zimmermann
2021-08-03  9:07   ` Thomas Zimmermann
2021-08-03  9:07 ` [PATCH v2 14/14] drm: IRQ midlayer is now legacy Thomas Zimmermann
2021-08-03  9:07   ` Thomas Zimmermann
2021-08-03 15:04 ` [PATCH v2 00/14] drm: Make DRM's IRQ helpers legacy Sam Ravnborg
2021-08-03 15:04   ` Sam Ravnborg
2021-08-03 18:36   ` Chrisanthus, Anitha
2021-08-03 18:36     ` Chrisanthus, Anitha
2021-08-03 18:36     ` Chrisanthus, Anitha
2021-08-04  7:10     ` Thomas Zimmermann
2021-08-04  7:10       ` Thomas Zimmermann
2021-08-04  7:10       ` Thomas Zimmermann
2021-08-05 23:59       ` Chrisanthus, Anitha
2021-08-05 23:59         ` Chrisanthus, Anitha
2021-08-05 23:59         ` Chrisanthus, Anitha
2021-08-07  6:51         ` Thomas Zimmermann
2021-08-07  6:51           ` Thomas Zimmermann
2021-08-07  6:51           ` 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=YQrdelvqiiv6On8r@ravnborg.org \
    --to=sam@ravnborg.org \
    --cc=Dan.Sneddon@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=sean@poorly.run \
    --cc=shawnguo@kernel.org \
    --cc=stefan@agner.ch \
    --cc=tomba@kernel.org \
    --cc=tomi.valkeinen@ideasonboard.com \
    --cc=tzimmermann@suse.de \
    /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.