mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 11:33:36 -04:00
drm/virtio: implement blob resources: probe for the feature.
Let's proble for VIRTIO_GPU_F_RESOURCE_BLOB. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Gurchetan Singh <gurchetansingh@chromium.org> Acked-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Link: http://patchwork.freedesktop.org/patch/msgid/20200924003214.662-8-gurchetansingh@chromium.org
This commit is contained in:
@@ -152,10 +152,14 @@ int virtio_gpu_init(struct drm_device *dev)
|
||||
if (virtio_has_feature(vgdev->vdev, VIRTIO_GPU_F_RESOURCE_UUID)) {
|
||||
vgdev->has_resource_assign_uuid = true;
|
||||
}
|
||||
if (virtio_has_feature(vgdev->vdev, VIRTIO_GPU_F_RESOURCE_BLOB)) {
|
||||
vgdev->has_resource_blob = true;
|
||||
}
|
||||
|
||||
DRM_INFO("features: %cvirgl %cedid\n",
|
||||
vgdev->has_virgl_3d ? '+' : '-',
|
||||
vgdev->has_edid ? '+' : '-');
|
||||
DRM_INFO("features: %cvirgl %cedid %cresource_blob\n",
|
||||
vgdev->has_virgl_3d ? '+' : '-',
|
||||
vgdev->has_edid ? '+' : '-',
|
||||
vgdev->has_resource_blob ? '+' : '-');
|
||||
|
||||
ret = virtio_find_vqs(vgdev->vdev, 2, vqs, callbacks, names, NULL);
|
||||
if (ret) {
|
||||
|
||||
Reference in New Issue
Block a user