dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: virtio-dev@lists.oasis-open.org, Dave Airlie <airlied@gmail.com>,
	Dave Airlie <airlied@redhat.com>, David Airlie <airlied@linux.ie>,
	Rusty Russell <rusty@rustcorp.com.au>,
	open list <linux-kernel@vger.kernel.org>,
	"open list:DRM DRIVERS" <dri-devel@lists.freedesktop.org>,
	"open list:VIRTIO CORE,
	NET..." <virtualization@lists.linux-foundation.org>,
	"open list:ABI/API" <linux-api@vger.kernel.org>
Subject: Re: [PATCH] Add virtio gpu driver.
Date: Tue, 24 Mar 2015 17:15:29 +0100	[thread overview]
Message-ID: <20150324171255-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <1427213239-8775-1-git-send-email-kraxel@redhat.com>

On Tue, Mar 24, 2015 at 05:07:18PM +0100, Gerd Hoffmann wrote:
> From: Dave Airlie <airlied@gmail.com>
> 
> This patch adds a kms driver for the virtio gpu.  The xorg modesetting
> driver can handle the device just fine, the framebuffer for fbcon is
> there too.
> 
> Qemu patches for the host side are under review currently.
> 
> The pci version of the device comes in two variants: with and without
> vga compatibility.  The former has a extra memory bar for the vga
> framebuffer, the later is a pure virtio device.  The only concern for
> this driver is that in the virtio-vga case we have to kick out the
> firmware framebuffer.
> 
> Initial revision has only 2d support, 3d (virgl) support requires
> some more work on the qemu side and will be added later.
> 
> Signed-off-by: Dave Airlie <airlied@redhat.com>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>

...

> diff --git a/drivers/virtio/virtio_pci_common.c b/drivers/virtio/virtio_pci_common.c
> index e894eb2..a3167fa 100644
> --- a/drivers/virtio/virtio_pci_common.c
> +++ b/drivers/virtio/virtio_pci_common.c
> @@ -510,7 +510,7 @@ static int virtio_pci_probe(struct pci_dev *pci_dev,
>  		goto err_enable_device;
>  
>  	rc = pci_request_regions(pci_dev, "virtio-pci");
> -	if (rc)
> +	if (rc && ((pci_dev->class >> 8) != PCI_CLASS_DISPLAY_VGA))
>  		goto err_request_regions;
>  
>  	if (force_legacy) {

This is probably what you described as "the only concern?  Can you
explain why you are doing this?  If we only need to request specific
regions, I think we should do exactly that, requesting only parts of
regions that are covered by the virtio capabilities.

Seems cleaner than looking for a specific class.

Didn't look at device code in depth yet.

  reply	other threads:[~2015-03-24 16:15 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-24 16:07 [PATCH] Add virtio gpu driver Gerd Hoffmann
2015-03-24 16:15 ` Michael S. Tsirkin [this message]
2015-03-25 14:52   ` Gerd Hoffmann
     [not found]     ` <1427295121.23304.5.camel-3OfP5uLMi4C46o+2HkPkLj4oCIwMql/M@public.gmane.org>
2015-03-25 15:24       ` Michael S. Tsirkin
2015-03-25 15:37         ` Gerd Hoffmann
2015-03-25 17:09           ` Michael S. Tsirkin
2015-03-26  7:12             ` Gerd Hoffmann
     [not found]               ` <1427353959.9779.2.camel-3OfP5uLMi4C46o+2HkPkLj4oCIwMql/M@public.gmane.org>
2015-03-26  8:18                 ` Michael S. Tsirkin
2015-03-26  8:42                   ` [virtio-dev] " Gerd Hoffmann
2015-03-26  9:04                     ` Michael S. Tsirkin
2015-03-26 11:38                       ` Gerd Hoffmann
     [not found]                         ` <1427369923.9779.18.camel-3OfP5uLMi4C46o+2HkPkLj4oCIwMql/M@public.gmane.org>
2015-03-26 11:53                           ` Michael S. Tsirkin
2015-03-26 15:07                             ` Gerd Hoffmann
     [not found]                               ` <1427382436.8786.15.camel-3OfP5uLMi4C46o+2HkPkLj4oCIwMql/M@public.gmane.org>
2015-03-26 16:47                                 ` Michael S. Tsirkin
2015-03-26 22:49                                   ` Alex Elsayed
2015-03-27  8:08                                   ` Gerd Hoffmann
2015-03-26 16:52                         ` One Thousand Gnomes
2015-03-24 17:04 ` Michael S. Tsirkin
     [not found] ` <1427213239-8775-1-git-send-email-kraxel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2015-03-24 16:50   ` Daniel Vetter
2015-03-25 14:53     ` Gerd Hoffmann
     [not found]       ` <1427295189.23304.6.camel-3OfP5uLMi4C46o+2HkPkLj4oCIwMql/M@public.gmane.org>
2015-03-26  8:53         ` Daniel Vetter
2015-03-30 12:23     ` Gerd Hoffmann
2015-03-30 14:49       ` Daniel Vetter
2016-05-25 16:40         ` Daniel Vetter
     [not found]           ` <CAKMK7uFUNT193f5djZD6T8cgRxxnZL73yrqbupPHOd2P-+Y=pQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-05-25 16:44             ` Emil Velikov
2016-05-27  7:48             ` Gerd Hoffmann
2016-05-27  9:03               ` Daniel Vetter
2016-05-30 13:50                 ` Gerd Hoffmann
2016-05-30 14:47                   ` Daniel Vetter
2016-05-31  6:29                     ` Gerd Hoffmann
     [not found]                       ` <1464676160.5978.24.camel-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2016-05-31  6:55                         ` Daniel Vetter
2016-05-31  7:00                         ` Pekka Paalanen
2015-03-24 20:47   ` Paul Bolle
2015-03-24 22:50   ` Daniel Stone
     [not found]     ` <CAPj87rN4pXHukDRD-e=ZrO1hcts04cSz1Hr9TNAgicGVWE5_-Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-25  0:00       ` Dave Airlie
2015-03-25  5:47         ` Daniel Stone
2015-03-25 15:19     ` Gerd Hoffmann

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=20150324171255-mutt-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=airlied@gmail.com \
    --cc=airlied@linux.ie \
    --cc=airlied@redhat.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kraxel@redhat.com \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rusty@rustcorp.com.au \
    --cc=virtio-dev@lists.oasis-open.org \
    --cc=virtualization@lists.linux-foundation.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox