search for: drm_virtio_gpu_kms

Displaying 2 results from an estimated 2 matches for "drm_virtio_gpu_kms".

2023 Mar 01
1
[PATCH v5] drm/virtio: Add option to disable KMS support
...t, we should assume it will again in the future), it makes sense to have a build option to disable those ioctls in cases where they serve no legitimate purpose. v2: Use more if (IS_ENABLED(...)) v3: Also permit the host to advertise no scanouts v4: Spiff out commit msg v5: Make num_scanouts==0 and DRM_VIRTIO_GPU_KMS=n behave the same Signed-off-by: Rob Clark <robdclark at chromium.org> Reviewed-by: Dmitry Osipenko <dmitry.osipenko at collabora.com> Reviewed-by: Javier Martinez Canillas <javierm at redhat.com> --- drivers/gpu/drm/virtio/Kconfig | 11 ++++++++++ drivers/gpu/drm/virtio/M...
2023 Feb 24
2
[PATCH] drm/virtio: Add option to disable KMS support
...-git a/drivers/gpu/drm/virtio/Kconfig b/drivers/gpu/drm/virtio/Kconfig index 51ec7c3240c9..ea06ff2aa4b4 100644 --- a/drivers/gpu/drm/virtio/Kconfig +++ b/drivers/gpu/drm/virtio/Kconfig @@ -11,3 +11,14 @@ config DRM_VIRTIO_GPU QEMU based VMMs (like KVM or Xen). If unsure say M. + +config DRM_VIRTIO_GPU_KMS + bool "Virtio GPU driver modesetting support" + depends on DRM_VIRTIO_GPU + default y + help + Enable modesetting support for virtio GPU driver. This can be + disabled in cases where only "headless" usage of the GPU is + required. + + If unsure, say Y. diff --git a...