Displaying 9 results from an estimated 9 matches for "virtio_gpu_".
Did you mean:
virtio_gpu
2014 Sep 14
4
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
...e drivers/servers.
> > > +
> > > +enum virtgpu_ctrl_type {
> > > + VIRTGPU_UNDEFINED = 0,
> > > +
> > > + /* 2d commands */
> > > + VIRTGPU_CMD_GET_DISPLAY_INFO = 0x0100,
> >
> > Please consider also adding:
VIRTIO_GPU_ everywhere to make it consistent with other
virtio headers?
> >
> > #define VIRTGPU_CMD_GET_DISPLAY_INFO VIRTGPU_CMD_GET_DISPLAY_INFO
> >
> > and friends. It makes it MUCH nicer for application software to probe
> > for later extensions if every member of the enum...
2014 Sep 14
4
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
...e drivers/servers.
> > > +
> > > +enum virtgpu_ctrl_type {
> > > + VIRTGPU_UNDEFINED = 0,
> > > +
> > > + /* 2d commands */
> > > + VIRTGPU_CMD_GET_DISPLAY_INFO = 0x0100,
> >
> > Please consider also adding:
VIRTIO_GPU_ everywhere to make it consistent with other
virtio headers?
> >
> > #define VIRTGPU_CMD_GET_DISPLAY_INFO VIRTGPU_CMD_GET_DISPLAY_INFO
> >
> > and friends. It makes it MUCH nicer for application software to probe
> > for later extensions if every member of the enum...
2014 Sep 15
0
[PATCH 1/2] virtio-gpu/2d: add hardware spec include file
...gt; > > +enum virtgpu_ctrl_type {
> > > > + VIRTGPU_UNDEFINED = 0,
> > > > +
> > > > + /* 2d commands */
> > > > + VIRTGPU_CMD_GET_DISPLAY_INFO = 0x0100,
> > >
> > > Please consider also adding:
>
> VIRTIO_GPU_ everywhere to make it consistent with other
> virtio headers?
The names are already pretty long as-is, especially considering the
80cols rule in our codestyle. I'd prefer to keep them the way they are
now.
cheers,
Gerd
2020 Feb 11
1
[PATCH] drm/virtio: rework batching
Drop the virtio_gpu_{disable,enable}_notify(). Add a new
virtio_gpu_notify() call instead, which must be called whenever
the driver wants make sure the host is notified needed.
Drop notification from command submission. Add virtio_gpu_notify()
calls everywhere instead. This results in more batching because we now
n...
2020 Feb 12
1
[PATCH v2] drm/virtio: rework batching
Drop the virtio_gpu_{disable,enable}_notify(). Add a new
virtio_gpu_notify() call instead, which must be called whenever
the driver wants make sure the host is notified needed.
Drop notification from command submission. Add virtio_gpu_notify()
calls everywhere instead. This results in more batching because we now
n...
2014 Sep 11
3
[Qemu-devel] [PATCH 1/2] virtio-gpu/2d: add hardware spec include file
On 09/11/2014 09:09 AM, Gerd Hoffmann wrote:
> This patch adds the header file with structs and defines for
> the virtio based gpu device. Covers 2d operations only.
>
> Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>
> ---
> include/hw/virtio/virtgpu_hw.h | 158 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 158 insertions(+)
> create mode 100644
2014 Sep 11
3
[Qemu-devel] [PATCH 1/2] virtio-gpu/2d: add hardware spec include file
On 09/11/2014 09:09 AM, Gerd Hoffmann wrote:
> This patch adds the header file with structs and defines for
> the virtio based gpu device. Covers 2d operations only.
>
> Signed-off-by: Gerd Hoffmann <kraxel at redhat.com>
> ---
> include/hw/virtio/virtgpu_hw.h | 158 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 158 insertions(+)
> create mode 100644
2020 Feb 13
0
[PATCH v3 1/4] drm/virtio: rework notification for better batching
Drop the virtio_gpu_{disable,enable}_notify(). Add a new
virtio_gpu_notify() call instead, which must be called whenever
the driver wants make sure the host is notified needed.
Drop automatic notification from command submission. Add
virtio_gpu_notify() calls after each command query instead.
This allows more fine-g...
2020 Feb 14
0
[PATCH v4 1/6] drm/virtio: rework notification for better batching
Drop the virtio_gpu_{disable,enable}_notify(). Add a new
virtio_gpu_notify() call instead, which must be called whenever
the driver wants make sure the host is notified needed.
Drop automatic notification from command submission. Add
virtio_gpu_notify() calls after each command query instead.
This allows more fine-g...