virtgpu_drv.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Copyright (C) 2015 Red Hat, Inc.
  3. * All Rights Reserved.
  4. *
  5. * Authors:
  6. * Dave Airlie <airlied@redhat.com>
  7. * Gerd Hoffmann <kraxel@redhat.com>
  8. *
  9. * Permission is hereby granted, free of charge, to any person obtaining a
  10. * copy of this software and associated documentation files (the "Software"),
  11. * to deal in the Software without restriction, including without limitation
  12. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  13. * and/or sell copies of the Software, and to permit persons to whom the
  14. * Software is furnished to do so, subject to the following conditions:
  15. *
  16. * The above copyright notice and this permission notice (including the next
  17. * paragraph) shall be included in all copies or substantial portions of the
  18. * Software.
  19. *
  20. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  21. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  22. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  23. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  24. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  25. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  26. * OTHER DEALINGS IN THE SOFTWARE.
  27. */
  28. #include <linux/module.h>
  29. #include <linux/console.h>
  30. #include <linux/pci.h>
  31. #include "drmP.h"
  32. #include "drm/drm.h"
  33. #include "virtgpu_drv.h"
  34. static struct drm_driver driver;
  35. static int virtio_gpu_modeset = -1;
  36. MODULE_PARM_DESC(modeset, "Disable/Enable modesetting");
  37. module_param_named(modeset, virtio_gpu_modeset, int, 0400);
  38. static int virtio_gpu_probe(struct virtio_device *vdev)
  39. {
  40. #ifdef CONFIG_VGA_CONSOLE
  41. if (vgacon_text_force() && virtio_gpu_modeset == -1)
  42. return -EINVAL;
  43. #endif
  44. if (virtio_gpu_modeset == 0)
  45. return -EINVAL;
  46. return drm_virtio_init(&driver, vdev);
  47. }
  48. static void virtio_gpu_remove(struct virtio_device *vdev)
  49. {
  50. struct drm_device *dev = vdev->priv;
  51. drm_put_dev(dev);
  52. }
  53. static void virtio_gpu_config_changed(struct virtio_device *vdev)
  54. {
  55. struct drm_device *dev = vdev->priv;
  56. struct virtio_gpu_device *vgdev = dev->dev_private;
  57. schedule_work(&vgdev->config_changed_work);
  58. }
  59. static struct virtio_device_id id_table[] = {
  60. { VIRTIO_ID_GPU, VIRTIO_DEV_ANY_ID },
  61. { 0 },
  62. };
  63. static unsigned int features[] = {
  64. };
  65. static struct virtio_driver virtio_gpu_driver = {
  66. .feature_table = features,
  67. .feature_table_size = ARRAY_SIZE(features),
  68. .driver.name = KBUILD_MODNAME,
  69. .driver.owner = THIS_MODULE,
  70. .id_table = id_table,
  71. .probe = virtio_gpu_probe,
  72. .remove = virtio_gpu_remove,
  73. .config_changed = virtio_gpu_config_changed
  74. };
  75. module_virtio_driver(virtio_gpu_driver);
  76. MODULE_DEVICE_TABLE(virtio, id_table);
  77. MODULE_DESCRIPTION("Virtio GPU driver");
  78. MODULE_LICENSE("GPL and additional rights");
  79. MODULE_AUTHOR("Dave Airlie <airlied@redhat.com>");
  80. MODULE_AUTHOR("Gerd Hoffmann <kraxel@redhat.com>");
  81. MODULE_AUTHOR("Alon Levy");
  82. static const struct file_operations virtio_gpu_driver_fops = {
  83. .owner = THIS_MODULE,
  84. .open = drm_open,
  85. .mmap = virtio_gpu_mmap,
  86. .poll = drm_poll,
  87. .read = drm_read,
  88. .unlocked_ioctl = drm_ioctl,
  89. .release = drm_release,
  90. #ifdef CONFIG_COMPAT
  91. .compat_ioctl = drm_compat_ioctl,
  92. #endif
  93. .llseek = noop_llseek,
  94. };
  95. static struct drm_driver driver = {
  96. .driver_features = DRIVER_MODESET | DRIVER_GEM,
  97. .set_busid = drm_virtio_set_busid,
  98. .load = virtio_gpu_driver_load,
  99. .unload = virtio_gpu_driver_unload,
  100. .dumb_create = virtio_gpu_mode_dumb_create,
  101. .dumb_map_offset = virtio_gpu_mode_dumb_mmap,
  102. .dumb_destroy = virtio_gpu_mode_dumb_destroy,
  103. #if defined(CONFIG_DEBUG_FS)
  104. .debugfs_init = virtio_gpu_debugfs_init,
  105. .debugfs_cleanup = virtio_gpu_debugfs_takedown,
  106. #endif
  107. .gem_free_object = virtio_gpu_gem_free_object,
  108. .fops = &virtio_gpu_driver_fops,
  109. .name = DRIVER_NAME,
  110. .desc = DRIVER_DESC,
  111. .date = DRIVER_DATE,
  112. .major = DRIVER_MAJOR,
  113. .minor = DRIVER_MINOR,
  114. .patchlevel = DRIVER_PATCHLEVEL,
  115. };