public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
To: Greg KH <gregkh@linuxfoundation.org>,
	Ben Hutchings <ben@decadent.org.uk>
Cc: "Thomas Zimmermann" <tzimmermann@suse.de>,
	"Daniel Vetter" <daniel@ffwll.ch>,
	"Mathias Nyman" <mathias.nyman@linux.intel.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Dave Airlie" <airlied@linux.ie>,
	"Sebastian Andrzej Siewior" <bigeasy@linutronix.de>,
	"Oliver Neukum" <oneukum@suse.com>,
	"Christoph Hellwig" <hch@lst.de>,
	"Hans de Goede" <hdegoede@redhat.com>,
	"Alan Stern" <stern@rowland.harvard.edu>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	stable <stable@vger.kernel.org>,
	"Johan Hovold" <johan@kernel.org>,
	"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
	"Sean Paul" <sean@poorly.run>,
	"Christian König" <christian.koenig@amd.com>
Subject: Re: [PATCH v3] drm: Use USB controller's DMA mask when importing dmabufs
Date: Thu, 25 Feb 2021 19:01:57 +0000	[thread overview]
Message-ID: <YDf0JdIUJU74J4PJ@debian> (raw)
In-Reply-To: <YDT+pusRy3/JpmRR@kroah.com>

On Tue, Feb 23, 2021 at 02:09:58PM +0100, Greg KH wrote:
> On Tue, Feb 23, 2021 at 01:51:09PM +0100, Thomas Zimmermann wrote:
> > Hi
> > 
> > Am 23.02.21 um 13:24 schrieb Greg KH:
> > > On Tue, Feb 23, 2021 at 01:14:30PM +0100, Daniel Vetter wrote:
> > > > On Tue, Feb 23, 2021 at 1:02 PM Greg KH <gregkh@linuxfoundation.org> wrote:
> > > > > 
> > > > > On Tue, Feb 23, 2021 at 12:46:20PM +0100, Daniel Vetter wrote:
> > > > > > On Tue, Feb 23, 2021 at 12:19:56PM +0100, Greg KH wrote:
> > > > > > > On Tue, Feb 23, 2021 at 11:58:42AM +0100, Thomas Zimmermann wrote:
> > > > > > > > USB devices cannot perform DMA and hence have no dma_mask set in their
> > > > > > > > device structure. Importing dmabuf into a USB-based driver fails, which
> > > > > > > > break joining and mirroring of display in X11.
> > > > > > > > 
> > > > > > > > For USB devices, pick the associated USB controller as attachment device,
> > > > > > > > so that it can perform DMA. If the DMa controller does not support DMA
> > > > > > > > transfers, we're aout of luck and cannot import.
> > > > > > > > 
> > > > > > > > Drivers should use DRM_GEM_SHMEM_DROVER_OPS_USB to initialize their
> > > > > > > > instance of struct drm_driver.
> > > > > > > > 
> > > > > > > > Tested by joining/mirroring displays of udl and radeon un der Gnome/X11.
> > > > > > > > 
> > > > > > > > v3:
> > > > > > > >    * drop gem_create_object
> > > > > > > >    * use DMA mask of USB controller, if any (Daniel, Christian, Noralf)
> > > > > > > > v2:
> > > > > > > >    * move fix to importer side (Christian, Daniel)
> > > > > > > >    * update SHMEM and CMA helpers for new PRIME callbacks
> > > > > > > > 
> > > > > > > > Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
> > > > > > > > Fixes: 6eb0233ec2d0 ("usb: don't inherity DMA properties for USB devices")
> > > > > > > > Cc: Christoph Hellwig <hch@lst.de>
> > > > > > > > Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> > > > > > > > Cc: Johan Hovold <johan@kernel.org>
> > > > > > > > Cc: Alan Stern <stern@rowland.harvard.edu>
> > > > > > > > Cc: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > > > > > > > Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
> > > > > > > > Cc: Mathias Nyman <mathias.nyman@linux.intel.com>
> > > > > > > > Cc: Oliver Neukum <oneukum@suse.com>
> > > > > > > > Cc: Thomas Gleixner <tglx@linutronix.de>
> > > > > > > > Cc: <stable@vger.kernel.org> # v5.10+
> > > > > > > > ---
<snip>
> > > > > > > 
> > > > > > > There shouldn't be anything "special" about a DRM driver that needs this
> > > > > > > vs. any other driver that might want to know about DMA things related to
> > > > > > > a specific USB device.  Why isn't this an issue with the existing
> > > > > > > storage or v4l USB devices?
> > > > > > 
> > > > > > The trouble is that this is a regression fix for 5.9, because the dma-api
> > > > > > got more opinionated about what it allows. The proper fix is a lot more
> > > > > > invasive (we essentially need to rework the drm_prime.c to allow dma-buf
> > > > > > importing for just cpu access), and that's a ton more invasive than just a
> > > > > > small patch with can stuff into stable kernels.
> > > > > > 
> > > > > > This here is ugly, but it should at least get rid of black screens again.
> > > > > > 
> > > > > > I think solid FIXME comment explaining the situation would be good.
> > > > > 
> > > > > Why can't I take a USB patch for a regression fix?  Is drm somehow
> > > > > stand-alone that you make changes here that should belong in other
> > > > > subsystems?
> > > > > 
> > > > > {hint, it shouldn't be}
> > > > > 
> > > > > When you start poking in the internals of usb controller structures,
> > > > > that logic belongs in the USB core for all drivers to use, not in a
> > > > > random tiny subsystem where no USB developer will ever notice it?  :)
> > > > 
> > > > Because the usb fix isn't the right fix here, it's just the duct-tape.
> > > > We don't want to dig around in these internals, it's just a convenient
> > > > way to shut up the dma-api until drm has sorted out its confusion.
> > > > 
> > > > We can polish the turd if you want, but the thing is, it's still a turd ...
> > > > 
> > > > The right fix is to change drm_prime.c code to not call dma_map_sg
> > > > when we don't need it. The problem is that roughly 3 layers of code
> > > > (drm_prime, dma-buf, gem shmem helpers) are involved. Plus, since
> > > > drm_prime is shared by all drm drivers, all other drm drivers are
> > > > impacted too. We're not going to be able to cc: stable that kind of
> > > > stuff. Thomas actually started with that series, until I pointed out
> > > > how bad things really are.
> > > > 
> > > > And before you ask: The dma-api change makes sense, and dma-api vs drm
> > > > relations are strained since years, so we're not going ask for some
> > > > hack there for our abuse to paper over the regression. I've been in
> > > > way too many of those threads, only result is shouting and failed
> > > > anger management.
> > > 
> > > Let's do it right.  If this is a regression from 5.9, it isn't a huge
> > > one as that kernel was released last October.  I don't like to see this
> > > messing around with USB internals in non-USB-core code please.
> > 
> > I get
> > 
> >  > git tag --contains 6eb0233ec2d0
> >  ...
> >  v5.10-rc1
> >  ...
> 
> Ah, I thought you said 5.9 was when the problem happened, ok, yes, 5.10
> is slow to get out to a lot of distros that do not update frequently :(

iiuc, Debian Bullseye release will be having v5.10.y.

Ben ?


--
Regards
Sudip

  reply	other threads:[~2021-02-25 19:02 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-23 10:58 [PATCH v3] drm: Use USB controller's DMA mask when importing dmabufs Thomas Zimmermann
2021-02-23 11:19 ` Greg KH
2021-02-23 11:27   ` Greg KH
2021-02-23 11:46   ` Daniel Vetter
2021-02-23 12:02     ` Greg KH
2021-02-23 12:14       ` Daniel Vetter
2021-02-23 12:24         ` Greg KH
2021-02-23 12:40           ` Daniel Vetter
2021-02-23 12:50             ` Greg KH
2021-02-23 12:59               ` Daniel Vetter
2021-02-23 12:51           ` Thomas Zimmermann
2021-02-23 13:09             ` Greg KH
2021-02-25 19:01               ` Sudip Mukherjee [this message]
2021-02-25 21:39                 ` Salvatore Bonaccorso
2021-02-23 12:37   ` Thomas Zimmermann
2021-02-23 12:44     ` Greg KH
2021-02-23 12:49       ` Daniel Vetter
2021-02-23 12:52         ` Greg KH
2021-02-23 13:43           ` Thomas Zimmermann
2021-02-23 12:47     ` Daniel Vetter
2021-02-23 15:45   ` Alan Stern
2021-02-24  6:02     ` Thomas Zimmermann
2021-02-23 13:44 ` Takashi Iwai
2021-02-23 14:06   ` Thomas Zimmermann
2021-02-23 16:00     ` Alan Stern
2021-02-23 16:12       ` Takashi Iwai
2021-02-23 17:30       ` Greg KH
2021-02-24  5:59         ` Thomas Zimmermann
2021-02-24  7:27       ` Christoph Hellwig

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=YDf0JdIUJU74J4PJ@debian \
    --to=sudipm.mukherjee@gmail.com \
    --cc=airlied@linux.ie \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=ben@decadent.org.uk \
    --cc=bigeasy@linutronix.de \
    --cc=christian.koenig@amd.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=hch@lst.de \
    --cc=hdegoede@redhat.com \
    --cc=johan@kernel.org \
    --cc=mathias.nyman@linux.intel.com \
    --cc=oneukum@suse.com \
    --cc=sean@poorly.run \
    --cc=stable@vger.kernel.org \
    --cc=stern@rowland.harvard.edu \
    --cc=tglx@linutronix.de \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox