qxl_dumb.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 = to_qxl(dev);
  33. struct qxl_bo *qobj;
  34. struct drm_gem_object *gobj;
  35. uint32_t handle;
  36. int r;
  37. struct qxl_surface surf;
  38. uint32_t pitch, format;
  39. pitch = args->width * ((args->bpp + 1) / 8);
  40. args->size = pitch * args->height;
  41. args->size = ALIGN(args->size, PAGE_SIZE);
  42. switch (args->bpp) {
  43. case 16:
  44. format = SPICE_SURFACE_FMT_16_565;
  45. break;
  46. case 32:
  47. format = SPICE_SURFACE_FMT_32_xRGB;
  48. break;
  49. default:
  50. return -EINVAL;
  51. }
  52. surf.width = args->width;
  53. surf.height = args->height;
  54. surf.stride = pitch;
  55. surf.format = format;
  56. surf.data = 0;
  57. r = qxl_gem_object_create_with_handle(qdev, file_priv,
  58. QXL_GEM_DOMAIN_CPU,
  59. args->size, &surf, &gobj,
  60. &handle);
  61. if (r)
  62. return r;
  63. qobj = gem_to_qxl_bo(gobj);
  64. qobj->is_dumb = true;
  65. drm_gem_object_put(gobj);
  66. args->pitch = pitch;
  67. args->handle = handle;
  68. return 0;
  69. }