vmwgfx_ioctl.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /**************************************************************************
  2. *
  3. * Copyright © 2009 VMware, Inc., Palo Alto, CA., USA
  4. * All Rights Reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the
  8. * "Software"), to deal in the Software without restriction, including
  9. * without limitation the rights to use, copy, modify, merge, publish,
  10. * distribute, sub license, and/or sell copies of the Software, and to
  11. * permit persons to whom the Software is furnished to do so, subject to
  12. * the following conditions:
  13. *
  14. * The above copyright notice and this permission notice (including the
  15. * next paragraph) shall be included in all copies or substantial portions
  16. * of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
  21. * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
  22. * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  23. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
  24. * USE OR OTHER DEALINGS IN THE SOFTWARE.
  25. *
  26. **************************************************************************/
  27. #include "vmwgfx_drv.h"
  28. #include "vmwgfx_drm.h"
  29. int vmw_getparam_ioctl(struct drm_device *dev, void *data,
  30. struct drm_file *file_priv)
  31. {
  32. struct vmw_private *dev_priv = vmw_priv(dev);
  33. struct drm_vmw_getparam_arg *param =
  34. (struct drm_vmw_getparam_arg *)data;
  35. switch (param->param) {
  36. case DRM_VMW_PARAM_NUM_STREAMS:
  37. param->value = vmw_overlay_num_overlays(dev_priv);
  38. break;
  39. case DRM_VMW_PARAM_NUM_FREE_STREAMS:
  40. param->value = vmw_overlay_num_free_overlays(dev_priv);
  41. break;
  42. case DRM_VMW_PARAM_3D:
  43. param->value = dev_priv->capabilities & SVGA_CAP_3D ? 1 : 0;
  44. break;
  45. case DRM_VMW_PARAM_FIFO_OFFSET:
  46. param->value = dev_priv->mmio_start;
  47. break;
  48. default:
  49. DRM_ERROR("Illegal vmwgfx get param request: %d\n",
  50. param->param);
  51. return -EINVAL;
  52. }
  53. return 0;
  54. }
  55. int vmw_fifo_debug_ioctl(struct drm_device *dev, void *data,
  56. struct drm_file *file_priv)
  57. {
  58. struct vmw_private *dev_priv = vmw_priv(dev);
  59. struct vmw_fifo_state *fifo_state = &dev_priv->fifo;
  60. struct drm_vmw_fifo_debug_arg *arg =
  61. (struct drm_vmw_fifo_debug_arg *)data;
  62. __le32 __user *buffer = (__le32 __user *)
  63. (unsigned long)arg->debug_buffer;
  64. if (unlikely(fifo_state->last_buffer == NULL))
  65. return -EINVAL;
  66. if (arg->debug_buffer_size < fifo_state->last_data_size) {
  67. arg->used_size = arg->debug_buffer_size;
  68. arg->did_not_fit = 1;
  69. } else {
  70. arg->used_size = fifo_state->last_data_size;
  71. arg->did_not_fit = 0;
  72. }
  73. return copy_to_user(buffer, fifo_state->last_buffer, arg->used_size);
  74. }