qxl_dumb.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * Copyright 2013 Red Hat Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: Dave Airlie
  23. * Alon Levy
  24. */
  25. #include "qxl_drv.h"
  26. #include "qxl_object.h"
  27. /* dumb ioctls implementation */
  28. int qxl_mode_dumb_create(struct drm_file *file_priv,
  29. struct drm_device *dev,
  30. struct drm_mode_create_dumb *args)
  31. {
  32. struct qxl_device *qdev = dev->dev_private;
  33. struct qxl_bo *qobj;
  34. uint32_t handle;
  35. int r;
  36. struct qxl_surface surf;
  37. uint32_t pitch, format;
  38. pitch = args->width * ((args->bpp + 1) / 8);
  39. args->size = pitch * args->height;
  40. args->size = ALIGN(args->size, PAGE_SIZE);
  41. switch (args->bpp) {
  42. case 16:
  43. format = SPICE_SURFACE_FMT_16_565;
  44. break;
  45. case 32:
  46. format = SPICE_SURFACE_FMT_32_xRGB;
  47. break;
  48. default:
  49. return -EINVAL;
  50. }
  51. surf.width = args->width;
  52. surf.height = args->height;
  53. surf.stride = pitch;
  54. surf.format = format;
  55. r = qxl_gem_object_create_with_handle(qdev, file_priv,
  56. QXL_GEM_DOMAIN_VRAM,
  57. args->size, &surf, &qobj,
  58. &handle);
  59. if (r)
  60. return r;
  61. args->pitch = pitch;
  62. args->handle = handle;
  63. return 0;
  64. }
  65. int qxl_mode_dumb_mmap(struct drm_file *file_priv,
  66. struct drm_device *dev,
  67. uint32_t handle, uint64_t *offset_p)
  68. {
  69. struct drm_gem_object *gobj;
  70. struct qxl_bo *qobj;
  71. BUG_ON(!offset_p);
  72. gobj = drm_gem_object_lookup(dev, file_priv, handle);
  73. if (gobj == NULL)
  74. return -ENOENT;
  75. qobj = gem_to_qxl_bo(gobj);
  76. *offset_p = qxl_bo_mmap_offset(qobj);
  77. drm_gem_object_unreference_unlocked(gobj);
  78. return 0;
  79. }