All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: airlied@redhat.com, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v3 0/4] Add virtio gpu driver.
Date: Sun, 31 May 2015 20:11:18 +0200	[thread overview]
Message-ID: <20150531181118.GE5268@redhat.com> (raw)
In-Reply-To: <1432300312-24792-1-git-send-email-kraxel@redhat.com>

On Fri, May 22, 2015 at 03:11:48PM +0200, Gerd Hoffmann wrote:
>   Hi,
> 
> It's been a while, but now I finally found to time to send v3 to the
> list.  No big changes in there.  Collected some review and ack lines.
> Fixed some minor issues found in review.  Rebased to 4.1-rc4.  Dropped
> the vga compatibility bits for now, this needs to be sorted on the qemu
> side first.  But I don't want delay these patches until this is done.
> 
> cheers,
>   Gerd

This looks reasonable to me.
Would you be willing to be listed in
MAINTAINERS and review patches for this driver?
If yes there's no need to repost just for this - just let me know.


> Dave Airlie (1):
>   Add virtio gpu driver.
> 
> Gerd Hoffmann (3):
>   localversion: branch virtio-gpu
>   break kconfig dependency loop
>   drm_vblank_get: don't WARN_ON in case vblanks are not initialized
> 
>  drivers/gpu/drm/Kconfig                  |   2 +
>  drivers/gpu/drm/Makefile                 |   1 +
>  drivers/gpu/drm/drm_irq.c                |   3 +
>  drivers/gpu/drm/virtio/Kconfig           |  14 +
>  drivers/gpu/drm/virtio/Makefile          |  11 +
>  drivers/gpu/drm/virtio/virtgpu_debugfs.c |  64 ++++
>  drivers/gpu/drm/virtio/virtgpu_display.c | 485 ++++++++++++++++++++++++
>  drivers/gpu/drm/virtio/virtgpu_drm_bus.c |  91 +++++
>  drivers/gpu/drm/virtio/virtgpu_drv.c     | 136 +++++++
>  drivers/gpu/drm/virtio/virtgpu_drv.h     | 350 ++++++++++++++++++
>  drivers/gpu/drm/virtio/virtgpu_fb.c      | 431 ++++++++++++++++++++++
>  drivers/gpu/drm/virtio/virtgpu_fence.c   | 119 ++++++
>  drivers/gpu/drm/virtio/virtgpu_gem.c     | 140 +++++++
>  drivers/gpu/drm/virtio/virtgpu_kms.c     | 164 +++++++++
>  drivers/gpu/drm/virtio/virtgpu_object.c  | 170 +++++++++
>  drivers/gpu/drm/virtio/virtgpu_plane.c   | 120 ++++++
>  drivers/gpu/drm/virtio/virtgpu_ttm.c     | 469 +++++++++++++++++++++++
>  drivers/gpu/drm/virtio/virtgpu_vq.c      | 614 +++++++++++++++++++++++++++++++
>  drivers/iommu/Kconfig                    |   3 +
>  drivers/media/platform/Kconfig           |   2 +-
>  include/drm/drmP.h                       |   1 +
>  include/uapi/linux/Kbuild                |   1 +
>  include/uapi/linux/virtio_gpu.h          | 204 ++++++++++
>  include/uapi/linux/virtio_ids.h          |   1 +
>  localversion-virtio-gpu                  |   1 +
>  25 files changed, 3596 insertions(+), 1 deletion(-)
>  create mode 100644 drivers/gpu/drm/virtio/Kconfig
>  create mode 100644 drivers/gpu/drm/virtio/Makefile
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_debugfs.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_display.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_drm_bus.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_drv.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_drv.h
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_fb.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_fence.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_gem.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_kms.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_object.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_plane.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_ttm.c
>  create mode 100644 drivers/gpu/drm/virtio/virtgpu_vq.c
>  create mode 100644 include/uapi/linux/virtio_gpu.h
>  create mode 100644 localversion-virtio-gpu
> 
> -- 
> 1.8.3.1
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

  parent reply	other threads:[~2015-05-31 18:11 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-22 13:11 [PATCH v3 0/4] Add virtio gpu driver Gerd Hoffmann
2015-05-22 13:11 ` [PATCH v3 1/4] localversion: branch virtio-gpu Gerd Hoffmann
2015-05-22 13:11   ` Gerd Hoffmann
2015-05-22 13:21   ` Gerd Hoffmann
2015-05-22 13:21     ` Gerd Hoffmann
2015-05-22 13:11 ` [PATCH v3 2/4] break kconfig dependency loop Gerd Hoffmann
2015-05-22 13:11   ` Gerd Hoffmann
2015-05-22 13:11 ` [PATCH v3 3/4] drm_vblank_get: don't WARN_ON in case vblanks are not initialized Gerd Hoffmann
2015-05-22 13:11   ` Gerd Hoffmann
2015-05-22 13:11 ` [PATCH v3 4/4] Add virtio gpu driver Gerd Hoffmann
2015-05-22 13:11   ` Gerd Hoffmann
2015-06-02  8:33   ` Michael S. Tsirkin
2015-06-02  8:33   ` Michael S. Tsirkin
2015-06-02  8:33     ` Michael S. Tsirkin
2015-05-31 18:11 ` Michael S. Tsirkin [this message]
2015-06-01  7:26   ` [PATCH v3 0/4] " Gerd Hoffmann
2015-06-02  7:27     ` Dave Airlie
2015-06-02  8:48       ` Gerd Hoffmann
2015-06-02  8:57         ` Michael S. Tsirkin
2015-06-02  8:59           ` David Airlie

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=20150531181118.GE5268@redhat.com \
    --to=mst@redhat.com \
    --cc=airlied@redhat.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=kraxel@redhat.com \
    /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.